diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index a413879b3..d82f8a49a 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -1,5 +1,5 @@ blank_issues_enabled: false contact_links: - name: Usage question - url: https://github.com/NREL/H2Integrate/discussions - about: Have any questions about using H2Integrate? Post in Discussions to engage with the NREL team and H2Integrate community. + url: https://github.com/NatLabRockies/H2Integrate/discussions + about: Have any questions about using H2Integrate? Post in Discussions to engage with the NLR team and H2Integrate community. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 38eea35b9..a8e7fdc44 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -78,33 +78,33 @@ IMPORTANT NOTES "A complete thought. [PR XYZ]((https://github.com/NatLabRockies/H2Integrate/pull/XYZ)", where `XYZ` should be replaced with the actual number. -## Section 3: Related Issues +## Section 4: Related Issues -## Section 4: Impacted Areas of the Software +## Section 5: Impacted Areas of the Software -### Section 4.1: New Files +### Section 5.1: New Files - `path/to/file.extension` - `method1`: What and why something was changed in one sentence or less. -### Section 4.2: Modified Files +### Section 5.2: Modified Files - `path/to/file.extension` - `method1`: What and why something was changed in one sentence or less. -## Section 5: Additional Supporting Information +## Section 6: Additional Supporting Information -## Section 6: Test Results, if applicable +## Section 7: Test Results, if applicable -## Section 7 (Optional): New Model Checklist +## Section 8 (Optional): New Model Checklist - [ ] **Model Structure**: - [ ] Follows established naming conventions outlined in `docs/developer_guide/coding_guidelines.md` @@ -128,17 +128,18 @@ failing test cases. - [ ] Model added to the main models list in `docs/user_guide/model_overview.md` - [ ] Model documentation page added to the appropriate `docs/` section - [ ] `.md` is added to the `_toc.yml` + - [ ] Run `generate_class_hierarchy.py` to update the class hierarchy diagram in `docs/developer_guide/class_structure.md` diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e25ca9bb5..6b362c792 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,53 +1,92 @@ name: Testing on: push: - branches: [main, develop] + branches: + - main + - develop pull_request: - branches: [main, develop] + branches: + - main + - develop schedule: - cron: 0 0 * * MON jobs: build: - runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.11', '3.13'] - optional: [false] + os: + - ubuntu-latest + # - windows-latest # Temporarily disabled + python-version: + - '3.11' + - '3.13' + test-type: + - unit + - regression + - integration + optional: + - true include: - python-version: '3.11' - optional: true + optional: false + os: ubuntu-latest + test-type: unit + - python-version: '3.11' + optional: false + os: ubuntu-latest + test-type: regression + - python-version: '3.11' + optional: false + os: ubuntu-latest + test-type: integration + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: conda-incubator/setup-miniconda@v3 with: + miniconda-version: latest + auto-update-conda: true python-version: ${{ matrix.python-version }} - - name: Install dependencies + auto-activate: true + activate-environment: h2integrate + - name: Install base dependencies + shell: bash -el {0} env: SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: true run: | - sudo apt-get update && sudo apt-get install -y libglpk-dev glpk-utils coinor-cbc + conda install -y -c conda-forge glpk coin-or-cbc>=2.10.12 python -m pip install --upgrade pip - if [ "${{ matrix.optional }}" = "true" ]; then - pip install ".[develop]" - else - pip install ".[develop]" - fi + pip install ".[develop]" + - if: ${{ matrix.optional }} + name: Install optional dependencies + shell: bash -el {0} + run: | + conda install -y -c conda-forge wisdem + pip install ".[extras]" - name: Create env file run: | touch .env - - name: Run unit tests - run: | - pytest . -m unit --cov=h2integrate --cov-report=xml:unit-coverage.xml - - name: Run regression tests - run: | - pytest . -m regression --cov=h2integrate --cov-report=xml:regression-coverage.xml - - name: Run integration tests - run: | - pytest . -m integration --cov=h2integrate --cov-report=xml:integration-coverage.xml - - name: Upload unit coverage to - uses: codecov/codecov-action@v5 + - name: Run ${{ matrix.test-type }} tests + shell: bash -el {0} + run: pytest . -m ${{ matrix.test-type }} --cov=h2integrate --cov-report=lcov:./${{ matrix.test-type }}-coverage.lcov + - name: Upload test coverage + uses: coverallsapp/github-action@v2 + if: contains(matrix.os, 'ubuntu') && contains(matrix.python-version, '3.13') + with: + github-token: ${{ secrets.COVERALLS_REPO_TOKEN }} + files: ./${{ matrix.test-type }}-coverage.lcov + flag-name: ${{ matrix.test-type }} + parallel: true + fail-on-error: false + coverage-finish: + needs: build + if: always() + runs-on: ubuntu-latest + steps: + - name: Coveralls finished + uses: coverallsapp/github-action@v2 with: - token: ${{ secrets.CODECOV_TOKEN }} - files: unit-coverage.xml, regression-coverage.xml, integration-coverage.xml - flags: unit,regression,integration + github-token: ${{ secrets.COVERALLS_REPO_TOKEN }} + parallel-finished: true + fail-on-error: false diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 779253020..1e89e3f5a 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -5,7 +5,9 @@ build: tools: python: '3.11' jobs: - pre_build: [jupyter-book config sphinx docs/] + pre_build: + - python docs/generate_class_hierarchy.py + - jupyter-book config sphinx docs/ python: install: - method: pip diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e8c78abd..f1cec9631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,60 @@ # Changelog +## Unreleased +- Updated README and docs intro page with expanded H2I description, reorganized sections, and streamlined installation instructions [PR 677](https://github.com/NatLabRockies/H2Integrate/pull/677) +- Update energy conversion ratio in H2 SMR model [PR 606](https://github.com/NatLabRockies/H2Integrate/pull/606) +- Update iron models and examples [PR 601](https://github.com/NatLabRockies/H2Integrate/pull/601) + - Remove outdated iron files + - Consolidate iron examples into a single main folder + - Add documentation for Rosner iron DRI and steel EAF models +- Breaks out pyomo controller simulation code from base class to individual controllers. [PR 587](https://github.com/NatLabRockies/H2Integrate/pull/587) +- Add tests for non-one valued charge, discharge, and round-trip efficiencies for the open-loop demand controller [PR 610](https://github.com/NatLabRockies/H2Integrate/pull/610) +- Updated the `StorageAutoSizingModel` and `PassThroughOpenLoopController` so that `commodity_set_point` is used as the storage dispatch command [PR 608](https://github.com/NatLabRockies/H2Integrate/pull/608) +- Updated the `SimpleGenericStorage` and `DemandOpenLoopStorageController` so that `commodity_set_point` is used as the storage dispatch command [PR 612](https://github.com/NatLabRockies/H2Integrate/pull/612) +- Add PySAM marine models [PR 607](https://github.com/NatLabRockies/H2Integrate/pull/607) + - Add tidal resource model + - Add pysam tidal performance model + - Add pysam marine hydrokinetic cost model +- Updated the `StoragePerformanceModel` and `PySAMBatteryPerformanceModel` to be compatible with the open-loop storage control strategies [PR 613](https://github.com/NatLabRockies/H2Integrate/pull/613) + - Removed `SimpleGenericStorage` and replaced usage with `StoragePerformanceModel` + - Renamed `PassThroughOpenLoopController` to `SimpleStorageOpenLoopController` + - Bugfix in pyomo control rules so that units such as `kg/h` can be used + - Bugfix in tests of pyomo control strategies with `StoragePerformanceModel` so that the pathname attribute is correct + - Added `demand_profile` as an input to `StoragePerformanceModel` and `PySAMBatteryPerformanceModel` + - Renamed `xx_charge_fraction` to `xx_soc_fraction` +- Bugfix in `StoragePerformanceModel` and `PySAMBatteryPerformanceModel` for setting control inputs to account for cases with multiple storage technologies with different control strategy types [PR 615](https://github.com/NatLabRockies/H2Integrate/pull/615) +- Bugfix input energy to OAE financial model [PR 617](https://github.com/NatLabRockies/H2Integrate/pull/617) + - Remove `MarineCarbonCapture` base classes +- Added the notion of multivariable commodity streams, which allow users to connect multiple variables between technologies with a single connection specification. [PR 480](https://github.com/NatLabRockies/H2Integrate/pull/480) +- Added base class (`StorageOpenLoopControlBase`) and base configuration class (`StorageOpenLoopControlBaseConfig`) for open-loop storage control strategies and updated the existing open-loop storage control strategies to inherit these [PR 619](https://github.com/NatLabRockies/H2Integrate/pull/619) +- Added a generic cost model for converters [PR 622](https://github.com/NatLabRockies/H2Integrate/pull/622) +- Updated the `StorageAutoSizingModel` model to be compatible with Pyomo control strategies [PR 621](https://github.com/NatLabRockies/H2Integrate/pull/621) +- Removed a few usages of `shape_by_conn` due to issues with OpenMDAO v3.43.0 release on some computers [PR 632](https://github.com/NatLabRockies/H2Integrate/pull/632) +- Made generating an XDSM diagram from connections in a model optional and added documentation on model visualization. [PR 629](https://github.com/NatLabRockies/H2Integrate/pull/629) +- Added a storage performance baseclass model `StoragePerformanceBase` and updated the other storage performance models to inherit it [PR 624](https://github.com/NatLabRockies/H2Integrate/pull/624) +- Added an automated script to crawl through the codebase and generate a visualization of the class hierarchy in H2Integrate. [PR 643](https://github.com/NatLabRockies/H2Integrate/pull/643) +- Modified the calc tilt angle function for pysam solar to support latitudes in the southern hemisphere [PR 646](https://github.com/NatLabRockies/H2Integrate/pull/646) +- Added oxygen production metrics and as outputs to `ECOElectrolyzerPerformanceModel` [PR 642](https://github.com/NatLabRockies/H2Integrate/pull/642) +- Bugfix to allow for one resource to be connected to multiple technologies [PR 655](https://github.com/NatLabRockies/H2Integrate/pull/655) +- Removed the last of the logic that was based on technology names rather than model classes [PR 654](https://github.com/NatLabRockies/H2Integrate/pull/654) +- Add input checking for extraneous or mis-categorized input parameters for technologies that have a defined control strategy or dispatch rule set [PR 647](https://github.com/NatLabRockies/H2Integrate/pull/647) +- Bumps the `coin-or-cbc` dependency to at least 2.10.12 to enable easy Windows compatibility. [PR 590](https://github.com/NatLabRockies/H2Integrate/pull/590) +- Uses the optional installation parameter `extras` to combine all analysis extras, and remove them + from the `develop` options. [PR 590](https://github.com/NatLabRockies/H2Integrate/pull/590) +- Tests reliant on the `gis` optional dependencies are no longer run when the extra dependencies are not installed + similar to the ard tests. [PR 590](https://github.com/NatLabRockies/H2Integrate/pull/590) +- Updates the testing infrastructure to use function-scoped fixtures unless there is a specific need for sharing + data between functions in a module. [PR 590](https://github.com/NatLabRockies/H2Integrate/pull/590) +- Adds `H2IntegrateModel.state` as an `IntEnum` to handle setup and run status checks. + [PR 590](https://github.com/NatLabRockies/H2Integrate/pull/590) +- Added standardized outputs to feedstock model [PR 523](https://github.com/NatLabRockies/H2Integrate/pull/523) +- Reclassified open-loop converter control strategies as demand components and updated output naming convention to align with output naming convention in storage performance models [PR 631](https://github.com/NatLabRockies/H2Integrate/pull/631). + - The `FlexibleDemandOpenLoopConverterController` has been renamed to `FlexibleDemandComponent` + - The `DemandOpenLoopConverterController` has been renamed to `GenericDemandComponent` +- Modified CI setup so Windows is temporarily disabled and also so unit, regression, and integration tests are run in separate jobs to speed up testing and provide more information on test failures. [PR 668](https://github.com/NatLabRockies/H2Integrate/pull/668) +- Added infrastructure for running models with non-hourly time steps via a class attribute `_time_step_bounds` and sets new time step bounds of 5-minutes to 1-hour for the grid components. [PR 653](https://github.com/NatLabRockies/H2Integrate/pull/653) and [PR 671](https://github.com/NatLabRockies/H2Integrate/pull/671) +- Remove demand-related outputs from storage performance models and replace usage with demand components [PR 666](https://github.com/NatLabRockies/H2Integrate/pull/666) + ## 0.7.2 [April 9, 2026] - Bumps the minimum WOMBAT version to v.0.13.3, which fixes Pandas compatibility with the Pandas 2.3.x and 3.x release @@ -31,6 +86,8 @@ - Fixed a bug in the discrete variable instantiation within the iron processing stack that caused a failure with OpenMDAO v3.43 [PR 595](https://github.com/NatLabRockies/H2Integrate/pull/595) - Fixed a bug in model setup where transporters were added to the system at the end of the system instead after their source [PR 591](https://github.com/NatLabRockies/H2Integrate/pull/591) - Fixed a bug in example 1 (steel) where a cable was included between the combiner to steel, but steel uses an internal grid connection [PR 591](https://github.com/NatLabRockies/H2Integrate/pull/591) +- Introduced a keyword arg to `post_process` to allow users to choose if results are printed to the console. [PR 597](https://github.com/NatLabRockies/H2Integrate/pull/597) +- Fixed a bug in charge and discharge efficiency handling in `StoragePerformanceModel` [PR 600](https://github.com/NatLabRockies/H2Integrate/pull/600) ## 0.7 [March 3, 2026] @@ -125,55 +182,55 @@ ### New Features and Technology Models -- Added PySAM Windpower performance model to simulate wind [PR 306](https://github.com/NREL/H2Integrate/pull/306) -- Added `simple_grid_layout.py` for wind plant layout modeling, can model square or rectangular layouts [PR 306](https://github.com/NREL/H2Integrate/pull/306) -- Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)` [PR 306](https://github.com/NREL/H2Integrate/pull/306) -- Added Wind Annual Technology Baseline cost model `atb_wind_cost.py` [PR 306](https://github.com/NREL/H2Integrate/pull/306) -- Added resource models to make solar resource API calls to the NREL Developer GOES dataset [PR 279](https://github.com/NREL/H2Integrate/pull/279) -- Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB [PR 377](https://github.com/NREL/H2Integrate/pull/377) -- Added wind resource model for API calls to Open-Meteo archive [PR 332](https://github.com/NREL/H2Integrate/pull/332) -- Added PySAM battery model as a storage technology performance model [PR 211](https://github.com/NREL/H2Integrate/pull/211) -- Added framework to run heuristic load following dispatch for storage technologies [PR 211](https://github.com/NREL/H2Integrate/pull/211) -- Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model [PR 324](https://github.com/NREL/H2Integrate/pull/324) -- Added grid converter performance and cost model which can be used to buy, sell, or buy and sell electricity to/from the grid [PR 340](https://github.com/NREL/H2Integrate/pull/340) -- Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input [PR 334](https://github.com/NREL/H2Integrate/pull/334) -- Added standalone iron mine performance and cost model [PR 364](https://github.com/NREL/H2Integrate/pull/364) -- Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` [PR 328](https://github.com/NREL/H2Integrate/pull/328) +- Added PySAM Windpower performance model to simulate wind [PR 306](https://github.com/NatLabRockies/H2Integrate/pull/306) +- Added `simple_grid_layout.py` for wind plant layout modeling, can model square or rectangular layouts [PR 306](https://github.com/NatLabRockies/H2Integrate/pull/306) +- Added ability to visualize the wind plant layout for PySAM Windpower model using `post_process(show_plots=True)` [PR 306](https://github.com/NatLabRockies/H2Integrate/pull/306) +- Added Wind Annual Technology Baseline cost model `atb_wind_cost.py` [PR 306](https://github.com/NatLabRockies/H2Integrate/pull/306) +- Added resource models to make solar resource API calls to the NREL Developer GOES dataset [PR 279](https://github.com/NatLabRockies/H2Integrate/pull/279) +- Added solar resource models for Meteosat Prime Meridian and Himawari datasets available through NSRDB [PR 377](https://github.com/NatLabRockies/H2Integrate/pull/377) +- Added wind resource model for API calls to Open-Meteo archive [PR 332](https://github.com/NatLabRockies/H2Integrate/pull/332) +- Added PySAM battery model as a storage technology performance model [PR 211](https://github.com/NatLabRockies/H2Integrate/pull/211) +- Added framework to run heuristic load following dispatch for storage technologies [PR 211](https://github.com/NatLabRockies/H2Integrate/pull/211) +- Added storage auto-sizing performance model based on storage sizing calculations that existed in the coupled hydrogen storage performance and cost model [PR 324](https://github.com/NatLabRockies/H2Integrate/pull/324) +- Added grid converter performance and cost model which can be used to buy, sell, or buy and sell electricity to/from the grid [PR 340](https://github.com/NatLabRockies/H2Integrate/pull/340) +- Add feature for natural gas plant converter to take electricity demand as an input and added system capacity as an input [PR 334](https://github.com/NatLabRockies/H2Integrate/pull/334) +- Added standalone iron mine performance and cost model [PR 364](https://github.com/NatLabRockies/H2Integrate/pull/364) +- Add open-loop load demand controllers: `DemandOpenLoopConverterController` and `FlexibleDemandOpenLoopConverterController` [PR 328](https://github.com/NatLabRockies/H2Integrate/pull/328) ### Improvements and Refactoring -- Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables [PR 290](https://github.com/NREL/H2Integrate/pull/290) -- Split out cost models from coupled hydrogen storage performance and cost model [PR 324](https://github.com/NREL/H2Integrate/pull/324) -- Created `ProFastBase`, a base class for the `ProFastLCO` and `ProFastNPV` models [PR 310](https://github.com/NREL/H2Integrate/pull/310) -- Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity [PR 310](https://github.com/NREL/H2Integrate/pull/310) -- Moved `compute()` from `ProFastBase` to `ProFastLCO` [PR 310](https://github.com/NREL/H2Integrate/pull/310) -- Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows [PR 310](https://github.com/NREL/H2Integrate/pull/310) -- Added capability for user-defined finance models in the H2Integrate framework [PR 247](https://github.com/NREL/H2Integrate/pull/247) -- Enabled dynamic plant component sizing modes through the resizeable model class `ResizeablePerformanceModelBaseClass` [PR 198](https://github.com/NREL/H2Integrate/pull/198) -- Move geologic hydrogen models into specific geoh2 subsurface converters [PR 367](https://github.com/NREL/H2Integrate/pull/367) -- Updated generic combiner to accept any number of inflow streams instead of just 2 [PR 406](https://github.com/NREL/H2Integrate/pull/406) -- Allow multiple instances of the same electricity producing technologies using prefix-based matching [PR 397](https://github.com/NREL/H2Integrate/pull/397) -- Allow multiple instances of custom models in the same hybrid system [PR 397](https://github.com/NREL/H2Integrate/pull/397) -- Removed a large portion of the old GreenHEART code that was no longer being used [PR 384](https://github.com/NREL/H2Integrate/pull/384) -- Moved high-level tests to the appropriate directory and removed defunct tests [PR 412](https://github.com/NREL/H2Integrate/pull/412) +- Updated inputs for the `ATBBatteryCostModel` and `DemandOpenLoopController` so storage capacity and charge rate can be design variables [PR 290](https://github.com/NatLabRockies/H2Integrate/pull/290) +- Split out cost models from coupled hydrogen storage performance and cost model [PR 324](https://github.com/NatLabRockies/H2Integrate/pull/324) +- Created `ProFastBase`, a base class for the `ProFastLCO` and `ProFastNPV` models [PR 310](https://github.com/NatLabRockies/H2Integrate/pull/310) +- Added `ProFastNPV`, a finance model using ProFAST to calculate NPV of the commodity [PR 310](https://github.com/NatLabRockies/H2Integrate/pull/310) +- Moved `compute()` from `ProFastBase` to `ProFastLCO` [PR 310](https://github.com/NatLabRockies/H2Integrate/pull/310) +- Added `NumpyFinancialNPV`, a finance model that uses NumPy Financial npv to calculate the npv from the cash flows [PR 310](https://github.com/NatLabRockies/H2Integrate/pull/310) +- Added capability for user-defined finance models in the H2Integrate framework [PR 247](https://github.com/NatLabRockies/H2Integrate/pull/247) +- Enabled dynamic plant component sizing modes through the resizeable model class `ResizeablePerformanceModelBaseClass` [PR 198](https://github.com/NatLabRockies/H2Integrate/pull/198) +- Move geologic hydrogen models into specific geoh2 subsurface converters [PR 367](https://github.com/NatLabRockies/H2Integrate/pull/367) +- Updated generic combiner to accept any number of inflow streams instead of just 2 [PR 406](https://github.com/NatLabRockies/H2Integrate/pull/406) +- Allow multiple instances of the same electricity producing technologies using prefix-based matching [PR 397](https://github.com/NatLabRockies/H2Integrate/pull/397) +- Allow multiple instances of custom models in the same hybrid system [PR 397](https://github.com/NatLabRockies/H2Integrate/pull/397) +- Removed a large portion of the old GreenHEART code that was no longer being used [PR 384](https://github.com/NatLabRockies/H2Integrate/pull/384) +- Moved high-level tests to the appropriate directory and removed defunct tests [PR 412](https://github.com/NatLabRockies/H2Integrate/pull/412) ### Configuration and Optimization -- Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md [PR 242](https://github.com/NREL/H2Integrate/pull/242) -- Updated setting up recorder in `PoseOptimization` [PR 291](https://github.com/NREL/H2Integrate/pull/291) -- Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) [PR 308](https://github.com/NREL/H2Integrate/pull/308) -- Added design of experiment functionality [PR 314](https://github.com/NREL/H2Integrate/pull/314) -- Added "csvgen" as generator type for design of experiments [PR 314](https://github.com/NREL/H2Integrate/pull/314) -- Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath [PR 313](https://github.com/NREL/H2Integrate/pull/313) -- Removed `boundaries` from the necessary keys in `plant_config` validation [PR 361](https://github.com/NREL/H2Integrate/pull/361) -- Added ability for latitude and longitude to be design variables in design sweep [PR 336](https://github.com/NREL/H2Integrate/pull/336) +- Added `tools/run_cases.py` with tools to run different `tech_config` cases from a spreadsheet, with new docs page to describe: docs/user_guide/how_to_run_several_cases_in_sequence.md [PR 242](https://github.com/NatLabRockies/H2Integrate/pull/242) +- Updated setting up recorder in `PoseOptimization` [PR 291](https://github.com/NatLabRockies/H2Integrate/pull/291) +- Added `create_om_reports` option to driver config to enable/disable OpenMDAO reports (N2 diagrams, etc.) [PR 308](https://github.com/NatLabRockies/H2Integrate/pull/308) +- Added design of experiment functionality [PR 314](https://github.com/NatLabRockies/H2Integrate/pull/314) +- Added "csvgen" as generator type for design of experiments [PR 314](https://github.com/NatLabRockies/H2Integrate/pull/314) +- Added `load_yaml()` function and flexibility to input a config dictionary to H2IntegrateModel rather than a filepath [PR 313](https://github.com/NatLabRockies/H2Integrate/pull/313) +- Removed `boundaries` from the necessary keys in `plant_config` validation [PR 361](https://github.com/NatLabRockies/H2Integrate/pull/361) +- Added ability for latitude and longitude to be design variables in design sweep [PR 336](https://github.com/NatLabRockies/H2Integrate/pull/336) ### Documentation, Examples, and Miscellaneous -- Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc [PR 137](https://github.com/NREL/H2Integrate/pull/137) -- Improved the readability of the postprocessing printout [PR 361](https://github.com/NREL/H2Integrate/pull/361) -- Improved readability of the postprocessing printout by simplifying numerical representation, especially for years [PR 378](https://github.com/NREL/H2Integrate/pull/378) -- Fixed stoichiometry mistake in ammonia synloop [PR 363](https://github.com/NREL/H2Integrate/pull/363) +- Added an optimized offshore methanol production case to examples/03_methanol/co2_hydrogenation_doc [PR 137](https://github.com/NatLabRockies/H2Integrate/pull/137) +- Improved the readability of the postprocessing printout [PR 361](https://github.com/NatLabRockies/H2Integrate/pull/361) +- Improved readability of the postprocessing printout by simplifying numerical representation, especially for years [PR 378](https://github.com/NatLabRockies/H2Integrate/pull/378) +- Fixed stoichiometry mistake in ammonia synloop [PR 363](https://github.com/NatLabRockies/H2Integrate/pull/363) ## 0.4.0 [October 1, 2025] @@ -181,70 +238,70 @@ This release introduces significant new technology models and framework capabili ### New Features and Technology Models -- Added capability for user-defined technologies in the H2Integrate framework, allowing for custom models to be integrated into the system [PR 128](https://github.com/NREL/H2Integrate/pull/128). -- Added a check for if a custom model's name clashes with an existing model name in the H2Integrate framework, raising an error if it does [PR 128](https://github.com/NREL/H2Integrate/pull/128). -- Added geologic hydrogen (GeoH2) converter and examples [PR 135](https://github.com/NREL/H2Integrate/pull/135). -- Added methanol production base class [PR 137](https://github.com/NREL/H2Integrate/pull/137). -- Added steam methane reforming methanol production technology [PR 137](https://github.com/NREL/H2Integrate/pull/137). -- Added CO2 hydrogenation methanol production technology [PR 137](https://github.com/NREL/H2Integrate/pull/137). -- Added run of river hydro plant model, an example, and a documentation page [PR 145](https://github.com/NREL/H2Integrate/pull/145). -- Added marine carbon capture base class [PR 165](https://github.com/NREL/H2Integrate/pull/165). -- Added direct ocean capture technology [PR 165](https://github.com/NREL/H2Integrate/pull/165). -- Added ammonia synloop, partially addressing [Issue 169](https://github.com/NREL/H2Integrate/issues/169) [PR 177](https://github.com/NREL/H2Integrate/pull/177). -- Added simple air separation unit (ASU) converter to model nitrogen production [PR 179](https://github.com/NREL/H2Integrate/pull/179). -- Added rule-based storage system control capability (e.g., for battery, H2, CO2) [PR 195](https://github.com/NREL/H2Integrate/pull/195). -- Added ocean alkalinity enhancement technology model [PR 212](https://github.com/NREL/H2Integrate/pull/212). -- Added `natural_gas_performance` and `natural_gas_cost` models, allowing for natural gas power plant modeling [PR 221](https://github.com/NREL/H2Integrate/pull/221). -- Added wind resource model, API baseclasses, updated examples, and documentation [PR 245](https://github.com/NREL/H2Integrate/pull/245). -- Added generic storage model, useful for battery, hydrogen, CO2, or other resource storage [PR 248](https://github.com/NREL/H2Integrate/pull/248). +- Added capability for user-defined technologies in the H2Integrate framework, allowing for custom models to be integrated into the system [PR 128](https://github.com/NatLabRockies/H2Integrate/pull/128). +- Added a check for if a custom model's name clashes with an existing model name in the H2Integrate framework, raising an error if it does [PR 128](https://github.com/NatLabRockies/H2Integrate/pull/128). +- Added geologic hydrogen (GeoH2) converter and examples [PR 135](https://github.com/NatLabRockies/H2Integrate/pull/135). +- Added methanol production base class [PR 137](https://github.com/NatLabRockies/H2Integrate/pull/137). +- Added steam methane reforming methanol production technology [PR 137](https://github.com/NatLabRockies/H2Integrate/pull/137). +- Added CO2 hydrogenation methanol production technology [PR 137](https://github.com/NatLabRockies/H2Integrate/pull/137). +- Added run of river hydro plant model, an example, and a documentation page [PR 145](https://github.com/NatLabRockies/H2Integrate/pull/145). +- Added marine carbon capture base class [PR 165](https://github.com/NatLabRockies/H2Integrate/pull/165). +- Added direct ocean capture technology [PR 165](https://github.com/NatLabRockies/H2Integrate/pull/165). +- Added ammonia synloop, partially addressing [Issue 169](https://github.com/NatLabRockies/H2Integrate/issues/169) [PR 177](https://github.com/NatLabRockies/H2Integrate/pull/177). +- Added simple air separation unit (ASU) converter to model nitrogen production [PR 179](https://github.com/NatLabRockies/H2Integrate/pull/179). +- Added rule-based storage system control capability (e.g., for battery, H2, CO2) [PR 195](https://github.com/NatLabRockies/H2Integrate/pull/195). +- Added ocean alkalinity enhancement technology model [PR 212](https://github.com/NatLabRockies/H2Integrate/pull/212). +- Added `natural_gas_performance` and `natural_gas_cost` models, allowing for natural gas power plant modeling [PR 221](https://github.com/NatLabRockies/H2Integrate/pull/221). +- Added wind resource model, API baseclasses, updated examples, and documentation [PR 245](https://github.com/NatLabRockies/H2Integrate/pull/245). +- Added generic storage model, useful for battery, hydrogen, CO2, or other resource storage [PR 248](https://github.com/NatLabRockies/H2Integrate/pull/248). ### Improvements and Refactoring -- Removed the `to_organize` directory [PR 138](https://github.com/NREL/H2Integrate/pull/138). -- Updated the naming scheme throughout the framework so resources produced always have `_out` and resources consumed always have `_in` in their names [PR 148](https://github.com/NREL/H2Integrate/pull/148). -- Added ability to export ProFAST object to yaml file in `ProFastComp` [PR 207](https://github.com/NREL/H2Integrate/pull/207). -- Refactored `ProFastComp` and put in a new file (`h2integrate/core/profast_financial.py`). Added flexibility to allow users to specify different financial models [PR 218](https://github.com/NREL/H2Integrate/pull/218). -- Revamped the feedstocks technology group to allow for more precise modeling of feedstock supply chains, including capacity constraints and feedstock amount consumed [PR 221](https://github.com/NREL/H2Integrate/pull/221). -- Made `pipe` and `cable` substance-agnostic rather than hard-coded for `hydrogen` and `electricity` [PR 241](https://github.com/NREL/H2Integrate/pull/241). -- Updated option to pass variables in technology interconnections to allow for different variable names from source to destination in the format `[source_tech, dest_tech, (source_tech_variable, dest_tech_variable)]` [PR 236](https://github.com/NREL/H2Integrate/pull/236). -- Split out the electrolyzer cost models `basic` and `singlitico` for clarity [PR 147](https://github.com/NREL/H2Integrate/pull/147). -- Refactored the ammonia production model to use the new H2Integrate framework natively and removed the prior performance and cost functions [PR 163](https://github.com/NREL/H2Integrate/pull/163). -- Added a new ammonia production model which has nitrogen, hydrogen, and electricity inputs and ammonia output, with performance and cost functions [PR 163](https://github.com/NREL/H2Integrate/pull/163). -- Added WOMBAT electrolyzer O&M model [PR 168](https://github.com/NREL/H2Integrate/pull/168). -- Changed electrolyzer capacity to be specified as `n_clusters` rather than `rating` in electrolyzer performance model config [PR 194](https://github.com/NREL/H2Integrate/pull/194). -- Changed electrolyzer capacity to be an input to the electrolyzer cost models rather than pulled from the cost model config [PR 194](https://github.com/NREL/H2Integrate/pull/194). -- Added cost model base class and removed `plant_config['finance_parameters']['discount_years']['tech']`. Cost year is now an optional input (`tech_config[tech]['model_inputs']['cost_parameters']['cost_year']`) and a discrete output [PR 199](https://github.com/NREL/H2Integrate/pull/199). -- Added two ATB-compatible solar-PV cost models [PR 193](https://github.com/NREL/H2Integrate/pull/193). -- Update PySAM solar performance model to allow for more user-configurability [PR 187](https://github.com/NREL/H2Integrate/pull/187). -- Added `"custom_electrolyzer_cost"` model, an electrolyzer cost model that allows for user-defined CapEx and OpEx values [PR 227](https://github.com/NREL/H2Integrate/pull/227). -- Added variable O&M to `CostModelBaseClass` and integrated into finance-related models [PR 235](https://github.com/NREL/H2Integrate/pull/235). -- Improved `h2integrate/transporters/power_combiner.py` and enabled usage of multiple electricity producing technologies [PR 232](https://github.com/NREL/H2Integrate/pull/232). +- Removed the `to_organize` directory [PR 138](https://github.com/NatLabRockies/H2Integrate/pull/138). +- Updated the naming scheme throughout the framework so resources produced always have `_out` and resources consumed always have `_in` in their names [PR 148](https://github.com/NatLabRockies/H2Integrate/pull/148). +- Added ability to export ProFAST object to yaml file in `ProFastComp` [PR 207](https://github.com/NatLabRockies/H2Integrate/pull/207). +- Refactored `ProFastComp` and put in a new file (`h2integrate/core/profast_financial.py`). Added flexibility to allow users to specify different financial models [PR 218](https://github.com/NatLabRockies/H2Integrate/pull/218). +- Revamped the feedstocks technology group to allow for more precise modeling of feedstock supply chains, including capacity constraints and feedstock amount consumed [PR 221](https://github.com/NatLabRockies/H2Integrate/pull/221). +- Made `pipe` and `cable` substance-agnostic rather than hard-coded for `hydrogen` and `electricity` [PR 241](https://github.com/NatLabRockies/H2Integrate/pull/241). +- Updated option to pass variables in technology interconnections to allow for different variable names from source to destination in the format `[source_tech, dest_tech, (source_tech_variable, dest_tech_variable)]` [PR 236](https://github.com/NatLabRockies/H2Integrate/pull/236). +- Split out the electrolyzer cost models `basic` and `singlitico` for clarity [PR 147](https://github.com/NatLabRockies/H2Integrate/pull/147). +- Refactored the ammonia production model to use the new H2Integrate framework natively and removed the prior performance and cost functions [PR 163](https://github.com/NatLabRockies/H2Integrate/pull/163). +- Added a new ammonia production model which has nitrogen, hydrogen, and electricity inputs and ammonia output, with performance and cost functions [PR 163](https://github.com/NatLabRockies/H2Integrate/pull/163). +- Added WOMBAT electrolyzer O&M model [PR 168](https://github.com/NatLabRockies/H2Integrate/pull/168). +- Changed electrolyzer capacity to be specified as `n_clusters` rather than `rating` in electrolyzer performance model config [PR 194](https://github.com/NatLabRockies/H2Integrate/pull/194). +- Changed electrolyzer capacity to be an input to the electrolyzer cost models rather than pulled from the cost model config [PR 194](https://github.com/NatLabRockies/H2Integrate/pull/194). +- Added cost model base class and removed `plant_config['finance_parameters']['discount_years']['tech']`. Cost year is now an optional input (`tech_config[tech]['model_inputs']['cost_parameters']['cost_year']`) and a discrete output [PR 199](https://github.com/NatLabRockies/H2Integrate/pull/199). +- Added two ATB-compatible solar-PV cost models [PR 193](https://github.com/NatLabRockies/H2Integrate/pull/193). +- Update PySAM solar performance model to allow for more user-configurability [PR 187](https://github.com/NatLabRockies/H2Integrate/pull/187). +- Added `"custom_electrolyzer_cost"` model, an electrolyzer cost model that allows for user-defined CapEx and OpEx values [PR 227](https://github.com/NatLabRockies/H2Integrate/pull/227). +- Added variable O&M to `CostModelBaseClass` and integrated into finance-related models [PR 235](https://github.com/NatLabRockies/H2Integrate/pull/235). +- Improved `h2integrate/transporters/power_combiner.py` and enabled usage of multiple electricity producing technologies [PR 232](https://github.com/NatLabRockies/H2Integrate/pull/232). ### Configuration and Optimization -- Updated finance parameter organization naming in `plant_config` [PR 218](https://github.com/NREL/H2Integrate/pull/218). -- Changed finance handling to use `finance_subgroups` and `finance_groups` defined in the `plant_config` rather than previous `financial_groups` in the `tech_config` and `technologies_to_include_in_metrics` in `plant_config` [PR 240](https://github.com/NREL/H2Integrate/pull/240). -- Allow users to specify the technologies to include in the metrics calculations in the plant configuration file [PR 240](https://github.com/NREL/H2Integrate/pull/240). -- Added option for user to provide ProFAST parameters in finance parameters [PR 240](https://github.com/NREL/H2Integrate/pull/240). -- Changed `plant_config` `atb_year` entry to `financial_analysis_start_year` [PR 190](https://github.com/NREL/H2Integrate/pull/190). -- Added `simulation` section under `plant_config['plant']` that has information such as number of timesteps in the simulation, time step interval in seconds, simulation start time, and time zone [PR 219](https://github.com/NREL/H2Integrate/pull/219). -- Moved `overwrite_fin_values` to HOPP [PR 164](https://github.com/NREL/H2Integrate/pull/164). -- Enable optimization with HOPP technology ratings using `recreate_hopp_config_for_optimization` [PR 164](https://github.com/NREL/H2Integrate/pull/164). -- Made caching in the HOPP wrapper optional [PR 164](https://github.com/NREL/H2Integrate/pull/164). -- Added more available constraints from the HOPP wrapper useful for design optimizations [PR 164](https://github.com/NREL/H2Integrate/pull/164). +- Updated finance parameter organization naming in `plant_config` [PR 218](https://github.com/NatLabRockies/H2Integrate/pull/218). +- Changed finance handling to use `finance_subgroups` and `finance_groups` defined in the `plant_config` rather than previous `financial_groups` in the `tech_config` and `technologies_to_include_in_metrics` in `plant_config` [PR 240](https://github.com/NatLabRockies/H2Integrate/pull/240). +- Allow users to specify the technologies to include in the metrics calculations in the plant configuration file [PR 240](https://github.com/NatLabRockies/H2Integrate/pull/240). +- Added option for user to provide ProFAST parameters in finance parameters [PR 240](https://github.com/NatLabRockies/H2Integrate/pull/240). +- Changed `plant_config` `atb_year` entry to `financial_analysis_start_year` [PR 190](https://github.com/NatLabRockies/H2Integrate/pull/190). +- Added `simulation` section under `plant_config['plant']` that has information such as number of timesteps in the simulation, time step interval in seconds, simulation start time, and time zone [PR 219](https://github.com/NatLabRockies/H2Integrate/pull/219). +- Moved `overwrite_fin_values` to HOPP [PR 164](https://github.com/NatLabRockies/H2Integrate/pull/164). +- Enable optimization with HOPP technology ratings using `recreate_hopp_config_for_optimization` [PR 164](https://github.com/NatLabRockies/H2Integrate/pull/164). +- Made caching in the HOPP wrapper optional [PR 164](https://github.com/NatLabRockies/H2Integrate/pull/164). +- Added more available constraints from the HOPP wrapper useful for design optimizations [PR 164](https://github.com/NatLabRockies/H2Integrate/pull/164). ### Documentation, Examples, and Miscellaneous -- Added an example of a user-defined technology in the `examples` directory, demonstrating an extremely simple paper mill model [PR 128](https://github.com/NREL/H2Integrate/pull/128). -- Added example for running with HOPP as the only technology in the H2Integrate system [PR 164](https://github.com/NREL/H2Integrate/pull/164). -- Added an optimization example with a wind plant and electrolyzer to showcase how to define design variables, constraints, and objective functions [PR 126](https://github.com/NREL/H2Integrate/pull/126). -- Expanded docs to include a new section on modifying config dicts after model instantiation [PR 151](https://github.com/NREL/H2Integrate/pull/151). -- Added `*_out/` to `.gitignore` to avoid clutter [PR 191](https://github.com/NREL/H2Integrate/pull/191). -- Bump min Python version and removed unnecessary packages from `pyproject.toml` [PR 150](https://github.com/NREL/H2Integrate/pull/150). -- Bugfix: only run `pyxdsm` when there are connections in the system [PR 201](https://github.com/NREL/H2Integrate/pull/201). +- Added an example of a user-defined technology in the `examples` directory, demonstrating an extremely simple paper mill model [PR 128](https://github.com/NatLabRockies/H2Integrate/pull/128). +- Added example for running with HOPP as the only technology in the H2Integrate system [PR 164](https://github.com/NatLabRockies/H2Integrate/pull/164). +- Added an optimization example with a wind plant and electrolyzer to showcase how to define design variables, constraints, and objective functions [PR 126](https://github.com/NatLabRockies/H2Integrate/pull/126). +- Expanded docs to include a new section on modifying config dicts after model instantiation [PR 151](https://github.com/NatLabRockies/H2Integrate/pull/151). +- Added `*_out/` to `.gitignore` to avoid clutter [PR 191](https://github.com/NatLabRockies/H2Integrate/pull/191). +- Bump min Python version and removed unnecessary packages from `pyproject.toml` [PR 150](https://github.com/NatLabRockies/H2Integrate/pull/150). +- Bugfix: only run `pyxdsm` when there are connections in the system [PR 201](https://github.com/NatLabRockies/H2Integrate/pull/201). ## 0.3.0 [May 2, 2025] @@ -255,7 +312,7 @@ This release introduces significant new technology models and framework capabili ## 0.2.1 Unreleased, TBD -- Fixed iron data save issue [PR 122](https://github.com/NREL/H2Integrate/pull/122) +- Fixed iron data save issue [PR 122](https://github.com/NatLabRockies/H2Integrate/pull/122) - Added optional inputs to electrolyzer model, including curve coefficients and water usage rate. - Bug-fix in electrolyzer outputs (H2_Results) if some stacks are never turned on. @@ -263,7 +320,7 @@ This release introduces significant new technology models and framework capabili - Allow users to save the H2IntegrateOutput class as a yaml file and read that yaml to an instance of the output class - Include new plotting capabilities: (1) hydrogen storage, production, and dispatch; (2) electricity and hydrogen dispatch -- Remove reference_plants from examples. Reference plants can now be found in the [ReferenceHybridSystemDesigns](https://github.com/NREL/ReferenceHybridSystemDesigns) repository. +- Remove reference_plants from examples. Reference plants can now be found in the [ReferenceHybridSystemDesigns](https://github.com/NatLabRockies/ReferenceHybridSystemDesigns) repository. - Use sentence capitalization for plot labels and legends - Use "metric ton" instead of "tonne" or "metric tonne" in all internal naming and plots - Fix bug in hydrogen dispatch plotting by storing time series of hydrogen demand by hour @@ -272,11 +329,11 @@ This release introduces significant new technology models and framework capabili - Removed defunct conda build and upload scripts - Return full solution dictionary from ProFAST, allowing access to CRF and WACC - Renamed code from GreenHEART to H2Integrate -- Added iron processing framework and capabilities [PR 90](https://github.com/NREL/H2Integrate/pull/90) -- Added Martin and Rosner iron ore models, performance and cost for each [PR 90](https://github.com/NREL/H2Integrate/pull/90) -- Added Rosner direct reduction iron (DRI) model, performance and cost [PR 90](https://github.com/NREL/H2Integrate/pull/90) -- Added Martin transport module for performance and cost of iron [PR 90](https://github.com/NREL/H2Integrate/pull/90) -- Added generalized Stinn cost model for electrolysis of arbitrary materials [PR 90](https://github.com/NREL/H2Integrate/pull/90) +- Added iron processing framework and capabilities [PR 90](https://github.com/NatLabRockies/H2Integrate/pull/90) +- Added Martin and Rosner iron ore models, performance and cost for each [PR 90](https://github.com/NatLabRockies/H2Integrate/pull/90) +- Added Rosner direct reduction iron (DRI) model, performance and cost [PR 90](https://github.com/NatLabRockies/H2Integrate/pull/90) +- Added Martin transport module for performance and cost of iron [PR 90](https://github.com/NatLabRockies/H2Integrate/pull/90) +- Added generalized Stinn cost model for electrolysis of arbitrary materials [PR 90](https://github.com/NatLabRockies/H2Integrate/pull/90) ## v0.1.4 [4 February, 2025] diff --git a/README.md b/README.md index 060082d98..33bc4a961 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,58 @@ # H2Integrate: Holistic Hybrids Optimization and Design Tool [![PyPI version](https://badge.fury.io/py/H2Integrate.svg)](https://badge.fury.io/py/H2Integrate) -![CI Tests](https://github.com/NREL/H2Integrate/actions/workflows/ci.yml/badge.svg) +![CI Tests](https://github.com/NatLabRockies/H2Integrate/actions/workflows/ci.yml/badge.svg) [![image](https://img.shields.io/pypi/pyversions/H2Integrate.svg)](https://pypi.python.org/pypi/H2Integrate) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) -[![DOI:10.5281/zenodo.17903150](https://zenodo.org/badge/DOI/10.5281/zenodo.17903149.svg)](https://zenodo.org/records/17903149) +[![DOI 10.5281/zenodo.17903150](https://zenodo.org/badge/DOI/10.5281/zenodo.17903150.svg)](https://zenodo.org/records/17903150) -[![DOI 10.1088/1742-6596/2767/8/082019](https://img.shields.io/badge/DOI-10.1088%2F1742--6596%2F2767%2F8%2F082019-brightgreen?link=[https://doi.org/10.1088/1742-6596/2767/8/082019](https://doi.org/10.1088/1742-6596/2767/8/082019))](https://iopscience.iop.org/article/10.1088/1742-6596/2767/8/082019/pdf) -[![DOI 10.1088/1742-6596/2767/6/062017](https://img.shields.io/badge/DOI-10.1088%2F1742--6596%2F2767%2F6%2F062017-brightgreen?link=[https://doi.org/10.1088/1742-6596/2767/6/062017](https://doi.org/10.1088/1742-6596/2767/6/062017))](https://iopscience.iop.org/article/10.1088/1742-6596/2767/6/062017/pdf) -[![DOI 10.21203/rs.3.rs-4326648/v1](https://img.shields.io/badge/DOI-10.21203%2Frs.3.rs--4326648%2Fv1-brightgreen?link=[https://doi.org/10.21203/rs.3.rs-4326648/v1](https://doi.org/10.21203/rs.3.rs-4326648/v1))](https://assets-eu.researchsquare.com/files/rs-4326648/v1_covered_338a5071-b74b-4ecd-9d2a-859e8d988b5c.pdf?c=1716199726) +H2Integrate (H2I) is an open-source Python package for hybrid energy systems engineering design and technoeconomic analysis. +It models hybrid systems, especially hybrid energy plants that produce electricity, hydrogen, ammonia, steel, and other products, to perform optimization and scenario analysis. -H2Integrate is an open-source Python package for modeling and designing hybrid energy systems producing electricity, hydrogen, ammonia, steel, and other products. +## Installation -Note: The current version of H2Integrate is under active development and may be missing features that existed previously. H2Integrate v0.2.0 is the last version that uses the prior framework. +The recommended installation method is via pip from PyPI, which will install the latest stable release of H2Integrate and its dependencies: + +```bash +pip install h2integrate +``` + +For installing from source, development setup, and additional installation options, see the [full installation instructions](https://h2integrate.readthedocs.io/en/latest/getting_started/install.html). + +## What H2Integrate Does + +H2Integrate is both a **hybrid systems engineering design tool** and a **technoeconomic analysis (TEA) tool**. It significantly expands beyond generalized tools by offering: + +- **Detailed equipment-level modeling** with a wide range of subsystem variation options +- **High-resolution, location-specific resource data** for site-dependent performance modeling +- **Cost inputs settable by the user** with examples based on the [Annual Technology Baseline (ATB)](https://atb.nlr.gov/) +- **Optimization and scenario analysis** to explore design trade-offs across hybrid plant configurations + +### Available Technologies + +H2I includes models for a broad set of energy generation, conversion, and storage technologies. +This is a non-exhaustive list, and the library of available technologies is actively expanding: + +- **Electricity generation**: solar PV, wind, wave, tidal, natural gas combined cycle (NGCC), natural gas combustion turbines (NGCT), nuclear, grid +- **Hydrogen production**: PEM electrolysis, NG-SMR +- **Energy storage**: Li-ion batteries, long-duration energy storage (LDES), pumped storage hydropower (PSH) +- **Fuel cells**: H2 PEM fuel cells +- **Industrial processes**: ammonia synthesis, iron ore reduction, steel production, and more + +## Getting Started + +See the [Getting Started guide](https://h2integrate.readthedocs.io/en/latest/intro.html) for an introduction to H2Integrate. +The [Examples folder](./examples/) contain Jupyter notebooks, Python scripts, and sample YAML files for common usage scenarios. + +## Publications + +For a full list of publications, see the [Publications section in the documentation](https://h2integrate.readthedocs.io/en/latest/intro.html#publications). +Note: H2Integrate was previously known as GreenHEART, and some publications may refer to it by that name. ## Software Citation +If you use H2I or any of its components in your work, please cite this in your publications using the following BibTeX: + ```bibtex @software{brunik_2025_17903150, author = {Brunik, Kaitlin and @@ -50,204 +87,6 @@ Note: The current version of H2Integrate is under active development and may be } ``` -## Publications where H2Integrate has been used - -For more context about H2Integrate and to see analyses that have been performed using the tool, please see some of these publications. -PDFs are available in the linked titles. - -### Nationwide techno-economic analysis of clean hydrogen production powered by a hybrid renewable energy plant for over 50,000 locations in the United States. - -The levelized cost of hydrogen is calculated for varying technology costs, and tax credits to -explore cost sensitivities independent of plant design, performance, and site selection. Our -findings suggest that strategies for cost reduction include selecting sites with abundant wind -resources, complementary wind and solar resources, and optimizing the sizing of wind and solar -assets to maximize the hybrid plant capacity factor. - -Grant, E., et al. "[Hybrid power plant design for low-carbon hydrogen in the United States.](https://iopscience.iop.org/article/10.1088/1742-6596/2767/8/082019/pdf)" Journal of Physics: Conference Series. Vol. 2767. No. 8. IOP Publishing, 2024. - -### Exploring the role of producing low-carbon hydrogen using water electrolysis powered by offshore wind in facilitating the United States’ transition to a net-zero emissions economy by 2050. - -Conducting a regional techno-economic analysis at four U.S. coastal sites, the study evaluates two -energy transmission configurations and examines associated costs for the years 2025, 2030, and 2035. -The results highlight that locations using fixed-bottom technology may achieve cost-competitive -water electrolysis hydrogen production by 2030 through leveraging geologic hydrogen storage and -federal policy incentives. - -Brunik, K., et al. "[Potential for large-scale deployment of offshore wind-to-hydrogen systems in the United States.](https://iopscience.iop.org/article/10.1088/1742-6596/2767/6/062017/pdf)" Journal of Physics: Conference Series. Vol. 2767. No. 6. IOP Publishing, 2024. - -### Examining how tightly-coupled gigawatt-scale wind- and solar-sourced H2 depends on the ability to store and deliver otherwise-curtailed H2 during times of shortages. - -Modeling results suggest that the levelized cost of storage is highly spatially heterogeneous, with -minor impact on the cost of H2 in the Midwest, and potentially significant impact in areas with -emerging H2 economies such as Central California and the Southeast. While TOL/MCH may be the -cheapest aboveground bulk storage solution evaluated, upfront capital costs, modest energy -efficiency, reliance on critical materials, and greenhouse gas emissions from heating remain -concerns. - -Breunig, Hanna, et al. "[Hydrogen Storage Materials Could Meet Requirements for GW-Scale Seasonal Storage and Green Steel.](https://assets-eu.researchsquare.com/files/rs-4326648/v1_covered_338a5071-b74b-4ecd-9d2a-859e8d988b5c.pdf?c=1716199726)" (2024). - -### DOE Hydrogen Program review presentation of H2Integrate - -King, J. and Hammond, S. "[Integrated Modeling, TEA, and Reference Design for Renewable Hydrogen to Green Steel and Ammonia - GreenHEART](https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review24/sdi001_king_2024_o.pdf?sfvrsn=a800ca84_3)" (2024). - -## Software requirements - -- Python version 3.11, 3.12 64-bit -- Other versions may still work, but have not been extensively tested at this time - -## Installing from Package Repositories - -```bash -pip install h2integrate -``` - -> [!NOTE] -> If using the Ard models `h2integrate[ard]`, see the source installation instructions (item 3) for -> creating a conda environment with WISDEM installed through conda, not pip as it can cause issues -> on some machines. - -## Installing from Source - -### Easiest approach (recommended) - -1. Using Git, navigate to a local target directory and clone repository: - - ```bash - git clone https://github.com/NREL/H2Integrate.git - ``` - -2. Navigate to `H2Integrate` - - ```bash - cd H2Integrate - ``` - -3. Create a conda environment and install H2Integrate and all its dependencies. Please read the - following two notes about modified installation steps. - - 1. If on a Unix machine, uncomment line 8 in `environment.yml` to install Cbc. Windows - users will need to manually install from . - 2. If you plan to use Ard, please uncomment line 9 in `environment.yml` to ensure WISDEM (an Ard - dependency) is installed from conda to avoid installation issues with some systems. - - ```bash - conda env create -f environment.yml - ``` - -An additional step can be added if additional dependencies are required, or you plan to use this -environment for development work. - -- Pass `-e` for an editable developer install -- Use one of the extra flags as needed: - - `gis`: adds the iron mapping tools. - - `ard`: adds the Ard-based wind models. - - `develop`: adds developer and documentation tools, plus optional analysis modifiers `gis` and `ard`. - - `examples`: allows you to use the Jupyter Notebooks and all examples (includes `ard` and `gis`). - - `all` simplifies adding all the dependencies. - -This looks like the following for a developer installation: - -```bash -pip install -e ".[all]" -``` - -### Customizable - -1. Using Git, navigate to a local target directory and clone repository: - - ```bash - git clone https://github.com/NREL/H2Integrate.git - ``` - -2. Navigate to `H2Integrate` - - ```bash - cd H2Integrate - ``` - -3. Create a new virtual environment and change to it. Using Conda Python 3.11 (choose your favorite - supported version) and naming it 'h2integrate' (choose your desired name): - - ```bash - conda create --name h2integrate python=3.11 -y - conda activate h2integrate - ``` - -4. Install H2Integrate and its dependencies: - - ```bash - conda install -y -c conda-forge glpk - ``` - - Note: Unix users should install Cbc via: - - ```bash - conda install -y -c conda-forge coin-or-cbc=2.10.8 - ``` - - Windows users will have to manually install Cbc: https://github.com/coin-or/Cbc. - - - If you want to just use H2Integrate: - - ```bash - pip install . - ``` - - - If you want to work with the examples: - - ```bash - pip install ".[examples]" - ``` - - - If you also want development dependencies for running tests and building docs: - - ```bash - pip install -e ".[develop]" - ``` - - Please be sure to also install the pre-commit hooks if contributing code back to the main - repository via the following. This enables a series of automated formatting and code linting - (style and correctness checking) to ensure the code is stylistically consistent. - - ```bash - pre-commit install - ``` - - If a check (or multiple) fails (commit is blocked), and reformatting was done, then restage - (`git add`) your files and commit them again to see if all issues were resolved without user - intervention. If changes are required follow the suggested fix, or resolve the stated - issue(s). Restaging and committing may take multiple attempts steps if errors are unaddressed - or insufficiently addressed. Please see [pre-commit](https://pre-commit.com/), - [ruff](https://docs.astral.sh/ruff/), or [isort](https://pycqa.github.io/isort/) for more - information. - - - In one step, all dependencies can be installed as: - - ```bash - pip install -e ".[all]" - ``` - -5. The functions which download resource data require an NLR API key. Obtain a key from: - - [https://developer.nlr.gov/signup/](https://developer.nlr.gov/signup/) - -6. To set up the `NLR_API_KEY` and `NLR_API_EMAIL` required for resource downloads, follow the steps - outlined in [this doc page](https://h2integrate.readthedocs.io/en/latest/getting_started/environment_variables.html). - -7. Verify setup by running tests: - - ```bash - pytest - ``` - -## Getting Started - -The [Examples](./examples/) contain Jupyter notebooks and sample YAML files for common usage -scenarios in H2Integrate. These are actively maintained and updated to demonstrate H2Integrate's -capabilities. For full details on simulation options and other features, documentation is -forthcoming. - ## Contributing -Interested in improving H2Integrate? Please see the [Contributor's Guide](./docs/CONTRIBUTING.md) -section for more information. +Interested in improving H2Integrate? Please see the [Contributor's Guide](./docs/CONTRIBUTING.md) for more information. diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 441544b02..d33ccb64e 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -3,9 +3,9 @@ We welcome contributions in the form of bug reports, bug fixes, improvements to the documentation, ideas for enhancements (or the enhancements themselves!). -You can find a [list of current issues](https://github.com/NREL/H2Integrate/issues) in the project's +You can find a [list of current issues](https://github.com/NatLabRockies/H2Integrate/issues) in the project's GitHub repo. Feel free to tackle any existing bugs or enhancement ideas by submitting a -[pull request](https://github.com/NREL/H2Integrate/pulls). +[pull request](https://github.com/NatLabRockies/H2Integrate/pulls). ## Bug Reports @@ -21,7 +21,7 @@ GitHub repo. Feel free to tackle any existing bugs or enhancement ideas by submi * Docstrings are required and should follow the [Google style](https://www.sphinx-doc.org/en/master/usage/extensions/example_google.html). * When you start working on a pull request, start by creating a new branch pointing at the latest - commit on [main](https://github.com/NREL/H2Integrate). + commit on [main](https://github.com/NatLabRockies/H2Integrate). * Code formatting is enforced using pre-commit hooks and is required for any code pushed up to the repository. The pre-commit package is included in the developer install of the repository. The pre-commit hooks can be installed by running ```bash pre-commit install @@ -31,7 +31,7 @@ in the repository directory. This will automatically run the pre-commit formatti git commit -am "" ``` which will re-add the reformatted files to the commit. -* The H2Integrate copyright policy is detailed in the [`LICENSE`](https://github.com/NREL/H2Integrate/blob/main/LICENSE). +* The H2Integrate copyright policy is detailed in the [`LICENSE`](https://github.com/NatLabRockies/H2Integrate/blob/main/LICENSE). ## Documentation @@ -89,7 +89,7 @@ pytest tests/h2integrate/test_hybrid.py::test_h2integrate_system ``` When you push to your fork, or open a PR, your tests will be run against the -[Continuous Integration (CI)](https://github.com/NREL/HOPP/actions) suite. This will start a build +[Continuous Integration (CI)](https://github.com/NatLabRockies/HOPP/actions) suite. This will start a build that runs all tests on your branch against multiple Python versions, and will also test documentation builds. @@ -142,7 +142,7 @@ met the following steps should be taken to create a new release ``` 6. Check that the - [Test PyPI GitHub Action](https://github.com/NREL/H2Integrate/actions/workflows/publish_to_test_pypi.yml) + [Test PyPI GitHub Action](https://github.com/NatLabRockies/H2Integrate/actions/workflows/publish_to_test_pypi.yml) has run successfully. 1. If the action failed, identify and fix the issue, then 2. delete the local and remote tag using the following (replace "v0.1" in all instances just like @@ -155,7 +155,7 @@ met the following steps should be taken to create a new release 3. Start back at step 1. 7. When the Test PyPI Action has successfully run, - [create a new release](https://github.com/NREL/H2Integrate/releases/new) using the tag created in + [create a new release](https://github.com/NatLabRockies/H2Integrate/releases/new) using the tag created in step 5. ### Patches @@ -167,4 +167,4 @@ below: 1. All CI tests pass and the patch version has been bumped according to the [semantic versioning guidelines](https://semver.org/). 2. Follow steps 4 through 7 above. -3. Merge the NREL main branch back into the develop branch and push the changes. +3. Merge the NLR main branch back into the develop branch and push the changes. diff --git a/docs/_config.yml b/docs/_config.yml index 10effe641..06149877f 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -24,7 +24,7 @@ latex: targetname: book.tex # Information about where the book exists on the web repository: - url: https://github.com/NREL/H2Integrate + url: https://github.com/NatLabRockies/H2Integrate path_to_book: docs branch: main # Add GitHub buttons to your book @@ -39,33 +39,6 @@ sphinx: - sphinx.ext.autosummary - sphinx.ext.napoleon config: - # html_theme: sphinx_book_theme - # html_theme_options: - # use_issues_button: true - # use_repository_button: true - # use_edit_page_button: true - # show_toc_level: 2 - # repository_url: https://github.com/NREL/WAVES - # repository_branch: main - # icon_links: [ - # { - # name: GitHub, - # url: https://github.com/NREL/WAVES, - # icon: fa-brands fa-github, - # }, - # { - # name: PyPI version, - # url: https://pypi.org/project/WAVES/, - # icon: "https://img.shields.io/pypi/v/WAVES?link=https%3A%2F%2Fpypi.org%2Fproject%2FWAVES%2F", - # type: url, - # }, - # { - # name: Binder, - # url: "https://mybinder.org/v2/gh/NREL/WAVES/main?filepath=examples", - # icon: "https://mybinder.org/badge_logo.svg", - # type: url, - # }, - # ] language: python autosummary_generate: true autodoc_default_options: @@ -82,6 +55,8 @@ sphinx: # class-doc-from # no-value autodoc_typehints: description + html_static_path: + - _static napoleon_use_admonition_for_notes: true napoleon_use_rtype: false nb_merge_streams: true diff --git a/docs/_static/class_hierarchy.html b/docs/_static/class_hierarchy.html new file mode 100644 index 000000000..acd5c8d55 --- /dev/null +++ b/docs/_static/class_hierarchy.html @@ -0,0 +1,497 @@ + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + + + + +
+ Color = Application Group
+ Chemical
Control
Core / General
Hydrogen
Metal
Other
Other Elec. Generators
Renewables +

+ Shape = Model Category
+ Control
Converter
Core
Finance
Resource
Storage +

+ + Border width = inheritance depth
+ (thicker = higher-level parent)

+ Arrows: parent → child
+ Scroll to zoom | Drag to pan +
+
+ + +
+ H2Integrate Class Hierarchy
+ + Interactive visualization — zoom, pan, hover for details + +
+ + + + + + diff --git a/docs/_toc.yml b/docs/_toc.yml index 08d048a91..f5cb561ac 100644 --- a/docs/_toc.yml +++ b/docs/_toc.yml @@ -12,7 +12,6 @@ parts: chapters: - file: user_guide/model_overview - file: user_guide/how_to_set_up_an_analysis - - file: user_guide/expected_naming_convention - file: user_guide/connecting_technologies - file: user_guide/defining_sites_and_resources - file: user_guide/design_optimization_in_h2i @@ -26,7 +25,9 @@ parts: - caption: Technology Models chapters: - file: technology_models/feedstocks + - file: technology_models/marine_hydrokinetic - file: technology_models/run_of_river + - file: technology_models/tidal - file: technology_models/natural_gas - file: technology_models/nuclear - file: technology_models/wombat_electrolyzer_om @@ -35,17 +36,24 @@ parts: - file: technology_models/atb_costs_pv.md - file: technology_models/atb_costs_wind.md - file: technology_models/co2.md - - file: technology_models/simple_generic_storage.md - file: technology_models/methanol.md - file: technology_models/ammonia.md - - file: technology_models/pysam_battery.md - file: technology_models/wind_plant_ard.md - file: technology_models/geologic_hydrogen.md - file: technology_models/grid - - file: technology_models/hydrogen_storage.md - file: technology_models/h2_fuel_cell.md + - file: technology_models/h2_smr.md - file: technology_models/iron_ewin.md - file: technology_models/iron_mine.md + - file: technology_models/iron_dri.md + - file: technology_models/steel_eaf.md + - caption: Storage Models + chapters: + - file: storage/storage_models_index.md + sections: + - file: storage/simple_generic_storage.md + - file: storage/pysam_battery.md + - file: storage/hydrogen_storage.md - caption: Resource Models chapters: - file: resource/resource_index @@ -58,12 +66,17 @@ parts: - file: resource/himawari_v3_api - file: resource/meteosat_prime_meridian_v4_api - file: resource/openmeteo_solar_archive + - file: resource/tidal_resource - caption: Control chapters: - file: control/control_overview - file: control/open-loop_controllers - file: control/pyomo_controllers - file: control/controller_demonstrations + - caption: Demand + chapters: + - file: demand/demand_components + - file: demand/demand_demo - caption: Finance Models chapters: - file: finance_models/financial_analyses diff --git a/docs/api.md b/docs/api.md index 7c4b9fa4e..6cf44f280 100644 --- a/docs/api.md +++ b/docs/api.md @@ -15,4 +15,5 @@ storage transporters tools + demand ``` diff --git a/docs/build_book.sh b/docs/build_book.sh index 5817e636c..8e9d6f837 100644 --- a/docs/build_book.sh +++ b/docs/build_book.sh @@ -1,2 +1,6 @@ rm -rf _build + +# Generate the interactive class hierarchy diagram +python generate_class_hierarchy.py + jupyter-book build --keep-going . diff --git a/docs/control/control_overview.md b/docs/control/control_overview.md index 7d9da9550..141606339 100644 --- a/docs/control/control_overview.md +++ b/docs/control/control_overview.md @@ -7,10 +7,9 @@ There are two different systematic approaches, or frameworks, in H2Integrate for The first approach, [open-loop control](#open-loop-control), assumes no feedback of any kind to the controller. The open-loop framework does not require a detailed technology performance model and can essentially act as the performance model. The open-loop framework establishes a control component that runs the control and passes out information about `_unmet_demand`, `unused_`, `_out`, and `total__unmet_demand`. Supported controllers: -- [`PassThroughOpenLoopController`](#pass-through-controller) +- [`SimpleStorageOpenLoopController`](#pass-through-controller) - [`DemandOpenLoopStorageController`](#demand-open-loop-storage-controller) -- [`DemandOpenLoopConverterController`](#demand-open-loop-converter-controller) -- [`FlexibleDemandOpenLoopConverterController`](#flexible-demand-open-loop-converter-controller) + (pyomo-control-framework)= @@ -20,4 +19,4 @@ The second systematic control approach, [pyomo control](#pyomo-control), allows In the pyomo control framework in H2Integrate, each technology can have control rules associated with them that are in turn passed to the pyomo control component, which is owned by the storage technology. The pyomo control component combines the technology rules into a single pyomo model, which is then passed to the storage technology performance model inside a callable dispatch function. The dispatch function also accepts a simulation method from the performance model and iterates between the pyomo model for dispatch commands and the performance simulation function to simulated performance with the specified commands. The dispatch function runs in specified time windows for dispatch and performance until the whole simulation time has been run. Supported controllers: -- [`HeuristicLoadFollowingController`](#heuristic-load-following-controller) +- [`HeuristicLoadFollowingStorageController`](#heuristic-load-following-controller) diff --git a/docs/control/controller_demonstrations.md b/docs/control/controller_demonstrations.md index 1bc727bec..82fd0b635 100644 --- a/docs/control/controller_demonstrations.md +++ b/docs/control/controller_demonstrations.md @@ -17,6 +17,8 @@ kernelspec: from pathlib import Path from matplotlib import pyplot as plt from h2integrate.core.h2integrate_model import H2IntegrateModel +from h2integrate import EXAMPLE_DIR + ``` ## Hydrogen Dispatch @@ -24,25 +26,33 @@ from h2integrate.core.h2integrate_model import H2IntegrateModel The following example is an expanded form of `examples/14_wind_hydrogen_dispatch`. Here, we're highlighting the dispatch controller setup from -`examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml`. Please note some sections are removed -simply to highlight the controller sections +`examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml`. Please note some sections are removed simply to highlight the controller sections + +```{literalinclude} ../../examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +:language: yaml +:lineno-start: 52 +:linenos: true +:lines: 52,53-54,57-58,59-71 +``` + +We also include a demand technology to calculate how much demand is met, how much commodity is unused to meet the demand, and how much demand is remaining: ```{literalinclude} ../../examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml :language: yaml -:lineno-start: 54 +:lineno-start: 79 :linenos: true -:lines: 54,59-61,67-74 +:lines: 79-86 ``` + Using the primary configuration, we can create, run, and postprocess an H2Integrate model. ```{code-cell} ipython3 # Create an H2Integrate model -model = H2IntegrateModel(Path("../../examples/14_wind_hydrogen_dispatch/inputs/h2i_wind_to_h2_storage.yaml")) +model = H2IntegrateModel(EXAMPLE_DIR/"14_wind_hydrogen_dispatch"/"inputs"/"h2i_wind_to_h2_storage.yaml") # Run the model model.run() -model.post_process() ``` Now, we can visualize the demand profiles over time. @@ -50,20 +60,13 @@ Now, we can visualize the demand profiles over time. ```{code-cell} ipython3 fig, (ax1, ax2) = plt.subplots(2, 1, sharex=True, figsize=(8, 6), layout="tight") -start_hour = 0 -end_hour = 200 -total_time_steps = model.prob.get_val("h2_storage.hydrogen_soc").size -demand_profile = [ - model.technology_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"][ - "demand_profile" - ] - * 1e-3 -] * total_time_steps +start_hour = 800 +end_hour = 1000 xvals = list(range(start_hour, end_hour)) ax1.plot( xvals, - model.prob.get_val("h2_storage.hydrogen_soc", units="percent")[start_hour:end_hour], + model.prob.get_val("h2_storage.SOC", units="percent")[start_hour:end_hour], label="SOC", ) ax2.plot( @@ -74,25 +77,25 @@ ax2.plot( ) ax2.plot( xvals, - model.prob.get_val("h2_storage.hydrogen_unused_commodity", units="t/h")[start_hour:end_hour], + model.prob.get_val("h2_load_demand.unused_hydrogen_out", units="t/h")[start_hour:end_hour], linestyle=":", label="H$_2$ Unused (kg)", ) ax2.plot( xvals, - model.prob.get_val("h2_storage.hydrogen_unmet_demand", units="t/h")[start_hour:end_hour], + model.prob.get_val("h2_load_demand.unmet_hydrogen_demand_out", units="t/h")[start_hour:end_hour], linestyle=":", label="H$_2$ Unmet Demand (kg)", ) ax2.plot( xvals, - model.prob.get_val("h2_storage.hydrogen_out", units="t/h")[start_hour:end_hour], + model.prob.get_val("h2_load_demand.hydrogen_out", units="t/h")[start_hour:end_hour], linestyle="-", label="H$_2$ Delivered (kg)", ) ax2.plot( xvals, - demand_profile[start_hour:end_hour], + model.prob.get_val("h2_load_demand.hydrogen_demand", units="t/h")[start_hour:end_hour], linestyle="--", label="H$_2$ Demand (kg)", ) @@ -100,15 +103,15 @@ ax2.plot( ax1.set_ylabel("SOC (%)") ax1.grid() ax1.set_axisbelow(True) -ax1.set_xlim(0, 200) -ax1.set_ylim(0, 50) +ax1.set_xlim(start_hour, end_hour) +ax1.set_ylim(60, 100) ax2.set_ylabel("H$_2$ Hourly (t)") ax2.set_xlabel("Timestep (hr)") ax2.grid() ax2.set_axisbelow(True) -ax2.set_ylim(0, 20) -ax2.set_yticks(range(0, 21, 2)) +ax2.set_ylim(0, 18) +ax2.set_yticks(range(0, 19, 2)) plt.legend(ncol=3) fig.show() diff --git a/docs/control/open-loop_controllers.md b/docs/control/open-loop_controllers.md index f8f6743b0..dfb7f241c 100644 --- a/docs/control/open-loop_controllers.md +++ b/docs/control/open-loop_controllers.md @@ -7,10 +7,10 @@ The open-loop storage controllers can be attached as the control strategy in the 2. Demand Open-Loop Storage Controller - uses simple logic to attempt to meet demand using the storage technology. (pass-through-controller)= -### Pass-Through Controller -The `PassThroughOpenLoopController` simply directly passes the input commodity flow to the output without any modifications. It is useful for testing, as a placeholder for more complex controllers, and for maintaining consistency between controlled and uncontrolled frameworks as this 'controller' does not alter the system output in any way. +### Simple Open-Loop Storage Controller +The `SimpleStorageOpenLoopController` passes the input commodity flow to the output, possibly with minor adjustments to meet demand. It is useful for testing and as a placeholder for more complex controllers. -For examples of how to use the `PassThroughOpenLoopController` open-loop control framework, see the following: +For examples of how to use the `SimpleStorageOpenLoopController` open-loop control framework, see the following: - `examples/01_onshore_steel_mn` - `examples/02_texas_ammonia` - `examples/12_ammonia_synloop` @@ -26,93 +26,3 @@ An example of an N2 diagram for a system using the open-loop control framework f For examples of how to use the `DemandOpenLoopStorageController` open-loop control framework, see the following: - `examples/14_wind_hydrogen_dispatch/` - `examples/19_simple_dispatch/` - -## Open-Loop Converter Controllers - -Open-loop converter controllers define rule-based logic for meeting commodity demand profiles without using dynamic system feedback. These controllers operate independently at each timestep. - -This page documents two core controller types: -1. Demand Open-Loop Converter Controller — meets a fixed demand profile. -2. Flexible Demand Open-Loop Converter Controller — adjusts demand up or down within flexible bounds. - -(demand-open-loop-converter-controller)= -### Demand Open-Loop Converter Controller -The `DemandOpenLoopConverterController` allocates commodity input to meet a defined demand profile. It does not contain energy storage logic, only **instantaneous** matching of supply and demand. - -The controller computes each value per timestep: -- Unmet demand (non-zero when supply < demand, otherwise 0.) -- Unused commodity (non-zero when supply > demand, otherwise 0.) -- Delivered output (commodity supplied to demand sink) - -This provides a simple baseline for understanding supply–demand balance before adding complex controls. - -#### Configuration -The controller is defined within the `tech_config` and requires these inputs. - -| Field | Type | Description | -| ----------------- | -------------- | ------------------------------------- | -| `commodity_name` | `str` | Commodity name (e.g., `"hydrogen"`). | -| `commodity_units` | `str` | Units (e.g., `"kg/h"`). | -| `demand_profile` | scalar or list | Timeseries demand or constant demand. | - -```yaml -control_strategy: - model: DemandOpenLoopConverterController -model_inputs: - control_parameters: - commodity_name: hydrogen - commodity_units: kg/h - demand_profile: [10, 10, 12, 15, 14] -``` -For an example of how to use the `DemandOpenLoopConverterController` open-loop control framework, see the following: -- `examples/23_solar_wind_ng_demand` - -(flexible-demand-open-loop-converter-controller)= -### Flexible Demand Open-Loop Converter Controller -The `FlexibleDemandOpenLoopConverterController` extends the fixed-demand controller by allowing the actual demand to flex up or down within defined bounds. This is useful for demand-side management scenarios where: -- Processes can defer demand (e.g., flexible industrial loads) -- The system requires demand elasticity without dynamic optimization - -The controller computes: -- Flexible demand (clamped within allowable ranges) -- Unmet flexible demand -- Unused commodity -- Delivered output - -Everything remains open-loop no storage, no intertemporal coupling. - -For an example of how to use the `FlexibleDemandOpenLoopConverterController` open-loop control framework, see the following: -- `examples/23_solar_wind_ng_demand` - -The flexible demand component takes an input commodity production profile, the maximum demand profile, and various constraints (listed below), and creates a "flexible demand profile" that follows the original input commodity production profile while satisfying varying constraint. -Please see the figure below for an example of how the flexible demand profile can vary from the original demand profile based on the input commodity production profile and the ramp rates. -The axes are unlabeled to allow for generalization to any commodity and unit type. - -| ![Flexible Demand Example](figures/flex_demand_fig.png) | -|-| - - -#### Configuration -The flexible demand controller is defined within the `tech_config` with the following parameters: - -| Field | Type | Description | -| ------------------- | -------------- | -------------------------------------------- | -| `commodity_name` | `str` | Commodity name. | -| `commodity_units` | `str` | Units for all values. | -| `demand_profile` | scalar or list | Default (nominal) demand profile. | -| `turndown_ratio` | float | Minimum fraction of baseline demand allowed. | -| `ramp_down_rate_fraction` | float | Maximum ramp-down rate per timestep expressed as a fraction of baseline demand. | -| `ramp_up_rate_fraction` | float | Maximum ramp-up rate per timestep expressed as a fraction of baseline demand. | -| `min_utilization` | float | Minimum total fraction of baseline demand that must be met over the entire simulation. | - -```yaml -model_inputs: - control_parameters: - commodity_name: hydrogen - commodity_units: kg/h - demand_profile: [10, 12, 10, 8] - turndown_ratio: 0.1 - ramp_down_rate_fraction: 0.5 - ramp_up_rate_fraction: 0.5 - min_utilization: 0 -``` diff --git a/docs/control/pyomo_controllers.md b/docs/control/pyomo_controllers.md index 1f6c517fc..2da23275f 100644 --- a/docs/control/pyomo_controllers.md +++ b/docs/control/pyomo_controllers.md @@ -13,15 +13,15 @@ The Pyomo control framework currently supports both a simple heuristic method an (heuristic-load-following-controller)= ## Heuristic Load Following Controller -The simple heuristic method is specified by setting the storage control to `HeuristicLoadFollowingController`. When using the Pyomo framework, a `dispatch_rule_set` for each technology connected to the storage technology must also be specified. These will typically be `PyomoDispatchGenericConverter` for generating technologies, and `PyomoRuleStorageBaseclass` for storage technologies. More complex rule sets may be developed as needed. +The simple heuristic method is specified by setting the storage control to `HeuristicLoadFollowingStorageController`. When using the Pyomo framework, a `dispatch_rule_set` for each technology connected to the storage technology must also be specified. These will typically be `PyomoDispatchGenericConverter` for generating technologies, and `PyomoRuleStorageBaseclass` for storage technologies. More complex rule sets may be developed as needed. -For an example of how to use the heuristic Pyomo control framework with the `HeuristicLoadFollowingController`, see +For an example of how to use the heuristic Pyomo control framework with the `HeuristicLoadFollowingStorageController`, see - `examples/18_pyomo_heuristic_wind_battery_dispatch` (optimized-load-following-controller)= ## Optimized Load Following Controller -The optimized dispatch method is specified by setting the storage control to `OptimizedDispatchController`. The same `dispatch_rule_set` for each technology connected to the storage technology is followed as in the heuristic case, where each technology must also have a `dispatch_rule_set` defined in the `tech_config`. The optimized dispatch currently uses the same dispatch rules as the heuristic dispatch. This method maximizes the load met while minimizing the cost of the system (operating cost) over each specified time window. +The optimized dispatch method is specified by setting the storage control to `OptimizedDispatchStorageController`. Unlike the heuristic method, the optimized dispatch method does not use `dispatch_rule_set` as an input in the `tech_config`. The `OptimizedDispatchStorageController` method maximizes the load met while minimizing the cost of the system (operating cost) over each specified time window. The optimized dispatch using Pyomo is implemented differently than the heuristic dispatch in order to be able to properly aggregate the individual Pyomo technology models into a cohesive Pyomo plant model for the optimization solver. Practically, this means that the Pyomo elements of the dispatch (including the individual technology models and the plant model) are not exposed to the main H2I code flow, and do not appear in the N2 diagram. The figure below shows a flow diagram of how the dispatch is implemented. The green blocks below represent what is represented in the N2 diagram of the system. The dispatch routine is currently self-contained within the storage technology of the system, though it includes solving an aggregated plant model in the optimization @@ -40,7 +40,7 @@ We have exposed the optimization cost (weighting) values to the user in this imp - The cost values are defined in units of "$/kW". ``` -For an example of how to use the optimized Pyomo control framework with the `OptimizedDispatchController`, see +For an example of how to use the optimized Pyomo control framework with the `OptimizedDispatchStorageController`, see - `examples/27_pyomo_optimized_dispatch` diff --git a/docs/demand/demand_components.md b/docs/demand/demand_components.md new file mode 100644 index 000000000..125973d0c --- /dev/null +++ b/docs/demand/demand_components.md @@ -0,0 +1,109 @@ +# Demand Components + +Demand components define rule-based logic for meeting commodity demand profiles without using dynamic system feedback. These components operate independently at each timestep. + +This page documents two core demand types: +1. [`GenericDemandComponent`](#generic-demand-component) — meets a fixed demand profile. +2. [`FlexibleDemandComponent`](#flexible-demand-component) — adjusts demand up or down within flexible bounds. + + +(demand-component-inputs-and-outputs)= +## Demand component inputs and outputs +The inputs to the demand components are the `{commodity}_demand` profile and the `{commodity}_in` profile. The `{commodity}_in` profile is the initial commodity used to satisfy the demand. Suppose the `{commodity}_in` (pink) and `{commodity}_demand` (green) profiles look like whats shown below: + +![](./figures/demand_inputs.png) + +The demand components then compute the following output profiles: +- `unmet_{commodity}_demand_out`: Unmet demand (non-zero when supply < demand, otherwise 0.) +- `unused_{commodity}_out`: Unused commodity (non-zero when supply > demand, otherwise 0.) + +![](./figures/demand_calcs.png) + +- `commodity_out`: Delivered output (commodity supplied to demand sink) + +![](./figures/demand_commodity_out.png) + +The demand components also compute the following outputs: +- `capacity_factor`: the ratio of the demand that's been met to the full demand +- `rated_commodity_production`: the maximum value of the demand profile + + +(generic-demand-component)= +### Generic Demand Component +The `GenericDemandComponent` allocates commodity input to meet a defined demand profile. It does not contain energy storage logic, only **instantaneous** matching of supply and demand. + +The demand component computes each value per timestep: +- Unmet demand (non-zero when supply < demand, otherwise 0.) +- Unused commodity (non-zero when supply > demand, otherwise 0.) +- Delivered output (commodity supplied to demand sink) + +This provides a simple baseline for understanding supply–demand balance. + +#### Configuration +The demand is defined within the `tech_config` and requires these inputs. + +| Field | Type | Description | +| ----------------- | -------------- | ------------------------------------- | +| `commodity_name` | `str` | Commodity name (e.g., `"hydrogen"`). | +| `commodity_units` | `str` | Units (e.g., `"kg/h"`). | +| `demand_profile` | scalar or list | Timeseries demand or constant demand. | + +```yaml +performance_model: + model: GenericDemandComponent +model_inputs: + performance_parameters: + commodity_name: hydrogen + commodity_units: kg/h + demand_profile: [10, 10, 12, 15, 14] +``` +For an example of how to use the `GenericDemandComponent` framework, see the following: +- `examples/23_solar_wind_ng_demand` + +(flexible-demand-component)= +### Flexible Demand Component +The `FlexibleDemandComponent` extends the generic demand component by allowing the actual demand to flex up or down within defined bounds. This is useful for demand-side management scenarios where: +- Processes can defer demand (e.g., flexible industrial loads) +- The system requires demand elasticity without dynamic optimization + +The component computes: +- Flexible demand (clamped within allowable ranges) +- Unmet flexible demand +- Unused commodity +- Delivered output + +For an example of how to use the `FlexibleDemandComponent` demand component, see the following: +- `examples/23_solar_wind_ng_demand` + +The flexible demand component takes an input commodity production profile, the maximum demand profile, and various constraints (listed below), and creates a "flexible demand profile" that follows the original input commodity production profile while satisfying varying constraint. +Please see the figure below for an example of how the flexible demand profile can vary from the original demand profile based on the input commodity production profile and the ramp rates. +The axes are unlabeled to allow for generalization to any commodity and unit type. + +| ![Flexible Demand Example](figures/flex_demand_fig.png) | +|-| + + +#### Configuration +The flexible demand component is defined within the `tech_config` with the following parameters: + +| Field | Type | Description | +| ------------------- | -------------- | -------------------------------------------- | +| `commodity_name` | `str` | Commodity name. | +| `commodity_units` | `str` | Units for all values. | +| `demand_profile` | scalar or list | Default (nominal) demand profile. | +| `turndown_ratio` | float | Minimum fraction of baseline demand allowed. | +| `ramp_down_rate_fraction` | float | Maximum ramp-down rate per timestep expressed as a fraction of baseline demand. | +| `ramp_up_rate_fraction` | float | Maximum ramp-up rate per timestep expressed as a fraction of baseline demand. | +| `min_utilization` | float | Minimum total fraction of baseline demand that must be met over the entire simulation. | + +```yaml +model_inputs: + performance_parameters: + commodity_name: hydrogen + commodity_units: kg/h + demand_profile: [10, 12, 10, 8] + turndown_ratio: 0.1 + ramp_down_rate_fraction: 0.5 + ramp_up_rate_fraction: 0.5 + min_utilization: 0 +``` diff --git a/docs/demand/demand_demo.md b/docs/demand/demand_demo.md new file mode 100644 index 000000000..fdc076bcc --- /dev/null +++ b/docs/demand/demand_demo.md @@ -0,0 +1,259 @@ +--- +jupytext: + text_representation: + extension: .md + format_name: myst + format_version: 0.13 + jupytext_version: 1.18.1 +kernelspec: + display_name: native-ard-h2i + language: python + name: python3 +--- + +# Demand Demonstration +Different usage of demand components are shown in the following examples: +- `13_dispatch_for_electrolyzer`: showcases how to set an overall demand for the system and a separate demand for the battery system. +- `23_solar_wind_ng_demand`: compares usage of the `GenericDemandComponent` and `FlexibleDemandComponent`. +- `24_solar_battery_grid`: highlights how to sell the electricity in excess of the demand to the grid. + +This demonstration will focus on the `13_dispatch_for_electrolyzer` example + +## Electrolyzer load demand + +The following example is an expanded form of `examples/13_dispatch_for_electrolyzer`. + +The technology interconnections: + +```{literalinclude} ../../examples/13_dispatch_for_electrolyzer/plant_config.yaml +:language: yaml +:lineno-start: 16 +:linenos: true +:lines: 16-27 +``` + +Which we can visualize using an XDSM diagram: + +![](./figures/example_13_xdsm.png) + +The electrolyzer system is comprised of 6 stacks, each rated at 10 MW, resulting in a total capacity of 60 MW. The minimum operating point of the electrolyzer (`turndown_ratio`) is 10% of the rated capacity, meaning that the electrolyzer is turned off if there is less than 6 MW of input electricity. + +```{literalinclude} ../../examples/13_dispatch_for_electrolyzer/tech_config.yaml +:language: yaml +:lineno-start: 120 +:linenos: true +:lines: 120-123,125-126,129-130,134 +``` + +We want to dispatch the battery to *keep the electrolyzer on*. We set the demand profile for the battery as the minimum power required to keep the electrolyzer on, 6 MW. + +```{note} +Note: the demand profile for the battery is only used by the battery controller and is not used in the battery performance model for any calculations. +``` + + +```{literalinclude} ../../examples/13_dispatch_for_electrolyzer/tech_config.yaml +:language: yaml +:lineno-start: 79 +:linenos: true +:lines: 79-90, 99 +``` + +We don't want to send more electricity to the electrolyzer than the electrolyzer can use. We use the demand component to saturate the electricity generation to the electrolyzer's rated capacity (equal to 60 MW). + +```{literalinclude} ../../examples/13_dispatch_for_electrolyzer/tech_config.yaml +:language: yaml +:lineno-start: 112 +:linenos: true +:lines: 112-119 +``` + + + +We initialize and setup the H2I model + +```{code-cell} ipython3 +from pathlib import Path +from matplotlib import pyplot as plt +from h2integrate.core.h2integrate_model import H2IntegrateModel +from h2integrate import EXAMPLE_DIR +from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml + +ex_dir = EXAMPLE_DIR / "13_dispatch_for_electrolyzer" +tech_config = load_tech_yaml(ex_dir / "tech_config.yaml") +plant_config = load_plant_yaml(ex_dir / "plant_config.yaml") +driver_config = load_driver_yaml(ex_dir / "driver_config.yaml") + +# modify all the output folders to be full filepaths +driver_config["general"]["folder_output"] = str(Path(ex_dir / "outputs").absolute()) +tech_config["technologies"]["distributed_wind_plant"]["model_inputs"]["performance_parameters"][ + "cache_dir" +] = ex_dir / "cache" + +input_config = { + "plant_config": plant_config, + "technology_config": tech_config, + "driver_config": driver_config, +} + + +# Create an H2Integrate model +h2i = H2IntegrateModel(input_config) + +# Setup the model +h2i.setup() +``` + +If we wanted to change the demand profiles for the battery (`battery`) or the demand component (`elec_load_demand`) to be different than the demand profiles specified in the technology config, we could do that using `set_val`: + +```{code-cell} ipython3 +electrolyzer_capacity_MW = 60 + +## Set the battery demand equal to the minimum electricity needed to keep the electrolyzer on +# h2i.prob.set_val("battery.electricity_demand", 0.1 * electrolyzer_capacity_MW, units="MW") + +## Set the demand of the demand component equal to the rated electrical capacity of the electrolyzer +# h2i.prob.set_val("elec_load_demand.electricity_demand", electrolyzer_capacity_MW, units="MW") +``` + +We then run the model: +```{code-cell} ipython3 +# Run the model +h2i.run() +h2i.prob.get_val("finance_subgroup_hydrogen.LCOH", units="USD/kg")[0] +``` + + +### Plotting outputs + +First, we get the main inputs and outputs of the `GenericDemandComponent` technology: + +```{code-cell} ipython3 +generation_with_battery = h2i.prob.get_val("elec_load_demand.electricity_in", units="MW") +full_demand = h2i.prob.get_val("elec_load_demand.electricity_demand", units="MW") +unmet_demand = h2i.prob.get_val("elec_load_demand.unmet_electricity_demand_out", units="MW") +excess_electricity = h2i.prob.get_val("elec_load_demand.unused_electricity_out", units="MW") +``` + +Plot the inputs to the `GenericDemandComponent` and outputs calculated in the `GenericDemandComponent`: + +```{code-cell} ipython3 +import matplotlib.pyplot as plt +fig, ax = plt.subplots(1, 1, figsize=[6.4, 2.4]) + +start_hour = 800 +end_hour = 1000 + +x = list(range(start_hour, end_hour)) +where_unmet_demand = [True if d>0 else False for d in unmet_demand[start_hour:end_hour]] +where_excess_commodity = [True if d>0 else False for d in excess_electricity[start_hour:end_hour]] + +ax.fill_between(x, full_demand[start_hour:end_hour], generation_with_battery[start_hour:end_hour], where=where_unmet_demand, color="tab:red", alpha=0.5, zorder=0, label="unmet_commodity_demand_out") +ax.fill_between(x, full_demand[start_hour:end_hour], generation_with_battery[start_hour:end_hour], where=where_excess_commodity, color="tab:blue", alpha=0.5, zorder=1, label="unused_commodity_out") +ax.plot(x, full_demand[start_hour:end_hour], color="tab:green", lw=2.0, ls='solid', zorder=4, label="commodity_demand") +ax.plot(x, generation_with_battery[start_hour:end_hour], color="tab:pink", lw=2.0, ls='solid', zorder=3, label="commodity_in") + +ax.set_xlim([start_hour,end_hour]) +ax.spines[['right', 'top']].set_visible(False) +ax.legend(bbox_to_anchor=(0.10, 0.95), loc="lower left", borderaxespad=0.0, framealpha=0.0, ncols=2) +ax.set_ylabel("GenericDemandComponent \nElectricity (MW)") +ax.set_xlabel("Time (hours)") +``` + + +Plot the main inputs and outputs of the `GenericDemandComponent`: + +```{code-cell} ipython3 +fig, ax = plt.subplots(1, 1, figsize=[6.4, 2.4]) +ax.fill_between(x, full_demand[start_hour:end_hour], generation_with_battery[start_hour:end_hour], where=where_excess_commodity, color="tab:grey", alpha=0.25, zorder=1, label="_unused_commodity_out") +ax.plot(x, generation_with_battery[start_hour:end_hour], color="tab:grey", lw=2.0, ls='solid', zorder=2, label="commodity_in", alpha=0.25) + +ax.plot(x, full_demand[start_hour:end_hour], color="tab:green", alpha=0.5, lw=1.5, ls='-.', zorder=3, label="commodity_demand") + +ax.plot(x, h2i.prob.get_val("elec_load_demand.electricity_out", units="MW")[start_hour:end_hour], color="tab:purple", lw=2.0, ls='solid', zorder=4, label="commodity_out") +ax.spines[['right', 'top']].set_visible(False) +ax.set_xlim([start_hour, end_hour]) +ax.set_ylabel("GenericDemandComponent \nElectricity (MW)") +ax.set_xlabel("Time (hours)") +ax.legend(bbox_to_anchor=(0.0, 0.95), loc="lower left", ncols=3, borderaxespad=0.0, framealpha=0.0) +``` + + +Plot the battery performance: + +```{code-cell} ipython3 +fig, ax = plt.subplots(1, 1, figsize=[7.2, 2.4]) + +start_hour = 900 +end_hour = 1000 +x = list(range(start_hour, end_hour)) + +generation = h2i.prob.get_val("battery.electricity_in", units="MW") +battery_demand = h2i.prob.get_val("battery.electricity_demand", units="MW") +battery_charge_discharge = h2i.prob.get_val("battery.electricity_out", units="MW") + +where_charge = [True if d<0 else False for d in battery_charge_discharge[start_hour:end_hour]] +where_discharge = [True if d>0 else False for d in battery_charge_discharge[start_hour:end_hour]] + +ax.plot(x, battery_demand[start_hour:end_hour], color="tab:green", alpha=0.5, lw=1.5, ls='-.', zorder=2, label="battery.electricity_demand") +ax.plot(x, generation[start_hour:end_hour], color="tab:blue", alpha=1.0, lw=1.5, ls='--', zorder=3, label="battery.electricity_in") +ax.plot(x, generation_with_battery[start_hour:end_hour], color="tab:pink", alpha=1.0, lw=1.5, ls='-', zorder=3, label="elec_combiner.electricity_out") +ax.fill_between(x, generation[start_hour:end_hour], generation_with_battery[start_hour:end_hour], where=where_charge, color="tab:cyan", alpha=0.5, zorder=0, label="battery charging") +ax.fill_between(x, generation[start_hour:end_hour], generation_with_battery[start_hour:end_hour], where=where_discharge, color="tab:orange", alpha=0.5, zorder=0, label="battery discharging") + + +ax.spines[['right', 'top']].set_visible(False) +ax.set_xlim([start_hour, end_hour]) +ax.set_ylim([0, 70]) +ax.legend(bbox_to_anchor=(1.0, 0.5), loc="center left", borderaxespad=0, framealpha=0.0) +ax.set_ylabel("Electricity (MW)") +ax.set_xlabel("Time (hours)") +``` + +Plot the battery SOC and charge/discharge profile + +```{code-cell} ipython3 +fig, (ax1, ax2) = plt.subplots(2, 1, sharex=True, figsize=[7.2, 4.8]) + +battery_SOC = h2i.prob.get_val("battery.SOC", units="percent") + +ax1.plot(x, battery_charge_discharge[start_hour:end_hour], color="tab:blue", alpha=1.0, lw=1.5, ls='-', zorder=3, label="battery.electricity_out") +ax1.spines[['right', 'top']].set_visible(False) +ax1.set_xlim([start_hour, end_hour]) +ax.legend(bbox_to_anchor=(1.0, 0.5), loc="center left", borderaxespad=0, framealpha=0.0) +ax1.set_ylabel("Electricity (MW)") + + +# Plot the SOC +ax2.plot(x, battery_SOC[start_hour:end_hour], color="tab:blue", lw=1.5) + +ax2.set_ylabel("SOC (%)") +ax2.set_ylim([0, 100]) +ax2.spines[['right', 'top']].set_visible(False) +ax2.set_xlabel("Time (hours)") +``` + + +### Changing the battery demand + +Lets see what the LCOH is when the battery is used to keep the electrolyzer on: +```{code-cell} ipython3 +h2i.prob.get_val("finance_subgroup_hydrogen.LCOH", units="USD/kg")[0] +``` + +If we re-run H2I and set the battery demand equal to the electrolyzer capacity instead, we can see that the LCOH increases: + +```{code-cell} ipython3 + +# Set the battery demand equal to the rated electrical capacity of the electrolyzer +h2i.prob.set_val("battery.electricity_demand",electrolyzer_capacity_MW, units="MW") + +# Set the demand of the demand component equal to the rated electrical capacity of the electrolyzer +h2i.prob.set_val("elec_load_demand.electricity_demand", electrolyzer_capacity_MW, units="MW") + +# Re-run H2I +h2i.run() + +# Get the LCOH +h2i.prob.get_val("finance_subgroup_hydrogen.LCOH", units="USD/kg")[0] +``` diff --git a/docs/demand/figures/demand_calcs.png b/docs/demand/figures/demand_calcs.png new file mode 100644 index 000000000..a3e297d93 Binary files /dev/null and b/docs/demand/figures/demand_calcs.png differ diff --git a/docs/demand/figures/demand_commodity_out.png b/docs/demand/figures/demand_commodity_out.png new file mode 100644 index 000000000..ec699a97a Binary files /dev/null and b/docs/demand/figures/demand_commodity_out.png differ diff --git a/docs/demand/figures/demand_inputs.png b/docs/demand/figures/demand_inputs.png new file mode 100644 index 000000000..91e31d8a7 Binary files /dev/null and b/docs/demand/figures/demand_inputs.png differ diff --git a/h2integrate/control/control_strategies/converters/__init__.py b/docs/demand/figures/example_13_xdsm.png similarity index 100% rename from h2integrate/control/control_strategies/converters/__init__.py rename to docs/demand/figures/example_13_xdsm.png diff --git a/docs/control/figures/flex_demand_fig.png b/docs/demand/figures/flex_demand_fig.png similarity index 100% rename from docs/control/figures/flex_demand_fig.png rename to docs/demand/figures/flex_demand_fig.png diff --git a/docs/developer_guide/adding_a_new_technology.md b/docs/developer_guide/adding_a_new_technology.md index 9d30d320b..5c22e6d19 100644 --- a/docs/developer_guide/adding_a_new_technology.md +++ b/docs/developer_guide/adding_a_new_technology.md @@ -258,6 +258,19 @@ In the middle-ground case where the models might use a shared object that is com This would require additional logic to first check if the cached object exists and is valid before attempting to load it, otherwise it would create the object from scratch. There is an example of this in the `hopp_wrapper.py` file. +### Specifying allowable time step for your model +If you want your model to run with time steps other than 1 hour (3600 s), then you must specify the `_time_step_bounds` as a class attribute in each of your model classes. To run a simulation with a given time step, all models in the plant must be compatible with the desired time step. + +```python +class ECOElectrolyzerPerformanceModel(ElectrolyzerPerformanceBaseClass): + """ + An OpenMDAO component that wraps the PEM electrolyzer model. + Takes electricity input and outputs hydrogen and oxygen generation rates. + """ + + # (min, max) time step lengths (in seconds) compatible with this model + _time_step_bounds = (300, 3600) # (5-min, 1-hour) +``` ### Other cases diff --git a/docs/developer_guide/class_structure.md b/docs/developer_guide/class_structure.md index 49631eb14..0b99823ca 100644 --- a/docs/developer_guide/class_structure.md +++ b/docs/developer_guide/class_structure.md @@ -18,6 +18,29 @@ Let us take a PEM electrolyzer model as an example. Each electrolyzer model has shared methods and attributes that would be present in any valid model. These methods are defined at the `ElectrolyzerBaseClass` level, which inherits from `ConverterBaseClass`. Any implemented electrolyzer model should inherit from `ElectrolyzerBaseClass` to make use of its already built out structure and methods. -This is shown below. -![Class structure](fig_of_class_structure.png) +## Interactive class hierarchy + +The diagram below shows **every model class** in H2Integrate and how they inherit from one another. +The visual encoding uses three dimensions: + +- **Color** represents the application group (electricity, chemical, metal, etc.) +- **Shape** represents the model category (converter, storage, transporter, etc.) +- **Border thickness** indicates inheritance depth (thicker borders = higher-level parent classes) + +Arrows point from parent to child. +You can **zoom**, **pan**, **hover** for details, and **drag** nodes to rearrange the layout. + +To regenerate this visualization after code changes, run: + +```bash +python docs/generate_class_hierarchy.py +``` + +```{raw} html +
+ +
+``` diff --git a/docs/developer_guide/why_make_h2integrate.md b/docs/developer_guide/why_make_h2integrate.md index 7d2d48768..851813c36 100644 --- a/docs/developer_guide/why_make_h2integrate.md +++ b/docs/developer_guide/why_make_h2integrate.md @@ -45,7 +45,7 @@ Using OpenMDAO for this gives quite a few benefits: - internal units handling and conversion - built-in nonlinear solvers to resolve model coupling - built-in optimization and parameter sweep drivers -- multiple existing NREL tools use OpenMDAO, including [WISDEM](https://github.com/WISDEM/WISDEM/) and [WEIS](https://github.com/WISDEM/WEIS), so we can draw from institutional knowledge +- multiple existing NLR tools use OpenMDAO, including [WISDEM](https://github.com/NLRWindSystems/WISDEM/) and [WEIS](https://github.com/NLRWindSystems/WEIS), so we can draw from institutional knowledge - set up with gradient-based optimization in mind, which is not currently a focus for H2Integrate but this positions the tool well for potential future additions - parallelization done using MPI, which is also not currently a focus but useful for the future @@ -60,7 +60,7 @@ Additionally, we can code H2Integrate in a way to minimize some of the potential ## Where does HOPP come into play? -[HOPP](https://github.com/NREL/HOPP) is a well-structured and useful tool that analyzes hybrid plants producing electricity. +[HOPP](https://github.com/NatLabRockies/HOPP) is a well-structured and useful tool that analyzes hybrid plants producing electricity. H2Integrate historically calls HOPP to obtain the plant's outputted electricity, which is then used downstream to feed into electrolyzers, steel, and other components. The current setup of H2Integrate largely works in the same way. diff --git a/docs/finance_models/ProFastBase.md b/docs/finance_models/ProFastBase.md index baa212e77..b2ce0798e 100644 --- a/docs/finance_models/ProFastBase.md +++ b/docs/finance_models/ProFastBase.md @@ -1,10 +1,10 @@ (profastmodel:profastmodel)= # ProFAST Financial Model -The Production Financial Analysis Scenario Tool or (ProFAST)[https://www.nrel.gov/hydrogen/profast-access] is a financial modeling tool developed at the NREL based on General Accepted Accounting Principles (GAAP) methodology. The model provides a quick and convenient way to conduct in-depth financial analysis for production system and services. +The Production Financial Analysis Scenario Tool or (ProFAST)[https://www.nlr.gov/hydrogen/profast-access] is a financial modeling tool developed at the NLR based on General Accepted Accounting Principles (GAAP) methodology. The model provides a quick and convenient way to conduct in-depth financial analysis for production system and services. Currently there are two ProFAST models that can be used: -- [``ProFastLCO``](profastcomp:profastcompmodel): A price-taker model that calculates levelized cost of commodity (or breakeven price) using [ProFAST](https://github.com/NREL/ProFAST). -- [``ProFastNPV``](profastnpv:profastnpvmodel): A price-setter model that calculates the net present value of a commodity using [ProFAST](https://github.com/NREL/ProFAST). +- [``ProFastLCO``](profastcomp:profastcompmodel): A price-taker model that calculates levelized cost of commodity (or breakeven price) using [ProFAST](https://github.com/NatLabRockies/ProFAST). +- [``ProFastNPV``](profastnpv:profastnpvmodel): A price-setter model that calculates the net present value of a commodity using [ProFAST](https://github.com/NatLabRockies/ProFAST). (profast:overview)= ## Finance parameters overview diff --git a/docs/finance_models/ProFastComp.md b/docs/finance_models/ProFastComp.md index 6403505d3..e94fe210e 100644 --- a/docs/finance_models/ProFastComp.md +++ b/docs/finance_models/ProFastComp.md @@ -1,7 +1,7 @@ (profastcomp:profastcompmodel)= # ProFastComp -The `ProFastLCO` finance model calculates levelized cost of a commodity using [ProFAST](https://github.com/NREL/ProFAST). +The `ProFastLCO` finance model calculates levelized cost of a commodity using [ProFAST](https://github.com/NatLabRockies/ProFAST). The inputs, outputs, and naming convention for the `ProFastLCO` model are outlined in this doc page. diff --git a/docs/finance_models/ProFastNPV.md b/docs/finance_models/ProFastNPV.md index ffe645f88..70447fc6c 100644 --- a/docs/finance_models/ProFastNPV.md +++ b/docs/finance_models/ProFastNPV.md @@ -1,6 +1,6 @@ (profastnpv:profastnpvmodel)= # ProFastNPV -The `ProFastNPV` finance model calculates the net present value (NPV) of a commodity using [ProFAST](https://github.com/NREL/ProFAST). +The `ProFastNPV` finance model calculates the net present value (NPV) of a commodity using [ProFAST](https://github.com/NatLabRockies/ProFAST). `ProFastNPV` inherits from `ProFastBase` so refer to the [`ProFastBase` documentation](profast:overview) for setting the finance parameters. diff --git a/docs/finance_models/finance_index.md b/docs/finance_models/finance_index.md index ab9f2c018..737ca4332 100644 --- a/docs/finance_models/finance_index.md +++ b/docs/finance_models/finance_index.md @@ -18,15 +18,15 @@ The `commodity_type` and `description` are used in the finance model naming conv (finance:supportedmodels)= ## Currently supported general finance models -- [``ProFastLCO``](profastcomp:profastcompmodel): calculates levelized cost of commodity using [ProFAST](https://github.com/NREL/ProFAST). -- [``ProFastNPV``](profastnpv:profastnpvmodel): calculates the net present value of a commodity using [ProFAST](https://github.com/NREL/ProFAST). +- [``ProFastLCO``](profastcomp:profastcompmodel): calculates levelized cost of commodity using [ProFAST](https://github.com/NatLabRockies/ProFAST). +- [``ProFastNPV``](profastnpv:profastnpvmodel): calculates the net present value of a commodity using [ProFAST](https://github.com/NatLabRockies/ProFAST). - [``NumpyFinancialNPV``](numpyfinancialnpvfinance:numpyfinancialnpvmodel): calculates the net present value of a commodity using the [NumPy Financial npv](https://numpy.org/numpy-financial/latest/npv.html#numpy_financial.npv) method. ## Custom finance models A general finance model can be defined similarly to a custom technology model. A custom finance model should be defined in the plant configuration file within the `finance_groups` section under `finance_parameters`. -Below shows an example, similar to the [Wind Electrolyzer Example](https://github.com/NREL/H2Integrate/tree/develop/examples/08_wind_electrolyzer/) of how to define a custom finance model within the `plant_config.yaml` file: +Below shows an example, similar to the [Wind Electrolyzer Example](https://github.com/NatLabRockies/H2Integrate/tree/develop/examples/08_wind_electrolyzer/) of how to define a custom finance model within the `plant_config.yaml` file: ```yaml finance_parameters: finance_groups: diff --git a/docs/generate_class_hierarchy.py b/docs/generate_class_hierarchy.py new file mode 100644 index 000000000..47918b890 --- /dev/null +++ b/docs/generate_class_hierarchy.py @@ -0,0 +1,673 @@ +""" +Generate an interactive class hierarchy visualization for H2Integrate. + +This script scans the h2integrate package to discover all classes and their +inheritance relationships, then produces an interactive HTML visualization +(zoomable/scrollable) suitable for embedding in the Jupyter Book docs. + +Visual encoding: + - **Shape** → model category (converter, storage, transporter, etc.) + - **Color** → product / application group (electricity, chemical, metal, etc.) + - **Border width** → inheritance depth (thicker = higher-level parent) + +Usage: + python docs/generate_class_hierarchy.py + +Outputs: + docs/_static/class_hierarchy.html — interactive graph +""" + +import os +import re +import ast +import math +from pathlib import Path + +import networkx as nx +from pyvis.network import Network + +from h2integrate import ROOT_DIR + + +# --------------------------------------------------------------------------- +# Configuration +# --------------------------------------------------------------------------- + +REPO_ROOT = ROOT_DIR.parent +OUTPUT_HTML = REPO_ROOT / "docs" / "_static" / "class_hierarchy.html" + +# Directories / path fragments that indicate test code (case-insensitive check) +TEST_INDICATORS = {"test", "tests", "conftest", "test_"} + +# We only show H2I-native classes; external bases (OpenMDAO, attrs, etc.) +# are excluded from the visualization entirely. +EXTERNAL_BASES_TO_KEEP: set[str] = set() + +# --------------------------------------------------------------------------- +# Category detection rules: (directory substring -> (model_category, product)) +# Order matters -- first match wins. +# model_category → controls node SHAPE +# product → controls node COLOR (via color group mapping below) +# --------------------------------------------------------------------------- +CATEGORY_RULES = [ + ("core", ("Core", "General")), + # --- Electricity-producing converters --- + ("converters/wind", ("Converter", "Wind")), + ("converters/solar", ("Converter", "Solar")), + ("converters/nuclear", ("Converter", "Nuclear")), + ("converters/grid", ("Converter", "Grid")), + ("converters/water_power", ("Converter", "Water Power")), + ("converters/natural_gas", ("Converter", "Natural Gas")), + ("converters/hopp", ("Converter", "HOPP")), + # --- Chemical converters --- + ("converters/hydrogen", ("Converter", "Hydrogen")), + ("converters/ammonia", ("Converter", "Ammonia")), + ("converters/methanol", ("Converter", "Methanol")), + ("converters/co2", ("Converter", "CO2")), + ("converters/nitrogen", ("Converter", "Nitrogen")), + ("converters/water", ("Converter", "Water")), + # --- Metal converters --- + ("converters/iron", ("Converter", "Iron")), + ("converters/steel", ("Converter", "Steel")), + # --- Catch-all converter --- + ("converters", ("Converter", "Other")), + # --- Non-converter categories --- + ("storage", ("Storage", "General")), + ("resource", ("Resource", "General")), + ("finances", ("Finance", "General")), + ("transporters", ("Transporter", "General")), + ("control", ("Control", "General")), + ("simulation", ("Simulation", "General")), + ("tools", ("Tools", "General")), + ("postprocess", ("Post-processing", "General")), + ("preprocess", ("Pre-processing", "General")), +] + +# --------------------------------------------------------------------------- +# Shape by model category +# --------------------------------------------------------------------------- +CATEGORY_SHAPES_PYVIS = { + "Core": "ellipse", + "Converter": "dot", + "Storage": "diamond", + "Resource": "triangle", + "Finance": "star", + "Transporter": "square", + "Control": "hexagon", + "Simulation": "triangleDown", + "Tools": "box", + "Post-processing": "box", + "Pre-processing": "box", +} + +# --------------------------------------------------------------------------- +# Color by broad application group +# Products are mapped to a broad group, each group gets one color. +# --------------------------------------------------------------------------- +PRODUCT_TO_GROUP = { + "General": "Core / General", + "Wind": "Renewables", + "Solar": "Renewables", + "Water Power": "Renewables", + "HOPP": "Renewables", + "Nuclear": "Other Elec. Generators", + "Grid": "Other Elec. Generators", + "Natural Gas": "Other Elec. Generators", + "Hydrogen": "Hydrogen", + "Ammonia": "Chemical", + "Methanol": "Chemical", + "CO2": "Chemical", + "Nitrogen": "Chemical", + "Water": "Chemical", + "Iron": "Metal", + "Steel": "Metal", + "Other": "Other", +} + +GROUP_COLORS = { + "Core / General": "#555555", + "Renewables": "#4A90D9", + "Other Elec. Generators": "#1B3A5C", + "Hydrogen": "#2E7D32", + "Chemical": "#66BB6A", + "Metal": "#D84315", + "Control": "#00ACC1", + "Other": "#F5C542", +} + +# Patterns used to detect control-related classes by name. +# If a class name matches any of these, its color group is overridden to "Control". +CONTROL_NAME_PATTERNS = re.compile(r"control|pyomo|openloop|open_loop", re.IGNORECASE) + +# Border width range for inheritance depth +MAX_BORDER_WIDTH = 5 +MIN_BORDER_WIDTH = 1 + + +# --------------------------------------------------------------------------- +# AST helpers +# --------------------------------------------------------------------------- + + +def _is_test_path(filepath: Path) -> bool: + """Return True if the file path looks like it belongs to test code.""" + parts = filepath.parts + for part in parts: + lower = part.lower() + if lower in TEST_INDICATORS or lower.startswith("test_"): + return True + if filepath.stem.lower().startswith("test_") or filepath.stem.lower() == "conftest": + return True + return False + + +def _rel_mod_path(filepath: Path) -> str: + """Return the filepath relative to the repo root using forward slashes.""" + try: + return str(filepath.relative_to(ROOT_DIR)).replace("\\", "/") + except ValueError: + return str(filepath).replace("\\", "/") + + +def _classify(filepath: Path) -> tuple[str, str]: + """Determine the (model_category, product) for a class based on its file path.""" + rel = _rel_mod_path(filepath) + for pattern, cat_tuple in CATEGORY_RULES: + if pattern in rel: + return cat_tuple + return ("Other", "Other") + + +def _resolve_base_name(base_node: ast.expr) -> str | None: + """Extract a human-readable base-class name from an AST node.""" + if isinstance(base_node, ast.Name): + return base_node.id + if isinstance(base_node, ast.Attribute): + # e.g. om.ExplicitComponent -> ExplicitComponent + return base_node.attr + if isinstance(base_node, ast.Subscript): + # e.g. Generic[T] -> Generic + return _resolve_base_name(base_node.value) + return None + + +# --------------------------------------------------------------------------- +# Scanning +# --------------------------------------------------------------------------- + + +def scan_classes(package_root: Path): + """Walk the package tree and return class info. + + Returns + ------- + classes : dict + {class_name: {"bases": [str], "file": Path, "category": str}} + If multiple classes share a name, the module path is prepended to + disambiguate. + """ + raw: list[dict] = [] + + for dirpath, _dirnames, filenames in os.walk(package_root): + dirpath = Path(dirpath) + for fname in filenames: + if not fname.endswith(".py"): + continue + filepath = dirpath / fname + if _is_test_path(filepath): + continue + try: + source = filepath.read_text(encoding="utf-8", errors="replace") + tree = ast.parse(source, filename=str(filepath)) + except SyntaxError: + continue + + for node in ast.walk(tree): + if not isinstance(node, ast.ClassDef): + continue + bases = [] + for b in node.bases: + bname = _resolve_base_name(b) + if bname: + bases.append(bname) + category, subcategory = _classify(filepath) + raw.append( + { + "name": node.name, + "bases": bases, + "file": filepath, + "model_category": category, + "product": subcategory, + } + ) + + # Detect name collisions and disambiguate + from collections import Counter + + name_counts = Counter(r["name"] for r in raw) + classes: dict[str, dict] = {} + for r in raw: + name = r["name"] + if name_counts[name] > 1: + # Prefix with the relative module path to disambiguate + module = _rel_mod_path(r["file"]).replace("/", ".").removesuffix(".py") + key = f"{module}.{name}" + else: + key = name + classes[key] = { + "bases": r["bases"], + "file": r["file"], + "model_category": r["model_category"], + "product": r["product"], + } + + return classes + + +# --------------------------------------------------------------------------- +# Graph construction +# --------------------------------------------------------------------------- + +# Classes to exclude from the visualization entirely. +# We filter out all config/dataclass definitions — only performance, cost, +# and other "model" classes are shown. +CONFIG_PATTERN = re.compile(r"Config$", re.IGNORECASE) +EXCLUDE_CLASSES = { + "BaseConfig", +} + + +def build_graph(classes: dict) -> nx.DiGraph: + """Build a directed graph of class inheritance (edges point from parent to child).""" + G = nx.DiGraph() + + # Build a set of all known H2I class names for quick lookup + known_names = set(classes.keys()) + # Also build short-name -> full-key mapping (for resolving base names) + short_to_full: dict[str, list[str]] = {} + for key in classes: + short = key.rsplit(".", 1)[-1] if "." in key else key + short_to_full.setdefault(short, []).append(key) + + def resolve(base_name: str) -> str | None: + """Resolve a base class name to a node key, or None to skip.""" + if base_name in known_names: + return base_name + candidates = short_to_full.get(base_name, []) + if len(candidates) == 1: + return candidates[0] + if len(candidates) > 1: + # Ambiguous — pick the one from core if available + for c in candidates: + if "core" in c.lower(): + return c + return candidates[0] + # External base — keep only the interesting ones + if base_name in EXTERNAL_BASES_TO_KEEP: + return base_name + return None + + def _is_excluded(name: str) -> bool: + """Return True if the class should be excluded (configs, etc.).""" + if name in EXCLUDE_CLASSES: + return True + if CONFIG_PATTERN.search(name): + return True + return False + + # Add all H2I class nodes (skip configs) + for key, info in classes.items(): + short_name = key.rsplit(".", 1)[-1] if "." in key else key + if _is_excluded(short_name): + continue + model_cat = info.get("model_category", "Other") + product = info.get("product", "General") + G.add_node( + key, + label=short_name, + model_category=model_cat, + product=product, + title=f"{short_name}\n{_rel_mod_path(info['file'])}\n[{model_cat} / {product}]", + ) + + # Add edges (parent -> child) — only between H2I classes already in the graph + for key, info in classes.items(): + short_name = key.rsplit(".", 1)[-1] if "." in key else key + if _is_excluded(short_name): + continue + if key not in G: + continue + for base_name in info["bases"]: + parent = resolve(base_name) + if parent is None: + continue + # Only add edges to parents that are already in the graph (H2I classes). + # Do NOT add external nodes. + if parent not in G: + continue + G.add_edge(parent, key) + + return G + + +# --------------------------------------------------------------------------- +# Inheritance depth computation +# --------------------------------------------------------------------------- + + +def _compute_depths(G: nx.DiGraph) -> dict[str, int]: + """Compute inheritance depth for each node (0 = root, increases for children).""" + depths: dict[str, int] = {} + roots = [n for n in G if G.in_degree(n) == 0] + for root in roots: + queue = [(root, 0)] + visited = {root} + while queue: + node, d = queue.pop(0) + depths[node] = max(depths.get(node, 0), d) + for child in G.successors(node): + if child not in visited: + visited.add(child) + queue.append((child, d + 1)) + for n in G.nodes: + if n not in depths: + depths[n] = 0 + return depths + + +def _border_width(depth: int, max_depth: int) -> float: + """Compute border width: thicker for roots, thinner for deeply inherited.""" + if max_depth == 0: + return MAX_BORDER_WIDTH + return max( + MIN_BORDER_WIDTH, + MAX_BORDER_WIDTH - depth * (MAX_BORDER_WIDTH - MIN_BORDER_WIDTH) / max_depth, + ) + + +# --------------------------------------------------------------------------- +# Visualization — interactive HTML +# --------------------------------------------------------------------------- + + +def build_interactive_html(G: nx.DiGraph, output_path: Path): + """Create a pyvis interactive HTML visualization of the graph.""" + net = Network( + height="900px", + width="100%", + directed=True, + notebook=False, + cdn_resources="in_line", + bgcolor="#FFFFFF", + font_color="#333333", + select_menu=False, + filter_menu=False, + ) + + net.set_options(""" + { + "physics": { + "enabled": true, + "forceAtlas2Based": { + "gravitationalConstant": -80, + "centralGravity": 0.008, + "springLength": 120, + "springConstant": 0.06, + "damping": 0.4, + "avoidOverlap": 0.6 + }, + "solver": "forceAtlas2Based", + "stabilization": { + "enabled": true, + "iterations": 1500, + "updateInterval": 25 + }, + "maxVelocity": 50, + "minVelocity": 0.01 + }, + "layout": { + "improvedLayout": true, + "randomSeed": 42 + }, + "edges": { + "arrows": { "to": { "enabled": true, "scaleFactor": 0.5 } }, + "color": { "color": "#888888", "opacity": 0.5 }, + "smooth": { "type": "continuous" }, + "width": 1.2 + }, + "interaction": { + "hover": true, + "tooltipDelay": 100, + "zoomView": true, + "dragView": true, + "navigationButtons": true, + "keyboard": { "enabled": true } + } + } + """) + + depths = _compute_depths(G) + max_depth = max(depths.values(), default=0) + + # Cluster seeds by model_category + used_categories = sorted({G.nodes[n].get("model_category", "Other") for n in G.nodes}) + cat_to_index = {cat: i for i, cat in enumerate(used_categories)} + n_cats = len(used_categories) + CLUSTER_RADIUS = 600 + INTRA_SCATTER = 180 + _cat_counter: dict[str, int] = {c: 0 for c in used_categories} + + # Determine node sizes based on out-degree + max_degree = max((G.out_degree(n) for n in G.nodes), default=1) or 1 + + for node_id in G.nodes: + data = G.nodes[node_id] + label = data.get("label", node_id) + model_cat = data.get("model_category", "Other") + product = data.get("product", "General") + tooltip = data.get("title", label) + + # Override color group to "Control" for control-related classes + if CONTROL_NAME_PATTERNS.search(label): + color_group = "Control" + else: + color_group = PRODUCT_TO_GROUP.get(product, "Other") + color = GROUP_COLORS.get(color_group, "#BDBDBD") + shape = CATEGORY_SHAPES_PYVIS.get(model_cat, "dot") + bw = _border_width(depths.get(node_id, 0), max_depth) + out_deg = G.out_degree(node_id) + size = 18 + 27 * (out_deg / max_degree) + + # Compute initial position: cluster centre + spiral offset + idx = cat_to_index.get(model_cat, 0) + angle_base = 2 * math.pi * idx / max(n_cats, 1) + cx = CLUSTER_RADIUS * math.cos(angle_base) + cy = CLUSTER_RADIUS * math.sin(angle_base) + seq = _cat_counter[model_cat] + _cat_counter[model_cat] += 1 + spiral_angle = seq * 0.8 + spiral_r = INTRA_SCATTER * (0.3 + 0.7 * (seq / max(1, _cat_counter[model_cat]))) + x = cx + spiral_r * math.cos(spiral_angle) + y = cy + spiral_r * math.sin(spiral_angle) + + net.add_node( + node_id, + label=label, + title=tooltip, + color={ + "background": color, + "border": "#555555", + "highlight": {"background": "#FF6B6B", "border": "#FF0000"}, + "hover": {"background": "#FFD700", "border": "#FF8C00"}, + }, + size=size, + borderWidth=bw, + shape=shape, + font={"size": 14, "face": "Arial"}, + x=x, + y=y, + ) + + for u, v in G.edges: + net.add_edge(u, v) + + # --- Build legend HTML --- + # Color groups: collect the actual group used for each node + used_groups = set() + for n in G.nodes: + label_n = G.nodes[n].get("label", n) + product_n = G.nodes[n].get("product", "General") + if CONTROL_NAME_PATTERNS.search(label_n): + used_groups.add("Control") + else: + used_groups.add(PRODUCT_TO_GROUP.get(product_n, "Other")) + used_groups = sorted(used_groups) + color_items = [] + for group in used_groups: + c = GROUP_COLORS.get(group, "#BDBDBD") + color_items.append( + f'{group}' + ) + color_legend = "
".join(color_items) + + # Model category shapes + shape_labels = { + "ellipse": "◯", # circle-like for Core + "dot": "●", # filled circle for Converter + "diamond": "◆", # diamond for Storage + "triangle": "▲", # triangle for Resource + "star": "★", # star for Finance + "square": "■", # square for Transporter + "hexagon": "⬢", # hexagon for Control + "triangleDown": "▼", # down-triangle for Simulation + "box": "■", # square for Tools + } + used_cats = sorted({G.nodes[n].get("model_category", "Other") for n in G.nodes}) + shape_items = [] + for cat in used_cats: + shape = CATEGORY_SHAPES_PYVIS.get(cat, "dot") + symbol = shape_labels.get(shape, "●") + shape_items.append( + f'' + f"{symbol}{cat}" + ) + shape_legend = "
".join(shape_items) + + # Save and inject legend + net.generate_html() + raw_html = net.html + output_path.write_text(raw_html, encoding="utf-8") + html = output_path.read_text(encoding="utf-8") + + legend_div = f""" +
+ Color = Application Group
+ {color_legend} +

+ Shape = Model Category
+ {shape_legend} +

+ + Border width = inheritance depth
+ (thicker = higher-level parent)

+ Arrows: parent → child
+ Scroll to zoom | Drag to pan +
+
+ """ + + title_div = """ +
+ H2Integrate Class Hierarchy
+ + Interactive visualization — zoom, pan, hover for details + +
+ """ + + # Inject a script to disable physics after stabilization so the + # diagram is still unless the user drags a node. + stabilize_script = """ + + """ + + html = html.replace("", f"{legend_div}\n{title_div}\n{stabilize_script}\n") + output_path.write_text(html, encoding="utf-8") + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + + +def main(): + print(f"Scanning classes in {ROOT_DIR} ...") + classes = scan_classes(ROOT_DIR) + print(f" Found {len(classes)} classes (excluding test files)") + + print("Building inheritance graph ...") + G = build_graph(classes) + print(f" Graph has {G.number_of_nodes()} nodes and {G.number_of_edges()} edges") + + # Remove isolated nodes (no inheritance relationships) to reduce clutter + isolates = list(nx.isolates(G)) + G.remove_nodes_from(isolates) + print( + f" After removing {len(isolates)} isolated classes: " + f"{G.number_of_nodes()} nodes, {G.number_of_edges()} edges" + ) + + print(f"Generating interactive HTML → {OUTPUT_HTML} ...") + OUTPUT_HTML.parent.mkdir(parents=True, exist_ok=True) + build_interactive_html(G, OUTPUT_HTML) + + print("Done!") + + # Print summary by category + cats: dict[str, int] = {} + for n in G.nodes: + cat = G.nodes[n].get("model_category", "Other") + cats[cat] = cats.get(cat, 0) + 1 + print("\nClasses by model category (in graph):") + for cat in sorted(cats, key=cats.get, reverse=True): + print(f" {cat}: {cats[cat]}") + + +if __name__ == "__main__": + main() diff --git a/docs/getting_started/expected_user_knowledge.md b/docs/getting_started/expected_user_knowledge.md index 7c1c6ea96..42b49d554 100644 --- a/docs/getting_started/expected_user_knowledge.md +++ b/docs/getting_started/expected_user_knowledge.md @@ -27,8 +27,8 @@ Users should also be familiar with the [Google style](https://www.sphinx-doc.org H2Integrate itself is a framework that relies on a number of other tools and libraries to function. Users should be familiar with the following tools and libraries to use H2Integrate effectively: -- [HOPP](https://github.com/NREL/HOPP): Used for simulating technologies that produce electricity for other components in H2Integrate -- [PySAM](https://github.com/NREL/pysam): Provides access to the System Advisor Model (SAM) for performance and financial modeling; underlying tool used for modeling certain generation technologies +- [HOPP](https://github.com/NatLabRockies/HOPP): Used for simulating technologies that produce electricity for other components in H2Integrate +- [PySAM](https://github.com/NatLabRockies/pysam): Provides access to the System Advisor Model (SAM) for performance and financial modeling; underlying tool used for modeling certain generation technologies - [OpenMDAO](https://openmdao.org/): A framework for multidisciplinary optimization, analysis, and design; used for data-passing, model organization, and optimization - [Pyomo](http://www.pyomo.org/): A Python-based, open-source optimization modeling language; only useful to understand if you are modifying the dispatch algorithms - [Pandas](https://pandas.pydata.org/): A data manipulation and analysis library used for handling and analyzing data structures; useful for post-processing results diff --git a/docs/getting_started/install.md b/docs/getting_started/install.md index a65b34c3f..4dcba6c06 100644 --- a/docs/getting_started/install.md +++ b/docs/getting_started/install.md @@ -2,7 +2,7 @@ ## Install H2Integrate via PyPI -If you just want to use H2Integrate and aren't developing new models, you can install it from PyPI using pip: +If you just want to use H2Integrate and aren't developing new models, you should install it from PyPI using pip: ```bash pip install h2integrate @@ -12,7 +12,7 @@ pip install h2integrate If you want to develop new models or contribute to H2Integrate, you can install it from source. -### NREL Resource Data +### NLR Resource Data 1. The functions which download resource data require an NLR API key. Obtain a key from: @@ -29,12 +29,12 @@ If you want to develop new models or contribute to H2Integrate, you can install NLR_API_EMAIL=your.name@email.com ``` -### NREL-Provided Conda Environment Specification (recommended) +### NLR-Provided Conda Environment Specification (recommended) 1. Using Git, navigate to a local target directory and clone repository: ```bash - git clone https://github.com/NREL/H2Integrate.git + git clone https://github.com/NatLabRockies/H2Integrate.git ``` 2. Navigate to `H2Integrate` @@ -75,7 +75,8 @@ environment for development work. - Use one of the extra flags as needed: - `gis`: adds the iron mapping tools. - `ard`: adds the Ard-based wind models. - - `develop`: adds developer and documentation tools, plus optional analysis modifiers `gis` and `ard`. + - `extras`: installs all extra analysis tool dependencies, e.g., `ard` or `gis`. + - `develop`: adds developer and documentation tools. - `examples`: allows you to use the Jupyter Notebooks and all examples (includes `ard` and `gis`). - `all` simplifies adding all the dependencies. @@ -90,7 +91,7 @@ pip install -e ".[all]" 1. Using Git, navigate to a local target directory and clone repository: ```bash - git clone https://github.com/NREL/H2Integrate.git + git clone https://github.com/NatLabRockies/H2Integrate.git ``` 2. Navigate to `H2Integrate` @@ -110,19 +111,9 @@ pip install -e ".[all]" 4. Install H2Integrate and its dependencies: ```bash - conda install -y -c conda-forge glpk + conda install -y -c conda-forge glpk coin-or-cbc>=2.10.12 ``` - ````{note} - Unix users should install Cbc via: - - ```bash - conda install -y -c conda-forge coin-or-cbc=2.10.8 - ``` - - Windows users should install Cbc manually according to https://github.com/coin-or/Cbc. - ```` - - If you want to just use H2Integrate: ```bash diff --git a/docs/intro.md b/docs/intro.md index 6a50e4619..356a53451 100644 --- a/docs/intro.md +++ b/docs/intro.md @@ -1,61 +1,23 @@ # H2Integrate - Holistic Hybrids Optimization and Design Tool [![PyPI version](https://badge.fury.io/py/h2integrate.svg)](https://badge.fury.io/py/h2integrate) -![CI Tests](https://github.com/NREL/H2Integrate/actions/workflows/ci.yml/badge.svg) +![CI Tests](https://github.com/NatLabRockies/H2Integrate/actions/workflows/ci.yml/badge.svg) [![image](https://img.shields.io/pypi/pyversions/h2integrate.svg)](https://pypi.python.org/pypi/h2integrate) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) -[![DOI:10.5281/zenodo.17903150](https://zenodo.org/badge/DOI/10.5281/zenodo.17903149.svg)](https://zenodo.org/records/17903149) +[![DOI 10.5281/zenodo.17903150](https://zenodo.org/badge/DOI/10.5281/zenodo.17903150.svg)](https://zenodo.org/records/17903150) -H2Integrate is an open-source Python package for modeling and designing hybrid energy systems producing electricity, hydrogen, ammonia, steel, and other products. +H2Integrate (H2I) is an open-source Python package for hybrid systems engineering design and technoeconomic analysis. +It models and optimizes hybrid energy plants that produce electricity, hydrogen, ammonia, steel, and other products, using high-resolution location-specific resource data to perform optimization and scenario analysis. -Browse the example workflows in the GitHub repository: https://github.com/NREL/H2Integrate/tree/main/examples - -```{note} -H2Integrate is under active development and may be missing features that existed in previous versions. H2Integrate v0.2.0 is the last version that uses the prior framework. -``` - -If you use this software in your work, please cite using the following BibTeX: - -```bibtex -@software{brunik_2025_17903150, - author = {Brunik, Kaitlin and - Grant, Elenya and - Thomas, Jared and - Starke, Genevieve M and - Martin, Jonathan and - Ramos, Dakota and - Koleva, Mariya and - Reznicek, Evan and - Hammond, Rob and - Stanislawski, Brooke and - Kiefer, Charlie and - Irmas, Cameron and - Vijayshankar, Sanjana and - Riccobono, Nicholas and - Frontin, Cory and - Clark, Caitlyn and - Barker, Aaron and - Gupta, Abhineet and - Kee, Benjamin (Jamie) and - King, Jennifer and - Jasa, John and - Bay, Christopher}, - title = {H2Integrate: Holistic Hybrids Optimization and Design Tool}, - month = dec, - year = 2025, - publisher = {Zenodo}, - version = {0.4.0}, - doi = {10.5281/zenodo.17903150}, - url = {https://doi.org/10.5281/zenodo.17903150}, -} -``` +Browse the example workflows in the GitHub repository: https://github.com/NatLabRockies/H2Integrate/tree/main/examples ## What is H2Integrate? -H2Integrate is designed to be flexible and extensible, allowing users to create their own components and models for various energy systems. -The tool currently includes renewable energy generation (wind, solar, wave, tidal), battery storage, hydrogen, ammonia, methanol, and steel technologies. -Other elements such as desalination systems, pipelines, compressors, and storage systems can also be included as developed by users. -Some modeling capabilities in H2Integrate are provided by integrating existing tools, such as [HOPP](https://github.com/NREL/HOPP), [PySAM](https://github.com/NREL/pysam), [ORBIT](https://github.com/wisdem/ORBIT), and [ProFAST](https://github.com/NREL/ProFAST). +H2Integrate is designed to be flexible and extensible, allowing users to create their own components and models for various hybrid systems. +The tool currently includes renewable energy generation (land-based wind, offshore wind, solar PV, wave, tidal), conventional generation (natural gas combined cycle, combustion turbines, grid electricity), hydrogen production (PEM electrolysis, NG-SMR), energy storage (Li-ion batteries, long-duration energy storage, pumped storage hydropower), fuel cells, and industrial processes (ammonia synthesis, iron ore reduction, steel production, methanol, and more). +Other elements can also be included as developed by users. +H2Integrate is continually expanding to serve additional hybrid applications -- if you're interested in seeing what's being actively developed, please see the [current pull requests in the GitHub repository](https://github.com/NatLabRockies/H2Integrate/pulls). +Some modeling capabilities in H2Integrate are provided by integrating existing tools, such as [HOPP](https://github.com/NatLabRockies/HOPP), [PySAM](https://github.com/NatLabRockies/pysam), [ORBIT](https://github.com/NLRWindSystems/ORBIT), and [ProFAST](https://github.com/NatLabRockies/ProFAST). The H2Integrate tool is built on top of [NASA's OpenMDAO framework](https://github.com/OpenMDAO/OpenMDAO/), which provides a powerful and flexible environment for modeling and optimization. ```{note} @@ -64,11 +26,17 @@ H2Integrate was previously known as GreenHEART. The name was updated to H2Integr ## How does H2Integrate work? -H2Integrate models energy systems on a yearly basis using hourly timesteps (i.e., 8760 operational data points across a year). +H2Integrate typically models energy systems on a yearly basis using hourly timesteps (i.e., 8760 operational data points across a year). Results from these simulations are then processed across the project's lifecycle to provide insights into the system's performance, costs, and financial viability. Depending on the models used and the size of the system, H2Integrate can simulate systems ranging from the kW to GW scale in seconds on a personal computer. Additionally, H2Integrate tracks the flow of electricity, molecules (e.g., hydrogen, ammonia, methanol), and other products (e.g., steel) between different technologies in the energy system. +```{note} +Some models are now able to operate with non-hourly time steps. +Appropriate time step bounds are included as class attributes when non-hourly time steps are permitted. +Check individual model docs and definitions for time step bounds for individual models. All models in a given simulation must be compatible with the specified time step. +``` + For each technology there are 4 different types of models: control, performance, cost, and finance. These model categories allow for modular pieces to be brought in or re-used throughout H2Integrate, as well as ease of development and organization. Note that the only required models for a technology are performance and cost, while control and finance are optional. The figure below shows these four categories and some of the technologies included in H2Integrate. For a full list of models available, please see [Model Overview](user_guide/model_overview.md). ![A representation of a single technology model in H2Integrate](tech-model.png) @@ -84,18 +52,87 @@ The modular nature of the H2Integrate system makes adding custom models, includi ## How does H2Integrate differ from other tools? -H2Integrate is developed at NREL, which has a long history of developing high-quality tools for renewable energy systems. +H2Integrate is developed at NLR, which has a long history of developing high-quality tools for renewable energy systems. Although there are many tools available for modeling hybrid energy systems, H2Integrate is unique in its focus on component-level modeling and design including nonlinear physics models, as well as its modularity and extensibility. H2Integrate stands out by offering a modular approach that models the entire energy system, from generation to end-use products such as hydrogen, ammonia, methanol, and steel, which is a capability not commonly found in other tools. -[REopt](https://reopt.nrel.gov/tool) is similar to H2Integrate in that it models hybrid energy systems, though it is a higher-level tool that focuses on linear optimization. +[REopt](https://reopt.nlr.gov/tool) is similar to H2Integrate in that it models hybrid energy systems, though it is a higher-level tool that focuses on linear optimization. One significant difference is that REopt can accommodate various external loads such as steel or ammonia, as long as the user provides the load profiles for those end-uses. H2Integrate models the processes themselves and does not require the user to provide a load profile, instead modeling what the load profile would be based on physics-based or analytical models. -[SAM](https://sam.nrel.gov/) is another relevant tool (that H2Integrate partially uses), which gives more detailed performance and financial modeling capabilities than REopt. +[SAM](https://sam.nrl.gov/) is another relevant tool (that H2Integrate partially uses), which gives more detailed performance and financial modeling capabilities than REopt. Like REopt, SAM also does not model loads or end-uses but accepts timeseries data of the loads for design purposes. H2Integrate goes into more component-level details than those tools, especially in terms of nonlinear physics-based modeling and design. +```{note} +H2Integrate was previously known as GreenHEART, and some publications or references may refer to it by that name. +``` + +## Publications + +For more context about H2Integrate and analyses performed using the tool, see the publications below. +PDFs are available in the linked titles. + + +### Techno-economic analysis of low-carbon hydrogen production pathways for decarbonizing steel and ammonia production + +Reznicek, E.P., et al. "[Techno-economic analysis of low-carbon hydrogen production pathways for decarbonizing steel and ammonia production.](https://www.cell.com/cell-reports-sustainability/pdfExtended/S2949-7906(25)00034-5)" Cell Reports Sustainability. Vol. 2. No. 4. Elsevier, 2025. + +### Nationwide techno-economic analysis of clean hydrogen production powered by a hybrid renewable energy plant for over 50,000 locations in the United States + +Grant, E., et al. "[Hybrid power plant design for low-carbon hydrogen in the United States.](https://iopscience.iop.org/article/10.1088/1742-6596/2767/8/082019/pdf)" Journal of Physics: Conference Series. Vol. 2767. No. 8. IOP Publishing, 2024. + +### Exploring the role of producing low-carbon hydrogen using water electrolysis powered by offshore wind in facilitating the United States' transition to a net-zero emissions economy by 2050 + +Brunik, K., et al. "[Potential for large-scale deployment of offshore wind-to-hydrogen systems in the United States.](https://iopscience.iop.org/article/10.1088/1742-6596/2767/6/062017/pdf)" Journal of Physics: Conference Series. Vol. 2767. No. 6. IOP Publishing, 2024. + +### Examining how tightly-coupled gigawatt-scale wind- and solar-sourced H2 depends on the ability to store and deliver otherwise-curtailed H2 during times of shortages + + +Breunig, Hanna, et al. "[Hydrogen Storage Materials Could Meet Requirements for GW-Scale Seasonal Storage and Green Steel.](https://assets-eu.researchsquare.com/files/rs-4326648/v1_covered_338a5071-b74b-4ecd-9d2a-859e8d988b5c.pdf?c=1716199726)" (2024). + +### DOE Hydrogen Program review presentation of H2Integrate + +King, J. and Hammond, S. "[Integrated Modeling, TEA, and Reference Design for Renewable Hydrogen to Green Steel and Ammonia - GreenHEART](https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review24/sdi001_king_2024_o.pdf?sfvrsn=a800ca84_3)" (2024). + +## Software Citation + +If you use this software in your work, please cite using the following BibTeX: + +```bibtex +@software{brunik_2025_17903150, + author = {Brunik, Kaitlin and + Grant, Elenya and + Thomas, Jared and + Starke, Genevieve M and + Martin, Jonathan and + Ramos, Dakota and + Koleva, Mariya and + Reznicek, Evan and + Hammond, Rob and + Stanislawski, Brooke and + Kiefer, Charlie and + Irmas, Cameron and + Vijayshankar, Sanjana and + Riccobono, Nicholas and + Frontin, Cory and + Clark, Caitlyn and + Barker, Aaron and + Gupta, Abhineet and + Kee, Benjamin (Jamie) and + King, Jennifer and + Jasa, John and + Bay, Christopher}, + title = {H2Integrate: Holistic Hybrids Optimization and Design Tool}, + month = dec, + year = 2025, + publisher = {Zenodo}, + version = {0.4.0}, + doi = {10.5281/zenodo.17903150}, + url = {https://doi.org/10.5281/zenodo.17903150}, +} +``` + ```{tableofcontents} ``` diff --git a/docs/misc_resources/turbine_models_library_preprocessing.md b/docs/misc_resources/turbine_models_library_preprocessing.md index 10ed2c813..3b67ae2d5 100644 --- a/docs/misc_resources/turbine_models_library_preprocessing.md +++ b/docs/misc_resources/turbine_models_library_preprocessing.md @@ -13,9 +13,9 @@ kernelspec: # Turbine Models Library Pre-Processing Tools -The [turbine-models package](https://github.com/NREL/turbine-models/tree/main) hosts wind turbine data for a variety of wind turbines and has tools that can streamline the process to run new turbines with the [PySAM Windpower model](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html) or [FLORIS](https://github.com/NREL/floris/tree/main). +The [turbine-models package](https://github.com/NatLabRockies/turbine-models/tree/main) hosts wind turbine data for a variety of wind turbines and has tools that can streamline the process to run new turbines with the [PySAM Windpower model](https://nrel-pysam.readthedocs.io/en/main/modules/Windpower.html) or [FLORIS](https://github.com/NatLabRockies/floris/tree/main). -The full list of turbine models available in the turbine-models library can be found [here](https://github.com/NREL/turbine-models/blob/main/turbine_models/supported_turbines.py) +The full list of turbine models available in the turbine-models library can be found [here](https://github.com/NatLabRockies/turbine-models/blob/main/turbine_models/supported_turbines.py) H2Integrate has preprocessing tools that leverage the functionality available in the turbine-models library. The function `export_turbine_to_pysam_format()` will save turbine model specifications formatted for the PySAM Windpower model. The PySAM Windpower model is wrapped in H2I and can be utilized with the "pysam_wind_plant_performance" model. Example usage of the `export_turbine_to_pysam_format()` function is demonstrated in the following section using Example 8. diff --git a/docs/resource/resource_index.md b/docs/resource/resource_index.md index 6ea4c7762..32bfc5855 100644 --- a/docs/resource/resource_index.md +++ b/docs/resource/resource_index.md @@ -3,3 +3,4 @@ - [Wind Resource Data](wind_resource:models) - [Solar Resource Data](solar_resource:models) +- [Tidal Resource Data](tidal_resource:models) diff --git a/docs/resource/tidal_resource.md b/docs/resource/tidal_resource.md new file mode 100644 index 000000000..b6b013a41 --- /dev/null +++ b/docs/resource/tidal_resource.md @@ -0,0 +1,19 @@ +(tidal_resource:models)= +# Tidal Resource: Model Overview + +The tidal resource model is essentially a file reader that processes the data for use in the OpenMDAO format of H2I. It expects a CSV file to be input with timeseries tidal data and meta data. + +The tidal resource format is based on the [System Advisor Model (SAM)](https://sam.nlr.gov/). Additional sample tidal resource files can be downloaded via the SAM GUI. + +```{note} +H2I expects the resource date to be in a timeseries format rather than a probability distribution. +``` + +The tidal resource data should be in the format: + - Rows 1 and 2: Header rows with location info. + - Row 3: Column headings for time-series data + - (`Year`, `Month`, `Day`, `Hour`, `Minute`, `Speed`). + - Rows 4+: Data values: + - `Speed` (current speed) in meters/second. + +If the tidal data is greater than hourly the model will interpolate the values in between the timesteps so that the resulting data is in an hourly format. diff --git a/docs/technology_models/hydrogen_storage.md b/docs/storage/hydrogen_storage.md similarity index 99% rename from docs/technology_models/hydrogen_storage.md rename to docs/storage/hydrogen_storage.md index 6cf844182..258e4c00a 100644 --- a/docs/technology_models/hydrogen_storage.md +++ b/docs/storage/hydrogen_storage.md @@ -1,3 +1,4 @@ +(h2-storage-cost)= # Bulk Hydrogen Storage Cost Model ## Storage Types diff --git a/docs/technology_models/pysam_battery.md b/docs/storage/pysam_battery.md similarity index 92% rename from docs/technology_models/pysam_battery.md rename to docs/storage/pysam_battery.md index 0811f8fd9..3f847df02 100644 --- a/docs/technology_models/pysam_battery.md +++ b/docs/storage/pysam_battery.md @@ -1,6 +1,7 @@ +(pysam-battery-performance)= # PySAM Battery Model -The PySAM battery model in H2Integrate is a wrapper that integrates the NREL PySAM `BatteryStateful` model into +The PySAM battery model in H2Integrate is a wrapper that integrates the NLR PySAM `BatteryStateful` model into an OpenMDAO component. For full documentation see the [PySAM battery model documentation](https://nrel-pysam.readthedocs.io/en/main/modules/BatteryStateful.html). The PySAM battery model simulates the response of the battery to control commands. However, the control commands may not be strictly followed. Specifically, the SOC bounds have been seen to be exceeded by nearly 4% SOC for the upper bound and close to 1% SOC on the lower bound. diff --git a/docs/technology_models/simple_generic_storage.md b/docs/storage/simple_generic_storage.md similarity index 50% rename from docs/technology_models/simple_generic_storage.md rename to docs/storage/simple_generic_storage.md index cc31123eb..983787eeb 100644 --- a/docs/technology_models/simple_generic_storage.md +++ b/docs/storage/simple_generic_storage.md @@ -1,21 +1,17 @@ -# Simple Generic Storage Model +(simple-generic-storage-performance)= +# `StoragePerformanceModel` Model -The Simple Generic Storage model provides a flexible framework for modeling various types of energy storage systems in H2Integrate. While particularly useful for battery storage, this model can be used to simulate the storage of different resources including hydrogen, CO2, or any other commodity. +The `StoragePerformanceModel` model provides a flexible framework for modeling various types of energy storage systems in H2Integrate. While particularly useful for battery storage, this model can be used to simulate the storage of different commodities including hydrogen, CO2, or any other commodity. ## Overview -The Simple Generic Storage model consists of two main components: - -1. **SimpleGenericStorage**: A minimal component that defines the input interface for the storage system -2. **DemandOpenLoopStorageController**: The core logic component that handles storage operations, state of charge calculations, and resource management - -This architecture allows the storage system to work with any resource type by simply configuring the resource name and units, making it quite versatile. +The `StoragePerformanceModel` is a component that defines a simple storage performance model for any defined commodity. This model allows the storage system to work with any commodity type by simply configuring the commodity name and units, making it quite versatile. ## Example Applications ### Battery Storage (Example 19) -Example 19 demonstrates a wind-battery dispatch system that showcases the Simple Generic Storage model in action. This example: +Example 19 demonstrates a wind-battery dispatch system that showcases the `StoragePerformanceModel` model in action. This example: - Models a wind farm providing variable electricity generation - Uses battery storage with defined capacity and charge/discharge rates @@ -24,16 +20,17 @@ Example 19 demonstrates a wind-battery dispatch system that showcases the Simple The example produces detailed plots showing: - Battery state of charge over time -- Electricity flows (input, output, curtailed, missed load) +- Electricity flows (input, output) - How the storage system balances variable wind generation with constant demand ### Hydrogen Storage The model can be configured for hydrogen storage systems by setting: ```yaml -commodity_name: "hydrogen" -commodity_units: "kg/h" # commodity_units must by a rate +commodity: "hydrogen" +commodity_rate_units: "kg/h" max_capacity: 1000.0 # kg +commodity_amount_units: "kg" ``` This is useful for modeling hydrogen production from electrolyzers with variable renewable input and steady hydrogen demand for industrial processes. @@ -42,8 +39,9 @@ This is useful for modeling hydrogen production from electrolyzers with variable For carbon capture and utilization systems: ```yaml -commodity_name: "co2" -commodity_units: "kg/h" +commodity: "co2" +commodity_rate_units: "kg/h" +commodity_amount_units: "kg" max_capacity: 50000.0 # kg ``` diff --git a/docs/storage/storage_models_index.md b/docs/storage/storage_models_index.md new file mode 100644 index 000000000..d9a626d42 --- /dev/null +++ b/docs/storage/storage_models_index.md @@ -0,0 +1,63 @@ +# Storage Models + +Storage technologies input and output the 'Storage Commodity' (`commodity`) as a time series. These technologies can be both filled or charged and unfilled or discharged, resulting in a commodity stream that can be positive and negative.These models are usually constrained by two key model parameters: storage capacity and charge/discharge rate. + +## Storage Performance Models + +H2I currently supports the following storage performance models: +- [`StoragePerformanceModel`](#simple-generic-storage-performance) +- [`PySAMBatteryPerformanceModel`](#pysam-battery-performance) +- `StorageAutoSizingModel` + +The following sections detail the inputs and outputs of the storage performance models. + +```{note} +The inputs and outputs of storage performance models are generalized here for any commodity. If input and output names include the word `commodity`, the actual variable name would be the commodity defined for that storage model. For example, the `PySAMBatteryPerformanceModel` can only be used for the commodity `electricity`. Therefore, the `commodity_in` input to the `PySAMBatteryPerformanceModel` is actually named `electricity_in`. +``` + +### Inputs +- `commodity_in`: commodity available to use for charging storage + +If using a **feedback control strategy** (this means that the controller received the actual storage state periodically), the control-related inputs for control to the storage performance include: +- `commodity_demand`: the target demand profile to satisfy with the storage performance model and the input commodity. This is passed to the control strategy through the `pyomo_dispatch_solver` method. +- `pyomo_dispatch_solver`: the control function from the storage controller that outputs dispatch commands to the storage performance model. + +If using an **open-loop control strategy**, the control input to the storage performance model is: +- `commodity_set_point`: the dispatch commands to the storage performance model, negative values indicate charge commands and positive values indicate discharge commands + +Some storage models may also have design inputs of `max_charge_rate`, `storage_capacity`, and `max_discharge_rate`. + +### Calculations and Outputs +The storage performance models output timeseries profiles (length of `n_timesteps`): +- `commodity_out`: storage charge and discharge profile in `commodity_rate_units`, values are negative when charging and positive when discharging. This is equivalent to `storage_commodity_charge + storage_commodity_discharge` +- `storage_commodity_charge`: charge profile the storage, the values are either negative (when charging) or 0 (when doing nothing or discharging). In units of `commodity_rate_units` +- `storage_commodity_discharge`: discharge profile the storage, the values are either positive (when discharging) or 0 (when doing nothing or charging). In units of `commodity_rate_units` +- `SOC`: the storage state-of-charge in units of either `percent` (values between 0 and 100) or `unitless` (values between 0 and 1) + +The aggregated or summarized performance outputs are (single values): +- `storage_duration`: the storage capacity divided by the storage discharge rate. Units are time-based, such as `h` (hours). +- `rated_commodity_production`: the storage discharge rate in units of `commodity_rate_units`. +- `total_commodity_produced`: the summation of `commodity_out` over the simulation in units of `commodity_amount_units`. This value may be negative if the storage charges more than discharges. + +The results that are output per-year of the `plant_life` are: +- `annual_commodity_produced`: each value is the `total_commodity_produced` scaled to a 1-year (8760 hours) simulation. This value may be negative if the storage charges more than discharges. +- `capacity_factor`: the storage capacity factor which is calculated in the same way that capacity factors are calculated in converter technologies, which is a ratio of the sum of *`total_commodity_produced`* to the discharge rate (or `rated_commodity_production`). This value may be negative if the storage charges more than discharges. + $ + CF = \frac{\sum_{t=0}^{n_{\text{timesteps}}}(\text{commodity_out}_t*dt)}{\text{\text{discharge}\_\text{rate}*n_{\text{timesteps}}*dt} + $ +- `standard_capacity_factor`: the storage capacity factor as defined by the [NLR ATB](https://atb.nrel.gov/electricity/2024b/utility-scale_battery_storage). The ratio of the total *commodity discharged* to the discharge rate (or `rated_commodity_production`). This value will always be greater than or equal to zero. + $ + CF_{\text{standard}} = \frac{\sum_{t=0}^{n_{\text{timesteps}}}(\text{storage_commodity_discharge}_t*dt)}{\text{discharge_rate}*n_{\text{timesteps}}*dt} + $ + + +## Storage Cost models: + +The available storage cost models are: +- `ATBBatteryCostModel` +- `GenericStorageCostModel` +- [Hydrogen storage cost models](#h2-storage-cost): + - `LinedRockCavernStorageCostModel` + - `SaltCavernStorageCostModel` + - `PipeStorageCostModel` + - `MCHTOLStorageCostModel` diff --git a/docs/technology_models/atb_costs_pv.md b/docs/technology_models/atb_costs_pv.md index 23415f748..1a5d9d050 100644 --- a/docs/technology_models/atb_costs_pv.md +++ b/docs/technology_models/atb_costs_pv.md @@ -1,12 +1,12 @@ # Solar-PV Cost Models based on ATB-Formatted Cost Data -NREL's [Annual Technology Baseline (ATB)](https://atb.nrel.gov) is commonly referenced for technology costs such as overnight capital cost, fixed operations and maintenance costs, and capital expenditures. Two solar-PV cost models are available in H2I that are intended to be easily used with cost values pulled from [NREL's ATB Excel workbook](https://atb.nrel.gov/electricity/2024/data). +NLR's [Annual Technology Baseline (ATB)](https://atb.nlr.gov) is commonly referenced for technology costs such as overnight capital cost, fixed operations and maintenance costs, and capital expenditures. Two solar-PV cost models are available in H2I that are intended to be easily used with cost values pulled from [NLR's ATB Excel workbook](https://atb.nlr.gov/electricity/2024/data). ```{note} The Annual Technology Baseline (ATB) is updated annually. While we do our best to update our documentation regularly, be sure that you're using the most recent version of the ATB in case our links are pointing to an older version. ``` -As mentioned on the [Utility-Scale PV ATB page](https://atb.nrel.gov/electricity/2024/utility-scale_pv), the costs for utility-scale PV have been published in `$/kW-AC` since 2020. The costs for [Commercial PV](https://atb.nrel.gov/electricity/2024/commercial_pv) and [Residential PV](https://atb.nrel.gov/electricity/2024/residential_pv) are published in `$/kW-DC`. The only difference between the two cost models in H2I are whether costs are input in `$/kW-AC` or `$/kW-DC`. +As mentioned on the [Utility-Scale PV ATB page](https://atb.nlr.gov/electricity/2024/utility-scale_pv), the costs for utility-scale PV have been published in `$/kW-AC` since 2020. The costs for [Commercial PV](https://atb.nlr.gov/electricity/2024/commercial_pv) and [Residential PV](https://atb.nlr.gov/electricity/2024/residential_pv) are published in `$/kW-DC`. The only difference between the two cost models in H2I are whether costs are input in `$/kW-AC` or `$/kW-DC`. - The `"ATBUtilityPVCostModel"` model has costs input in `$/kW-AC` to match the ATB and the outputted capacity in kW-AC from the PV performance model. Example usage of this cost model in the `tech_config.yaml` file is shown [in the first section below](#utility-scale-pv-cost-model). - The `"ATBResComPVCostModel"` model has costs input in `$/kW-DC` and the PV capacity is input in kW-DC from the **shared input parameter** of the PV performance model. Example usage of this cost model in the `tech_config.yaml` file is shown [in the second section below](#commercial-and-residential-pv-cost-model). diff --git a/docs/technology_models/atb_costs_wind.md b/docs/technology_models/atb_costs_wind.md index e3e628b4e..6d2cc58ce 100644 --- a/docs/technology_models/atb_costs_wind.md +++ b/docs/technology_models/atb_costs_wind.md @@ -1,15 +1,15 @@ # Wind Cost Model based on ATB-Formatted Cost Data -NREL's [Annual Technology Baseline (ATB)](https://atb.nrel.gov) is commonly referenced for technology costs such as overnight capital cost, fixed operations and maintenance costs, and capital expenditures. The `ATBWindPlantCostModel` cost model available in H2I that is intended to be easily used with cost values pulled from [NREL's ATB Excel workbook](https://atb.nrel.gov/electricity/2024/data). +NLR's [Annual Technology Baseline (ATB)](https://atb.nlr.gov) is commonly referenced for technology costs such as overnight capital cost, fixed operations and maintenance costs, and capital expenditures. The `ATBWindPlantCostModel` cost model available in H2I that is intended to be easily used with cost values pulled from [NLR's ATB Excel workbook](https://atb.nlr.gov/electricity/2024/data). ```{note} The Annual Technology Baseline (ATB) is updated annually. While we do our best to update our documentation regularly, be sure that you're using the most recent version of the ATB in case our links are pointing to an older version. ``` There are specific costs and performance specifications in the ATB for: -- [Land-Based Wind](https://atb.nrel.gov/electricity/2024/land-based_wind) -- [Offshore Wind](https://atb.nrel.gov/electricity/2024/offshore_wind) -- [Distributed Wind](https://atb.nrel.gov/electricity/2024/distributed_wind) +- [Land-Based Wind](https://atb.nlr.gov/electricity/2024/land-based_wind) +- [Offshore Wind](https://atb.nlr.gov/electricity/2024/offshore_wind) +- [Distributed Wind](https://atb.nlr.gov/electricity/2024/distributed_wind) Example usage of this cost model in the `tech_config.yaml` file is shown [in the first section below](#atb-wind-cost-model). diff --git a/docs/technology_models/co2.md b/docs/technology_models/co2.md index e3869b786..cef6f8f40 100644 --- a/docs/technology_models/co2.md +++ b/docs/technology_models/co2.md @@ -1,14 +1,14 @@ # Marine Carbon Dioxide Capture Models Marine carbon dioxide (CO₂) capture technologies aim to remove CO₂ from the ocean or enhance the ocean’s natural capacity to store atmospheric CO₂. These approaches provide additional pathways for managing carbon in the marine environment and can complement land-based strategies for resource management and ocean health. -This section provides an overview of the marine carbon dioxide capture models integrated into H2Integrate. The models are adapted from and maintained in NREL's [MarineCarbonManagement Repository](https://github.com/Nrel/MarineCarbonManagement) and have been integrated here for ease of scenario analysis and system-level optimization. +This section provides an overview of the marine carbon dioxide capture models integrated into H2Integrate. The models are adapted from and maintained in NLR's [MarineCarbonManagement Repository](https://github.com/NatLabRockies/MarineCarbonManagement) and have been integrated here for ease of scenario analysis and system-level optimization. ## Direct Ocean Capture (DOC) Model Direct Ocean Capture extracts dissolved CO₂ directly from seawater using engineered processes. By reducing the concentration of dissolved inorganic carbon, the ocean naturally reabsorbs an equivalent amount of atmospheric CO₂. The resultant CO₂ can then be used for downstream processes and conversion or storage. -The DOC model is built on electrodialysis-based separation and includes both performance and cost components, allowing users to explore a wide range of system configurations, operational scenarios, and infrastructure options. It is designed for process design, optimization, and cost evaluation of marine carbon capture systems and is integrated from NREL's [MarineCarbonManagement Repository](https://github.com/Nrel/MarineCarbonManagement). Additional information about this specific model can be found in [Niffenegger et al.](https://doi.org/10.3390/cleantechnol7030052) +The DOC models, `DOCPerformanceModel` and `DOCCostModel`, are built on electrodialysis-based separation and includes both performance and cost components, allowing users to explore a wide range of system configurations, operational scenarios, and infrastructure options. It is designed for process design, optimization, and cost evaluation of marine carbon capture systems and is integrated from NLR's [MarineCarbonManagement Repository](https://github.com/NatLabRockies/MarineCarbonManagement). Additional information about this specific model can be found in [Niffenegger et al.](https://doi.org/10.3390/cleantechnol7030052) ### Why Use This Model - Evaluate technology performance — quantify system throughput, process efficiencies, and resource usage under different operating conditions. @@ -55,7 +55,7 @@ The Ocean Alkalinity Enhancement (OAE) Model simulates the process of increasing This model estimates the CO₂ absorption potential of the ocean after the OAE process. CO₂ is not a usable downstream product. ``` -The OAE model is adapted from NREL’s MarineCarbonManagement Repository and includes both performance and cost components, as well as a financial model enabling users to explore a variety of system designs, operational strategies, and infrastructure setups. Additional information about this specific model can be found in [Niffenegger et al.](https://doi.org/10.3390/cleantechnol8010012) +The OAE models, `OAEPerformanceModel` and `OAECostModel`, are adapted from NLR’s MarineCarbonManagement Repository and includes both performance and cost components, as well as a financial model enabling users to explore a variety of system designs, operational strategies, and infrastructure setups. Additional information about this specific model can be found in [Niffenegger et al.](https://doi.org/10.3390/cleantechnol8010012) ### Why Use This Model - Assess system performance — determine processing capacity, flow characteristics, and operational profiles. @@ -95,7 +95,7 @@ Computes capital (CapEx) and operational (OpEx) costs based on plant design and - Annual operating cost (USD/year) #### OAE Cost and Financial Model -Extends the cost model to include financial metrics. Allows calculation of net present value (NPV) and determination of credit values required for financial viability. +The `OAECostAndFinancialModel` extends the cost model to include financial metrics. Allows calculation of net present value (NPV) and determination of credit values required for financial viability. **Additional inputs include:** - Levelized cost of electricity (LCOE) diff --git a/docs/technology_models/feedstocks.md b/docs/technology_models/feedstocks.md index 2d722b351..dc5db0986 100644 --- a/docs/technology_models/feedstocks.md +++ b/docs/technology_models/feedstocks.md @@ -1,6 +1,6 @@ # Feedstock Models -Feedstock models in H2Integrate represent any resource input that is consumed by technologies in your plant, such as natural gas, water, electricity from the grid, or any other material input. +Feedstock models in H2Integrate represent any resource input that is consumed by technologies in your plant that comes from outside your designed system boundary (and not generated internally), such as natural gas, water, electricity from the grid, or any other material input. The feedstock modeling approach provides a flexible way to track resource consumption and calculate associated costs for any type of input material or energy source. Please see the example `16_natural_gas` in the `examples` directory for a complete setup using natural gas as a feedstock. @@ -19,6 +19,7 @@ Each feedstock type requires two model components: - Calculates consumption costs based on actual usage - Takes `{commodity}_consumed` as input - Located after all consuming technologies in the chain + - Calculates the capacity factor of the consumed feedstock ### Technology Interconnections @@ -56,8 +57,8 @@ ng_feedstock: commodity_amount_units: "MMBtu" # optional, if not specified defaults to `commodity_rate_units*h` cost_year: 2023 price: 4.2 # cost in USD/commodity_amount_units - annual_cost: 0. - start_up_cost: 100000. + annual_cost: 0. #cost in USD/year + start_up_cost: 100000. #cost in USD ``` ### Performance Model Parameters @@ -81,3 +82,11 @@ ng_feedstock: ```{tip} The `price` parameter is flexible - you can specify constant pricing with a single value or time-varying pricing with an array of values matching the number of simulation timesteps. ``` + +### Consumed Feedstock Outputs +The feedstock model outputs cost and performance information about the consumed feedstock. The most notable outputs are: +- `VarOpEx`: cost of the feedstock consumed (in `USD/yr`) +- `total_{commodity}_consumed`: total feedstock consumed over simulation (in `commodity_amount_units`) +- `annual_{commodity}_consumed`: annual feedstock consumed (in `commodity_amount_units/yr`) +- `rated_{commodity}_production`: this is equal to the the `rated_capacity` of the feedstock model (in `commodity_rate_units`) +- `capacity_factor`: ratio of the feedstock consumed to the maximum feedstock available diff --git a/docs/technology_models/geologic_hydrogen.md b/docs/technology_models/geologic_hydrogen.md index af74e4cf5..751ca44eb 100644 --- a/docs/technology_models/geologic_hydrogen.md +++ b/docs/technology_models/geologic_hydrogen.md @@ -43,7 +43,7 @@ The modeling approach in this performance model is informed by: The modeling approach in this cost model is based on: - Mathur et al. (Stanford): - NETL Quality Guidelines: -- Drill cost curves are based on an adapted [GETEM model](https://sam.nrel.gov/geothermal.html) +- Drill cost curves are based on an adapted [GETEM model](https://sam.nlr.gov/geothermal.html) ## Hydrogen Surface Processing Models diff --git a/docs/technology_models/grid.md b/docs/technology_models/grid.md index befb8e3f8..ce0ca4902 100644 --- a/docs/technology_models/grid.md +++ b/docs/technology_models/grid.md @@ -67,3 +67,7 @@ The **revenue** of selling electricity to the grid is represented as a variable ```{note} If you're using a price-maker financial model (e.g., calculating the LCOE) and selling all of the electricity to the grid, then the `electricity_sell_price` should most likely be set to 0. since you want to know the breakeven price of selling that electricity. ``` + +```{note} +The grid components are currently compatible with 5-minute (300-second) to 1-hour (3600-second) time steps. +``` diff --git a/docs/technology_models/h2_smr.md b/docs/technology_models/h2_smr.md new file mode 100644 index 000000000..0b7b26685 --- /dev/null +++ b/docs/technology_models/h2_smr.md @@ -0,0 +1,23 @@ +# Hydrogen Steam Methane Reformer (SMR) Model + +This module implements performance and cost models for a steam methane reformer (SMR) hydrogen production plant. The model converts natural gas and electricity inputs into hydrogen output subject to plant capacity constraints and feedstock availability. + +The implementation consists of two components: +1. `SteamMethaneReformerPerformanceModel` – calculates hydrogen production and energy consumption over time. +2. `SteamMethaneReformerCostModel` – computes capital and operating costs based on plant capacity and hydrogen production. + +The model is designed to integrate with the `h2integrate` framework and follows the standard configuration and model structure used for performance and cost models. + +## Model Overview + +Steam methane reforming is a thermochemical process where methane reacts with steam to produce hydrogen and carbon monoxide, followed by water-gas shift reactions to increase hydrogen yield. + +The simplified representation used in this model assumes: +- Hydrogen production is limited by: + - SMR rated capacity + - Natural gas availability + - Electricity availability +- Energy consumption is modeled using constant intensity parameters: + - Natural gas consumption per kg of hydrogen + - Electricity consumption per kg of hydrogen +- Hydrogen demand may be specified and unmet demand is tracked. diff --git a/docs/technology_models/iron_dri.md b/docs/technology_models/iron_dri.md new file mode 100644 index 000000000..a2bbd367e --- /dev/null +++ b/docs/technology_models/iron_dri.md @@ -0,0 +1,27 @@ +# Direct Reduced Iron Models + +H2I contains two direct reduced iron (DRI) models, one is for a facility run using natural gas and another facility run using hydrogen. + +The original models were constructed in Aspen Pro and translated into Python and added to H2I. The models were developed in conjunction with [Lawrence Berkeley National Laboratory (LBNL)](https://www.lbl.gov/). + +The models implemented in H2I are: +- Natural Gas Electric Arc Furnace + - `NaturalGasIronReductionPlantPerformanceComponent` + - `NaturalGasIronReductionPlantCostComponent` +- Hydrogen Electric Arc Furnace + - `HydrogenIronReductionPlantPerformanceComponent` + - `HydrogenIronReductionPlantCostComponent` + +Citation: +```bibtex +@article{rosner2023green, + title={Green steel: design and cost analysis of hydrogen-based direct iron reduction}, + author={Rosner, Fabian and Papadias, Dionissios and Brooks, Kriston and Yoro, Kelvin and Ahluwalia, Rajesh and Autrey, Tom and Breunig, Hanna}, + journal={Energy \& Environmental Science}, + volume={16}, + number={10}, + pages={4121--4134}, + year={2023}, + publisher={Royal Society of Chemistry} +} +``` diff --git a/docs/technology_models/iron_mine.md b/docs/technology_models/iron_mine.md index 25fc92d29..c1fca3d94 100644 --- a/docs/technology_models/iron_mine.md +++ b/docs/technology_models/iron_mine.md @@ -27,7 +27,7 @@ These data were compiled from two sources: - [Minorca Mine](https://minedocs.com/22/Minorca-TR-12312021.pdf) - [Tilden Mine](https://minedocs.com/22/Tilden-TR-12312021.pdf) -To use this model, specify `"iron_mine_performance_martin"` as the performance model and `"iron_mine_cost_martin"` as the cost model. +To use this model, specify `"MartinIronMinePerformanceComponent"` as the performance model and `"MartinIronMineCostComponent"` as the cost model. Currently, no complex calculations occur beyond importing performance and costs. In the performance model, the "wet long tons" (wlt) that ore production is typically reported in are converted to dry metric tons for use in H2I. In the cost model, the total capex costs for a plant are scaled by the amount of are produced annually. diff --git a/docs/technology_models/marine_hydrokinetic.md b/docs/technology_models/marine_hydrokinetic.md new file mode 100644 index 000000000..54089c34e --- /dev/null +++ b/docs/technology_models/marine_hydrokinetic.md @@ -0,0 +1,42 @@ +# Marine Hydrokinetic (MHK) Models + +H2I has several marine hydrokinetic (MHK) models for performance and costs. Marine and Hydrokinetic (MHK) technologies harness renewable energy from waves, tidal currents, ocean currents, and riverine flows to generate electricity. + +Within H2I there are models for: +- [Run-Of-River Hydropower](run_of_river_hydro) +- [Tidal](tidal_performance) +- [MHK Costs](pysam_mhk_costs) + +(pysam_mhk_costs)= +## PySAM MHK Cost Model +The **PySAM Marine Cost Model** estimates capital and operational costs for marine hydrokinetic (MHK) energy systems, including tidal and wave energy technologies. The model wraps the [PySAM MhkCosts module](https://nrel-pysam.readthedocs.io/en/main/modules/MhkCosts.html) implementation of the marine hydrokinetic cost model used in the [System Advisor Model (SAM)](https://sam.nlr.gov/). To use this model, specify `"PySAMMarineCostModel"` as the cost model. + +The cost model leverages technology assumptions and cost structures developed through the U.S. Department of Energy [Reference Model Project](https://energy.sandia.gov/programs/renewable-energy/water-power/projects/reference-model-project-rmp/) for marine energy technologies. These reference models provide standardized system configurations and cost relationships for different MHK device types. + +This component is implemented as an OpenMDAO-compatible cost model and can be integrated into larger hybrid energy system simulations. + +### Model Overview + +The model estimates: +- Capital expenditures (CapEx) for MHK devices and associated infrastructure +- Operational expenditures (OpEx) for maintenance and operations + +Costs are derived using the PySAM MhkCosts module, which calculates costs for: +- Device structural and power take-off systems +- Mooring and foundation systems +- Installation and infrastructure +- Electrical systems +- Project development and financial costs +- Operations and maintenance + +The final outputs are total installed capital cost and annual operating cost. + +The model supports several reference technologies from the DOE Reference Model Project. Each reference model corresponds to cost relationships embedded in the PySAM cost library. + +| Reference Model | Technology | +| --------------- | ------------------------ | +| RM1 | Tidal Current Turbine | +| RM2 | River Current Turbine | +| RM3 | Wave Point Absorber | +| RM5 | Oscillating Surge Flap | +| RM6 | Oscillating Water Column | diff --git a/docs/technology_models/methanol.md b/docs/technology_models/methanol.md index 1e02eea11..86fee1ef8 100644 --- a/docs/technology_models/methanol.md +++ b/docs/technology_models/methanol.md @@ -2,9 +2,9 @@ Methanol is an essential precursor to many chemicals, and is also used as a fuel, especially in marine applications. It can be produced from many substances, which the most conventional route using natural gas as the main feedstock, and other developing technologies that combine hydrogen and carbon dioxide (CO2). A basic framework for modeling methanol production is set up in `h2integrate/converters/methanol/methanol_baseclass.py`, and specific technologies are modeled in inherited classes. Examples of each methanol production method can be found in `examples/03_methanol`. Currently, H2I models two methanol production technologies: -1. Steam Methane Reforming (SMR): This is the most prominent commercial production route for methanol in the United States, and utilizes natural gas as the main feedstock. This model is found at `h2integrate/converters/methanol/smr_methanol_plant.py`. The NREL modeling of this process is based on an [NETL Baseline Analysis of Crude Methanol Production from Coal and Natural Gas](https://doi.org/10.2172/1601964). +1. Steam Methane Reforming (SMR): This is the most prominent commercial production route for methanol in the United States, and utilizes natural gas as the main feedstock. This model is found at `h2integrate/converters/methanol/smr_methanol_plant.py`. The NLR modeling of this process is based on an [NETL Baseline Analysis of Crude Methanol Production from Coal and Natural Gas](https://doi.org/10.2172/1601964). -2. CO2 Hydrogenation: This is a developing methanol production technology that directly combines hydrogen with carbon dioxide to produce methanol. This model is found at `h2integrate/converters/methanol/co2h_methanol_plant.py`. The NREL modeling of this process is based on a combination of three peer-reviewed studies: +2. CO2 Hydrogenation: This is a developing methanol production technology that directly combines hydrogen with carbon dioxide to produce methanol. This model is found at `h2integrate/converters/methanol/co2h_methanol_plant.py`. The NLR modeling of this process is based on a combination of three peer-reviewed studies: - [Perez-Fortes et al.](https://doi.org/10.1016/j.apenergy.2015.07.067) - [Szima et al.](https://doi.org/10.1016/j.jcou.2018.02.007) - [Nyari et al.](https://doi.org/10.1016/j.jcou.2020.101166) diff --git a/docs/technology_models/pvwattsv8_solar_pv.md b/docs/technology_models/pvwattsv8_solar_pv.md index a6e8796f7..dceada8a0 100644 --- a/docs/technology_models/pvwattsv8_solar_pv.md +++ b/docs/technology_models/pvwattsv8_solar_pv.md @@ -54,16 +54,16 @@ $$ - `create_model_from`: this can either be set to `"new"` or `"default"` and defaults to `"new"`. If `create_model_from` is `"new"`, the PV model is initialized using `Pvwattsv8.new()` and *populated* with parameters specified in `pysam_options`. If `create_model_from` is `"default"`, the PV model is initialized using `Pvwattsv8.default(config_name)` (`config_name` is also an input parameter) then *updated* with parameters specified in `pysam_options`. - `config_name`: this is only used if `create_model_from` is `"default"`. The default value for this is `"PVWattsSingleOwner"`. The available options and their default parameters are listed below: - - [PVWattsCommercial](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsCommercial.json) - - [PVWattsCommunitySolar](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsCommunitySolar.json) - - [PVWattsHostDeveloper](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsHostDeveloper.json) - - [PVWattsMerchantPlant](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsMerchantPlant.json) - - [PVWattsNone](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsNone.json) - - [PVWattsResidential](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsResidential.json) - - [PVWattsSaleLeaseback](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsSaleLeaseback.json) - - [PVWattsSingleOwner](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsSingleOwner.json) - - [PVWattsThirdParty](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsThirdParty.json) - - [PVWattsAllEquityPartnershipFlip](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsAllEquityPartnershipFlip.json) + - [PVWattsCommercial](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsCommercial.json) + - [PVWattsCommunitySolar](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsCommunitySolar.json) + - [PVWattsHostDeveloper](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsHostDeveloper.json) + - [PVWattsMerchantPlant](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsMerchantPlant.json) + - [PVWattsNone](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsNone.json) + - [PVWattsResidential](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsResidential.json) + - [PVWattsSaleLeaseback](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsSaleLeaseback.json) + - [PVWattsSingleOwner](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsSingleOwner.json) + - [PVWattsThirdParty](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsThirdParty.json) + - [PVWattsAllEquityPartnershipFlip](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Pvwattsv8_PVWattsAllEquityPartnershipFlip.json) - `pysam_options` (dict): The top-level keys correspond to the Groups available in the [Pvwattsv8 module](https://nrel-pysam.readthedocs.io/en/main/modules/Pvwattsv8.html). The next level is the individual attributes a user could set and a full list is available through the PySAM documentation of Pvwattsv8 module. The Groups that users may want to specify specific options for are the: - [SystemDesign](#systemdesign-group) - [SolarResource](#solarresource-group) diff --git a/docs/technology_models/run_of_river.md b/docs/technology_models/run_of_river.md index ee8209fcf..4822d9d87 100644 --- a/docs/technology_models/run_of_river.md +++ b/docs/technology_models/run_of_river.md @@ -1,3 +1,4 @@ +(run_of_river_hydro)= # Run-of-river hydropower model The `RunOfRiverHydro` model simulates the generation of electricity from a river generation source, taking into account the flow rate and the efficiency of the turbine. @@ -74,4 +75,4 @@ Also within the `tech_config` yaml, you can set the performance and cost paramet For additional information regarding hydropower technology and performance see [New Stream-reach Development: A Comprehensive Assessment of Hydropower Energy Potential in the United States](https://info.ornl.gov/sites/publications/Files/Pub46481.pdf) and -for relevant performance and cost assumptions see the [Annual Technology Baseline - Hydropower](https://atb.nrel.gov/electricity/2024/hydropower). +for relevant performance and cost assumptions see the [Annual Technology Baseline - Hydropower](https://atb.nlr.gov/electricity/2024/hydropower). diff --git a/docs/technology_models/steel_eaf.md b/docs/technology_models/steel_eaf.md new file mode 100644 index 000000000..28638556b --- /dev/null +++ b/docs/technology_models/steel_eaf.md @@ -0,0 +1,31 @@ +# Steel Electric Arc Furnace Models + +H2I contains two steel electric arc furnace (EAF) models, one is for a facility that utilizes iron pellets from natural gas (NG) direct iron reduction and another facility that utilizes iron pellets from hydrogen (H2)direct iron reduction. + +The main difference is the required feedstocks for processing the pellets. +- NG-EAF requires: natural gas, water, pig iron and electricity. +- H2-EAF requires: natural gas, water, carbon, lime, pig iron and electricity. + +The original models were constructed in Aspen Pro and translated into Python and added to H2I. The models were developed in conjunction with [Lawrence Berkeley National Laboratory (LBNL)](https://www.lbl.gov/). + +The models implemented in H2I are: +- Natural Gas Electric Arc Furnace + - `NaturalGasEAFPlantPerformanceComponent` + - `NaturalGasEAFPlantCostComponent` +- Hydrogen Electric Arc Furnace + - `HydrogenEAFPlantPerformanceComponent` + - `HydrogenEAFPlantCostComponent` + +Citation: +```bibtex +@article{rosner2023green, + title={Green steel: design and cost analysis of hydrogen-based direct iron reduction}, + author={Rosner, Fabian and Papadias, Dionissios and Brooks, Kriston and Yoro, Kelvin and Ahluwalia, Rajesh and Autrey, Tom and Breunig, Hanna}, + journal={Energy \& Environmental Science}, + volume={16}, + number={10}, + pages={4121--4134}, + year={2023}, + publisher={Royal Society of Chemistry} +} +``` diff --git a/docs/technology_models/tidal.md b/docs/technology_models/tidal.md new file mode 100644 index 000000000..0cae0797d --- /dev/null +++ b/docs/technology_models/tidal.md @@ -0,0 +1,50 @@ +(tidal_performance)= +# Tidal Models + +## PySAM Tidal Performance Model + +The **PySAM Tidal Performance Model** simulates electricity generation from **tidal current energy devices** using a time-series tidal velocity resource. The model wraps the [PySAM MhkTidal module](https://nrel-pysam.readthedocs.io/en/main/modules/MhkTidal.html) implementation of the tidal performance model used in the [System Advisor Model (SAM)](https://sam.nlr.gov/). + +This component integrates the PySAM **MhkTidal** module into an **OpenMDAO-compatible performance model**, allowing it to be used within hybrid energy system simulations. To use this model, specify `"PYSAMTidalPerformanceModel"` as the performance model. + +The model converts a **tidal velocity resource time series** and **device power curve** into: +- time-series electricity generation +- annual energy production +- system capacity factor + +### Model Overview + +The model represents an array of tidal energy devices operating in a tidal current resource. Electricity production is calculated by mapping the instantaneous tidal velocity to the device power curve, scaling by the number of devices, and integrating over time. + +Key capabilities include: +- Time-series tidal resource simulation +- Device-array scaling +- Custom tidal power curves +- Optional automatic power curve scaling to match device rating +- Integration with hybrid energy system simulations + +(pysam-options)= +#### PySAM Options +A user can specify any of the attributes available within the [MhkTidal module](https://nrel-pysam.readthedocs.io/en/main/modules/MhkTidal.html). They can do this using the `pysam_options` dictionary in the when setting up the `PySAMTidalPerformanceModel`. + +The top-level keys of the dictionary correspond to the Groups available in the [MhkTidal module](https://nrel-pysam.readthedocs.io/en/main/modules/MhkTidal.html). The next level is the individual attributes a user could set and a full list is available through the PySAM documentation of MhkTidal module. + +#### Power Curve Scaling + +If `run_recalculate_power_curve=True`, the model rescales the power curve to match the specified device rating. The power curve will be internally scaled based on the new device rating so if the original tidal device rating is updated to a different rating, the model can use the original power curve and scale it if a new power curve is not available. + +Scaling is performed using: + +$$P_{\text{scaled}}(v) = +P_{\text{original}}(v) +\times +\frac{\text{device_rating}}{P_{\text{rated, original}}}$$ + +where: + +- $P_{\text{original}}(v)$ is the original power curve value at velocity \(v\) +- $P_{\text{rated, original}}$ is the maximum value of the original power curve +- `device_rating` is the rated power of the device specified in the configuration + + +This allows a generic power curve to be adapted to different device ratings. diff --git a/docs/technology_models/wind_plant_ard.md b/docs/technology_models/wind_plant_ard.md index 29e83f88b..659f0d33b 100644 --- a/docs/technology_models/wind_plant_ard.md +++ b/docs/technology_models/wind_plant_ard.md @@ -57,18 +57,18 @@ technologies: rated_power: 5000000.0 # W num_blades: 3 rated_thrust_N: 823484.4216152605 # from NREL 5MW definition - gust_velocity_m_per_s: 70.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + gust_velocity_m_per_s: 70.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml blade_surface_area: 69.7974979 tower_mass: 620.4407337521 nacelle_mass: 101.98582836439 hub_mass: 8.38407517646 blade_mass: 14.56341339641 foundation_height: 0.0 - commissioning_cost_kW: 44.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml - decommissioning_cost_kW: 58.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + commissioning_cost_kW: 44.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + decommissioning_cost_kW: 58.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml trench_len_to_substation_km: 50.0 distance_to_interconnect_mi: 4.97096954 - interconnect_voltage_kV: 130.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + interconnect_voltage_kV: 130.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml tcc_per_kW: 1300.00 # (USD/kW) opex_per_kW: 44.00 # (USD/kWh) analysis_options: diff --git a/docs/technology_models/windpower_wind_plant.md b/docs/technology_models/windpower_wind_plant.md index 4f7785b81..36a4a33f4 100644 --- a/docs/technology_models/windpower_wind_plant.md +++ b/docs/technology_models/windpower_wind_plant.md @@ -50,14 +50,14 @@ technologies: - `turbine_rating_kw` (required): rated power of individual wind turbine in kW - `create_model_from`: this can either be set to `"new"` or `"default"` and defaults to `"new"`. If `create_model_from` is `"new"`, the wind model is initialized using `Windpower.new()` and *populated* with parameters specified in `pysam_options`. If `create_model_from` is `"default"`, the wind model is initialized using `Windpower.default(config_name)` (`config_name` is also an input parameter) then *updated* with parameters specified in `pysam_options`. - `config_name`: this is only used if `create_model_from` is `"default"`. The default value for this is `"WindPowerSingleOwner"`. The available options and their default parameters are listed below: - - [WindPowerAllEquityPartnershipFlip](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerAllEquityPartnershipFlip.json) - - [WindPowerCommercial](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerCommercial.json) - - [WindPowerLeveragedPartnershipFlip](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerLeveragedPartnershipFlip.json) - - [WindPowerMerchantPlant](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerMerchantPlant.json) - - [WindPowerNone](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerNone.json) - - [WindPowerResidential](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerResidential.json) - - [WindPowerSaleLeaseback](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerSaleLeaseback.json) - - [WindPowerSingleOwner](https://github.com/NREL/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerSingleOwner.json) + - [WindPowerAllEquityPartnershipFlip](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerAllEquityPartnershipFlip.json) + - [WindPowerCommercial](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerCommercial.json) + - [WindPowerLeveragedPartnershipFlip](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerLeveragedPartnershipFlip.json) + - [WindPowerMerchantPlant](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerMerchantPlant.json) + - [WindPowerNone](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerNone.json) + - [WindPowerResidential](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerResidential.json) + - [WindPowerSaleLeaseback](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerSaleLeaseback.json) + - [WindPowerSingleOwner](https://github.com/NatLabRockies/SAM/blob/develop/api/api_autogen/library/defaults/Windpower_WindPowerSingleOwner.json) - `run_recalculate_power_curve` (optional): Flag whether to recalculate the wind turbine power curve. defaults to True. diff --git a/docs/technology_models/wombat_electrolyzer_om.md b/docs/technology_models/wombat_electrolyzer_om.md index 57f71ebcf..432674770 100644 --- a/docs/technology_models/wombat_electrolyzer_om.md +++ b/docs/technology_models/wombat_electrolyzer_om.md @@ -1,6 +1,6 @@ # WOMBAT Electrolyzer O&M Model -The `WOMBATElectrolyzerModel` provides a detailed, simulation-based approach to estimating the operations and maintenance (O&M) costs and availability of hydrogen electrolyzers. This model leverages the [WOMBAT](https://github.com/WISDEM/WOMBAT) (Windfarm Operations and Maintenance cost-Benefit Analysis Tool) framework, originally developed for wind farm O&M analysis, and adapts it for hydrogen systems. +The `WOMBATElectrolyzerModel` provides a detailed, simulation-based approach to estimating the operations and maintenance (O&M) costs and availability of hydrogen electrolyzers. This model leverages the [WOMBAT](https://github.com/NLRWindSystems/WOMBAT) (Windfarm Operations and Maintenance cost-Benefit Analysis Tool) framework, originally developed for wind farm O&M analysis, and adapts it for hydrogen systems. ## What is WOMBAT? diff --git a/docs/user_guide/connecting_technologies.md b/docs/user_guide/connecting_technologies.md index f85396e7a..e70bbe6b7 100644 --- a/docs/user_guide/connecting_technologies.md +++ b/docs/user_guide/connecting_technologies.md @@ -49,7 +49,7 @@ There are two connection formats: ##### Different shared parameter names ```yaml -["source_tech", "destination_tech", ("source_parameter", "destination_parameter")] +["source_tech", "destination_tech", ["source_parameter", "destination_parameter"]] ``` - **source_tech**: Name of the technology providing the output @@ -57,6 +57,9 @@ There are two connection formats: - **source_parameter**: The name of the parameter within ``"source_tech"`` - **destination_parameter**: The name of the parameter within ``"destination_tech"`` +```{note} +The `source_parameter` and `destination_parameter` should be input into the array as another array. If it's input as a tuple the model will raise an error. +``` ### Internal connection logic @@ -92,6 +95,109 @@ And automatically connects: - `electricity_splitter.electricity_out1` → `electricity_splitter_to_electrolyzer_cable.electricity_in` - `electricity_splitter.electricity_out2` → `electricity_splitter_to_doc_cable.electricity_in` +## Multivariable streams + +Standard connections in H2Integrate transport a single commodity between technologies (e.g., electricity in kW, hydrogen in kg/h). +*Multivariable streams* extend this by bundling several related variables into a single named stream, so that one connection specification in `technology_interconnections` expands into connections for every constituent variable automatically. + +A typical use-case is a gas mixture where you need to transport the mass flow rate, composition fractions, temperature, and pressure together between a producer, a combiner, and a consumer. + +### Defining a multivariable stream + +Multivariable streams are defined in `commodity_stream_definitions.py`. Each stream has a name and a dictionary of constituent variables with their units and descriptions: + +```{literalinclude} ../../h2integrate/core/commodity_stream_definitions.py +:language: python +:lines: 11-35 +:caption: Built-in stream definition from commodity_stream_definitions.py +``` + +To add a new multivariable stream type, add another entry to the `multivariable_streams` dictionary with the stream name as the key and the constituent variables as the value. + +### Variable naming convention + +Multivariable stream variables follow the naming convention `:_in` for inputs and `:_out` for outputs. +The colon separates the stream name from the constituent variable name, making it clear which stream a variable belongs to. + + +### Using multivariable streams in components + +Two helper functions are provided to register all constituent variables of a multivariable stream on an OpenMDAO component: + +```python +from h2integrate.core.commodity_stream_definitions import ( + add_multivariable_output, + add_multivariable_input, +) + +class MyProducer(PerformanceModelBaseClass): + def setup(self): + super().setup() + # Adds all wellhead_gas_mixture variables as outputs + add_multivariable_output(self, "wellhead_gas_mixture", self.n_timesteps) + +class MyConsumer(PerformanceModelBaseClass): + def setup(self): + super().setup() + # Adds all wellhead_gas_mixture variables as inputs + add_multivariable_input(self, "wellhead_gas_mixture", self.n_timesteps) +``` + +These helper functions replace the need for manually iterating over the stream definition dictionary, reducing boilerplate code and ensuring consistency when adding new stream types. + +### Connecting multivariable streams + +Multivariable streams are connected using the same `technology_interconnections` syntax as standard connections. +When H2Integrate encounters a stream name that matches a key in `multivariable_streams`, it automatically expands the connection into individual connections for each constituent variable. + +#### 4-element connections + +```yaml +technology_interconnections: [ + ["gas_producer", "gas_consumer", "wellhead_gas_mixture", "pipe"], +] +``` + +This single line expands into five OpenMDAO connections: +- `gas_producer.wellhead_gas_mixture:mass_flow_out` → `gas_consumer.wellhead_gas_mixture:mass_flow_in` +- `gas_producer.wellhead_gas_mixture:hydrogen_mass_fraction_out` → `gas_consumer.wellhead_gas_mixture:hydrogen_mass_fraction_in` +- `gas_producer.wellhead_gas_mixture:oxygen_mass_fraction_out` → `gas_consumer.wellhead_gas_mixture:oxygen_mass_fraction_in` +- `gas_producer.wellhead_gas_mixture:temperature_out` → `gas_consumer.wellhead_gas_mixture:temperature_in` +- `gas_producer.wellhead_gas_mixture:pressure_out` → `gas_consumer.wellhead_gas_mixture:pressure_in` + + +#### 3-element connections + +Three-element connections also support multivariable streams: + +```yaml +technology_interconnections: [ + ["gas_producer", "gas_consumer", "wellhead_gas_mixture"], +] +``` + +This expands into the same set of individual connections as the 4-element version above. + +#### Combiner and splitter connections + +Multivariable streams work with combiners and splitters using the same naming conventions as standard commodity connections. +The system auto-increments stream indices for combiners and splitters: + +```yaml +technology_interconnections: [ + ["gas_producer_1", "gas_combiner", "wellhead_gas_mixture"], + ["gas_producer_2", "gas_combiner", "wellhead_gas_mixture"], + ["gas_combiner", "gas_consumer", "wellhead_gas_mixture"], +] +``` + +For the combiner inputs, variables are indexed as `wellhead_gas_mixture:_in1`, `wellhead_gas_mixture:_in2`, etc. +For the splitter outputs, variables are indexed as `wellhead_gas_mixture:_out1`, `wellhead_gas_mixture:_out2`, etc. + +### Example + +See [Example 32](https://github.com/NatLabRockies/H2Integrate/tree/main/examples/32_multivariable_streams) for a complete working example that demonstrates two gas producers with different properties feeding into a gas stream combiner, which then feeds a consumer. + ## Generic combiner The generic combiner is a simple but essential component that takes a single commodity from multiple sources and combines the sources into a single output without losses. The following example uses power (kW) as the commodity, but streams of any single commodity can be combined. Any number of sources may be combined, not just two as in the example. diff --git a/docs/user_guide/expected_naming_convention.md b/docs/user_guide/expected_naming_convention.md deleted file mode 100644 index 447e57297..000000000 --- a/docs/user_guide/expected_naming_convention.md +++ /dev/null @@ -1,39 +0,0 @@ -# Expected Technology Naming Convention in H2I - -Some logic within H2I relies on expected naming conventions of technologies in the technology configuration file. The following details the naming convention required for H2I to run properly. - -```yaml -technologies: - tech_name_A: #these are the keys with specific required naming convention - performance_model: - model: - cost_model: - model: - model_inputs: - performance_parameters: -``` - -- if using the `GenericCombinerPerformanceModel` as the technology performance model, the technology name must include the name `combiner`. Some examples of valid technology names are: - + 'combiner' - + 'combiner_1' - + 'electricity_combiner' - + 'hydrogen_combiner_2' -- if using the `GenericSplitterPerformanceModel` as the technology performance model, the technology name must include the name `splitter`. Some examples of valid technology names are: - + 'splitter' - + 'splitter_1' - + 'electricity_splitter' - + 'hydrogen_splitter_2' -- if using the `FeedstockPerformanceModel` as the technology performance model and the `FeedstockCostModel` as the technology cost model, the technology name must include the name `feedstock`. Some examples of valid technology names are: - + 'feedstock' - + 'water_feedstock' - + 'feedstock_iron_ore' - + 'natural_gas_feedstock_tank' -- If a transport component is defined in the technology configuration file (most likely to transport commodities that cannot be transported by 'pipe' or 'cable'), the technology name must include the name `transport`. Some examples of valid technology names are: - + 'transport' - + 'lime_transport' - + 'transport_iron_ore' - + 'reformer_catalyst_transport_tube' - -```{note} -These naming convention limitations are known and you can track them in this issue: https://github.com/NatLabRockies/H2Integrate/issues/374 -``` diff --git a/docs/user_guide/figures/example_08_xdsm.png b/docs/user_guide/figures/example_08_xdsm.png new file mode 100644 index 000000000..a9c6b9301 Binary files /dev/null and b/docs/user_guide/figures/example_08_xdsm.png differ diff --git a/docs/user_guide/how_to_interface_with_user_defined_model.md b/docs/user_guide/how_to_interface_with_user_defined_model.md index 709894cd9..9f13197f5 100644 --- a/docs/user_guide/how_to_interface_with_user_defined_model.md +++ b/docs/user_guide/how_to_interface_with_user_defined_model.md @@ -29,11 +29,11 @@ To demonstrate this capability, we include a minimal example of a custom technol - A `PaperMillCost` model that estimates capital and operational expenditures. - A `PaperMillFinance` technology finance model that computes the levelized cost of paper production (LCOP). -Refer to the [Paper Mill Model Example](https://github.com/NREL/H2Integrate/tree/develop/examples/06_custom_tech/) for a complete walkthrough. +Refer to the [Paper Mill Model Example](https://github.com/NatLabRockies/H2Integrate/tree/develop/examples/06_custom_tech/) for a complete walkthrough. ### Custom General Finance Model Example: simple LCO finance model -To demonstrate this capability, we include an example of a custom general finance model: a **simple LCO (levelized cost of) calculation** found in [Example 08: Wind Electrolyzer Example](https://github.com/NREL/H2Integrate/tree/develop/examples/08_wind_electrolyzer/). This example includes: +To demonstrate this capability, we include an example of a custom general finance model: a **simple LCO (levelized cost of) calculation** found in [Example 08: Wind Electrolyzer Example](https://github.com/NatLabRockies/H2Integrate/tree/develop/examples/08_wind_electrolyzer/). This example includes: - A `SimpleLCOFinanceConfig`: configuration class that is populated with inputs specific to that finance model. - A `SimpleLCOFinance` general finance model that computes the levelized cost of a commodity diff --git a/docs/user_guide/how_to_set_up_an_analysis.md b/docs/user_guide/how_to_set_up_an_analysis.md index 2995ad02d..b64d4c7e3 100644 --- a/docs/user_guide/how_to_set_up_an_analysis.md +++ b/docs/user_guide/how_to_set_up_an_analysis.md @@ -121,6 +121,90 @@ The `resource_to_tech_connections` section defines how resources (like wind or s For more information on how to define and interpret technology interconnections, see the {ref}`connecting_technologies` page. ``` +## Visualizing the model structure +There are two basic methods for visualizing the model structure of your H2Integrate system model. +You can generate a simplified [XDSM diagram](https://openmdao.github.io/PracticalMDO/Notebooks/ModelConstruction/understanding_xdsm_diagrams.html) showing the technologies and connections specified in your config file, or you can generate an interactive [N2 diagram](https://openmdao.org/newdocs/versions/latest/features/model_visualization/n2_details/n2_details.html) of the full OpenMDAO model. +The XDSM diagram is primarily useful for publications and presentations. +The N2 diagram is primarily useful for debugging. Details for generating XDSM and N2 diagrams of your H2Integrate model are given below. + +### XDSM diagram (static and simplified) + +Use the built-in `create_xdsm()` method to generate a static system diagram from the +`technology_interconnections` section of your plant config. + +```python +from h2integrate.core.h2integrate_model import H2IntegrateModel +import os + + +# Change to an example directory +os.chdir("../../examples/08_wind_electrolyzer/") + +# Build the model from the top-level config file +h2i_model = H2IntegrateModel("wind_plant_electrolyzer.yaml") + +# Write XDSM output to connections_xdsm.pdf +h2i_model.create_xdsm(outfile="connections_xdsm") +``` + +This creates a PDF named `connections_xdsm.pdf` in your current working directory. + +```{figure} figures/example_08_xdsm.png +:width: 70% +:align: center +``` +*Figure: XDSM diagram generated from the technology interconnections.* + +### N2 diagram (interactive and complete) + +Use OpenMDAO's `n2` utility to generate an interactive HTML diagram of the full model. + +```{code-cell} ipython3 +from h2integrate.core.h2integrate_model import H2IntegrateModel +import openmdao.api as om +import os + + +# Change to an example directory +os.chdir("../../examples/08_wind_electrolyzer/") + +# Build and set up the model +h2i_model = H2IntegrateModel("wind_plant_electrolyzer.yaml") +h2i_model.setup() + +# Write interactive N2 HTML diagram +om.n2( + h2i_model.prob, + outfile="h2i_n2.html", + display_in_notebook=False, # set to True to display in-line in a notebook + show_browser=False, # set to True to open in a browser at run time +) +``` + +Open `h2i_n2.html` in a browser to explore model groups, components, and variable connections. + +```{code-cell} ipython3 +:tags: [remove-input] +import html +from pathlib import Path +from IPython.display import HTML, display + +n2_html = "h2i_n2.html" +n2_srcdoc = html.escape(Path(n2_html).read_text(encoding="utf-8")) +display( + HTML( + f'
' + f'' + '
' + ) +) +``` +*Figure: Interactive OpenMDAO N2 diagram showing the full model structure and variable connections.* + + + ## Running the analysis Once you have the config files defined, you can run the analysis using a simple Python script that inputs the top-level config yaml. diff --git a/docs/user_guide/model_overview.md b/docs/user_guide/model_overview.md index 5d18c80a4..6523f091d 100644 --- a/docs/user_guide/model_overview.md +++ b/docs/user_guide/model_overview.md @@ -67,6 +67,7 @@ Below summarizes the available performance, cost, and financial models for each - [Storage Models](#storage-models) - [Basic Operations](#basic-operations) - [Control Models](#control-models) + - [DemandModels](#demand-models) (resource-models)= ## Resource models @@ -92,6 +93,9 @@ Below summarizes the available performance, cost, and financial models for each (converter-models)= ## Converter models +- generic models: + - cost models: + + `GenericConverterCostModel` - `wind`: wind turbine - performance models: + `'PYSAMWindPlantPerformanceModel'` @@ -250,8 +254,6 @@ Below summarizes the available performance, cost, and financial models for each (storage-models)= ## Storage Models - `h2_storage`: hydrogen storage - - performance models: - + `'SimpleGenericStorage'` - cost models: + `'LinedRockCavernStorageCostModel'` + `'SaltCavernStorageCostModel'` @@ -259,7 +261,7 @@ Below summarizes the available performance, cost, and financial models for each + `'PipeStorageCostModel'` - `generic_storage`: any resource storage - performance models: - + `'SimpleGenericStorage'` + + `'StoragePerformanceModel'` + `'StorageAutoSizingModel'` - cost models: + `'GenericStorageCostModel'` @@ -279,12 +281,14 @@ Below summarizes the available performance, cost, and financial models for each (control-models)= ## Control Models -- `'PassThroughOpenLoopController'`: open-loop control; directly passes the input resource flow to the output without any modifications - Storage Controllers: + - `'SimpleStorageOpenLoopController'`: open-loop control; manages resource flow based on demand and input commodity - `'DemandOpenLoopStorageController'`: open-loop control; manages resource flow based on demand and storage constraints - - `'HeuristicLoadFollowingController'`: open-loop control that works on a time window basis to set dispatch commands; uses Pyomo -- Converter Controllers: - - `'DemandOpenLoopConverterController'`: open-loop control; manages resource flow based on demand constraints - - `'FlexibleDemandOpenLoopConverterController'`: open-loop control; manages resource flow based on demand and flexibility constraints + - `'HeuristicLoadFollowingStorageController'`: open-loop control that works on a time window basis to set dispatch commands; uses Pyomo - Optimized Dispatch: - - `'OptimizedDispatchController'`: optimization-based dispatch using Pyomo + - `'OptimizedDispatchStorageController'`: optimization-based dispatch using Pyomo + +(demand-models)= +## Demand Models +- `'GenericDemandComponent'`: manages resource flow based on demand constraints +- `'FlexibleDemandComponent'`: manages resource flow based on demand and flexibility constraints diff --git a/docs/user_guide/specifying_finance_parameters.md b/docs/user_guide/specifying_finance_parameters.md index 7ae08217d..3f12b4e4c 100644 --- a/docs/user_guide/specifying_finance_parameters.md +++ b/docs/user_guide/specifying_finance_parameters.md @@ -76,7 +76,7 @@ finance_subgroup_default. ``` Examples: -- [Example 7](https://github.com/NREL/H2Integrate/blob/develop/examples/07_run_of_river_plant/plant_config.yaml) +- [Example 7](https://github.com/NatLabRockies/H2Integrate/blob/develop/examples/07_run_of_river_plant/plant_config.yaml) (finparams:singlemodelsubgroups)= @@ -106,9 +106,9 @@ finance_subgroup_. ``` Examples: -- [Example 02](https://github.com/NREL/H2Integrate/tree/develop/examples/02_texas_ammonia/plant_config.yaml) -- [Example 03 - CO2H](https://github.com/NREL/H2Integrate/tree/develop/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml) -- [Example 09 - DOC](https://github.com/NREL/H2Integrate/tree/develop/examples/09_co2/direct_ocean_capture/plant_config.yaml) +- [Example 02](https://github.com/NatLabRockies/H2Integrate/tree/develop/examples/02_texas_ammonia/plant_config.yaml) +- [Example 03 - CO2H](https://github.com/NatLabRockies/H2Integrate/tree/develop/examples/03_methanol/co2_hydrogenation/plant_config_co2h.yaml) +- [Example 09 - DOC](https://github.com/NatLabRockies/H2Integrate/tree/develop/examples/09_co2/direct_ocean_capture/plant_config.yaml) @@ -151,7 +151,7 @@ finance_subgroup_subgroup_b.NPV_hydrogen_delivered_group_b ``` Examples: -- [Example 10](https://github.com/NREL/H2Integrate/blob/develop/examples/10_electrolyzer_om/plant_config.yaml) +- [Example 10](https://github.com/NatLabRockies/H2Integrate/blob/develop/examples/10_electrolyzer_om/plant_config.yaml) #### Key Behaviors - If `finance_parameters` is missing --> no finance model is created. diff --git a/environment.yml b/environment.yml index 3899c89f9..5ca9dbed3 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,7 @@ channels: [conda-forge, defaults] dependencies: - python=3.11 - glpk - # - coin-or-cbc=2.10.8 # NOTE: uncomment if on Unix + - coin-or-cbc>=2.10.12 # - wisdem # NOTE: uncomment if installing with Ard - pip - pip: [.] diff --git a/examples/01_onshore_steel_mn/plant_config.yaml b/examples/01_onshore_steel_mn/plant_config.yaml index fbd42d963..751cdf96c 100644 --- a/examples/01_onshore_steel_mn/plant_config.yaml +++ b/examples/01_onshore_steel_mn/plant_config.yaml @@ -22,8 +22,15 @@ technology_interconnections: - [wind, combiner, electricity, cable] - [solar, combiner, electricity, cable] - [combiner, battery, electricity, cable] - - [battery, electrolyzer, electricity, cable] + # combine the battery output with the wind and solar generation + - [battery, elec_combiner, electricity, cable] + - [combiner, elec_combiner, electricity, cable] + # connect the electricity supply to the electrolyzer + - [elec_combiner, electrolyzer, electricity, cable] - [electrolyzer, h2_storage, hydrogen, pipe] + # combine the h2 from the electrolyzer and the h2_storage + - [electrolyzer, h2_combiner, hydrogen, pipe] + - [h2_storage, h2_combiner, hydrogen, pipe] - [finance_subgroup_hydrogen, steel, [LCOH_delivered, LCOH]] # etc tech_to_dispatch_connections: @@ -48,7 +55,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/01_onshore_steel_mn/tech_config.yaml b/examples/01_onshore_steel_mn/tech_config.yaml index 87a370762..4e3a99fb4 100644 --- a/examples/01_onshore_steel_mn/tech_config.yaml +++ b/examples/01_onshore_steel_mn/tech_config.yaml @@ -60,17 +60,14 @@ technologies: dispatch_rule_set: model: PyomoDispatchGenericConverter model_inputs: - performance_parameters: - commodity: electricity - commodity_rate_units: kW - dispatch_rule_parameters: + shared_parameters: commodity: electricity commodity_rate_units: kW battery: dispatch_rule_set: model: PyomoRuleStorageBaseclass control_strategy: - model: HeuristicLoadFollowingController + model: HeuristicLoadFollowingStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: @@ -81,19 +78,27 @@ technologies: commodity_rate_units: kW max_charge_rate: 375740.4 # kW max_capacity: 375745.2 # kWh - n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 - system_commodity_interface_limit: 1e12 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 720000 # 720 MW cost_parameters: cost_year: 2019 energy_capex: 310 # $/kWh from 2024 ATB year 2025 power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.024999840573439444 + control_parameters: + system_commodity_interface_limit: 1e12 + n_control_window: 24 + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW electrolyzer: performance_model: model: ECOElectrolyzerPerformanceModel @@ -119,18 +124,32 @@ technologies: performance_model: model: StorageAutoSizingModel control_strategy: - model: PassThroughOpenLoopController + model: SimpleStorageOpenLoopController cost_model: model: LinedRockCavernStorageCostModel model_inputs: shared_parameters: commodity: hydrogen commodity_rate_units: kg/h + set_demand_as_avg_commodity_in: true + commodity_amount_units: kg + performance_parameters: + min_soc_fraction: 0.0 + max_soc_fraction: 1.0 + charge_efficiency: 1.0 + discharge_efficiency: 1.0 cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined + h2_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h steel: performance_model: model: SteelPerformanceModel diff --git a/examples/02_texas_ammonia/plant_config.yaml b/examples/02_texas_ammonia/plant_config.yaml index 9d42bd2c5..bc4db7f5b 100644 --- a/examples/02_texas_ammonia/plant_config.yaml +++ b/examples/02_texas_ammonia/plant_config.yaml @@ -21,9 +21,17 @@ technology_interconnections: - [wind, combiner, electricity, cable] - [solar, combiner, electricity, cable] - [combiner, battery, electricity, cable] - - [battery, electrolyzer, electricity, cable] + # combine the battery output with the wind and solar generation + - [battery, elec_combiner, electricity, cable] + - [combiner, elec_combiner, electricity, cable] + # connect the electricity supply to the electrolyzer + - [elec_combiner, electrolyzer, electricity, cable] - [electrolyzer, h2_storage, hydrogen, pipe] - - [h2_storage, ammonia, hydrogen, pipe] + # combine the h2 from the electrolyzer and the h2_storage + - [electrolyzer, h2_combiner, hydrogen, pipe] + - [h2_storage, h2_combiner, hydrogen, pipe] + # connect the hydrogen supply to the ammonia model + - [h2_combiner, ammonia, hydrogen, pipe] - [finance_subgroup_hydrogen, ammonia, LCOH] # etc tech_to_dispatch_connections: @@ -48,7 +56,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for real analysis discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx and # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + property_tax_and_insurance: 0.025 # https://www.house.mn.gov/hrd/issinfo/clsrates.aspx and # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ diff --git a/examples/02_texas_ammonia/tech_config.yaml b/examples/02_texas_ammonia/tech_config.yaml index 032e5d8a6..e1494c63d 100644 --- a/examples/02_texas_ammonia/tech_config.yaml +++ b/examples/02_texas_ammonia/tech_config.yaml @@ -60,17 +60,14 @@ technologies: dispatch_rule_set: model: PyomoDispatchGenericConverter model_inputs: - performance_parameters: - commodity: electricity - commodity_rate_units: kW - dispatch_rule_parameters: + shared_parameters: commodity: electricity commodity_rate_units: kW battery: dispatch_rule_set: model: PyomoRuleStorageBaseclass control_strategy: - model: HeuristicLoadFollowingController + model: HeuristicLoadFollowingStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: @@ -81,19 +78,27 @@ technologies: commodity_rate_units: kW max_charge_rate: 96.0 # kW max_capacity: 96.0 # kWh - n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 - system_commodity_interface_limit: 1e12 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 640000 # 640 MW cost_parameters: cost_year: 2019 energy_capex: 310 # $/kWh from 2024 ATB year 2025 power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.025 + control_parameters: + system_commodity_interface_limit: 1e12 + n_control_window: 24 + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW electrolyzer: performance_model: model: ECOElectrolyzerPerformanceModel @@ -119,18 +124,32 @@ technologies: performance_model: model: StorageAutoSizingModel control_strategy: - model: PassThroughOpenLoopController + model: SimpleStorageOpenLoopController cost_model: model: SaltCavernStorageCostModel model_inputs: shared_parameters: commodity: hydrogen commodity_rate_units: kg/h + commodity_amount_units: kg + set_demand_as_avg_commodity_in: true + performance_parameters: + min_soc_fraction: 0.0 + max_soc_fraction: 1.0 + charge_efficiency: 1.0 + discharge_efficiency: 1.0 cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined + h2_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h ammonia: performance_model: model: SimpleAmmoniaPerformanceModel diff --git a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml index c6c0b33df..7a2134f88 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/plant_config_co2h.yaml @@ -15,9 +15,18 @@ technology_interconnections: - [electricity_splitter, doc, electricity, cable] - [electricity_splitter, electrolyzer, electricity, cable] - [electrolyzer, h2_storage, hydrogen, pipe] - - [h2_storage, methanol, hydrogen, pipe] + # combine the h2 from the electrolyzer and the h2_storage + - [electrolyzer, h2_combiner, hydrogen, pipe] + - [h2_storage, h2_combiner, hydrogen, pipe] + # connect the h2 supply to the methanol system + - [h2_combiner, methanol, hydrogen, pipe] + # connect the doc to co2 storage - [doc, co2_storage, co2, pipe] - - [co2_storage, methanol, co2, pipe] + # combine the co2 from the doc and the co2_storage + - [doc, co2_combiner, co2, pipe] + - [co2_storage, co2_combiner, co2, pipe] + # connect the co2 supply to the methanol system + - [co2_combiner, methanol, co2, pipe] resource_to_tech_connections: # connect the wind resource to the wind technology - [site.wind_resource, wind, wind_resource_data] diff --git a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml index 5be75998e..a22248b3b 100644 --- a/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml +++ b/examples/03_methanol/co2_hydrogenation_doc/tech_config_co2h.yaml @@ -5,7 +5,7 @@ technologies: performance_model: model: PYSAMWindPlantPerformanceModel cost_model: - model: ATBWindPlantCostModel + model: GenericConverterCostModel model_inputs: performance_parameters: num_turbines: 24 @@ -39,8 +39,12 @@ technologies: row_phase_offset: 0.0 layout_shape: square cost_parameters: - capex_per_kW: 1380.0 - opex_per_kW_per_year: 29.0 + commodity: electricity + commodity_rate_units: kW + commodity_amount_units: kW*h + unit_capex: 1380.0 # USD/kW + unit_opex: 29.0 # USD/kW/year + unit_varopex: 0.0 # USD/kWh cost_year: 2019 electricity_splitter: performance_model: @@ -74,7 +78,7 @@ technologies: replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: GenericStorageCostModel control_strategy: @@ -85,10 +89,9 @@ technologies: commodity_rate_units: kg/h max_charge_rate: 50000.0 # kg/time step max_capacity: 103701.401563086 # kg - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.25 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.25 # fraction (0-1) max_discharge_rate: 5000.0 # kg/time step charge_equals_discharge: false charge_efficiency: 1.0 # fraction (0-1) @@ -99,6 +102,13 @@ technologies: capacity_capex: 383 # $/kg - based on https://www.hydrogen.energy.gov/docs/hydrogenprogramlibraries/pdfs/review22/st235_houchins_2022_p-pdf.pdf?Status=Master charge_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex + h2_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h doc: performance_model: model: DOCPerformanceModel @@ -130,7 +140,7 @@ technologies: infrastructure_type: desal co2_storage: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: GenericStorageCostModel control_strategy: @@ -141,10 +151,9 @@ technologies: commodity_rate_units: kg/h max_charge_rate: 50000.0 # kg/time step max_capacity: 961456.376748904 # kg - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.25 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.25 # fraction (0-1) max_discharge_rate: 50000.0 # kg/time step charge_efficiency: 1.0 # fraction (0-1) discharge_efficiency: 1.0 # fraction (0-1) @@ -154,6 +163,13 @@ technologies: capacity_capex: 5 # $/kg - based on https://www.maritime.dot.gov/sites/marad.dot.gov/files/2024-11/LCE%20MARAD%20CCS%20TEA%20Final%20Report%20-%2031%20May%202024%20%283%29.pdf charge_capex: .000001 # $/kg/h opex_fraction: .000001 # percent of capex + co2_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: co2 + commodity_rate_units: kg/h methanol: performance_model: model: CO2HMethanolPlantPerformanceModel diff --git a/examples/04_geo_h2/plant_config_natural.yaml b/examples/04_geo_h2/plant_config_natural.yaml index bb828355e..1bf46c69a 100644 --- a/examples/04_geo_h2/plant_config_natural.yaml +++ b/examples/04_geo_h2/plant_config_natural.yaml @@ -19,7 +19,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/04_geo_h2/plant_config_stimulated.yaml b/examples/04_geo_h2/plant_config_stimulated.yaml index fa361a863..2fa0f0591 100644 --- a/examples/04_geo_h2/plant_config_stimulated.yaml +++ b/examples/04_geo_h2/plant_config_stimulated.yaml @@ -17,7 +17,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/05_wind_h2_opt/plant_config.yaml b/examples/05_wind_h2_opt/plant_config.yaml index a8570032a..027f5f45a 100644 --- a/examples/05_wind_h2_opt/plant_config.yaml +++ b/examples/05_wind_h2_opt/plant_config.yaml @@ -31,7 +31,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/06_custom_tech/user_defined_model/paper_mill.py b/examples/06_custom_tech/user_defined_model/paper_mill.py index 34adef7b3..f6ef47c7e 100644 --- a/examples/06_custom_tech/user_defined_model/paper_mill.py +++ b/examples/06_custom_tech/user_defined_model/paper_mill.py @@ -16,6 +16,11 @@ class PaperMillConfig(BaseConfig): class PaperMillPerformance(om.ExplicitComponent): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) @@ -53,6 +58,11 @@ class PaperMillCostConfig(CostModelBaseConfig): class PaperMillCost(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = PaperMillCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") diff --git a/examples/07_run_of_river_plant/plant_config.yaml b/examples/07_run_of_river_plant/plant_config.yaml index 215f7a720..0383cf89b 100644 --- a/examples/07_run_of_river_plant/plant_config.yaml +++ b/examples/07_run_of_river_plant/plant_config.yaml @@ -34,7 +34,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/09_co2/direct_ocean_capture/plant_config.yaml b/examples/09_co2/direct_ocean_capture/plant_config.yaml index 2bb100ef1..d06252483 100644 --- a/examples/09_co2/direct_ocean_capture/plant_config.yaml +++ b/examples/09_co2/direct_ocean_capture/plant_config.yaml @@ -17,7 +17,11 @@ technology_interconnections: - [hopp, combiner, electricity, cable] - [wind, combiner, electricity, cable] - [combiner, battery, electricity, cable] - - [battery, doc, electricity, cable] + # combine the battery output with the wind and hopp generation + - [battery, elec_combiner, electricity, cable] + - [combiner, elec_combiner, electricity, cable] + # connect the electricity supply to the doc + - [elec_combiner, doc, electricity, cable] # etc tech_to_dispatch_connections: - [combiner, battery] @@ -37,7 +41,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/09_co2/direct_ocean_capture/tech_config.yaml b/examples/09_co2/direct_ocean_capture/tech_config.yaml index 4bbf1c526..4a40c0277 100644 --- a/examples/09_co2/direct_ocean_capture/tech_config.yaml +++ b/examples/09_co2/direct_ocean_capture/tech_config.yaml @@ -9,12 +9,11 @@ technologies: dispatch_rule_set: model: PyomoDispatchGenericConverter model_inputs: - shared_parameters: - cost_year: 2022 performance_parameters: cache_dir: cache enable_caching: true hopp_config: !include tech_inputs/hopp_config.yaml + cost_year: 2022 dispatch_rule_parameters: commodity: electricity commodity_rate_units: kW @@ -53,17 +52,14 @@ technologies: dispatch_rule_set: model: PyomoDispatchGenericConverter model_inputs: - performance_parameters: - commodity: electricity - commodity_rate_units: kW - dispatch_rule_parameters: + shared_parameters: commodity: electricity commodity_rate_units: kW battery: dispatch_rule_set: model: PyomoRuleStorageBaseclass control_strategy: - model: HeuristicLoadFollowingController + model: HeuristicLoadFollowingStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: @@ -74,19 +70,27 @@ technologies: commodity_rate_units: kW max_charge_rate: 50000 # kW max_capacity: 200000 # kWh - n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 - system_commodity_interface_limit: 1e12 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 340000 # 340 MW cost_parameters: cost_year: 2022 energy_capex: 246 # $/kWh from 2024 ATB year 2025 power_capex: 317 # $/kW from 2024 ATB year 2025 opex_fraction: 0.02536510376633359 + control_parameters: + n_control_window: 24 + system_commodity_interface_limit: 1e12 + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW doc: performance_model: model: DOCPerformanceModel diff --git a/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml index d684aff3e..1f967f058 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/plant_config.yaml @@ -15,7 +15,11 @@ sites: # this will naturally grow as we mature the interconnected tech technology_interconnections: - [wind, battery, electricity, cable] - - [battery, oae, electricity, cable] + # combine the battery output with the wind generation + - [wind, combiner, electricity, cable] + - [battery, combiner, electricity, cable] + # connect the electricity supply to the oae + - [combiner, oae, electricity, cable] # etc tech_to_dispatch_connections: - [wind, battery] @@ -35,7 +39,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml b/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml index 54c242ed8..d35e4bd3d 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement/tech_config.yaml @@ -39,7 +39,7 @@ technologies: dispatch_rule_set: model: PyomoRuleStorageBaseclass control_strategy: - model: HeuristicLoadFollowingController + model: HeuristicLoadFollowingStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: @@ -50,20 +50,27 @@ technologies: commodity_rate_units: kW max_charge_rate: 50000 # kW max_capacity: 200000 # kWh - n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 - system_commodity_interface_limit: 1e12 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 330000 # 330 MW cost_parameters: cost_year: 2022 - commodity_units: kW energy_capex: 246 # $/kWh from 2024 ATB year 2025 power_capex: 317 # $/kW from 2024 ATB year 2025 opex_fraction: 0.02536510376633359 + control_parameters: + n_control_window: 24 + system_commodity_interface_limit: 1e12 + combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW oae: performance_model: model: OAEPerformanceModel diff --git a/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml b/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml index fbb03a22e..bf53e153b 100644 --- a/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml +++ b/examples/09_co2/ocean_alkalinity_enhancement_financials/plant_config_financials.yaml @@ -18,6 +18,7 @@ plant: technology_interconnections: - [wind, oae, electricity, cable] - [finance_subgroup_electricity, oae, LCOE] + - [wind, oae, [annual_electricity_produced, annual_input_electricity]] # etc resource_to_tech_connections: # connect the wind resource to the wind technology @@ -32,7 +33,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/11_hybrid_energy_plant/plant_config.yaml b/examples/11_hybrid_energy_plant/plant_config.yaml index 3cccee7c8..1b91ae6bc 100644 --- a/examples/11_hybrid_energy_plant/plant_config.yaml +++ b/examples/11_hybrid_energy_plant/plant_config.yaml @@ -17,7 +17,7 @@ finance_parameters: inflation_rate: 0.025 # 0 for nominal analysis discount_rate: 0.089 # nominal return debt_equity_ratio: 2.1746031746031744 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.015 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + property_tax_and_insurance: 0.015 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.045 diff --git a/examples/12_ammonia_synloop/plant_config.yaml b/examples/12_ammonia_synloop/plant_config.yaml index b836b5335..1d2bc2b80 100644 --- a/examples/12_ammonia_synloop/plant_config.yaml +++ b/examples/12_ammonia_synloop/plant_config.yaml @@ -21,9 +21,19 @@ technology_interconnections: - [wind, combiner, electricity, cable] - [solar, combiner, electricity, cable] - [combiner, battery, electricity, cable] - - [battery, electrolyzer, electricity, cable] + # combine the battery output with the wind and solar generation + - [battery, elec_combiner, electricity, cable] + - [combiner, elec_combiner, electricity, cable] + # connect the electricity supply to the electrolyzer + - [elec_combiner, electrolyzer, electricity, cable] - [electrolyzer, h2_storage, hydrogen, pipe] - - [h2_storage, ammonia, hydrogen, pipe] + # combine the h2 from the electrolyzer and the h2_storage + - [electrolyzer, h2_combiner, hydrogen, pipe] + - [h2_storage, h2_combiner, hydrogen, pipe] + # subtract the hydrogen supplied from the hydrogen demand + - [h2_combiner, h2_load_demand, hydrogen, pipe] + # connect the hydrogen supplied as the demand to the ammonia model + - [h2_load_demand, ammonia, hydrogen, pipe] - [n2_feedstock, ammonia, nitrogen, pipe] - [electricity_feedstock, ammonia, electricity, cable] # etc @@ -46,7 +56,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for real analysis discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ @@ -74,5 +84,8 @@ finance_parameters: - battery - electrolyzer - h2_storage - - n2_feedstock - ammonia + n2: + commodity: nitrogen + commodity_stream: n2_feedstock + technologies: [n2_feedstock] diff --git a/examples/12_ammonia_synloop/tech_config.yaml b/examples/12_ammonia_synloop/tech_config.yaml index d35ef157e..ec1b28dd6 100644 --- a/examples/12_ammonia_synloop/tech_config.yaml +++ b/examples/12_ammonia_synloop/tech_config.yaml @@ -60,17 +60,14 @@ technologies: dispatch_rule_set: model: PyomoDispatchGenericConverter model_inputs: - performance_parameters: - commodity: electricity - commodity_rate_units: kW - dispatch_rule_parameters: + shared_parameters: commodity: electricity commodity_rate_units: kW battery: dispatch_rule_set: model: PyomoRuleStorageBaseclass control_strategy: - model: HeuristicLoadFollowingController + model: HeuristicLoadFollowingStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: @@ -81,19 +78,27 @@ technologies: commodity_rate_units: kW max_charge_rate: 96.0 # kW max_capacity: 96.0 # kWh - n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 - system_commodity_interface_limit: 1e12 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 640000 # 640 MW cost_parameters: cost_year: 2019 energy_capex: 310 # $/kWh from 2024 ATB year 2025 power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.025 + control_parameters: + n_control_window: 24 + system_commodity_interface_limit: 1e12 + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW electrolyzer: performance_model: model: ECOElectrolyzerPerformanceModel @@ -119,18 +124,40 @@ technologies: performance_model: model: StorageAutoSizingModel control_strategy: - model: PassThroughOpenLoopController + model: SimpleStorageOpenLoopController cost_model: model: SaltCavernStorageCostModel model_inputs: shared_parameters: commodity: hydrogen commodity_rate_units: kg/h + commodity_amount_units: kg + set_demand_as_avg_commodity_in: true + performance_parameters: + min_soc_fraction: 0.0 + max_soc_fraction: 1.0 + charge_efficiency: 1.0 + discharge_efficiency: 1.0 cost_parameters: # since the storage is being auto-sized by the performance model, # we set the sizing mode to 'auto' rather than defining the capacities # in the input file sizing_mode: auto # set as "auto" so storage capacity doesnt have to be defined + h2_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h + h2_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h + demand_profile: 9306.754158 # 50 kg/h n2_feedstock: performance_model: model: FeedstockPerformanceModel @@ -144,7 +171,7 @@ technologies: rated_capacity: 50.0 # metric tonnes of N2/hour cost_parameters: cost_year: 2022 - price: 0.0 + price: 5.0 annual_cost: 0. start_up_cost: 0.0 electricity_feedstock: diff --git a/examples/13_dispatch_for_electrolyzer/driver_config.yaml b/examples/13_dispatch_for_electrolyzer/driver_config.yaml new file mode 100644 index 000000000..0f78a81a9 --- /dev/null +++ b/examples/13_dispatch_for_electrolyzer/driver_config.yaml @@ -0,0 +1,15 @@ +name: driver_config +description: driver file +general: + folder_output: outputs + create_om_reports: false +recorder: + # required inputs + flag: true # record outputs + file: cases.sql # this file will be written to the folder `outputs` + + # optional but recommended inputs + overwrite_recorder: true # If True, do not create a unique recorder file for subsequent runs. Defaults to False. + recorder_attachment: model #"driver" or "model", defaults to "model". Use "driver" if running a parallel simulation. + includes: ['*'] #include everything + excludes: ['*resource_data*'] #exclude resource data diff --git a/examples/13_dispatch_for_electrolyzer/plant_config.yaml b/examples/13_dispatch_for_electrolyzer/plant_config.yaml new file mode 100644 index 000000000..6822e682f --- /dev/null +++ b/examples/13_dispatch_for_electrolyzer/plant_config.yaml @@ -0,0 +1,78 @@ +name: plant_config +description: This plant is located in Australia +sites: + site: + latitude: -28.454864 + longitude: 114.551749 + resources: + wind_resource: + resource_model: OpenMeteoHistoricalWindResource + resource_parameters: + resource_year: 2024 + solar_resource: + resource_model: OpenMeteoHistoricalSolarResource + resource_parameters: + resource_year: 2024 +technology_interconnections: + # combine the generation and input it to the battery + - [distributed_wind_plant, gen_combiner, electricity, cable] + - [distributed_pv, gen_combiner, electricity, cable] + - [gen_combiner, battery, electricity, cable] + # combine the battery output with the wind and solar generation + - [battery, elec_combiner, electricity, cable] + - [gen_combiner, elec_combiner, electricity, cable] + # subtract the electricity generated from the electricity demand + - [elec_combiner, elec_load_demand, electricity, cable] + # connect the electricity supplied to the demand to the electrolyzer + - [elec_load_demand, electrolyzer, electricity, cable] +resource_to_tech_connections: + # connect the wind resource to the wind technology + - [site.wind_resource, distributed_wind_plant, wind_resource_data] + - [site.solar_resource, distributed_pv, solar_resource_data] +plant: + plant_life: 30 + simulation: + timezone: 8 +finance_parameters: + finance_groups: + finance_model: ProFastLCO + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # 9% discount rate + debt_equity_ratio: 2.62 # + property_tax_and_insurance: 0.03 # 3% + total_income_tax_rate: 0.257 # 25.7% + capital_gains_tax_rate: 0.15 # 15% + sales_tax_rate: 0.07375 # 7.3% + debt_interest_rate: 0.07 # 7% + debt_type: Revolving debt # + loan_period_if_used: 0 # Not used for revolving debt + cash_onhand_months: 1 # months + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years + refurb: [0.] + finance_subgroups: + generated_electricity: + commodity: electricity + commodity_stream: gen_combiner + technologies: [distributed_wind_plant, distributed_pv] + electrical_system: + commodity: electricity + commodity_stream: elec_combiner + technologies: [distributed_wind_plant, distributed_pv, battery] + electrical_load: + commodity: electricity + commodity_stream: elec_load_demand + technologies: [distributed_wind_plant, distributed_pv, battery] + hydrogen: + commodity: hydrogen + commodity_stream: electrolyzer + technologies: [distributed_wind_plant, distributed_pv, battery, electrolyzer] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year + target_dollar_year: 2022 diff --git a/examples/13_dispatch_for_electrolyzer/run_dispatch_for_electrolyzer.py b/examples/13_dispatch_for_electrolyzer/run_dispatch_for_electrolyzer.py new file mode 100644 index 000000000..cf8499968 --- /dev/null +++ b/examples/13_dispatch_for_electrolyzer/run_dispatch_for_electrolyzer.py @@ -0,0 +1,40 @@ +from pathlib import Path + +from h2integrate import EXAMPLE_DIR +from h2integrate.core.h2integrate_model import H2IntegrateModel +from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml + + +this_dir = EXAMPLE_DIR / "13_dispatch_for_electrolyzer" +tech_config = load_tech_yaml(this_dir / "tech_config.yaml") +plant_config = load_plant_yaml(this_dir / "plant_config.yaml") +driver_config = load_driver_yaml(this_dir / "driver_config.yaml") + +# modify all the output folders to be full filepaths +driver_config["general"]["folder_output"] = str(Path(this_dir / "outputs").absolute()) +tech_config["technologies"]["distributed_wind_plant"]["model_inputs"]["performance_parameters"][ + "cache_dir" +] = this_dir / "cache" + +input_config = { + "plant_config": plant_config, + "technology_config": tech_config, + "driver_config": driver_config, +} + +h2i = H2IntegrateModel(input_config) + +h2i.setup() + +electrolyzer_capacity_MW = 60 +h2i.prob.set_val("battery.electricity_demand", 0.1 * electrolyzer_capacity_MW, units="MW") +h2i.prob.set_val("elec_load_demand.electricity_demand", electrolyzer_capacity_MW, units="MW") + +h2i.run() + +h2i.post_process(print_results=False, summarize_sql=True) + +lcoe_gen = h2i.prob.get_val("finance_subgroup_generated_electricity.LCOE", units="USD/(MW*h)")[0] +lcoe_sys = h2i.prob.get_val("finance_subgroup_electrical_system.LCOE", units="USD/(MW*h)")[0] +lcoe_load = h2i.prob.get_val("finance_subgroup_electrical_load.LCOE", units="USD/(MW*h)")[0] +lcoh = h2i.prob.get_val("finance_subgroup_hydrogen.LCOH", units="USD/kg")[0] diff --git a/examples/13_dispatch_for_electrolyzer/tech_config.yaml b/examples/13_dispatch_for_electrolyzer/tech_config.yaml new file mode 100644 index 000000000..fea5f8cec --- /dev/null +++ b/examples/13_dispatch_for_electrolyzer/tech_config.yaml @@ -0,0 +1,143 @@ +name: technology_config +description: This hybrid plant produces hydrogen +technologies: + distributed_wind_plant: + performance_model: + model: FlorisWindPlantPerformanceModel + cost_model: + model: GenericConverterCostModel + model_inputs: + performance_parameters: + num_turbines: 100 # number of turbines in the farm + hub_height: 65.0 # turbine hub-height + operational_losses: 12.83 # percentage of non-wake losses + floris_wake_config: !include "floris_v4_default_template.yaml" #floris wake model file + floris_turbine_config: !include "floris_turbine_Vestas_660kW.yaml" #turbine model file formatted for floris + resource_data_averaging_method: weighted_average #"weighted_average", "average" or "nearest" + operation_model: cosine-loss # turbine operation model + default_turbulence_intensity: 0.06 + enable_caching: true # whether to use cached results + cache_dir: cache # directory to save or load cached data + layout: + layout_mode: basicgrid + layout_options: + row_D_spacing: 5.0 + turbine_D_spacing: 5.0 + rotation_angle_deg: 0.0 + row_phase_offset: 0.0 + layout_shape: square + cost_parameters: + commodity: electricity + commodity_rate_units: kW + commodity_amount_units: kW*h + unit_capex: 2286 # USD/kW distributed wind capex for 2030 + unit_opex: 38 # USD/kW/year + unit_varopex: 0.0 # USD/kW*h/year + cost_year: 2022 + financial_parameters: + capital_items: + depr_period: 7 # 7 year depreciation period + replacement_cost_percent: 0.15 # cost of stack replacement is 15% of CapEx + distributed_pv: + performance_model: + model: PYSAMSolarPlantPerformanceModel + cost_model: + model: ATBResComPVCostModel + model_inputs: + shared_parameters: + pv_capacity_kWdc: 50000 # 50 MWdc + performance_parameters: + dc_ac_ratio: 1.23 # pv inverter capacity is equal to 50 MWdc/1.22 + create_model_from: new + tilt_angle_func: none + tilt: 20.0 + pysam_options: + SystemDesign: + array_type: 0 # fixed open rack + inv_eff: 98.0 # inverter losses + bifaciality: 0.0 + module_type: 0 # standard, 19% efficiency + losses: 10.0 # DC losses + azimuth: 0 # North facing + gcr: 0.2 # groud coverage ratio + SolarResource: + use_wf_albedo: false # don't use albedo from weather file + albedo_default: 0.3 + Lifetime: + dc_degradation: [0] + cost_parameters: + capex_per_kWdc: 1492 #$/kWdc + opex_per_kWdc_per_year: 16.0 # $/kWDC/year + cost_year: 2022 + gen_combiner: # combiner for generation, pv + wind + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + shared_parameters: + commodity: electricity + commodity_rate_units: kW + battery: + performance_model: + model: StoragePerformanceModel + cost_model: + model: GenericStorageCostModel + control_strategy: + model: DemandOpenLoopStorageController + model_inputs: + shared_parameters: + commodity: electricity + commodity_rate_units: MW + commodity_amount_units: MW*h + max_charge_rate: 12.0 # equal to 2x electrolyzer turndown ratio, 12 MW + max_capacity: 48.0 # 4-hour battery, 48 MW + init_soc_fraction: 0.0 + charge_equals_discharge: true + charge_efficiency: 1.0 + discharge_efficiency: 1.0 + min_soc_fraction: 0.0 + max_soc_fraction: 1.0 + demand_profile: 6.0 # equal to electrolyzer turndown ratio (6 MW) + cost_parameters: + capacity_capex: 173000 # USD/MW*h, 173 USD/kW*h + charge_capex: 750000 # USD/MW (multiplied by charge rate), 750 USD/kW + opex_fraction: 0.025 # 2.5 % of total CapEx + cost_year: 2022 + elec_combiner: # combiner for battery + generation + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + shared_parameters: + commodity: electricity + commodity_rate_units: kW + elec_load_demand: # load demand component for electrolyzer + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: MW + demand_profile: 60 # Equal to electrolyzer capacity + electrolyzer: + performance_model: + model: ECOElectrolyzerPerformanceModel + cost_model: + model: CustomElectrolyzerCostModel + model_inputs: + performance_parameters: + location: onshore + size_mode: normal + n_clusters: 6 # number of 10 MW clusters + cluster_rating_MW: 10 # 10 MW clusters + eol_eff_percent_loss: 10 # eol defined as x% change in efficiency from bol + uptime_hours_until_eol: 80000. # number of 'on' hours until electrolyzer reaches eol + include_degradation_penalty: true # include degradation + turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW + electrolyzer_capex: 1000 # only used for electrolyzer performance + cost_parameters: + capex_USD_per_kW: 1000.0 + fixed_om_USD_per_kW_per_year: 12.8 + cost_year: 2022 + financial_parameters: + capital_items: + depr_period: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + replacement_cost_percent: 0.15 # percent of capex - H2A default case diff --git a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml index d0ea32177..60df6a0d6 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/plant_config.yaml @@ -16,6 +16,11 @@ sites: technology_interconnections: - [wind, electrolyzer, electricity, cable] - [electrolyzer, h2_storage, hydrogen, pipe] + # combine the h2 from the electrolyzer and the h2_storage + - [electrolyzer, h2_combiner, hydrogen, pipe] + - [h2_storage, h2_combiner, hydrogen, pipe] + # subtract hydrogen production from hydrogen demand + - [h2_combiner, h2_load_demand, hydrogen, pipe] resource_to_tech_connections: # connect the wind resource to the wind technology - [site.wind_resource, wind, wind_resource_data] @@ -31,7 +36,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -57,5 +62,9 @@ finance_parameters: technologies: [wind, electrolyzer, h2_storage] dispatched_hydrogen: commodity: hydrogen - commodity_stream: h2_storage # use only dispatched hydrogen from h2_storage controller in finance calc + commodity_stream: h2_load_demand # use only dispatched hydrogen from h2_storage controller in finance calc technologies: [wind, electrolyzer, h2_storage] + oxygen: + commodity: oxygen + commodity_stream: electrolyzer + technologies: [wind, electrolyzer] diff --git a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml index 0771dbac0..3672d7119 100644 --- a/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml +++ b/examples/14_wind_hydrogen_dispatch/inputs/tech_config.yaml @@ -51,7 +51,7 @@ technologies: replacement_cost_percent: 0.15 # percent of capex - H2A default case h2_storage: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: LinedRockCavernStorageCostModel control_strategy: @@ -62,11 +62,25 @@ technologies: commodity_rate_units: kg/h max_charge_rate: 12446.00729773 # kg/time step max_capacity: 2987042.0 # kg - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.25 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.25 # fraction (0-1) max_discharge_rate: 12446.00729773 # kg/time step charge_efficiency: 1.0 # fraction (0-1) discharge_efficiency: 1.0 # fraction (0-1) demand_profile: 5000 # constant demand of 5000 kg per hour (see commodity_rate_units) + h2_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h + h2_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: hydrogen + commodity_rate_units: kg/h + demand_profile: 5000 # 5000 kg/h diff --git a/examples/15_wind_solar_electrolyzer/plant_config.yaml b/examples/15_wind_solar_electrolyzer/plant_config.yaml index 3ed82e0e0..cc45921b4 100644 --- a/examples/15_wind_solar_electrolyzer/plant_config.yaml +++ b/examples/15_wind_solar_electrolyzer/plant_config.yaml @@ -47,7 +47,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/16_natural_gas/plant_config.yaml b/examples/16_natural_gas/plant_config.yaml index e01c71feb..aa30629f7 100644 --- a/examples/16_natural_gas/plant_config.yaml +++ b/examples/16_natural_gas/plant_config.yaml @@ -18,13 +18,18 @@ sites: # and not connected to additional technologies. # hence the empty array. technology_interconnections: + # connect solar to battery - [solar, battery, electricity, cable] - # connect solar to battery + # combine the battery output with the solar generation + - [battery, elec_combiner, electricity, cable] + - [solar, elec_combiner, electricity, cable] + # subtract the combined generation from the demand profile + - [elec_combiner, electrical_load_demand, electricity, cable] + # connect the remaining electricity demand to the NG plant + - [electrical_load_demand, natural_gas_plant, [unmet_electricity_demand_out, electricity_demand]] + # connect NG feedstock to NG plant - [ng_feedstock, natural_gas_plant, natural_gas, pipe] - # connect NG feedstock to NG plant - - [battery, natural_gas_plant, [electricity_unmet_demand, electricity_demand]] - # connect electricity demand to NG feedstock - # connect natural gas and battery to combiner + # connect natural gas and solar to finance combiner - [solar, fin_combiner, electricity, cable] - [natural_gas_plant, fin_combiner, electricity, cable] resource_to_tech_connections: diff --git a/examples/16_natural_gas/tech_config.yaml b/examples/16_natural_gas/tech_config.yaml index 3c0b9079a..99361db80 100644 --- a/examples/16_natural_gas/tech_config.yaml +++ b/examples/16_natural_gas/tech_config.yaml @@ -31,7 +31,7 @@ technologies: cost_year: 2024 battery: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: ATBBatteryCostModel control_strategy: @@ -42,10 +42,9 @@ technologies: commodity_rate_units: kW max_charge_rate: 25000.0 # kW/time step, 25 MW max_capacity: 200000.0 # kWh, 200 MWh - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.1 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.1 # fraction (0-1) max_discharge_rate: 25000.0 # kW/time step charge_efficiency: 1.0 # fraction (0-1) discharge_efficiency: 1.0 # fraction (0-1) @@ -55,6 +54,21 @@ technologies: energy_capex: 300 # $/kWh power_capex: 100 # $/kW opex_fraction: 0.05 # percent of capex + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + electrical_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 100000 # kW, 100 MW ng_feedstock: performance_model: model: FeedstockPerformanceModel @@ -68,9 +82,10 @@ technologies: rated_capacity: 750. # MMBtu/h cost_parameters: cost_year: 2023 - price: 4.2 - annual_cost: 0. - start_up_cost: 100000. + commodity_amount_units: MMBtu + price: 4.2 # USD/commodity_amount_units + annual_cost: 0. # USD + start_up_cost: 100000. # USD natural_gas_plant: performance_model: model: NaturalGasPerformanceModel diff --git a/examples/17_splitter_wind_doc_h2/plant_config.yaml b/examples/17_splitter_wind_doc_h2/plant_config.yaml index 9059c57e4..187c6cd12 100644 --- a/examples/17_splitter_wind_doc_h2/plant_config.yaml +++ b/examples/17_splitter_wind_doc_h2/plant_config.yaml @@ -32,7 +32,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for real analysis discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ diff --git a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml index 64e0848c7..36f8084d5 100644 --- a/examples/18_pyomo_heuristic_dispatch/plant_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/plant_config.yaml @@ -17,6 +17,11 @@ plant: # this will naturally grow as we mature the interconnected tech technology_interconnections: - [wind, battery, electricity, cable] + # combine the electricity from wind and the battery + - [wind, elec_combiner, electricity, cable] + - [battery, elec_combiner, electricity, cable] + # subtract electricity production from electricity demand + - [elec_combiner, electrical_load_demand, electricity, cable] # array of arrays containing left-to-right technology, technology doing the dispatching # in this case, battery is connected to battery because there are controls rules for # the battery and battery is controlling the dispatching @@ -37,7 +42,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -59,5 +64,5 @@ finance_parameters: technologies: [wind, battery] dispatched_electricity: commodity: electricity - commodity_stream: battery # use only dispatched electricity from battery in finance calc + commodity_stream: electrical_load_demand # use only dispatched electricity from battery in finance calc technologies: [wind, battery] diff --git a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml index 3830c01f7..45b6c1f89 100644 --- a/examples/18_pyomo_heuristic_dispatch/tech_config.yaml +++ b/examples/18_pyomo_heuristic_dispatch/tech_config.yaml @@ -37,7 +37,7 @@ technologies: dispatch_rule_set: model: PyomoRuleStorageBaseclass control_strategy: - model: HeuristicLoadFollowingController + model: HeuristicLoadFollowingStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: @@ -48,16 +48,32 @@ technologies: commodity_rate_units: kW max_charge_rate: 100000 max_capacity: 500000 - n_control_window: 24 - init_charge_fraction: 0.5 - max_charge_fraction: 0.9 - min_charge_fraction: 0.1 - system_commodity_interface_limit: 1e12 + init_soc_fraction: 0.5 + max_soc_fraction: 0.9 + min_soc_fraction: 0.1 performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 40000 # 40 MW cost_parameters: cost_year: 2022 energy_capex: 310 # $/kWh from 2024 ATB year 2025 power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB + control_parameters: + n_control_window: 24 + system_commodity_interface_limit: 1e12 + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + electrical_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 50000 # 50 MW diff --git a/examples/19_simple_dispatch/plant_config.yaml b/examples/19_simple_dispatch/plant_config.yaml index f43314101..aafa25034 100644 --- a/examples/19_simple_dispatch/plant_config.yaml +++ b/examples/19_simple_dispatch/plant_config.yaml @@ -17,6 +17,11 @@ plant: # this will naturally grow as we mature the interconnected tech technology_interconnections: - [wind, battery, electricity, cable] + # combine the electricity from wind and the battery + - [wind, elec_combiner, electricity, cable] + - [battery, elec_combiner, electricity, cable] + # subtract electricity production from electricity demand + - [elec_combiner, electrical_load_demand, electricity, cable] # etc resource_to_tech_connections: # connect the wind resource to the wind technology @@ -33,7 +38,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -56,7 +61,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -88,7 +93,7 @@ finance_parameters: technologies: [wind] battery: commodity: electricity - commodity_stream: battery # use electricity from battery in finance calc + commodity_stream: electrical_load_demand # use electricity from battery in finance calc commodity_desc: battery_included finance_groups: [profast] technologies: [wind, battery] diff --git a/examples/19_simple_dispatch/run_wind_battery.py b/examples/19_simple_dispatch/run_wind_battery.py index 7fff85678..8e2ecdaf6 100644 --- a/examples/19_simple_dispatch/run_wind_battery.py +++ b/examples/19_simple_dispatch/run_wind_battery.py @@ -42,14 +42,14 @@ ) ax[1].plot( range(start_hour, end_hour), - model.prob.get_val("battery.electricity_unused_commodity", units="MW")[start_hour:end_hour], + model.prob.get_val("battery.unused_electricity_out", units="MW")[start_hour:end_hour], linestyle=":", label="Unused Electricity commodity (MW)", linewidth=2, ) ax[1].plot( range(start_hour, end_hour), - model.prob.get_val("battery.electricity_unmet_demand", units="MW")[start_hour:end_hour], + model.prob.get_val("battery.unmet_electricity_demand_out", units="MW")[start_hour:end_hour], linestyle=":", label="Electricity Unmet Demand (MW)", linewidth=2, diff --git a/examples/19_simple_dispatch/tech_config.yaml b/examples/19_simple_dispatch/tech_config.yaml index b5dae53dd..321e710dc 100644 --- a/examples/19_simple_dispatch/tech_config.yaml +++ b/examples/19_simple_dispatch/tech_config.yaml @@ -30,7 +30,7 @@ technologies: cost_year: 2019 battery: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: ATBBatteryCostModel control_strategy: @@ -41,10 +41,9 @@ technologies: commodity_rate_units: kW max_charge_rate: 5000.0 # kW max_capacity: 30000.0 # kWh - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.25 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.25 # fraction (0-1) max_discharge_rate: 5000.0 # kW charge_efficiency: 1.0 # fraction (0-1) discharge_efficiency: 1.0 # fraction (0-1) @@ -54,3 +53,18 @@ technologies: energy_capex: 300 # $/kWh power_capex: 100 # $/kW opex_fraction: 0.02 # percent of capex + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + electrical_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 5000 # kW diff --git a/examples/21_iron_mn_to_il/driver_config.yaml b/examples/21_iron_examples/iron_dri/driver_config.yaml similarity index 100% rename from examples/21_iron_mn_to_il/driver_config.yaml rename to examples/21_iron_examples/iron_dri/driver_config.yaml diff --git a/examples/21_iron_mn_to_il/plant_config.yaml b/examples/21_iron_examples/iron_dri/plant_config.yaml similarity index 97% rename from examples/21_iron_mn_to_il/plant_config.yaml rename to examples/21_iron_examples/iron_dri/plant_config.yaml index 36e3d356a..83e240172 100644 --- a/examples/21_iron_mn_to_il/plant_config.yaml +++ b/examples/21_iron_examples/iron_dri/plant_config.yaml @@ -40,7 +40,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/21_iron_mn_to_il/run_iron.py b/examples/21_iron_examples/iron_dri/run_iron.py similarity index 98% rename from examples/21_iron_mn_to_il/run_iron.py rename to examples/21_iron_examples/iron_dri/run_iron.py index c3388b506..93a73f40b 100644 --- a/examples/21_iron_mn_to_il/run_iron.py +++ b/examples/21_iron_examples/iron_dri/run_iron.py @@ -21,7 +21,7 @@ # Create H2Integrate model -model = H2IntegrateModel("21_iron.yaml") +model = H2IntegrateModel("single_site_iron.yaml") # Load cases case_file = Path("test_inputs.csv") diff --git a/examples/21_iron_mn_to_il/21_iron.yaml b/examples/21_iron_examples/iron_dri/single_site_iron.yaml similarity index 100% rename from examples/21_iron_mn_to_il/21_iron.yaml rename to examples/21_iron_examples/iron_dri/single_site_iron.yaml diff --git a/examples/21_iron_mn_to_il/tech_config.yaml b/examples/21_iron_examples/iron_dri/tech_config.yaml similarity index 100% rename from examples/21_iron_mn_to_il/tech_config.yaml rename to examples/21_iron_examples/iron_dri/tech_config.yaml diff --git a/examples/21_iron_mn_to_il/test_inputs.csv b/examples/21_iron_examples/iron_dri/test_inputs.csv similarity index 100% rename from examples/21_iron_mn_to_il/test_inputs.csv rename to examples/21_iron_examples/iron_dri/test_inputs.csv diff --git a/examples/31_iron_electrowinning/driver_config.yaml b/examples/21_iron_examples/iron_electrowinning/driver_config.yaml similarity index 100% rename from examples/31_iron_electrowinning/driver_config.yaml rename to examples/21_iron_examples/iron_electrowinning/driver_config.yaml diff --git a/examples/31_iron_electrowinning/31_iron_electrowinning.yaml b/examples/21_iron_examples/iron_electrowinning/iron_electrowinning.yaml similarity index 100% rename from examples/31_iron_electrowinning/31_iron_electrowinning.yaml rename to examples/21_iron_examples/iron_electrowinning/iron_electrowinning.yaml diff --git a/examples/31_iron_electrowinning/plant_config.yaml b/examples/21_iron_examples/iron_electrowinning/plant_config.yaml similarity index 96% rename from examples/31_iron_electrowinning/plant_config.yaml rename to examples/21_iron_examples/iron_electrowinning/plant_config.yaml index 274070b36..fe1ed3001 100644 --- a/examples/31_iron_electrowinning/plant_config.yaml +++ b/examples/21_iron_examples/iron_electrowinning/plant_config.yaml @@ -30,7 +30,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/31_iron_electrowinning/run_iron.py b/examples/21_iron_examples/iron_electrowinning/run_iron.py similarity index 97% rename from examples/31_iron_electrowinning/run_iron.py rename to examples/21_iron_examples/iron_electrowinning/run_iron.py index 0896d334c..bd4a24c7f 100644 --- a/examples/31_iron_electrowinning/run_iron.py +++ b/examples/21_iron_examples/iron_electrowinning/run_iron.py @@ -16,7 +16,7 @@ # Create H2Integrate model -model = H2IntegrateModel("31_iron_electrowinning.yaml") +model = H2IntegrateModel("iron_electrowinning.yaml") # Define the electrowinning types as a list electrolysis_types = ["ahe", "mse", "moe"] diff --git a/examples/31_iron_electrowinning/tech_config.yaml b/examples/21_iron_examples/iron_electrowinning/tech_config.yaml similarity index 100% rename from examples/31_iron_electrowinning/tech_config.yaml rename to examples/21_iron_examples/iron_electrowinning/tech_config.yaml diff --git a/examples/28_iron_map/driver_config.yaml b/examples/21_iron_examples/iron_mapping/driver_config.yaml similarity index 77% rename from examples/28_iron_map/driver_config.yaml rename to examples/21_iron_examples/iron_mapping/driver_config.yaml index 1cf9ebc1f..f40426217 100644 --- a/examples/28_iron_map/driver_config.yaml +++ b/examples/21_iron_examples/iron_mapping/driver_config.yaml @@ -1,7 +1,7 @@ name: driver_config description: This analysis runs a hybrid plant to match the first example in H2Integrate general: - folder_output: outputs + folder_output: ex_out driver: design_of_experiments: flag: true @@ -21,22 +21,23 @@ design_variables: units: deg lower: -180.0 upper: 180.0 - iron: - LCOE: + dri_grid_feedstock: + price: flag: true units: USD/MW/h lower: 0 upper: 100 - LCOH: + hydrogen_feedstock: + price: flag: true units: USD/kg lower: 0 upper: 10 objective: - name: iron.LCOI + name: finance_subgroup_pig_iron.LCOP recorder: file: cases.sql overwrite_recorder: true flag: true - includes: [site.latitude, site.longitude, iron.LCOI] + includes: [site.latitude, site.longitude, finance_subgroup_pig_iron.LCOP] excludes: ['*'] diff --git a/examples/21_iron_examples/iron_mapping/ex_out/cases.csv b/examples/21_iron_examples/iron_mapping/ex_out/cases.csv new file mode 100644 index 000000000..c2e7a20ae --- /dev/null +++ b/examples/21_iron_examples/iron_mapping/ex_out/cases.csv @@ -0,0 +1,544 @@ +,site.latitude (deg),site.longitude (deg),dri_grid_feedstock.price (USD/MW/h),hydrogen_feedstock.price (USD/kg),finance_subgroup_pig_iron.LCOP (USD/kg) +0,39.179,-94.644,58.24602573,7.819127689,0.7850112572903336 +1,40.639,-94.179,51.41859144,6.486845574,0.7039548783993137 +2,42.135,-74.231,54.87195632,9.087358988,0.8611145933067907 +3,39.836,-86.466,54.08137179,7.389792328,0.7586802397697303 +4,44.836,-72.268,79.67190898,11.19138114,0.9906233427596457 +5,43.297,-83.034,54.46538588,7.030717938,0.7370719861716352 +6,41.522,-97.383,48.48607904,6.892715924,0.7281119355480926 +7,43.745,-75.672,50.22448696,7.602515656,0.7710931829912547 +8,40.915,-93.153,50.25523396,6.52284299,0.7060007884990818 +9,45.619,-97.165,48.01464159,6.479866149,0.7031699430936669 +10,38.376,-93.262,57.32420626,8.084316033,0.8009013974875046 +11,38.785,-86.901,58.74660238,8.268727655,0.8121721113901094 +12,38.792,-95.074,48.66910731,6.576432804,0.709062155450073 +13,40.062,-96.921,44.62706297,6.200145885,0.6859426534463887 +14,42.581,-74.531,50.90152862,7.3545067,0.7562126387305075 +15,38.181,-90.2,61.38834601,8.610442044,0.8330573698615393 +16,40.223,-92.752,53.7541996,6.87663279,0.7277057981002071 +17,42.086,-89.986,53.37882952,6.524971783,0.7064632788366598 +18,40.62,-89.979,55.65806989,6.908352618,0.7298219148197476 +19,40.636,-76.972,72.45617197,10.64305592,0.9567917979938928 +20,42.951,-86.133,57.35833333,7.43043708,0.7614813424707001 +21,39.202,-87.27,58.58810594,8.045451544,0.7986933809867535 +22,38.203,-77.393,62.42842963,9.521704146,0.8881104955773061 +23,43.868,-95.759,47.11402471,6.460728066,0.7019197268679676 +24,42.812,-85.552,56.82341805,7.716463431,0.7786692373106268 +25,38.52,-87.36,58.5870948,8.369258517,0.8182162605983876 +26,42.11,-97.1,45.42147075,6.29428234,0.6917033141021529 +27,38.254,-89.635,56.84951183,7.714561563,0.7785573611162163 +28,44.643,-83.831,61.33378629,8.702613374,0.8386087323173295 +29,44.928,-94.048,52.33871303,7.085928629,0.7401732551675103 +30,44.638,-97.764,48.19730942,7.497728876,0.7645585190222363 +31,45.4,-93.094,56.28973232,7.594526158,0.771260298485007 +32,42.872,-78.108,52.58970512,8.079507383,0.8001050093292261 +33,42.664,-77.255,55.44160432,8.457847794,0.8232210069431882 +34,38.894,-83.34,60.22555006,9.13484917,0.864550565054184 +35,41.968,-75.805,59.60083702,8.59590163,0.8319894828546469 +36,39.168,-93.795,53.07708032,7.103576468,0.7413162651611664 +37,44.997,-89.535,56.21071969,7.077430089,0.7400750616962403 +38,42.003,-97.985,46.90393923,6.553646022,0.7074994678501777 +39,40.301,-83.642,52.54980459,7.387797164,0.7583961105780014 +40,42.211,-96.508,47.72590301,6.594923107,0.710076076224372 +41,41.913,-94.733,48.41150834,6.364914313,0.696281714801362 +42,40.119,-76.833,63.20207239,9.408568091,0.8813720493906766 +43,46.295,-97.814,50.4352344,6.861520616,0.726439613726291 +44,41.415,-84.014,57.72454279,7.748746212,0.7807120287164648 +45,40.169,-88.725,55.9963289,6.822567835,0.7246859586288446 +46,41.603,-93.416,50.76824359,6.498809353,0.7046066294238851 +47,44.258,-96.218,48.08888229,6.484302926,0.7034453872616688 +48,42.783,-75.227,58.89441507,8.518178578,0.8272278321191734 +49,43.47,-94.398,48.64393387,6.650122757,0.7135023812546356 +50,46.891,-96.389,52.22032516,7.525073042,0.766637509872637 +51,44.308,-85.91,58.17542757,6.947540066,0.7324538964072795 +52,42.469,-73.805,70.30200869,10.48294073,0.9469076864226738 +53,38.72,-77.532,67.57701181,10.59481219,0.9533611449704894 +54,46.819,-91.258,65.65937746,8.981078822,0.8558607087398052 +55,39.284,-88.681,54.93068491,7.231633641,0.7492353812862462 +56,40.095,-74.638,57.41269903,8.39533146,0.8196626230265494 +57,39.765,-83.169,60.6389907,8.920491025,0.8516706990895393 +58,43.478,-90.607,54.7934753,6.656543983,0.7145473663310236 +59,40.846,-95.916,49.00242728,6.357131627,0.6958756931639928 +60,41.48,-92.247,51.31129381,6.47246505,0.7030763690860184 +61,46.557,-92.397,65.61020315,8.920584641,0.8522081299272586 +62,42.796,-96.513,46.88752754,6.663217889,0.7141040252540997 +63,41.196,-84.939,56.18609974,7.304981003,0.753791940209127 +64,41.301,-89.914,52.27357502,6.557154344,0.7082853989516859 +65,38.735,-89.447,56.67704606,7.716713398,0.7786686504537355 +66,44.564,-90.973,54.16784025,6.995728955,0.7349305990793527 +67,43.399,-84.233,56.52538901,7.342584936,0.7560954534612525 +68,40.403,-92.166,51.16250247,6.74221526,0.7193242468559962 +69,38.862,-93.101,52.61488688,6.996040576,0.7347832629480767 +70,41.717,-88.398,58.02462706,7.10284254,0.7418012700736446 +71,44.056,-72.423,57.60315341,9.361197001,0.8779170147170843 +72,45.586,-87.582,57.64037358,7.851745274,0.786913049961754 +73,44.721,-93.281,54.55981386,7.286968665,0.7525319703228306 +74,40.227,-85.106,55.34456603,7.546306027,0.7682519002330839 +75,41.763,-76.475,62.14805368,8.711817509,0.839250773323382 +76,42.45,-92.039,50.89051651,6.617038851,0.7117480087285268 +77,44.037,-76.354,52.30808721,7.855595437,0.7865747724286725 +78,46.887,-94.784,55.19318723,7.119884185,0.7425258576706176 +79,41.138,-95.478,50.99325709,6.431124144,0.7005498195060789 +80,39.732,-78.404,69.22754364,11.19056578,0.9894569157779314 +81,39.719,-84.904,56.02114788,8.079337839,0.8004618596084606 +82,44.144,-86.399,54.58691417,6.837009571,0.7254059109546818 +83,42.875,-88.104,54.75903184,7.161985723,0.7450178029148113 +84,40.064,-81.224,59.84133196,8.827448556,0.8459756493321012 +85,43.156,-73.707,80.94288555,11.47455377,1.007832362938527 +86,43.033,-74.216,74.01588852,10.24146903,0.9327461470761391 +87,41.233,-96.938,44.8074436,6.303142878,0.6921718496920193 +88,38.794,-95.637,46.52550588,6.614472671,0.7111263492790975 +89,41.927,-73.545,53.6741379,8.075798189,0.7999973796528768 +90,39.255,-82.984,63.20230992,9.277783207,0.8734867854004285 +91,39.637,-92.782,54.3036301,6.871183342,0.7274360140248894 +92,42.26,-72.505,72.50926875,10.75063221,0.9632834735038391 +93,38.14,-78.404,77.87765954,11.19263996,0.9905073029878814 +94,43.142,-77.107,59.42168394,9.258997754,0.8719497461534845 +95,43.693,-91.197,60.1929438,7.901418862,0.7901810292755851 +96,43.741,-93.021,49.05224406,6.438050174,0.700759767698814 +97,45.056,-91.087,57.28220041,7.782807024,0.7827183062789467 +98,45.429,-90.586,60.36112161,7.975822338,0.794684958251147 +99,40.462,-76.435,72.20604536,11.18261167,0.9892959660215304 +100,39.384,-78.788,69.72767851,10.89852,0.9719023766224579 +101,39.28,-75.199,56.46399806,8.329471452,0.8155903022269494 +102,43.282,-96.668,50.70693151,7.166731574,0.7448704738576786 +103,38.31,-81.476,65.7838273,10.95258698,0.974740299535596 +104,42.308,-75.389,70.43238095,10.00672665,0.9182097073301398 +105,38.09,-93.692,55.16553143,7.889404346,0.7889188509955136 +106,45.655,-91.509,57.3754534,7.688712794,0.7770551473741726 +107,45.214,-93.571,53.92479583,7.289779539,0.7526335137772536 +108,45.13,-97.311,49.28337615,6.730451436,0.7184139655659812 +109,46.687,-94.308,56.89453535,7.306322654,0.7539486147336121 +110,41.132,-94.603,47.77765227,6.048935135,0.6771628752538034 +111,39.576,-75.832,62.4785284,9.366275257,0.8787447277024857 +112,38.181,-76.546,58.79155946,9.623913824,0.8938838794250723 +113,43.921,-89.498,58.71964476,7.142340337,0.7442570216888924 +114,41.044,-81.142,59.94867282,8.400766071,0.8202615681393521 +115,40.689,-84.735,57.02486778,7.433518345,0.7616314463899181 +116,46.452,-87.296,58.31682922,8.019475965,0.7970982406122871 +117,39.151,-84.003,58.97234189,8.56742661,0.8302054332475483 +118,42.183,-79.815,54.61601031,8.138823811,0.8038980790234161 +119,38.229,-79.09,74.59578716,10.75220945,0.9636017701094721 +120,41.2,-81.696,60.48322232,8.863916105,0.8482430178667362 +121,42.78,-72.612,63.22770852,9.526568209,0.8884892613562916 +122,41.398,-80.761,66.17442447,9.515075117,0.8881115388772767 +123,40.833,-79.277,64.71334103,9.426644773,0.8826235949458531 +124,40.979,-76.57,66.7885506,9.569792467,0.8914762553862173 +125,39.553,-88.223,55.60630495,7.02909285,0.7370960540482265 +126,42.498,-94.721,47.28725229,6.235183862,0.6883397340592734 +127,42.955,-92.758,52.48840608,6.984380936,0.7340667492369173 +128,43.395,-72.683,64.51809282,10.60738288,0.9537918353282444 +129,44.34,-88.065,51.31168453,6.54155783,0.7072421565638893 +130,40.009,-89.462,55.25405478,6.912022481,0.7299999596091027 +131,39.417,-86.099,55.95759231,7.854978823,0.7869279947667545 +132,38.024,-87.285,59.53868666,8.559414763,0.8297829662448206 +133,41.321,-76.165,56.91217926,8.245658412,0.8105849852022322 +134,41.428,-95.036,49.12946551,6.172112024,0.6847340707987057 +135,39.597,-81.475,64.64281089,9.622144928,0.8944031561788471 +136,41.496,-86.362,56.17204566,7.024954408,0.7369070579740638 +137,42.894,-90.659,53.16976553,6.681489673,0.715877699800066 +138,42.209,-95.172,49.93455623,6.639947411,0.7130269507479543 +139,40.386,-79.688,63.86411489,9.17986164,0.8676536883118218 +140,41.225,-97.815,48.29404304,6.887453274,0.727774096858826 +141,43.101,-88.679,53.03067508,6.615076123,0.7118586114493456 +142,46.066,-92.269,61.42938904,8.143522162,0.8049102012304439 +143,45.91,-90.383,57.83685565,7.028809928,0.7373176052605699 +144,43.227,-75.538,75.42836767,11.27986223,0.9955041042695535 +145,39.397,-91.23,52.56550712,6.798847242,0.7228887893273872 +146,46.698,-85.008,52.72711292,8.005433585,0.7956536467902895 +147,45.715,-94.651,51.03142157,6.844917182,0.7255023346260833 +148,41.506,-82.813,57.09718467,8.717754935,0.839068445283003 +149,38.304,-95.361,49.92079696,6.722028795,0.7179743341809952 +150,41.931,-91.037,51.68681366,6.799257548,0.7228195308621941 +151,40.544,-84.178,56.15485391,7.723515068,0.779022876545678 +152,45.835,-91.022,57.09875181,7.290884745,0.7530396771670822 +153,39.502,-74.69,56.79142229,7.973092397,0.7941385023155882 +154,43.939,-72.942,53.32671274,7.618989204,0.772418262090274 +155,40.148,-75.65,57.84709107,8.235350996,0.8100635404256835 +156,38.306,-95.919,50.14571571,6.834479039,0.7247782507398759 +157,41.198,-92.702,53.31606401,6.841342284,0.7255311922077989 +158,39.353,-93.221,54.7802893,7.195586393,0.7470459303320816 +159,44.837,-72.907,71.3194361,10.52109026,0.9493166374503909 +160,43.11,-72.172,55.36600246,8.888975195,0.8492064764779048 +161,46.146,-91.63,58.13416581,7.454519634,0.7630163224256317 +162,39.967,-96.347,44.02907256,6.097882312,0.6797130035422609 +163,39.274,-97.619,47.07840636,6.545498265,0.7070268861465581 +164,43.562,-86.491,55.70970331,7.118851599,0.7425188543203365 +165,41.271,-75.133,53.47236237,8.024438305,0.7968792021342859 +166,43.286,-85.319,56.6952872,7.755424106,0.7810045498969145 +167,42.129,-88.793,54.14661409,6.501983191,0.7051593817643298 +168,44.621,-89.886,55.26646759,7.024110613,0.7367593112496204 +169,42.207,-90.569,52.58770358,6.642200034,0.7134465816971742 +170,46.499,-95.111,51.92864537,6.996419759,0.7347327152154418 +171,40.758,-87.057,56.8555571,7.130380178,0.7433365116920051 +172,39.281,-95.209,51.4771514,6.880614986,0.7277023097320758 +173,41.723,-95.473,46.69607968,5.867770467,0.666124385865993 +174,40.707,-92.583,49.05015761,6.560043716,0.7081147858300805 +175,40.374,-82.319,60.10662274,8.505918307,0.8266183089290982 +176,41.971,-92.366,50.3678127,6.495398503,0.7043581468924107 +177,40.181,-84.535,56.35996593,7.778285957,0.7823470674798108 +178,42.24,-76.323,69.36892469,11.02959371,0.9797667028885654 +179,40.26,-95.917,48.50109937,6.553833735,0.7076816387944875 +180,45.441,-88.545,55.8526599,6.659344602,0.7148295257785313 +181,41.361,-72.544,53.88391198,7.614258476,0.7721926421678088 +182,43.881,-74.532,58.37302204,7.950019899,0.7929166027975763 +183,46.375,-93.045,55.3918541,7.021579046,0.7366200908703626 +184,39.137,-85.003,61.51175413,8.628449283,0.8341562646653646 +185,38.756,-81.946,71.72107525,11.3668183,1.0003502834532285 +186,42.59,-72.069,58.97538041,8.411540943,0.8208070911028469 +187,43.181,-97.27,46.43618932,6.279777875,0.6909373578020452 +188,41.458,-91.515,56.16438589,7.233361486,0.7494715295616861 +189,39.967,-95.487,48.87948543,6.733395312,0.7185482524138901 +190,41.804,-77.515,51.04981458,7.993755204,0.7947701072205657 +191,45.497,-89.795,58.81570232,7.355118333,0.7570961198796715 +192,44.925,-74.149,55.02626753,8.029748129,0.7973655685519014 +193,43.338,-89.56,58.18240607,7.195248869,0.74738951565689 +194,43.168,-90.182,69.10016634,8.273254796,0.8135526159606656 +195,41.631,-76.967,53.70716911,8.213743211,0.8083179019399955 +196,46.413,-88.42,55.17809147,6.749316878,0.7201819784299868 +197,40.054,-97.782,45.34490702,6.438691013,0.7004018194676559 +198,43.846,-87.977,52.44338023,6.439618227,0.7012170695466171 +199,38.041,-80.831,54.10203166,9.966578887,0.9140422063719453 +200,40.263,-86.981,54.62289587,7.055294044,0.7385705794514015 +201,41.287,-77.37,61.45616063,9.527505315,0.8883562532440348 +202,42.585,-90.237,52.96659442,6.53500173,0.7070239068408732 +203,40.654,-90.846,51.16622167,6.625098277,0.712263421147955 +204,40.577,-81.398,62.90874286,9.207572255,0.8692222190216685 +205,46.361,-84.431,60.67660851,8.526102871,0.8278962509744834 +206,44.053,-97.747,49.14434791,7.507503977,0.7652491876919038 +207,40.592,-75.951,52.92795272,7.774752517,0.7817668956631634 +208,39.147,-79.282,50.22245241,7.648694799,0.7738772007716359 +209,38.644,-76.981,60.48685661,9.107058567,0.8629029652934552 +210,42.699,-95.913,47.57093505,6.650574037,0.7134148077286483 +211,40.276,-80.446,64.19364001,9.581061709,0.8918781152361044 +212,46.002,-94.17,55.75347218,7.786657918,0.7827869516303637 +213,43.769,-95.151,47.31078488,6.411883727,0.6989958493683212 +214,42.828,-83.285,54.80541876,7.452960164,0.7625662120288659 +215,42.306,-85.339,58.19811541,7.738857599,0.7801664835008522 +216,45.817,-96.539,52.01958202,7.034215719,0.7370212390937694 +217,40.981,-72.087,47.38085805,7.581109738,0.769498384106217 +218,43.651,-84.949,58.31734328,7.714266851,0.7786966109612123 +219,41.872,-78.847,60.19990006,8.838877034,0.8467030529339912 +220,46.915,-88.676,67.92832932,8.509743044,0.827685623216472 +221,39.504,-82.503,62.72090253,9.020945412,0.8579500092846389 +222,43.257,-93.195,49.55256088,6.489928825,0.7039411586648816 +223,44.479,-73.84,52.15043129,7.442068835,0.761625538900021 +224,42.826,-91.565,59.4002971,7.739153402,0.7803129193019369 +225,44.842,-88.309,55.48362361,6.686331923,0.7164171698212356 +226,38.398,-82.306,73.80592548,11.82468489,1.0281790241254374 +227,38.559,-92.694,54.07315132,7.553252188,0.7685346912444879 +228,38.871,-90.281,61.39907598,8.596880991,0.8322408939296524 +229,40.71,-78.279,54.11497403,8.092009937,0.8010219769070153 +230,39.423,-92.081,54.44194101,7.065610102,0.7391731984644833 +231,38.36,-87.942,57.52916359,8.269603142,0.8120946629690565 +232,41.354,-82.253,57.40390246,8.417149907,0.8209771610324113 +233,46.891,-95.586,53.30603106,7.280094675,0.7519834021741838 +234,38.215,-83.47,69.11204086,11.06497821,0.9818726274163571 +235,46.464,-89.532,58.93365468,8.421302272,0.8213911581511268 +236,40.153,-94.337,52.71937502,6.621701616,0.7122247752710275 +237,43.952,-93.927,50.3826438,7.098541588,0.740724469385263 +238,41.477,-79.7,67.09750132,9.147615079,0.8660553626020467 +239,44.209,-87.467,49.98534113,6.881160634,0.7275756242430781 +240,45.683,-92.608,58.93381438,8.131030545,0.8038900963493776 +241,38.781,-85.488,58.86544535,8.621361921,0.8334458689108928 +242,38.312,-91.028,56.97321059,7.501142865,0.7657031417236562 +243,38.394,-94.381,51.87572104,7.152864578,0.7441594333380126 +244,39.663,-79.437,69.29531546,10.89040654,0.9713669481851367 +245,39.766,-97.345,42.92463511,6.337007398,0.694012201127602 +246,41.456,-87.252,56.3357236,7.228621813,0.7492040934814435 +247,42.671,-84.974,53.8034778,7.360343995,0.7568750120501707 +248,43.626,-83.423,55.47191027,7.218286342,0.7484885418151543 +249,39.601,-76.697,59.55842892,8.826842537,0.8459088481558446 +250,40.484,-91.583,55.66062144,7.073695945,0.7397910767076156 +251,43.058,-78.818,60.18058271,8.416316597,0.8212239494504079 +252,39.774,-85.614,55.68656489,7.905718462,0.7899581991922577 +253,44.738,-85.058,55.53773575,6.899077298,0.7292498141886059 +254,42.697,-95.315,46.20799873,6.522319229,0.7055362641414376 +255,43.318,-91.681,60.29937338,7.941027819,0.7925805197969588 +256,45.329,-96.691,55.47259022,7.463930658,0.7632990151251836 +257,38.641,-83.814,60.57997087,9.123808323,0.8639228032317893 +258,43.979,-84.119,57.67525746,7.819865712,0.7849946973014246 +259,38.273,-85.287,59.41725858,9.221892556,0.8697121241255137 +260,45.957,-87.211,59.58845316,7.991027496,0.7955190536495106 +261,44.231,-93.15,50.27937146,6.880228229,0.7275508609968946 +262,42.148,-77.109,71.95034062,10.18256687,0.9289738565323558 +263,40.732,-81.948,69.01805433,9.905469252,0.911953395682229 +264,39.755,-77.816,74.23476878,10.95687645,0.9759029448056654 +265,42.672,-93.222,48.05948121,6.218271332,0.6874026506767649 +266,40.894,-83.673,55.49143481,7.454978894,0.7627613107454216 +267,44.221,-75.509,60.33804381,8.662683514,0.8360947612420409 +268,38.896,-84.476,66.60599183,9.370482382,0.8794399119122656 +269,46.089,-87.827,58.48668279,7.39889306,0.7597001918467802 +270,40.746,-83.117,58.80303859,7.980298909,0.7947881867784661 +271,41.954,-91.775,52.07035902,6.652528575,0.7140139686510614 +272,43.576,-96.216,51.52767309,6.976484606,0.733487890586659 +273,45.628,-86.63,51.75128766,6.987551269,0.7341790432068733 +274,46.495,-97.342,54.66545581,7.563494232,0.7692155658336841 +275,46.388,-93.84,54.3237267,7.151761193,0.7443547790044277 +276,45.12,-90.146,53.49276942,6.798092341,0.7229424670165495 +277,43.425,-85.904,59.15579168,7.506765541,0.7662756221114057 +278,39.278,-90.671,54.72249003,7.113773227,0.7421070634669771 +279,46.537,-85.52,55.19269964,7.177562644,0.7460033583253058 +280,40.892,-89.516,62.14196475,7.674201752,0.776690135837748 +281,44.93,-73.509,64.45930269,9.723615855,0.9005014164144892 +282,45.172,-91.701,60.65322488,8.038204684,0.798477365301218 +283,41.191,-87.728,57.38612252,7.06732817,0.7395917328515644 +284,42.979,-97.867,51.65670861,7.163428262,0.744772911091273 +285,44.775,-88.939,61.88150607,7.725587266,0.7797604119659725 +286,45.032,-94.666,50.28776304,6.973067478,0.7331492277639162 +287,43.964,-96.675,51.28051515,6.807031666,0.7232447853564952 +288,40.354,-94.908,49.11599127,6.19981146,0.6864026853306547 +289,44.544,-94.523,53.26763232,7.57847474,0.7699692417827259 +290,38.931,-91.97,53.94683017,7.008936062,0.7357032405420111 +291,41.453,-73.717,58.71329139,8.784280838,0.8432523087937187 +292,40.27,-85.678,56.73799632,7.585260303,0.7707495932846145 +293,43.489,-73.271,75.25988245,10.63583426,0.9566563111735362 +294,41.556,-81.317,60.49616966,8.819655179,0.8455758207070688 +295,39.044,-92.528,55.10917389,7.236472093,0.7495461950381527 +296,46.046,-88.944,55.45098741,6.78852232,0.7225749476431884 +297,41.013,-79.969,61.61168839,8.743873589,0.8411261235418891 +298,40.552,-95.483,48.39441865,6.082976563,0.6792812803753798 +299,39.52,-87.656,56.42082044,7.317487784,0.7545711085610092 +300,46.499,-96.705,51.79891083,7.207889097,0.7474687580212025 +301,41.56,-84.578,55.09470261,7.335645137,0.7555239936073608 +302,44.843,-95.755,48.88431645,6.722463769,0.7178896840133454 +303,43.462,-93.792,47.5891969,6.457598574,0.7017818740576727 +304,45.873,-89.439,58.84717603,7.206161134,0.7481185511110032 +305,39.944,-76.301,63.07089347,9.351633593,0.8779253188847445 +306,39.134,-80.863,67.01406677,9.966855156,0.9154401049977359 +307,38.582,-93.815,50.90998771,7.030631959,0.736686469978015 +308,42.32,-77.663,67.35604707,9.898108305,0.9113317988158754 +309,40.177,-91.172,53.1436774,6.748893793,0.7199388419692807 +310,42.503,-88.451,52.97420397,6.506614488,0.7053131957070897 +311,42.973,-93.659,46.48919889,6.291868391,0.6916719904596582 +312,39.938,-90.043,54.38222059,6.872969341,0.7275521026512097 +313,42.941,-92.158,51.24178957,6.592920484,0.7103314396280556 +314,40.973,-78.796,56.11705325,8.274484019,0.8122378831016441 +315,41.816,-86.757,53.74173861,7.171169685,0.74546269973643 +316,46.774,-93.505,56.85097302,7.246789267,0.7503545644972252 +317,42.291,-93.685,49.49236734,6.246625324,0.689265451541666 +318,40.63,-93.6,51.4682303,6.430565617,0.7005669541730378 +319,46.3,-94.637,54.87449895,7.381366827,0.7582570923569174 +320,45.891,-93.227,55.80173944,7.380083862,0.7582789296494251 +321,45.331,-95.91,48.2068868,6.449493262,0.7013592644113263 +322,45.66,-84.253,54.06470461,7.827605336,0.7850751027202115 +323,43.238,-74.916,62.24761325,9.346468714,0.8775258487917081 +324,40.734,-85.311,54.73235651,7.161730608,0.744999567961564 +325,41.714,-85.292,55.07525106,7.11713852,0.7423476998756815 +326,38.277,-84.162,58.07549708,8.77107947,0.8423881442875734 +327,38.827,-82.643,65.57798244,9.971839715,0.9155870117565512 +328,44.072,-90.861,60.94708597,7.83379302,0.7861844013066761 +329,41.864,-86.008,57.51742888,7.26196297,0.7513407111510932 +330,39.863,-82.138,65.34105223,9.278515235,0.87375970899581 +331,44.355,-95.604,51.49292498,7.032357099,0.7368528408825172 +332,43.922,-92.401,49.94659706,6.649830555,0.7136241138543264 +333,38.881,-94.228,49.43947066,6.58868584,0.7098833244066263 +334,42.211,-95.766,51.00851576,6.856165909,0.72617809318353 +335,39.919,-92.338,53.14670509,6.746377424,0.7197874487930742 +336,42.589,-94.122,48.67682821,6.458336743,0.7019427271923548 +337,41.118,-74.137,62.9772836,9.872371545,0.9093116663006396 +338,42.359,-89.512,52.49509336,6.383988351,0.6978685619309271 +339,46.684,-90.148,60.34653131,8.55614353,0.8296721546181148 +340,43.792,-85.536,60.83628514,7.761170573,0.7817939920288037 +341,41.782,-78.122,62.30137579,10.03281728,0.9189129653297865 +342,41.789,-75.26,61.67241257,9.203997056,0.8688744087118557 +343,46.012,-95.276,50.37045546,6.89678815,0.7285590362096196 +344,41.409,-79.123,64.95776393,9.117061684,0.8639843410647827 +345,40.236,-82.929,62.17173456,8.916182515,0.851574892693888 +346,43.405,-76.097,63.18180437,9.3451845,0.8775483543105161 +347,40.937,-97.37,45.35458674,6.249774929,0.6890127160399917 +348,43.863,-97.284,48.39360588,6.682949777,0.7154548113573005 +349,42.465,-78.833,63.26312393,9.273639324,0.8732434476488549 +350,38.64,-84.945,63.95457223,9.431226985,0.882818697991363 +351,44.806,-92.658,52.68417683,7.07849464,0.73976200006539 +352,43.201,-91.085,58.00906861,7.515163462,0.7666592813810558 +353,44.3,-91.917,70.00219894,9.262324853,0.8732821754064202 +354,40.22,-81.77,63.89440456,9.060840296,0.860480887094223 +355,45.703,-93.708,54.40349939,7.163855677,0.7450925138376936 +356,45.523,-95.126,50.75593186,7.025134663,0.7363385468577279 +357,45.036,-95.288,48.32363293,6.847637808,0.7253767059244511 +358,45.067,-84.214,56.94569167,7.599247448,0.7716151248358165 +359,39.513,-83.649,57.07190327,8.37153933,0.8181916906043606 +360,46.638,-91.752,67.80634074,9.248615135,0.8722206903439396 +361,40.967,-91.404,51.19665665,6.631656275,0.7126620720505905 +362,42.695,-97.11,47.29014174,6.582336603,0.7092705952544859 +363,46.317,-86.678,50.57965136,7.544514147,0.7676341459041081 +364,39.278,-85.55,55.89197093,8.15175868,0.8048144424536288 +365,45.259,-87.002,49.62045856,6.510959335,0.7052163945598876 +366,45.913,-83.725,51.24562465,7.70481277,0.7773701205726504 +367,38.913,-91.406,53.51277698,6.99251437,0.7346667109256176 +368,43.752,-90.126,58.17486708,7.480069934,0.7645611564600783 +369,42.273,-83.698,59.51879534,7.848759416,0.7869339672465205 +370,46.579,-86.154,52.16176311,6.74815459,0.7197892353811075 +371,43.512,-89.086,53.08676303,6.555966767,0.7083007868230882 +372,46.882,-97.672,54.72822143,7.311370944,0.7540212489645384 +373,39.654,-93.636,52.84914185,6.944222999,0.7316841337586188 +374,39.467,-94.212,49.59645265,6.53611718,0.706730644741386 +375,40.352,-97.358,45.87327388,6.328504641,0.6938149777806223 +376,42.185,-86.404,53.67053907,6.96028005,0.7327401138528323 +377,42.678,-82.712,59.293167,7.863727837,0.7878123079194763 +378,41.021,-86.58,57.99460763,7.460631271,0.7633698765928769 +379,44.356,-74.359,63.027739,8.724613161,0.8401163522350437 +380,39.575,-84.355,63.9630875,9.083828952,0.8618742676370229 +381,38.941,-86.313,57.9367619,8.218327762,0.809046767043853 +382,38.795,-90.851,56.47505749,7.80326198,0.7838652349416784 +383,41.65,-88.996,54.4868131,6.556921721,0.708508130807406 +384,42.068,-84.783,54.82294334,7.368488436,0.7574751126315569 +385,39.351,-81.961,64.90445536,9.70671627,0.8995301251171802 +386,38.64,-76.265,55.33259958,8.793166527,0.843426401798612 +387,40.553,-96.35,47.21201016,6.356493488,0.695645691791837 +388,43.756,-75.045,58.98597819,8.109630961,0.8026054515870469 +389,46.087,-89.891,57.78876615,7.108559568,0.7421207306416365 +390,40.001,-91.759,53.11153762,6.696516745,0.7167774840229554 +391,40.397,-78.953,55.08437671,8.675339245,0.8362957996530757 +392,40.787,-86.032,58.56400898,7.46717362,0.7638252389458284 +393,44.058,-94.688,49.28794319,6.886392673,0.7278164717313734 +394,40.988,-92.13,51.34739551,6.770451172,0.7210464266124584 +395,42.727,-89.024,52.79106223,6.636289411,0.7131119720179999 +396,42.335,-91.451,50.02971856,6.64395281,0.7132786243038104 +397,38.392,-88.5,57.86180863,8.146670896,0.8047184093570208 +398,44.244,-90.231,58.69672689,7.387475541,0.7590342752558699 +399,43.469,-97.73,49.2252985,7.077334545,0.7393220482476153 +400,38.105,-94.806,49.62168947,6.735856204,0.7187760205954808 +401,41.24,-85.519,53.29636267,7.026106974,0.7366689275159279 +402,39.257,-77.09,60.22997497,9.200428081,0.8685049256999342 +403,45.223,-83.711,57.52598123,7.826185595,0.7853597674770538 +404,39.81,-80.704,67.00045585,10.15581671,0.9268315293721036 +405,41.678,-89.583,55.79017964,6.832162938,0.725242414657741 +406,44.798,-83.331,54.87854293,7.561422057,0.7691134247575856 +407,42.005,-94.139,49.88206057,6.378900585,0.6972822855675775 +408,46.403,-95.749,52.06006614,7.195805009,0.7467681201456002 +409,42.398,-97.551,46.90093765,6.288824149,0.6915324918693668 +410,39.842,-80.116,62.94558708,9.712343181,0.8996598367225597 +411,39.696,-89.064,55.44977196,7.190966362,0.7468389958765334 +412,44.743,-96.839,47.21764232,6.278164547,0.6909236814750973 +413,41.431,-95.915,51.94359975,6.900670444,0.7289613919815656 +414,41.059,-88.915,56.09943255,7.088687211,0.7407418719709922 +415,38.728,-75.52,55.35219581,8.633813323,0.8338207659543093 +416,39.353,-90.096,58.12244541,7.782775604,0.7828062956046264 +417,45.818,-95.751,48.45444571,6.964379638,0.7324293042045387 +418,41.765,-83.501,57.41290156,8.084847126,0.800942906196559 +419,41.709,-90.317,58.05576703,6.956987333,0.7330106910756611 +420,41.223,-88.31,59.46589028,7.512207926,0.7666369269279907 +421,45.123,-97.934,50.41654986,7.879679239,0.7878244905240444 +422,45.997,-84.822,56.78066617,7.904179107,0.7899824278383707 +423,39.098,-75.981,57.48469268,8.606059271,0.8323755371571673 +424,39.425,-89.52,54.51436717,6.970990054,0.7334761089991013 +425,43.656,-82.65,53.72633052,7.20984052,0.7477925955885423 +426,44.4,-89.291,57.13994869,7.064526195,0.73939646201719 +427,45.245,-85.279,56.20141787,7.004531403,0.7356788550759765 +428,39.863,-90.623,61.06282191,7.785296826,0.7832728467626915 +429,46.107,-97.017,54.14274384,7.488428671,0.7646337927371182 +430,42.806,-84.196,54.89400855,7.441735075,0.7618989050810033 +431,40.843,-95.045,47.69072754,6.1592397,0.6838040655198201 +432,44.448,-97.296,47.4019081,6.467291502,0.7023462457207664 +433,41.691,-72.115,65.52126647,9.409677136,0.8816870076201835 +434,38.804,-88.876,56.12650933,7.67336165,0.7759959918059998 +435,42.682,-76.639,65.85313251,11.23072689,0.9915173400456673 +436,38.316,-85.843,69.57517263,10.26729387,0.9338281421272977 +437,38.073,-92.857,60.78137874,8.58634471,0.8315395628432611 +438,39.939,-84.001,60.79327209,8.686771589,0.8375957780099619 +439,44.265,-85.299,56.53336513,7.025708374,0.7369911676359213 +440,38.003,-97.588,44.51797386,6.337432343,0.6942082664902594 +441,40.311,-86.251,54.21981138,7.198675006,0.7471721930361643 +442,44.548,-95.14,51.65179365,7.310207291,0.75362199458947 +443,45.809,-97.642,55.13139183,8.608569832,0.8322751639005099 +444,42.446,-85.914,57.97381692,7.33915432,0.7560435575512621 +445,44.387,-73.241,66.61581844,9.991380929,0.9168762123477534 +446,40.942,-77.769,82.22316619,11.61951419,1.0167092802577187 +447,38.429,-91.58,59.37679154,7.984494908,0.7951025483733374 +448,39.12,-78.282,65.63883008,10.2656002,0.9333049440978314 +449,38.62,-80.697,66.64055826,10.16362263,0.9272636649295078 +450,38.493,-97.46,43.83482613,6.211864695,0.6865644564665008 +451,39.311,-79.815,67.8187212,10.70584627,0.9600814742404555 +452,39.573,-86.934,59.35680783,7.977308623,0.7946671347623824 +453,46.208,-96.225,53.14108799,7.69291391,0.7768554776444738 +454,43.684,-88.609,54.2861029,6.460525416,0.7026747288855164 +455,40.58,-89.113,52.91633826,6.733508491,0.7189869113003171 +456,45.189,-92.324,55.60638939,7.253704307,0.750638349366286 +457,43.144,-84.737,55.55312006,7.379166817,0.7581970435096334 +458,38.279,-86.69,60.10003958,8.603082044,0.8324758060678765 +459,45.919,-88.326,56.96547329,6.762215218,0.7211508478175581 +460,43.184,-95.159,51.18585003,7.07736437,0.7395335729420811 +461,38.466,-82.998,64.88468221,10.1049509,0.923538394074705 +462,38.779,-81.23,66.53920414,10.17264572,0.9277968433915422 +463,41.321,-78.403,81.96749808,10.80080743,0.9673204177407028 +464,43.332,-77.817,55.36377138,8.382735984,0.8186840355357992 +465,41.138,-96.353,50.60366102,6.91689289,0.7297961390430612 +466,41.121,-93.728,49.85059781,6.365495408,0.6964706942282749 +467,40.995,-82.625,58.19363103,8.144040387,0.8045953066702539 +468,40.345,-90.438,52.97778123,6.749438317,0.7199539259946919 +469,39.674,-95.918,47.37079266,6.46749765,0.702355346288893 +470,42.984,-94.561,49.45937965,6.792138291,0.7221520204698693 +471,43.353,-87.89,54.45120837,7.281927809,0.7522164288789656 +472,38.446,-92.139,62.55607261,8.362920461,0.8182587004618627 +473,42.465,-92.635,51.16406419,6.646398327,0.7135474141383155 +474,38.129,-89.088,57.05301859,7.947776521,0.7926401399263546 +475,41.689,-92.824,50.87165682,6.389067138,0.6980011082228246 +476,43.274,-76.603,58.52343419,8.910839737,0.850862495240194 +477,43.432,-92.279,49.37246654,6.472074047,0.7028453921414636 +478,38.394,-79.616,62.39853439,10.52693474,0.9487147156968743 +479,46.327,-91.139,56.89132972,7.670330515,0.7758950537380502 +480,42.59,-73.3,52.99193752,8.040403136,0.7977903620138551 +481,42.581,-75.908,68.70564716,10.71239595,0.9605712452204146 +482,41.052,-84.377,56.97887081,7.417237396,0.7606449140764017 +483,39.238,-77.673,57.96472367,8.762963021,0.8418869371123378 +484,43.146,-82.457,55.62505208,7.546052838,0.7682666394401925 +485,44.703,-87.551,52.36739464,6.46830517,0.7029385358652247 +486,40.145,-93.762,53.72297278,6.820160483,0.7242976262359341 +487,40.227,-87.997,57.00439535,7.314289923,0.7544407298296478 +488,41.433,-90.782,56.38570066,7.357920153,0.7570051022949702 +489,46.583,-87.917,52.02200649,6.6587893,0.7143862682010519 +490,38.862,-80.212,64.90563199,10.12406768,0.9246932250882576 +491,46.506,-90.645,67.55517351,9.152558169,0.8664023503170806 +492,44.595,-84.463,60.91517064,7.760417109,0.7817570027709664 +493,45.955,-85.624,49.64725022,7.121041155,0.7420023471036234 +494,42.325,-79.325,60.74805435,9.191121493,0.8679992329984643 +495,44.135,-83.625,56.50144774,7.908995333,0.7902429391098073 +496,44.792,-75.31,59.7934766,8.560530368,0.8298774840596251 +497,44.123,-84.708,53.62721441,6.984223372,0.7341790713584011 +498,45.214,-87.948,62.23187261,8.192019335,0.807920039685732 +499,41.42,-94.157,47.83504347,6.138255018,0.6825542938594882 +500,40.932,-75.544,67.42465609,10.46068808,0.9452582287939602 +501,44.742,-90.493,54.0500146,7.036089242,0.7373513995292398 +502,40.101,-77.425,70.33942899,10.35910008,0.9394450821297607 +503,39.864,-94.773,51.67978765,6.681354317,0.715710151196955 +504,41.543,-80.279,59.75423467,8.444629413,0.8228853794886285 +505,38.603,-78.137,68.25423527,10.30299295,0.9358392081115476 +506,45.268,-89.036,54.43136747,6.73471382,0.7192216505952082 +507,40.493,-87.529,56.63830625,7.096503375,0.7412707696072732 +508,41.723,-96.651,48.47878692,6.544136198,0.7070945675272873 +509,45.405,-84.777,68.86180567,8.697156539,0.839085024895053 +510,45.997,-86.253,56.22360691,7.689009467,0.7769498176864484 +511,42.127,-74.842,63.13683261,9.195294867,0.8685063895628578 +512,38.936,-87.73,55.29020635,7.421600707,0.7607273452103007 +513,42.182,-93.095,51.59001055,6.584085103,0.7098359866670145 +514,43.809,-91.798,63.97065273,8.353995964,0.8178719463708108 +515,44.803,-85.981,53.31372912,6.591668697,0.7104776088352586 +516,41.255,-83.308,56.00049615,7.597152674,0.7713877160111668 +517,39.892,-87.32,57.71703833,7.204853164,0.747918796458257 +518,40.194,-78.13,54.80617445,8.325443616,0.8151701130102473 +519,42.298,-78.275,61.30414605,8.816334232,0.8454620258138015 +520,41.45,-75.674,66.08391757,10.01141111,0.9180269739774907 +521,38.871,-88.304,57.8366498,7.754341554,0.7810613758296872 +522,45.417,-94.188,53.2687493,7.044185928,0.7377559909112443 +523,40.721,-88.08,57.46484271,7.324539722,0.7551079668037419 +524,44.436,-93.756,51.14011198,7.243869992,0.7495676462905537 +525,40.935,-73.004,52.72697363,7.831752854,0.78518206373025 +526,43.156,-83.672,56.35414093,7.322951732,0.7548934082925223 +527,39.376,-80.375,71.6958889,10.67325936,0.9585314955371435 +528,42.226,-84.306,56.2763269,7.799565194,0.7836210892688518 +529,38.693,-78.827,63.8886486,10.71049641,0.9599414282680461 +530,40.639,-97.798,45.47528802,6.302056949,0.6921778182603213 +531,40.93,-90.387,52.65531979,6.691199825,0.7164081129065762 +532,39.939,-93.196,52.47470563,6.732209351,0.7188613406215817 +533,44.348,-74.993,57.4429404,8.078041073,0.800535768626705 +534,44.681,-91.582,55.21964952,7.260808017,0.7510252758352114 +535,40.648,-96.93,46.1520268,6.233359253,0.6881082859225318 +536,43.405,-78.411,52.95839231,7.995269103,0.7950655499818584 +537,44.177,-88.702,54.82723999,6.810351697,0.7238243613769677 +538,44.94,-96.376,53.02000449,7.311072105,0.7538204979035236 +539,38.271,-75.806,56.03213163,9.025428971,0.8575048129981654 +540,42.858,-89.76,53.76259374,6.576633391,0.7096191158290799 +541,43.186,-95.762,49.43314627,6.883232479,0.7276414699804448 +542,44.801,-74.672,61.89315377,8.919900273,0.8517692432827209 diff --git a/examples/28_iron_map/example_ore_prices.csv b/examples/21_iron_examples/iron_mapping/example_ore_prices.csv similarity index 100% rename from examples/28_iron_map/example_ore_prices.csv rename to examples/21_iron_examples/iron_mapping/example_ore_prices.csv diff --git a/examples/28_iron_map/example_shipping_prices.csv b/examples/21_iron_examples/iron_mapping/example_shipping_prices.csv similarity index 100% rename from examples/28_iron_map/example_shipping_prices.csv rename to examples/21_iron_examples/iron_mapping/example_shipping_prices.csv diff --git a/examples/21_iron_examples/iron_mapping/iron_map.yaml b/examples/21_iron_examples/iron_mapping/iron_map.yaml new file mode 100644 index 000000000..f6593fa1d --- /dev/null +++ b/examples/21_iron_examples/iron_mapping/iron_map.yaml @@ -0,0 +1,5 @@ +name: H2Integrate_config +system_summary: Produces iron and at locations across the US. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/28_iron_map/ned_reduced_sitelist.csv b/examples/21_iron_examples/iron_mapping/ned_reduced_sitelist.csv similarity index 99% rename from examples/28_iron_map/ned_reduced_sitelist.csv rename to examples/21_iron_examples/iron_mapping/ned_reduced_sitelist.csv index ca80a1f57..701620106 100644 --- a/examples/28_iron_map/ned_reduced_sitelist.csv +++ b/examples/21_iron_examples/iron_mapping/ned_reduced_sitelist.csv @@ -1,4 +1,4 @@ -site.latitude,site.longitude,iron.LCOE,iron.LCOH +site.latitude,site.longitude,dri_grid_feedstock.price,hydrogen_feedstock.price 39.179,-94.644,58.24602573,7.819127689 40.639,-94.179,51.41859144,6.486845574 42.135,-74.231,54.87195632,9.087358988 diff --git a/examples/21_iron_examples/iron_mapping/plant_config.yaml b/examples/21_iron_examples/iron_mapping/plant_config.yaml new file mode 100644 index 000000000..e0c8b12f0 --- /dev/null +++ b/examples/21_iron_examples/iron_mapping/plant_config.yaml @@ -0,0 +1,72 @@ +name: plant_config +description: This file contains plant-specific parameters for the iron mapping example. +sites: + site: + latitude: 41.717 + longitude: -88.398 +technology_interconnections: + # Connect feedstocks to iron mine. + - [mine_electricity_feedstock, iron_mine, electricity, cable] + - [mine_crude_ore_feedstock, iron_mine, crude_ore, crude_ore_transport] + # Connect iron_ore price and processed_ore_feedstock to iron_transport + # Connect the LCOI of iron ore to the price of a feedstock component representing the ore to be used in DRI + - [finance_subgroup_iron_ore, processed_ore_feedstock, [price_iron_ore, price]] + # Connect the ore feedstock available to the iron plant + - [processed_ore_feedstock, iron_plant, iron_ore, iron_ore_transport] + - [dri_grid_feedstock, iron_plant, electricity, cable] + - [hydrogen_feedstock, iron_plant, hydrogen, pipe] + - [water_feedstock, iron_plant, water, pipe] + - [natural_gas_feedstock, iron_plant, natural_gas, pipe] + # Use the iron ore consumed by the iron plant to calculate transport costs + - [iron_plant, iron_transport, [iron_ore_consumed, iron_ore_in]] +plant: + plant_life: 30 + simulation: + n_timesteps: 8760 + dt: 3600 + timezone: 0 +finance_parameters: + finance_groups: + finance_model: ProFastLCO + model_inputs: + params: + analysis_start_year: 2032 + installation_time: 36 # months + inflation_rate: 0.0 # 0 for nominal analysis + discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind + debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + capital_gains_tax_rate: 0.15 # H2FAST default + sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ + debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind + debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH + loan_period_if_used: 0 # H2FAST default, not used for revolving debt + cash_onhand_months: 1 # H2FAST default + admin_expense: 0.00 # percent of sales H2FAST default + capital_items: + depr_type: MACRS # can be "MACRS" or "Straight line" + depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 + refurb: [0.] + cost_adjustment_parameters: + cost_year_adjustment_inflation: 0.025 + target_dollar_year: 2022 + finance_subgroups: + iron_ore: + commodity: iron_ore + commodity_stream: iron_mine + technologies: + - iron_mine + - mine_electricity_feedstock + - mine_crude_ore_feedstock + pig_iron: + commodity: pig_iron + commodity_stream: iron_plant + technologies: + - processed_ore_feedstock + - iron_transport + - iron_plant + - dri_grid_feedstock + - hydrogen_feedstock + - water_feedstock + - natural_gas_feedstock diff --git a/examples/28_iron_map/run_iron.py b/examples/21_iron_examples/iron_mapping/run_iron.py similarity index 91% rename from examples/28_iron_map/run_iron.py rename to examples/21_iron_examples/iron_mapping/run_iron.py index 8537c599e..74f7dc619 100644 --- a/examples/28_iron_map/run_iron.py +++ b/examples/21_iron_examples/iron_mapping/run_iron.py @@ -26,21 +26,23 @@ model = H2IntegrateModel("iron_map.yaml") model.run() + model.post_process(summarize_sql=True) + # Define filepaths -ex_28_dir = EXAMPLE_DIR / "28_iron_map" -ex_28_out_dir = EXAMPLE_DIR / "28_iron_map/ex_28_out" -save_plot_filepath = ex_28_out_dir / "example_28_iron_map.png" +ex_dir = EXAMPLE_DIR / "21_iron_examples/iron_mapping" +ex_out_dir = EXAMPLE_DIR / "21_iron_examples/iron_mapping/ex_out" +save_plot_filepath = ex_out_dir / "example_iron_map.png" save_plot_filepath.unlink(missing_ok=True) -case_results_filepath = ex_28_out_dir / "cases.csv" -ore_prices_filepath = ex_28_dir / "example_ore_prices.csv" +case_results_filepath = ex_out_dir / "cases.csv" +ore_prices_filepath = ex_dir / "example_ore_prices.csv" shipping_coords_filepath = ROOT_DIR / "converters/iron/martin_transport/shipping_coords.csv" -shipping_prices_filepath = ex_28_dir / "example_shipping_prices.csv" +shipping_prices_filepath = ex_dir / "example_shipping_prices.csv" # Plot the LCOI results with geopandas and contextily # NOTE: you can swap './ex_28_out/cases.sql' with './ex_28_out/cases.csv' to read results from csv fig, ax, lcoi_layer_gdf = plot_geospatial_point_heat_map( case_results_fpath=case_results_filepath, - metric_to_plot="iron.LCOI (USD/kg)", + metric_to_plot="finance_subgroup_pig_iron.LCOP (USD/kg)", map_preferences={ "figsize": (10, 8), "colorbar_label": "Levelized Cost of\nIron [$/kg]", diff --git a/examples/21_iron_examples/iron_mapping/tech_config.yaml b/examples/21_iron_examples/iron_mapping/tech_config.yaml new file mode 100644 index 000000000..c9949779a --- /dev/null +++ b/examples/21_iron_examples/iron_mapping/tech_config.yaml @@ -0,0 +1,171 @@ +name: technology_config +description: This hybrid plant produces iron +technologies: + mine_electricity_feedstock: # electricity feedstock for iron ore + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: electricity + commodity_rate_units: MW + performance_parameters: + rated_capacity: 30. # MW, need 27.913 MW per timestep for iron ore + cost_parameters: + cost_year: 2022 + price: 0. # Electricity costs are already priced in to current mine model + annual_cost: 0. + start_up_cost: 0. + mine_crude_ore_feedstock: # iron ore feedstock + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: crude_ore + commodity_rate_units: t/h + performance_parameters: + rated_capacity: 2000. # need 828.50385048 t/h + cost_parameters: + cost_year: 2022 + price: 0. # USD/t + annual_cost: 0. + start_up_cost: 0. + crude_ore_transport: + performance_model: + model: GenericTransporterPerformanceModel + model_inputs: + performance_parameters: + commodity: crude_ore + commodity_rate_units: t/h + iron_mine: + performance_model: + model: MartinIronMinePerformanceComponent + cost_model: + model: MartinIronMineCostComponent + model_inputs: + shared_parameters: + mine: Northshore + taconite_pellet_type: drg + max_ore_production_rate_tonnes_per_hr: 221.2592636 + iron_ore_transport: + performance_model: + model: GenericTransporterPerformanceModel + model_inputs: + performance_parameters: + commodity: iron_ore + commodity_rate_units: kg/h + processed_ore_feedstock: # iron ore feedstock + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: iron_ore + commodity_rate_units: t/h + performance_parameters: + rated_capacity: 250. # need 828.50385048 t/h + cost_parameters: + cost_year: 2022 + price: 0.0 + annual_cost: 0. + start_up_cost: 0. + iron_transport: + performance_model: + model: IronTransportPerformanceComponent + cost_model: + model: IronTransportCostComponent + model_inputs: + performance_parameters: + find_closest_ship_site: false + shipment_site: Chicago + cost_parameters: + transport_year: 2022 + cost_year: 2022 + natural_gas_feedstock: + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: natural_gas + commodity_rate_units: MMBtu/h + performance_parameters: + rated_capacity: 1270. # need 1268.934 MMBtu/h + cost_parameters: + cost_year: 2022 + price: 4.0 # USD 4.0/MMBtu + annual_cost: 0. + start_up_cost: 0. + water_feedstock: # for iron reduction + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: water + commodity_rate_units: galUS # galUS/h + performance_parameters: + rated_capacity: 40000. # need 38710.49649 galUS/h + cost_parameters: + cost_year: 2022 + price: 0.0016700004398318847 # cost is USD 0.441167535/t, converted to USD/gal + annual_cost: 0. + start_up_cost: 0. + hydrogen_feedstock: # for h2 dri iron reduction + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: hydrogen + commodity_rate_units: kg/h + performance_parameters: + rated_capacity: 1000000 # oversized + cost_parameters: + cost_year: 2022 + price: 0. # USD/kg set from the CSV + annual_cost: 0. + start_up_cost: 0. + dri_grid_feedstock: # electricity feedstock for iron dri + performance_model: + model: FeedstockPerformanceModel + cost_model: + model: FeedstockCostModel + model_inputs: + shared_parameters: + commodity: electricity + commodity_rate_units: MW + performance_parameters: + rated_capacity: 270000000. # Oversized to ensure it doesn't constrain the process, need 27.913 MW per timestep for iron ore + cost_parameters: + cost_year: 2022 + price: 0. # USD/MWh set from CSV + annual_cost: 0. + start_up_cost: 0. + iron_plant: + performance_model: + model: HydrogenIronReductionPlantPerformanceComponent + cost_model: + model: HydrogenIronReductionPlantCostComponent + model_inputs: + shared_parameters: + pig_iron_production_rate_tonnes_per_hr: 161.8829908675799 # equivalent to 1418095 t/yr + performance_parameters: + water_density: 1000 # kg/m3 + cost_parameters: + skilled_labor_cost: 40.85 # 2022 USD/hr + unskilled_labor_cost: 30.0 # 2022 USD/hr + pig_iron_transport: + performance_model: + model: GenericTransporterPerformanceModel + model_inputs: + performance_parameters: + commodity: pig_iron + commodity_rate_units: kg/h diff --git a/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml b/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml index 4f10f7ddc..d0c83fab0 100644 --- a/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml +++ b/examples/23_solar_wind_ng_demand/flexible_demand_tech_config.yaml @@ -91,10 +91,10 @@ technologies: variable_opex_per_mwh: 0.0 # $/MWh cost_year: 2023 electrical_load_demand: - control_strategy: - model: FlexibleDemandOpenLoopConverterController + performance_model: + model: FlexibleDemandComponent model_inputs: - control_parameters: + performance_parameters: commodity: electricity commodity_rate_units: kW rated_demand: 100000 diff --git a/examples/23_solar_wind_ng_demand/plant_config.yaml b/examples/23_solar_wind_ng_demand/plant_config.yaml index 555b9b13e..048314999 100644 --- a/examples/23_solar_wind_ng_demand/plant_config.yaml +++ b/examples/23_solar_wind_ng_demand/plant_config.yaml @@ -27,7 +27,7 @@ technology_interconnections: # connect NG feedstock to NG plant - [combiner, electrical_load_demand, [electricity_out, electricity_in]] # subtract wind and solar from demand - - [electrical_load_demand, natural_gas_plant, [electricity_unmet_demand, electricity_demand]] + - [electrical_load_demand, natural_gas_plant, [unmet_electricity_demand_out, electricity_demand]] # give remaining load demand to natural gas plant - [combiner, fin_combiner, electricity, cable] - [natural_gas_plant, fin_combiner, electricity, cable] @@ -51,7 +51,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -74,7 +74,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/23_solar_wind_ng_demand/tech_config.yaml b/examples/23_solar_wind_ng_demand/tech_config.yaml index 5fbabe17f..e044c1788 100644 --- a/examples/23_solar_wind_ng_demand/tech_config.yaml +++ b/examples/23_solar_wind_ng_demand/tech_config.yaml @@ -91,10 +91,10 @@ technologies: variable_opex_per_mwh: 0.0 # $/MWh cost_year: 2023 electrical_load_demand: - control_strategy: - model: DemandOpenLoopConverterController + performance_model: + model: GenericDemandComponent model_inputs: - control_parameters: + performance_parameters: commodity: electricity commodity_rate_units: kW demand_profile: 100000 # 100 MW diff --git a/examples/24_solar_battery_grid/README.md b/examples/24_solar_battery_grid/README.md index 2cdf79ef6..cce607d62 100644 --- a/examples/24_solar_battery_grid/README.md +++ b/examples/24_solar_battery_grid/README.md @@ -53,8 +53,8 @@ The grid performance model handles: - `electricity_in`: Power flowing INTO the grid (selling to grid) - limited by interconnection size - `electricity_out`: Power flowing OUT OF the grid (buying from grid) - limited by interconnection size - `electricity_sold`: Actual electricity sold (up to interconnection limit) -- `electricity_unmet_demand`: Demand that couldn't be met due to interconnection limit -- `electricity_excess`: Electricity that couldn't be sold due to interconnection limit +- `unmet_electricity_demand_out`: Demand that couldn't be met due to interconnection limit +- `unused_electricity_out`: Electricity that couldn't be sold due to interconnection limit **Cost Model:** - CapEx: Based on interconnection size ($/kW) plus fixed costs @@ -72,16 +72,16 @@ Solar → Battery → [Grid Buy (purchases) | Grid Sell (sales)] - Solar generates electricity - Battery stores excess and follows 100 MW demand profile -- Grid Buy purchases electricity when battery cannot meet demand (via `electricity_unmet_demand` → `electricity_demand` connection) -- Grid Sell accepts excess electricity when battery has surplus (via `electricity_unused_commodity` → `electricity_in` connection) +- Grid Buy purchases electricity when battery cannot meet demand (via `unmet_electricity_demand_out` → `electricity_demand` connection) +- Grid Sell accepts excess electricity when battery has surplus (via `unused_electricity_out` → `electricity_in` connection) ### Technology Interconnections ```yaml technology_interconnections: [ ["solar", "battery", "electricity", "cable"], - ["battery", "grid_buy", ["electricity_unmet_demand", "electricity_demand"]], - ["battery", "grid_sell", ["electricity_unused_commodity", "electricity_in"]] + ["battery", "grid_buy", ["unmet_electricity_demand_out", "electricity_demand"]], + ["battery", "grid_sell", ["unused_electricity_out", "electricity_in"]] ] ``` diff --git a/examples/24_solar_battery_grid/plant_config.yaml b/examples/24_solar_battery_grid/plant_config.yaml index f9dd733d6..8c9298c03 100644 --- a/examples/24_solar_battery_grid/plant_config.yaml +++ b/examples/24_solar_battery_grid/plant_config.yaml @@ -19,12 +19,18 @@ sites: # - grid_buy: purchases electricity to meet unmet demand (upstream) # - grid_sell: sells excess electricity back to grid (downstream) technology_interconnections: + # connect solar to battery - [solar, battery, electricity, cable] - # connect solar to battery - - [battery, grid_buy, [electricity_unmet_demand, electricity_demand]] - # connect battery demand to grid buying - - [battery, grid_sell, [electricity_unused_commodity, electricity_in]] - # connect battery surplus to grid selling + # combine solar and battery output + - [solar, bat_combiner, electricity, cable] + - [battery, bat_combiner, electricity, cable] + # subtract variable generation from the demand + - [bat_combiner, electrical_load_demand, electricity, cable] + # connect remaining demand to grid buying + - [electrical_load_demand, grid_buy, [unmet_electricity_demand_out, electricity_demand]] + # connect surplus generation to grid selling + - [electrical_load_demand, grid_sell, [unused_electricity_out, electricity_in]] + # combine electricity generated from solar and electricity bought from grid - [solar, combiner, electricity, cable] - [grid_buy, combiner, electricity, cable] resource_to_tech_connections: diff --git a/examples/24_solar_battery_grid/tech_config.yaml b/examples/24_solar_battery_grid/tech_config.yaml index 8229ee64a..969cfbf63 100644 --- a/examples/24_solar_battery_grid/tech_config.yaml +++ b/examples/24_solar_battery_grid/tech_config.yaml @@ -31,7 +31,7 @@ technologies: cost_year: 2024 battery: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: ATBBatteryCostModel control_strategy: @@ -42,10 +42,9 @@ technologies: commodity_rate_units: kW max_charge_rate: 25000.0 # kW/time step, 25 MW max_capacity: 200000.0 # kWh, 200 MWh - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.1 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.1 # fraction (0-1) max_discharge_rate: 25000.0 # kW/time step charge_efficiency: 1.0 # fraction (0-1) discharge_efficiency: 1.0 # fraction (0-1) @@ -55,6 +54,21 @@ technologies: energy_capex: 300 # $/kWh power_capex: 100 # $/kW opex_fraction: 0.05 # percent of capex + electrical_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 100000 # kW, 100 MW + bat_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW grid_buy: performance_model: model: GridPerformanceModel diff --git a/examples/25_sizing_modes/plant_config.yaml b/examples/25_sizing_modes/plant_config.yaml index fa237f4af..b5089cf47 100644 --- a/examples/25_sizing_modes/plant_config.yaml +++ b/examples/25_sizing_modes/plant_config.yaml @@ -25,7 +25,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for real analysis discount_rate: 0.06 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 0.724 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.025 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.2574 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.0 # average combined state and local sales tax https://taxfoundation.org/location/texas/ diff --git a/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml b/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml index 71d06343d..6a6b35816 100644 --- a/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml +++ b/examples/25_sizing_modes/tech_inputs/hopp_config_tx.yaml @@ -57,7 +57,7 @@ technologies: federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf debt_percent: 72.4 # based on 2024 ATB for land-based wind term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind months_working_reserve: 1 @@ -125,7 +125,7 @@ technologies: federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf debt_percent: 75.3 # based on 2024 ATB for utility-scale pv solar term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale pv solar months_working_reserve: 1 @@ -171,7 +171,7 @@ technologies: federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf debt_percent: 75.4 # based on 2024 ATB for utility-scale pv plus battery term_int_rate: 4.4 # based on 2024 ATB real interest rate for utility-scale battery months_working_reserve: 1 @@ -213,7 +213,7 @@ technologies: federal_tax_rate: 21.0 # https://taxsummaries.pwc.com/quick-charts/corporate-income-tax-cit-rates state_tax_rate: 4.74 # 0.75 # https://comptroller.texas.gov/taxes/franchise/ --> The TX franchise tax should be applied to margin but is included in income tax here as an approximation property_tax_rate: 1.47 # average effective real property tax rate in Texas https://taxfoundation.org/data/all/state/property-taxes-by-state-county-2024/ - insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + insurance_rate: 1.0 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf debt_percent: 72.4 # based on 2024 ATB for land-based wind term_int_rate: 4.4 # based on 2024 ATB real interest rate for land-based onshore wind months_working_reserve: 1 @@ -243,10 +243,10 @@ config: pv_charging_only: false include_lifecycle_count: false cost_info: - wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation - solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NREL 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation - storage_installed_cost_mwh: 310000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation - storage_installed_cost_mw: 311000 # (2022USD) 2025 battery costs in 2022 USD from NREL 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + wind_installed_cost_mw: 1380000 # (2022USD) 2025 costs in 2022 USD from NLR 2024 ATB for land-based wind. 2025 used as an overnight-capex lock-in date for 2030 operation + solar_installed_cost_mw: 1323000 # (2022USD) 2025 costs in 2022 USD from NLR 2024 ATB for utility-scale pv. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mwh: 310000 # (2022USD) 2025 battery costs in 2022 USD from NLR 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation + storage_installed_cost_mw: 311000 # (2022USD) 2025 battery costs in 2022 USD from NLR 2024 ATB for utility-scale battery storage. 2025 used as an overnight-capex lock-in date for 2030 operation wind_om_per_kw: 29 # (2022USD) 2030 costs in 2022 USD from 2024 ATB for land-based wind - pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NREL 2024 ATB for utility-scale PV + pv_om_per_kw: 18 # (2022USD) 2030 costs in 2022 USD from NLR 2024 ATB for utility-scale PV battery_om_per_kw: 15.525 # (2022USD) based on 2.5 percent of battery capex/kW for a 1-hour battery using both power and energy costs above diff --git a/examples/28_iron_map/ex_28_out/cases.csv b/examples/28_iron_map/ex_28_out/cases.csv deleted file mode 100644 index 6834b938c..000000000 --- a/examples/28_iron_map/ex_28_out/cases.csv +++ /dev/null @@ -1,544 +0,0 @@ -,site.latitude (deg),site.longitude (deg),iron.LCOE (USD/MW/h),iron.LCOH (USD/kg),iron.LCOI (USD/kg) -0,39.179,-94.644,58.24602573,7.819127689,0.7397575877065189 -1,40.639,-94.179,51.41859144,6.486845574,0.6645510235049574 -2,42.135,-74.231,54.87195632,9.087358988,0.8103685686602611 -3,39.836,-86.466,54.08137179,7.389792328,0.7153268718671882 -4,44.836,-72.268,79.67190898,11.19138114,0.9305307102908987 -5,43.297,-83.034,54.46538588,7.030717938,0.6952780794865759 -6,41.522,-97.383,48.48607904,6.892715924,0.6869646730441603 -7,43.745,-75.672,50.22448696,7.602515656,0.7268439766785298 -8,40.915,-93.153,50.25523396,6.52284299,0.6664492808830237 -9,45.619,-97.165,48.01464159,6.479866149,0.6638227367462083 -10,38.376,-93.262,57.32420626,8.084316033,0.75450094122482 -11,38.785,-86.901,58.74660238,8.268727655,0.7649582510664614 -12,38.792,-95.074,48.66910731,6.576432804,0.6692897098943401 -13,40.062,-96.921,44.62706297,6.200145885,0.6478387354547906 -14,42.581,-74.531,50.90152862,7.3545067,0.7130373568589313 -15,38.181,-90.2,61.38834601,8.610442044,0.7843362266631179 -16,40.223,-92.752,53.7541996,6.87663279,0.6865878464147088 -17,42.086,-89.986,53.37882952,6.524971783,0.666878393430948 -18,40.62,-89.979,55.65806989,6.908352618,0.6885512436217368 -19,40.636,-76.972,72.45617197,10.64305592,0.8991407780207546 -20,42.951,-86.133,57.35833333,7.43043708,0.7179258198216066 -21,39.202,-87.27,58.58810594,8.045451544,0.7524522766163338 -22,38.203,-77.393,62.42842963,9.521704146,0.8354161847153931 -23,43.868,-95.759,47.11402471,6.460728066,0.6626627482527715 -24,42.812,-85.552,56.82341805,7.716463431,0.7338732694172463 -25,38.52,-87.36,58.5870948,8.369258517,0.7705661958291573 -26,42.11,-97.1,45.42147075,6.29428234,0.6531836509491429 -27,38.254,-89.635,56.84951183,7.714561563,0.7337694672943814 -28,44.643,-83.831,61.33378629,8.702613374,0.7894869489460453 -29,44.928,-94.048,52.33871303,7.085928629,0.6981555308238622 -30,44.638,-97.764,48.19730942,7.497728876,0.7207809174591054 -31,45.4,-93.094,56.28973232,7.594526158,0.7269990314968532 -32,42.872,-78.108,52.58970512,8.079507383,0.753762028162296 -33,42.664,-77.255,55.44160432,8.457847794,0.7752097511228947 -34,38.894,-83.34,60.22555006,9.13484917,0.8135565673514396 -35,41.968,-75.805,59.60083702,8.59590163,0.7833454087429216 -36,39.168,-93.795,53.07708032,7.103576468,0.6992160501271748 -37,44.997,-89.535,56.21071969,7.077430089,0.6980644239461755 -38,42.003,-97.985,46.90393923,6.553646022,0.6678398009923863 -39,40.301,-83.642,52.54980459,7.387797164,0.7150632481943188 -40,42.211,-96.508,47.72590301,6.594923107,0.6702304563086223 -41,41.913,-94.733,48.41150834,6.364914313,0.6574316298354063 -42,40.119,-76.833,63.20207239,9.408568091,0.8291640501803251 -43,46.295,-97.814,50.4352344,6.861520616,0.685413042189429 -44,41.415,-84.014,57.72454279,7.748746212,0.7357686331765151 -45,40.169,-88.725,55.9963289,6.822567835,0.6837859478573698 -46,41.603,-93.416,50.76824359,6.498809353,0.6651557378526034 -47,44.258,-96.218,48.08888229,6.484302926,0.6640783021907359 -48,42.783,-75.227,58.89441507,8.518178578,0.7789274049208841 -49,43.47,-94.398,48.64393387,6.650122757,0.6734094859268207 -50,46.891,-96.389,52.22032516,7.525073042,0.7227098681598818 -51,44.308,-85.91,58.17542757,6.947540066,0.6909932758830798 -52,42.469,-73.805,70.30200869,10.48294073,0.8899699998335784 -53,38.72,-77.532,67.57701181,10.59481219,0.8959577142028968 -54,46.819,-91.258,65.65937746,8.981078822,0.8054938553755117 -55,39.284,-88.681,54.93068491,7.231633641,0.7065636460034721 -56,40.095,-74.638,57.41269903,8.39533146,0.7719081747121379 -57,39.765,-83.169,60.6389907,8.920491025,0.8016062374720486 -58,43.478,-90.607,54.7934753,6.656543983,0.6743790547419194 -59,40.846,-95.916,49.00242728,6.357131627,0.6570549106585734 -60,41.48,-92.247,51.31129381,6.47246505,0.6637359159467717 -61,46.557,-92.397,65.61020315,8.920584641,0.8021048820865094 -62,42.796,-96.513,46.88752754,6.663217889,0.6739677094583119 -63,41.196,-84.939,56.18609974,7.304981003,0.7107913594277826 -64,41.301,-89.914,52.27357502,6.557154344,0.6685690116806589 -65,38.735,-89.447,56.67704606,7.716713398,0.7338727249134852 -66,44.564,-90.973,54.16784025,6.995728955,0.6932912356620481 -67,43.399,-84.233,56.52538901,7.342584936,0.7129286288155633 -68,40.403,-92.166,51.16250247,6.74221526,0.6788111892241094 -69,38.862,-93.101,52.61488688,6.996040576,0.6931545327353583 -70,41.717,-88.398,58.02462706,7.10284254,0.6996660523798913 -71,44.056,-72.423,57.60315341,9.361197001,0.8259583643286462 -72,45.586,-87.582,57.64037358,7.851745274,0.7415221285679031 -73,44.721,-93.281,54.55981386,7.286968665,0.709622321192511 -74,40.227,-85.106,55.34456603,7.546306027,0.7242077484495044 -75,41.763,-76.475,62.14805368,8.711817509,0.7900826540441657 -76,42.45,-92.039,50.89051651,6.617038851,0.671781725942632 -77,44.037,-76.354,52.30808721,7.855595437,0.7412082644235577 -78,46.887,-94.784,55.19318723,7.119884185,0.7003383467061237 -79,41.138,-95.478,50.99325709,6.431124144,0.6613917066965758 -80,39.732,-78.404,69.22754364,11.19056578,0.9294484639965758 -81,39.719,-84.904,56.02114788,8.079337839,0.7540931246633997 -82,44.144,-86.399,54.58691417,6.837009571,0.6844539414385941 -83,42.875,-88.104,54.75903184,7.161985723,0.7026504490051497 -84,40.064,-81.224,59.84133196,8.827448556,0.7963221977570343 -85,43.156,-73.707,80.94288555,11.47455377,0.9464977606161281 -86,43.033,-74.216,74.01588852,10.24146903,0.8768304945581896 -87,41.233,-96.938,44.8074436,6.303142878,0.6536183724652423 -88,38.794,-95.637,46.52550588,6.614472671,0.6712049314702173 -89,41.927,-73.545,53.6741379,8.075798189,0.75366216608771 -90,39.255,-82.984,63.20230992,9.277783207,0.8218478633405216 -91,39.637,-92.782,54.3036301,6.871183342,0.6863375325756645 -92,42.26,-72.505,72.50926875,10.75063221,0.9051639512452903 -93,38.14,-78.404,77.87765954,11.19263996,0.930423045074964 -94,43.142,-77.107,59.42168394,9.258997754,0.8204217517576757 -95,43.693,-91.197,60.1929438,7.901418862,0.7445542587893733 -96,43.741,-93.021,49.05224406,6.438050174,0.661586502990801 -97,45.056,-91.087,57.28220041,7.782807024,0.7376301182856804 -98,45.429,-90.586,60.36112161,7.975822338,0.7487331405540713 -99,40.462,-76.435,72.20604536,11.18261167,0.9292991299361031 -100,39.384,-78.788,69.72767851,10.89852,0.9131608306964142 -101,39.28,-75.199,56.46399806,8.329471452,0.7681297520900724 -102,43.282,-96.668,50.70693151,7.166731574,0.7025137526420868 -103,38.31,-81.476,65.7838273,10.95258698,0.9157939415593653 -104,42.308,-75.389,70.43238095,10.00672665,0.8633431453330185 -105,38.09,-93.692,55.16553143,7.889404346,0.7433831715393626 -106,45.655,-91.509,57.3754534,7.688712794,0.7323756678700403 -107,45.214,-93.571,53.92479583,7.289779539,0.7097165362861207 -108,45.13,-97.311,49.28337615,6.730451436,0.6779666026633213 -109,46.687,-94.308,56.89453535,7.306322654,0.7109367267986593 -110,41.132,-94.603,47.77765227,6.048935135,0.6396925912358865 -111,39.576,-75.832,62.4785284,9.366275257,0.8267263415149406 -112,38.181,-76.546,58.79155946,9.623913824,0.8407729051728163 -113,43.921,-89.498,58.71964476,7.142340337,0.7019445731334372 -114,41.044,-81.142,59.94867282,8.400766071,0.7724638941347791 -115,40.689,-84.735,57.02486778,7.433518345,0.7180650907857198 -116,46.452,-87.296,58.31682922,8.019475965,0.7509722570469761 -117,39.151,-84.003,58.97234189,8.56742661,0.781690113463886 -118,42.183,-79.815,54.61601031,8.138823811,0.7572813531479946 -119,38.229,-79.09,74.59578716,10.75220945,0.9054592764798389 -120,41.2,-81.696,60.48322232,8.863916105,0.7984259309807749 -121,42.78,-72.612,63.22770852,9.526568209,0.8357676150811424 -122,41.398,-80.761,66.17442447,9.515075117,0.8354171527208109 -123,40.833,-79.277,64.71334103,9.426644773,0.8303252720660469 -124,40.979,-76.57,66.7885506,9.569792467,0.8385390386427012 -125,39.553,-88.223,55.60630495,7.02909285,0.6953004103917164 -126,42.498,-94.721,47.28725229,6.235183862,0.6500628194748257 -127,42.955,-92.758,52.48840608,6.984380936,0.6924897296050372 -128,43.395,-72.683,64.51809282,10.60738288,0.8963573217659538 -129,44.34,-88.065,51.31168453,6.54155783,0.6676010597849288 -130,40.009,-89.462,55.25405478,6.912022481,0.6887164389718171 -131,39.417,-86.099,55.95759231,7.854978823,0.741535994810894 -132,38.024,-87.285,59.53868666,8.559414763,0.781298135778818 -133,41.321,-76.165,56.91217926,8.245658412,0.7634856673022905 -134,41.428,-95.036,49.12946551,6.172112024,0.646717375856317 -135,39.597,-81.475,64.64281089,9.622144928,0.8412547058781129 -136,41.496,-86.362,56.17204566,7.024954408,0.6951250541078502 -137,42.894,-90.659,53.16976553,6.681489673,0.6756133784411932 -138,42.209,-95.172,49.93455623,6.639947411,0.6729683670979798 -139,40.386,-79.688,63.86411489,9.17986164,0.8164357391290475 -140,41.225,-97.815,48.29404304,6.887453274,0.6866512160724337 -141,43.101,-88.679,53.03067508,6.615076123,0.6718843464980098 -142,46.066,-92.269,61.42938904,8.143522162,0.7582204307972492 -143,45.91,-90.383,57.83685565,7.028809928,0.6955059723190438 -144,43.227,-75.538,75.42836767,11.27986223,0.9350592286983017 -145,39.397,-91.23,52.56550712,6.798847242,0.6821184797283872 -146,46.698,-85.008,52.72711292,8.005433585,0.7496319191302083 -147,45.715,-94.651,51.03142157,6.844917182,0.6845434062424683 -148,41.506,-82.813,57.09718467,8.717754935,0.7899134845641318 -149,38.304,-95.361,49.92079696,6.722028795,0.6775586993441521 -150,41.931,-91.037,51.68681366,6.799257548,0.6820542196259425 -151,40.544,-84.178,56.15485391,7.723515068,0.7342013866140091 -152,45.835,-91.022,57.09875181,7.290884745,0.7100933869851467 -153,39.502,-74.69,56.79142229,7.973092397,0.7482261221804094 -154,43.939,-72.942,53.32671274,7.618989204,0.7280734252141762 -155,40.148,-75.65,57.84709107,8.235350996,0.7630018550397243 -156,38.306,-95.919,50.14571571,6.834479039,0.6838715792743106 -157,41.198,-92.702,53.31606401,6.841342284,0.6845701811809779 -158,39.353,-93.221,54.7802893,7.195586393,0.7045322070715979 -159,44.837,-72.907,71.3194361,10.52109026,0.8922050975841764 -160,43.11,-72.172,55.36600246,8.888975195,0.7993198570713353 -161,46.146,-91.63,58.13416581,7.454519634,0.7193500207309521 -162,39.967,-96.347,44.02907256,6.097882312,0.6420586775263036 -163,39.274,-97.619,47.07840636,6.545498265,0.6674013253693983 -164,43.562,-86.491,55.70970331,7.118851599,0.7003318487854487 -165,41.271,-75.133,53.47236237,8.024438305,0.7507690265106012 -166,43.286,-85.319,56.6952872,7.755424106,0.7360400431905672 -167,42.129,-88.793,54.14661409,6.501983191,0.6656685982214746 -168,44.621,-89.886,55.26646759,7.024110613,0.694987970220445 -169,42.207,-90.569,52.58770358,6.642200034,0.6733577134067493 -170,46.499,-95.111,51.92864537,6.996419759,0.6931076330175177 -171,40.758,-87.057,56.8555571,7.130380178,0.7010904960684706 -172,39.281,-95.209,51.4771514,6.880614986,0.6865846098011835 -173,41.723,-95.473,46.69607968,5.867770467,0.6294507463348564 -174,40.707,-92.583,49.05015761,6.560043716,0.6684107116571386 -175,40.374,-82.319,60.10662274,8.505918307,0.7783618708377094 -176,41.971,-92.366,50.3678127,6.495398503,0.6649251882311737 -177,40.181,-84.535,56.35996593,7.778285957,0.7372856716799429 -178,42.24,-76.323,69.36892469,11.02959371,0.9204575908813803 -179,40.26,-95.917,48.50109937,6.553833735,0.6680088247138799 -180,45.441,-88.545,55.8526599,6.659344602,0.674640850826208 -181,41.361,-72.544,53.88391198,7.614258476,0.7278640882140951 -182,43.881,-74.532,58.37302204,7.950019899,0.7470924067861725 -183,46.375,-93.045,55.3918541,7.021579046,0.6948587973343296 -184,39.137,-85.003,61.51175413,8.628449283,0.785355814556663 -185,38.756,-81.946,71.72107525,11.3668183,0.9395556605757108 -186,42.59,-72.069,58.97538041,8.411540943,0.7729700468687118 -187,43.181,-97.27,46.43618932,6.279777875,0.6524729734868188 -188,41.458,-91.515,56.16438589,7.233361486,0.7067827515282591 -189,39.967,-95.487,48.87948543,6.733395312,0.6780911980693716 -190,41.804,-77.515,51.04981458,7.993755204,0.7488121443477002 -191,45.497,-89.795,58.81570232,7.355118333,0.713857077436974 -192,44.925,-74.149,55.02626753,8.029748129,0.7512202920089431 -193,43.338,-89.56,58.18240607,7.195248869,0.7048509959459536 -194,43.168,-90.182,69.10016634,8.273254796,0.7662391250338976 -195,41.631,-76.967,53.70716911,8.213743211,0.761382198762869 -196,46.413,-88.42,55.17809147,6.749316878,0.6796070185661384 -197,40.054,-97.782,45.34490702,6.438691013,0.6612543877767155 -198,43.846,-87.977,52.44338023,6.439618227,0.6620108015006172 -199,38.041,-80.831,54.10203166,9.966578887,0.8594764116760556 -200,40.263,-86.981,54.62289587,7.055294044,0.6966685197361757 -201,41.287,-77.37,61.45616063,9.527505315,0.8356442061247492 -202,42.585,-90.237,52.96659442,6.53500173,0.6673985610792129 -203,40.654,-90.846,51.16622167,6.625098277,0.6722599412015372 -204,40.577,-81.398,62.90874286,9.207572255,0.817891069445413 -205,46.361,-84.431,60.67660851,8.526102871,0.7795475841867956 -206,44.053,-97.747,49.14434791,7.507503977,0.7214217407769461 -207,40.592,-75.951,52.92795272,7.774752517,0.7367473706902818 -208,39.147,-79.282,50.22245241,7.648694799,0.7294270727259552 -209,38.644,-76.981,60.48685661,9.107058567,0.81202787437399 -210,42.699,-95.913,47.57093505,6.650574037,0.6733282325560764 -211,40.276,-80.446,64.19364001,9.581061709,0.8389118963871655 -212,46.002,-94.17,55.75347218,7.786657918,0.7376938095225464 -213,43.769,-95.151,47.31078488,6.411883727,0.6599498861201576 -214,42.828,-83.285,54.80541876,7.452960164,0.7189323946671999 -215,42.306,-85.339,58.19811541,7.738857599,0.7352624597963864 -216,45.817,-96.539,52.01958202,7.034215719,0.6952309948102045 -217,40.981,-72.087,47.38085805,7.581109738,0.7253642739532457 -218,43.651,-84.949,58.31734328,7.714266851,0.7338986675195642 -219,41.872,-78.847,60.19990006,8.838877034,0.7969971048579111 -220,46.915,-88.676,67.92832932,8.509743044,0.7793521573712585 -221,39.504,-82.503,62.72090253,9.020945412,0.8074323717233055 -222,43.257,-93.195,49.55256088,6.489928825,0.6645382939197819 -223,44.479,-73.84,52.15043129,7.442068835,0.7180596096376122 -224,42.826,-91.565,59.4002971,7.739153402,0.7353983273693566 -225,44.842,-88.309,55.48362361,6.686331923,0.6761139150718111 -226,38.398,-82.306,73.80592548,11.82468489,0.9653760093335896 -227,38.559,-92.694,54.07315132,7.553252188,0.7244701305180361 -228,38.871,-90.281,61.39907598,8.596880991,0.783578675555628 -229,40.71,-78.279,54.11497403,8.092009937,0.754612818463519 -230,39.423,-92.081,54.44194101,7.065610102,0.6972276479148571 -231,38.36,-87.942,57.52916359,8.269603142,0.7648863920748641 -232,41.354,-82.253,57.40390246,8.417149907,0.7731278429022527 -233,46.891,-95.586,53.30603106,7.280094675,0.7091133430435184 -234,38.215,-83.47,69.11204086,11.06497821,0.9224115314640735 -235,46.464,-89.532,58.93365468,8.421302272,0.7735119619723607 -236,40.153,-94.337,52.71937502,6.621701616,0.6722240843859136 -237,43.952,-93.927,50.3826438,7.098541588,0.6986669640760276 -238,41.477,-79.7,67.09750132,9.147615079,0.8149527641090785 -239,44.209,-87.467,49.98534113,6.881160634,0.6864670671659978 -240,45.683,-92.608,58.93381438,8.131030545,0.7572739465811389 -241,38.781,-85.488,58.86544535,8.621361921,0.7846966878519583 -242,38.312,-91.028,56.97321059,7.501142865,0.721842933081582 -243,38.394,-94.381,51.87572104,7.152864578,0.7018540277048142 -244,39.663,-79.437,69.29531546,10.89040654,0.9126640439698065 -245,39.766,-97.345,42.92463511,6.337007398,0.6553259062866076 -246,41.456,-87.252,56.3357236,7.228621813,0.7065346162301829 -247,42.671,-84.974,53.8034778,7.360343995,0.7136519268936415 -248,43.626,-83.423,55.47191027,7.218286342,0.7058707057142445 -249,39.601,-76.697,59.55842892,8.826842537,0.7962602176018455 -250,40.484,-91.583,55.66062144,7.073695945,0.6978009340694691 -251,43.058,-78.818,60.18058271,8.416316597,0.7733568206736962 -252,39.774,-85.614,55.68656489,7.905718462,0.7443475102866678 -253,44.738,-85.058,55.53773575,6.899077298,0.6880204313226407 -254,42.697,-95.315,46.20799873,6.522319229,0.6660182811097975 -255,43.318,-91.681,60.29937338,7.941027819,0.7467805787955003 -256,45.329,-96.691,55.47259022,7.463930658,0.7196123115827201 -257,38.641,-83.814,60.57997087,9.123808323,0.8129741109125757 -258,43.979,-84.119,57.67525746,7.819865712,0.7397422228470776 -259,38.273,-85.287,59.41725858,9.221892556,0.818345618244115 -260,45.957,-87.211,59.58845316,7.991027496,0.7495070395362893 -261,44.231,-93.15,50.27937146,6.880228229,0.6864440910759385 -262,42.148,-77.109,71.95034062,10.18256687,0.8733304490978516 -263,40.732,-81.948,69.01805433,9.905469252,0.8575383498308279 -264,39.755,-77.816,74.23476878,10.95687645,0.9168726790668552 -265,42.672,-93.222,48.05948121,6.218271332,0.6491933651205065 -266,40.894,-83.673,55.49143481,7.454978894,0.7191134131675819 -267,44.221,-75.509,60.33804381,8.662683514,0.787154410413443 -268,38.896,-84.476,66.60599183,9.370482382,0.827371354487567 -269,46.089,-87.827,58.48668279,7.39889306,0.7162732143068788 -270,40.746,-83.117,58.80303859,7.980298909,0.7488289191094254 -271,41.954,-91.775,52.07035902,6.652528575,0.6738841522134601 -272,43.576,-96.216,51.52767309,6.976484606,0.6919526470110315 -273,45.628,-86.63,51.75128766,6.987551269,0.6925939193527659 -274,46.495,-97.342,54.66545581,7.563494232,0.7251018665912257 -275,46.388,-93.84,54.3237267,7.151761193,0.7020352753327437 -276,45.12,-90.146,53.49276942,6.798092341,0.6821682835147119 -277,43.425,-85.904,59.15579168,7.506765541,0.7223740977305044 -278,39.278,-90.671,54.72249003,7.113773227,0.6999497767551418 -279,46.537,-85.52,55.19269964,7.177562644,0.7035648771756134 -280,40.892,-89.516,62.14196475,7.674201752,0.7320369991072396 -281,44.93,-73.509,64.45930269,9.723615855,0.8469128564913688 -282,45.172,-91.701,60.65322488,8.038204684,0.7522518507184546 -283,41.191,-87.728,57.38612252,7.06732817,0.6976159768001423 -284,42.979,-97.867,51.65670861,7.163428262,0.7024232309515367 -285,44.775,-88.939,61.88150607,7.725587266,0.7348856943230974 -286,45.032,-94.666,50.28776304,6.973067478,0.6916384253831371 -287,43.964,-96.675,51.28051515,6.807031666,0.6824487836303006 -288,40.354,-94.908,49.11599127,6.19981146,0.6482655669751483 -289,44.544,-94.523,53.26763232,7.57847474,0.7258011499717167 -290,38.931,-91.97,53.94683017,7.008936062,0.6940081158208066 -291,41.453,-73.717,58.71329139,8.784280838,0.7937953998930852 -292,40.27,-85.678,56.73799632,7.585260303,0.7265251837384706 -293,43.489,-73.271,75.25988245,10.63583426,0.8990150692439118 -294,41.556,-81.317,60.49616966,8.819655179,0.79595122464471 -295,39.044,-92.528,55.10917389,7.236472093,0.7068520284196077 -296,46.046,-88.944,55.45098741,6.78852232,0.6818272879049482 -297,41.013,-79.969,61.61168839,8.743873589,0.7918226607968072 -298,40.552,-95.483,48.39441865,6.082976563,0.6416581116916159 -299,39.52,-87.656,56.42082044,7.317487784,0.7115142954321896 -300,46.499,-96.705,51.79891083,7.207889097,0.7049245194125576 -301,41.56,-84.578,55.09470261,7.335645137,0.7123984110489093 -302,44.843,-95.755,48.88431645,6.722463769,0.6774801583539745 -303,43.462,-93.792,47.5891969,6.457598574,0.6625348442385491 -304,45.873,-89.439,58.84717603,7.206161134,0.7055274171288713 -305,39.944,-76.301,63.07089347,9.351633593,0.82596606918702 -306,39.134,-80.863,67.01406677,9.966855156,0.8607734243749734 -307,38.582,-93.815,50.90998771,7.030631959,0.6949203858815457 -308,42.32,-77.663,67.35604707,9.898108305,0.8569616134249354 -309,40.177,-91.172,53.1436774,6.748893793,0.6793814291912438 -310,42.503,-88.451,52.97420397,6.506614488,0.6658113114578034 -311,42.973,-93.659,46.48919889,6.291868391,0.6531545879245406 -312,39.938,-90.043,54.38222059,6.872969341,0.6864452431205168 -313,42.941,-92.158,51.24178957,6.592920484,0.6704673902117229 -314,40.973,-78.796,56.11705325,8.274484019,0.7650192760531902 -315,41.816,-86.757,53.74173861,7.171169685,0.7030632377559332 -316,46.774,-93.505,56.85097302,7.246789267,0.7076020580958234 -317,42.291,-93.685,49.49236734,6.246625324,0.650921728202608 -318,40.63,-93.6,51.4682303,6.430565617,0.6614076047596097 -319,46.3,-94.637,54.87449895,7.381366827,0.7149342628769345 -320,45.891,-93.227,55.80173944,7.380083862,0.7149545241784583 -321,45.331,-95.91,48.2068868,6.449493262,0.6621427342043306 -322,45.66,-84.253,54.06470461,7.827605336,0.7398168254305684 -323,43.238,-74.916,62.24761325,9.346468714,0.8255954287314317 -324,40.734,-85.311,54.73235651,7.161730608,0.7026335300631193 -325,41.714,-85.292,55.07525106,7.11713852,0.7001730465059957 -326,38.277,-84.162,58.07549708,8.77107947,0.7929936018816888 -327,38.827,-82.643,65.57798244,9.971839715,0.8609097289168273 -328,44.072,-90.861,60.94708597,7.83379302,0.7408460662690183 -329,41.864,-86.008,57.51742888,7.26196297,0.7085170348398983 -330,39.863,-82.138,65.34105223,9.278515235,0.8221010901214688 -331,44.355,-95.604,51.49292498,7.032357099,0.6950747498475355 -332,43.922,-92.401,49.94659706,6.649830555,0.6735224331210244 -333,38.881,-94.228,49.43947066,6.58868584,0.6700516153320841 -334,42.211,-95.766,51.00851576,6.856165909,0.6851703955062498 -335,39.919,-92.338,53.14670509,6.746377424,0.679240962015547 -336,42.589,-94.122,48.67682821,6.458336743,0.662684088650512 -337,41.118,-74.137,62.9772836,9.872371545,0.8550872732709361 -338,42.359,-89.512,52.49509336,6.383988351,0.6589039546808587 -339,46.684,-90.148,60.34653131,8.55614353,0.7811953213941001 -340,43.792,-85.536,60.83628514,7.761170573,0.736772511519289 -341,41.782,-78.122,62.30137579,10.03281728,0.8639956494126595 -342,41.789,-75.26,61.67241257,9.203997056,0.8175683605019313 -343,46.012,-95.276,50.37045546,6.89678815,0.6873795065843014 -344,41.409,-79.123,64.95776393,9.117061684,0.8130312075785703 -345,40.236,-82.929,62.17173456,8.916182515,0.8015173453954845 -346,43.405,-76.097,63.18180437,9.3451845,0.8256163100336579 -347,40.937,-97.37,45.35458674,6.249774929,0.6506872325466023 -348,43.863,-97.284,48.39360588,6.682949777,0.6752210097311938 -349,42.465,-78.833,63.26312393,9.273639324,0.8216220872020047 -350,38.64,-84.945,63.95457223,9.431226985,0.8305062945830264 -351,44.806,-92.658,52.68417683,7.07849464,0.697773955879855 -352,43.201,-91.085,58.00906861,7.515163462,0.7227300684250524 -353,44.3,-91.917,70.00219894,9.262324853,0.8216580199888603 -354,40.22,-81.77,63.89440456,9.060840296,0.8097805968361117 -355,45.703,-93.708,54.40349939,7.163855677,0.702719768063015 -356,45.523,-95.126,50.75593186,7.025134663,0.694597572269134 -357,45.036,-95.288,48.32363293,6.847637808,0.6844268441266631 -358,45.067,-84.214,56.94569167,7.599247448,0.7273282501356878 -359,39.513,-83.649,57.07190327,8.37153933,0.7705433990441481 -360,46.638,-91.752,67.80634074,9.248615135,0.8206731419866156 -361,40.967,-91.404,51.19665665,6.631656275,0.6726298215873201 -362,42.695,-97.11,47.29014174,6.582336603,0.669483106660075 -363,46.317,-86.678,50.57965136,7.544514147,0.7236345772662613 -364,39.278,-85.55,55.89197093,8.15175868,0.7581315829028307 -365,45.259,-87.002,49.62045856,6.510959335,0.6657214964205558 -366,45.913,-83.725,51.24562465,7.70481277,0.7326679095466934 -367,38.913,-91.406,53.51277698,6.99251437,0.6930463922377065 -368,43.752,-90.126,58.17486708,7.480069934,0.7207833645538116 -369,42.273,-83.698,59.51879534,7.848759416,0.7415415362585019 -370,46.579,-86.154,52.16176311,6.74815459,0.6792426196660062 -371,43.512,-89.086,53.08676303,6.555966767,0.6685832890139872 -372,46.882,-97.672,54.72822143,7.311370944,0.7110041190388124 -373,39.654,-93.636,52.84914185,6.944222999,0.6902790667753268 -374,39.467,-94.212,49.59645265,6.53611718,0.667126463618036 -375,40.352,-97.358,45.87327388,6.328504641,0.6551429164898073 -376,42.185,-86.404,53.67053907,6.96028005,0.69125883710104 -377,42.678,-82.712,59.293167,7.863727837,0.7423564873469974 -378,41.021,-86.58,57.99460763,7.460631271,0.7196780589993451 -379,44.356,-74.359,63.027739,8.724613161,0.7908857643840019 -380,39.575,-84.355,63.9630875,9.083828952,0.811073417520704 -381,38.941,-86.313,57.9367619,8.218327762,0.7620584618896301 -382,38.795,-90.851,56.47505749,7.80326198,0.7386942734488706 -383,41.65,-88.996,54.4868131,6.556921721,0.6687756690448802 -384,42.068,-84.783,54.82294334,7.368488436,0.7142087183950347 -385,39.351,-81.961,64.90445536,9.70671627,0.846011662997414 -386,38.64,-76.265,55.33259958,8.793166527,0.7939569286577832 -387,40.553,-96.35,47.21201016,6.356493488,0.6568415084168439 -388,43.756,-75.045,58.98597819,8.109630961,0.7560820142482392 -389,46.087,-89.891,57.78876615,7.108559568,0.6999624575738692 -390,40.001,-91.759,53.11153762,6.696516745,0.676448225505174 -391,40.397,-78.953,55.08437671,8.675339245,0.7873409399425005 -392,40.787,-86.032,58.56400898,7.46717362,0.7201005579871691 -393,44.058,-94.688,49.28794319,6.886392673,0.6866905327629982 -394,40.988,-92.13,51.34739551,6.770451172,0.6804090797811215 -395,42.727,-89.024,52.79106223,6.636289411,0.6730472524082843 -396,42.335,-91.451,50.02971856,6.64395281,0.6732018774483126 -397,38.392,-88.5,57.86180863,8.146670896,0.7580424804861382 -398,44.244,-90.231,58.69672689,7.387475541,0.7156553567177607 -399,43.469,-97.73,49.2252985,7.077334545,0.6973657552535774 -400,38.105,-94.806,49.62168947,6.735856204,0.6783025282892281 -401,41.24,-85.519,53.29636267,7.026106974,0.6949041094537353 -402,39.257,-77.09,60.22997497,9.200428081,0.8172255429687812 -403,45.223,-83.711,57.52598123,7.826185595,0.7400809460168709 -404,39.81,-80.704,67.00045585,10.15581671,0.871342733049722 -405,41.678,-89.583,55.79017964,6.832162938,0.6843022446206884 -406,44.798,-83.331,54.87854293,7.561422057,0.7250070970059999 -407,42.005,-94.139,49.88206057,6.378900585,0.6583599897077822 -408,46.403,-95.749,52.06006614,7.195805009,0.7042744463635201 -409,42.398,-97.551,46.90093765,6.288824149,0.6530251569060109 -410,39.842,-80.116,62.94558708,9.712343181,0.8461320133548663 -411,39.696,-89.064,55.44977196,7.190966362,0.7043402070140165 -412,44.743,-96.839,47.21764232,6.278164547,0.6524602841762523 -413,41.431,-95.915,51.94359975,6.900670444,0.6877528244602529 -414,41.059,-88.915,56.09943255,7.088687211,0.698683110722357 -415,38.728,-75.52,55.35219581,8.633813323,0.785044528687427 -416,39.353,-90.096,58.12244541,7.782775604,0.7377117574479503 -417,45.818,-95.751,48.45444571,6.964379638,0.6909704584923022 -418,41.765,-83.501,57.41290156,8.084847126,0.7545394542626175 -419,41.709,-90.317,58.05576703,6.956987333,0.6915098868463838 -420,41.223,-88.31,59.46589028,7.512207926,0.7227093272862027 -421,45.123,-97.934,50.41654986,7.879679239,0.7423677907366703 -422,45.997,-84.822,56.78066617,7.904179107,0.7443699903587269 -423,39.098,-75.981,57.48469268,8.606059271,0.783703601621569 -424,39.425,-89.52,54.51436717,6.970990054,0.691941715697161 -425,43.656,-82.65,53.72633052,7.20984052,0.7052249857192591 -426,44.4,-89.291,57.13994869,7.064526195,0.6974347986036454 -427,45.245,-85.279,56.20141787,7.004531403,0.6939854902465483 -428,39.863,-90.623,61.06282191,7.785296826,0.7381446377480999 -429,46.107,-97.017,54.14274384,7.488428671,0.7208507586924326 -430,42.806,-84.196,54.89400855,7.441735075,0.7183132470628362 -431,40.843,-95.045,47.69072754,6.1592397,0.6458544887810911 -432,44.448,-97.296,47.4019081,6.467291502,0.6630584853670628 -433,41.691,-72.115,65.52126647,9.409677136,0.8294562779683904 -434,38.804,-88.876,56.12650933,7.67336165,0.7313929512433606 -435,42.682,-76.639,65.85313251,11.23072689,0.9313601880594685 -436,38.316,-85.843,69.57517263,10.26729387,0.877834402349214 -437,38.073,-92.857,60.78137874,8.58634471,0.782927959324507 -438,39.939,-84.001,60.79327209,8.686771589,0.7885470992489523 -439,44.265,-85.299,56.53336513,7.025708374,0.6952030936004048 -440,38.003,-97.588,44.51797386,6.337432343,0.6555078216704822 -441,40.311,-86.251,54.21981138,7.198675006,0.7046493574339481 -442,44.548,-95.14,51.65179365,7.310207291,0.7106336787328291 -443,45.809,-97.642,55.13139183,8.608569832,0.783610472272936 -444,42.446,-85.914,57.97381692,7.33915432,0.712880478218002 -445,44.387,-73.241,66.61581844,9.991380929,0.8621058882858663 -446,40.942,-77.769,82.22316619,11.61951419,0.9547340334597957 -447,38.429,-91.58,59.37679154,7.984494908,0.749120593321633 -448,39.12,-78.282,65.63883008,10.2656002,0.8773489633653757 -449,38.62,-80.697,66.64055826,10.16362263,0.8717436815129384 -450,38.493,-97.46,43.83482613,6.211864695,0.6484156631363659 -451,39.311,-79.815,67.8187212,10.70584627,0.902193039313809 -452,39.573,-86.934,59.35680783,7.977308623,0.7487166033811513 -453,46.208,-96.225,53.14108799,7.69291391,0.7321904082451394 -454,43.684,-88.609,54.2861029,6.460525416,0.6633632619997806 -455,40.58,-89.113,52.91633826,6.733508491,0.6784981990748465 -456,45.189,-92.324,55.60638939,7.253704307,0.7078653622955731 -457,43.144,-84.737,55.55312006,7.379166817,0.7148785477369884 -458,38.279,-86.69,60.10003958,8.603082044,0.7837966341549991 -459,45.919,-88.326,56.96547329,6.762215218,0.680505964938942 -460,43.184,-95.159,51.18585003,7.07736437,0.6975620142739685 -461,38.466,-82.998,64.88468221,10.1049509,0.868287262344672 -462,38.779,-81.23,66.53920414,10.17264572,0.8722383806443224 -463,41.321,-78.403,81.96749808,10.80080743,0.9089095504207039 -464,43.332,-77.817,55.36377138,8.382735984,0.7710002115887232 -465,41.138,-96.353,50.60366102,6.91689289,0.6885273280751494 -466,41.121,-93.728,49.85059781,6.365495408,0.6576069706734091 -467,40.995,-82.625,58.19363103,8.144040387,0.7579282620835832 -468,40.345,-90.438,52.97778123,6.749438317,0.6793954246072135 -469,39.674,-95.918,47.37079266,6.46749765,0.663066929149905 -470,42.984,-94.561,49.45937965,6.792138291,0.6814348832596784 -471,43.353,-87.89,54.45120837,7.281927809,0.7093295522804488 -472,38.446,-92.139,62.55607261,8.362920461,0.7706055728203459 -473,42.465,-92.635,51.16406419,6.646398327,0.6734512688007074 -474,38.129,-89.088,57.05301859,7.947776521,0.7468358961578756 -475,41.689,-92.824,50.87165682,6.389067138,0.6590269351463954 -476,43.274,-76.603,58.52343419,8.910839737,0.8008563614536104 -477,43.432,-92.279,49.37246654,6.472074047,0.6635216085394318 -478,38.394,-79.616,62.39853439,10.52693474,0.891646616344176 -479,46.327,-91.139,56.89132972,7.670330515,0.731299297845583 -480,42.59,-73.3,52.99193752,8.040403136,0.7516144282533943 -481,42.581,-75.908,68.70564716,10.71239595,0.9026474636680775 -482,41.052,-84.377,56.97887081,7.417237396,0.717149756215072 -483,39.238,-77.673,57.96472367,8.762963021,0.7925285666788688 -484,43.146,-82.457,55.62505208,7.546052838,0.7242214239324372 -485,44.703,-87.551,52.36739464,6.46830517,0.6636080301084153 -486,40.145,-93.762,53.72297278,6.820160483,0.6834256412974982 -487,40.227,-87.997,57.00439535,7.314289923,0.7113933260949796 -488,41.433,-90.782,56.38570066,7.357920153,0.7137726285642872 -489,46.583,-87.917,52.02200649,6.6587893,0.6742295830158916 -490,38.862,-80.212,64.90563199,10.12406768,0.869358749548301 -491,46.506,-90.645,67.55517351,9.152558169,0.8152747098243274 -492,44.595,-84.463,60.91517064,7.760417109,0.7367381917650798 -493,45.955,-85.624,49.64725022,7.121041155,0.699852617740467 -494,42.325,-79.325,60.74805435,9.191121493,0.8167563459586574 -495,44.135,-83.625,56.50144774,7.908995333,0.7446117006093153 -496,44.792,-75.31,59.7934766,8.560530368,0.7813858322710714 -497,44.123,-84.708,53.62721441,6.984223372,0.692593945472521 -498,45.214,-87.948,62.23187261,8.192019335,0.7610130501089177 -499,41.42,-94.157,47.83504347,6.138255018,0.644694912768744 -500,40.932,-75.544,67.42465609,10.46068808,0.8884395830700608 -501,44.742,-90.493,54.0500146,7.036089242,0.6955373276654985 -502,40.101,-77.425,70.33942899,10.35910008,0.8830459694668263 -503,39.864,-94.773,51.67978765,6.681354317,0.675457921770863 -504,41.543,-80.279,59.75423467,8.444629413,0.7748983458015716 -505,38.603,-78.137,68.25423527,10.30299295,0.879700330301164 -506,45.268,-89.036,54.43136747,6.73471382,0.6787159973048855 -507,40.493,-87.529,56.63830625,7.096503375,0.6991738379739573 -508,41.723,-96.651,48.47878692,6.544136198,0.6674641222050988 -509,45.405,-84.777,68.86180567,8.697156539,0.7899288676304618 -510,45.997,-86.253,56.22360691,7.689009467,0.7322779397943776 -511,42.127,-74.842,63.13683261,9.195294867,0.8172269011852178 -512,38.936,-87.73,55.29020635,7.421600707,0.7172262383186138 -513,42.182,-93.095,51.59001055,6.584085103,0.6700076939431407 -514,43.809,-91.798,63.97065273,8.353995964,0.770246730656632 -515,44.803,-85.981,53.31372912,6.591668697,0.6706030104308245 -516,41.255,-83.308,56.00049615,7.597152674,0.7271172533381421 -517,39.892,-87.32,57.71703833,7.204853164,0.7053420787098725 -518,40.194,-78.13,54.80617445,8.325443616,0.7677398878038577 -519,42.298,-78.275,61.30414605,8.816334232,0.7958456422948859 -520,41.45,-75.674,66.08391757,10.01141111,0.8631735997920594 -521,38.871,-88.304,57.8366498,7.754341554,0.736092768012665 -522,45.417,-94.188,53.2687493,7.044185928,0.6959127198081472 -523,40.721,-88.08,57.46484271,7.324539722,0.7120124087756551 -524,44.436,-93.756,51.14011198,7.243869992,0.7068719315414846 -525,40.935,-73.004,52.72697363,7.831752854,0.7399160670965396 -526,43.156,-83.672,56.35414093,7.322951732,0.7118133348881976 -527,39.376,-80.375,71.6958889,10.67325936,0.9007549221110767 -528,42.226,-84.306,56.2763269,7.799565194,0.7384677476965076 -529,38.693,-78.827,63.8886486,10.71049641,0.9020631004174113 -530,40.639,-97.798,45.47528802,6.302056949,0.6536239102837685 -531,40.93,-90.387,52.65531979,6.691199825,0.6761055117920105 -532,39.939,-93.196,52.47470563,6.732209351,0.6783816907945496 -533,44.348,-74.993,57.4429404,8.078041073,0.7541616996898551 -534,44.681,-91.582,55.21964952,7.260808017,0.7082243643966292 -535,40.648,-96.93,46.1520268,6.233359253,0.6498480748809882 -536,43.405,-78.411,52.95839231,7.995269103,0.7490862650931874 -537,44.177,-88.702,54.82723999,6.810351697,0.682986531822166 -538,44.94,-96.376,53.02000449,7.311072105,0.7108178561219106 -539,38.271,-75.806,56.03213163,9.025428971,0.8070193051199421 -540,42.858,-89.76,53.76259374,6.576633391,0.6698064746087723 -541,43.186,-95.762,49.43314627,6.883232479,0.686528160836268 -542,44.801,-74.672,61.89315377,8.919900273,0.8016976697602869 diff --git a/examples/28_iron_map/iron_map.yaml b/examples/28_iron_map/iron_map.yaml deleted file mode 100644 index 1a90e1342..000000000 --- a/examples/28_iron_map/iron_map.yaml +++ /dev/null @@ -1,6 +0,0 @@ -name: H2Integrate_config -system_summary: This reference hybrid plant is located in Minnesota and contains wind, solar, and battery storage technologies. - The system is designed to produce hydrogen using an electrolyzer and also produce steel using a grid-connected plant. -driver_config: driver_config.yaml -technology_config: tech_config.yaml -plant_config: plant_config.yaml diff --git a/examples/28_iron_map/tech_config.yaml b/examples/28_iron_map/tech_config.yaml deleted file mode 100644 index 18f331b4e..000000000 --- a/examples/28_iron_map/tech_config.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: technology_config -description: This hybrid plant produces iron -technologies: - iron: - performance_model: - model: IronComponent - model_inputs: - cost_parameters: - # h2_kgpy: 68583942.6460997 # 1000000 # 68583942.6460997 - LCOE: 58.02 #$/MWh - LCOH: 7.10 #$/kg - ROM_iron_site_name: Hibbing #"Hibbing", "Northshore", "United", "Minorca" or "Tilden" - iron_ore_product_selection: drg_taconite_pellets #"drg_taconite_pellets" or "std_taconite_pellets" - reduced_iron_product_selection: h2_dri #"h2_dri" or "ng_dri" - structural_iron_product_selection: eaf_steel #"eaf_steel" or "none" - cost_year: 2020 - reduced_iron_site_latitude: 41.717 - reduced_iron_site_longitude: -88.398 - transport_cost_included: true - ng_mod: false - ng_price: 4 - capex_mod: false - capex_mod_pct: 0 -# baseline 843.37604007 diff --git a/examples/29_wind_ard/h2i_inputs/plant_config.yaml b/examples/29_wind_ard/h2i_inputs/plant_config.yaml index b1caecada..be5903a62 100644 --- a/examples/29_wind_ard/h2i_inputs/plant_config.yaml +++ b/examples/29_wind_ard/h2i_inputs/plant_config.yaml @@ -16,9 +16,13 @@ plant: plant_life: 30 technology_interconnections: - [wind, combiner, electricity, cable] - # source_tech, dest_tech, transport_item, transport_type = connection - [solar, combiner, electricity, cable] - [combiner, battery, electricity, cable] + # combine the electricity from wind, solar, and the battery + - [combiner, elec_combiner, electricity, cable] + - [battery, elec_combiner, electricity, cable] + # subtract electricity production from electricity demand + - [elec_combiner, electrical_load_demand, electricity, cable] # etc resource_to_tech_connections: # The wind resource is handled strictly by Ard in this example, @@ -34,7 +38,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for real analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ @@ -53,7 +57,7 @@ finance_parameters: finance_subgroups: dispatched_electricity: commodity: electricity - commodity_stream: battery + commodity_stream: electrical_load_demand technologies: [wind, solar, battery] produced_electricity: commodity: electricity diff --git a/examples/29_wind_ard/h2i_inputs/tech_config.yaml b/examples/29_wind_ard/h2i_inputs/tech_config.yaml index 55fff7d6f..dbdc1cacd 100644 --- a/examples/29_wind_ard/h2i_inputs/tech_config.yaml +++ b/examples/29_wind_ard/h2i_inputs/tech_config.yaml @@ -42,18 +42,18 @@ technologies: rated_power: 5000000.0 # W num_blades: 3 rated_thrust_N: 823484.4216152605 # from NREL 5MW definition - gust_velocity_m_per_s: 70.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + gust_velocity_m_per_s: 70.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml blade_surface_area: 69.7974979 tower_mass: 620.4407337521 nacelle_mass: 101.98582836439 hub_mass: 8.38407517646 blade_mass: 14.56341339641 foundation_height: 0.0 - commissioning_cost_kW: 44.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml - decommissioning_cost_kW: 58.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + commissioning_cost_kW: 44.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + decommissioning_cost_kW: 58.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml trench_len_to_substation_km: 50.0 distance_to_interconnect_mi: 4.97096954 - interconnect_voltage_kV: 130.0 # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + interconnect_voltage_kV: 130.0 # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml tcc_per_kW: 1300.00 # (USD/kW) opex_per_kW: 44.00 # (USD/kWh) analysis_options: null @@ -96,7 +96,7 @@ technologies: commodity_rate_units: kW battery: performance_model: - model: SimpleGenericStorage + model: StoragePerformanceModel cost_model: model: ATBBatteryCostModel control_strategy: @@ -107,10 +107,9 @@ technologies: commodity_rate_units: kW max_charge_rate: 95000.0 # kW/time step max_capacity: 190000.0 # kWh - control_parameters: - max_charge_fraction: 1.0 # fraction (0-1) - min_charge_fraction: 0.1 # fraction (0-1) - init_charge_fraction: 0.25 # fraction (0-1) + max_soc_fraction: 1.0 # fraction (0-1) + min_soc_fraction: 0.1 # fraction (0-1) + init_soc_fraction: 0.25 # fraction (0-1) max_discharge_rate: 95000.0 # kW/time step charge_efficiency: 0.985 # fraction (0-1) discharge_efficiency: 0.985 # fraction (0-1) @@ -120,3 +119,18 @@ technologies: energy_capex: 72.54 # $/kWh power_capex: 18.72 # $/kW opex_fraction: 0.02 # percent of capex + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + electrical_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 30000 # 30 MW diff --git a/examples/30_pyomo_optimized_dispatch/plant_config.yaml b/examples/30_pyomo_optimized_dispatch/plant_config.yaml index ad929fbfb..ea111f4f8 100644 --- a/examples/30_pyomo_optimized_dispatch/plant_config.yaml +++ b/examples/30_pyomo_optimized_dispatch/plant_config.yaml @@ -17,6 +17,11 @@ plant: # this will naturally grow as we mature the interconnected tech technology_interconnections: - [wind, battery, electricity, cable] + # combine the battery output with the wind generation + - [battery, elec_combiner, electricity, cable] + - [wind, elec_combiner, electricity, cable] + # subtract the generation from the demand + - [elec_combiner, electrical_load_demand, electricity, cable] # array of arrays containing left-to-right technology, technology doing the dispatching # in this case, battery is connected to battery because there are controls rules for # the battery and battery is controlling the dispatching @@ -38,7 +43,7 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf + property_tax_and_insurance: 0.03 # p-tax https://www.house.mn.gov/hrd/issinfo/clsrates.aspx # insurance percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ diff --git a/examples/30_pyomo_optimized_dispatch/tech_config.yaml b/examples/30_pyomo_optimized_dispatch/tech_config.yaml index 947562759..abe1b397a 100644 --- a/examples/30_pyomo_optimized_dispatch/tech_config.yaml +++ b/examples/30_pyomo_optimized_dispatch/tech_config.yaml @@ -6,8 +6,6 @@ technologies: model: PYSAMWindPlantPerformanceModel cost_model: model: ATBWindPlantCostModel - dispatch_rule_set: - model: PyomoDispatchGenericConverter resource: type: pysam_wind wind_speed: 9. @@ -37,39 +35,51 @@ technologies: commodity: electricity commodity_rate_units: kW battery: - dispatch_rule_set: - model: PyomoRuleStorageBaseclass control_strategy: - model: OptimizedDispatchController + model: OptimizedDispatchStorageController performance_model: model: PySAMBatteryPerformanceModel cost_model: model: ATBBatteryCostModel model_inputs: shared_parameters: - commodity: electricity max_charge_rate: 100000 max_capacity: 400000 - init_charge_fraction: 0.5 # Initial SOC for the storage - max_charge_fraction: 0.9 # Maximum SOC allowable for the storage technology - min_charge_fraction: 0.1 # Minimum SOC allowable for the storage technology - system_commodity_interface_limit: 1e12 - charge_efficiency: 0.95 # Charge efficiency of the storage technology - discharge_efficiency: 0.95 # Discharge efficiency of the storage technology + init_soc_fraction: 0.5 # Initial SOC for the storage + max_soc_fraction: 0.9 # Maximum SOC allowable for the storage technology + min_soc_fraction: 0.1 # Minimum SOC allowable for the storage technology commodity_rate_units: kW - # rated_demand: 100000 # in kW performance_parameters: - system_model_source: pysam chemistry: LFPGraphite + demand_profile: 100000 # 100 MW cost_parameters: cost_year: 2022 energy_capex: 310 # $/kWh from 2024 ATB year 2025 power_capex: 311 # $/kW from 2024 ATB year 2025 opex_fraction: 0.25 # 0.25% of capex per year from 2024 ATB control_parameters: + commodity: electricity + charge_efficiency: 0.95 # Charge efficiency of the storage technology + discharge_efficiency: 0.95 # Discharge efficiency of the storage technology cost_per_charge: 0.03 # in $/kW, cost to charge the storage (note that charging is incentivized) cost_per_discharge: 0.05 # in $/kW, cost to discharge the storage commodity_met_value: 0.1 # in $/kW, penalty for not meeting the desired load demand cost_per_production: 0.0 # in $/kW, cost to use the incoming produced commodity (i.e. electricity from wind) time_weighting_factor: 0.995 # This parameter discounts each subsequent time step incrementally in the future in the horizon window by this amount n_control_window: 24 # in timesteps (currently hours), The length of time that the control is applied to in the rolling window optimization + system_commodity_interface_limit: 1e12 + elec_combiner: + performance_model: + model: GenericCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + electrical_load_demand: + performance_model: + model: GenericDemandComponent + model_inputs: + performance_parameters: + commodity: electricity + commodity_rate_units: kW + demand_profile: 100000 # 100 MW diff --git a/examples/31_tidal/driver_config.yaml b/examples/31_tidal/driver_config.yaml new file mode 100644 index 000000000..7e4d60c5b --- /dev/null +++ b/examples/31_tidal/driver_config.yaml @@ -0,0 +1,4 @@ +name: driver_config +description: This analysis runs a tidal power plant +general: + folder_output: outputs diff --git a/examples/28_iron_map/plant_config.yaml b/examples/31_tidal/plant_config.yaml similarity index 61% rename from examples/28_iron_map/plant_config.yaml rename to examples/31_tidal/plant_config.yaml index 589985954..e6b501d2a 100644 --- a/examples/28_iron_map/plant_config.yaml +++ b/examples/31_tidal/plant_config.yaml @@ -1,18 +1,32 @@ name: plant_config -description: This plant is located in MN, USA... +description: This plant is located in Washington sites: site: - latitude: 41.717 - longitude: -88.398 + latitude: 44.6899 + longitude: -124.1346 + resources: + tidal_resource: + resource_model: TidalResource + resource_parameters: + resource_dir: resource_files/tidal/ + resource_filename: Tidal_resource_timeseries.csv # array of arrays containing left-to-right technology # interconnections; can support bidirectional connections # with the reverse definition. -# this will naturally grow as we mature the interconnected tech +# in this example the tidal plant is behind-the-meter +# and not connected to additional technologies. +# hence the empty array. technology_interconnections: [] +# resource interconnections +# array of arrays containing left-to-right resource interconnections; +resource_to_tech_connections: + # connect the tidal resource to the tidal technology + - [site.tidal_resource, tidal, tidal_velocity] plant: plant_life: 30 finance_parameters: finance_groups: + commodity: electricity finance_model: ProFastLCO model_inputs: params: @@ -21,8 +35,8 @@ finance_parameters: inflation_rate: 0.0 # 0 for nominal analysis discount_rate: 0.09 # nominal return based on 2024 ATB baseline workbook for land-based wind debt_equity_ratio: 2.62 # 2024 ATB uses 72.4% debt for land-based wind - property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nrel.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx - total_income_tax_rate: 0.257 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) + property_tax_and_insurance: 0.03 # percent of CAPEX estimated based on https://www.nlr.gov/docs/fy25osti/91775.pdf https://www.house.mn.gov/hrd/issinfo/clsrates.aspx + total_income_tax_rate: 0.308 # 0.257 tax rate in 2024 atb baseline workbook, value here is based on federal (21%) and state in MN (9.8) capital_gains_tax_rate: 0.15 # H2FAST default sales_tax_rate: 0.07375 # total state and local sales tax in St. Louis County https://taxmaps.state.mn.us/salestax/ debt_interest_rate: 0.07 # based on 2024 ATB nominal interest rate for land-based wind @@ -31,14 +45,9 @@ finance_parameters: cash_onhand_months: 1 # H2FAST default admin_expense: 0.00 # percent of sales H2FAST default capital_items: - depr_type: MACRS # can be "MACRS" or "Straight line" + depr_type: MACRS # can be "MACRS" or "Straight line" depr_period: 5 # 5 years - for clean energy facilities as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 refurb: [0.] cost_adjustment_parameters: - cost_year_adjustment_inflation: 0.025 + cost_year_adjustment_inflation: 0.025 # used to adjust modeled costs to target_dollar_year target_dollar_year: 2022 - finance_subgroups: - iron: - commodity: iron - commodity_stream: iron - technologies: [iron] diff --git a/examples/31_tidal/run_tidal.py b/examples/31_tidal/run_tidal.py new file mode 100644 index 000000000..516e05ac4 --- /dev/null +++ b/examples/31_tidal/run_tidal.py @@ -0,0 +1,11 @@ +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create an H2I model +h2i = H2IntegrateModel("tidal.yaml") + +# Run the model +h2i.run() + +# Post-process the results +h2i.post_process() diff --git a/examples/31_tidal/tech_config.yaml b/examples/31_tidal/tech_config.yaml new file mode 100644 index 000000000..01f59e20f --- /dev/null +++ b/examples/31_tidal/tech_config.yaml @@ -0,0 +1,63 @@ +name: technology_config +description: This plant produces electricity from tidal +technologies: + tidal: + performance_model: + model: PySAMTidalPerformanceModel + cost_model: + model: PySAMMarineCostModel + model_inputs: + shared_parameters: + device_rating_kw: 1115.0 + num_devices: 20 + performance_parameters: + tidal_power_curve: # [tide_velocity (m/s), power (kW)] + - [0.000000, 0.000000] + - [0.100000, 0.000000] + - [0.200000, 0.000000] + - [0.300000, 0.000000] + - [0.400000, 0.000000] + - [0.500000, 0.000000] + - [0.600000, 10.421100] + - [0.700000, 20.842300] + - [0.800000, 39.968900] + - [0.900000, 59.095600] + - [1.000000, 89.201600] + - [1.100000, 119.308000] + - [1.200000, 160.886000] + - [1.300000, 202.464000] + - [1.400000, 259.292000] + - [1.500000, 316.120000] + - [1.600000, 392.673000] + - [1.700000, 469.226000] + - [1.800000, 570.306000] + - [1.900000, 671.386000] + - [2.000000, 802.908000] + - [2.100000, 934.430000] + - [2.200000, 1024.710000] + - [2.300000, 1115.000000] + - [2.400000, 1115.000000] + - [2.500000, 1115.000000] + - [2.600000, 1115.000000] + - [2.700000, 1115.000000] + - [2.800000, 1115.000000] + - [2.900000, 1115.000000] + - [3.000000, 1115.000000] + - [3.100000, 1115.000000] + - [3.200000, 1085.370000] + - [3.300000, 1055.730000] + pysam_options: + MHKTidal: + loss_array_spacing: 0.0 + loss_resource_overprediction: 0.0 + loss_transmission: 0.0 + loss_downtime: 0.0 + loss_additional: 0.0 + cost_parameters: + reference_model_number: 1 # 1 is for a Tidal Current Turbine + water_depth: 100 + distance_to_shore: 80 + number_rows: 2 + device_spacing: 600 + row_spacing: 600 + cable_system_overbuild: 20 diff --git a/examples/31_tidal/tidal.yaml b/examples/31_tidal/tidal.yaml new file mode 100644 index 000000000..bed612037 --- /dev/null +++ b/examples/31_tidal/tidal.yaml @@ -0,0 +1,5 @@ +name: H2Integrate_config +system_summary: This reference hybrid plant contains a tidal power plant +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/32_multivariable_streams/32_multivariable_streams.yaml b/examples/32_multivariable_streams/32_multivariable_streams.yaml new file mode 100644 index 000000000..6dc90a6ed --- /dev/null +++ b/examples/32_multivariable_streams/32_multivariable_streams.yaml @@ -0,0 +1,11 @@ +name: H2Integrate_config +system_summary: > + This example demonstrates the multivariable streams feature in H2Integrate. + Multivariable streams allow users to connect multiple related variables with + a single connection specification. In this example, we connect a wellhead_gas + stream (containing wellhead_gas_mixture:mass_flow, wellhead_gas_mixture:hydrogen_mass_fraction, + wellhead_gas_mixture:oxygen_mass_fraction, wellhead_gas_mixture:temperature, + and wellhead_gas_mixture:pressure) between a dummy gas producer and consumer. +driver_config: driver_config.yaml +technology_config: tech_config.yaml +plant_config: plant_config.yaml diff --git a/examples/32_multivariable_streams/driver_config.yaml b/examples/32_multivariable_streams/driver_config.yaml new file mode 100644 index 000000000..0991d8889 --- /dev/null +++ b/examples/32_multivariable_streams/driver_config.yaml @@ -0,0 +1,5 @@ +name: driver_config +description: Driver configuration for multivariable streams example +general: + folder_output: outputs + create_om_reports: false diff --git a/examples/32_multivariable_streams/plant_config.yaml b/examples/32_multivariable_streams/plant_config.yaml new file mode 100644 index 000000000..806449d7c --- /dev/null +++ b/examples/32_multivariable_streams/plant_config.yaml @@ -0,0 +1,12 @@ +name: plant_config +description: Demonstrates multivariable streams with a gas combiner +plant: + plant_life: 30 + simulation: + n_timesteps: 8760 + dt: 3600 + timezone: -6 +technology_interconnections: + - [gas_producer_1, gas_combiner, wellhead_gas_mixture] + - [gas_producer_2, gas_combiner, wellhead_gas_mixture] + - [gas_combiner, gas_consumer, wellhead_gas_mixture] diff --git a/examples/32_multivariable_streams/run_multivariable_streams.py b/examples/32_multivariable_streams/run_multivariable_streams.py new file mode 100644 index 000000000..e26ad8585 --- /dev/null +++ b/examples/32_multivariable_streams/run_multivariable_streams.py @@ -0,0 +1,149 @@ +""" +Example 32: Multivariable Streams with Gas Combiner + +This example demonstrates: +1. Multivariable streams - connecting multiple related variables with a single connection +2. Gas stream combiner - combining multiple gas streams with mass-weighted averaging + +Two gas producers with different properties feed into a combiner, which outputs +a single combined stream to a consumer. + +The wellhead_gas_mixture stream includes: +- wellhead_gas_mixture:mass_flow (kg/h): Total mass flow rate +- wellhead_gas_mixture:hydrogen_mass_fraction: Mass fraction of hydrogen +- wellhead_gas_mixture:oxygen_mass_fraction: Mass fraction of oxygen +- wellhead_gas_mixture:temperature (K): Temperature +- wellhead_gas_mixture:pressure (bar): Pressure +""" + +import numpy as np +import matplotlib.pyplot as plt + +from h2integrate.core.h2integrate_model import H2IntegrateModel + + +# Create and setup the H2Integrate model +model = H2IntegrateModel("32_multivariable_streams.yaml") + +model.setup() + +model.run() + + +# Get outputs from gas producers +print("\nGas Producer 1 Outputs:") +flow1 = model.prob.get_val("gas_producer_1.wellhead_gas_mixture:mass_flow_out", units="kg/h") +temp1 = model.prob.get_val("gas_producer_1.wellhead_gas_mixture:temperature_out", units="K") +pres1 = model.prob.get_val("gas_producer_1.wellhead_gas_mixture:pressure_out", units="bar") +print(f" Flow: mean={flow1.mean():.2f} kg/h") +print(f" Temperature: mean={temp1.mean():.1f} K") +print(f" Pressure: mean={pres1.mean():.2f} bar") + +print("\nGas Producer 2 Outputs:") +flow2 = model.prob.get_val("gas_producer_2.wellhead_gas_mixture:mass_flow_out", units="kg/h") +temp2 = model.prob.get_val("gas_producer_2.wellhead_gas_mixture:temperature_out", units="K") +pres2 = model.prob.get_val("gas_producer_2.wellhead_gas_mixture:pressure_out", units="bar") +print(f" Flow: mean={flow2.mean():.2f} kg/h") +print(f" Temperature: mean={temp2.mean():.1f} K") +print(f" Pressure: mean={pres2.mean():.2f} bar") + +# Get outputs from combiner +print("\nGas Combiner Outputs (mass-weighted average):") +flow_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:mass_flow_out", units="kg/h") +temp_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:temperature_out", units="K") +pres_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:pressure_out", units="bar") +h2_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:hydrogen_mass_fraction_out") +print(f" Total Flow: mean={flow_out.mean():.2f} kg/h (sum of inputs)") +print(f" Temperature: mean={temp_out.mean():.1f} K (weighted avg)") +print(f" Pressure: mean={pres_out.mean():.2f} bar (weighted avg)") +print(f" H2 Fraction: mean={h2_out.mean():.3f} (weighted avg)") + +# Get derived outputs from gas_consumer +print("\nGas Consumer Derived Outputs:") +h2_mass_flow = model.prob.get_val("gas_consumer.hydrogen_out", units="kg/h") +total_consumed = model.prob.get_val("gas_consumer.total_gas_consumed", units="kg") +avg_temp = model.prob.get_val("gas_consumer.avg_temperature", units="K") +avg_pressure = model.prob.get_val("gas_consumer.avg_pressure", units="bar") +print(f" H2 Mass Flow: mean={h2_mass_flow.mean():.2f} kg/h") +print(f" Total Gas Consumed: {total_consumed[0]:,.0f} kg") +print(f" Avg Temperature: {avg_temp[0]:.1f} K") +print(f" Avg Pressure: {avg_pressure[0]:.2f} bar") + +# Time axis in hours +n_timesteps = len(flow1) +time_hours = np.arange(n_timesteps) + +# Create figure with 3 subplots sharing x-axis +fig, (ax1, ax2, ax3) = plt.subplots(3, 1, figsize=(12, 10), sharex=True) +fig.suptitle("Gas Stream Time History", fontsize=14, fontweight="bold") + +# Colors for the two streams +color1 = "#1f77b4" # Blue for stream 1 +color2 = "#ff7f0e" # Orange for stream 2 +color_total = "#2ca02c" # Green for total/combined + +# ------------------------------------------------------------ +# Plot 1: Mass Flow Rates (stacked area) +# ------------------------------------------------------------ +# Stack the flows - stream 1 on bottom, stream 2 on top +ax1.fill_between(time_hours, 0, flow1, color=color1, alpha=0.7, label="Stream 1") +ax1.fill_between(time_hours, flow1, flow1 + flow2, color=color2, alpha=0.7, label="Stream 2") +ax1.plot(time_hours, flow_out, color=color_total, linewidth=2, label="Total (Combined)") + +# Add in-area labels at the center of each region +mid_time = n_timesteps // 2 +ax1.text( + mid_time, + flow1.mean() / 2, + "Producer 1", + ha="center", + va="center", + fontsize=10, + fontweight="bold", + color="white", +) +ax1.text( + mid_time, + flow1.mean() + flow2.mean() / 2, + "Producer 2", + ha="center", + va="center", + fontsize=10, + fontweight="bold", + color="white", +) + +ax1.set_ylabel("Mass Flow Rate (kg/h)") +ax1.set_title("Mass Flow Rates") +ax1.legend(loc="upper right") +ax1.grid(True, alpha=0.3) +ax1.set_ylim(bottom=0) + +# ------------------------------------------------------------ +# Plot 2: Pressure +# ------------------------------------------------------------ +ax2.plot(time_hours, pres1, color=color1, linewidth=1.5, label="Stream 1", linestyle="--") +ax2.plot(time_hours, pres2, color=color2, linewidth=1.5, label="Stream 2", linestyle="--") +ax2.plot(time_hours, pres_out, color=color_total, linewidth=2, label="Combined") + +ax2.set_ylabel("Pressure (bar)") +ax2.set_title("Pressure") +ax2.legend(loc="upper right") +ax2.grid(True, alpha=0.3) + +# ------------------------------------------------------------ +# Plot 3: Temperature +# ------------------------------------------------------------ +ax3.plot(time_hours, temp1, color=color1, linewidth=1.5, label="Stream 1", linestyle="--") +ax3.plot(time_hours, temp2, color=color2, linewidth=1.5, label="Stream 2", linestyle="--") +ax3.plot(time_hours, temp_out, color=color_total, linewidth=2, label="Combined") + +ax3.set_xlabel("Time (hours)") +ax3.set_ylabel("Temperature (K)") +ax3.set_title("Temperature") +ax3.legend(loc="upper right") +ax3.grid(True, alpha=0.3) + +# Adjust layout and save +plt.tight_layout() +plt.show() diff --git a/examples/32_multivariable_streams/tech_config.yaml b/examples/32_multivariable_streams/tech_config.yaml new file mode 100644 index 000000000..ce5f5db7c --- /dev/null +++ b/examples/32_multivariable_streams/tech_config.yaml @@ -0,0 +1,60 @@ +name: technology_config +description: > + Technology configuration for multivariable streams example. + Demonstrates two gas producers feeding into a combiner, which then + feeds a consumer. The combiner uses mass-weighted averaging. +technologies: + gas_producer_1: + performance_model: + model: SimpleGasProducerPerformance + cost_model: + model: SimpleGasProducerCost + model_inputs: + performance_parameters: + base_flow_rate: 150.0 # kg/hr + base_temperature: 310.0 # K + base_pressure: 12.0 # bar + flow_variation: 45.0 # ±45 kg/hr variation + temp_variation: 15.0 # ±15 K variation + pressure_variation: 2.0 # ±2 bar variation + random_seed: 42 # for reproducibility + cost_parameters: + capex: 1000000.0 # $1M + opex: 50000.0 # $50k/year + cost_year: 2024 + gas_producer_2: + performance_model: + model: SimpleGasProducerPerformance + cost_model: + model: SimpleGasProducerCost + model_inputs: + performance_parameters: + base_flow_rate: 100.0 # kg/hr - different flow rate + base_temperature: 350.0 # K - hotter stream + base_pressure: 8.0 # bar - lower pressure + flow_variation: 25.0 # ±25 kg/hr variation + temp_variation: 20.0 # ±20 K variation + pressure_variation: 1.5 # ±1.5 bar variation + random_seed: 123 # different seed for different random pattern + cost_parameters: + capex: 800000.0 # $800k + opex: 40000.0 # $40k/year + cost_year: 2024 + gas_combiner: + performance_model: + model: GasStreamCombinerPerformanceModel + model_inputs: + performance_parameters: + commodity: wellhead_gas_mixture + in_streams: 2 + gas_consumer: + performance_model: + model: SimpleGasConsumerPerformance + cost_model: + model: SimpleGasConsumerCost + model_inputs: + performance_parameters: {} + cost_parameters: + capex: 2000000.0 # $2M + opex: 100000.0 # $100k/year + cost_year: 2024 diff --git a/examples/test/conftest.py b/examples/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/examples/test/conftest.py +++ b/examples/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/examples/test/test_all_examples.py b/examples/test/test_all_examples.py index efe524ee6..e5a9916e4 100644 --- a/examples/test/test_all_examples.py +++ b/examples/test/test_all_examples.py @@ -1,5 +1,4 @@ import os -import shutil import importlib from pathlib import Path @@ -8,7 +7,7 @@ import pytest import openmdao.api as om -from h2integrate import ROOT_DIR, EXAMPLE_DIR +from h2integrate import ROOT_DIR from h2integrate.core.file_utils import load_yaml from h2integrate.core.h2integrate_model import H2IntegrateModel @@ -16,18 +15,6 @@ ROOT = Path(__file__).parents[1] -@pytest.fixture(scope="function") -def temp_copy_of_example(temp_dir, example_folder, resource_example_folder): - original = EXAMPLE_DIR / example_folder - shutil.copytree(original, temp_dir / example_folder, dirs_exist_ok=True) - if resource_example_folder is not None: - secondary = EXAMPLE_DIR / resource_example_folder - shutil.copytree(secondary, temp_dir / resource_example_folder, dirs_exist_ok=True) - os.chdir(temp_dir / example_folder) - yield temp_dir / example_folder - os.chdir(Path(__file__).parent) - - # docs fencepost start: DO NOT REMOVE @pytest.mark.integration @pytest.mark.parametrize("example_folder,resource_example_folder", [("01_onshore_steel_mn", None)]) @@ -88,7 +75,7 @@ def test_steel_example(subtests, temp_copy_of_example): with subtests.test("Check H2 Storage capacity"): assert ( - pytest.approx(model.prob.get_val("h2_storage.max_capacity", units="kg"), rel=1e-3) + pytest.approx(model.prob.get_val("h2_storage.storage_capacity", units="kg"), rel=1e-3) == 2559669.7759292 ) @@ -388,6 +375,13 @@ def test_ammonia_synloop_example(subtests, temp_copy_of_example): ) == 1.1018637096646757 ) + with subtests.test("Check LCON"): + assert ( + pytest.approx( + model.prob.get_val("finance_subgroup_n2.LCON", units="USD/t")[0], rel=1e-6 + ) + == 5.03140888 + ) @pytest.mark.integration @@ -751,6 +745,106 @@ def test_hybrid_energy_plant_example(subtests, temp_copy_of_example): assert model.prob.get_val("finance_subgroup_default.LCOE", units="USD/(MW*h)")[0] < 83.2123 +@pytest.mark.integration +@pytest.mark.parametrize( + "example_folder,resource_example_folder", [("13_dispatch_for_electrolyzer", None)] +) +def test_electrolyzer_demand(subtests, temp_copy_of_example): + from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml + + example_folder = temp_copy_of_example + + tech_config = load_tech_yaml(example_folder / "tech_config.yaml") + plant_config = load_plant_yaml(example_folder / "plant_config.yaml") + driver_config = load_driver_yaml(example_folder / "driver_config.yaml") + + # modify all the output folders to be full filepaths + driver_config["general"]["folder_output"] = str(Path(example_folder / "outputs").absolute()) + tech_config["technologies"]["distributed_wind_plant"]["model_inputs"]["performance_parameters"][ + "cache_dir" + ] = example_folder / "cache" + + input_config = { + "plant_config": plant_config, + "technology_config": tech_config, + "driver_config": driver_config, + } + + h2i = H2IntegrateModel(input_config) + + h2i.setup() + + electrolyzer_capacity_MW = 60 + + # Set the battery demand as 10% of the electrolyzer capacity + h2i.prob.set_val("battery.electricity_demand", 0.1 * electrolyzer_capacity_MW, units="MW") + h2i.prob.set_val("elec_load_demand.electricity_demand", electrolyzer_capacity_MW, units="MW") + + h2i.run() + + lcoe_gen = h2i.prob.get_val("finance_subgroup_generated_electricity.LCOE", units="USD/(MW*h)")[ + 0 + ] + lcoe_sys = h2i.prob.get_val("finance_subgroup_electrical_system.LCOE", units="USD/(MW*h)")[0] + lcoe_load = h2i.prob.get_val("finance_subgroup_electrical_load.LCOE", units="USD/(MW*h)")[0] + lcoh = h2i.prob.get_val("finance_subgroup_hydrogen.LCOH", units="USD/kg")[0] + + with subtests.test("LCOE of electricity generated"): + assert pytest.approx(217.53810477, rel=1e-6) == lcoe_gen + + with subtests.test("LCOE of electrical load (battery for min power)"): + assert pytest.approx(236.15820250, rel=1e-6) == lcoe_load + + with subtests.test("LCOE of electrical system (battery for min power)"): + assert pytest.approx(235.43108263, rel=1e-6) == lcoe_sys + + with subtests.test("LCOH (battery for min power)"): + assert pytest.approx(16.02862959, rel=1e-3) == lcoh + + with subtests.test("Electrolyzer capacity factor (Year 0) (battery for min power)"): + elec_cf_yr0 = h2i.prob.get_val("electrolyzer.capacity_factor", units="percent")[0] + assert pytest.approx(25.43832863, rel=1e-3) == elec_cf_yr0 + + with subtests.test("Electrical load capacity factor (battery for min power)"): + load_cf = h2i.prob.get_val("elec_load_demand.capacity_factor", units="percent")[0] + assert pytest.approx(24.29709189, rel=1e-6) == load_cf + + with subtests.test("Electricity to electrolyzer (battery for min power)"): + electricity_to_electrolyzer = h2i.prob.get_val("electrolyzer.electricity_in", "MW").sum() + assert pytest.approx(127705.51498100, rel=1e-6) == electricity_to_electrolyzer + # Re-run where we set the battery demand equal to the electrolyzer capacity + + h2i.prob.set_val("battery.electricity_demand", electrolyzer_capacity_MW, units="MW") + h2i.prob.set_val("elec_load_demand.electricity_demand", electrolyzer_capacity_MW, units="MW") + + h2i.run() + + lcoe_sys = h2i.prob.get_val("finance_subgroup_electrical_system.LCOE", units="USD/(MW*h)")[0] + lcoe_load = h2i.prob.get_val("finance_subgroup_electrical_load.LCOE", units="USD/(MW*h)")[0] + lcoh = h2i.prob.get_val("finance_subgroup_hydrogen.LCOH", units="USD/kg")[0] + + with subtests.test("LCOE of electrical load (battery for full power)"): + assert pytest.approx(235.46701455, rel=1e-6) == lcoe_load + + with subtests.test("LCOE of electrical system (battery for full power)"): + assert pytest.approx(235.40978870, rel=1e-6) == lcoe_sys + + with subtests.test("LCOH (battery for full power)"): + assert pytest.approx(17.21768237, rel=1e-6) == lcoh + + with subtests.test("Electrolyzer capacity factor (Year 0) (battery for full power)"): + elec_cf_yr0 = h2i.prob.get_val("electrolyzer.capacity_factor", units="percent")[0] + assert pytest.approx(24.96971302, rel=1e-6) == elec_cf_yr0 + + with subtests.test("Electrical load capacity factor (battery for full power)"): + load_cf = h2i.prob.get_val("elec_load_demand.capacity_factor", units="percent")[0] + assert pytest.approx(24.36841338, rel=1e-6) == load_cf + + with subtests.test("Electricity to electrolyzer (battery for full power)"): + electricity_to_electrolyzer = h2i.prob.get_val("electrolyzer.electricity_in", "MW").sum() + assert pytest.approx(128080.38070512, rel=1e-6) == electricity_to_electrolyzer + + @pytest.mark.integration @pytest.mark.parametrize( "example_folder,resource_example_folder", [("14_wind_hydrogen_dispatch", None)] @@ -827,6 +921,14 @@ def test_hydrogen_dispatch_example(subtests, temp_copy_of_example): ) == 7.564000289456695 ) + with subtests.test("Check LCOO"): + assert ( + pytest.approx( + model.prob.get_val("finance_subgroup_oxygen.LCOO", units="USD/kg")[0], + rel=1e-5, + ) + == 0.666523050 + ) @pytest.mark.integration @@ -850,8 +952,6 @@ def test_wind_wave_oae_example(subtests, temp_copy_of_example): model.post_process() # Subtests for checking specific values - # Note: These are placeholder values. Update with actual values after running the test - # when MCM package is properly installed and configured with subtests.test("Check LCOC"): assert ( pytest.approx( @@ -887,8 +987,6 @@ def test_wind_wave_oae_example_with_finance(subtests, temp_copy_of_example): model.post_process() # Subtests for checking specific values - # Note: These are placeholder values. Update with actual values after running the test - # when MCM package is properly installed and configured with subtests.test("Check LCOE"): assert ( pytest.approx( @@ -901,7 +999,7 @@ def test_wind_wave_oae_example_with_finance(subtests, temp_copy_of_example): with subtests.test("Check Carbon Credit"): assert ( pytest.approx(model.prob.get_val("oae.carbon_credit_value", units="USD/t")[0], rel=1e-3) - == 574.37466 + == 1026.4684117 ) @@ -921,9 +1019,11 @@ def test_natural_gas_example(subtests, temp_copy_of_example): model.post_process() solar_aep = sum(model.prob.get_val("solar.electricity_out", units="kW")) - solar_bat_out_total = sum(model.prob.get_val("battery.electricity_out", units="kW")) + solar_bat_out_total = sum( + model.prob.get_val("electrical_load_demand.electricity_out", units="kW") + ) solar_curtailed_total = sum( - model.prob.get_val("battery.electricity_unused_commodity", units="kW") + model.prob.get_val("electrical_load_demand.unused_electricity_out", units="kW") ) renewable_subgroup_total_electricity = ( @@ -954,7 +1054,9 @@ def test_natural_gas_example(subtests, temp_copy_of_example): # NOTE: battery output power is not included in any of the financials - pre_ng_missed_load = model.prob.get_val("battery.electricity_unmet_demand", units="kW") + pre_ng_missed_load = model.prob.get_val( + "electrical_load_demand.unmet_electricity_demand_out", units="kW" + ) ng_electricity_demand = model.prob.get_val("natural_gas_plant.electricity_demand", units="kW") ng_electricity_production = model.prob.get_val("natural_gas_plant.electricity_out", units="kW") bat_init_charge = 200000.0 * 0.1 # max capacity in kW and initial charge rate percentage @@ -1069,6 +1171,10 @@ def test_natural_gas_example(subtests, temp_copy_of_example): expected_opex = 4.2 * ng_consumed.sum() # price = 4.2 $/MMBtu assert pytest.approx(ng_opex, rel=1e-6) == expected_opex + with subtests.test("Check feedstock capacity factor"): + ng_cf = model.prob.get_val("ng_feedstock.capacity_factor", units="unitless").mean() + assert pytest.approx(ng_cf, rel=1e-6) == 0.5676562763739097 + @pytest.mark.integration @pytest.mark.parametrize( @@ -1231,7 +1337,7 @@ def test_pyomo_heuristic_dispatch_example(subtests, temp_copy_of_example): assert wind_electricity.sum() == pytest.approx(battery_electricity_in.sum(), rel=1e-6) with subtests.test("Check demand satisfaction"): - electricity_out = model.prob.get_val("battery.electricity_out", units="MW") + electricity_out = model.prob.get_val("electrical_load_demand.electricity_out", units="MW") # Battery output should try to meet the 50 MW constant demand # Average output should be close to demand when there's sufficient generation assert electricity_out.mean() >= 45 # MW @@ -1265,14 +1371,14 @@ def test_pyomo_heuristic_dispatch_example(subtests, temp_copy_of_example): # Subtest for electricity unused_commodity with subtests.test("Check electricity unused commodity"): electricity_unused_commodity = np.linalg.norm( - model.prob.get_val("battery.unused_electricity_out", units="MW") + model.prob.get_val("electrical_load_demand.unused_electricity_out", units="MW") ) assert electricity_unused_commodity == pytest.approx(36590.067573337095, rel=1e-6) # Subtest for unmet demand with subtests.test("Check electricity unmet demand"): electricity_unmet_demand = np.linalg.norm( - model.prob.get_val("battery.unmet_electricity_demand_out", units="MW") + model.prob.get_val("electrical_load_demand.unmet_electricity_demand_out", units="MW") ) assert electricity_unmet_demand == pytest.approx(711.1997294551337, rel=1e-6) @@ -1322,7 +1428,7 @@ def test_simple_dispatch_example(subtests, temp_copy_of_example): # Test battery storage functionality with subtests.test("Check battery SOC bounds"): - soc = model.prob.get_val("battery.electricity_soc", units="unitless") + soc = model.prob.get_val("battery.SOC", units="unitless") # SOC should stay within configured bounds (10% to 100%) assert all(soc >= 0.1) assert all(soc <= 1.0) @@ -1336,7 +1442,7 @@ def test_simple_dispatch_example(subtests, temp_copy_of_example): assert pytest.approx(wind_electricity.sum(), rel=1e-6) == battery_electricity_in.sum() with subtests.test("Check demand satisfaction"): - electricity_out = model.prob.get_val("battery.electricity_out", units="MW") + electricity_out = model.prob.get_val("electrical_load_demand.electricity_out", units="MW") # Battery output should try to meet the 5 MW constant demand # Average output should be close to demand when there's sufficient generation assert electricity_out.mean() > 4.20 # MW @@ -1377,14 +1483,14 @@ def test_simple_dispatch_example(subtests, temp_copy_of_example): # Subtest for electricity unused_commodity with subtests.test("Check electricity unused commodity"): electricity_unused_commodity = np.linalg.norm( - model.prob.get_val("battery.electricity_unused_commodity", units="kW") + model.prob.get_val("electrical_load_demand.unused_electricity_out", units="kW") ) assert pytest.approx(electricity_unused_commodity, rel=1e-6) == 412531.73840450746 # Subtest for unmet demand with subtests.test("Check electricity unmet demand"): electricity_unmet_demand = np.linalg.norm( - model.prob.get_val("battery.electricity_unmet_demand", units="kW") + model.prob.get_val("electrical_load_demand.unmet_electricity_demand_out", units="kW") ) assert pytest.approx(electricity_unmet_demand, rel=1e-6) == 165604.70758669 @@ -1417,8 +1523,10 @@ def test_simple_dispatch_example(subtests, temp_copy_of_example): * 8760 ) battery_electricity_performance = ( - model.prob.get_val("battery.rated_electricity_production", units="MW*h/year")[0] - * model.prob.get_val("battery.capacity_factor", units="unitless").mean() + model.prob.get_val( + "electrical_load_demand.rated_electricity_production", units="MW*h/year" + )[0] + * model.prob.get_val("electrical_load_demand.capacity_factor", units="unitless").mean() * 8760 ) assert ( @@ -1482,7 +1590,9 @@ def test_windard_pv_battery_dispatch_example(subtests, temp_copy_of_example): ) with subtests.test("Check demand satisfaction"): - dispatched_electricity = model.prob.get_val("battery.electricity_out", units="MW") + dispatched_electricity = model.prob.get_val( + "electrical_load_demand.electricity_out", units="MW" + ) # Demand should be met for the last part of the year assert np.allclose( dispatched_electricity[8700:], @@ -1520,16 +1630,15 @@ def test_windard_pv_battery_dispatch_example(subtests, temp_copy_of_example): # Subtest for electricity curtailed with subtests.test("Check electricity curtailed"): electricity_curtailed = model.prob.get_val( - "battery.electricity_unused_commodity", units="MW" + "electrical_load_demand.unused_electricity_out", units="MW" ).sum() - # import pdb; pdb.set_trace() assert electricity_curtailed == pytest.approx(20344.97639127703, rel=1e-6) # Subtest for missed load with subtests.test("Check electricity missed load"): electricity_missed_load = np.linalg.norm( - model.prob.get_val("battery.electricity_unmet_demand", units="MW") + model.prob.get_val("electrical_load_demand.unmet_electricity_demand_out", units="MW") ) assert electricity_missed_load == pytest.approx(1403.5372787817894) @@ -1742,6 +1851,69 @@ def test_sweeping_solar_sites_doe(subtests, temp_copy_of_example): assert len(list(set(res_df["LCOE"].to_list()))) == len(res_df) +@pytest.mark.integration +@pytest.mark.parametrize( + "example_folder,resource_example_folder", + [("23_solar_wind_ng_demand", "11_hybrid_energy_plant/")], +) +def test_ng_demand_example(subtests, temp_copy_of_example): + example_folder = temp_copy_of_example + + generic_demand_fpath = example_folder / "solar_wind_ng_demand.yaml" + # Create a H2I model + h2i_generic = H2IntegrateModel(generic_demand_fpath) + h2i_generic.run() + + lcoe_renewables_generic = h2i_generic.prob.get_val( + "finance_subgroup_renewables.LCOE_profast_lco", units="USD/(MW*h)" + ) + npv_renewables_generic = h2i_generic.prob.get_val( + "finance_subgroup_renewables.NPV_electricity__profast_npv", units="MUSD" + ) + lcoe_ng_generic = h2i_generic.prob.get_val( + "finance_subgroup_natural_gas.LCOE", units="USD/(MW*h)" + ) + lcoe_electricity_generic = h2i_generic.prob.get_val( + "finance_subgroup_electricity.LCOE", units="USD/(MW*h)" + ) + + with subtests.test("Renewables LCOE with generic demand"): + assert pytest.approx(65.25367747, rel=1e-6) == lcoe_renewables_generic[0] + with subtests.test("Renewables NPV with generic demand"): + assert pytest.approx(-36.0408322, rel=1e-6) == npv_renewables_generic[0] + with subtests.test("Natural gas LCOE with generic demand"): + assert pytest.approx(60.30971126, rel=1e-6) == lcoe_ng_generic[0] + with subtests.test("Electricity LCOE with generic demand"): + assert pytest.approx(62.95948605, rel=1e-6) == lcoe_electricity_generic[0] + + # Run with the flexible load demand + flexible_demand_fpath = example_folder / "solar_wind_ng_flexible_demand.yaml" + h2i_flexible = H2IntegrateModel(flexible_demand_fpath) + h2i_flexible.run() + + lcoe_renewables_flexible = h2i_flexible.prob.get_val( + "finance_subgroup_renewables.LCOE_profast_lco", units="USD/(MW*h)" + ) + npv_renewables_flexible = h2i_flexible.prob.get_val( + "finance_subgroup_renewables.NPV_electricity__profast_npv", units="MUSD" + ) + lcoe_ng_flexible = h2i_flexible.prob.get_val( + "finance_subgroup_natural_gas.LCOE", units="USD/(MW*h)" + ) + lcoe_electricity_flexible = h2i_flexible.prob.get_val( + "finance_subgroup_electricity.LCOE", units="USD/(MW*h)" + ) + + with subtests.test("Renewables LCOE with flexible demand"): + assert pytest.approx(65.25367747, rel=1e-6) == lcoe_renewables_flexible[0] + with subtests.test("Renewables NPV with flexible demand"): + assert pytest.approx(-36.0408322, rel=1e-6) == npv_renewables_flexible[0] + with subtests.test("Natural gas LCOE with flexible demand"): + assert pytest.approx(115.92792486, rel=1e-6) == lcoe_ng_flexible[0] + with subtests.test("Electricity LCOE with flexible demand"): + assert pytest.approx(76.39162926, rel=1e-6) == lcoe_electricity_flexible[0] + + @pytest.mark.integration @pytest.mark.parametrize("example_folder,resource_example_folder", [("26_floris", None)]) def test_floris_example(subtests, temp_copy_of_example): @@ -1912,9 +2084,13 @@ def test_24_solar_battery_grid_example(subtests, temp_copy_of_example): ) electricity_bought = sum(model.prob.get_val("grid_buy.electricity_out", units="kW")) - battery_missed_load = sum(model.prob.get_val("battery.electricity_unmet_demand", units="kW")) + battery_missed_load = sum( + model.prob.get_val("electrical_load_demand.unmet_electricity_demand_out", units="kW") + ) - battery_curtailed = sum(model.prob.get_val("battery.electricity_unused_commodity", units="kW")) + battery_curtailed = sum( + model.prob.get_val("electrical_load_demand.unused_electricity_out", units="kW") + ) electricity_sold = sum(model.prob.get_val("grid_sell.electricity_in", units="kW")) solar_aep = sum(model.prob.get_val("solar.electricity_out", units="kW")) @@ -1936,8 +2112,11 @@ def test_24_solar_battery_grid_example(subtests, temp_copy_of_example): @pytest.mark.integration -@pytest.mark.parametrize("example_folder,resource_example_folder", [("28_iron_map", None)]) -def test_28_iron_map_example(subtests, temp_copy_of_example): +@pytest.mark.parametrize( + "example_folder,resource_example_folder", [("21_iron_examples/iron_mapping", None)] +) +@pytest.mark.skipif(importlib.util.find_spec("geopandas") is None, reason="`gis` not installed") +def test_iron_mapping_example(subtests, temp_copy_of_example): import geopandas as gpd import matplotlib @@ -1949,19 +2128,19 @@ def test_28_iron_map_example(subtests, temp_copy_of_example): example_folder = temp_copy_of_example # Define filepaths - ex_28_dir = example_folder - ex_28_out_dir = ex_28_dir / "ex_28_out" - ore_prices_filepath = ex_28_dir / "example_ore_prices.csv" + ex_dir = example_folder + ex_out_dir = ex_dir / "ex_out" + ore_prices_filepath = ex_dir / "example_ore_prices.csv" shipping_coords_filepath = ROOT_DIR / "converters/iron/martin_transport/shipping_coords.csv" - shipping_prices_filepath = ex_28_dir / "example_shipping_prices.csv" - cases_csv_fpath = ex_28_out_dir / "cases.csv" - ex_png_fpath = ex_28_out_dir / "example_28_iron_map.png" + shipping_prices_filepath = ex_dir / "example_shipping_prices.csv" + cases_csv_fpath = ex_out_dir / "cases.csv" + ex_png_fpath = ex_out_dir / "example_iron_map.png" ex_png_fpath.unlink(missing_ok=True) # Plot LCOI results from cases.sql file, save sql data to csv fig, ax, lcoi_layer_gdf = plot_geospatial_point_heat_map( case_results_fpath=cases_csv_fpath, - metric_to_plot="iron.LCOI (USD/kg)", + metric_to_plot="finance_subgroup_pig_iron.LCOP (USD/kg)", map_preferences={ "figsize": (10, 8), "colorbar_label": "Levelized Cost of\nIron [$/kg]", @@ -2218,11 +2397,13 @@ def test_stimulated_geoh2(subtests, temp_copy_of_example): @pytest.mark.integration -@pytest.mark.parametrize("example_folder,resource_example_folder", [("21_iron_mn_to_il", None)]) -def test_21_iron_dri_eaf_example(subtests, temp_copy_of_example): +@pytest.mark.parametrize( + "example_folder,resource_example_folder", [("21_iron_examples/iron_dri", None)] +) +def test_iron_dri_eaf_example(subtests, temp_copy_of_example): example_folder = temp_copy_of_example - h2i = H2IntegrateModel(example_folder / "21_iron.yaml") + h2i = H2IntegrateModel(example_folder / "single_site_iron.yaml") h2i.run() @@ -2241,12 +2422,12 @@ def test_21_iron_dri_eaf_example(subtests, temp_copy_of_example): @pytest.mark.integration @pytest.mark.parametrize( - "example_folder,resource_example_folder", [("31_iron_electrowinning", None)] + "example_folder,resource_example_folder", [("21_iron_examples/iron_electrowinning", None)] ) -def test_31_iron_electrowinning_example(subtests, temp_copy_of_example): +def test_iron_electrowinning_example(subtests, temp_copy_of_example): example_folder = temp_copy_of_example - model = H2IntegrateModel(example_folder / "31_iron_electrowinning.yaml") + model = H2IntegrateModel(example_folder / "iron_electrowinning.yaml") with subtests.test("Value check on AHE"): model.technology_config["technologies"]["iron_plant"]["model_inputs"]["shared_parameters"][ @@ -2415,6 +2596,7 @@ def test_pyomo_optimized_dispatch_example(subtests, temp_copy_of_example): # TODO: Update with demand module once it is developed model.setup() model.prob.set_val("battery.electricity_demand", demand_profile, units="MW") + model.prob.set_val("electrical_load_demand.electricity_demand", demand_profile, units="MW") # Run the model model.run() @@ -2435,11 +2617,15 @@ def test_pyomo_optimized_dispatch_example(subtests, temp_copy_of_example): # Battery checks with subtests.test("Check battery total electricity produced"): - battery_total = model.prob.get_val("battery.total_electricity_produced", units="kW*h")[0] + battery_total = model.prob.get_val( + "electrical_load_demand.total_electricity_produced", units="kW*h" + )[0] assert battery_total == pytest.approx(645_787_407.02, rel=1e-3) with subtests.test("Check battery capacity factor"): - battery_cf = model.prob.get_val("battery.capacity_factor", units="unitless")[0] + battery_cf = model.prob.get_val("electrical_load_demand.capacity_factor", units="unitless")[ + 0 + ] assert battery_cf == pytest.approx(0.7372, rel=1e-3) with subtests.test("Check battery CapEx"): @@ -2486,3 +2672,113 @@ def test_pyomo_optimized_dispatch_example(subtests, temp_copy_of_example): "finance_subgroup_all_electricity.price_electricity", units="USD/(kW*h)" )[0] assert price == pytest.approx(0.134, rel=1e-3) + + +@pytest.mark.integration +@pytest.mark.parametrize("example_folder,resource_example_folder", [("31_tidal", None)]) +def test_tidal_example(subtests, temp_copy_of_example): + example_folder = temp_copy_of_example + + # Create the model + model = H2IntegrateModel(example_folder / "tidal.yaml") + + # # Run the model + model.run() + + with subtests.test("AEP"): + tidal_electricity = model.prob.get_val("tidal.electricity_out", units="GW") + assert tidal_electricity.sum() == pytest.approx(60.625515492, rel=1e-4) + + with subtests.test("Capex"): + capex = model.prob.get_val("tidal.CapEx", units="USD") + assert capex == pytest.approx(123902868.63, rel=1e-4) + + with subtests.test("OpEx"): + OpEx = model.prob.get_val("tidal.OpEx", units="USD/yr") + assert OpEx == pytest.approx(4498582.9, rel=1e-4) + + with subtests.test("LCOE"): + lcoe = model.prob.get_val("finance_subgroup_default.LCOE", units="USD/(kW*h)") + assert lcoe == pytest.approx(0.287, rel=1e-4) + + +@pytest.mark.integration +@pytest.mark.parametrize( + "example_folder,resource_example_folder", [("32_multivariable_streams", None)] +) +def test_multivariable_streams_example(subtests, temp_copy_of_example): + example_folder = temp_copy_of_example + + # Create the model + model = H2IntegrateModel(example_folder / "32_multivariable_streams.yaml") + + # Run the model + model.run() + + # Gas Producer 1 + with subtests.test("Producer 1 flow"): + flow1 = model.prob.get_val( + "gas_producer_1.wellhead_gas_mixture:mass_flow_out", units="kg/h" + ) + assert flow1.mean() == pytest.approx(149.70, rel=1e-3) + + with subtests.test("Producer 1 temperature"): + temp1 = model.prob.get_val("gas_producer_1.wellhead_gas_mixture:temperature_out", units="K") + assert temp1.mean() == pytest.approx(310.0, rel=1e-3) + + with subtests.test("Producer 1 pressure"): + pres1 = model.prob.get_val("gas_producer_1.wellhead_gas_mixture:pressure_out", units="bar") + assert pres1.mean() == pytest.approx(12.02, rel=1e-3) + + # Gas Producer 2 + with subtests.test("Producer 2 flow"): + flow2 = model.prob.get_val( + "gas_producer_2.wellhead_gas_mixture:mass_flow_out", units="kg/h" + ) + assert flow2.mean() == pytest.approx(99.68, rel=1e-3) + + with subtests.test("Producer 2 temperature"): + temp2 = model.prob.get_val("gas_producer_2.wellhead_gas_mixture:temperature_out", units="K") + assert temp2.mean() == pytest.approx(350.0, rel=1e-3) + + with subtests.test("Producer 2 pressure"): + pres2 = model.prob.get_val("gas_producer_2.wellhead_gas_mixture:pressure_out", units="bar") + assert pres2.mean() == pytest.approx(8.01, rel=1e-3) + + # Gas Combiner + with subtests.test("Combiner total flow"): + flow_out = model.prob.get_val( + "gas_combiner.wellhead_gas_mixture:mass_flow_out", units="kg/h" + ) + assert flow_out.mean() == pytest.approx(249.38, rel=1e-3) + + with subtests.test("Combiner temperature"): + temp_out = model.prob.get_val( + "gas_combiner.wellhead_gas_mixture:temperature_out", units="K" + ) + assert temp_out.mean() == pytest.approx(326.1, rel=1e-3) + + with subtests.test("Combiner pressure"): + pres_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:pressure_out", units="bar") + assert pres_out.mean() == pytest.approx(10.40, rel=1e-3) + + with subtests.test("Combiner H2 fraction"): + h2_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:hydrogen_mass_fraction_out") + assert h2_out.mean() == pytest.approx(0.800, rel=1e-3) + + # Gas Consumer + with subtests.test("Consumer H2 mass flow"): + h2_mass_flow = model.prob.get_val("gas_consumer.hydrogen_out", units="kg/h") + assert h2_mass_flow.mean() == pytest.approx(199.55, rel=1e-3) + + with subtests.test("Consumer total gas consumed"): + total_consumed = model.prob.get_val("gas_consumer.total_gas_consumed", units="kg") + assert total_consumed[0] == pytest.approx(2_184_570, rel=1e-3) + + with subtests.test("Consumer avg temperature"): + avg_temp = model.prob.get_val("gas_consumer.avg_temperature", units="K") + assert avg_temp[0] == pytest.approx(326.1, rel=1e-3) + + with subtests.test("Consumer avg pressure"): + avg_pres = model.prob.get_val("gas_consumer.avg_pressure", units="bar") + assert avg_pres[0] == pytest.approx(10.40, rel=1e-3) diff --git a/h2integrate/__init__.py b/h2integrate/__init__.py index 1d00c0667..6f5253a1d 100644 --- a/h2integrate/__init__.py +++ b/h2integrate/__init__.py @@ -1,6 +1,6 @@ from pathlib import Path -__version__ = "0.7.2" +__version__ = "0.8.0" ROOT_DIR = Path(__file__).resolve().parent EXAMPLE_DIR = ROOT_DIR.parent / "examples" diff --git a/h2integrate/control/control_rules/converters/generic_converter.py b/h2integrate/control/control_rules/converters/generic_converter.py index ab069bc4e..fc18bb39f 100644 --- a/h2integrate/control/control_rules/converters/generic_converter.py +++ b/h2integrate/control/control_rules/converters/generic_converter.py @@ -9,6 +9,11 @@ class PyomoDispatchGenericConverter(PyomoRuleBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = PyomoRuleBaseConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "dispatch_rule"), @@ -26,6 +31,10 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, tech_name: str): variables are created. """ + rate_units_pyo_str = "/".join( + f"pyo.units.{u}" for u in self.config.commodity_rate_units.split("/") + ) + setattr( pyomo_model, f"{tech_name}_{self.config.commodity}", @@ -33,7 +42,7 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, tech_name: str): doc=f"{self.config.commodity} generation \ from {tech_name} [{self.config.commodity_rate_units}]", domain=pyo.NonNegativeReals, - units=eval("pyo.units." + self.config.commodity_rate_units), + units=eval(rate_units_pyo_str), initialize=0.0, ), ) diff --git a/h2integrate/control/control_rules/converters/generic_converter_min_operating_cost.py b/h2integrate/control/control_rules/converters/generic_converter_min_operating_cost.py index 1dd66d987..56cd25d47 100644 --- a/h2integrate/control/control_rules/converters/generic_converter_min_operating_cost.py +++ b/h2integrate/control/control_rules/converters/generic_converter_min_operating_cost.py @@ -35,6 +35,14 @@ def __init__( # names and units in the Pyomo model self.commodity_name = commodity_info["commodity_name"] self.commodity_storage_units = commodity_info["commodity_storage_units"] + pyo.units.load_definitions_from_strings(["USD = [currency]"]) + + rate_units_pyo_str = "/".join( + f"pyo.units.{u}" for u in self.commodity_storage_units.split("/") + ) + amount_units_pyo_str = f"({rate_units_pyo_str})*pyo.units.h" + self.rate_units_pyo = eval(rate_units_pyo_str) + self.cost_units_per_amount_pyo = eval(f"pyo.units.USD / ({amount_units_pyo_str})") # The Pyomo model that this class builds off of, where all of the variables, parameters, # constraints, and ports will be added to. @@ -51,14 +59,14 @@ def __init__( # The units of this are in hours, so half an hour would be 0.5, etc. self.time_duration = [time_duration] * len(self.blocks.index_set()) - def initialize_parameters( - self, commodity_in: list, commodity_demand: list, dispatch_inputs: dict - ): + def initialize_parameters(self, inputs: dict, dispatch_inputs: dict): """Initialize parameters for optimization model Args: - commodity_in (list): List of generated commodity in for this time slice. - commodity_demand (list): The demanded commodity for this time slice. + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity}_in" : Available generated commodity profile. + f"{commodity}_demand" : Demanded commodity output profile. dispatch_inputs (dict): Dictionary of the dispatch input parameters from config """ @@ -70,7 +78,7 @@ def dispatch_block_rule_function(self, pyomo_model: pyo.ConcreteModel): This method sets up all model elements (parameters, variables, constraints, and ports) associated with a technology block within the dispatch model. - It is typically called in the setup_pyomo() method of the PyomoControllerBaseClass. + It is typically called in the setup_pyomo() method of the PyomoStorageControllerBaseClass. Args: pyomo_model (pyo.ConcreteModel): The Pyomo model to which the technology @@ -95,12 +103,13 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel): pyomo_model (pyo.ConcreteModel): pyomo_model the variables should be added to. """ + tech_var = pyo.Var( doc=f"{self.commodity_name} production \ from {self.block_set_name} [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, bounds=(0, pyomo_model.available_production), - units=eval("pyo.units." + self.commodity_storage_units), + units=self.rate_units_pyo, initialize=0.0, ) @@ -136,6 +145,7 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel): ################################## # Parameters # ################################## + pyomo_model.time_duration = pyo.Param( doc=f"{pyomo_model.name} time step [hour]", default=1.0, @@ -148,14 +158,14 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel): default=0.0, within=pyo.NonNegativeReals, mutable=True, - units=eval(f"pyo.units.USD / pyo.units.{self.commodity_storage_units}h"), + units=self.cost_units_per_amount_pyo, ) pyomo_model.available_production = pyo.Param( doc=f"Available production for the generator [{self.commodity_storage_units}]", default=0.0, within=pyo.Reals, mutable=True, - units=eval(f"pyo.units.{self.commodity_storage_units}"), + units=self.rate_units_pyo, ) def _create_constraints(self, pyomo_model: pyo.ConcreteModel): @@ -233,7 +243,7 @@ def _create_hybrid_variables(self, hybrid_model: pyo.ConcreteModel, tech_name: s doc=f"{self.commodity_name} production \ from {tech_name} [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=eval("pyo.units." + self.commodity_storage_units), + units=self.rate_units_pyo, initialize=0.0, ) diff --git a/h2integrate/control/control_rules/plant_dispatch_model.py b/h2integrate/control/control_rules/plant_dispatch_model.py index 298ff6ccd..a28f29007 100644 --- a/h2integrate/control/control_rules/plant_dispatch_model.py +++ b/h2integrate/control/control_rules/plant_dispatch_model.py @@ -98,21 +98,20 @@ def dispatch_block_rule(self, hybrid, t): ################################## self._create_hybrid_constraints(hybrid, t) - def initialize_parameters( - self, commodity_in: list, commodity_demand: list, dispatch_params: dict - ): + def initialize_parameters(self, inputs: dict, dispatch_params: dict): """Initialize parameters for optimization model - Args: - commodity_in (list): List of generated commodity in for this time slice. - commodity_demand (list): The demanded commodity for this time slice. - dispatch_inputs (dict): Dictionary of the dispatch input parameters from config + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity}_in" : Available generated commodity profile. + f"{commodity}_demand" : Demanded commodity output profile. + dispatch_inputs (dict): Dictionary of the dispatch input parameters from config """ self.time_weighting_factor = self.time_weighting_factor_input # Discount factor for tech in self.source_techs: pyomo_block = self.tech_dispatch_models.__getattribute__(f"{tech}_rule") - pyomo_block.initialize_parameters(commodity_in, commodity_demand, dispatch_params) + pyomo_block.initialize_parameters(inputs, dispatch_params) def _create_variables_and_ports(self, hybrid, t): """Connect variables and ports from individual technology model diff --git a/h2integrate/control/control_rules/pyomo_rule_baseclass.py b/h2integrate/control/control_rules/pyomo_rule_baseclass.py index b8f512e57..021596b50 100644 --- a/h2integrate/control/control_rules/pyomo_rule_baseclass.py +++ b/h2integrate/control/control_rules/pyomo_rule_baseclass.py @@ -22,6 +22,11 @@ class PyomoRuleBaseConfig(BaseConfig): class PyomoRuleBaseClass(om.ExplicitComponent): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) @@ -51,7 +56,7 @@ def dispatch_block_rule_function(self, pyomo_model: pyo.ConcreteModel, tech_name This method sets up all model elements (parameters, variables, constraints, and ports) associated with a technology block within the dispatch model. - It is typically called in the setup_pyomo() method of the PyomoControllerBaseClass. + It is typically called in the setup_pyomo() method of the PyomoStorageControllerBaseClass. Args: pyomo_model (pyo.ConcreteModel): The Pyomo model to which the technology diff --git a/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py b/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py index 4bf2bdd3c..e55a9837c 100644 --- a/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py +++ b/h2integrate/control/control_rules/storage/pyomo_storage_rule_baseclass.py @@ -14,8 +14,8 @@ class PyomoStorageRuleBaseConfig(PyomoRuleBaseConfig): max_capacity: float = field(validator=gt_zero) - min_charge_fraction: float = field(default=0.1, validator=range_val(0, 1)) - max_charge_fraction: float = field(default=0.9, validator=range_val(0, 1)) + min_soc_fraction: float = field(default=0.1, validator=range_val(0, 1)) + max_soc_fraction: float = field(default=0.9, validator=range_val(0, 1)) charge_efficiency: float = field(default=0.938, validator=range_val(0, 1)) discharge_efficiency: float = field(default=0.938, validator=range_val(0, 1)) @@ -24,6 +24,11 @@ class PyomoStorageRuleBaseConfig(PyomoRuleBaseConfig): class PyomoRuleStorageBaseclass(PyomoRuleBaseClass): """Base class defining Pyomo rules for generic commodity storage components.""" + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = PyomoStorageRuleBaseConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "dispatch_rule"), @@ -32,6 +37,10 @@ def setup(self): ) super().setup() + self.rate_units_pyo = eval( + "/".join(f"pyo.units.{u}" for u in self.config.commodity_rate_units.split("/")) + ) + def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): """Create storage-related parameters in the Pyomo model. @@ -47,6 +56,7 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): ################################## # Storage Parameters # ################################## + pyomo_model.time_duration = pyo.Param( doc=pyomo_model.name + " time step [hour]", default=1.0, @@ -62,7 +72,7 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): default=0.0, within=pyo.NonNegativeReals, mutable=True, - units=eval("pyo.units." + self.config.commodity_rate_units), + units=self.rate_units_pyo, ) pyomo_model.maximum_storage = pyo.Param( doc=pyomo_model.name @@ -71,18 +81,18 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): + "]", within=pyo.NonNegativeReals, mutable=True, - units=eval("pyo.units." + self.config.commodity_rate_units), + units=self.rate_units_pyo, ) pyomo_model.minimum_soc = pyo.Param( doc=pyomo_model.name + " minimum state-of-charge [-]", - default=self.config.min_charge_fraction, + default=self.config.min_soc_fraction, within=pyo.PercentFraction, mutable=True, units=pyo.units.dimensionless, ) pyomo_model.maximum_soc = pyo.Param( doc=pyomo_model.name + " maximum state-of-charge [-]", - default=self.config.max_charge_fraction, + default=self.config.max_soc_fraction, within=pyo.PercentFraction, mutable=True, units=pyo.units.dimensionless, @@ -114,7 +124,7 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): default=self.config.max_capacity, within=pyo.NonNegativeReals, mutable=True, - units=eval("pyo.units." + self.config.commodity_rate_units), + units=self.rate_units_pyo, ) def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): @@ -131,6 +141,7 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): ################################## # Variables # ################################## + pyomo_model.is_charging = pyo.Var( doc="1 if " + pyomo_model.name + " is charging; 0 Otherwise [-]", domain=pyo.Binary, @@ -162,7 +173,7 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): + self.config.commodity_rate_units + "]", domain=pyo.NonNegativeReals, - units=eval("pyo.units." + self.config.commodity_rate_units), + units=self.rate_units_pyo, ) pyomo_model.discharge_commodity = pyo.Var( doc=self.config.commodity @@ -172,7 +183,7 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): + self.config.commodity_rate_units + "]", domain=pyo.NonNegativeReals, - units=eval("pyo.units." + self.config.commodity_rate_units), + units=self.rate_units_pyo, ) def _create_constraints(self, pyomo_model: pyo.ConcreteModel, t): diff --git a/h2integrate/control/control_rules/storage/pyomo_storage_rule_min_operating_cost.py b/h2integrate/control/control_rules/storage/pyomo_storage_rule_min_operating_cost.py index 7950984aa..6faf5b513 100644 --- a/h2integrate/control/control_rules/storage/pyomo_storage_rule_min_operating_cost.py +++ b/h2integrate/control/control_rules/storage/pyomo_storage_rule_min_operating_cost.py @@ -38,6 +38,15 @@ def __init__( # This loads the currency unit definition into pyomo pyo.units.load_definitions_from_strings(["USD = [currency]"]) + rate_units_pyo_str = "/".join( + f"pyo.units.{u}" for u in self.commodity_storage_units.split("/") + ) + amount_units_pyo_str = f"({rate_units_pyo_str})*pyo.units.h" + + self.rate_units_pyo = eval(rate_units_pyo_str) + self.amount_units_pyo = eval(amount_units_pyo_str) + self.cost_units_per_amount_pyo = eval(f"pyo.units.USD / ({amount_units_pyo_str})") + # The Pyomo model that this class builds off of, where all of the variables, parameters, # constraints, and ports will be added to. self.model = pyomo_model @@ -53,17 +62,19 @@ def __init__( # The units of this are in hours, so half an hour would be 0.5, etc. self.time_duration = [time_duration] * len(self.blocks.index_set()) - def initialize_parameters( - self, commodity_in: list, commodity_demand: list, dispatch_inputs: dict - ): + def initialize_parameters(self, inputs: dict, dispatch_inputs: dict): """Initialize parameters for optimization model Args: - commodity_in (list): List of generated commodity in for this time slice. - commodity_demand (list): The demanded commodity for this time slice. + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity}_in" : Available generated commodity profile. + f"{commodity}_demand" : Demanded commodity output profile. dispatch_inputs (dict): Dictionary of the dispatch input parameters from config """ + commodity_demand = inputs[f"{self.commodity_name}_demand"] + # Dispatch Parameters self.set_timeseries_parameter("cost_per_charge", dispatch_inputs["cost_per_charge"]) self.set_timeseries_parameter("cost_per_discharge", dispatch_inputs["cost_per_discharge"]) @@ -73,8 +84,8 @@ def initialize_parameters( self.set_timeseries_parameter("minimum_storage", 0.0) self.set_timeseries_parameter("maximum_storage", dispatch_inputs["max_capacity"]) - self.set_timeseries_parameter("minimum_soc", dispatch_inputs["min_charge_fraction"]) - self.set_timeseries_parameter("maximum_soc", dispatch_inputs["max_charge_fraction"]) + self.set_timeseries_parameter("minimum_soc", dispatch_inputs["min_soc_fraction"]) + self.set_timeseries_parameter("maximum_soc", dispatch_inputs["max_soc_fraction"]) self.initial_soc = dispatch_inputs["initial_soc_fraction"] self.charge_efficiency = dispatch_inputs.get("charge_efficiency") @@ -130,11 +141,6 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): # Storage Parameters # ################################## - pyo_commodity_storage_unit = eval(f"pyo.units.{self.commodity_storage_units}") - pyo_commodity_storage_unit_hrs = eval(f"pyo.units.{self.commodity_storage_units}h") - pyo_usd_per_commodity_storage_unit_hrs = eval( - f"pyo.units.USD / pyo.units.{self.commodity_storage_units}h" - ) usd_pr_units_str = f"[$/{self.commodity_storage_units}]" pyomo_model.time_duration = pyo.Param( @@ -150,28 +156,28 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): default=0.0, within=pyo.NonNegativeReals, mutable=True, - units=pyo_usd_per_commodity_storage_unit_hrs, + units=self.cost_units_per_amount_pyo, ) pyomo_model.cost_per_discharge = pyo.Param( doc=f"Operating cost of {pyomo_model.name} discharging {usd_pr_units_str}", default=0.0, within=pyo.NonNegativeReals, mutable=True, - units=pyo_usd_per_commodity_storage_unit_hrs, + units=self.cost_units_per_amount_pyo, ) pyomo_model.minimum_storage = pyo.Param( doc=f"{pyomo_model.name} minimum storage rating [{self.commodity_storage_units}]", default=0.0, within=pyo.NonNegativeReals, mutable=True, - units=pyo_commodity_storage_unit, + units=self.rate_units_pyo, ) pyomo_model.maximum_storage = pyo.Param( doc=f"{pyomo_model.name} maximum storage rating [{self.commodity_storage_units}]", default=1000.0, within=pyo.NonNegativeReals, mutable=True, - units=pyo_commodity_storage_unit_hrs, + units=self.amount_units_pyo, ) pyomo_model.minimum_soc = pyo.Param( doc=f"{pyomo_model.name} minimum state-of-charge [-]", @@ -212,13 +218,13 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): doc=f"{pyomo_model.name} maximum charge [{self.commodity_storage_units}]", within=pyo.NonNegativeReals, mutable=True, - units=pyo_commodity_storage_unit, + units=self.rate_units_pyo, ) pyomo_model.max_discharge = pyo.Param( doc=f"{pyomo_model.name} maximum discharge [{self.commodity_storage_units}]", within=pyo.NonNegativeReals, mutable=True, - units=pyo_commodity_storage_unit, + units=self.rate_units_pyo, ) ################################## # System Parameters # @@ -235,14 +241,14 @@ def _create_parameters(self, pyomo_model: pyo.ConcreteModel, t): default=0.0, within=pyo.Reals, mutable=True, - units=pyo_usd_per_commodity_storage_unit_hrs, + units=self.cost_units_per_amount_pyo, ) pyomo_model.commodity_load_demand = pyo.Param( doc=f"Load demand for the commodity [{self.commodity_storage_units}]", default=1000.0, within=pyo.NonNegativeReals, mutable=True, - units=pyo_commodity_storage_unit, + units=self.rate_units_pyo, ) def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): @@ -260,6 +266,7 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): ################################## # Variables # ################################## + pyomo_model.is_charging = pyo.Var( doc=f"1 if {pyomo_model.name} is charging; 0 Otherwise [-]", domain=pyo.Binary, @@ -286,12 +293,12 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): pyomo_model.charge_commodity = pyo.Var( doc=f"{self.commodity_name} into {pyomo_model.name} [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=eval(f"pyo.units.{self.commodity_storage_units}"), + units=self.rate_units_pyo, ) pyomo_model.discharge_commodity = pyo.Var( doc=f"{self.commodity_name} out of {pyomo_model.name} [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=eval(f"pyo.units.{self.commodity_storage_units}"), + units=self.rate_units_pyo, ) ################################## # System Variables # @@ -299,18 +306,18 @@ def _create_variables(self, pyomo_model: pyo.ConcreteModel, t): pyomo_model.system_production = pyo.Var( doc=f"System generation [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=eval(f"pyo.units.{self.commodity_storage_units}"), + units=self.rate_units_pyo, ) pyomo_model.system_load = pyo.Var( doc=f"System load [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=eval(f"pyo.units.{self.commodity_storage_units}"), + units=self.rate_units_pyo, ) pyomo_model.commodity_out = pyo.Var( doc=f"Commodity out of the system [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, bounds=(0, pyomo_model.commodity_load_demand), - units=eval(f"pyo.units.{self.commodity_storage_units}"), + units=self.rate_units_pyo, ) pyomo_model.is_generating = pyo.Var( doc="System is producing commodity binary [-]", @@ -537,22 +544,21 @@ def _create_hybrid_variables(self, hybrid_model: pyo.ConcreteModel, tech_name: s ################################## # System Variables # ################################## - pyo_commodity_units = eval("pyo.units." + self.commodity_storage_units) hybrid_model.system_production = pyo.Var( doc=f"System generation [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=pyo_commodity_units, + units=self.rate_units_pyo, ) hybrid_model.system_load = pyo.Var( doc=f"System load [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=pyo_commodity_units, + units=self.rate_units_pyo, ) hybrid_model.commodity_out = pyo.Var( doc=f"{self.commodity_name} sold [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=pyo_commodity_units, + units=self.rate_units_pyo, ) ################################## # Storage Variables # @@ -561,12 +567,12 @@ def _create_hybrid_variables(self, hybrid_model: pyo.ConcreteModel, tech_name: s hybrid_model.charge_commodity = pyo.Var( doc=f"{self.commodity_name} into {tech_name} [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=pyo_commodity_units, + units=self.rate_units_pyo, ) hybrid_model.discharge_commodity = pyo.Var( doc=f"{self.commodity_name} out of {tech_name} [{self.commodity_storage_units}]", domain=pyo.NonNegativeReals, - units=pyo_commodity_units, + units=self.rate_units_pyo, ) # Returns to power_source_gen_vars and load_vars in hybrid_rule power_source_gen_var = hybrid_model.discharge_commodity diff --git a/h2integrate/control/control_strategies/converters/demand_openloop_controller.py b/h2integrate/control/control_strategies/converters/demand_openloop_controller.py deleted file mode 100644 index bf2aa5c78..000000000 --- a/h2integrate/control/control_strategies/converters/demand_openloop_controller.py +++ /dev/null @@ -1,77 +0,0 @@ -import numpy as np - -from h2integrate.control.control_strategies.demand_openloop_controller import ( - DemandOpenLoopControlBase, - DemandOpenLoopControlBaseConfig, -) - - -class DemandOpenLoopConverterController(DemandOpenLoopControlBase): - """Open-loop controller for converting input supply into met demand. - - This controller computes unmet demand, unused (curtailed) production, and - the resulting commodity output profile based on the incoming supply and an - externally specified demand profile. It uses simple arithmetic rules: - - * If demand exceeds supplied commodity, the difference is unmet demand. - * If supply exceeds demand, the excess is unused (curtailed) commodity. - * Output equals supplied commodity minus curtailed commodity. - - This component relies on configuration provided through the - ``tech_config`` dictionary, which must define the controller's - ``control_parameters``. - """ - - def setup(self): - """Set up the load controller configuration. - - Loads the controller configuration from ``tech_config`` and then calls - the base class ``setup`` to create inputs/outputs. - - Raises: - KeyError: If the expected configuration keys are missing from - ``tech_config``. - """ - self.config = DemandOpenLoopControlBaseConfig.from_dict( - self.options["tech_config"]["model_inputs"]["control_parameters"], - additional_cls_name=self.__class__.__name__, - ) - super().setup() - - def compute(self, inputs, outputs): - """Compute unmet demand, unused commodity, and converter output. - - This method compares the demand profile to the supplied commodity for - each timestep and assigns unmet demand, curtailed production, and - actual delivered output. - - Args: - inputs (dict-like): Mapping of input variable names to their - current values, including: - - * ``{commodity}_demand``: Demand profile. - * ``{commodity}_in``: Supplied commodity. - outputs (dict-like): Mapping of output variable names where results - will be written, including: - - * ``{commodity}_unmet_demand``: Unmet demand. - * ``{commodity}_unused_commodity``: Curtailed production. - * ``{commodity}_out``: Actual output delivered. - - Notes: - All variables operate on a per-timestep basis and typically have - array shape ``(n_timesteps,)``. - """ - commodity = self.config.commodity - remaining_demand = inputs[f"{commodity}_demand"] - inputs[f"{commodity}_in"] - - # Calculate missed load and curtailed production - outputs[f"{commodity}_unmet_demand"] = np.where(remaining_demand > 0, remaining_demand, 0) - outputs[f"{commodity}_unused_commodity"] = np.where( - remaining_demand < 0, -1 * remaining_demand, 0 - ) - - # Calculate actual output based on demand met and curtailment - outputs[f"{commodity}_set_point"] = ( - inputs[f"{commodity}_in"] - outputs[f"{commodity}_unused_commodity"] - ) diff --git a/h2integrate/control/control_strategies/demand_openloop_controller.py b/h2integrate/control/control_strategies/demand_openloop_controller.py deleted file mode 100644 index be0def762..000000000 --- a/h2integrate/control/control_strategies/demand_openloop_controller.py +++ /dev/null @@ -1,121 +0,0 @@ -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig - - -@define(kw_only=True) -class DemandOpenLoopControlBaseConfig(BaseConfig): - """Configuration for defining an open-loop demand profile. - - This configuration object specifies the commodity being controlled and the - demand profile that should be met by downstream components. - - Attributes: - commodity_rate_units (str): Units of the commodity (e.g., "kg/h"). - commodity (str): Name of the commodity being controlled - (e.g., "hydrogen"). Converted to lowercase and stripped of whitespace. - demand_profile (int | float | list): Demand values for each timestep, in - the same units as `commodity_rate_units`. May be a scalar for constant - demand or a list/array for time-varying demand. - """ - - commodity_rate_units: str = field(converter=str.strip) - commodity: str = field(converter=(str.strip, str.lower)) - demand_profile: int | float | list = field() - - -class DemandOpenLoopControlBase(om.ExplicitComponent): - """Base OpenMDAO component for open-loop demand tracking. - - This component defines the interfaces required for open-loop demand - controllers, including inputs for demand, supplied commodity, and outputs - tracking unmet demand, unused production, and total unmet demand. - Subclasses must implement the :meth:`compute` method to define the - controller behavior. - """ - - def initialize(self): - """Declare component options. - - Options: - driver_config (dict): Driver-level configuration parameters. - plant_config (dict): Plant-level configuration, including number of - simulation timesteps. - tech_config (dict): Technology-specific configuration, including - controller settings. - - """ - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - """Define inputs and outputs for demand control. - - Creates time-series inputs and outputs for commodity demand, supply, - unmet demand, unused commodity, and total unmet demand. Shapes and units - are determined by the plant configuration and controller configuration. - - Raises: - KeyError: If required configuration keys are missing from - ``plant_config`` or ``tech_config``. - """ - n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) - - commodity = self.config.commodity - - self.add_input( - f"{commodity}_demand", - val=self.config.demand_profile, - shape=(n_timesteps), - units=self.config.commodity_rate_units, # NOTE: hardcoded to align with controllers - desc=f"Demand profile of {commodity}", - ) - - self.add_input( - f"{commodity}_in", - val=0.0, - shape=(n_timesteps), - units=self.config.commodity_rate_units, - desc=f"Amount of {commodity} demand that has already been supplied", - ) - - self.add_output( - f"{commodity}_unmet_demand", - val=self.config.demand_profile, - shape=(n_timesteps), - units=self.config.commodity_rate_units, - desc=f"Remaining demand profile of {commodity}", - ) - - self.add_output( - f"{commodity}_unused_commodity", - val=0.0, - shape=(n_timesteps), - units=self.config.commodity_rate_units, - desc=f"Excess production of {commodity}", - ) - - self.add_output( - f"{commodity}_set_point", - val=0.0, - shape=(n_timesteps), - units=self.config.commodity_rate_units, - desc=f"Production profile of {commodity}", - ) - - self.add_output( - f"total_{commodity}_unmet_demand", - units=self.config.commodity_rate_units, - desc="Total unmet demand", - ) - - def compute(): - """This method must be implemented by subclasses to define the - controller. - - Raises: - NotImplementedError: Always, unless implemented in a subclass. - """ - raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/control/control_strategies/passthrough_openloop_controller.py b/h2integrate/control/control_strategies/passthrough_openloop_controller.py deleted file mode 100644 index 1e3520022..000000000 --- a/h2integrate/control/control_strategies/passthrough_openloop_controller.py +++ /dev/null @@ -1,92 +0,0 @@ -import numpy as np -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs - - -@define(kw_only=True) -class PassThroughOpenLoopControllerConfig(BaseConfig): - commodity: str = field() - commodity_rate_units: str = field() - - -class PassThroughOpenLoopController(om.ExplicitComponent): - """ - A simple pass-through controller for open-loop systems. - - This controller directly passes the input commodity flow to the output without any - modifications. It is useful for testing, as a placeholder for more complex controllers, - and for maintaining consistency between controlled and uncontrolled frameworks as this - 'controller' does not alter the system output in any way. - """ - - def initialize(self): - """ - Declare options for the component. See "Attributes" section in class doc strings for - details. - """ - - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - self.config = PassThroughOpenLoopControllerConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control"), - additional_cls_name=self.__class__.__name__, - ) - - self.add_input( - f"{self.config.commodity}_in", - shape_by_conn=True, - units=self.config.commodity_rate_units, - desc=f"{self.config.commodity} input timeseries from production to storage", - ) - - self.add_output( - f"{self.config.commodity}_set_point", - copy_shape=f"{self.config.commodity}_in", - units=self.config.commodity_rate_units, - desc=f"{self.config.commodity} output timeseries from plant after storage", - ) - - def compute(self, inputs, outputs): - """ - Pass through input to output flows. - - Args: - inputs (dict): Dictionary of input values. - - {commodity}_in: Input commodity flow. - outputs (dict): Dictionary of output values. - - {commodity}_out: Output commodity flow, equal to the input flow. - """ - - # Assign the input to the output - outputs[f"{self.config.commodity}_set_point"] = inputs[f"{self.config.commodity}_in"] - - def setup_partials(self): - """ - Declare partial derivatives as unity throughout the design space. - - This method specifies that the derivative of the output with respect to the input is - always 1.0, consistent with the pass-through behavior. - - Note: - This method is not currently used and isn't strictly needed if you're creating other - controllers; it is included as a nod towards potential future development enabling - more derivative information passing. - """ - - # Get the size of the input/output array - size = self._get_var_meta(f"{self.config.commodity}_in", "size") - - # Declare partials sparsely for all elements as an identity matrix - # (diagonal elements are 1.0, others are 0.0) - self.declare_partials( - of=f"{self.config.commodity}_set_point", - wrt=f"{self.config.commodity}_in", - rows=np.arange(size), - cols=np.arange(size), - val=np.ones(size), # Diagonal elements are 1.0 - ) diff --git a/h2integrate/control/control_strategies/pyomo_controller_baseclass.py b/h2integrate/control/control_strategies/pyomo_storage_controller_baseclass.py similarity index 50% rename from h2integrate/control/control_strategies/pyomo_controller_baseclass.py rename to h2integrate/control/control_strategies/pyomo_storage_controller_baseclass.py index b2693d207..2de73541f 100644 --- a/h2integrate/control/control_strategies/pyomo_controller_baseclass.py +++ b/h2integrate/control/control_strategies/pyomo_storage_controller_baseclass.py @@ -14,7 +14,7 @@ @define(kw_only=True) -class PyomoControllerBaseConfig(BaseConfig): +class PyomoStorageControllerBaseConfig(BaseConfig): """ Configuration data container for Pyomo-based storage / dispatch controllers. @@ -26,13 +26,13 @@ class PyomoControllerBaseConfig(BaseConfig): max_capacity (float): Physical maximum stored commodity capacity (inventory, not a rate). Units correspond to the base commodity units (e.g., kg, MWh). - max_charge_fraction (float): + max_soc_fraction (float): Upper bound on state of charge expressed as a fraction in [0, 1]. 1.0 means the controller may fill to max_capacity. - min_charge_fraction (float): + min_soc_fraction (float): Lower bound on state of charge expressed as a fraction in [0, 1]. 0.0 allows full depletion; >0 reserves minimum inventory. - init_charge_fraction (float): + init_soc_fraction (float): Initial state of charge at simulation start as a fraction in [0, 1]. n_control_window (int): Number of consecutive timesteps processed per control action @@ -55,9 +55,9 @@ class PyomoControllerBaseConfig(BaseConfig): """ max_capacity: float = field() - max_charge_fraction: float = field(validator=range_val(0, 1)) - min_charge_fraction: float = field(validator=range_val(0, 1)) - init_charge_fraction: float = field(validator=range_val(0, 1)) + max_soc_fraction: float = field(validator=range_val(0, 1)) + min_soc_fraction: float = field(validator=range_val(0, 1)) + init_soc_fraction: float = field(validator=range_val(0, 1)) n_control_window: int = field() commodity: str = field() commodity_rate_units: str = field() @@ -74,16 +74,12 @@ def __attrs_post_init__(self): ] * self.n_control_window -def dummy_function(): - """Dummy function used for setting OpenMDAO input/output defaults but otherwise unused. +class PyomoStorageControllerBaseClass(om.ExplicitComponent): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model - Returns: - None: empty output - """ - return None - - -class PyomoControllerBaseClass(om.ExplicitComponent): def initialize(self): """ Declare options for the component. See "Attributes" section in class doc strings for @@ -109,9 +105,7 @@ def dummy_method(self, in1, in2): def setup(self): """Register per-technology dispatch rule inputs and expose the solver callable. - Adds discrete inputs named 'dispatch_block_rule_function' (and variants - suffixed with source tech names for cross-tech connections) plus a - discrete output 'pyomo_dispatch_solver' that will hold the assembled + Adds discrete output 'pyomo_dispatch_solver' that will hold the assembled callable after compute(). """ @@ -123,25 +117,11 @@ def setup(self): # create inputs for all pyomo object creation functions from all connected technologies self.dispatch_connections = self.options["plant_config"]["tech_to_dispatch_connections"] - for connection in self.dispatch_connections: - # get connection definition - source_tech, intended_dispatch_tech = connection - if any(intended_dispatch_tech in name for name in self.tech_group_name): - if source_tech == intended_dispatch_tech: - # When getting rules for the same tech, the tech name is not used in order to - # allow for automatic connections rather than complicating the h2i model set up - self.add_discrete_input("dispatch_block_rule_function", val=self.dummy_method) - else: - self.add_discrete_input( - f"{'dispatch_block_rule_function'}_{source_tech}", val=self.dummy_method - ) - else: - continue # create output for the pyomo control model self.add_discrete_output( "pyomo_dispatch_solver", - val=dummy_function, + val=lambda: None, desc="callable: fully formed pyomo model and execution logic to be run \ by owning technologies performance model", ) @@ -151,43 +131,16 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): discrete_outputs["pyomo_dispatch_solver"] = self.pyomo_setup(discrete_inputs) def pyomo_setup(self, discrete_inputs): - """Create the Pyomo model, attach per-tech Blocks, and return dispatch solver. + """Create the Pyomo model and return dispatch solver. Returns: callable: Function(performance_model, performance_model_kwargs, inputs, commodity) - executing rolling-window heuristic dispatch or optimization and returning: + executing rolling-window dispatch and returning: (total_out, storage_out, unmet_demand, unused_commodity, soc) """ # initialize the pyomo model self.pyomo_model = pyomo.ConcreteModel() - index_set = pyomo.Set(initialize=range(self.config.n_control_window)) - - self.source_techs = [] - self.dispatch_tech = [] - - # run each pyomo rule set up function for each technology - for connection in self.dispatch_connections: - # get connection definition - source_tech, intended_dispatch_tech = connection - # only add connections to intended dispatch tech - if any(intended_dispatch_tech in name for name in self.tech_group_name): - # names are specified differently if connecting within the tech group vs - # connecting from an external tech group. This facilitates OM connections - if source_tech == intended_dispatch_tech: - dispatch_block_rule_function = discrete_inputs["dispatch_block_rule_function"] - self.dispatch_tech.append(source_tech) - else: - dispatch_block_rule_function = discrete_inputs[ - f"{'dispatch_block_rule_function'}_{source_tech}" - ] - # create pyomo block and set attr - blocks = pyomo.Block(index_set, rule=dispatch_block_rule_function) - setattr(self.pyomo_model, source_tech, blocks) - self.source_techs.append(source_tech) - else: - continue - # define dispatch solver def pyomo_dispatch_solver( performance_model: callable, @@ -201,9 +154,9 @@ def pyomo_dispatch_solver( Iterates over the full simulation period in chunks of size `self.config.n_control_window`, (re)configures per-window dispatch - parameters, invokes a heuristic control strategy to set fixed - dispatch decisions, and then calls the provided performance_model - over each window to obtain storage output and SOC trajectories. + parameters, applies the chosen control strategy, and then calls the + provided performance_model over each window to obtain storage output and + SOC trajectories. Args: performance_model (callable): @@ -224,15 +177,9 @@ def pyomo_dispatch_solver( self.config.commodity. Returns: - tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray, np.ndarray]: - total_commodity_out : - Net commodity supplied to demand each timestep (min(demand, storage + gen)). + tuple[np.ndarray, np.ndarray]: storage_commodity_out : Commodity supplied (positive) by the storage asset each timestep. - unmet_demand : - Positive shortfall = demand - total_out (0 if fully met). - unused_commodity : - Surplus generation + storage discharge not used to meet demand. soc : State of charge trajectory (percent of capacity). @@ -245,107 +192,19 @@ def pyomo_dispatch_solver( """ # initialize outputs - unmet_demand = np.zeros(self.n_timesteps) storage_commodity_out = np.zeros(self.n_timesteps) - total_commodity_out = np.zeros(self.n_timesteps) - unused_commodity = np.zeros(self.n_timesteps) soc = np.zeros(self.n_timesteps) - # get the starting index for each control window - window_start_indices = list(range(0, self.n_timesteps, self.config.n_control_window)) - - control_strategy = self.options["tech_config"]["control_strategy"]["model"] - - # TODO: implement optional kwargs for this method: maybe this will remove if statement here - if "Heuristic" in control_strategy: - # Initialize parameters for heuristic dispatch strategy - self.initialize_parameters(inputs) - elif "Optimized" in control_strategy: - # Initialize parameters for optimized dispatch strategy - self.initialize_parameters( - inputs[f"{commodity_name}_in"], inputs[f"{commodity_name}_demand"] - ) - - else: - raise ( - NotImplementedError( - f"Control strategy '{control_strategy}' was given, \ - but has not been implemented yet." - ) - ) - - # loop over all control windows, where t is the starting index of each window - for t in window_start_indices: - # get the inputs over the current control window - commodity_in = inputs[f"{self.config.commodity}_in"][ - t : t + self.config.n_control_window - ] - demand_in = inputs[f"{commodity_name}_demand"][t : t + self.config.n_control_window] - - if "Heuristic" in control_strategy: - # Update time series parameters for the heuristic method - self.update_time_series_parameters() - # determine dispatch commands for the current control window - # using the heuristic method - self.set_fixed_dispatch( - commodity_in, - self.config.system_commodity_interface_limit, - demand_in, - ) - - elif "Optimized" in control_strategy: - # Progress report - if t % (self.n_timesteps // 4) < self.n_control_window: - percentage = round((t / self.n_timesteps) * 100) - print(f"{percentage}% done with optimal dispatch") - # Update time series parameters for the optimization method - self.update_time_series_parameters( - commodity_in=commodity_in, - commodity_demand=demand_in, - updated_initial_soc=self.updated_initial_soc, - ) - # Run dispatch optimization to minimize costs while meeting demand - self.solve_dispatch_model( - start_time=t, - n_days=self.n_timesteps // 24, - ) - - else: - raise ( - NotImplementedError( - f"Control strategy '{control_strategy}' was given, \ - but has not been implemented yet." - ) - ) - - # run the performance/simulation model for the current control window - # using the dispatch commands - storage_commodity_out_control_window, soc_control_window = performance_model( - self.storage_dispatch_commands, - **performance_model_kwargs, - sim_start_index=t, - ) - # update SOC for next time window - self.updated_initial_soc = soc_control_window[-1] / 100 # turn into ratio - - # get a list of all time indices belonging to the current control window - window_indices = list(range(t, t + self.config.n_control_window)) - - # loop over all time steps in the current control window - for j in window_indices: - # save the output for the control window to the output for the full - # simulation - storage_commodity_out[j] = storage_commodity_out_control_window[j - t] - soc[j] = soc_control_window[j - t] - total_commodity_out[j] = np.minimum( - demand_in[j - t], storage_commodity_out[j] + commodity_in[j - t] - ) - unmet_demand[j] = np.maximum(0, demand_in[j - t] - total_commodity_out[j]) - unused_commodity[j] = np.maximum( - 0, storage_commodity_out[j] + commodity_in[j - t] - demand_in[j - t] - ) - - return total_commodity_out, storage_commodity_out, unmet_demand, unused_commodity, soc + # This is where the pyomo controller interface is defined in individual + # pyomo controllers + + # The structure should be as follows: + # 1. initialize_parameters() + # 2. update_time_series_parameters() + # 3. solve dispatch model or set fixed dispatch + # 4. update outputs + + return storage_commodity_out, soc return pyomo_dispatch_solver diff --git a/h2integrate/control/control_strategies/storage/demand_openloop_controller.py b/h2integrate/control/control_strategies/storage/demand_openloop_storage_controller.py similarity index 52% rename from h2integrate/control/control_strategies/storage/demand_openloop_controller.py rename to h2integrate/control/control_strategies/storage/demand_openloop_storage_controller.py index 588b2aa32..e456f8d92 100644 --- a/h2integrate/control/control_strategies/storage/demand_openloop_controller.py +++ b/h2integrate/control/control_strategies/storage/demand_openloop_storage_controller.py @@ -5,27 +5,33 @@ from h2integrate.core.utilities import merge_shared_inputs from h2integrate.core.validators import gte_zero, range_val, range_val_or_none -from h2integrate.control.control_strategies.demand_openloop_controller import ( - DemandOpenLoopControlBase, - DemandOpenLoopControlBaseConfig, +from h2integrate.control.control_strategies.storage.openloop_storage_control_base import ( + StorageOpenLoopControlBase, + StorageOpenLoopControlBaseConfig, ) @define(kw_only=True) -class DemandOpenLoopStorageControllerConfig(DemandOpenLoopControlBaseConfig): +class DemandOpenLoopStorageControllerConfig(StorageOpenLoopControlBaseConfig): """ Configuration class for the DemandOpenLoopStorageController. This class defines the parameters required to configure the `DemandOpenLoopStorageController`. Attributes: + commodity (str): Name of the commodity being controlled + (e.g., "hydrogen"). Stripped of whitespace. + commodity_rate_units (str): Units of the commodity (e.g., "kg/h"). + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. max_capacity (float): Maximum storage capacity of the commodity (in non-rate units, e.g., "kg" if `commodity_rate_units` is "kg/h"). - max_charge_fraction (float): Maximum allowable state of charge (SOC) as a fraction + max_soc_fraction (float): Maximum allowable state of charge (SOC) as a fraction of `max_capacity`, between 0 and 1. - min_charge_fraction (float): Minimum allowable SOC as a fraction of `max_capacity`, + min_soc_fraction (float): Minimum allowable SOC as a fraction of `max_capacity`, between 0 and 1. - init_charge_fraction (float): Initial SOC as a fraction of `max_capacity`, + init_soc_fraction (float): Initial SOC as a fraction of `max_capacity`, between 0 and 1. max_charge_rate (float): Maximum rate at which the commodity can be charged (in units per time step, e.g., "kg/time step"). This rate does not include the charge_efficiency. @@ -45,12 +51,14 @@ class DemandOpenLoopStorageControllerConfig(DemandOpenLoopControlBaseConfig): discharging the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for 81% efficiency). Optional if `charge_efficiency` and `discharge_efficiency` are provided. + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., kW*h or kg). If not provided, defaults to commodity_rate_units*h. """ max_capacity: float = field() - max_charge_fraction: float = field(validator=range_val(0, 1)) - min_charge_fraction: float = field(validator=range_val(0, 1)) - init_charge_fraction: float = field(validator=range_val(0, 1)) + max_soc_fraction: float = field(validator=range_val(0, 1)) + min_soc_fraction: float = field(validator=range_val(0, 1)) + init_soc_fraction: float = field(validator=range_val(0, 1)) max_charge_rate: float = field(validator=gte_zero) charge_equals_discharge: bool = field(default=True) max_discharge_rate: float | None = field(default=None) @@ -67,22 +75,20 @@ def __attrs_post_init__(self): it calculates `charge_efficiency` and `discharge_efficiency` as the square root of `round_trip_efficiency`. """ - if self.round_trip_efficiency is not None: - if self.charge_efficiency is not None or self.discharge_efficiency is not None: - raise ValueError( - "Provide either `round_trip_efficiency` or both `charge_efficiency` " - "and `discharge_efficiency`, but not both." - ) + super().__attrs_post_init__() + + if (self.round_trip_efficiency is not None) and ( + self.charge_efficiency is None and self.discharge_efficiency is None + ): # Calculate charge and discharge efficiencies from round-trip efficiency self.charge_efficiency = np.sqrt(self.round_trip_efficiency) self.discharge_efficiency = np.sqrt(self.round_trip_efficiency) - elif self.charge_efficiency is not None and self.discharge_efficiency is not None: - # Ensure both charge and discharge efficiencies are provided - pass - else: + self.round_trip_efficiency = None + if self.charge_efficiency is None or self.discharge_efficiency is None: raise ValueError( - "You must provide either `round_trip_efficiency` or both " - "`charge_efficiency` and `discharge_efficiency`." + "Exactly one of the following sets of parameters must be set: (a) " + "`round_trip_efficiency`, or (b) both `charge_efficiency` " + "and `discharge_efficiency`." ) if self.charge_equals_discharge: @@ -100,70 +106,21 @@ def __attrs_post_init__(self): self.max_discharge_rate = self.max_charge_rate -class DemandOpenLoopStorageController(DemandOpenLoopControlBase): +class DemandOpenLoopStorageController(StorageOpenLoopControlBase): """ A controller that manages commodity flow based on demand and storage constraints. - The `DemandOpenLoopStorageController` computes the state of charge (SOC), output flow, - curtailment, and missed load for a commodity storage system. It uses a demand profile - and storage parameters to determine how much of the commodity to charge, discharge, - or curtail at each time step. - - Note: the units of the outputs are the same as the commodity units, which is typically a rate - in H2Integrate (e.g. kg/h) - - Attributes: - config (DemandOpenLoopStorageControllerConfig): Configuration object containing parameters - such as commodity name, units, time steps, storage capacity, charge/discharge rates, - efficiencies, and demand profile. - - Inputs: - {commodity}_in (float): Input commodity flow timeseries (e.g., hydrogen production). - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - - Outputs: - {commodity}_out (float): Output commodity flow timeseries after storage to meet demand. - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - - Note: the may include commodity from commodity_in that was never used to charge the - storage system but was directly dispatched to meet demand. - {commodity}_soc (float): State of charge (SOC) timeseries for the storage system. - - Units: "unitless" (percentage of maximum capacity given as a ratio between 0 and 1). - {commodity}_unused_commodity (float): Curtailment timeseries for unused - input commodity. - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - - Note: curtailment in this case does not reduce what the converter produces, but - rather the system just does not use it (throws it away) because this controller is - specific to the storage technology and has no influence on other technologies in - the system. - {commodity}_unmet_demand (float): Unmet demand timeseries when demand exceeds supply. - Same meaning as missed load. - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - total_{commodity}_unmet_demand (float): Total unmet demand over the simulation period. - - Units: Defined in `commodity_rate_units` (e.g., "kg"). + The `DemandOpenLoopStorageController` computes the dispatch commands for a commodity storage + system. It uses a demand profile and storage parameters to determine how much of the + commodity to charge, discharge, or curtail at each time step. """ - def setup(self): - """ - Set up inputs, outputs, and configuration for the open-loop storage controller. - - This method initializes the controller configuration from the technology - configuration, establishes the number of simulation time steps, adds inputs - related to storage constraints (e.g., maximum charge rate and storage capacity), - and defines outputs such as the commodity state-of-charge (SOC) timeseries - and the estimated storage duration. + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model - Inputs defined: - * ``max_charge_rate``: Maximum rate at which storage can charge/discharge. - * ``max_capacity``: Maximum total storage capacity. - - Outputs defined: - * ``_soc``: Timeseries of storage state of charge. - * ``storage_duration``: Estimated duration (hours) the storage can - discharge at its maximum rate. - - Returns: - None - """ + def setup(self): self.config = DemandOpenLoopStorageControllerConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control"), strict=False, @@ -173,8 +130,7 @@ def setup(self): self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - commodity = self.config.commodity - + # Design constraints of storage system self.add_input( "max_charge_rate", val=self.config.max_charge_rate, @@ -183,24 +139,19 @@ def setup(self): ) self.add_input( - "max_capacity", + "storage_capacity", val=self.config.max_capacity, - units=self.config.commodity_rate_units + "*h", + units=self.config.commodity_amount_units, desc="Maximum storage capacity", ) - self.add_output( - f"{commodity}_soc", - copy_shape=f"{commodity}_in", - units="unitless", - desc=f"{commodity} state of charge timeseries for storage", - ) - - self.add_output( - "storage_duration", - units="h", - desc="Estimated storage duration based on max capacity and discharge rate", - ) + if not self.config.charge_equals_discharge: + self.add_input( + "max_discharge_rate", + val=self.config.max_discharge_rate, + units=self.config.commodity_rate_units, + desc="Storage discharge rate", + ) def compute(self, inputs, outputs): """ @@ -221,12 +172,8 @@ def compute(self, inputs, outputs): * ``max_capacity``: Maximum total storage capacity. Outputs populated: - * ``_soc``: State-of-charge timeseries (unitless). - * ``_out``: Output delivered to meet demand. - * ``_unused_commodity``: Curtailment timeseries. - * ``_unmet_demand``: Missed load timeseries. - * ``total__unmet_demand``: Aggregated unmet demand. - * ``storage_duration``: Estimated discharge duration at maximum rate (hours). + * ``_set_point``: Dispatch command to storage, + negative when charging, positive when discharging. Control logic includes: * Enforcing SOC limits (min, max, and initial conditions). @@ -251,65 +198,63 @@ def compute(self, inputs, outputs): f"{inputs['max_charge_rate']}" ) raise UserWarning(msg) - if inputs["max_capacity"][0] < 0: + if inputs["storage_capacity"][0] < 0: msg = ( - f"max_capacity cannot be less than zero and has value of " - f"{inputs['max_capacity']}" + f"storage_capacity cannot be less than zero and has value of " + f"{inputs['storage_capacity']}" ) raise UserWarning(msg) - max_capacity = inputs["max_capacity"].item() - max_charge_fraction = self.config.max_charge_fraction - min_charge_fraction = self.config.min_charge_fraction - init_charge_fraction = self.config.init_charge_fraction + max_capacity = inputs["storage_capacity"].item() max_charge_rate = inputs["max_charge_rate"].item() + if self.config.charge_equals_discharge: max_discharge_rate = inputs["max_charge_rate"].item() else: - max_discharge_rate = float(self.config.max_discharge_rate) - charge_efficiency = float(self.config.charge_efficiency) - discharge_efficiency = float(self.config.discharge_efficiency) + max_discharge_rate = inputs["max_discharge_rate"].item() + + soc_max = self.config.max_soc_fraction + soc_min = self.config.min_soc_fraction + init_soc_fraction = self.config.init_soc_fraction + + charge_eff = float(self.config.charge_efficiency) + discharge_eff = float(self.config.discharge_efficiency) # Initialize time-step state of charge prior to loop so the loop starts with # the previous time step's value - soc = deepcopy(init_charge_fraction) + soc = deepcopy(init_soc_fraction) demand_profile = inputs[f"{commodity}_demand"] # initialize outputs - soc_array = outputs[f"{commodity}_soc"] - unused_commodity_array = outputs[f"{commodity}_unused_commodity"] - output_array = outputs[f"{commodity}_set_point"] - unmet_demand_array = outputs[f"{commodity}_unmet_demand"] - + soc_array = np.zeros(self.n_timesteps) + set_point_array = np.zeros(self.n_timesteps) + combined_output_array = np.zeros(self.n_timesteps) # Loop through each time step for t, demand_t in enumerate(demand_profile): # Get the input flow at the current time step input_flow = inputs[f"{commodity}_in"][t] # Calculate the available charge/discharge capacity - available_charge = float((max_charge_fraction - soc) * max_capacity) - available_discharge = float((soc - min_charge_fraction) * max_capacity) - - # Initialize persistent variables for curtailment and missed load - unused_input = 0.0 - charge = 0.0 + available_charge = float((soc_max - soc) * max_capacity) + available_discharge = float((soc - soc_min) * max_capacity) # Determine the output flow based on demand_t and SOC if demand_t > input_flow: # Discharge storage to meet demand. # `discharge_needed` is as seen by the storage - discharge_needed = (demand_t - input_flow) / discharge_efficiency + discharge_needed = (demand_t - input_flow) / discharge_eff # `discharge` is as seen by the storage, but `max_discharge_rate` is as observed # outside the storage discharge = min( - discharge_needed, available_discharge, max_discharge_rate / discharge_efficiency + discharge_needed, available_discharge, max_discharge_rate / discharge_eff ) soc -= discharge / max_capacity # soc is a ratio with value between 0 and 1 # output is as observed outside the storage, so we need to adjust `discharge` by # applying `discharge_efficiency`. - output_array[t] = input_flow + discharge * discharge_efficiency + combined_output_array[t] = input_flow + discharge * discharge_eff + set_point_array[t] = discharge * discharge_eff else: # Charge storage with unused input # `unused_input` is as seen outside the storage @@ -319,38 +264,16 @@ def compute(self, inputs, outputs): # seen outside the storage so we need to adjust `available_charge` outside the # storage view and the final result back into the storage view. charge = ( - min(unused_input, available_charge / charge_efficiency, max_charge_rate) - * charge_efficiency + min(unused_input, available_charge / charge_eff, max_charge_rate) * charge_eff ) soc += charge / max_capacity # soc is a ratio with value between 0 and 1 - output_array[t] = demand_t + combined_output_array[t] = demand_t + set_point_array[t] = -1 * charge / charge_eff # Ensure SOC stays within bounds - soc = max(min_charge_fraction, min(max_charge_fraction, soc)) + soc = max(soc_min, min(soc_max, soc)) # Record the SOC for the current time step soc_array[t] = deepcopy(soc) - # Record the curtailment at the current time step. Adjust `charge` from storage view to - # outside view for curtailment - unused_commodity_array[t] = max(0.0, unused_input - charge / charge_efficiency) - - # Record the missed load at the current time step - unmet_demand_array[t] = max(0.0, (demand_t - output_array[t])) - - outputs[f"{commodity}_set_point"] = output_array - - # Return the SOC - outputs[f"{commodity}_soc"] = soc_array - - # Return the unused commodity - outputs[f"{commodity}_unused_commodity"] = unused_commodity_array - - # Return the unmet load demand - outputs[f"{commodity}_unmet_demand"] = unmet_demand_array - - # Calculate and return the total unmet demand over the simulation period - outputs[f"total_{commodity}_unmet_demand"] = np.sum(unmet_demand_array) - - # Output the storage duration in hours - outputs["storage_duration"] = max_capacity / max_discharge_rate + outputs[f"{commodity}_set_point"] = set_point_array diff --git a/h2integrate/control/control_strategies/heuristic_pyomo_controller.py b/h2integrate/control/control_strategies/storage/heuristic_pyomo_controller.py similarity index 58% rename from h2integrate/control/control_strategies/heuristic_pyomo_controller.py rename to h2integrate/control/control_strategies/storage/heuristic_pyomo_controller.py index 85729da98..0c875f06a 100644 --- a/h2integrate/control/control_strategies/heuristic_pyomo_controller.py +++ b/h2integrate/control/control_strategies/storage/heuristic_pyomo_controller.py @@ -1,12 +1,14 @@ from typing import TYPE_CHECKING +import numpy as np +import pyomo.environ as pyomo from attrs import field, define from h2integrate.core.utilities import merge_shared_inputs from h2integrate.core.validators import range_val_or_none -from h2integrate.control.control_strategies.pyomo_controller_baseclass import ( - PyomoControllerBaseClass, - PyomoControllerBaseConfig, +from h2integrate.control.control_strategies.pyomo_storage_controller_baseclass import ( + PyomoStorageControllerBaseClass, + PyomoStorageControllerBaseConfig, ) @@ -15,12 +17,51 @@ @define(kw_only=True) -class HeuristicLoadFollowingControllerConfig(PyomoControllerBaseConfig): +class HeuristicLoadFollowingStorageControllerConfig(PyomoStorageControllerBaseConfig): + """Configuration class for the HeuristicLoadFollowingStorageController. + + Attributes: + charge_efficiency (float | None, optional): Efficiency of charging the storage, represented + as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Must be `None` if + `round_trip_efficiency` is provided. + discharge_efficiency (float | None, optional): Efficiency of discharging the storage, + represented as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Must be `None` + if `round_trip_efficiency` is provided. + round_trip_efficiency (float | None, optional): Combined efficiency of charging and + discharging the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for + 81% efficiency). Must be `None` if `charge_efficiency` or `discharge_efficiency` are + provided. + """ + charge_efficiency: float = field(validator=range_val_or_none(0, 1), default=None) discharge_efficiency: float = field(validator=range_val_or_none(0, 1), default=None) + round_trip_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + + def __attrs_post_init__(self): + """ + Post-initialization logic to validate and calculate efficiencies. + + Ensures that either `charge_efficiency` and `discharge_efficiency` are provided, + or `round_trip_efficiency` is provided. If `round_trip_efficiency` is provided, + it calculates `charge_efficiency` and `discharge_efficiency` as the square root + of `round_trip_efficiency`. + """ + + super().__attrs_post_init__() + if self.round_trip_efficiency is not None: + if self.charge_efficiency is not None or self.discharge_efficiency is not None: + raise ValueError( + "Exactly one of the following sets of parameters must be set: (a) " + "`round_trip_efficiency`, or (b) both `charge_efficiency` " + "and `discharge_efficiency`." + ) + + # Calculate charge and discharge efficiencies from round-trip efficiency + self.charge_efficiency = np.sqrt(self.round_trip_efficiency) + self.discharge_efficiency = np.sqrt(self.round_trip_efficiency) -class HeuristicLoadFollowingController(PyomoControllerBaseClass): +class HeuristicLoadFollowingStorageController(PyomoStorageControllerBaseClass): """Operates storage based on heuristic rules to meet the demand profile based on available commodity from generation profiles and demand profile. @@ -29,9 +70,14 @@ class HeuristicLoadFollowingController(PyomoControllerBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): """Initialize the heuristic load-following controller.""" - self.config = HeuristicLoadFollowingControllerConfig.from_dict( + self.config = HeuristicLoadFollowingStorageControllerConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control"), additional_cls_name=self.__class__.__name__, strict=False, @@ -41,6 +87,21 @@ def setup(self): super().setup() + for connection in self.dispatch_connections: + # get connection definition + source_tech, intended_dispatch_tech = connection + if any(intended_dispatch_tech in name for name in self.tech_group_name): + if source_tech == intended_dispatch_tech: + # When getting rules for the same tech, the tech name is not used in order to + # allow for automatic connections rather than complicating the h2i model set up + self.add_discrete_input("dispatch_block_rule_function", val=self.dummy_method) + else: + self.add_discrete_input( + f"{'dispatch_block_rule_function'}_{source_tech}", val=self.dummy_method + ) + else: + continue + self.add_input( "storage_capacity", val=self.config.max_capacity, @@ -48,23 +109,155 @@ def setup(self): desc="Storage capacity", ) - self.max_charge_fraction = [0.0] * self.config.n_control_window + self.max_soc_fraction = [0.0] * self.config.n_control_window self.max_discharge_fraction = [0.0] * self.config.n_control_window self._fixed_dispatch = [0.0] * self.config.n_control_window + def pyomo_setup(self, discrete_inputs): + """Create the Pyomo model, attach per-tech Blocks, and return dispatch solver. + + Returns: + callable: Function(performance_model, performance_model_kwargs, inputs, commodity) + executing rolling-window heuristic dispatch and returning: + (total_out, storage_out, unmet_demand, unused_commodity, soc) + """ + # initialize the pyomo model + self.pyomo_model = pyomo.ConcreteModel() + + index_set = pyomo.Set(initialize=range(self.config.n_control_window)) + + # run each pyomo rule set up function for each technology + for connection in self.dispatch_connections: + # get connection definition + source_tech, intended_dispatch_tech = connection + # only add connections to intended dispatch tech + if any(intended_dispatch_tech in name for name in self.tech_group_name): + # names are specified differently if connecting within the tech group vs + # connecting from an external tech group. This facilitates OM connections + if source_tech == intended_dispatch_tech: + dispatch_block_rule_function = discrete_inputs["dispatch_block_rule_function"] + else: + dispatch_block_rule_function = discrete_inputs[ + f"{'dispatch_block_rule_function'}_{source_tech}" + ] + # create pyomo block and set attr + blocks = pyomo.Block(index_set, rule=dispatch_block_rule_function) + setattr(self.pyomo_model, source_tech, blocks) + else: + continue + + # define dispatch solver + def pyomo_dispatch_solver( + performance_model: callable, + performance_model_kwargs, + inputs, + pyomo_model=self.pyomo_model, + commodity_name: str = self.config.commodity, + ): + """ + Execute rolling-window dispatch for the controlled technology. + + Iterates over the full simulation period in chunks of size + `self.config.n_control_window`, (re)configures per-window dispatch + parameters, invokes a heuristic control strategy to set fixed + dispatch decisions, and then calls the provided performance_model + over each window to obtain storage output and SOC trajectories. + + Args: + performance_model (callable): + Function implementing the technology performance over a control + window. Signature must accept (storage_dispatch_commands, + **performance_model_kwargs, sim_start_index=) + and return (storage_out_window, soc_window) arrays of length + n_control_window. + performance_model_kwargs (dict): + Extra keyword arguments forwarded unchanged to performance_model + at window (e.g., efficiencies, timestep size). + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity}_in" : available generated commodity profile. + f"{commodity}_demand" : demanded commodity output profile. + commodity (str, optional): + Base commodity name (e.g. "electricity", "hydrogen"). Default: + self.config.commodity. + + Returns: + tuple[np.ndarray, np.ndarray]: + storage_commodity_out : + Commodity supplied (positive) by the storage asset each timestep. + soc : + State of charge trajectory (percent of capacity). + + Raises: + NotImplementedError: + If the configured control strategy is not implemented. + + Notes: + 1. Arrays returned have length self.n_timesteps (full simulation period). + """ + + # initialize outputs + storage_commodity_out = np.zeros(self.n_timesteps) + soc = np.zeros(self.n_timesteps) + + # get the starting index for each control window + window_start_indices = list(range(0, self.n_timesteps, self.config.n_control_window)) + + self.initialize_parameters(inputs) + + # loop over all control windows, where t is the starting index of each window + for t in window_start_indices: + # get the inputs over the current control window + commodity_in = inputs[self.config.commodity + "_in"][ + t : t + self.config.n_control_window + ] + demand_in = inputs[f"{commodity_name}_demand"][t : t + self.config.n_control_window] + + # Update time series parameters for the heuristic method + self.update_time_series_parameters() + # determine dispatch commands for the current control window + # using the heuristic method + self.set_fixed_dispatch( + commodity_in, + self.config.system_commodity_interface_limit, + demand_in, + ) + + # run the performance/simulation model for the current control window + # using the dispatch commands + storage_commodity_out_control_window, soc_control_window = performance_model( + self.storage_dispatch_commands, + **performance_model_kwargs, + sim_start_index=t, + ) + + # get a list of all time indices belonging to the current control window + window_indices = list(range(t, t + self.config.n_control_window)) + + # loop over all time steps in the current control window + for j in window_indices: + # save the output for the control window to the output for the full + # simulation + storage_commodity_out[j] = storage_commodity_out_control_window[j - t] + soc[j] = soc_control_window[j - t] + + return storage_commodity_out, soc + + return pyomo_dispatch_solver + + def initialize_parameters(self, inputs): + """Initializes parameters.""" + if self.config.charge_efficiency is not None: self.charge_efficiency = self.config.charge_efficiency if self.config.discharge_efficiency is not None: self.discharge_efficiency = self.config.discharge_efficiency - def initialize_parameters(self, inputs): - """Initializes parameters.""" - self.minimum_storage = 0.0 self.maximum_storage = inputs["storage_capacity"][0] - self.minimum_soc = self.config.min_charge_fraction - self.maximum_soc = self.config.max_charge_fraction - self.initial_soc = self.config.init_charge_fraction + self.minimum_soc = self.config.min_soc_fraction + self.maximum_soc = self.config.max_soc_fraction + self.initial_soc = self.config.init_soc_fraction def update_time_series_parameters(self, start_time: int = 0): """Updates time series parameters. @@ -148,7 +341,7 @@ def _set_commodity_fraction_limits( """ for t in self.blocks.index_set(): - self.max_charge_fraction[t] = self.enforce_power_fraction_simple_bounds( + self.max_soc_fraction[t] = self.enforce_power_fraction_simple_bounds( (commodity_in[t]) / self.maximum_storage, self.minimum_soc, self.maximum_soc ) self.max_discharge_fraction[t] = self.enforce_power_fraction_simple_bounds( @@ -172,8 +365,8 @@ def _heuristic_method(self, commodity_in, commodity_demand): if fd > self.max_discharge_fraction[t]: fd = self.max_discharge_fraction[t] elif fd < 0.0: # Charging - if -fd > self.max_charge_fraction[t]: - fd = -self.max_charge_fraction[t] + if -fd > self.max_soc_fraction[t]: + fd = -self.max_soc_fraction[t] self._fixed_dispatch[t] = fd @staticmethod @@ -240,8 +433,8 @@ def _enforce_power_fraction_limits(self): if fd > self.max_discharge_fraction[t]: fd = self.max_discharge_fraction[t] elif fd < 0.0: # Charging - if -fd > self.max_charge_fraction[t]: - fd = -self.max_charge_fraction[t] + if -fd > self.max_soc_fraction[t]: + fd = -self.max_soc_fraction[t] self._fixed_dispatch[t] = fd def _fix_dispatch_model_variables(self): diff --git a/h2integrate/control/control_strategies/storage/openloop_storage_control_base.py b/h2integrate/control/control_strategies/storage/openloop_storage_control_base.py new file mode 100644 index 000000000..9f013d311 --- /dev/null +++ b/h2integrate/control/control_strategies/storage/openloop_storage_control_base.py @@ -0,0 +1,87 @@ +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig + + +@define(kw_only=True) +class StorageOpenLoopControlBaseConfig(BaseConfig): + """ + Configuration class for the open-loop storage control models. + + Attributes: + commodity (str): Name of the commodity being stored (e.g., "hydrogen"). + commodity_rate_units (str): Rate units of the commodity (e.g., "kg/h" or "kW"). + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., kW*h or kg). If not provided, defaults to `commodity_rate_units*h`. + + """ + + commodity: str = field() + commodity_rate_units: str = field() + demand_profile: int | float | list = field() + commodity_amount_units: str = field(default=None) + + def __attrs_post_init__(self): + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" + + +class StorageOpenLoopControlBase(om.ExplicitComponent): + """Base OpenMDAO component for open-loop demand tracking. + + This component defines the interfaces required for open-loop demand + controllers, including inputs for demand, available commodity, and outputs + dispatch command profile. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + + commodity = self.config.commodity + + self.add_input( + f"{commodity}_demand", + val=self.config.demand_profile, + shape=self.n_timesteps, + units=self.config.commodity_rate_units, + desc=f"Demand profile of {commodity}", + ) + + self.add_input( + f"{commodity}_in", + val=0.0, + shape=self.n_timesteps, + units=self.config.commodity_rate_units, + desc=f"Amount of {commodity} demand that has already been supplied", + ) + + self.add_output( + f"{commodity}_set_point", + val=0.0, + shape=self.n_timesteps, + units=self.config.commodity_rate_units, + desc=f"Dispatch commands for {commodity} storage", + ) + + def compute(): + """This method must be implemented by subclasses to define the + controller. + + Raises: + NotImplementedError: Always, unless implemented in a subclass. + """ + raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/control/control_strategies/optimized_pyomo_controller.py b/h2integrate/control/control_strategies/storage/optimized_pyomo_controller.py similarity index 58% rename from h2integrate/control/control_strategies/optimized_pyomo_controller.py rename to h2integrate/control/control_strategies/storage/optimized_pyomo_controller.py index b9f0da125..1b89510c5 100644 --- a/h2integrate/control/control_strategies/optimized_pyomo_controller.py +++ b/h2integrate/control/control_strategies/storage/optimized_pyomo_controller.py @@ -1,5 +1,6 @@ from typing import TYPE_CHECKING +import numpy as np import pyomo.environ as pyomo from attrs import field, define from pyomo.util.check_units import assert_units_consistent @@ -7,12 +8,12 @@ from h2integrate.core.utilities import merge_shared_inputs from h2integrate.core.validators import range_val from h2integrate.control.control_rules.plant_dispatch_model import PyomoDispatchPlantModel -from h2integrate.control.control_strategies.pyomo_controller_baseclass import ( +from h2integrate.control.control_strategies.controller_opt_problem_state import DispatchProblemState +from h2integrate.control.control_strategies.pyomo_storage_controller_baseclass import ( SolverOptions, - PyomoControllerBaseClass, - PyomoControllerBaseConfig, + PyomoStorageControllerBaseClass, + PyomoStorageControllerBaseConfig, ) -from h2integrate.control.control_strategies.controller_opt_problem_state import DispatchProblemState from h2integrate.control.control_rules.storage.pyomo_storage_rule_min_operating_cost import ( PyomoRuleStorageMinOperatingCosts, ) @@ -26,7 +27,7 @@ @define -class OptimizedDispatchControllerConfig(PyomoControllerBaseConfig): +class OptimizedDispatchStorageControllerConfig(PyomoStorageControllerBaseConfig): """ Configuration data container for Pyomo-based optimal dispatch. @@ -79,19 +80,19 @@ def make_dispatch_inputs(self): "cost_per_discharge", "commodity_met_value", "max_capacity", - "max_charge_fraction", - "min_charge_fraction", + "max_soc_fraction", + "min_soc_fraction", "charge_efficiency", "discharge_efficiency", "max_charge_rate", ] dispatch_inputs = {k: self.as_dict()[k] for k in dispatch_keys} - dispatch_inputs.update({"initial_soc_fraction": self.init_charge_fraction}) + dispatch_inputs.update({"initial_soc_fraction": self.init_soc_fraction}) return dispatch_inputs -class OptimizedDispatchController(PyomoControllerBaseClass): +class OptimizedDispatchStorageController(PyomoStorageControllerBaseClass): """Operates storage based on optimization to meet the demand profile based on available commodity from generation profiles and demand profile while minimizing costs. @@ -99,9 +100,14 @@ class OptimizedDispatchController(PyomoControllerBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): """Initialize the optimized dispatch controller.""" - self.config = OptimizedDispatchControllerConfig.from_dict( + self.config = OptimizedDispatchStorageControllerConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control") ) @@ -124,7 +130,7 @@ def setup(self): super().setup() self.n_control_window = self.config.n_control_window - self.updated_initial_soc = self.config.init_charge_fraction + self.updated_initial_soc = self.config.init_soc_fraction # Is this the best place to put this??? self.commodity_info = { @@ -137,16 +143,158 @@ def setup(self): self.dispatch_inputs = self.config.make_dispatch_inputs() - def initialize_parameters(self, commodity_in, commodity_demand): + def pyomo_setup(self, discrete_inputs): + """Create the Pyomo model, extract dispatch technology names, and return dispatch solver. + + Returns: + callable: Function(performance_model, performance_model_kwargs, inputs, commodity) + executing rolling-window optimization to determine dispatch and returning: + (total_out, storage_out, unmet_demand, unused_commodity, soc) + """ + # initialize the pyomo model + self.pyomo_model = pyomo.ConcreteModel() + + pyomo.Set(initialize=range(self.config.n_control_window)) + + self.source_techs = [] + self.dispatch_tech = [] + + for connection in self.dispatch_connections: + # get connection definition + source_tech, intended_dispatch_tech = connection + # only add connections to intended dispatch tech + if any(intended_dispatch_tech in name for name in self.tech_group_name): + # record source and dispatch techs + if source_tech == intended_dispatch_tech: + self.dispatch_tech.append(source_tech) + self.source_techs.append(source_tech) + else: + continue + + # define dispatch solver + def pyomo_dispatch_solver( + performance_model: callable, + performance_model_kwargs, + inputs, + pyomo_model=self.pyomo_model, + commodity_name: str = self.config.commodity, + ): + """ + Execute rolling-window dispatch for the controlled technology. + + Iterates over the full simulation period in chunks of size + `self.config.n_control_window`, (re)configures per-window dispatch + parameters, solves the Pyomo optimization model to determine + dispatch decisions, and then calls the provided performance_model + over each window to obtain storage output and SOC trajectories. + + Args: + performance_model (callable): + Function implementing the technology performance over a control + window. Signature must accept (storage_dispatch_commands, + **performance_model_kwargs, sim_start_index=) + and return (storage_out_window, soc_window) arrays of length + n_control_window. + performance_model_kwargs (dict): + Extra keyword arguments forwarded unchanged to performance_model + at window (e.g., efficiencies, timestep size). + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity}_in" : available generated commodity profile. + f"{commodity}_demand" : demanded commodity output profile. + commodity (str, optional): + Base commodity name (e.g. "electricity", "hydrogen"). Default: + self.config.commodity. + + Returns: + tuple[np.ndarray, np.ndarray]: + storage_commodity_out : + Commodity supplied (positive) by the storage asset each timestep. + soc : + State of charge trajectory (percent of capacity). + + Raises: + NotImplementedError: + If the configured control strategy is not implemented. + + Notes: + 1. Arrays returned have length self.n_timesteps (full simulation period). + """ + + # initialize outputs + storage_commodity_out = np.zeros(self.n_timesteps) + soc = np.zeros(self.n_timesteps) + + # get the starting index for each control window + window_start_indices = list(range(0, self.n_timesteps, self.config.n_control_window)) + + # Initialize parameters for optimized dispatch strategy + self.initialize_parameters(inputs) + + # loop over all control windows, where t is the starting index of each window + for t in window_start_indices: + # get the inputs over the current control window + commodity_in = inputs[f"{self.config.commodity}_in"][ + t : t + self.config.n_control_window + ] + demand_in = inputs[f"{commodity_name}_demand"][t : t + self.config.n_control_window] + + # Progress report + if t % (self.n_timesteps // 4) < self.n_control_window: + percentage = round((t / self.n_timesteps) * 100) + print(f"{percentage}% done with optimal dispatch") + # Update time series parameters for the optimization method + self.update_time_series_parameters( + commodity_in=commodity_in, + commodity_demand=demand_in, + updated_initial_soc=self.updated_initial_soc, + ) + # Run dispatch optimization to minimize costs while meeting demand + self.solve_dispatch_model( + start_time=t, + n_days=self.n_timesteps // 24, + ) + + # run the performance/simulation model for the current control window + # using the dispatch commands + storage_commodity_out_control_window, soc_control_window = performance_model( + self.storage_dispatch_commands, + **performance_model_kwargs, + sim_start_index=t, + ) + # update SOC for next time window + self.updated_initial_soc = soc_control_window[-1] / 100 # turn into ratio + + # get a list of all time indices belonging to the current control window + window_indices = list(range(t, t + self.config.n_control_window)) + + # loop over all time steps in the current control window + for j in window_indices: + # save the output for the control window to the output for the full + # simulation + storage_commodity_out[j] = storage_commodity_out_control_window[j - t] + soc[j] = soc_control_window[j - t] + + return storage_commodity_out, soc + + return pyomo_dispatch_solver + + def initialize_parameters(self, inputs): """Initialize parameters for optimization model Args: - commodity_in (list): List of generated commodity in for this time slice. - commodity_demand (list): The demanded commodity for this time slice. + inputs (dict): + Dictionary of numpy arrays (length = self.n_timesteps) containing at least: + f"{commodity}_in" : Available generated commodity profile. + f"{commodity}_demand" : Demanded commodity output profile. """ # Where pyomo model communicates with the rest of the controller # self.hybrid_dispatch_model is the pyomo model, this is the thing in hybrid_rule + if "max_charge_rate" in inputs: + self.dispatch_inputs["max_charge_rate"] = inputs["max_charge_rate"][0] + if "storage_capacity" in inputs: + self.dispatch_inputs["max_capacity"] = inputs["storage_capacity"][0] self.hybrid_dispatch_model = self._create_dispatch_optimization_model() self.hybrid_dispatch_rule.create_min_operating_cost_expression() self.hybrid_dispatch_rule.create_arcs() @@ -159,9 +307,7 @@ def initialize_parameters(self, commodity_in, commodity_demand): # hybrid_dispatch_rule is the thing where you can access variables and hybrid_rule \ # functions from - self.hybrid_dispatch_rule.initialize_parameters( - commodity_in, commodity_demand, self.dispatch_inputs - ) + self.hybrid_dispatch_rule.initialize_parameters(inputs, self.dispatch_inputs) def update_time_series_parameters( self, commodity_in=None, commodity_demand=None, updated_initial_soc=None diff --git a/h2integrate/control/control_strategies/storage/simple_openloop_controller.py b/h2integrate/control/control_strategies/storage/simple_openloop_controller.py new file mode 100644 index 000000000..418a8ec05 --- /dev/null +++ b/h2integrate/control/control_strategies/storage/simple_openloop_controller.py @@ -0,0 +1,105 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.control.control_strategies.storage.openloop_storage_control_base import ( + StorageOpenLoopControlBase, + StorageOpenLoopControlBaseConfig, +) + + +@define(kw_only=True) +class SimpleStorageOpenLoopControllerConfig(StorageOpenLoopControlBaseConfig): + """Configuration class for the SimpleStorageOpenLoopController + + Attributes: + commodity (str): name of commodity + commodity_rate_units (str): Units of the commodity (e.g., kW or kg/h). + set_demand_as_avg_commodity_in (bool): If True, assume the demand is + equal to the mean input commodity. If False, uses the demand input. + demand_profile (int | float | list, optional): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + Only used if `set_demand_as_avg_commodity_in` is False. Defaults to 0. + + """ + + set_demand_as_avg_commodity_in: bool = field() + demand_profile: int | float | list = field(default=0.0) + + def __attrs_post_init__(self): + super().__attrs_post_init__() + + if isinstance(self.demand_profile, list | np.ndarray): + user_input_dmd = True if sum(self.demand_profile) > 0 else False + else: + user_input_dmd = True if self.demand_profile > 0 else False + + if self.set_demand_as_avg_commodity_in and user_input_dmd: + # If using the average commodity in as the demand, + # warn users if they input the demand profile + msg = ( + "A non-zero demand profile was provided but set_demand_as_avg_commodity_in is True." + " The provided demand profile will not be used, the demand profile will be " + f"calculated as the mean of ``{self.commodity}_in``. " + ) + raise ValueError(msg) + + +class SimpleStorageOpenLoopController(StorageOpenLoopControlBase): + """ + A simple open-loop controller for storage systems. + + This controller directly sets a storage control set point as the difference between the + demand and the available input commodity. It is useful for testing, as a placeholder for + more complex storage controllers, and for maintaining consistency between controlled and + uncontrolled frameworks. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + self.config = SimpleStorageOpenLoopControllerConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "control"), + additional_cls_name=self.__class__.__name__, + strict=False, + ) + + super().setup() + + def compute(self, inputs, outputs): + """ + Simple controller that outputs `commodity_set_point`, + the dispatch set-points for each timestep in `commodity_rate_units`. + Negative values command charging, positive values command discharging. + + """ + + if ( + self.config.set_demand_as_avg_commodity_in + and inputs[f"{self.config.commodity}_demand"].sum() > 0 + ): + msg = ( + "A non-zero demand profile was input but set_demand_as_avg_commodity_in is True." + " The input demand profile will not be used, the demand profile will be " + f"calculated as the mean of ``{self.config.commodity}_in``. " + ) + raise ValueError(msg) + + if self.config.set_demand_as_avg_commodity_in: + # Assume the demand is the average of the input commodity + commodity_demand = np.mean(inputs[f"{self.config.commodity}_in"]) * np.ones( + self.n_timesteps + ) + else: + commodity_demand = inputs[f"{self.config.commodity}_demand"] + + # Assign the set point as the difference between the demand and the input commodity + # when demand > input, the set point is positive to command discharging + # when demand < input, the set point is negative to command charging + outputs[f"{self.config.commodity}_set_point"] = ( + commodity_demand - inputs[f"{self.config.commodity}_in"] + ) diff --git a/h2integrate/control/control_strategies/storage/test/conftest.py b/h2integrate/control/control_strategies/storage/test/conftest.py new file mode 100644 index 000000000..fa8f250cf --- /dev/null +++ b/h2integrate/control/control_strategies/storage/test/conftest.py @@ -0,0 +1,5 @@ +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/control/test/inputs/tech_config.yaml b/h2integrate/control/control_strategies/storage/test/inputs/tech_config.yaml similarity index 93% rename from h2integrate/control/test/inputs/tech_config.yaml rename to h2integrate/control/control_strategies/storage/test/inputs/tech_config.yaml index de88ea0c8..9a1556e0b 100644 --- a/h2integrate/control/test/inputs/tech_config.yaml +++ b/h2integrate/control/control_strategies/storage/test/inputs/tech_config.yaml @@ -3,7 +3,7 @@ description: This hybrid plant produces hydrogen technologies: h2_storage: control_strategy: - model: PassThroughOpenLoopController + model: SimpleStorageOpenLoopController performance_model: model: StorageAutoSizingModel cost_model: diff --git a/h2integrate/control/control_strategies/storage/test/test_heuristic_controllers.py b/h2integrate/control/control_strategies/storage/test/test_heuristic_controllers.py new file mode 100644 index 000000000..bb7114c04 --- /dev/null +++ b/h2integrate/control/control_strategies/storage/test/test_heuristic_controllers.py @@ -0,0 +1,1079 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel +from h2integrate.storage.storage_performance_model import StoragePerformanceModel +from h2integrate.storage.simple_storage_auto_sizing import StorageAutoSizingModel +from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( + PyomoRuleStorageBaseclass, +) +from h2integrate.control.control_strategies.storage.heuristic_pyomo_controller import ( + HeuristicLoadFollowingStorageController, +) + + +@fixture +def plant_config_battery(): + plant_config_dict = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + }, + }, + "tech_to_dispatch_connections": [ + ["battery", "battery"], + ], + } + return plant_config_dict + + +@fixture +def tech_config_battery(): + tech_config_dict = { + "name": "technology_config", + "description": "...", + "technologies": { + "battery": { + "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, + "control_strategy": {"model": "HeuristicLoadFollowingStorageController"}, + "performance_model": {"model": "PySAMBatteryPerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 50000, + "max_capacity": 200000, + "n_control_window": 24, + "n_horizon_window": 48, + "init_soc_fraction": 0.5, + "max_soc_fraction": 0.9, + "min_soc_fraction": 0.1, + }, + "performance_parameters": { + "chemistry": "LFPGraphite", + "control_variable": "input_power", + "demand_profile": 0.0, + }, + "control_parameters": { + "commodity": "electricity", + "commodity_rate_units": "kW", + "tech_name": "battery", + "system_commodity_interface_limit": 1e12, + }, + "dispatch_rule_parameters": { + "commodity": "electricity", + "commodity_rate_units": "kW", + }, + }, + } + }, + } + return tech_config_dict + + +@fixture +def plant_config_h2_storage(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + }, + }, + "tech_to_dispatch_connections": [ + ["combiner", "h2_storage"], + ["h2_storage", "h2_storage"], + ], + } + return plant_config + + +@fixture +def tech_config_generic(): + tech_config = { + "technologies": { + "h2_storage": { + "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, + "control_strategy": {"model": "HeuristicLoadFollowingStorageController"}, + "performance_model": {"model": "StoragePerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 10.0, + "max_capacity": 40.0, + "n_control_window": 24, + "init_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.1, + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + "performance_parameters": { + "charge_equals_discharge": True, + "commodity_amount_units": "kg", + "demand_profile": 0.0, + }, + "control_parameters": { + "tech_name": "h2_storage", + "system_commodity_interface_limit": 10.0, + }, + }, + } + }, + } + return tech_config + + +@fixture +def tech_config_autosizing(): + tech_config = { + "technologies": { + "h2_storage": { + "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, + "control_strategy": {"model": "HeuristicLoadFollowingStorageController"}, + "performance_model": {"model": "StorageAutoSizingModel"}, + "model_inputs": { + "shared_parameters": { + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.0, + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "max_capacity": 5.0, # shared between control and dispatch rules + }, + "performance_parameters": { + "charge_equals_discharge": True, + "commodity_amount_units": "kg", + "demand_profile": 0.0, + "set_demand_as_avg_commodity_in": False, + }, + "control_parameters": { + "n_control_window": 24, + "tech_name": "h2_storage", + "system_commodity_interface_limit": 10.0, + "init_soc_fraction": 0.1, + }, + }, + } + }, + } + return tech_config + + +def calculate_combined_outputs(storage_charge_discharge, commodity_in, commodity_demand): + combined_commodity_in = commodity_in + storage_charge_discharge + remaining_demand = commodity_demand - combined_commodity_in + unmet_demand = np.where(remaining_demand > 0, remaining_demand, 0) + unused_commodity = np.where(remaining_demand < 0, -1 * remaining_demand, 0) + combined_out_for_demand = combined_commodity_in - unused_commodity + + return unmet_demand, unused_commodity, combined_out_for_demand + + +@pytest.mark.regression +def test_heuristic_load_following_battery_dispatch( + plant_config_battery, tech_config_battery, subtests +): + # Fabricate some oscillating power generation data: 0 kW for the first 12 hours, 10000 kW for + # the second twelve hours, and repeat that daily cycle over a year. + n_look_ahead_half = int(24 / 2) + + electricity_in = np.concatenate( + (np.ones(n_look_ahead_half) * 0, np.ones(n_look_ahead_half) * 10000) + ) + electricity_in = np.tile(electricity_in, 365) + + demand_in = np.ones(8760) * 6000.0 + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "PyomoRuleStorageBaseclass", + PyomoRuleStorageBaseclass( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery_heuristic_load_following_controller", + HeuristicLoadFollowingStorageController( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery", + PySAMBatteryPerformanceModel( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + # Test the case where the charging/discharging cycle remains within the max and min SOC limits + # Check the expected outputs to actual outputs + expected_electricity_out = [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + ] + + expected_battery_electricity = [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + -3988.62235554, + -3989.2357847, + -3989.76832626, + -3990.26170521, + -3990.71676106, + -3991.13573086, + -3991.52143699, + -3991.87684905, + -3992.20485715, + -3992.50815603, + -3992.78920148, + -3993.05020268, + ] + + expected_SOC = [ + 49.39724571, + 46.54631833, + 43.69133882, + 40.83119769, + 37.96394628, + 35.08762294, + 32.20015974, + 29.29919751, + 26.38184809, + 23.44436442, + 20.48162855, + 17.48627159, + 19.47067094, + 21.44466462, + 23.40741401, + 25.36052712, + 27.30530573, + 29.24281439, + 31.17393198, + 33.09939078, + 35.01980641, + 36.93570091, + 38.84752069, + 40.75565055, + ] + + expected_unmet_demand_out = np.array( + [ + 4.93562475e-05, + 9.43323257e00, + 9.86104099e00, + 1.03516883e01, + 1.09145178e01, + 1.15580611e01, + 1.22942204e01, + 1.31392889e01, + 1.41150664e01, + 1.52503612e01, + 1.65828282e01, + 1.81605218e01, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + ] + ) + + expected_unused_commodity_out = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 11.37764445, + 10.76421514, + 10.23167373, + 9.73829458, + 9.28323883, + 8.86426912, + 8.47856327, + 8.12315078, + 7.79514283, + 7.49184426, + 7.21079852, + 6.94979705, + ] + ) + + unmet_demand, unused_commodity, combined_out_for_demand = calculate_combined_outputs( + prob.get_val("battery.electricity_out", units="kW"), electricity_in, demand_in + ) + + with subtests.test("Check electricity_out"): + assert pytest.approx(expected_electricity_out) == combined_out_for_demand[0:24] + + with subtests.test("Check battery_electricity"): + assert ( + pytest.approx(expected_battery_electricity) + == prob.get_val("battery.electricity_out", units="kW")[0:24] + ) + + with subtests.test("Check SOC"): + assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC", units="percent")[0:24] + + with subtests.test("Check unmet_demand"): + assert pytest.approx(expected_unmet_demand_out, abs=1e-4) == unmet_demand[0:24] + + with subtests.test("Check unused_electricity_out"): + assert pytest.approx(expected_unused_commodity_out) == unused_commodity[0:24] + + # Test the case where the battery is discharged to its lower SOC limit + electricity_in = np.zeros(8760) + demand_in = np.ones(8760) * 30000 + + # Setup the system and required values + prob.setup() + + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + expected_electricity_out = np.array( + [3.00000000e04, 2.99305601e04, 2.48145097e04, 4.97901621e00, 3.04065390e01] + ) + expected_battery_electricity = expected_electricity_out + expected_SOC = np.array([37.69010284, 22.89921133, 10.00249593, 10.01524461, 10.03556385]) + expected_unmet_demand_out = np.array( + [ + 9.43691703e-09, + 6.94398578e01, + 5.18549025244965e03, + 2.999502098378662e04, + 2.9969593461021406e04, + ] + ) + expected_unused_commodity_out = np.zeros(5) + + unmet_demand, unused_commodity, combined_out_for_demand = calculate_combined_outputs( + prob.get_val("battery.electricity_out", units="kW"), electricity_in, demand_in + ) + + with subtests.test("Check electricity_out for min SOC"): + assert pytest.approx(expected_electricity_out) == combined_out_for_demand[:5] + + with subtests.test("Check battery_electricity for min SOC"): + assert ( + pytest.approx(expected_battery_electricity) + == prob.get_val("battery.electricity_out", units="kW")[:5] + ) + + with subtests.test("Check SOC for min SOC"): + assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC", units="percent")[:5] + + with subtests.test("Check unmet_demand for min SOC"): + assert pytest.approx(expected_unmet_demand_out, abs=1e-6) == unmet_demand[:5] + + with subtests.test("Check unused_commodity_out for min SOC"): + assert pytest.approx(expected_unused_commodity_out) == unused_commodity[:5] + + # Test the case where the battery is charged to its upper SOC limit + electricity_in = np.ones(8760) * 30000.0 + demand_in = np.zeros(8760) + + # Setup the system and required values + prob.setup() + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + expected_electricity_out = [-0.008477085, 0.0, 0.0, 0.0, 0.0] + + # TODO reevaluate the output here + expected_battery_electricity = np.array( + [-30000.00847709, -29973.58679719, -21109.22734423, 0.0, 0.0] + ) + + # expected_SOC = [66.00200558, 79.43840635, 90.0, 90.0, 90.0] + expected_SOC = np.array([66.00200558, 79.43840635, 89.02326413, 89.02326413, 89.02326413]) + expected_unmet_demand_out = np.array([0.00847709, 0.0, 0.0, 0.0, 0.0]) + expected_unused_commodity_out = np.array( + [0.00000000e00, 2.64132028e01, 8.89077266e03, 3.04088135e04, 3.00564087e04] + ) + # I think this is the right expected_electricity_out since the battery won't + # be discharging in this instance + # expected_electricity_out = [0.0, 0.0, 0.0, 0.0, 0.0] + # # expected_electricity_out = [0.0, 0.0, 6150.14483911, 30000.0, 30000.0] + # expected_battery_electricity = [-30000.00847705, -29973.58679681, + # -23310.54620182, 0.0, 0.0] + # expected_SOC = [66.00200558, 79.43840635, 90.0, 90.0, 90.0] + # expected_unmet_demand_out = np.zeros(5) + # expected_unused_commodity_out = [0.0, 0.0, 6150.14483911, 30000.0, 30000.0] + + abs_tol = 1e-6 + rel_tol = 1e-1 + + unmet_demand, unused_commodity, combined_out_for_demand = calculate_combined_outputs( + prob.get_val("battery.electricity_out", units="kW"), electricity_in, demand_in + ) + + with subtests.test("Check electricity_out for max SOC"): + assert ( + pytest.approx(expected_electricity_out, abs=abs_tol, rel=rel_tol) + == combined_out_for_demand[:5] + ) + + with subtests.test("Check battery_electricity for max SOC"): + assert ( + pytest.approx(expected_battery_electricity, abs=abs_tol, rel=rel_tol) + == prob.get_val("battery.electricity_out", units="kW")[:5] + ) + + with subtests.test("Check SOC for max SOC"): + assert ( + pytest.approx(expected_SOC, abs=abs_tol) + == prob.get_val("battery.SOC", units="percent")[:5] + ) + + with subtests.test("Check unmet_demand for max SOC"): + assert pytest.approx(expected_unmet_demand_out, abs=abs_tol) == unmet_demand[:5] + + with subtests.test("Check unused_commodity_out for max SOC"): + assert ( + pytest.approx(expected_unused_commodity_out, abs=abs_tol, rel=rel_tol) + == unused_commodity[:5] + ) + + +@pytest.mark.regression +def test_heuristic_load_following_battery_dispatch_change_capacities( + plant_config_battery, tech_config_battery, subtests +): + # update the battery capacity to be very small in the config + + tech_config_battery["technologies"]["battery"]["model_inputs"]["shared_parameters"].update( + {"max_charge_rate": 1000} + ) + tech_config_battery["technologies"]["battery"]["model_inputs"]["shared_parameters"].update( + {"max_capacity": 1000} + ) + + # Fabricate some oscillating power generation data: 0 kW for the first 12 hours, 10000 kW for + # the second twelve hours, and repeat that daily cycle over a year. + + n_look_ahead_half = int(24 / 2) + + electricity_in = np.concatenate( + (np.ones(n_look_ahead_half) * 0, np.ones(n_look_ahead_half) * 10000) + ) + electricity_in = np.tile(electricity_in, 365) + + demand_in = np.ones(8760) * 6000.0 + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="max_charge_rate", val=1000, units="kW"), + promotes=["*"], + ) + + prob.model.add_subsystem( + name="IVC2", + subsys=om.IndepVarComp(name="storage_capacity", val=1000, units="kW*h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "PyomoRuleStorageBaseclass", + PyomoRuleStorageBaseclass( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery_heuristic_load_following_controller", + HeuristicLoadFollowingStorageController( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery", + PySAMBatteryPerformanceModel( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + + prob.set_val("IVC1.max_charge_rate", 50000, units="kW") + prob.set_val("IVC2.storage_capacity", 200000, units="kW*h") + + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + # Test the case where the charging/discharging cycle remains within the max and min SOC limits + # Check the expected outputs to actual outputs + expected_electricity_out = [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + 6000.0, + ] + + expected_battery_electricity = [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + -3988.62235554, + -3989.2357847, + -3989.76832626, + -3990.26170521, + -3990.71676106, + -3991.13573086, + -3991.52143699, + -3991.87684905, + -3992.20485715, + -3992.50815603, + -3992.78920148, + -3993.05020268, + ] + + expected_SOC = [ + 49.39724571, + 46.54631833, + 43.69133882, + 40.83119769, + 37.96394628, + 35.08762294, + 32.20015974, + 29.29919751, + 26.38184809, + 23.44436442, + 20.48162855, + 17.48627159, + 19.47067094, + 21.44466462, + 23.40741401, + 25.36052712, + 27.30530573, + 29.24281439, + 31.17393198, + 33.09939078, + 35.01980641, + 36.93570091, + 38.84752069, + 40.75565055, + ] + + expected_unmet_demand_out = np.array( + [ + 4.93562475e-05, + 9.43323257e00, + 9.86104099e00, + 1.03516883e01, + 1.09145178e01, + 1.15580611e01, + 1.22942204e01, + 1.31392889e01, + 1.41150664e01, + 1.52503612e01, + 1.65828282e01, + 1.81605218e01, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + 0.00000000e00, + ] + ) + + expected_unused_commodity_out = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 11.37764445, + 10.76421514, + 10.23167373, + 9.73829458, + 9.28323883, + 8.86426912, + 8.47856327, + 8.12315078, + 7.79514283, + 7.49184426, + 7.21079852, + 6.94979705, + ] + ) + + unmet_demand, unused_commodity, combined_out_for_demand = calculate_combined_outputs( + prob.get_val("battery.electricity_out", units="kW"), electricity_in, demand_in + ) + + with subtests.test("Battery output capacity"): + assert ( + pytest.approx( + prob.get_val("battery.rated_electricity_production", units="MW"), rel=1e-6 + ) + == 50.0 + ) + + with subtests.test("Check electricity_out"): + assert ( + pytest.approx(expected_electricity_out) # TODO: update + == combined_out_for_demand[0:24] + ) + + with subtests.test("Check battery_electricity"): + assert ( + pytest.approx(expected_battery_electricity) + == prob.get_val("battery.electricity_out", units="kW")[0:24] + ) + + with subtests.test("Check SOC"): + assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC", units="percent")[0:24] + + with subtests.test("Check unmet_demand"): + assert pytest.approx(expected_unmet_demand_out, abs=1e-4) == unmet_demand[0:24] + + with subtests.test("Check unused_electricity_out"): + assert pytest.approx(expected_unused_commodity_out) == unused_commodity[0:24] + + +@pytest.mark.regression +def test_heuristic_load_following_dispatch_with_generic_storage( + plant_config_h2_storage, tech_config_generic, subtests +): + commodity_demand = np.full(8760, 5.0) + commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 365) + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "PyomoRuleStorageBaseclass", + PyomoRuleStorageBaseclass( + plant_config=plant_config_h2_storage, + tech_config=tech_config_generic["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage_heuristic_load_following_controller", + HeuristicLoadFollowingStorageController( + plant_config=plant_config_h2_storage, + tech_config=tech_config_generic["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StoragePerformanceModel( + plant_config=plant_config_h2_storage, + tech_config=tech_config_generic["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("h2_storage.hydrogen_in", commodity_in) + prob.set_val("h2_storage.hydrogen_demand", commodity_demand) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + discharge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + capacity = prob.get_val("h2_storage.storage_capacity", units="kg")[0] + + # Test that discharge is always positive + with subtests.test("Discharge is always positive"): + assert np.all(prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h") >= 0) + with subtests.test("Charge is always negative"): + assert np.all(prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h") <= 0) + with subtests.test("Charge + Discharge == hydrogen_out"): + charge_plus_discharge = prob.get_val( + "h2_storage.storage_hydrogen_charge", units="kg/h" + ) + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h") + np.testing.assert_allclose( + charge_plus_discharge, prob.get_val("hydrogen_out", units="kg/h"), rtol=1e-6 + ) + with subtests.test("Initial SOC is correct"): + assert ( + pytest.approx(prob.model.get_val("h2_storage.SOC", units="unitless")[0], rel=1e-6) + == 0.1 + ) + + indx_soc_increase = np.argwhere( + np.diff(prob.model.get_val("h2_storage.SOC", units="unitless"), prepend=True) > 0 + ).flatten() + indx_soc_decrease = np.argwhere( + np.diff(prob.model.get_val("h2_storage.SOC", units="unitless"), prepend=False) < 0 + ).flatten() + indx_soc_same = np.argwhere( + np.diff(prob.model.get_val("h2_storage.SOC", units="unitless"), prepend=True) == 0.0 + ).flatten() + + with subtests.test("SOC increases when charging"): + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] < 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[indx_soc_decrease] == 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[indx_soc_same] == 0 + ) + + with subtests.test("SOC decreases when discharging"): + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_decrease] + > 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_increase] + == 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_same] == 0 + ) + + with subtests.test("Max SOC <= Max storage percent"): + assert prob.get_val("h2_storage.SOC", units="unitless").max() <= 1.0 + + with subtests.test("Min SOC >= Min storage percent"): + assert prob.get_val("h2_storage.SOC", units="unitless").min() >= 0.1 + + with subtests.test("Charge never exceeds charge rate"): + assert ( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h").min() + >= -1 * charge_rate + ) + + with subtests.test("Discharge never exceeds discharge rate"): + assert ( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h").max() + <= discharge_rate + ) + + with subtests.test("Discharge never exceeds demand"): + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h").max() + <= commodity_demand + ) + + with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() >= -1 * capacity + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge hour 0-20"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(4)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[0:20], + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.regression +def test_heuristic_dispatch_with_autosizing_storage_demand_less_than_avg_in( + plant_config_h2_storage, tech_config_autosizing, subtests +): + commodity_demand = np.full(8760, 5.0) + commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 365) + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "PyomoRuleStorageBaseclass", + PyomoRuleStorageBaseclass( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage_controller", + HeuristicLoadFollowingStorageController( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StorageAutoSizingModel( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("h2_storage.hydrogen_in", commodity_in) + prob.set_val("h2_storage.hydrogen_demand", commodity_demand) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + discharge_rate = prob.get_val("h2_storage.max_discharge_rate", units="kg/h")[0] + capacity = prob.get_val("h2_storage.storage_capacity", units="kg")[0] + + with subtests.test("Capacity is correct"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_usable_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + + assert pytest.approx(capacity, rel=1e-6) == expected_usable_capacity + + with subtests.test("Charge rate is correct"): + assert pytest.approx(charge_rate, rel=1e-6) == max(commodity_in) + with subtests.test("Discharge rate is correct"): + assert pytest.approx(discharge_rate, rel=1e-6) == max(commodity_in) + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge hour 0-20"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -11, -1), np.zeros(2)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[0:20], + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.regression +def test_heuristic_dispatch_with_autosizing_storage_demand_is_avg_in( + plant_config_h2_storage, tech_config_autosizing, subtests +): + commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 365) + commodity_demand = np.full(8760, np.mean(commodity_in)) + tech_config_autosizing["technologies"]["h2_storage"]["model_inputs"]["performance_parameters"][ + "set_demand_as_avg_commodity_in" + ] = True + tech_config_autosizing["technologies"]["h2_storage"]["model_inputs"]["performance_parameters"][ + "demand_profile" + ] = 0.0 + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "PyomoRuleStorageBaseclass", + PyomoRuleStorageBaseclass( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage_controller", + HeuristicLoadFollowingStorageController( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StorageAutoSizingModel( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("h2_storage.hydrogen_in", commodity_in) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + discharge_rate = prob.get_val("h2_storage.max_discharge_rate", units="kg/h")[0] + capacity = prob.get_val("h2_storage.storage_capacity", units="kg")[0] + + with subtests.test("Capacity is correct"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_usable_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + + assert pytest.approx(capacity, rel=1e-6) == expected_usable_capacity + + with subtests.test("Charge rate is correct"): + assert pytest.approx(charge_rate, rel=1e-6) == max(commodity_in) + with subtests.test("Discharge rate is correct"): + assert pytest.approx(discharge_rate, rel=1e-6) == max(commodity_in) + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat( + [np.zeros(8), np.full(6, 2.0), np.full(3, 6.0), np.array([5, 4, 3])] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge hour 0-20"): + expected_charge = np.concat([np.zeros(9), np.arange(-1, -10, -1), np.zeros(2)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[0:20], + expected_charge, + rtol=1e-6, + ) diff --git a/h2integrate/control/control_strategies/storage/test/test_multistorage_pyomo_openloop_control.py b/h2integrate/control/control_strategies/storage/test/test_multistorage_pyomo_openloop_control.py new file mode 100644 index 000000000..58c01c3f5 --- /dev/null +++ b/h2integrate/control/control_strategies/storage/test/test_multistorage_pyomo_openloop_control.py @@ -0,0 +1,790 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel +from h2integrate.storage.storage_performance_model import StoragePerformanceModel +from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( + PyomoRuleStorageBaseclass, +) +from h2integrate.control.control_strategies.storage.heuristic_pyomo_controller import ( + HeuristicLoadFollowingStorageController, +) +from h2integrate.control.control_strategies.storage.demand_openloop_storage_controller import ( + DemandOpenLoopStorageController, +) + + +@fixture +def plant_config(pyo_controllers): + plant_config_base = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + }, + } + } + + if pyo_controllers == "bat": + tech_to_dispatch = { + "tech_to_dispatch_connections": [ + ["combiner", "battery"], + ["battery", "battery"], + ] + } + plant_config = plant_config_base | tech_to_dispatch + return plant_config + + if pyo_controllers == "h2s": + tech_to_dispatch = { + "tech_to_dispatch_connections": [ + ["combiner", "h2_storage"], + ["h2_storage", "h2_storage"], + ] + } + plant_config = plant_config_base | tech_to_dispatch + return plant_config + + if pyo_controllers == "both": + tech_to_dispatch = { + "tech_to_dispatch_connections": [ + ["elec_combiner", "battery"], + ["battery", "battery"], + ["h2_combiner", "h2_storage"], + ["h2_storage", "h2_storage"], + ] + } + plant_config = plant_config_base | tech_to_dispatch + return plant_config + + if pyo_controllers == "none": + return plant_config_base + + +def make_battery_pyo_group(plant_config_bat): + bat_tech_config = { + "battery": { + "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, + "control_strategy": {"model": "HeuristicLoadFollowingStorageController"}, + "performance_model": {"model": "PySAMBatteryPerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 50000, + "max_capacity": 200000, + "n_control_window": 24, + "n_horizon_window": 48, + "init_soc_fraction": 0.5, + "max_soc_fraction": 0.9, + "min_soc_fraction": 0.1, + }, + "performance_parameters": { + "chemistry": "LFPGraphite", + "control_variable": "input_power", + "demand_profile": 6000.0, + }, + "control_parameters": { + "commodity": "electricity", + "commodity_rate_units": "kW", + "tech_name": "battery", + "system_commodity_interface_limit": 1e12, + }, + "dispatch_rule_parameters": { + "commodity": "electricity", + "commodity_rate_units": "kW", + }, + }, + } + } + rule_comp = PyomoRuleStorageBaseclass( + plant_config=plant_config_bat, tech_config=bat_tech_config["battery"] + ) + perf_comp = PySAMBatteryPerformanceModel( + plant_config=plant_config_bat, tech_config=bat_tech_config["battery"] + ) + control_comp = HeuristicLoadFollowingStorageController( + plant_config=plant_config_bat, tech_config=bat_tech_config["battery"] + ) + + electricity_in = np.concatenate((np.ones(12) * 0, np.ones(12) * 10000)) + electricity_in = np.tile(electricity_in, 365) + ivc_comp = om.IndepVarComp(name="electricity_in", val=electricity_in, units="kW") + + return rule_comp, perf_comp, control_comp, ivc_comp + + +def make_h2_storage_pyo_group(plant_config_h2s): + h2s_tech_config = { + "h2_storage": { + "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, + "control_strategy": {"model": "HeuristicLoadFollowingStorageController"}, + "performance_model": {"model": "StoragePerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 10.0, + "max_capacity": 40.0, + "init_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.1, + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + "performance_parameters": { + "charge_equals_discharge": True, + "commodity_amount_units": "kg", + "demand_profile": 5.0, + }, + "control_parameters": { + "tech_name": "h2_storage", + "system_commodity_interface_limit": 10.0, + "n_control_window": 24, + }, + }, + } + } + rule_comp = PyomoRuleStorageBaseclass( + plant_config=plant_config_h2s, tech_config=h2s_tech_config["h2_storage"] + ) + perf_comp = StoragePerformanceModel( + plant_config=plant_config_h2s, tech_config=h2s_tech_config["h2_storage"] + ) + control_comp = HeuristicLoadFollowingStorageController( + plant_config=plant_config_h2s, tech_config=h2s_tech_config["h2_storage"] + ) + + hydrogen_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 365) + + ivc_comp = om.IndepVarComp(name="hydrogen_in", val=hydrogen_in, units="kg/h") + + return rule_comp, perf_comp, control_comp, ivc_comp + + +def make_h2_storage_openloop_group(plant_config_h2s): + tech_config_h2s = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "demand_profile": 5.0, + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "charge_equals_discharge": True, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + } + } + + h2_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_in = np.tile(h2_in, 365) + ivc_comp = om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h") + perf_comp = StoragePerformanceModel( + plant_config=plant_config_h2s, tech_config={"model_inputs": tech_config_h2s} + ) + control_comp = DemandOpenLoopStorageController( + plant_config=plant_config_h2s, tech_config={"model_inputs": tech_config_h2s} + ) + + return ivc_comp, perf_comp, control_comp + + +def make_battery_openloop_group(plant_config_bat): + tech_config_bat = { + "shared_parameters": { + "demand_profile": 5.0, + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 1.0, + }, + "performance_parameters": {"chemistry": "LFPGraphite"}, + "control_parameters": { + "commodity": "electricity", + "commodity_rate_units": "kW", + "charge_equals_discharge": True, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + } + + elec_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_in = np.tile(elec_in, 365) + ivc_comp = om.IndepVarComp(name="electricity_in", val=commodity_in, units="kW") + perf_comp = PySAMBatteryPerformanceModel( + plant_config=plant_config_bat, tech_config={"model_inputs": tech_config_bat} + ) + control_comp = DemandOpenLoopStorageController( + plant_config=plant_config_bat, tech_config={"model_inputs": tech_config_bat} + ) + + return ivc_comp, perf_comp, control_comp + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["none"]) +def test_h2s_openloop(subtests, plant_config): + # these are the test values for the hydrogen storage that are used in + # test_both_openloop_controllers and test_battery_pyomo_h2s_openloop + h2s_expected_discharge = np.concat([np.zeros(18), np.ones(6)]) + h2s_expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + prob = om.Problem() + + # make h2 storage group + h2s_group = prob.model.add_subsystem("h2_storage", om.Group()) + h2s_ivc_comp, h2s_perf_comp, h2s_control_comp = make_h2_storage_openloop_group(plant_config) + h2s_group.add_subsystem("IVC1", h2s_ivc_comp, promotes=["*"]) + h2s_group.add_subsystem("control", h2s_control_comp, promotes=["*"]) + h2s_group.add_subsystem("perf", h2s_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("H2 Storage: Expected charge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[:24], + h2s_expected_charge, + rtol=1e-6, + ) + with subtests.test("H2 Storage: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[:24], + h2s_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["none"]) +def test_battery_openloop(subtests, plant_config): + # these are the test values for the battery that are used in + # test_both_openloop_controllers and test_h2s_pyomo_batery_openloop + bat_expected_discharge = np.concat( + [ + np.array( + [4.99483673, 4.99483511, 4.99403933, 3.99456736, 2.99545121, 1.99671242, 0.99828405] + ), + np.zeros(11), + np.array([0.99907629, 0.9991349, 0.99911777, 0.99909762, 0.99907648, 0.99905434]), + ] + ) + bat_expected_charge = np.concat( + [ + np.zeros(8), + np.array( + [ + -0.99835716, + -1.9969656, + -2.99592019, + -3.9952197, + -4.99480988, + -5.99461958, + -3.70438813, + ] + ), + np.zeros(9), + ] + ) + + prob = om.Problem() + + # make battery group + bat_group = prob.model.add_subsystem("battery", om.Group()) + bat_ivc_comp, bat_perf_comp, bat_control_comp = make_battery_openloop_group(plant_config) + bat_group.add_subsystem("IVC2", bat_ivc_comp, promotes=["*"]) + bat_group.add_subsystem("control", bat_control_comp, promotes=["*"]) + bat_group.add_subsystem("perf", bat_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("Battery: Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[:24], + bat_expected_charge, + rtol=1e-6, + ) + with subtests.test("Battery: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[:24], + bat_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["bat"]) +def test_battery_pyo(subtests, plant_config): + # these are the test values for the battery that are used in + # test_both_pyomo_controllers and test_battery_pyomo_h2s_openloop + bat_expected_charge = np.concat( + [ + np.zeros(12), + np.array( + [ + -3988.62235554, + -3989.2357847, + -3989.76832626, + -3990.26170521, + -3990.71676106, + -3991.13573086, + -3991.52143699, + -3991.87684905, + -3992.20485715, + -3992.50815603, + -3992.78920148, + -3993.05020268, + ] + ), + ] + ) + bat_expected_discharge = np.concat( + [ + np.array( + [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + ] + ), + np.zeros(12), + ] + ) + prob = om.Problem() + + # make battery group + bat_group = prob.model.add_subsystem("battery", om.Group()) + bat_rule_comp, bat_perf_comp, bat_control_comp, electricity_in = make_battery_pyo_group( + plant_config + ) + bat_group.add_subsystem("IVC2", electricity_in, promotes=["*"]) + bat_group.add_subsystem("rule", bat_rule_comp, promotes=["*"]) + bat_group.add_subsystem("control", bat_control_comp, promotes=["*"]) + bat_group.add_subsystem("perf", bat_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("Battery: Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[:24], + bat_expected_charge, + rtol=1e-6, + ) + with subtests.test("Battery: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[:24], + bat_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["h2s"]) +def test_h2s_pyo(subtests, plant_config): + # these are the test values for the hydrogen storage that are used in + # test_both_pyomo_controllers and test_h2s_pyomo_battery_openloop + + h2s_expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + h2s_expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + prob = om.Problem() + + # make hydrogen storage group + h2s_group = prob.model.add_subsystem("h2_storage", om.Group()) + h2s_rule_comp, h2s_perf_comp, h2s_control_comp, hydrogen_in = make_h2_storage_pyo_group( + plant_config + ) + h2s_group.add_subsystem("IVC1", hydrogen_in, promotes=["*"]) + h2s_group.add_subsystem("rule", h2s_rule_comp, promotes=["*"]) + h2s_group.add_subsystem("control", h2s_control_comp, promotes=["*"]) + h2s_group.add_subsystem("perf", h2s_perf_comp, promotes=["*"]) + prob.setup() + prob.run_model() + + with subtests.test("H2 Storage: Expected charge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[:24], + h2s_expected_charge, + rtol=1e-6, + ) + with subtests.test("H2 Storage: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + h2s_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["both"]) +def test_both_pyomo_controllers(subtests, plant_config): + bat_expected_charge = np.concat( + [ + np.zeros(12), + np.array( + [ + -3988.62235554, + -3989.2357847, + -3989.76832626, + -3990.26170521, + -3990.71676106, + -3991.13573086, + -3991.52143699, + -3991.87684905, + -3992.20485715, + -3992.50815603, + -3992.78920148, + -3993.05020268, + ] + ), + ] + ) + bat_expected_discharge = np.concat( + [ + np.array( + [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + ] + ), + np.zeros(12), + ] + ) + + h2s_expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + h2s_expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + prob = om.Problem() + + # make hydrogen storage group + h2s_group = prob.model.add_subsystem("h2_storage", om.Group()) + h2s_rule_comp, h2s_perf_comp, h2s_control_comp, hydrogen_in = make_h2_storage_pyo_group( + plant_config + ) + h2s_group.add_subsystem("IVC1", hydrogen_in, promotes=["*"]) + h2s_group.add_subsystem("rule", h2s_rule_comp, promotes=["*"]) + h2s_group.add_subsystem("control", h2s_control_comp, promotes=["*"]) + h2s_group.add_subsystem("perf", h2s_perf_comp, promotes=["*"]) + + # make battery group + bat_group = prob.model.add_subsystem("battery", om.Group()) + bat_rule_comp, bat_perf_comp, bat_control_comp, electricity_in = make_battery_pyo_group( + plant_config + ) + bat_group.add_subsystem("IVC2", electricity_in, promotes=["*"]) + bat_group.add_subsystem("rule", bat_rule_comp, promotes=["*"]) + bat_group.add_subsystem("control", bat_control_comp, promotes=["*"]) + bat_group.add_subsystem("perf", bat_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("Battery: Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[:24], + bat_expected_charge, + rtol=1e-6, + ) + with subtests.test("Battery: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[:24], + bat_expected_discharge, + rtol=1e-6, + ) + + with subtests.test("H2 Storage: Expected charge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[:24], + h2s_expected_charge, + rtol=1e-6, + ) + with subtests.test("H2 Storage: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + h2s_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["none"]) +def test_both_openloop_controllers(subtests, plant_config): + h2s_expected_discharge = np.concat([np.zeros(18), np.ones(6)]) + h2s_expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + bat_expected_discharge = np.concat( + [ + np.array( + [4.99483673, 4.99483511, 4.99403933, 3.99456736, 2.99545121, 1.99671242, 0.99828405] + ), + np.zeros(11), + np.array([0.99907629, 0.9991349, 0.99911777, 0.99909762, 0.99907648, 0.99905434]), + ] + ) + bat_expected_charge = np.concat( + [ + np.zeros(8), + np.array( + [ + -0.99835716, + -1.9969656, + -2.99592019, + -3.9952197, + -4.99480988, + -5.99461958, + -3.70438813, + ] + ), + np.zeros(9), + ] + ) + + prob = om.Problem() + + # make h2 storage group + h2s_group = prob.model.add_subsystem("h2_storage", om.Group()) + h2s_ivc_comp, h2s_perf_comp, h2s_control_comp = make_h2_storage_openloop_group(plant_config) + h2s_group.add_subsystem("IVC1", h2s_ivc_comp, promotes=["*"]) + h2s_group.add_subsystem("control", h2s_control_comp, promotes=["*"]) + h2s_group.add_subsystem("perf", h2s_perf_comp, promotes=["*"]) + + # make battery group + bat_group = prob.model.add_subsystem("battery", om.Group()) + bat_ivc_comp, bat_perf_comp, bat_control_comp = make_battery_openloop_group(plant_config) + bat_group.add_subsystem("IVC2", bat_ivc_comp, promotes=["*"]) + bat_group.add_subsystem("control", bat_control_comp, promotes=["*"]) + bat_group.add_subsystem("perf", bat_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("Battery: Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[:24], + bat_expected_charge, + rtol=1e-6, + ) + with subtests.test("Battery: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[:24], + bat_expected_discharge, + rtol=1e-6, + ) + + with subtests.test("H2 Storage: Expected charge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[:24], + h2s_expected_charge, + rtol=1e-6, + ) + with subtests.test("H2 Storage: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[:24], + h2s_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["h2s"]) +def test_h2s_pyomo_battery_openloop(subtests, plant_config): + bat_expected_discharge = np.concat( + [ + np.array( + [4.99483673, 4.99483511, 4.99403933, 3.99456736, 2.99545121, 1.99671242, 0.99828405] + ), + np.zeros(11), + np.array([0.99907629, 0.9991349, 0.99911777, 0.99909762, 0.99907648, 0.99905434]), + ] + ) + bat_expected_charge = np.concat( + [ + np.zeros(8), + np.array( + [ + -0.99835716, + -1.9969656, + -2.99592019, + -3.9952197, + -4.99480988, + -5.99461958, + -3.70438813, + ] + ), + np.zeros(9), + ] + ) + h2s_expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + h2s_expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + prob = om.Problem() + + # make hydrogen storage group + h2s_group = prob.model.add_subsystem("h2_storage", om.Group()) + h2s_rule_comp, h2s_perf_comp, h2s_control_comp, hydrogen_in = make_h2_storage_pyo_group( + plant_config + ) + h2s_group.add_subsystem("IVC1", hydrogen_in, promotes=["*"]) + h2s_group.add_subsystem("rule", h2s_rule_comp, promotes=["*"]) + h2s_group.add_subsystem("control", h2s_control_comp, promotes=["*"]) + h2s_group.add_subsystem("perf", h2s_perf_comp, promotes=["*"]) + + # make battery group + bat_group = prob.model.add_subsystem("battery", om.Group()) + bat_ivc_comp, bat_perf_comp, bat_control_comp = make_battery_openloop_group(plant_config) + bat_group.add_subsystem("IVC2", bat_ivc_comp, promotes=["*"]) + bat_group.add_subsystem("control", bat_control_comp, promotes=["*"]) + bat_group.add_subsystem("perf", bat_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("Battery: Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[:24], + bat_expected_charge, + rtol=1e-6, + ) + with subtests.test("Battery: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[:24], + bat_expected_discharge, + rtol=1e-6, + ) + + with subtests.test("H2 Storage: Expected charge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[:24], + h2s_expected_charge, + rtol=1e-6, + ) + with subtests.test("H2 Storage: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + h2s_expected_discharge, + rtol=1e-6, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("pyo_controllers", ["bat"]) +def test_battery_pyomo_h2s_openloop(subtests, plant_config): + h2s_expected_discharge = np.concat([np.zeros(18), np.ones(6)]) + h2s_expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + bat_expected_charge = np.concat( + [ + np.zeros(12), + np.array( + [ + -3988.62235554, + -3989.2357847, + -3989.76832626, + -3990.26170521, + -3990.71676106, + -3991.13573086, + -3991.52143699, + -3991.87684905, + -3992.20485715, + -3992.50815603, + -3992.78920148, + -3993.05020268, + ] + ), + ] + ) + bat_expected_discharge = np.concat( + [ + np.array( + [ + 5999.99995059, + 5990.56676743, + 5990.138959, + 5989.64831176, + 5989.08548217, + 5988.44193888, + 5987.70577962, + 5986.86071125, + 5985.88493352, + 5984.7496388, + 5983.41717191, + 5981.839478, + ] + ), + np.zeros(12), + ] + ) + + prob = om.Problem() + + # make h2 storage group + h2s_group = prob.model.add_subsystem("h2_storage", om.Group()) + h2s_ivc_comp, h2s_perf_comp, h2s_control_comp = make_h2_storage_openloop_group(plant_config) + h2s_group.add_subsystem("IVC1", h2s_ivc_comp, promotes=["*"]) + h2s_group.add_subsystem("control", h2s_control_comp, promotes=["*"]) + h2s_group.add_subsystem("perf", h2s_perf_comp, promotes=["*"]) + + # make battery group + bat_rule_comp, bat_perf_comp, bat_control_comp, electricity_in = make_battery_pyo_group( + plant_config + ) + bat_group = prob.model.add_subsystem("battery", om.Group()) + bat_group.add_subsystem("IVC2", electricity_in, promotes=["*"]) + bat_group.add_subsystem("rule", bat_rule_comp, promotes=["*"]) + bat_group.add_subsystem("control", bat_control_comp, promotes=["*"]) + bat_group.add_subsystem("perf", bat_perf_comp, promotes=["*"]) + + prob.setup() + prob.run_model() + + with subtests.test("Battery: Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[:24], + bat_expected_charge, + rtol=1e-6, + ) + with subtests.test("Battery: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[:24], + bat_expected_discharge, + rtol=1e-6, + ) + + with subtests.test("H2 Storage: Expected charge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[:24], + h2s_expected_charge, + rtol=1e-6, + ) + with subtests.test("H2 Storage: Expected discharge"): + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[:24], + h2s_expected_discharge, + rtol=1e-6, + ) diff --git a/h2integrate/control/control_strategies/storage/test/test_openloop_controllers.py b/h2integrate/control/control_strategies/storage/test/test_openloop_controllers.py new file mode 100644 index 000000000..e9ded400c --- /dev/null +++ b/h2integrate/control/control_strategies/storage/test/test_openloop_controllers.py @@ -0,0 +1,537 @@ +from copy import deepcopy +from pathlib import Path + +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.core.file_utils import load_yaml +from h2integrate.storage.storage_performance_model import StoragePerformanceModel +from h2integrate.control.control_strategies.storage.simple_openloop_controller import ( + SimpleStorageOpenLoopController, +) +from h2integrate.control.control_strategies.storage.demand_openloop_storage_controller import ( + DemandOpenLoopStorageController, +) + + +def calculate_combined_outputs(storage_charge_discharge, commodity_in, commodity_demand): + combined_commodity_in = commodity_in + storage_charge_discharge + remaining_demand = commodity_demand - combined_commodity_in + unmet_demand = np.where(remaining_demand > 0, remaining_demand, 0) + unused_commodity = np.where(remaining_demand < 0, -1 * remaining_demand, 0) + combined_out_for_demand = combined_commodity_in - unused_commodity + + return unmet_demand, unused_commodity, combined_out_for_demand + + +@fixture +def variable_h2_production_profile(): + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + slow_ramp_up = np.arange(0, end_use_rated_demand * 1.1, 0.5) + slow_ramp_down = np.arange(end_use_rated_demand * 1.1, -0.5, -0.5) + fast_ramp_up = np.arange(0, end_use_rated_demand, ramp_up_rate_kg * 1.2) + fast_ramp_down = np.arange(end_use_rated_demand, 0.0, ramp_down_rate_kg * 1.1) + variable_profile = np.concat( + [slow_ramp_up, fast_ramp_down, slow_ramp_up, slow_ramp_down, fast_ramp_up] + ) + variable_h2_profile = np.tile(variable_profile, 2) + return variable_h2_profile + + +@pytest.mark.unit +def test_pass_through_controller(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + tech_config = load_yaml(tech_config_path) + + tech_config["technologies"]["h2_storage"]["model_inputs"]["shared_parameters"].update( + {"set_demand_as_avg_commodity_in": True} + ) + # Set up the OpenMDAO problem + prob = om.Problem() + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10, "dt": 3600}}} + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10), units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "pass_through_controller", + SimpleStorageOpenLoopController( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + # Run the test + with subtests.test("Check output"): + expected_set_point = np.mean(np.arange(10)) - np.arange(10) + assert expected_set_point == ( + pytest.approx(prob.get_val("hydrogen_set_point", units="kg/h"), rel=1e-3) + ) + + +@pytest.mark.regression +def test_storage_demand_controller(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + tech_config = load_yaml(tech_config_path) + + commodity_in = np.arange(10) + commodity_demand = np.full(10, 1.0) + + tech_config["technologies"]["h2_storage"]["model_inputs"]["shared_parameters"] = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "max_capacity": 10.0, # kg + "max_soc_fraction": 1.0, # fraction (0-1) + "min_soc_fraction": 0.0, # fraction (0-1) + "init_soc_fraction": 1.0, # fraction (0-1) + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": commodity_demand, # Example: 10 time steps with 10 kg/time step demand + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10, "dt": 3600}}} + + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + prob.model.add_subsystem( + "storage", + StoragePerformanceModel( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + unmet_demand, unused_commodity, combined_out_for_demand = calculate_combined_outputs( + prob.get_val("hydrogen_out", units="kg/h"), commodity_in, commodity_demand + ) + # Run the test + with subtests.test("Check output"): + assert combined_out_for_demand == pytest.approx( + [0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + ) + + with subtests.test("Check curtailment"): + assert unused_commodity == pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) + + with subtests.test("Check soc"): + assert prob.get_val("SOC", units="unitless") == pytest.approx( + [0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + ) + + with subtests.test("Check missed load"): + assert unmet_demand == pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) + + +@pytest.mark.unit +def test_storage_demand_controller_round_trip_efficiency(subtests): + # This tests the behavior of storage efficiencies when the storage is charging and discharging + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + tech_config = load_yaml(tech_config_path) + + tech_config["technologies"]["h2_storage"]["model_inputs"]["shared_parameters"] = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "max_capacity": 10.0, # kg + "max_soc_fraction": 1.0, # fraction (0-1) + "min_soc_fraction": 0.0, # fraction (0-1) + "init_soc_fraction": 1.0, # fraction (0-1) + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + } + + tech_config_rte = deepcopy(tech_config) + tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["shared_parameters"] = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "max_capacity": 10.0, # kg + "max_soc_fraction": 1.0, # fraction (0-1) + "min_soc_fraction": 0.0, # fraction (0-1) + "init_soc_fraction": 1.0, # fraction (0-1) + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 0.5, # kg/time step + "charge_equals_discharge": False, + "round_trip_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10, "dt": 3600}}} + + def set_up_and_run_problem(config): + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp( + name="hydrogen_in", + val=np.arange(10), + units="kg/h", + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_openloop_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + prob.model.add_subsystem( + "storage", + StoragePerformanceModel( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + return prob + + prob_ioe = set_up_and_run_problem(tech_config) + prob_rte = set_up_and_run_problem(tech_config_rte) + + # Run the test + unmet_demand_rte, unused_commodity_rte, combined_out_for_demand_rte = ( + calculate_combined_outputs( + prob_rte.get_val("hydrogen_out", units="kg/h"), + prob_rte.get_val("hydrogen_in", units="kg/h"), + prob_rte.get_val("hydrogen_demand", units="kg/h"), + ) + ) + unmet_demand_ioe, unused_commodity_ioe, combined_out_for_demand_ioe = ( + calculate_combined_outputs( + prob_ioe.get_val("hydrogen_out", units="kg/h"), + prob_ioe.get_val("hydrogen_in", units="kg/h"), + prob_ioe.get_val("hydrogen_demand", units="kg/h"), + ) + ) + + with subtests.test("Check output"): + assert combined_out_for_demand_rte == pytest.approx(combined_out_for_demand_ioe) + + with subtests.test("Check curtailment"): + assert unused_commodity_rte == pytest.approx(unused_commodity_ioe) + + with subtests.test("Check soc"): + assert prob_rte.get_val("SOC", units="unitless") == pytest.approx( + prob_ioe.get_val("SOC", units="unitless") + ) + + with subtests.test("Check missed load"): + assert unmet_demand_rte == pytest.approx(unmet_demand_ioe) + + +@pytest.mark.unit +def test_storage_demand_controller_round_trip_with_non_one_efficiencies(subtests): + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + tech_config = load_yaml(tech_config_path) + + tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( + "DemandOpenLoopStorageController" + ) + + tech_config["technologies"]["h2_storage"]["performance_model"]["model"] = ( + "StoragePerformanceModel" + ) + + tech_config["technologies"]["h2_storage"]["model_inputs"]["shared_parameters"] = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "max_capacity": 10.0, # kg + "max_soc_fraction": 1.0, # fraction (0-1) + "min_soc_fraction": 0.0, # fraction (0-1) + "init_soc_fraction": 0.75, # fraction (0-1) + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 1.0, # kg/time step + "charge_equals_discharge": False, + "charge_efficiency": 0.5, + "discharge_efficiency": 0.5, + "demand_profile": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 2.0, + ], # Example: 10 time steps + } + + tech_config_rte = deepcopy(tech_config) + tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["shared_parameters"] = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "max_capacity": 10.0, # kg + "max_soc_fraction": 1.0, # fraction (0-1) + "min_soc_fraction": 0.0, # fraction (0-1) + "init_soc_fraction": 0.75, # fraction (0-1) + "max_charge_rate": 1.0, # kg/time step + "max_discharge_rate": 1.0, # kg/time step + "charge_equals_discharge": False, + "round_trip_efficiency": 0.5**2, + "demand_profile": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 1.0, + 1.0, + 1.0, + 2.0, + ], # Example: 10 time steps with 10 kg/time step demand + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10, "dt": 3600}}} + + def set_up_and_run_problem(config): + # Set up the OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp( + name="hydrogen_in", + val=[2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], + units="kg/h", + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_openloop_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + prob.model.add_subsystem( + "storage", + StoragePerformanceModel( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + return prob + + prob_ioe = set_up_and_run_problem(tech_config) + prob_rte = set_up_and_run_problem(tech_config_rte) + + # Run the comparison tests between charge/discharge and round trip efficiencies + unmet_demand_rte, unused_commodity_rte, combined_out_for_demand_rte = ( + calculate_combined_outputs( + prob_rte.get_val("hydrogen_out", units="kg/h"), + prob_rte.get_val("hydrogen_in", units="kg/h"), + prob_rte.get_val("hydrogen_demand", units="kg/h"), + ) + ) + unmet_demand_ioe, unused_commodity_ioe, combined_out_for_demand_ioe = ( + calculate_combined_outputs( + prob_ioe.get_val("hydrogen_out", units="kg/h"), + prob_ioe.get_val("hydrogen_in", units="kg/h"), + prob_ioe.get_val("hydrogen_demand", units="kg/h"), + ) + ) + + with subtests.test("Check output match"): + assert combined_out_for_demand_rte == pytest.approx(combined_out_for_demand_ioe) + + with subtests.test("Check curtailment match"): + assert unused_commodity_rte == pytest.approx(unused_commodity_ioe) + + with subtests.test("Check soc match"): + assert prob_rte.get_val("SOC", units="unitless") == pytest.approx( + prob_ioe.get_val("SOC", units="unitless") + ) + + with subtests.test("Check missed load match"): + assert unmet_demand_rte == pytest.approx(unmet_demand_ioe) + + # Run the absolute value tests for charge/discharge and round trip efficiencies + with subtests.test("Check output value"): + assert combined_out_for_demand_rte == pytest.approx( + np.array([0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0]) + ) + + with subtests.test("Check curtailment value"): + assert unused_commodity_rte == pytest.approx( + np.array([1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) + ) + + with subtests.test("Check soc value"): + assert prob_rte.get_val("SOC", units="unitless") == pytest.approx( + np.array([0.8, 0.85, 0.9, 0.95, 1.0, 0.8, 0.6, 0.4, 0.2, 0.0]) + ) + + with subtests.test("Check missed load value"): + assert unmet_demand_rte == pytest.approx( + np.array([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0]) + ) + + +@pytest.mark.regression +def test_generic_storage_demand_controller(subtests): + # Test is the same as the demand controller test test_demand_controller for the "h2_storage" + # performance model but with the "StoragePerformanceModel" performance model + + # Get the directory of the current script + current_dir = Path(__file__).parent + + # Resolve the paths to the configuration files + tech_config_path = current_dir / "inputs" / "tech_config.yaml" + + # Load the technology configuration + tech_config = load_yaml(tech_config_path) + + tech_config["technologies"]["h2_storage"] = { + "performance_model": { + "model": "StoragePerformanceModel", + }, + "control_strategy": { + "model": "DemandOpenLoopStorageController", + }, + "model_inputs": { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "max_capacity": 10.0, # kg + "max_charge_rate": 1.0, # fraction (0-1) + "max_soc_fraction": 1.0, # fraction (0-1) + "min_soc_fraction": 0.0, # fraction (0-1) + "init_soc_fraction": 1.0, # fraction (0-1) + "max_discharge_rate": 0.5, # kg/time step + "charge_efficiency": 1.0, + "charge_equals_discharge": False, + "discharge_efficiency": 1.0, + "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand + }, + }, + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10, "dt": 3600}}} + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10), units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + DemandOpenLoopStorageController( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "storage", + StoragePerformanceModel( + plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + unmet_demand, unused_commodity, combined_out_for_demand = calculate_combined_outputs( + prob.get_val("hydrogen_out", units="kg/h"), + prob.get_val("hydrogen_in", units="kg/h"), + prob.get_val("hydrogen_demand", units="kg/h"), + ) + + # # Run the test + with subtests.test("Check output"): + assert combined_out_for_demand == pytest.approx( + [0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + ) + + with subtests.test("Check curtailment"): + assert unused_commodity == pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) + + with subtests.test("Check soc"): + assert prob.get_val("SOC", units="unitless") == pytest.approx( + [0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0] + ) + + with subtests.test("Check missed load"): + assert unmet_demand == pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) diff --git a/h2integrate/control/control_strategies/storage/test/test_openloop_storage_integration.py b/h2integrate/control/control_strategies/storage/test/test_openloop_storage_integration.py new file mode 100644 index 000000000..df1787dfe --- /dev/null +++ b/h2integrate/control/control_strategies/storage/test/test_openloop_storage_integration.py @@ -0,0 +1,575 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel +from h2integrate.storage.storage_performance_model import StoragePerformanceModel +from h2integrate.storage.simple_storage_auto_sizing import StorageAutoSizingModel +from h2integrate.control.control_strategies.storage.simple_openloop_controller import ( + SimpleStorageOpenLoopController, +) +from h2integrate.control.control_strategies.storage.demand_openloop_storage_controller import ( + DemandOpenLoopStorageController, +) + + +@fixture +def plant_config(): + plant = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 24, + }, + }, + } + return plant + + +@fixture +def storage_perf_params(storage_model_name): + if storage_model_name == "StoragePerformanceModel": + return { + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "charge_equals_discharge": True, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + } + if storage_model_name == "PySAMBatteryPerformanceModel": + return { + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 1.0, + "chemistry": "LFPGraphite", + } + if storage_model_name == "StorageAutoSizingModel": + return { + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + } + + +@pytest.mark.integration +@pytest.mark.parametrize("storage_model_name", ["StoragePerformanceModel"]) +def test_generic_storage_with_demand_openloop(plant_config, storage_perf_params, subtests): + commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_demand = np.full(24, 5.0) + + shared_params = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "demand_profile": commodity_demand, + } + + model_inputs = {"shared_parameters": storage_perf_params | shared_params} + + prob = om.Problem() + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage_control", + DemandOpenLoopStorageController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StoragePerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + with subtests.test("Expected discharge"): + expected_discharge = np.concat([np.zeros(18), np.ones(6)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.integration +@pytest.mark.parametrize("storage_model_name", ["StoragePerformanceModel"]) +def test_generic_storage_with_simple_openloop(plant_config, storage_perf_params, subtests): + commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_demand = np.full(24, 5.0) + + shared_params = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "demand_profile": commodity_demand, + } + + model_inputs = { + "shared_parameters": shared_params, + "performance_parameters": storage_perf_params, + "control_parameters": {"set_demand_as_avg_commodity_in": False}, + } + + prob = om.Problem() + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage_control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StoragePerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + with subtests.test("Expected discharge"): + expected_discharge = np.concat([np.zeros(18), np.ones(6)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(8)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.integration +@pytest.mark.parametrize("storage_model_name", ["PySAMBatteryPerformanceModel"]) +def test_pysam_battery_with_demand_openloop(plant_config, storage_perf_params, subtests): + commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_demand = np.full(24, 5.0) + + shared_params = {"demand_profile": commodity_demand} | { + k: v for k, v in storage_perf_params.items() if k != "chemistry" + } + + model_inputs = { + "shared_parameters": shared_params, + "performance_parameters": {"chemistry": storage_perf_params["chemistry"]}, + "control_parameters": { + "commodity": "electricity", + "commodity_rate_units": "kW", + "charge_equals_discharge": True, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + } + + prob = om.Problem() + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="electricity_in", val=commodity_in, units="kW"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery_control", + DemandOpenLoopStorageController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery", + PySAMBatteryPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + expected_discharge = np.array( + [ + 4.99483673, + 4.99483511, + 4.99403933, + 3.99456736, + 2.99545121, + 1.99671242, + 0.99828405, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.99907629, + 0.9991349, + 0.99911777, + 0.99909762, + 0.99907648, + 0.99905434, + ] + ) + with subtests.test("Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW"), + expected_discharge, + rtol=1e-6, + ) + + expected_charge = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.99835716, + -1.9969656, + -2.99592019, + -3.9952197, + -4.99480988, + -5.99461958, + -3.70438813, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + ] + ) + with subtests.test("Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW"), + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.integration +@pytest.mark.parametrize("storage_model_name", ["PySAMBatteryPerformanceModel"]) +def test_pysam_battery_with_simple_openloop(plant_config, storage_perf_params, subtests): + commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_demand = np.full(24, 5.0) + + control_params = { + "commodity": "electricity", + "commodity_rate_units": "kW", + "set_demand_as_avg_commodity_in": False, + } + + model_inputs = { + "shared_parameters": {"demand_profile": commodity_demand}, + "performance_parameters": storage_perf_params, + "control_parameters": control_params, + } + + prob = om.Problem() + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="electricity_in", val=commodity_in, units="kW"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery_control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery", + PySAMBatteryPerformanceModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + expected_discharge = np.array( + [ + 4.99483673, + 4.99483511, + 4.99403933, + 3.99456736, + 2.99545121, + 1.99671242, + 0.99828405, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.99885513, + 0.99913572, + 0.99912398, + 0.99910425, + 0.99908343, + 0.99906162, + ] + ) + with subtests.test("Expected discharge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW"), + expected_discharge, + rtol=1e-6, + ) + + expected_charge = np.array( + [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + -0.99835716, + -1.9969656, + -2.99592019, + -3.9952197, + -4.99480988, + -5.99461958, + -3.70438813, + -0.31010625, + -0.02143906, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + ] + ) + with subtests.test("Expected charge"): + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW"), + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.integration +@pytest.mark.parametrize("storage_model_name", ["StorageAutoSizingModel"]) +def test_storage_autosizing_with_demand_openloop(plant_config, storage_perf_params, subtests): + commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_demand = np.full(24, 5.0) + shared_params = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "demand_profile": commodity_demand, + "charge_efficiency": storage_perf_params.pop("charge_efficiency"), + "discharge_efficiency": storage_perf_params.pop("discharge_efficiency"), + "min_soc_fraction": storage_perf_params.pop("min_soc_fraction"), + "max_soc_fraction": storage_perf_params.pop("max_soc_fraction"), + } + + perf_params = storage_perf_params | {"set_demand_as_avg_commodity_in": False} + model_inputs = { + "shared_parameters": shared_params, + "performance_parameters": perf_params, + "control_parameters": { + "max_capacity": 100.0, + "max_charge_rate": 400.0, + "init_soc_fraction": 0.1, + }, + } + + prob = om.Problem() + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + # NOTE: when these are used together, the controller is not taking + # the charge/discharge rate info output from the performance model + + prob.model.add_subsystem( + "h2_storage_control", + DemandOpenLoopStorageController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StorageAutoSizingModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.setup() + + # NOTE: with these combinations, we have to set these values + # or else the 0 value initialized in the storage performance model + # is passed to the demand openloop controller + prob.set_val("h2_storage_control.storage_capacity", 400.0, units="kg") + prob.set_val("h2_storage_control.max_charge_rate", 100.0, units="kg/h") + + prob.run_model() + with subtests.test("Expected discharge"): + expected_discharge = np.concat([np.zeros(18), np.ones(6)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -11, -1), np.zeros(6)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + ) + + with subtests.test("Expected Capacity"): + assert ( + pytest.approx(prob.get_val("h2_storage.storage_capacity", units="kg"), rel=1e-6) + == 61.11111111111111 + ) + + with subtests.test("Expected Charge Rate"): + assert pytest.approx( + prob.get_val("h2_storage.max_charge_rate", units="kg/h"), rel=1e-6 + ) == np.max(commodity_in) + + +@pytest.mark.integration +@pytest.mark.parametrize("storage_model_name", ["StorageAutoSizingModel"]) +def test_storage_autosizing_with_simple_openloop(plant_config, storage_perf_params, subtests): + commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + commodity_demand = np.full(24, 5.0) + shared_params = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "demand_profile": commodity_demand, + "set_demand_as_avg_commodity_in": False, + } + + model_inputs = { + "shared_parameters": shared_params, + "performance_parameters": storage_perf_params, + } + + prob = om.Problem() + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage_control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StorageAutoSizingModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + with subtests.test("Expected discharge"): + expected_discharge = np.concat([np.array([5.0, 5.0, 3.88889]), np.zeros(15), np.ones(6)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -11, -1), np.zeros(6)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + ) diff --git a/h2integrate/control/control_strategies/storage/test/test_optimal_controllers.py b/h2integrate/control/control_strategies/storage/test/test_optimal_controllers.py new file mode 100644 index 000000000..0c0ec2633 --- /dev/null +++ b/h2integrate/control/control_strategies/storage/test/test_optimal_controllers.py @@ -0,0 +1,626 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel +from h2integrate.storage.storage_performance_model import StoragePerformanceModel +from h2integrate.storage.simple_storage_auto_sizing import StorageAutoSizingModel +from h2integrate.control.control_strategies.storage.optimized_pyomo_controller import ( + OptimizedDispatchStorageController, +) + + +@fixture +def plant_config_battery(): + plant_config = { + "plant": { + "plant_life": 1, + "simulation": { + "dt": 3600, + "n_timesteps": 48, + }, + }, + "tech_to_dispatch_connections": [ + ["combiner", "battery"], + ["battery", "battery"], + ], + } + return plant_config + + +@fixture +def tech_config_battery(): + tech_config = { + "technologies": { + "battery": { + "control_strategy": {"model": "OptimizedDispatchStorageController"}, + "performance_model": {"model": "PySAMBatteryPerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 50000, + "max_capacity": 200000, + "init_soc_fraction": 0.5, + "max_soc_fraction": 0.9, + "min_soc_fraction": 0.1, + "commodity": "electricity", + "commodity_rate_units": "kW", + "charge_efficiency": 0.95, + "discharge_efficiency": 0.95, + }, + "performance_parameters": { + "system_model_source": "pysam", + "chemistry": "LFPGraphite", + "control_variable": "input_power", + "demand_profile": 0.0, + }, + "control_parameters": { + "tech_name": "battery", + "system_commodity_interface_limit": 1e12, + "cost_per_charge": 0.004, + "cost_per_discharge": 0.005, + "cost_per_production": 0.0, + "commodity_met_value": 0.1, + "round_digits": 4, + "time_weighting_factor": 0.995, + "n_control_window": 24, + }, + }, + }, + }, + } + return tech_config + + +@fixture +def plant_config_h2_storage(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 48, + }, + }, + "tech_to_dispatch_connections": [ + ["converter", "h2_storage"], + ["h2_storage", "h2_storage"], + ], + } + return plant_config + + +@fixture +def tech_config_generic(): + tech_config = { + "technologies": { + "h2_storage": { + "control_strategy": {"model": "OptimizedDispatchStorageController"}, + "performance_model": {"model": "StoragePerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "max_charge_rate": 10.0, + "max_capacity": 40.0, + "init_soc_fraction": 0.2, + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.1, + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + "performance_parameters": { + "charge_equals_discharge": True, + "commodity_amount_units": "kg", + "demand_profile": 0.0, + }, + "control_parameters": { + "tech_name": "h2_storage", + "cost_per_charge": 0.03, # USD/kg + "cost_per_discharge": 0.05, # USD/kg + "commodity_met_value": 0.1, # USD/kg + "cost_per_production": 0.0, # USD/kg + "time_weighting_factor": 0.995, + "system_commodity_interface_limit": 10.0, + "n_control_window": 24, + }, + }, + } + }, + } + return tech_config + + +@fixture +def tech_config_autosizing(): + tech_config = { + "technologies": { + "h2_storage": { + "control_strategy": {"model": "OptimizedDispatchStorageController"}, + "performance_model": {"model": "StorageAutoSizingModel"}, + "model_inputs": { + "shared_parameters": { + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.0, + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + "performance_parameters": { + "charge_equals_discharge": True, + "demand_profile": 0.0, + "commodity_amount_units": "kg", + "set_demand_as_avg_commodity_in": False, + }, + "control_parameters": { + "tech_name": "h2_storage", + "cost_per_charge": 0.03, # USD/kg + "cost_per_discharge": 0.05, # USD/kg + "commodity_met_value": 0.1, # USD/kg + "cost_per_production": 0.0, # USD/kg + "time_weighting_factor": 0.995, + "system_commodity_interface_limit": 10.0, + "n_control_window": 24, + "max_charge_rate": 5.0, + "max_capacity": 5.0, + "init_soc_fraction": 0.1, + }, + }, + } + }, + } + return tech_config + + +@pytest.mark.regression +def test_min_operating_cost_load_following_battery_dispatch( + plant_config_battery, tech_config_battery, subtests +): + # Fabricate some oscillating power generation data: 1000 kW for the first 12 hours, 10000 kW for + # the second twelve hours, and repeat that daily cycle over a year. + n_look_ahead_third = int(24 / 3) + + electricity_in = np.concatenate( + ( + np.ones(n_look_ahead_third) * 6000, + np.ones(n_look_ahead_third) * 1000, + np.ones(n_look_ahead_third) * 10000, + ) + ) + electricity_in = np.tile(electricity_in, 2) + + demand_in = np.ones(48) * 6000.0 + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "battery_optimized_load_following_controller", + OptimizedDispatchStorageController( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "battery", + PySAMBatteryPerformanceModel( + plant_config=plant_config_battery, + tech_config=tech_config_battery["technologies"]["battery"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("battery.electricity_in", electricity_in) + prob.set_val("battery.electricity_demand", demand_in) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("battery.max_charge_rate", units="kW")[0] + discharge_rate = prob.get_val("battery.max_charge_rate", units="kW")[0] + capacity = prob.get_val("battery.storage_capacity", units="kW*h")[0] + + # Test that discharge is always positive + with subtests.test("Discharge is always positive"): + assert np.all(prob.get_val("battery.storage_electricity_discharge") >= 0) + with subtests.test("Charge is always negative"): + assert np.all(prob.get_val("battery.storage_electricity_charge") <= 0) + # Set rtol lower b/c the values are in kW + with subtests.test("Charge + Discharge == battery_electricity_out"): + charge_plus_discharge = prob.get_val("battery.storage_electricity_charge") + prob.get_val( + "battery.storage_electricity_discharge" + ) + np.testing.assert_allclose( + charge_plus_discharge, prob.get_val("electricity_out"), rtol=1e-2 + ) + with subtests.test("Initial SOC is correct"): + assert pytest.approx(prob.model.get_val("battery.SOC")[0], rel=1e-2) == 50 + + # Find where the signal increases, decreases, and stays at zero + print("SOC", prob.model.get_val("battery.SOC")) + indx_soc_increase = np.argwhere( + np.diff(prob.model.get_val("battery.SOC", units="unitless"), prepend=True) > 0 + ).flatten() + indx_soc_decrease = np.argwhere( + np.diff(prob.model.get_val("battery.SOC", units="unitless"), prepend=False) < 0 + ).flatten() + indx_soc_same = np.argwhere( + np.diff(prob.model.get_val("battery.SOC", units="unitless"), prepend=True) == 0.0 + ).flatten() + + with subtests.test("SOC increases when charging"): + assert np.all( + prob.get_val("battery.storage_electricity_charge", units="kW")[indx_soc_increase] <= 0 + ) + assert np.all( + prob.get_val("battery.storage_electricity_charge", units="kW")[indx_soc_decrease] == 0 + ) + assert np.all( + prob.get_val("battery.storage_electricity_charge", units="kW")[indx_soc_same] == 0 + ) + + with subtests.test("SOC decreases when discharging"): + assert np.all( + prob.get_val("battery.storage_electricity_discharge", units="kW")[indx_soc_decrease] > 0 + ) + assert np.all( + prob.get_val("battery.storage_electricity_discharge", units="kW")[indx_soc_increase] + == 0 + ) + assert np.all( + prob.get_val("battery.storage_electricity_discharge", units="kW")[indx_soc_same] == 0 + ) + + with subtests.test("Max SOC <= Max storage percent"): + assert prob.get_val("battery.SOC", units="unitless").max() <= 0.9 + + with subtests.test("Min SOC >= Min storage percent"): + assert prob.get_val("battery.SOC", units="unitless").min() >= 0.1 + + with subtests.test("Charge never exceeds charge rate"): + assert ( + prob.get_val("battery.storage_electricity_charge", units="kW").min() >= -1 * charge_rate + ) + + with subtests.test("Discharge never exceeds discharge rate"): + assert ( + prob.get_val("battery.storage_electricity_discharge", units="kW").max() + <= discharge_rate + ) + + with subtests.test("Discharge never exceeds demand"): + assert np.all( + prob.get_val("battery.storage_electricity_discharge", units="kW").max() <= demand_in + ) + + with subtests.test("Sometimes discharges"): + assert any( + k > 1e-3 for k in prob.get_val("battery.storage_electricity_discharge", units="kW") + ) + + with subtests.test("Sometimes charges"): + assert any( + k < -1e-3 for k in prob.get_val("battery.storage_electricity_charge", units="kW") + ) + + with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): + assert np.cumsum(charge_plus_discharge).max() <= capacity + assert np.cumsum(charge_plus_discharge).min() >= -1 * capacity + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat([np.zeros(8), np.ones(8) * 5000, np.zeros(4)]) + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_discharge", units="kW")[0:20], + expected_discharge, + rtol=1e-2, + ) + + with subtests.test("Expected charge hour 0-24"): + expected_charge = -1 * np.concat([np.zeros(16), np.ones(8) * 4000]) + np.testing.assert_allclose( + prob.get_val("battery.storage_electricity_charge", units="kW")[0:24], + expected_charge, + rtol=1e-2, + ) + + +@pytest.mark.regression +def test_optimal_control_with_generic_storage( + plant_config_h2_storage, tech_config_generic, subtests +): + commodity_demand = np.full(48, 5.0) + commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 2) + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "h2_storage_optimized_load_following_controller", + OptimizedDispatchStorageController( + plant_config=plant_config_h2_storage, + tech_config=tech_config_generic["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StoragePerformanceModel( + plant_config=plant_config_h2_storage, + tech_config=tech_config_generic["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("h2_storage.hydrogen_in", commodity_in) + prob.set_val("h2_storage.hydrogen_demand", commodity_demand) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + discharge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + capacity = prob.get_val("h2_storage.storage_capacity", units="kg")[0] + + # Test that discharge is always positive + with subtests.test("Discharge is always positive"): + assert np.all(prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h") >= 0) + with subtests.test("Charge is always negative"): + assert np.all(prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h") <= 0) + with subtests.test("Charge + Discharge == storage_hydrogen_out"): + charge_plus_discharge = prob.get_val( + "h2_storage.storage_hydrogen_charge", units="kg/h" + ) + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h") + np.testing.assert_allclose( + charge_plus_discharge, prob.get_val("hydrogen_out", units="kg/h"), rtol=1e-6 + ) + with subtests.test("Initial SOC is correct"): + assert ( + pytest.approx(prob.model.get_val("h2_storage.SOC", units="unitless")[0], rel=1e-6) + == 0.1 + ) + + indx_soc_increase = np.argwhere( + np.diff(prob.model.get_val("h2_storage.SOC", units="unitless"), prepend=True) > 0 + ).flatten() + indx_soc_decrease = np.argwhere( + np.diff(prob.model.get_val("h2_storage.SOC", units="unitless"), prepend=False) < 0 + ).flatten() + indx_soc_same = np.argwhere( + np.diff(prob.model.get_val("h2_storage.SOC", units="unitless"), prepend=True) == 0.0 + ).flatten() + + with subtests.test("SOC increases when charging"): + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] < 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[indx_soc_decrease] == 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[indx_soc_same] == 0 + ) + + with subtests.test("SOC decreases when discharging"): + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_decrease] + > 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_increase] + == 0 + ) + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_same] == 0 + ) + + with subtests.test("Max SOC <= Max storage percent"): + assert prob.get_val("h2_storage.SOC", units="unitless").max() <= 1.0 + + with subtests.test("Min SOC >= Min storage percent"): + assert prob.get_val("h2_storage.SOC", units="unitless").min() >= 0.1 + + with subtests.test("Charge never exceeds charge rate"): + assert ( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h").min() + >= -1 * charge_rate + ) + + with subtests.test("Discharge never exceeds discharge rate"): + assert ( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h").max() + <= discharge_rate + ) + + with subtests.test("Discharge never exceeds demand"): + assert np.all( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h").max() + <= commodity_demand + ) + + with subtests.test("Sometimes discharges"): + assert any( + k > 1e-3 for k in prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h") + ) + + with subtests.test("Sometimes charges"): + assert any( + k < -1e-3 for k in prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h") + ) + + with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() >= -1 * capacity + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge hour 0-20"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(4)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[0:20], + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.regression +def test_optimal_dispatch_with_autosizing_storage_demand_less_than_avg_in( + plant_config_h2_storage, tech_config_autosizing, subtests +): + commodity_demand = np.full(48, 5.0) + commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 2) + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "h2_storage_controller", + OptimizedDispatchStorageController( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StorageAutoSizingModel( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("h2_storage.hydrogen_in", commodity_in) + prob.set_val("h2_storage.hydrogen_demand", commodity_demand) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + discharge_rate = prob.get_val("h2_storage.max_discharge_rate", units="kg/h")[0] + capacity = prob.get_val("h2_storage.storage_capacity", units="kg")[0] + + with subtests.test("Capacity is correct"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_usable_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + + assert pytest.approx(capacity, rel=1e-6) == expected_usable_capacity + + with subtests.test("Charge rate is correct"): + assert pytest.approx(charge_rate, rel=1e-6) == max(commodity_in) + with subtests.test("Discharge rate is correct"): + assert pytest.approx(discharge_rate, rel=1e-6) == max(commodity_in) + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat( + [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge hour 0-20"): + expected_charge = np.concat([np.zeros(8), np.arange(-1, -11, -1), np.zeros(2)]) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[0:20], + expected_charge, + rtol=1e-6, + ) + + +@pytest.mark.regression +def test_optimal_dispatch_with_autosizing_storage_demand_is_avg_in( + plant_config_h2_storage, tech_config_autosizing, subtests +): + commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 2) + commodity_demand = np.full(48, np.mean(commodity_in)) + tech_config_autosizing["technologies"]["h2_storage"]["model_inputs"]["performance_parameters"][ + "set_demand_as_avg_commodity_in" + ] = True + tech_config_autosizing["technologies"]["h2_storage"]["model_inputs"]["performance_parameters"][ + "demand_profile" + ] = 0.0 + + # Setup the OpenMDAO problem and add subsystems + prob = om.Problem() + + prob.model.add_subsystem( + "h2_storage_controller", + OptimizedDispatchStorageController( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "h2_storage", + StorageAutoSizingModel( + plant_config=plant_config_h2_storage, + tech_config=tech_config_autosizing["technologies"]["h2_storage"], + ), + promotes=["*"], + ) + + # Setup the system and required values + prob.setup() + prob.set_val("h2_storage.hydrogen_in", commodity_in) + + # Run the model + prob.run_model() + + charge_rate = prob.get_val("h2_storage.max_charge_rate", units="kg/h")[0] + discharge_rate = prob.get_val("h2_storage.max_discharge_rate", units="kg/h")[0] + capacity = prob.get_val("h2_storage.storage_capacity", units="kg")[0] + + with subtests.test("Capacity is correct"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_usable_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + + assert pytest.approx(capacity, rel=1e-6) == expected_usable_capacity + + with subtests.test("Charge rate is correct"): + assert pytest.approx(charge_rate, rel=1e-6) == max(commodity_in) + with subtests.test("Discharge rate is correct"): + assert pytest.approx(discharge_rate, rel=1e-6) == max(commodity_in) + + with subtests.test("Expected discharge from hour 10-30"): + expected_discharge = np.concat( + [np.zeros(8), np.full(6, 2.0), np.full(3, 6.0), np.array([5, 4, 3])] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_discharge", units="kg/h")[10:30], + expected_discharge, + rtol=1e-6, + ) + + with subtests.test("Expected charge hour 0-20"): + expected_charge = np.concat( + [np.zeros(9), np.arange(-1, -7, -1), np.array([-1.5]), np.zeros(4)] + ) + np.testing.assert_allclose( + prob.get_val("h2_storage.storage_hydrogen_charge", units="kg/h")[0:20], + expected_charge, + rtol=1e-6, + ) diff --git a/h2integrate/control/test/conftest.py b/h2integrate/control/test/conftest.py deleted file mode 100644 index 8d49ffb3d..000000000 --- a/h2integrate/control/test/conftest.py +++ /dev/null @@ -1 +0,0 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 diff --git a/h2integrate/control/test/test_heuristic_controllers.py b/h2integrate/control/test/test_heuristic_controllers.py deleted file mode 100644 index 9f95ce87f..000000000 --- a/h2integrate/control/test/test_heuristic_controllers.py +++ /dev/null @@ -1,663 +0,0 @@ -import numpy as np -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate.storage.battery.pysam_battery import PySAMBatteryPerformanceModel -from h2integrate.control.control_strategies.heuristic_pyomo_controller import ( - HeuristicLoadFollowingController, -) -from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( - PyomoRuleStorageBaseclass, -) - - -@fixture -def plant_config(): - plant_config_dict = { - "plant": { - "plant_life": 30, - "simulation": { - "dt": 3600, - "n_timesteps": 8760, - }, - }, - "tech_to_dispatch_connections": [ - ["battery", "battery"], - ], - } - return plant_config_dict - - -@fixture -def tech_config(): - tech_config_dict = { - "name": "technology_config", - "description": "...", - "technologies": { - "battery": { - "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, - "control_strategy": {"model": "HeuristicLoadFollowingController"}, - "performance_model": {"model": "PySAMBatteryPerformanceModel"}, - "model_inputs": { - "shared_parameters": { - "max_charge_rate": 50000, - "max_capacity": 200000, - "n_control_window": 24, - "n_horizon_window": 48, - "init_charge_fraction": 0.5, - "max_charge_fraction": 0.9, - "min_charge_fraction": 0.1, - }, - "performance_parameters": { - "chemistry": "LFPGraphite", - "control_variable": "input_power", - }, - "control_parameters": { - "commodity": "electricity", - "commodity_rate_units": "kW", - "tech_name": "battery", - "system_commodity_interface_limit": 1e12, - }, - "dispatch_rule_parameters": { - "commodity": "electricity", - "commodity_rate_units": "kW", - }, - }, - } - }, - } - return tech_config_dict - - -@pytest.mark.regression -def test_heuristic_load_following_battery_dispatch(plant_config, tech_config, subtests): - # Fabricate some oscillating power generation data: 0 kW for the first 12 hours, 10000 kW for - # the second twelve hours, and repeat that daily cycle over a year. - n_look_ahead_half = int(24 / 2) - - electricity_in = np.concatenate( - (np.ones(n_look_ahead_half) * 0, np.ones(n_look_ahead_half) * 10000) - ) - electricity_in = np.tile(electricity_in, 365) - - demand_in = np.ones(8760) * 6000.0 - - # Setup the OpenMDAO problem and add subsystems - prob = om.Problem() - - prob.model.add_subsystem( - "PyomoRuleStorageBaseclass", - PyomoRuleStorageBaseclass( - plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "battery_heuristic_load_following_controller", - HeuristicLoadFollowingController( - plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "battery", - PySAMBatteryPerformanceModel( - plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] - ), - promotes=["*"], - ) - - # Setup the system and required values - prob.setup() - prob.set_val("battery.electricity_in", electricity_in) - prob.set_val("battery.electricity_demand", demand_in) - - # Run the model - prob.run_model() - - # Test the case where the charging/discharging cycle remains within the max and min SOC limits - # Check the expected outputs to actual outputs - expected_electricity_out = [ - 5999.99995059, - 5990.56676743, - 5990.138959, - 5989.64831176, - 5989.08548217, - 5988.44193888, - 5987.70577962, - 5986.86071125, - 5985.88493352, - 5984.7496388, - 5983.41717191, - 5981.839478, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - ] - - expected_battery_electricity = [ - 5999.99995059, - 5990.56676743, - 5990.138959, - 5989.64831176, - 5989.08548217, - 5988.44193888, - 5987.70577962, - 5986.86071125, - 5985.88493352, - 5984.7496388, - 5983.41717191, - 5981.839478, - -3988.62235554, - -3989.2357847, - -3989.76832626, - -3990.26170521, - -3990.71676106, - -3991.13573086, - -3991.52143699, - -3991.87684905, - -3992.20485715, - -3992.50815603, - -3992.78920148, - -3993.05020268, - ] - - expected_SOC = [ - 49.39724571, - 46.54631833, - 43.69133882, - 40.83119769, - 37.96394628, - 35.08762294, - 32.20015974, - 29.29919751, - 26.38184809, - 23.44436442, - 20.48162855, - 17.48627159, - 19.47067094, - 21.44466462, - 23.40741401, - 25.36052712, - 27.30530573, - 29.24281439, - 31.17393198, - 33.09939078, - 35.01980641, - 36.93570091, - 38.84752069, - 40.75565055, - ] - - expected_unmet_demand_out = np.array( - [ - 4.93562475e-05, - 9.43323257e00, - 9.86104099e00, - 1.03516883e01, - 1.09145178e01, - 1.15580611e01, - 1.22942204e01, - 1.31392889e01, - 1.41150664e01, - 1.52503612e01, - 1.65828282e01, - 1.81605218e01, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - ] - ) - - expected_unused_commodity_out = np.array( - [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 11.37764445, - 10.76421514, - 10.23167373, - 9.73829458, - 9.28323883, - 8.86426912, - 8.47856327, - 8.12315078, - 7.79514283, - 7.49184426, - 7.21079852, - 6.94979705, - ] - ) - - with subtests.test("Check electricity_out"): - assert ( - pytest.approx(expected_electricity_out) - == prob.get_val("battery.electricity_out", units="kW")[0:24] - ) - - with subtests.test("Check battery_electricity"): - assert ( - pytest.approx(expected_battery_electricity) - == prob.get_val("battery.battery_electricity", units="kW")[0:24] - ) - - with subtests.test("Check SOC"): - assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC", units="percent")[0:24] - - with subtests.test("Check unmet_demand"): - assert ( - pytest.approx(expected_unmet_demand_out, abs=1e-4) - == prob.get_val("battery.unmet_electricity_demand_out", units="kW")[0:24] - ) - - with subtests.test("Check unused_electricity_out"): - assert ( - pytest.approx(expected_unused_commodity_out) - == prob.get_val("battery.unused_electricity_out", units="kW")[0:24] - ) - - # Test the case where the battery is discharged to its lower SOC limit - electricity_in = np.zeros(8760) - demand_in = np.ones(8760) * 30000 - - # Setup the system and required values - prob.setup() - - prob.set_val("battery.electricity_in", electricity_in) - prob.set_val("battery.electricity_demand", demand_in) - - # Run the model - prob.run_model() - - expected_electricity_out = np.array( - [3.00000000e04, 2.99305601e04, 2.48145097e04, 4.97901621e00, 3.04065390e01] - ) - expected_battery_electricity = expected_electricity_out - expected_SOC = np.array([37.69010284, 22.89921133, 10.00249593, 10.01524461, 10.03556385]) - expected_unmet_demand_out = np.array( - [ - 9.43691703e-09, - 6.94398578e01, - 5.18549025244965e03, - 2.999502098378662e04, - 2.9969593461021406e04, - ] - ) - expected_unused_commodity_out = np.zeros(5) - - with subtests.test("Check electricity_out for min SOC"): - assert ( - pytest.approx(expected_electricity_out) - == prob.get_val("battery.electricity_out", units="kW")[:5] - ) - - with subtests.test("Check battery_electricity for min SOC"): - assert ( - pytest.approx(expected_battery_electricity) - == prob.get_val("battery.battery_electricity", units="kW")[:5] - ) - - with subtests.test("Check SOC for min SOC"): - assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC", units="percent")[:5] - - with subtests.test("Check unmet_demand for min SOC"): - assert ( - pytest.approx(expected_unmet_demand_out, abs=1e-6) - == prob.get_val("battery.unmet_electricity_demand_out", units="kW")[:5] - ) - - with subtests.test("Check unused_commodity_out for min SOC"): - assert ( - pytest.approx(expected_unused_commodity_out) - == prob.get_val("battery.unused_electricity_out", units="kW")[:5] - ) - - # Test the case where the battery is charged to its upper SOC limit - electricity_in = np.ones(8760) * 30000.0 - demand_in = np.zeros(8760) - - # Setup the system and required values - prob.setup() - prob.set_val("battery.electricity_in", electricity_in) - prob.set_val("battery.electricity_demand", demand_in) - - # Run the model - prob.run_model() - - expected_electricity_out = [-0.008477085, 0.0, 0.0, 0.0, 0.0] - - # TODO reevaluate the output here - expected_battery_electricity = np.array( - [-30000.00847709, -29973.58679719, -21109.22734423, 0.0, 0.0] - ) - - # expected_SOC = [66.00200558, 79.43840635, 90.0, 90.0, 90.0] - expected_SOC = np.array([66.00200558, 79.43840635, 89.02326413, 89.02326413, 89.02326413]) - expected_unmet_demand_out = np.array([0.00847709, 0.0, 0.0, 0.0, 0.0]) - expected_unused_commodity_out = np.array( - [0.00000000e00, 2.64132028e01, 8.89077266e03, 3.04088135e04, 3.00564087e04] - ) - # I think this is the right expected_electricity_out since the battery won't - # be discharging in this instance - # expected_electricity_out = [0.0, 0.0, 0.0, 0.0, 0.0] - # # expected_electricity_out = [0.0, 0.0, 6150.14483911, 30000.0, 30000.0] - # expected_battery_electricity = [-30000.00847705, -29973.58679681, - # -23310.54620182, 0.0, 0.0] - # expected_SOC = [66.00200558, 79.43840635, 90.0, 90.0, 90.0] - # expected_unmet_demand_out = np.zeros(5) - # expected_unused_commodity_out = [0.0, 0.0, 6150.14483911, 30000.0, 30000.0] - - abs_tol = 1e-6 - rel_tol = 1e-1 - with subtests.test("Check electricity_out for max SOC"): - assert ( - pytest.approx(expected_electricity_out, abs=abs_tol, rel=rel_tol) - == prob.get_val("battery.electricity_out", units="kW")[:5] - ) - - with subtests.test("Check battery_electricity for max SOC"): - assert ( - pytest.approx(expected_battery_electricity, abs=abs_tol, rel=rel_tol) - == prob.get_val("battery.battery_electricity", units="kW")[:5] - ) - - with subtests.test("Check SOC for max SOC"): - assert ( - pytest.approx(expected_SOC, abs=abs_tol) - == prob.get_val("battery.SOC", units="percent")[:5] - ) - - with subtests.test("Check unmet_demand for max SOC"): - assert ( - pytest.approx(expected_unmet_demand_out, abs=abs_tol) - == prob.get_val("battery.unmet_electricity_demand_out", units="kW")[:5] - ) - - with subtests.test("Check unused_commodity_out for max SOC"): - assert ( - pytest.approx(expected_unused_commodity_out, abs=abs_tol, rel=rel_tol) - == prob.get_val("battery.unused_electricity_out", units="kW")[:5] - ) - - -@pytest.mark.regression -def test_heuristic_load_following_battery_dispatch_change_capacities( - plant_config, tech_config, subtests -): - # update the battery capacity to be very small in the config - - tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"].update( - {"max_charge_rate": 1000} - ) - tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"].update( - {"max_capacity": 1000} - ) - - # Fabricate some oscillating power generation data: 0 kW for the first 12 hours, 10000 kW for - # the second twelve hours, and repeat that daily cycle over a year. - - n_look_ahead_half = int(24 / 2) - - electricity_in = np.concatenate( - (np.ones(n_look_ahead_half) * 0, np.ones(n_look_ahead_half) * 10000) - ) - electricity_in = np.tile(electricity_in, 365) - - demand_in = np.ones(8760) * 6000.0 - - # Setup the OpenMDAO problem and add subsystems - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC1", - subsys=om.IndepVarComp(name="max_charge_rate", val=1000, units="kW"), - promotes=["*"], - ) - - prob.model.add_subsystem( - name="IVC2", - subsys=om.IndepVarComp(name="storage_capacity", val=1000, units="kW*h"), - promotes=["*"], - ) - - prob.model.add_subsystem( - "PyomoRuleStorageBaseclass", - PyomoRuleStorageBaseclass( - plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "battery_heuristic_load_following_controller", - HeuristicLoadFollowingController( - plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "battery", - PySAMBatteryPerformanceModel( - plant_config=plant_config, tech_config=tech_config["technologies"]["battery"] - ), - promotes=["*"], - ) - - # Setup the system and required values - prob.setup() - - prob.set_val("IVC1.max_charge_rate", 50000, units="kW") - prob.set_val("IVC2.storage_capacity", 200000, units="kW*h") - - prob.set_val("battery.electricity_in", electricity_in) - prob.set_val("battery.electricity_demand", demand_in) - - # Run the model - prob.run_model() - - # Test the case where the charging/discharging cycle remains within the max and min SOC limits - # Check the expected outputs to actual outputs - expected_electricity_out = [ - 5999.99995059, - 5990.56676743, - 5990.138959, - 5989.64831176, - 5989.08548217, - 5988.44193888, - 5987.70577962, - 5986.86071125, - 5985.88493352, - 5984.7496388, - 5983.41717191, - 5981.839478, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - ] - - expected_battery_electricity = [ - 5999.99995059, - 5990.56676743, - 5990.138959, - 5989.64831176, - 5989.08548217, - 5988.44193888, - 5987.70577962, - 5986.86071125, - 5985.88493352, - 5984.7496388, - 5983.41717191, - 5981.839478, - -3988.62235554, - -3989.2357847, - -3989.76832626, - -3990.26170521, - -3990.71676106, - -3991.13573086, - -3991.52143699, - -3991.87684905, - -3992.20485715, - -3992.50815603, - -3992.78920148, - -3993.05020268, - ] - - expected_SOC = [ - 49.39724571, - 46.54631833, - 43.69133882, - 40.83119769, - 37.96394628, - 35.08762294, - 32.20015974, - 29.29919751, - 26.38184809, - 23.44436442, - 20.48162855, - 17.48627159, - 19.47067094, - 21.44466462, - 23.40741401, - 25.36052712, - 27.30530573, - 29.24281439, - 31.17393198, - 33.09939078, - 35.01980641, - 36.93570091, - 38.84752069, - 40.75565055, - ] - - expected_unmet_demand_out = np.array( - [ - 4.93562475e-05, - 9.43323257e00, - 9.86104099e00, - 1.03516883e01, - 1.09145178e01, - 1.15580611e01, - 1.22942204e01, - 1.31392889e01, - 1.41150664e01, - 1.52503612e01, - 1.65828282e01, - 1.81605218e01, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - ] - ) - - expected_unused_commodity_out = np.array( - [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 11.37764445, - 10.76421514, - 10.23167373, - 9.73829458, - 9.28323883, - 8.86426912, - 8.47856327, - 8.12315078, - 7.79514283, - 7.49184426, - 7.21079852, - 6.94979705, - ] - ) - - with subtests.test("Battery output capacity"): - assert ( - pytest.approx( - prob.get_val("battery.rated_electricity_production", units="MW"), rel=1e-6 - ) - == 50.0 - ) - - with subtests.test("Check electricity_out"): - assert ( - pytest.approx(expected_electricity_out) - == prob.get_val("battery.electricity_out", units="kW")[0:24] - ) - - with subtests.test("Check battery_electricity"): - assert ( - pytest.approx(expected_battery_electricity) - == prob.get_val("battery.battery_electricity", units="kW")[0:24] - ) - - with subtests.test("Check SOC"): - assert pytest.approx(expected_SOC) == prob.get_val("battery.SOC", units="percent")[0:24] - - with subtests.test("Check unmet_demand"): - assert ( - pytest.approx(expected_unmet_demand_out, abs=1e-4) - == prob.get_val("battery.unmet_electricity_demand_out", units="kW")[0:24] - ) - - with subtests.test("Check unused_electricity_out"): - assert ( - pytest.approx(expected_unused_commodity_out) - == prob.get_val("battery.unused_electricity_out", units="kW")[0:24] - ) diff --git a/h2integrate/control/test/test_heuristic_with_generic_storage.py b/h2integrate/control/test/test_heuristic_with_generic_storage.py deleted file mode 100644 index 31bb72c65..000000000 --- a/h2integrate/control/test/test_heuristic_with_generic_storage.py +++ /dev/null @@ -1,205 +0,0 @@ -import numpy as np -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate.storage.generic_storage_pyo import StoragePerformanceModel -from h2integrate.control.control_strategies.heuristic_pyomo_controller import ( - HeuristicLoadFollowingController, -) -from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( - PyomoRuleStorageBaseclass, -) - - -@fixture -def plant_config(): - plant_config = { - "plant": { - "plant_life": 30, - "simulation": { - "dt": 3600, - "n_timesteps": 8760, - }, - }, - "tech_to_dispatch_connections": [ - ["h2_storage", "h2_storage"], - ], - } - return plant_config - - -@fixture -def tech_config_generic(): - tech_config = { - "technologies": { - "h2_storage": { - "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, - "control_strategy": {"model": "HeuristicLoadFollowingController"}, - "performance_model": {"model": "StoragePerformanceModel"}, - "model_inputs": { - "shared_parameters": { - "max_charge_rate": 10.0, - "max_capacity": 40.0, - "n_control_window": 24, - "init_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "min_charge_fraction": 0.1, - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - }, - "performance_parameters": { - "charge_equals_discharge": True, - "commodity_amount_units": "kg", - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, - }, - "control_parameters": { - "tech_name": "h2_storage", - "system_commodity_interface_limit": 10.0, - }, - }, - } - }, - } - return tech_config - - -@pytest.mark.regression -def test_heuristic_load_following_dispatch_with_generic_storage( - plant_config, tech_config_generic, subtests -): - commodity_demand = np.full(8760, 5.0) - commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 365) - - # Setup the OpenMDAO problem and add subsystems - prob = om.Problem() - - prob.model.add_subsystem( - "PyomoRuleStorageBaseclass", - PyomoRuleStorageBaseclass( - plant_config=plant_config, tech_config=tech_config_generic["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "battery_heuristic_load_following_controller", - HeuristicLoadFollowingController( - plant_config=plant_config, tech_config=tech_config_generic["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "storage", - StoragePerformanceModel( - plant_config=plant_config, tech_config=tech_config_generic["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - # Setup the system and required values - prob.setup() - prob.set_val("storage.hydrogen_in", commodity_in) - prob.set_val("storage.hydrogen_demand", commodity_demand) - - # Run the model - prob.run_model() - - charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] - discharge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] - capacity = prob.get_val("storage.storage_capacity", units="kg")[0] - - # Test that discharge is always positive - with subtests.test("Discharge is always positive"): - assert np.all(prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") >= 0) - with subtests.test("Charge is always negative"): - assert np.all(prob.get_val("storage.storage_hydrogen_charge", units="kg/h") <= 0) - with subtests.test("Charge + Discharge == storage_hydrogen_out"): - charge_plus_discharge = prob.get_val( - "storage.storage_hydrogen_charge", units="kg/h" - ) + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") - np.testing.assert_allclose( - charge_plus_discharge, prob.get_val("storage_hydrogen_out", units="kg/h"), rtol=1e-6 - ) - with subtests.test("Initial SOC is correct"): - assert ( - pytest.approx(prob.model.get_val("storage.SOC", units="unitless")[0], rel=1e-6) == 0.1 - ) - - indx_soc_increase = np.argwhere( - np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) > 0 - ).flatten() - indx_soc_decrease = np.argwhere( - np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=False) < 0 - ).flatten() - indx_soc_same = np.argwhere( - np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) == 0.0 - ).flatten() - - with subtests.test("SOC increases when charging"): - assert np.all( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] < 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_decrease] == 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_same] == 0 - ) - - with subtests.test("SOC decreases when discharging"): - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_decrease] > 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_increase] == 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_same] == 0 - ) - - with subtests.test("Max SOC <= Max storage percent"): - assert prob.get_val("storage.SOC", units="unitless").max() <= 1.0 - - with subtests.test("Min SOC >= Min storage percent"): - assert prob.get_val("storage.SOC", units="unitless").min() >= 0.1 - - with subtests.test("Charge never exceeds charge rate"): - assert ( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h").min() >= -1 * charge_rate - ) - - with subtests.test("Discharge never exceeds discharge rate"): - assert ( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() <= discharge_rate - ) - - with subtests.test("Discharge never exceeds demand"): - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() - <= commodity_demand - ) - - with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).max() <= capacity - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).min() >= -1 * capacity - - with subtests.test("Expected discharge from hour 10-30"): - expected_discharge = np.concat( - [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] - ) - np.testing.assert_allclose( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[10:30], - expected_discharge, - rtol=1e-6, - ) - - with subtests.test("Expected charge hour 0-20"): - expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(4)]) - np.testing.assert_allclose( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[0:20], - expected_charge, - rtol=1e-6, - ) diff --git a/h2integrate/control/test/test_openloop_controllers.py b/h2integrate/control/test/test_openloop_controllers.py deleted file mode 100644 index 1a54b7fe6..000000000 --- a/h2integrate/control/test/test_openloop_controllers.py +++ /dev/null @@ -1,613 +0,0 @@ -from copy import deepcopy -from pathlib import Path - -import yaml -import numpy as np -import pytest -import openmdao.api as om -from pytest import fixture -from openmdao.utils.assert_utils import assert_check_totals - -from h2integrate.control.control_strategies.passthrough_openloop_controller import ( - PassThroughOpenLoopController, -) -from h2integrate.control.control_strategies.storage.demand_openloop_controller import ( - DemandOpenLoopStorageController, -) -from h2integrate.control.control_strategies.converters.demand_openloop_controller import ( - DemandOpenLoopConverterController, -) -from h2integrate.control.control_strategies.converters.flexible_demand_openloop_controller import ( - FlexibleDemandOpenLoopConverterController, -) - - -@fixture -def variable_h2_production_profile(): - end_use_rated_demand = 10.0 # kg/h - ramp_up_rate_kg = 4.0 - ramp_down_rate_kg = 2.0 - slow_ramp_up = np.arange(0, end_use_rated_demand * 1.1, 0.5) - slow_ramp_down = np.arange(end_use_rated_demand * 1.1, -0.5, -0.5) - fast_ramp_up = np.arange(0, end_use_rated_demand, ramp_up_rate_kg * 1.2) - fast_ramp_down = np.arange(end_use_rated_demand, 0.0, ramp_down_rate_kg * 1.1) - variable_profile = np.concat( - [slow_ramp_up, fast_ramp_down, slow_ramp_up, slow_ramp_down, fast_ramp_up] - ) - variable_h2_profile = np.tile(variable_profile, 2) - return variable_h2_profile - - -@pytest.mark.unit -def test_pass_through_controller(subtests): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - # Set up the OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "pass_through_controller", - PassThroughOpenLoopController( - plant_config={}, tech_config=tech_config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # Run the test - with subtests.test("Check output"): - assert pytest.approx( - prob.get_val("hydrogen_set_point", units="kg/h"), rel=1e-3 - ) == np.arange(10) - - # Run the test - with subtests.test("Check derivatives"): - # check total derivatives using OpenMDAO's check_totals and assert tools - assert_check_totals( - prob.check_totals( - of=[ - "hydrogen_set_point", - ], - wrt=[ - "hydrogen_in", - ], - step=1e-6, - form="central", - show_only_incorrect=False, - out_stream=None, - ) - ) - - -@pytest.mark.regression -def test_storage_demand_controller(subtests): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} - - tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( - "DemandOpenLoopStorageController" - ) - - tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "max_capacity": 10.0, # kg - "max_charge_fraction": 1.0, # fraction (0-1) - "min_charge_fraction": 0.0, # fraction (0-1) - "init_charge_fraction": 1.0, # fraction (0-1) - "max_charge_rate": 1.0, # kg/time step - "max_discharge_rate": 0.5, # kg/time step - "charge_equals_discharge": False, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - # Set up the OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_open_loop_storage_controller", - DemandOpenLoopStorageController( - plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # Run the test - with subtests.test("Check output"): - assert pytest.approx([0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_set_point", units="kg/h" - ) - - with subtests.test("Check curtailment"): - assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( - "hydrogen_unused_commodity", units="kg/h" - ) - - with subtests.test("Check soc"): - assert pytest.approx([0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_soc", units="unitless" - ) - - with subtests.test("Check missed load"): - assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_unmet_demand", units="kg/h" - ) - - -@pytest.mark.unit -def test_storage_demand_controller_round_trip_efficiency(subtests): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - plant_config = {"plant": {"simulation": {"n_timesteps": 10}}} - - tech_config["technologies"]["h2_storage"]["control_strategy"]["model"] = ( - "DemandOpenLoopStorageController" - ) - tech_config["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "max_capacity": 10.0, # kg - "max_charge_fraction": 1.0, # fraction (0-1) - "min_charge_fraction": 0.0, # fraction (0-1) - "init_charge_fraction": 1.0, # fraction (0-1) - "max_charge_rate": 1.0, # kg/time step - "max_discharge_rate": 0.5, # kg/time step - "charge_equals_discharge": False, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - } - - tech_config_rte = deepcopy(tech_config) - tech_config_rte["technologies"]["h2_storage"]["model_inputs"]["control_parameters"] = { - "max_capacity": 10.0, # kg - "max_charge_fraction": 1.0, # fraction (0-1) - "min_charge_fraction": 0.0, # fraction (0-1) - "init_charge_fraction": 1.0, # fraction (0-1) - "max_charge_rate": 1.0, # kg/time step - "max_discharge_rate": 0.5, # kg/time step - "charge_equals_discharge": False, - "round_trip_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - def set_up_and_run_problem(config): - # Set up the OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_openloop_controller", - DemandOpenLoopStorageController( - plant_config=plant_config, tech_config=config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - return prob - - prob_ioe = set_up_and_run_problem(tech_config) - prob_rte = set_up_and_run_problem(tech_config_rte) - - # Run the test - with subtests.test("Check output"): - assert pytest.approx( - prob_ioe.get_val("hydrogen_set_point", units="kg/h") - ) == prob_rte.get_val("hydrogen_set_point", units="kg/h") - - with subtests.test("Check curtailment"): - assert pytest.approx( - prob_ioe.get_val("hydrogen_unused_commodity", units="kg/h") - ) == prob_rte.get_val("hydrogen_unused_commodity", units="kg/h") - - with subtests.test("Check soc"): - assert pytest.approx( - prob_ioe.get_val("hydrogen_soc", units="unitless") - ) == prob_rte.get_val("hydrogen_soc", units="unitless") - - with subtests.test("Check missed load"): - assert pytest.approx( - prob_ioe.get_val("hydrogen_unmet_demand", units="kg/h") - ) == prob_rte.get_val("hydrogen_unmet_demand", units="kg/h") - - -@pytest.mark.regression -def test_generic_storage_demand_controller(subtests): - # Test is the same as the demand controller test test_demand_controller for the "h2_storage" - # performance model but with the "SimpleGenericStorage" performance model - - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - tech_config["technologies"]["h2_storage"] = { - "performance_model": { - "model": "SimpleGenericStorage", - }, - "control_strategy": { - "model": "DemandOpenLoopStorageController", - }, - "model_inputs": { - "shared_parameters": { - "commodity": "hydrogen", - "commodity_rate_units": "kg", - "max_capacity": 10.0, # kg - "max_charge_rate": 1.0, # fraction (0-1) - }, - "control_parameters": { - "max_charge_fraction": 1.0, # fraction (0-1) - "min_charge_fraction": 0.0, # fraction (0-1) - "init_charge_fraction": 1.0, # fraction (0-1) - "max_discharge_rate": 0.5, # kg/time step - "charge_efficiency": 1.0, - "charge_equals_discharge": False, - "discharge_efficiency": 1.0, - "demand_profile": [1.0] * 10, # Example: 10 time steps with 10 kg/time step demand - }, - }, - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - # Set up OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_open_loop_storage_controller", - DemandOpenLoopStorageController( - plant_config=plant_config, tech_config=tech_config["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # # Run the test - with subtests.test("Check output"): - assert pytest.approx([0.5, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_set_point" - ) - - with subtests.test("Check curtailment"): - assert pytest.approx([0.0, 0.0, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0]) == prob.get_val( - "hydrogen_unused_commodity" - ) - - with subtests.test("Check soc"): - assert pytest.approx([0.95, 0.95, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]) == prob.get_val( - "hydrogen_soc" - ) - - with subtests.test("Check missed load"): - assert pytest.approx([0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_unmet_demand" - ) - - -@pytest.mark.regression -def test_demand_converter_controller(subtests): - # Test is the same as the demand controller test test_demand_controller for the "h2_storage" - # performance model but with the "SimpleGenericStorage" performance model - - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - tech_config["technologies"]["load"] = { - "control_strategy": { - "model": "DemandOpenLoopConverterController", - }, - "model_inputs": { - "control_parameters": { - "commodity": "hydrogen", - "commodity_rate_units": "kg", - "demand_profile": [5.0] * 10, # Example: 10 time steps with 5 kg/time step demand - }, - }, - } - - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10}}} - - # Set up OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), - promotes=["*"], - ) - - prob.model.add_subsystem( - "demand_open_loop_storage_controller", - DemandOpenLoopConverterController( - plant_config=plant_config, tech_config=tech_config["technologies"]["load"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - # # Run the test - with subtests.test("Check output"): - assert pytest.approx([0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 5.0, 5.0, 5.0, 5.0]) == prob.get_val( - "hydrogen_set_point" - ) - - with subtests.test("Check curtailment"): - assert pytest.approx([0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0]) == prob.get_val( - "hydrogen_unused_commodity" - ) - - with subtests.test("Check missed load"): - assert pytest.approx([5.0, 4.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0]) == prob.get_val( - "hydrogen_unmet_demand" - ) - - -### Add test for flexible load demand controller here - - -@pytest.mark.unit -def test_flexible_demand_converter_controller(subtests, variable_h2_production_profile): - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - end_use_rated_demand = 10.0 # kg/h - ramp_up_rate_kg = 4.0 - ramp_down_rate_kg = 2.0 - min_demand_kg = 2.5 - tech_config["technologies"]["load"] = { - "control_strategy": { - "model": "FlexibleDemandOpenLoopConverterController", - }, - "model_inputs": { - "control_parameters": { - "commodity": "hydrogen", - "commodity_rate_units": "kg", - "rated_demand": end_use_rated_demand, - "demand_profile": end_use_rated_demand, # flat demand profile - "turndown_ratio": min_demand_kg / end_use_rated_demand, - "ramp_down_rate_fraction": ramp_down_rate_kg / end_use_rated_demand, - "ramp_up_rate_fraction": ramp_up_rate_kg / end_use_rated_demand, - "min_utilization": 0.1, - }, - }, - } - - plant_config = { - "plant": { - "plant_life": 30, - "simulation": {"n_timesteps": len(variable_h2_production_profile)}, - } - } - - # Set up OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=variable_h2_production_profile), - promotes=["*"], - ) - - prob.model.add_subsystem( - "flexible_demand_open_loop_converter_controller", - FlexibleDemandOpenLoopConverterController( - plant_config=plant_config, tech_config=tech_config["technologies"]["load"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - flexible_total_demand = prob.get_val("hydrogen_flexible_demand_profile", units="kg") - - rated_production = end_use_rated_demand * len(variable_h2_production_profile) - - with subtests.test("Check that total demand profile is less than rated"): - assert np.all(flexible_total_demand <= end_use_rated_demand) - - with subtests.test("Check curtailment"): # failed - assert ( - pytest.approx(np.sum(prob.get_val("hydrogen_unused_commodity", units="kg")), rel=1e-3) - == 6.6 - ) - - # check ramping constraints and turndown constraints are met - with subtests.test("Check turndown ratio constraint"): - assert np.all(flexible_total_demand >= min_demand_kg) - - ramping_down = np.where( - np.diff(flexible_total_demand) < 0, -1 * np.diff(flexible_total_demand), 0 - ) - ramping_up = np.where(np.diff(flexible_total_demand) > 0, np.diff(flexible_total_demand), 0) - - with subtests.test("Check ramping down constraint"): - assert pytest.approx(np.max(ramping_down), rel=1e-6) == ramp_down_rate_kg - - with subtests.test("Check ramping up constraint"): # failed - assert pytest.approx(np.max(ramping_up), rel=1e-6) == ramp_up_rate_kg - - with subtests.test("Check min utilization constraint"): - assert np.sum(flexible_total_demand) / rated_production >= 0.1 - - with subtests.test("Check min utilization value"): - flexible_demand_utilization = np.sum(flexible_total_demand) / rated_production - assert pytest.approx(flexible_demand_utilization, rel=1e-6) == 0.5822142857142857 - - # flexible_demand_profile[i] >= commodity_in[i] (as long as you are not curtailing - # any commodity in) - with subtests.test("Check that flexible demand is greater than hydrogen_in"): - hydrogen_available = variable_h2_production_profile - prob.get_val( - "hydrogen_unused_commodity", units="kg" - ) - assert np.all(flexible_total_demand >= hydrogen_available) - - with subtests.test("Check that remaining demand was calculated properly"): - unmet_demand = flexible_total_demand - hydrogen_available - assert np.all(unmet_demand == prob.get_val("hydrogen_unmet_demand", units="kg")) - - -@pytest.mark.regression -def test_flexible_demand_converter_controller_min_utilization( - subtests, variable_h2_production_profile -): - # give it a min utilization larger than utilization resulting from above test - - # Get the directory of the current script - current_dir = Path(__file__).parent - - # Resolve the paths to the configuration files - tech_config_path = current_dir / "inputs" / "tech_config.yaml" - - # Load the technology configuration - with tech_config_path.open() as file: - tech_config = yaml.safe_load(file) - - end_use_rated_demand = 10.0 # kg/h - ramp_up_rate_kg = 4.0 - ramp_down_rate_kg = 2.0 - min_demand_kg = 2.5 - tech_config["technologies"]["load"] = { - "control_strategy": { - "model": "FlexibleDemandOpenLoopConverterController", - }, - "model_inputs": { - "control_parameters": { - "commodity": "hydrogen", - "commodity_rate_units": "kg", - "rated_demand": end_use_rated_demand, - "demand_profile": end_use_rated_demand, # flat demand profile - "turndown_ratio": min_demand_kg / end_use_rated_demand, - "ramp_down_rate_fraction": ramp_down_rate_kg / end_use_rated_demand, - "ramp_up_rate_fraction": ramp_up_rate_kg / end_use_rated_demand, - "min_utilization": 0.8, - }, - }, - } - - plant_config = { - "plant": { - "plant_life": 30, - "simulation": {"n_timesteps": len(variable_h2_production_profile)}, - } - } - - # Set up OpenMDAO problem - prob = om.Problem() - - prob.model.add_subsystem( - name="IVC", - subsys=om.IndepVarComp(name="hydrogen_in", val=variable_h2_production_profile), - promotes=["*"], - ) - - prob.model.add_subsystem( - "DemandOpenLoopStorageController", - FlexibleDemandOpenLoopConverterController( - plant_config=plant_config, tech_config=tech_config["technologies"]["load"] - ), - promotes=["*"], - ) - - prob.setup() - - prob.run_model() - - flexible_total_demand = prob.get_val("hydrogen_flexible_demand_profile", units="kg") - - rated_production = end_use_rated_demand * len(variable_h2_production_profile) - - flexible_demand_utilization = np.sum(flexible_total_demand) / rated_production - - with subtests.test("Check min utilization constraint"): - assert flexible_demand_utilization >= 0.8 - - with subtests.test("Check min utilization value"): - assert pytest.approx(flexible_demand_utilization, rel=1e-6) == 0.8010612244 diff --git a/h2integrate/control/test/test_optimal_controller_with_generic_storage.py b/h2integrate/control/test/test_optimal_controller_with_generic_storage.py deleted file mode 100644 index d7867f089..000000000 --- a/h2integrate/control/test/test_optimal_controller_with_generic_storage.py +++ /dev/null @@ -1,208 +0,0 @@ -import numpy as np -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate.storage.generic_storage_pyo import StoragePerformanceModel -from h2integrate.control.control_strategies.optimized_pyomo_controller import ( - OptimizedDispatchController, -) -from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( - PyomoRuleStorageBaseclass, -) - - -@fixture -def plant_config(): - plant_config = { - "plant": { - "plant_life": 30, - "simulation": { - "dt": 3600, - "n_timesteps": 8760, - }, - }, - "tech_to_dispatch_connections": [ - ["h2_storage", "h2_storage"], - ], - } - return plant_config - - -@fixture -def tech_config_generic(): - tech_config = { - "technologies": { - "h2_storage": { - "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, - "control_strategy": {"model": "OptimizedDispatchController"}, - "performance_model": {"model": "StoragePerformanceModel"}, - "model_inputs": { - "shared_parameters": { - "max_charge_rate": 10.0, - "max_capacity": 40.0, - "n_control_window": 24, - "init_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "min_charge_fraction": 0.1, - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, - }, - "performance_parameters": { - "charge_equals_discharge": True, - "commodity_amount_units": "kg", - }, - "control_parameters": { - "tech_name": "h2_storage", - "cost_per_charge": 0.03, # USD/kg - "cost_per_discharge": 0.05, # USD/kg - "commodity_met_value": 0.1, # USD/kg - "cost_per_production": 0.0, # USD/kg - "time_weighting_factor": 0.995, - "system_commodity_interface_limit": 10.0, - }, - }, - } - }, - } - return tech_config - - -@pytest.mark.regression -def test_optimal_control_with_generic_storage(plant_config, tech_config_generic, subtests): - commodity_demand = np.full(8760, 5.0) - commodity_in = np.tile(np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]), 365) - - # Setup the OpenMDAO problem and add subsystems - prob = om.Problem() - - prob.model.add_subsystem( - "PyomoRuleStorageBaseclass", - PyomoRuleStorageBaseclass( - plant_config=plant_config, tech_config=tech_config_generic["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "battery_optimized_load_following_controller", - OptimizedDispatchController( - plant_config=plant_config, tech_config=tech_config_generic["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - prob.model.add_subsystem( - "storage", - StoragePerformanceModel( - plant_config=plant_config, tech_config=tech_config_generic["technologies"]["h2_storage"] - ), - promotes=["*"], - ) - - # Setup the system and required values - prob.setup() - prob.set_val("storage.hydrogen_in", commodity_in) - prob.set_val("storage.hydrogen_demand", commodity_demand) - - # Run the model - prob.run_model() - - charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] - discharge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] - capacity = prob.get_val("storage.storage_capacity", units="kg")[0] - - # Test that discharge is always positive - with subtests.test("Discharge is always positive"): - assert np.all(prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") >= 0) - with subtests.test("Charge is always negative"): - assert np.all(prob.get_val("storage.storage_hydrogen_charge", units="kg/h") <= 0) - with subtests.test("Charge + Discharge == storage_hydrogen_out"): - charge_plus_discharge = prob.get_val( - "storage.storage_hydrogen_charge", units="kg/h" - ) + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") - np.testing.assert_allclose( - charge_plus_discharge, prob.get_val("storage_hydrogen_out", units="kg/h"), rtol=1e-6 - ) - with subtests.test("Initial SOC is correct"): - assert ( - pytest.approx(prob.model.get_val("storage.SOC", units="unitless")[0], rel=1e-6) == 0.1 - ) - - indx_soc_increase = np.argwhere( - np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) > 0 - ).flatten() - indx_soc_decrease = np.argwhere( - np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=False) < 0 - ).flatten() - indx_soc_same = np.argwhere( - np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) == 0.0 - ).flatten() - - with subtests.test("SOC increases when charging"): - assert np.all( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] < 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_decrease] == 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_same] == 0 - ) - - with subtests.test("SOC decreases when discharging"): - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_decrease] > 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_increase] == 0 - ) - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_same] == 0 - ) - - with subtests.test("Max SOC <= Max storage percent"): - assert prob.get_val("storage.SOC", units="unitless").max() <= 1.0 - - with subtests.test("Min SOC >= Min storage percent"): - assert prob.get_val("storage.SOC", units="unitless").min() >= 0.1 - - with subtests.test("Charge never exceeds charge rate"): - assert ( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h").min() >= -1 * charge_rate - ) - - with subtests.test("Discharge never exceeds discharge rate"): - assert ( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() <= discharge_rate - ) - - with subtests.test("Discharge never exceeds demand"): - assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() - <= commodity_demand - ) - - with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).max() <= capacity - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).min() >= -1 * capacity - - with subtests.test("Expected discharge from hour 10-30"): - expected_discharge = np.concat( - [np.zeros(8), np.ones(6), np.full(3, 5.0), np.array([4, 3, 2])] - ) - np.testing.assert_allclose( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[10:30], - expected_discharge, - rtol=1e-6, - ) - - with subtests.test("Expected charge hour 0-20"): - expected_charge = np.concat([np.zeros(8), np.arange(-1, -9, -1), np.zeros(4)]) - np.testing.assert_allclose( - prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[0:20], - expected_charge, - rtol=1e-6, - ) diff --git a/h2integrate/control/test/test_optimal_controllers.py b/h2integrate/control/test/test_optimal_controllers.py deleted file mode 100644 index 3dd9b1018..000000000 --- a/h2integrate/control/test/test_optimal_controllers.py +++ /dev/null @@ -1,351 +0,0 @@ -import numpy as np -import pytest - -from h2integrate.core.h2integrate_model import H2IntegrateModel - - -plant_config = { - "name": "plant_config", - "description": "...", - "sites": { - "site": {"latitude": 35.2018863, "longitude": -101.945027}, - }, - "plant": { - "plant_life": 1, - "grid_connection": False, - "ppa_price": 0.025, - "hybrid_electricity_estimated_cf": 0.492, - "simulation": { - "dt": 3600, - "n_timesteps": 8760, - }, - }, - "technology_interconnections": [["combiner", "battery", "electricity", "cable"]], - "tech_to_dispatch_connections": [ - ["combiner", "battery"], - ["battery", "battery"], - ], -} - -driver_config = { - "name": "driver_config", - "description": "Pyomo optimal min operating cost test", - "general": {}, -} - -tech_config = { - "name": "technology_config", - "description": "...", - "technologies": { - "battery": { - "dispatch_rule_set": {"model": "PyomoRuleStorageBaseclass"}, - "control_strategy": {"model": "OptimizedDispatchController"}, - "performance_model": {"model": "PySAMBatteryPerformanceModel"}, - "model_inputs": { - "shared_parameters": { - "max_charge_rate": 50000, - "max_capacity": 200000, - "n_control_window": 24, - "init_charge_fraction": 0.5, - "max_charge_fraction": 0.9, - "min_charge_fraction": 0.1, - "commodity": "electricity", - "commodity_rate_units": "kW", - "time_weighting_factor": 0.995, - "charge_efficiency": 0.95, - "discharge_efficiency": 0.95, - "cost_per_charge": 0.004, - "cost_per_discharge": 0.005, - "cost_per_production": 0.0, - "commodity_met_value": 0.1, - "round_digits": 4, - }, - "performance_parameters": { - "system_model_source": "pysam", - "chemistry": "LFPGraphite", - "control_variable": "input_power", - }, - "control_parameters": { - "tech_name": "battery", - "system_commodity_interface_limit": 1e12, - }, - }, - }, - "combiner": { - "performance_model": {"model": "GenericCombinerPerformanceModel"}, - "dispatch_rule_set": {"model": "PyomoDispatchGenericConverter"}, - "model_inputs": { - "performance_parameters": { - "commodity": "electricity", - "commodity_rate_units": "kW", - "in_streams": 1, - }, - "dispatch_rule_parameters": { - "commodity": "electricity", - "commodity_rate_units": "kW", - }, - }, - }, - }, -} - - -@pytest.mark.integration -def test_min_operating_cost_load_following_battery_dispatch(subtests): - # Fabricate some oscillating power generation data: 1000 kW for the first 12 hours, 10000 kW for - # the second twelve hours, and repeat that daily cycle over a year. - n_look_ahead_half = int(24 / 2) - - electricity_in = np.concatenate( - (np.ones(n_look_ahead_half) * 1000, np.ones(n_look_ahead_half) * 10000) - ) - electricity_in = np.tile(electricity_in, 365) - - demand_in = np.ones(8760) * 6000.0 - - # Create an H2Integrate model - model = H2IntegrateModel( - { - "driver_config": driver_config, - "technology_config": tech_config, - "plant_config": plant_config, - } - ) - - # Setup the system and required values - model.setup() - model.prob.set_val("combiner.electricity_in1", electricity_in) - model.prob.set_val("battery.electricity_demand", demand_in) - - # Run the model - model.prob.run_model() - - # Test the case where the charging/discharging cycle remains within the max and min SOC limits - # Check the expected outputs to actual outputs - expected_electricity_out = [ - 5999.99997732, - 5992.25494845, - 5991.96052468, - 5991.63342842, - 5991.26824325, - 5990.86174194, - 5990.40961477, - 5989.90607785, - 5989.34362595, - 5988.71271658, - 5988.00134229, - 5987.19448473, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - 6000.0, - ] - - expected_battery_electricity = [ - 4999.99997732, - 4992.25494845, - 4991.96052468, - 4991.63342842, - 4991.26824325, - 4990.86174194, - 4990.40961477, - 4989.90607785, - 4989.34362595, - 4988.71271658, - 4988.00134229, - 4987.19448473, - -3990.28117686, - -3990.74350731, - -3991.15657455, - -3991.53821244, - -3991.89075932, - -3992.21669822, - -3992.51846124, - -3992.79833559, - -3993.05841677, - -3993.30060036, - -3993.52658465, - -3993.73788536, - ] - - expected_battery_soc = [ - 49.87479765, - 47.50390223, - 45.12932011, - 42.75108798, - 40.3682277, - 37.9797332, - 35.58459541, - 33.18174418, - 30.76997461, - 28.34786178, - 25.91365422, - 23.4651282, - 25.4168656, - 27.36180226, - 29.29938411, - 31.23051435, - 33.15594392, - 35.07630244, - 36.99212221, - 38.90385706, - 40.81189705, - 42.71658006, - 44.61820098, - 46.517019, - 44.14026872, - 41.75708657, - 39.3692475, - 36.97562686, - 34.57512794, - 32.16658699, - 29.7486839, - 27.31984419, - 24.87811568, - 22.42099596, - 19.94517118, - 17.44609219, - ] - - expected_unmet_demand = np.array( - [ - 2.26821512e-05, - 7.74505155, - 8.03947532, - 8.36657158, - 8.73175675, - 9.13825806, - 9.59038523, - 1.00939222e01, - 1.06563740e01, - 1.12872834e01, - 1.19986577e01, - 1.28055153e01, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - 0.00000000e00, - ] - ) - - expected_unused_electricity = np.array( - [ - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, - 9.71882314, - 9.25649269, - 8.84342545, - 8.46178756, - 8.10924068, - 7.78330178, - 7.48153876, - 7.20166441, - 6.94158323, - 6.69939964, - 6.47341535, - 6.26211464, - ] - ) - - with subtests.test("Check battery.electricity_out"): - assert ( - pytest.approx(expected_electricity_out) - == model.prob.get_val("battery.electricity_out", units="kW")[0:24] - ) - - with subtests.test("Check battery_electricity"): - assert ( - pytest.approx(expected_battery_electricity) - == model.prob.get_val("battery.battery_electricity", units="kW")[0:24] - ) - - # Check a longer portion of SOC to make sure SOC is getting linked between optimization periods - with subtests.test("Check SOC"): - assert ( - pytest.approx(expected_battery_soc) - == model.prob.get_val("battery.SOC", units="percent")[0:36] - ) - - with subtests.test("Check unmet_demand"): - assert ( - pytest.approx(expected_unmet_demand, abs=1e-4) - == model.prob.get_val("battery.unmet_electricity_demand_out", units="kW")[0:24] - ) - - with subtests.test("Check unused_electricity_out"): - assert ( - pytest.approx(expected_unused_electricity) - == model.prob.get_val("battery.unused_electricity_out", units="kW")[0:24] - ) - - # Test the case where the battery efficiency is lower - tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"][ - "charge_efficiency" - ] = 0.632 - tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"][ - "discharge_efficiency" - ] = 0.632 - - model = H2IntegrateModel( - { - "driver_config": driver_config, - "technology_config": tech_config, - "plant_config": plant_config, - } - ) - - # Setup the system and required values - model.setup() - model.prob.set_val("combiner.electricity_in1", electricity_in) - model.prob.set_val("battery.electricity_demand", demand_in) - - # Run the model - model.prob.run_model() - - expected_electricity_out = [ - 5999.99997732, - 5992.25494845, - 5991.96052468, - 5991.63342842, - 5991.26824325, - 5990.86174194, - 5990.40961477, - 5989.90607785, - 5989.34362595, - 5988.71271658, - 1558.72773849, - 1000.0, - ] - - # Make sure output changes if efficiency is changed - with subtests.test("Check electricity_out for different efficiency"): - assert ( - pytest.approx(expected_electricity_out) - == model.prob.get_val("battery.electricity_out", units="kW")[:12] - ) diff --git a/h2integrate/converters/ammonia/ammonia_synloop.py b/h2integrate/converters/ammonia/ammonia_synloop.py index 3e360478d..ac1308c29 100644 --- a/h2integrate/converters/ammonia/ammonia_synloop.py +++ b/h2integrate/converters/ammonia/ammonia_synloop.py @@ -139,6 +139,11 @@ class AmmoniaSynLoopPerformanceModel(ResizeablePerformanceModelBaseClass): conversion efficiency up to the limiting reagent or energy input. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "ammonia" @@ -423,6 +428,11 @@ class AmmoniaSynLoopCostModel(CostModelBaseClass): Annual maintenance cost """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): target_cost_year = self.options["plant_config"]["finance_parameters"][ "cost_adjustment_parameters" diff --git a/h2integrate/converters/ammonia/simple_ammonia_model.py b/h2integrate/converters/ammonia/simple_ammonia_model.py index 9f609d232..527e2333b 100644 --- a/h2integrate/converters/ammonia/simple_ammonia_model.py +++ b/h2integrate/converters/ammonia/simple_ammonia_model.py @@ -30,6 +30,11 @@ class SimpleAmmoniaPerformanceModel(PerformanceModelBaseClass): Computes annual ammonia production based on plant capacity and capacity factor. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "ammonia" @@ -108,6 +113,11 @@ class SimpleAmmoniaCostModel(CostModelBaseClass): Includes CapEx, OpEx, and byproduct credits, and exposes all detailed cost outputs. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = AmmoniaCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/ammonia/test/conftest.py b/h2integrate/converters/ammonia/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/ammonia/test/conftest.py +++ b/h2integrate/converters/ammonia/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/co2/marine/direct_ocean_capture.py b/h2integrate/converters/co2/marine/direct_ocean_capture.py index 19c0d5862..0702aab32 100644 --- a/h2integrate/converters/co2/marine/direct_ocean_capture.py +++ b/h2integrate/converters/co2/marine/direct_ocean_capture.py @@ -1,13 +1,9 @@ from attrs import field, define from mcm.capture import echem_mcc -from h2integrate.core.utilities import merge_shared_inputs -from h2integrate.core.validators import must_equal -from h2integrate.converters.co2.marine.marine_carbon_capture_baseclass import ( - MarineCarbonCaptureCostBaseClass, - MarineCarbonCapturePerformanceConfig, - MarineCarbonCapturePerformanceBaseClass, -) +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import gt_zero, contains, gte_zero, range_val, must_equal +from h2integrate.core.model_baseclasses import CostModelBaseClass, PerformanceModelBaseClass def setup_electrodialysis_inputs(config): @@ -29,10 +25,14 @@ def setup_electrodialysis_inputs(config): @define(kw_only=True) -class DOCPerformanceConfig(MarineCarbonCapturePerformanceConfig): +class DOCPerformanceConfig(BaseConfig): """Extended configuration for Direct Ocean Capture (DOC) performance model. Attributes: + number_ed_min (int): Minimum number of ED units to operate. + number_ed_max (int): Maximum number of ED units available. + use_storage_tanks (bool): Flag indicating whether to use storage tanks. + store_hours (float): Number of hours of CO₂ storage capacity (hours). power_single_ed_w (float): Power requirement of a single electrodialysis (ED) unit (watts). flow_rate_single_ed_m3s (float): Flow rate of a single ED unit (cubic meters per second). E_HCl (float): Energy required per mole of HCl produced (kWh/mol). @@ -50,39 +50,42 @@ class DOCPerformanceConfig(MarineCarbonCapturePerformanceConfig): save_plots (bool, optional): If true, save plots of results. Defaults to False. """ - power_single_ed_w: float = field() - flow_rate_single_ed_m3s: float = field() - E_HCl: float = field() - E_NaOH: float = field() - y_ext: float = field() - y_pur: float = field() - y_vac: float = field() - frac_ed_flow: float = field() - temp_C: float = field() - sal: float = field() - dic_i: float = field() - pH_i: float = field() - initial_tank_volume_m3: float = field() + number_ed_min: int = field(validator=gt_zero) + number_ed_max: int = field(validator=gt_zero) + use_storage_tanks: bool = field() + store_hours: float = field(validator=gte_zero) + power_single_ed_w: float = field(validator=gte_zero) + flow_rate_single_ed_m3s: float = field(validator=gt_zero) + E_HCl: float = field(validator=gte_zero) + E_NaOH: float = field(validator=gte_zero) + y_ext: float = field(validator=range_val(0, 1)) + y_pur: float = field(validator=range_val(0, 1)) + y_vac: float = field(validator=range_val(0, 1)) + frac_ed_flow: float = field(validator=range_val(0, 1)) + temp_C: float = field(validator=gte_zero) + sal: float = field(validator=gte_zero) + dic_i: float = field(validator=gte_zero) + pH_i: float = field(validator=gte_zero) + initial_tank_volume_m3: float = field(validator=gte_zero) save_outputs: bool = field(default=False) save_plots: bool = field(default=False) -class DOCPerformanceModel(MarineCarbonCapturePerformanceBaseClass): +class DOCPerformanceModel(PerformanceModelBaseClass): """ An OpenMDAO component for modeling the performance of a Direct Ocean Capture (DOC) plant. - - Extends: - MarineCarbonCapturePerformanceBaseClass - - Computes: - - co2_out: Hourly CO2 capture rate (kg/h) - - co2_capture_mtpy: Annual CO2 capture (t/year) - - total_tank_volume_m3: Total tank volume (m^3) - - plant_mCC_capacity_mtph: Plant carbon capture capacity (t/h) """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() + self.commodity = "co2" + self.commodity_rate_units = "kg/h" + self.commodity_amount_units = "kg" def setup(self): self.config = DOCPerformanceConfig.from_dict( @@ -90,14 +93,17 @@ def setup(self): additional_cls_name=self.__class__.__name__, ) super().setup() - self.add_output( - "plant_mCC_capacity_mtph", + + self.add_input( + "electricity_in", val=0.0, - units="t/h", - desc="Theoretical maximum CO₂ capture (t/h)", + shape=self.n_timesteps, + units="W", + desc="Hourly input electricity (W)", ) + self.add_output( - "total_tank_volume_m3", + "total_tank_volume", val=0.0, units="m**3", ) @@ -123,9 +129,7 @@ def compute(self, inputs, outputs): ) outputs["co2_out"] = ed_outputs.ED_outputs["mCC"] * 1000 # kg/h - outputs["co2_capture_mtpy"] = max(ed_outputs.mCC_yr, 1e-6) # Must be >0 #TODO: remove - outputs["total_tank_volume_m3"] = range_outputs.V_aT_max + range_outputs.V_bT_max - outputs["plant_mCC_capacity_mtph"] = max(range_outputs.S1["mCC"]) # TODO: remove + outputs["total_tank_volume"] = range_outputs.V_aT_max + range_outputs.V_bT_max outputs["rated_co2_production"] = (ed_outputs.mCC_yr_MaxPwr / 8760) * 1e3 outputs["total_co2_produced"] = outputs["co2_out"].sum() @@ -141,23 +145,24 @@ class DOCCostModelConfig(DOCPerformanceConfig): """Configuration for the DOC cost model. Attributes: - infrastructure_type (str): Type of infrastructure (e.g., "desal", "swCool", "new""). + infrastructure_type (str): Type of infrastructure (e.g., "desal", "swCool", "new"). cost_year (int): dollar year corresponding to cost values """ - infrastructure_type: str = field() + infrastructure_type: str = field(validator=contains(["desal", "swCool", "new"])) cost_year: int = field(default=2023, converter=int, validator=must_equal(2023)) -class DOCCostModel(MarineCarbonCaptureCostBaseClass): +class DOCCostModel(CostModelBaseClass): """OpenMDAO component for computing capital (CapEx) and operational (OpEx) costs of a - direct ocean capture (DOC) system. - - Computes: - - CapEx (USD) - - OpEx (USD/year) + direct ocean capture (DOC) system. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() @@ -168,18 +173,27 @@ def setup(self): ) super().setup() + plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) self.add_input( - "total_tank_volume_m3", + "total_tank_volume", val=0.0, units="m**3", ) self.add_input( - "plant_mCC_capacity_mtph", # TODO: replace with rated_co2_production + "annual_co2_produced", + val=0.0, + shape=plant_life, + units="t/year", + desc="Annual co2 captured", + ) + + self.add_input( + "rated_co2_production", val=0.0, units="t/h", - desc="Theoretical plant maximum CO₂ capture (t/h)", + desc="Theoretical plant maximum CO₂ capture", ) def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): @@ -189,15 +203,13 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): res = echem_mcc.electrodialysis_cost_model( echem_mcc.ElectrodialysisCostInputs( electrodialysis_inputs=ED_inputs, - mCC_yr=inputs["co2_capture_mtpy"], # TODO: replace with annual_co2_produced - total_tank_volume=inputs["total_tank_volume_m3"], + mCC_yr=inputs["annual_co2_produced"], + total_tank_volume=inputs["total_tank_volume"], infrastructure_type=self.config.infrastructure_type, - max_theoretical_mCC=inputs[ - "plant_mCC_capacity_mtph" - ], # TODO: replaced with rated_co2_production + max_theoretical_mCC=inputs["rated_co2_production"], ) ) # Calculate CapEx outputs["CapEx"] = res.initial_capital_cost - outputs["OpEx"] = res.yearly_operational_cost + outputs["OpEx"] = res.yearly_operational_cost[0] diff --git a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py b/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py deleted file mode 100644 index 805ced48f..000000000 --- a/h2integrate/converters/co2/marine/marine_carbon_capture_baseclass.py +++ /dev/null @@ -1,78 +0,0 @@ -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig -from h2integrate.core.model_baseclasses import CostModelBaseClass, PerformanceModelBaseClass - - -@define(kw_only=True) -class MarineCarbonCapturePerformanceConfig(BaseConfig): - """Configuration options for marine carbon capture performance modeling. - - Attributes: - number_ed_min (int): Minimum number of ED units to operate. - number_ed_max (int): Maximum number of ED units available. - use_storage_tanks (bool): Flag indicating whether to use storage tanks. - store_hours (float): Number of hours of CO₂ storage capacity (hours). - """ - - number_ed_min: int = field() - number_ed_max: int = field() - use_storage_tanks: bool = field() - store_hours: float = field() - - -class MarineCarbonCapturePerformanceBaseClass(PerformanceModelBaseClass): - """Base OpenMDAO component for modeling marine carbon capture performance. - - This class provides the basic input/output setup and requires subclassing to - implement actual CO₂ capture calculations. - - Attributes: - plant_config (dict): Configuration dictionary for plant-level parameters. - tech_config (dict): Configuration dictionary for technology-specific parameters. - """ - - def initialize(self): - super().initialize() - self.commodity = "co2" - self.commodity_rate_units = "kg/h" - self.commodity_amount_units = "kg" - - def setup(self): - super().setup() - - self.add_input( - "electricity_in", - val=0.0, - shape=self.n_timesteps, - units="W", - desc="Hourly input electricity (W)", - ) - - # TODO: remove this output once finance models are updated - self.add_output("co2_capture_mtpy", units="t/year", desc="Annual CO₂ captured (t/year)") - - -class MarineCarbonCaptureCostBaseClass(CostModelBaseClass): - """Base OpenMDAO component for modeling marine carbon capture costs. - - This class defines the input/output structure for cost evaluation and should - be subclassed for implementation. - - Attributes: - plant_config (dict): Configuration dictionary for plant-level parameters. - tech_config (dict): Configuration dictionary for technology-specific parameters. - """ - - def setup(self): - super().setup() - self.add_input( - "electricity_in", val=0.0, shape=8760, units="W", desc="Hourly input electricity (W)" - ) - # TODO: replaced with annual_co2_produced - self.add_input( - "co2_capture_mtpy", - val=0.0, - units="t/year", - desc="Annual CO₂ captured (t/year)", - ) diff --git a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py index cd6cd9ca1..96995c8f5 100644 --- a/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py +++ b/h2integrate/converters/co2/marine/ocean_alkalinity_enhancement.py @@ -2,11 +2,11 @@ from mcm.capture import echem_oae from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import must_equal -from h2integrate.converters.co2.marine.marine_carbon_capture_baseclass import ( - MarineCarbonCaptureCostBaseClass, - MarineCarbonCapturePerformanceConfig, - MarineCarbonCapturePerformanceBaseClass, +from h2integrate.core.validators import gt_zero, contains, gte_zero, range_val, must_equal +from h2integrate.core.model_baseclasses import ( + CostModelBaseClass, + CostModelBaseConfig, + PerformanceModelBaseClass, ) @@ -25,10 +25,14 @@ def setup_ocean_alkalinity_enhancement_inputs(config): @define(kw_only=True) -class OAEPerformanceConfig(MarineCarbonCapturePerformanceConfig): +class OAEPerformanceConfig(BaseConfig): """Extended configuration for Ocean Alkalinity Enhancement (OAE) performance model. Attributes: + number_ed_min (int): Minimum number of ED units to operate. + number_ed_max (int): Maximum number of ED units available. + use_storage_tanks (bool): Flag indicating whether to use storage tanks. + store_hours (float): Number of hours of CO₂ storage capacity (hours). assumed_CDR_rate (float): Mole of CO2 per mole of NaOH (unitless). frac_base_flow (float): Fraction of base flow in the system (unitless). max_ed_system_flow_rate_m3s (float): Maximum flow rate through the ED system (m³/s). @@ -37,40 +41,44 @@ class OAEPerformanceConfig(MarineCarbonCapturePerformanceConfig): initial_dic_mol_per_L (float): Initial dissolved inorganic carbon (mol/L). initial_pH (float): Initial pH of seawater. initial_tank_volume_m3 (float): Initial volume of the tank (m³). - acid_disposal_method (str): Method for acid disposal. + acid_disposal_method (str): Method for acid disposal. Options are + "sell acid", "sell rca", "acid disposal". save_outputs (bool, optional): If true, save results to .csv files. Defaults to False. save_plots (bool, optional): If true, save plots of results. Defaults to False. """ - assumed_CDR_rate: float = field() - frac_base_flow: float = field() - max_ed_system_flow_rate_m3s: float = field() - initial_temp_C: float = field() - initial_salinity_ppt: float = field() - initial_dic_mol_per_L: float = field() - initial_pH: float = field() - initial_tank_volume_m3: float = field() - acid_disposal_method: str = field() + number_ed_min: int = field(validator=gt_zero) + number_ed_max: int = field(validator=gt_zero) + use_storage_tanks: bool = field() + store_hours: float = field(validator=gte_zero) + assumed_CDR_rate: float = field(validator=range_val(0, 1)) + frac_base_flow: float = field(validator=range_val(0, 1)) + max_ed_system_flow_rate_m3s: float = field(validator=gt_zero) + initial_temp_C: float = field(validator=gte_zero) + initial_salinity_ppt: float = field(validator=gte_zero) + initial_dic_mol_per_L: float = field(validator=gte_zero) + initial_pH: float = field(validator=gte_zero) + initial_tank_volume_m3: float = field(validator=gte_zero) + acid_disposal_method: str = field( + validator=contains(["sell acid", "sell rca", "acid disposal"]) + ) save_outputs: bool = field(default=False) save_plots: bool = field(default=False) -class OAEPerformanceModel(MarineCarbonCapturePerformanceBaseClass): - """OpenMDAO component for modeling Ocean Alkalinity Enhancement (OAE) performance. - - Extends: - MarineCarbonCapturePerformanceBaseClass +class OAEPerformanceModel(PerformanceModelBaseClass): + """OpenMDAO component for modeling Ocean Alkalinity Enhancement (OAE) performance.""" - Computes: - - co2_out: Hourly CO₂ capture rate (kg/h). - - co2_capture_mtpy: Annual CO₂ captured in metric tons per year. - - Notes: - This component requires the mcm.capture.echem_oae module for calculations. - """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model def initialize(self): super().initialize() + self.commodity = "co2" + self.commodity_rate_units = "kg/h" + self.commodity_amount_units = "kg" def setup(self): self.config = OAEPerformanceConfig.from_dict( @@ -78,105 +86,105 @@ def setup(self): additional_cls_name=self.__class__.__name__, ) super().setup() - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - self.add_output( - "plant_mCC_capacity_mtph", + self.add_input( + "electricity_in", val=0.0, - units="t/h", - desc="Theoretical maximum CO₂ capture (t/h)", + shape=self.n_timesteps, + units="W", + desc="Hourly input electricity (W)", ) self.add_output( "alkaline_seawater_flow_rate", - shape=n_timesteps, + shape=self.n_timesteps, val=0.0, units="m**3/s", - desc="Alkaline seawater flow rate (m³/s)", + desc="Alkaline seawater flow rate", ) self.add_output( "alkaline_seawater_pH", val=0.0, - shape=n_timesteps, + shape=self.n_timesteps, units="unitless", desc="pH of the alkaline seawater", ) self.add_output( "alkaline_seawater_dic", val=0.0, - shape=n_timesteps, + shape=self.n_timesteps, units="mol/L", desc="Dissolved inorganic carbon concentration in the alkaline seawater", ) self.add_output( "alkaline_seawater_ta", val=0.0, - shape=n_timesteps, + shape=self.n_timesteps, units="mol/L", desc="Total alkalinity of the alkaline seawater", ) self.add_output( "alkaline_seawater_salinity", val=0.0, - shape=n_timesteps, + shape=self.n_timesteps, units="ppt", desc="Salinity of the alkaline seawater", ) self.add_output( "alkaline_seawater_temp", val=0.0, - shape=n_timesteps, - units="C", - desc="Temperature of the alkaline seawater (°C)", + shape=self.n_timesteps, + units="degC", + desc="Temperature of the alkaline seawater", ) self.add_output( "excess_acid", val=0.0, - shape=n_timesteps, + shape=self.n_timesteps, units="m**3", - desc="Excess acid produced (m³)", + desc="Excess acid produced", ) self.add_output( "mass_sellable_product", val=0.0, units="t/year", - desc="Mass of sellable product (acid or RCA) produced per year (tonnes)", + desc="Mass of sellable product (acid or RCA) produced per year", ) self.add_output( "value_products", val=0.0, units="USD/year", - desc="Value of products (acid or RCA) (USD/year)", + desc="Value of products (acid or RCA)", ) self.add_output( "mass_acid_disposed", val=0.0, units="t/year", - desc="Mass of acid disposed per year (tonnes)", + desc="Mass of acid disposed per year", ) self.add_output( "cost_acid_disposal", val=0.0, units="USD/year", - desc="Cost of acid disposal (USD/year)", + desc="Cost of acid disposal", ) self.add_output( "based_added_seawater_max_power", val=0.0, units="mol/year", - desc="Maximum power for base added seawater per year (mol/year)", + desc="Maximum power for base added seawater per year", ) self.add_output( "mass_rca", val=0.0, units="g", - desc="Mass of RCA tumbler slurry produced (grams)", + desc="Mass of RCA tumbler slurry produced", ) self.add_output( "unused_energy", val=0.0, - shape=n_timesteps, + shape=self.n_timesteps, units="W", - desc="Unused energy unused by OAE system (W)", + desc="Unused energy unused by OAE system", ) def compute(self, inputs, outputs): @@ -220,11 +228,6 @@ def compute(self, inputs, outputs): oae_outputs.M_co2est * 1e3 ) # convert from metric tons/year to kg/year outputs["capacity_factor"] = oae_outputs.oae_capacity_factor - - outputs["co2_capture_mtpy"] = oae_outputs.M_co2est # TODO: remove - outputs["plant_mCC_capacity_mtph"] = max( - range_outputs.S1["mass_CO2_absorbed"] / 1000 - ) # TODO: remove outputs["alkaline_seawater_flow_rate"] = oae_outputs.OAE_outputs["Qout"] outputs["alkaline_seawater_pH"] = oae_outputs.OAE_outputs["pH_f"] outputs["alkaline_seawater_dic"] = oae_outputs.OAE_outputs["dic_f"] @@ -242,7 +245,7 @@ def compute(self, inputs, outputs): @define(kw_only=True) -class OAECostModelConfig(BaseConfig): +class OAECostModelConfig(CostModelBaseConfig): """Configuration for the OAE cost model. Attributes: @@ -252,15 +255,16 @@ class OAECostModelConfig(BaseConfig): cost_year: int = field(default=2024, converter=int, validator=must_equal(2024)) -class OAECostModel(MarineCarbonCaptureCostBaseClass): +class OAECostModel(CostModelBaseClass): """OpenMDAO component for computing capital (CapEx) and operational (OpEx) costs of a - ocean alkalinity enhancement (OAE) system. - - Computes: - - CapEx (USD) - - OpEx (USD/year) + ocean alkalinity enhancement (OAE) system. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() @@ -276,41 +280,49 @@ def setup(self): additional_cls_name=self.__class__.__name__, ) super().setup() + plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) + + self.add_input( + "annual_co2_produced", + val=0.0, + shape=plant_life, + units="t/year", + ) self.add_input( "mass_sellable_product", val=0.0, units="t/year", - desc="Mass of sellable product (acid or RCA) produced per year (tonnes)", + desc="Mass of sellable product (acid or RCA) produced per year", ) self.add_input( "value_products", val=0.0, units="USD/year", - desc="Value of products (acid or RCA) (USD/year)", + desc="Value of products (acid or RCA)", ) self.add_input( "mass_acid_disposed", val=0.0, units="t/year", - desc="Mass of acid disposed per year (tonnes)", + desc="Mass of acid disposed per year", ) self.add_input( "cost_acid_disposal", val=0.0, units="USD/year", - desc="Cost of acid disposal (USD/year)", + desc="Cost of acid disposal", ) self.add_input( "based_added_seawater_max_power", val=0.0, units="mol/year", - desc="Maximum power for base added seawater per year (mol/year)", + desc="Maximum power for base added seawater per year", ) self.add_input( "mass_rca", val=0.0, units="g", - desc="Mass of RCA tumbler slurry produced (grams)", + desc="Mass of RCA tumbler slurry produced", ) def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): @@ -319,7 +331,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): value_product=inputs["value_products"][0], waste_mass=inputs["mass_acid_disposed"][0], waste_disposal_cost=inputs["cost_acid_disposal"][0], - estimated_cdr=inputs["co2_capture_mtpy"][0], # TODO: replace with annual_co2_produced + estimated_cdr=inputs["annual_co2_produced"][0], base_added_seawater_max_power=inputs["based_added_seawater_max_power"][0], mass_rca=inputs["mass_rca"][0], annual_energy_cost=0, # Energy costs are calculated within H2I and added to LCOC calc @@ -332,19 +344,24 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): outputs["OpEx"] = results["Annual Operating Cost ($/yr)"] -class OAECostAndFinancialModel(MarineCarbonCaptureCostBaseClass): +class OAECostAndFinancialModel(CostModelBaseClass): """OpenMDAO component for calculating costs and financial metrics of an Ocean Alkalinity Enhancement (OAE) system. The financial model calculates the carbon credit value that would be required to achieve a net present value (NPV) of zero for the overall system costs. Computes: - - CapEx (USD) - - OpEx (USD/year) - - NPV ($) - - Carbon Credit Value (USD/tCO2) + - CapEx + - OpEx + - NPV + - Carbon Credit Value """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() @@ -361,85 +378,103 @@ def setup(self): ) super().setup() n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) + + self.add_input( + "annual_co2_produced", + val=0.0, + shape=plant_life, + units="t/year", + desc="Annual co2 captured", + ) self.add_input( "LCOE", val=0.0, units="USD/(kW*h)", - desc="Levelized cost of electricity (USD/kWh)", + desc="Levelized cost of electricity", ) self.add_input( - "annual_energy", + "annual_input_electricity", val=0.0, + shape=plant_life, units="kW*h/year", - desc="Annual energy production in kWac", + desc="Annual energy input to the OAE", ) self.add_input( "unused_energy", val=0.0, shape=n_timesteps, - units="W", - desc="Unused energy unused by OAE system (W)", + units="kW", + desc="Unused energy unused by OAE system", ) self.add_input( "mass_sellable_product", val=0.0, units="t/year", - desc="Mass of sellable product (acid or RCA) produced per year (tonnes)", + desc="Mass of sellable product (acid or RCA) produced per year", ) self.add_input( "value_products", val=0.0, units="USD/year", - desc="Value of products (acid or RCA) (USD/year)", + desc="Value of products (acid or RCA)", ) self.add_input( "mass_acid_disposed", val=0.0, units="t/year", - desc="Mass of acid disposed per year (tonnes)", + desc="Mass of acid disposed per year", ) self.add_input( "cost_acid_disposal", val=0.0, units="USD/year", - desc="Cost of acid disposal (USD/year)", + desc="Cost of acid disposal", ) self.add_input( "based_added_seawater_max_power", val=0.0, units="mol/year", - desc="Maximum power for base added seawater per year (mol/year)", + desc="Maximum power for base added seawater per year", ) self.add_input( "mass_rca", val=0.0, units="g", - desc="Mass of RCA tumbler slurry produced (grams)", + desc="Mass of RCA tumbler slurry produced", ) self.add_output( "NPV", val=0.0, units="USD", - desc="Net Present Value of the OAE system (USD)", + desc="Net Present Value of the OAE system", ) self.add_output( "carbon_credit_value", val=0.0, units="USD/t", - desc="Carbon credit value required to achieve NPV of zero (USD/tCO2)", + desc="Carbon credit value required to achieve NPV of zero", ) def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + """Model assume that you only pay for the energy you use for OAE.""" + if not inputs["annual_input_electricity"][0]: + msg = ( + "the annual_input_electricity needs to be connected to " + "an annual electricity stream in the technology_interconnections " + "in the plant_config." + ) + raise AttributeError(msg) annual_energy_cost_usd_yr = inputs["LCOE"] * ( - inputs["annual_energy"] - (sum(inputs["unused_energy"]) / 1000) # Convert W to kW + inputs["annual_input_electricity"][0] - (sum(inputs["unused_energy"])) ) # remove unused power from the annual energy cost only used power considered costs = echem_oae.OAECosts( mass_product=inputs["mass_sellable_product"][0], value_product=inputs["value_products"][0], waste_mass=inputs["mass_acid_disposed"][0], waste_disposal_cost=inputs["cost_acid_disposal"][0], - estimated_cdr=inputs["co2_capture_mtpy"][0], # TODO: replace with annual_co2_produced + estimated_cdr=inputs["annual_co2_produced"][0], base_added_seawater_max_power=inputs["based_added_seawater_max_power"][0], mass_rca=inputs["mass_rca"][0], annual_energy_cost=annual_energy_cost_usd_yr[0], diff --git a/h2integrate/converters/co2/marine/test/conftest.py b/h2integrate/converters/co2/marine/test/conftest.py index 7dc54f763..4a4191a52 100644 --- a/h2integrate/converters/co2/marine/test/conftest.py +++ b/h2integrate/converters/co2/marine/test/conftest.py @@ -2,7 +2,11 @@ import pytest -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) has_mcm = importlib.util.find_spec("mcm") is not None @@ -23,7 +27,7 @@ def plant_config(): # docs fencepost start: DO NOT REMOVE -@pytest.fixture(scope="module") +@pytest.fixture(scope="function") def driver_config(temp_dir): # noqa: F811 driver_config = { "general": { diff --git a/h2integrate/converters/co2/marine/test/test_doc.py b/h2integrate/converters/co2/marine/test/test_doc.py index de49b79e3..6c03bec40 100644 --- a/h2integrate/converters/co2/marine/test/test_doc.py +++ b/h2integrate/converters/co2/marine/test/test_doc.py @@ -147,8 +147,8 @@ def test_doc_standard_outputs(driver_config, plant_config, tech_config, subtests prob.model.add_subsystem("comp", doc_model, promotes=["*"]) prob.setup() rng = np.random.default_rng(seed=42) - base_power = np.linspace(3.0e8, 2.0e8, 8760) # 5 MW to 10 MW over 8760 hours - noise = rng.normal(loc=0, scale=0.5e8, size=8760) # ±0.5 MW noise + base_power = np.linspace(3.0e8, 2.0e8, 8760) # 300 MW to 200 MW over 8760 hours + noise = rng.normal(loc=0, scale=0.5e8, size=8760) # ±50 MW noise power_profile = base_power + noise prob.set_val("comp.electricity_in", power_profile, units="W") @@ -158,12 +158,6 @@ def test_doc_standard_outputs(driver_config, plant_config, tech_config, subtests int(plant_config["plant"]["plant_life"]) int(plant_config["plant"]["simulation"]["n_timesteps"]) - with subtests.test("co2 captured mtpy == annual co2 produced"): - assert ( - pytest.approx(prob.get_val("comp.co2_capture_mtpy", units="t/yr")[0], rel=1e-6) - == prob.get_val("comp.annual_co2_produced", units="t/yr")[0] - ) - annual_co2_from_cf_calc = ( prob.get_val("comp.capacity_factor", units="unitless") * prob.get_val("comp.rated_co2_production", units="t/h") @@ -173,7 +167,7 @@ def test_doc_standard_outputs(driver_config, plant_config, tech_config, subtests with subtests.test("CF calculated properly"): assert ( pytest.approx(annual_co2_from_cf_calc[0], rel=1e-6) - == prob.get_val("comp.co2_capture_mtpy", units="t/yr")[0] + == prob.get_val("comp.annual_co2_produced", units="t/yr")[0] ) @@ -192,8 +186,8 @@ def test_performance_model(tech_config, plant_config, driver_config): # Set inputs rng = np.random.default_rng(seed=42) - base_power = np.linspace(3.0e8, 2.0e8, 8760) # 5 MW to 10 MW over 8760 hours - noise = rng.normal(loc=0, scale=0.5e8, size=8760) # ±0.5 MW noise + base_power = np.linspace(3.0e8, 2.0e8, 8760) # 300 MW to 200 MW over 8760 hours + noise = rng.normal(loc=0, scale=0.5e8, size=8760) # ±50 MW noise power_profile = base_power + noise prob.set_val("DOC.electricity_in", power_profile, units="W") @@ -201,10 +195,10 @@ def test_performance_model(tech_config, plant_config, driver_config): prob.run_model() # Additional asserts for output values - co2_out = prob.get_val("co2_out") - co2_capture_mtpy = prob.get_val("co2_capture_mtpy") - plant_mCC_capacity_mtph = prob.get_val("plant_mCC_capacity_mtph") - total_tank_volume_m3 = prob.get_val("total_tank_volume_m3") + co2_out = prob.get_val("co2_out", units="kg/h") + co2_capture_mtpy = prob.get_val("annual_co2_produced", units="t/year")[0] + plant_mCC_capacity_mtph = prob.get_val("rated_co2_production", units="t/h") + total_tank_volume_m3 = prob.get_val("total_tank_volume") # Assert values (allowing for small numerical tolerance) assert_near_equal(np.linalg.norm(co2_out), 11394970.06218, tolerance=1e-1) diff --git a/h2integrate/converters/co2/marine/test/test_oae.py b/h2integrate/converters/co2/marine/test/test_oae.py index f4d992353..9f0cf5279 100644 --- a/h2integrate/converters/co2/marine/test/test_oae.py +++ b/h2integrate/converters/co2/marine/test/test_oae.py @@ -30,12 +30,12 @@ def tech_config(): @pytest.mark.unit -def test_doc_outputs(driver_config, plant_config, tech_config, subtests): - doc_model = OAEPerformanceModel( +def test_oae_outputs(driver_config, plant_config, tech_config, subtests): + oae_model = OAEPerformanceModel( driver_config=driver_config, plant_config=plant_config, tech_config=tech_config ) prob = om.Problem(model=om.Group()) - prob.model.add_subsystem("comp", doc_model, promotes=["*"]) + prob.model.add_subsystem("comp", oae_model, promotes=["*"]) prob.setup() rng = np.random.default_rng(seed=42) @@ -128,11 +128,11 @@ def test_doc_outputs(driver_config, plant_config, tech_config, subtests): @pytest.mark.regression def test_oae_standard_outputs(driver_config, plant_config, tech_config, subtests): - doc_model = OAEPerformanceModel( + oae_model = OAEPerformanceModel( driver_config=driver_config, plant_config=plant_config, tech_config=tech_config ) prob = om.Problem(model=om.Group()) - prob.model.add_subsystem("comp", doc_model, promotes=["*"]) + prob.model.add_subsystem("comp", oae_model, promotes=["*"]) prob.setup() rng = np.random.default_rng(seed=42) @@ -144,12 +144,6 @@ def test_oae_standard_outputs(driver_config, plant_config, tech_config, subtests # Run the model prob.run_model() - with subtests.test("co2 captured mtpy == annual co2 produced"): - assert ( - pytest.approx(prob.get_val("comp.co2_capture_mtpy", units="t/yr")[0], rel=1e-6) - == prob.get_val("comp.annual_co2_produced", units="t/yr")[0] - ) - annual_co2_from_cf_calc = ( prob.get_val("comp.capacity_factor", units="unitless") * prob.get_val("comp.rated_co2_production", units="t/h") @@ -159,7 +153,7 @@ def test_oae_standard_outputs(driver_config, plant_config, tech_config, subtests with subtests.test("CF calculated properly"): assert ( pytest.approx(annual_co2_from_cf_calc[0], rel=1e-6) - == prob.get_val("comp.co2_capture_mtpy", units="t/yr")[0] + == prob.get_val("comp.annual_co2_produced", units="t/yr")[0] ) @@ -184,15 +178,15 @@ def test_performance_model(tech_config, plant_config, driver_config): # Get output values to determine expected values co2_out = prob.get_val("co2_out", units="kg/h") - co2_capture_mtpy = prob.get_val("co2_capture_mtpy", units="t/year") - plant_mCC_capacity_mtph = prob.get_val("plant_mCC_capacity_mtph", units="t/h") + co2_capture_mtpy = prob.get_val("annual_co2_produced", units="t/year") + plant_mCC_capacity_mtph = prob.get_val("rated_co2_production", units="t/h") alkaline_seawater_flow_rate = prob.get_val("alkaline_seawater_flow_rate", units="m**3/s") alkaline_seawater_pH = prob.get_val("alkaline_seawater_pH", units="unitless") excess_acid = prob.get_val("excess_acid", units="m**3") # Assert values (allowing for small numerical tolerance) assert_near_equal(np.mean(co2_out), 1108.394704250361, tolerance=1e-3) - assert_near_equal(co2_capture_mtpy, [9709.53760923], tolerance=1e-6) + assert_near_equal(co2_capture_mtpy[0], [9709.53760923], tolerance=1e-6) assert_near_equal(plant_mCC_capacity_mtph, [1.10854656], tolerance=1e-6) assert_near_equal(np.mean(alkaline_seawater_flow_rate), 3.2395561643835618, tolerance=1e-6) assert_near_equal(np.mean(alkaline_seawater_pH), 9.145157555568293, tolerance=1e-6) diff --git a/h2integrate/converters/generic_converter_cost.py b/h2integrate/converters/generic_converter_cost.py new file mode 100644 index 000000000..ed2a03e9e --- /dev/null +++ b/h2integrate/converters/generic_converter_cost.py @@ -0,0 +1,124 @@ +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.core.validators import gte_zero, range_val_or_none +from h2integrate.core.model_baseclasses import CostModelBaseClass, CostModelBaseConfig + + +@define(kw_only=True) +class GenericConverterCostConfig(CostModelBaseConfig): + """Configuration class for the GenericConverterCostModel with costs based on rated capacity. + The cost units must compatible with the units of the commodity produced by the converter. + + Attributes: + commodity (str): name of commodity + commodity_rate_units (str): Units of the commodity (e.g., "kg/h" or "kW"). + unit_capex (float | int): capital cost in units of `USD/commodity_rate_units`. + Must be greater than or equal to zero. + unit_varopex (float | int): variable O&M cost in units of `USD/commodity_amount_units` + unit_opex (float | int | None): fixed O&M cost in units of `USD/commodity_rate_units/year`. + Only required if `opex_fraction` is None. Defaults to None. + opex_fraction (float | int | None): the fixed O&M cost as a ratio of the CapEx. + Must be between 0 or 1. Only required if `unit_opex` is None. Defaults to None. + cost_year (int): dollar year of input costs + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., "kW*h" or "kg"). If not provided, defaults to `commodity_rate_units*h`. + """ + + commodity: str = field(converter=str.strip) + commodity_rate_units: str = field(converter=str.strip) + unit_capex: float | int = field(validator=gte_zero) + unit_varopex: float = field() + + unit_opex: float | int | None = field(default=None) + opex_fraction: float | None = field(default=None, validator=range_val_or_none(0, 1)) + commodity_amount_units: str = field(default=None) + + def __attrs_post_init__(self): + # If both or neither OpEx value was input, raise an error + if (self.unit_opex is None and self.opex_fraction is None) or ( + self.unit_opex is not None and self.opex_fraction is not None + ): + msg = ( + "Please provide either a value for `unit_opex` or a value for " + + "`opex_fraction` in the generic converter cost config, but not both." + ) + raise KeyError(msg) + + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" + + +class GenericConverterCostModel(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + self.config = GenericConverterCostConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), + strict=True, + additional_cls_name=self.__class__.__name__, + ) + plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) + + super().setup() + + # Inputs that are outputs of the performance model + self.add_input( + f"rated_{self.config.commodity}_production", + val=0.0, + units=self.config.commodity_rate_units, + ) + self.add_input( + f"annual_{self.config.commodity}_produced", + val=0.0, + shape=plant_life, + units=f"({self.config.commodity_amount_units})/year", + ) + + # Cost parameter inputs + self.add_input( + "unit_capex", + val=self.config.unit_capex, + units=f"USD/({self.config.commodity_rate_units})", + desc="Unit CapEx", + ) + + self.add_input( + "unit_varopex", + val=self.config.unit_varopex, + units=f"USD/({self.config.commodity_amount_units})", + desc="Unit Variable O&M", + ) + + if self.config.opex_fraction is not None: + # opex is expressed as a fraction of CapEx + self.add_input( + "fixed_opex_ratio", + val=self.config.opex_fraction, + units="unitless", + desc="Fixed OpEx as a fraction of the total CapEx", + ) + else: + # opex is expressed as a multiplier of rated capacity + self.add_input( + "unit_opex", + val=self.config.unit_opex, + units=f"USD/({self.config.commodity_rate_units})/year", + desc="Unit Fixed OpEx", + ) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + tot_capex = inputs[f"rated_{self.config.commodity}_production"] * inputs["unit_capex"] + outputs["CapEx"] = tot_capex + if "unit_opex" in inputs: + outputs["OpEx"] = ( + inputs[f"rated_{self.config.commodity}_production"] * inputs["unit_opex"] + ) + else: + outputs["OpEx"] = tot_capex * inputs["fixed_opex_ratio"] + outputs["VarOpEx"] = ( + inputs[f"annual_{self.config.commodity}_produced"] * inputs["unit_varopex"] + ) diff --git a/h2integrate/converters/grid/grid.py b/h2integrate/converters/grid/grid.py index 0765ac426..dfde27149 100644 --- a/h2integrate/converters/grid/grid.py +++ b/h2integrate/converters/grid/grid.py @@ -36,6 +36,8 @@ class GridPerformanceModel(PerformanceModelBaseClass): different grid connection points (for example, one for buying upstream and another for selling downstream). + This model is compatible with time steps ranging from 5-minutes to 1-hour. + Inputs interconnection_size (float): Maximum power capacity for grid connection (kW). electricity_in (array): Power flowing into the grid (selling) (kW). @@ -45,6 +47,11 @@ class GridPerformanceModel(PerformanceModelBaseClass): electricity_out (array): Power flowing out of the grid (buying) (kW). """ + _time_step_bounds = ( + 300, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" @@ -174,10 +181,15 @@ class GridCostModel(CostModelBaseClass): - Revenue from electricity sales (sell mode) - Support for time-varying electricity prices - Note: Although the electricity units are in kW and the prices are in USD/kWh, - this model assumes that each timestep represents 1 hour. + This model is compatible with time steps ranging from 5-minutes to 1-hour. + """ + _time_step_bounds = ( + 300, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = GridCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), @@ -277,13 +289,13 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): electricity_out = inputs["electricity_out"] buy_price = inputs["electricity_buy_price"] # Buying costs money (positive VarOpEx) - varopex += np.sum(electricity_out * buy_price) + varopex += np.sum((self.dt / 3600) * electricity_out * buy_price) # Add selling revenue if sell price is configured # electricity_sold represents power flowing INTO grid (selling) if self.config.electricity_sell_price is not None: sell_price = inputs["electricity_sell_price"] # Selling generates revenue (negative VarOpEx) - varopex -= np.sum(inputs["electricity_sold"] * sell_price) + varopex -= np.sum((self.dt / 3600) * inputs["electricity_sold"] * sell_price) outputs["VarOpEx"] = varopex diff --git a/h2integrate/converters/grid/test/conftest.py b/h2integrate/converters/grid/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/grid/test/conftest.py +++ b/h2integrate/converters/grid/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/grid/test/test_grid.py b/h2integrate/converters/grid/test/test_grid.py index 5af52832c..ee6f54121 100644 --- a/h2integrate/converters/grid/test/test_grid.py +++ b/h2integrate/converters/grid/test/test_grid.py @@ -4,6 +4,7 @@ from pytest import fixture from h2integrate.converters.grid.grid import GridCostModel, GridPerformanceModel +from h2integrate.core.h2integrate_model import H2IntegrateModel @fixture @@ -281,6 +282,138 @@ def test_varying_demand_profile(plant_config, n_timesteps): np.testing.assert_array_almost_equal(electricity_out, expected) +@pytest.mark.unit +@pytest.mark.parametrize("n_timesteps", [10]) +def test_non_hourly_dt_demand_profile(subtests, plant_config, n_timesteps): + """Test with time-varying demand profile.""" + plant_config["plant"]["simulation"]["dt"] = 300 + + prob = om.Problem() + commodity = "electricity" + + tech_config = {"model_inputs": {"shared_parameters": {"interconnection_size": 100000.0}}} + + prob.model.add_subsystem( + "grid", + GridPerformanceModel(driver_config={}, plant_config=plant_config, tech_config=tech_config), + ) + + prob.setup() + + # Create varying demand profile + demand = np.array([10000, 20000, 30000, 50000, 70000, 90000, 110000, 80000, 60000, 40000]) + prob.set_val("grid.electricity_demand", demand, units="kW") + + prob.run_model() + + interconnection_size = tech_config["model_inputs"]["shared_parameters"]["interconnection_size"] + dt_seconds = plant_config["plant"]["simulation"]["dt"] + expected = np.clip(demand, 0, interconnection_size) + expected_total = expected.sum() * dt_seconds / 3600.0 + fraction_of_year = n_timesteps * dt_seconds / 31536000.0 + expected_annual_value = expected_total / fraction_of_year + + with subtests.test(f"annual_{commodity}_produced length"): + electricity_out = prob.get_val("grid.electricity_out", units="kW") + np.testing.assert_array_almost_equal(electricity_out, expected) + + with subtests.test("cf"): + cf = prob.get_val("grid.capacity_factor", units="unitless") + expected_capacity_factor = expected.mean() / interconnection_size + assert cf == pytest.approx(expected_capacity_factor) + + with subtests.test("total production"): + total_energy = prob.get_val(f"grid.total_{commodity}_produced", units="kW*h") + np.testing.assert_allclose(np.atleast_1d(total_energy), [expected_total]) + + with subtests.test("annual production"): + annual_energy = prob.get_val(f"grid.annual_{commodity}_produced", units="kW*h/year") + np.testing.assert_allclose( + np.atleast_1d(annual_energy), + np.full(np.atleast_1d(annual_energy).shape, expected_annual_value), + ) + + +@pytest.mark.integration +def test_grid_integration_dt_1800(subtests, tmp_path): + """Integration test: run an H2IntegrateModel with only grid technology at dt=1800 s.""" + n_timesteps = 8760 * 2 + dt_seconds = 1800 + interconnection_size = 100000.0 + demand_kw = 40000.0 + + driver_config = { + "name": "driver_config", + "description": "Integration test driver config", + "general": { + "folder_output": str(tmp_path / "output"), + "create_om_reports": False, + }, + } + + tech_config = { + "name": "technology_config", + "description": "Grid-only integration test", + "technologies": { + "grid": { + "performance_model": {"model": "GridPerformanceModel"}, + "model_inputs": { + "shared_parameters": { + "interconnection_size": interconnection_size, + } + }, + } + }, + } + + plant_config = { + "name": "plant_config", + "description": "Grid-only integration test plant", + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": n_timesteps, + "dt": dt_seconds, + }, + }, + } + + h2i = H2IntegrateModel( + { + "name": "h2i_grid_integration_test", + "system_summary": "Grid-only integration model", + "driver_config": driver_config, + "technology_config": tech_config, + "plant_config": plant_config, + } + ) + h2i.setup() + + demand = np.full(n_timesteps, demand_kw) + h2i.prob.set_val("grid.electricity_demand", demand, units="kW") + h2i.prob.run_model() + + expected_out = np.full(n_timesteps, demand_kw) + expected_total = expected_out.sum() * (dt_seconds / 3600) + expected_annual = expected_total * (365 * 24 * 3600) / (n_timesteps * dt_seconds) + + with subtests.test("electricity_out equals demand when below interconnection limit"): + electricity_out = h2i.prob.get_val("grid.electricity_out", units="kW") + np.testing.assert_array_almost_equal(electricity_out, expected_out) + + with subtests.test("capacity factor reflects 40 percent loading"): + capacity_factor = h2i.prob.get_val("grid.capacity_factor", units="unitless") + np.testing.assert_array_almost_equal(capacity_factor, np.full_like(capacity_factor, 0.4)) + + with subtests.test("total electricity produced scales with 1800 second timestep"): + total_energy = h2i.prob.get_val("grid.total_electricity_produced", units="kW*h") + assert total_energy == pytest.approx(expected_total) + + with subtests.test("annual electricity produced scales from simulated fraction of year"): + annual_energy = h2i.prob.get_val("grid.annual_electricity_produced", units="kW*h/year") + assert annual_energy == pytest.approx(expected_annual) + + @pytest.mark.unit @pytest.mark.parametrize("n_timesteps", [24]) def test_buy_only_mode(plant_config, n_timesteps): diff --git a/h2integrate/converters/hopp/hopp_wrapper.py b/h2integrate/converters/hopp/hopp_wrapper.py index 2ac08b08f..06579c601 100644 --- a/h2integrate/converters/hopp/hopp_wrapper.py +++ b/h2integrate/converters/hopp/hopp_wrapper.py @@ -28,6 +28,11 @@ class HOPPComponent(PerformanceModelBaseClass, CacheBaseClass): computed results when the same configuration is encountered. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" @@ -37,7 +42,7 @@ def initialize(self): def setup(self): self.config = HOPPComponentModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, + strict=True, additional_cls_name=self.__class__.__name__, ) diff --git a/h2integrate/converters/hopp/test/conftest.py b/h2integrate/converters/hopp/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/hopp/test/conftest.py +++ b/h2integrate/converters/hopp/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/hydrogen/basic_cost_model.py b/h2integrate/converters/hydrogen/basic_cost_model.py index 574993abb..9f6cbdb50 100644 --- a/h2integrate/converters/hydrogen/basic_cost_model.py +++ b/h2integrate/converters/hydrogen/basic_cost_model.py @@ -35,6 +35,11 @@ class BasicElectrolyzerCostModel(ElectrolyzerCostBaseClass): An OpenMDAO component that computes the cost of a PEM electrolyzer. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = BasicElectrolyzerCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py b/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py index 851b2538c..89085c6ff 100644 --- a/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py +++ b/h2integrate/converters/hydrogen/custom_electrolyzer_cost_model.py @@ -27,6 +27,11 @@ class CustomElectrolyzerCostModel(ElectrolyzerCostBaseClass): An OpenMDAO component that computes the cost of a PEM electrolyzer. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = CustomElectrolyzerCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/hydrogen/electrolyzer_baseclass.py b/h2integrate/converters/hydrogen/electrolyzer_baseclass.py index 39112d648..c0934a013 100644 --- a/h2integrate/converters/hydrogen/electrolyzer_baseclass.py +++ b/h2integrate/converters/hydrogen/electrolyzer_baseclass.py @@ -5,6 +5,11 @@ class ElectrolyzerPerformanceBaseClass(ResizeablePerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "hydrogen" @@ -28,6 +33,11 @@ def compute(self, inputs, outputs): class ElectrolyzerCostBaseClass(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] super().setup() diff --git a/h2integrate/converters/hydrogen/geologic/aspen_surface_processing.py b/h2integrate/converters/hydrogen/geologic/aspen_surface_processing.py index e929950ed..98a041968 100644 --- a/h2integrate/converters/hydrogen/geologic/aspen_surface_processing.py +++ b/h2integrate/converters/hydrogen/geologic/aspen_surface_processing.py @@ -76,6 +76,11 @@ class AspenGeoH2SurfacePerformanceModel(GeoH2SurfacePerformanceBaseClass): Hourly steam production profile (8760 hours), in kW thermal. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = AspenGeoH2SurfacePerformanceConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), @@ -244,6 +249,11 @@ class AspenGeoH2SurfaceCostModel(GeoH2SurfaceCostBaseClass): All inherited from GeoH2SurfaceCostBaseClass """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = AspenGeoH2SurfaceCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py b/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py index f22dd3010..fc3c24fea 100644 --- a/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py +++ b/h2integrate/converters/hydrogen/geologic/h2_well_subsurface_baseclass.py @@ -86,6 +86,11 @@ class GeoH2SubsurfacePerformanceBaseClass(PerformanceModelBaseClass): The total hydrogen produced over the plant lifetime, in kilograms per year. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "hydrogen" @@ -169,6 +174,11 @@ class GeoH2SubsurfaceCostBaseClass(CostModelBaseClass): Variable OPEX per kilogram of wellhead gas produced, in USD/kg. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] diff --git a/h2integrate/converters/hydrogen/geologic/h2_well_surface_baseclass.py b/h2integrate/converters/hydrogen/geologic/h2_well_surface_baseclass.py index 3fca88df0..e9107249c 100644 --- a/h2integrate/converters/hydrogen/geologic/h2_well_surface_baseclass.py +++ b/h2integrate/converters/hydrogen/geologic/h2_well_surface_baseclass.py @@ -66,6 +66,11 @@ class GeoH2SurfacePerformanceBaseClass(PerformanceModelBaseClass): The wellhead gas flow in kg/hour used for sizing the system - passed to the cost model. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "hydrogen" @@ -147,6 +152,11 @@ class GeoH2SurfaceCostBaseClass(CostModelBaseClass): Variable OPEX per kilogram of hydrogen produced, in USD/year. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] diff --git a/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py b/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py index 8f26ddacd..94079bc00 100644 --- a/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py +++ b/h2integrate/converters/hydrogen/geologic/simple_natural_geoh2.py @@ -141,6 +141,11 @@ class NaturalGeoH2PerformanceModel(GeoH2SubsurfacePerformanceBaseClass): of annual hydrogen production to the maximum hydrogen production of the well. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = NaturalGeoH2PerformanceConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), diff --git a/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py b/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py index bc99d3c3d..88390de19 100644 --- a/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py +++ b/h2integrate/converters/hydrogen/geologic/templeton_serpentinization.py @@ -73,6 +73,11 @@ class StimulatedGeoH2PerformanceModel(GeoH2SubsurfacePerformanceBaseClass): over one year (8760 hours) [kg/h]. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.config = StimulatedGeoH2PerformanceConfig.from_dict( diff --git a/h2integrate/converters/hydrogen/geologic/test/conftest.py b/h2integrate/converters/hydrogen/geologic/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/hydrogen/geologic/test/conftest.py +++ b/h2integrate/converters/hydrogen/geologic/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/hydrogen/h2_fuel_cell.py b/h2integrate/converters/hydrogen/h2_fuel_cell.py index e7851a94b..e4675768a 100644 --- a/h2integrate/converters/hydrogen/h2_fuel_cell.py +++ b/h2integrate/converters/hydrogen/h2_fuel_cell.py @@ -38,6 +38,11 @@ class LinearH2FuelCellPerformanceModel(PerformanceModelBaseClass): - HHV_hydrogen is the higher heating value of hydrogen (approximately 142 MJ/kg) """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" @@ -144,6 +149,11 @@ class H2FuelCellCostModel(CostModelBaseClass): specified cost parameters. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = H2FuelCellCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/hydrogen/pem_electrolyzer.py b/h2integrate/converters/hydrogen/pem_electrolyzer.py index 0baa49eb2..41a86b21e 100644 --- a/h2integrate/converters/hydrogen/pem_electrolyzer.py +++ b/h2integrate/converters/hydrogen/pem_electrolyzer.py @@ -59,6 +59,11 @@ class ECOElectrolyzerPerformanceModel(ElectrolyzerPerformanceBaseClass): Takes electricity input and outputs hydrogen and oxygen generation rates. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = ECOElectrolyzerPerformanceModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), @@ -90,6 +95,11 @@ def setup(self): units="MW", desc="Size of the electrolyzer in MW", ) + + self.add_output("oxygen_out", val=0, shape=self.n_timesteps, units="kg/h") + self.add_output("rated_oxygen_production", val=0, shape=1, units="kg/h") + self.add_output("annual_oxygen_produced", val=0, shape=self.plant_life, units="kg/yr") + self.add_input("cluster_size", val=-1.0, units="MW") self.add_input("max_hydrogen_capacity", val=1000.0, units="kg/h") # TODO: add feedstock inputs and consumption outputs @@ -188,8 +198,13 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): "Capacity Factor [-]" ].values outputs["annual_hydrogen_produced"] = H2_Results["Life: Annual H2 production [kg/year]"] - # TODO: replace above line w below # outputs["annual_hydrogen_produced"] = H2_Results["Performance Schedules"][ # "Annual H2 Production [kg/year]" # ].values + + outputs["oxygen_out"] = H2_Results["Oxygen Hourly Production [kg/hr]"] + outputs["rated_oxygen_production"] = H2_Results["Rated BOL: O2 Production [kg/hr]"] + outputs["annual_oxygen_produced"] = H2_Results["Performance Schedules"][ + "Annual O2 Production [kg/year]" + ] diff --git a/h2integrate/converters/hydrogen/pem_model/PEM_H2_LT_electrolyzer_Clusters.py b/h2integrate/converters/hydrogen/pem_model/PEM_H2_LT_electrolyzer_Clusters.py index baaf946fd..63dd2f271 100644 --- a/h2integrate/converters/hydrogen/pem_model/PEM_H2_LT_electrolyzer_Clusters.py +++ b/h2integrate/converters/hydrogen/pem_model/PEM_H2_LT_electrolyzer_Clusters.py @@ -29,6 +29,8 @@ import rainflow from scipy import interpolate +from h2integrate.tools.constants import O2_MW + np.set_printoptions(threshold=sys.maxsize) @@ -174,7 +176,7 @@ def run(self, input_external_power_kw): cluster_cycling = np.array(cluster_cycling) # how much to reduce h2 by based on cycling status - h2_multiplier = np.where(cluster_cycling > 0, startup_ratio, 1) + production_multiplier = np.where(cluster_cycling > 0, startup_ratio, 1) # number of "stacks" on at a single time self.n_stacks_op = self.max_stacks * self.cluster_status # n_stacks_op is now either number of pem per cluster or 0 if cluster is off! @@ -218,10 +220,15 @@ def run(self, input_external_power_kw): # h20_gal_used_system=self.water_supply(h2_kg_hr_system_init) p_consumed_max, rated_h2_hr = self.rated_h2_prod() # scales h2 production to account for start-up time if going from off->on - h2_kg_hr_system = h2_kg_hr_system_init * h2_multiplier + h2_kg_hr_system = h2_kg_hr_system_init * production_multiplier h20_gal_used_system = self.water_supply(h2_kg_hr_system) + # Get oxygen production and rated used + rated_o2_hr = self.rated_o2_prod() + o2_kg_hr_system_init = self.o2_production_rate(stack_current, self.n_stacks_op) + o2_kg_hr_system = o2_kg_hr_system_init * production_multiplier + pem_cf = np.sum(h2_kg_hr_system) / (rated_h2_hr * len(input_power_kw) * self.max_stacks) efficiency = self.system_efficiency(input_power_kw, stack_current) # Efficiency as %-HHV @@ -231,6 +238,7 @@ def run(self, input_external_power_kw): h2_results["hydrogen production no start-up time"] = h2_kg_hr_system_init h2_results["hydrogen_hourly_production"] = h2_kg_hr_system h2_results["water_hourly_usage_kg"] = h20_gal_used_system * 3.79 + h2_results["oxygen_hourly_production"] = o2_kg_hr_system h2_results["electrolyzer_total_efficiency_perc"] = efficiency h2_results["kwh_per_kgH2"] = input_power_kw / h2_kg_hr_system h2_results["Power Consumed [kWh]"] = system_power_consumed @@ -246,6 +254,7 @@ def run(self, input_external_power_kw): p_consumed_max * self.max_stacks ) h2_results_aggregates["Cluster Rated H2 Production [kg/hr]"] = rated_h2_hr * self.max_stacks + h2_results_aggregates["Cluster Rated O2 Production [kg/hr]"] = rated_o2_hr * self.max_stacks h2_results_aggregates["gal H20 per kg H2"] = np.sum(h20_gal_used_system) / np.sum( h2_kg_hr_system ) @@ -253,6 +262,9 @@ def run(self, input_external_power_kw): h2_results_aggregates["Cluster Rated H2 Production [kg/yr]"] = ( rated_h2_hr * len(input_power_kw) * self.max_stacks ) + h2_results_aggregates["Cluster Rated O2 Production [kg/yr]"] = ( + rated_o2_hr * len(input_power_kw) * self.max_stacks + ) h2_results_aggregates["Operational Time / Simulation Time (ratio)"] = ( self.percent_of_sim_operating ) # added @@ -367,13 +379,17 @@ def make_yearly_performance_dict(self, power_in_kW, V_deg, V_cell, I_op, grid_co cluster_cycling = [0, *list(np.diff(self.cluster_status))] # no delay at beginning of sim cluster_cycling = np.array(cluster_cycling) startup_ratio = 1 - (600 / 3600) # TODO: don't have this hard-coded - h2_multiplier = np.where(cluster_cycling > 0, startup_ratio, 1) + production_multiplier = np.where(cluster_cycling > 0, startup_ratio, 1) _, rated_h2_pr_stack_BOL = self.rated_h2_prod() + rated_o2_pr_stack_BOL = self.rated_o2_prod() rated_h2_pr_sim = rated_h2_pr_stack_BOL * self.max_stacks * sim_length + rated_o2_pr_sim = rated_o2_pr_stack_BOL * self.max_stacks * sim_length kg_h2_pr_sim = np.zeros(int(self.plant_life_years)) + kg_o2_pr_sim = np.zeros(int(self.plant_life_years)) capfac_per_sim = np.zeros(int(self.plant_life_years)) + o2_capfac_per_sim = np.zeros(int(self.plant_life_years)) d_sim = np.zeros(int(self.plant_life_years)) power_pr_yr_kWh = np.zeros(int(self.plant_life_years)) Vdeg0 = 0 @@ -396,20 +412,28 @@ def make_yearly_performance_dict(self, power_in_kW, V_deg, V_cell, I_op, grid_co power_in_kW, V_cell, V_deg_pr_sim ) h2_kg_hr_system_init = self.h2_production_rate(stack_current, self.n_stacks_op) + o2_kg_hr_system_init = self.o2_production_rate(stack_current, self.n_stacks_op) # total_sim_input_power = self.max_stacks*np.sum(power_in_kW) power_pr_yr_kWh[i] = self.max_stacks * np.sum(power_in_kW) else: h2_kg_hr_system_init = self.h2_production_rate(I_op, self.n_stacks_op) h2_kg_hr_system_init = h2_kg_hr_system_init * np.ones(len(power_in_kW)) + + o2_kg_hr_system_init = self.o2_production_rate(I_op, self.n_stacks_op) + o2_kg_hr_system_init = o2_kg_hr_system_init * np.ones(len(power_in_kW)) + annual_power_consumed_kWh = ( self.max_stacks * I_op * (V_cell + V_deg_pr_sim) * self.N_cells / 1000 ) # total_sim_input_power = np.sum(annual_power_consumed_kWh) power_pr_yr_kWh[i] = np.sum(annual_power_consumed_kWh) - h2_kg_hr_system = h2_kg_hr_system_init * h2_multiplier + h2_kg_hr_system = h2_kg_hr_system_init * production_multiplier + o2_kg_hr_system = o2_kg_hr_system_init * production_multiplier + kg_o2_pr_sim[i] = np.sum(o2_kg_hr_system) kg_h2_pr_sim[i] = np.sum(h2_kg_hr_system) capfac_per_sim[i] = np.sum(h2_kg_hr_system) / rated_h2_pr_sim + o2_capfac_per_sim[i] = np.sum(o2_kg_hr_system) / rated_o2_pr_sim d_sim[i] = V_deg_pr_sim[sim_length - 1] Vdeg0 = V_deg_pr_sim[sim_length - 1] performance_by_year = {} @@ -427,7 +451,8 @@ def make_yearly_performance_dict(self, power_in_kW, V_deg, V_cell, I_op, grid_co zip(year, self.eta_h2_hhv / (power_pr_yr_kWh / kg_h2_pr_sim)) ) performance_by_year["Annual Energy Used [kWh/year]"] = dict(zip(year, power_pr_yr_kWh)) - + performance_by_year["Annual O2 Production [kg/year]"] = dict(zip(year, kg_o2_pr_sim)) + performance_by_year["O2 Capacity Factor [-]"] = dict(zip(year, o2_capfac_per_sim)) return performance_by_year def reset_uptime_degradation_rate(self, uptime_hours_until_eol): @@ -606,6 +631,22 @@ def rated_h2_prod(self): max_h2_stack_kg = self.h2_production_rate(I_max, 1) return P_consumed_stack_kw, max_h2_stack_kg + def rated_o2_prod(self): + """Calculates the oxygen production per stack at the rated current in kg + + Returns: + float: rated oxygen production in kg/dt + """ + i = self.output_dict["BOL Efficiency Curve Info"].index[ + self.output_dict["BOL Efficiency Curve Info"]["Power Sent [kWh]"] + == self.stack_rating_kW + ] + I_max = self.output_dict["BOL Efficiency Curve Info"]["Current"].iloc[i].values[0] + # I_max = calc_current((self.stack_rating_kW,self.T_C),*self.curve_coeff) + + max_o2_stack_kg = self.o2_production_rate(I_max, 1) + return max_o2_stack_kg + def external_power_supply(self, input_external_power_kw): """ External power source (grid or REG) which will need to be stepped @@ -892,6 +933,33 @@ def h2_production_rate(self, stack_current, n_stacks_op): return h2_produced_kg_hr_system + def o2_production_rate(self, stack_current, n_stacks_op): + """Calculate the oxygen production rate of the cluster without warm-up losses. + These equations are based on Faraday's law: + + O2 [mol/sec] = eta_F*(n_cells*I)/(4F) + + where eta_F is the faradaic efficiency. This can be found in Equation 12 of + `Simple PEM water electrolyser model and experimental validation `_. + + Args: + stack_current (float | np.array): current of the stack in A + n_stacks_op (int | np.array[int]): number of stacks that are operating in the stack. + + Returns: + float | np.array: oxygen production profile of the cluster in kg/dt + """ + # Calculate the faradaic efficiency + n_Tot = self.faradaic_efficiency(stack_current) + # Faraday's law + o2_production_rate = n_Tot * ((self.N_cells * stack_current) / (4 * self.F)) # mol/s + # O2_MW is in g/mol + # mol/s * g/mol = g/s + o2_production_rate_g_s = o2_production_rate * O2_MW + o2_produced_kg_dt = o2_production_rate_g_s * self.dt / 1000 + o2_produced_kg_dt_system = o2_produced_kg_dt * n_stacks_op + return o2_produced_kg_dt_system + def water_supply(self, h2_kg_hr): """ Calculate water supply rate based system efficiency and H2 production @@ -920,7 +988,7 @@ def run_grid_connected_workaround(self, power_input_signal, current_signal): cluster_cycling = np.array(cluster_cycling) power_per_stack = np.where(self.n_stacks_op > 0, power_input_signal / self.n_stacks_op, 0) - h2_multiplier = np.where(cluster_cycling > 0, startup_ratio, 1) + production_multiplier = np.where(cluster_cycling > 0, startup_ratio, 1) self.n_stacks_op = self.max_stacks * self.cluster_status V_init = self.cell_design(self.T_C, current_signal) @@ -936,7 +1004,9 @@ def run_grid_connected_workaround(self, power_input_signal, current_signal): h2_kg_hr_system_init = self.h2_production_rate(current_signal, self.n_stacks_op) p_consumed_max, rated_h2_hr = self.rated_h2_prod() - h2_kg_hr_system = h2_kg_hr_system_init * h2_multiplier # scales h2 production to account + h2_kg_hr_system = ( + h2_kg_hr_system_init * production_multiplier + ) # scales h2 production to account # for start-up time if going from off->on h20_gal_used_system = self.water_supply(h2_kg_hr_system) diff --git a/h2integrate/converters/hydrogen/pem_model/run_h2_PEM.py b/h2integrate/converters/hydrogen/pem_model/run_h2_PEM.py index e44ef7ff3..c62c5f200 100644 --- a/h2integrate/converters/hydrogen/pem_model/run_h2_PEM.py +++ b/h2integrate/converters/hydrogen/pem_model/run_h2_PEM.py @@ -13,6 +13,8 @@ def clean_up_final_outputs(h2_tot, h2_ts): "Cluster Rated H2 Production [kg/yr]", "Stack Rated H2 Production [kg/hr]", "Stack Rated Power Consumed [kWh]", + "Cluster Rated O2 Production [kg/hr]", + "Cluster Rated O2 Production [kg/yr]", ] ) h2_ts.sum(axis=1) @@ -21,6 +23,7 @@ def clean_up_final_outputs(h2_tot, h2_ts): "Power Consumed [kWh]", "hydrogen production no start-up time", "hydrogen_hourly_production", + "oxygen_hourly_production", "water_hourly_usage_kg", ] @@ -89,6 +92,7 @@ def run_h2_PEM( # time-series info (unchanged) energy_input_to_electrolyzer = h2_ts.loc["Input Power [kWh]"].sum() hydrogen_hourly_production = h2_ts.loc["hydrogen_hourly_production"].sum() + oxygen_hourly_production = h2_ts.loc["oxygen_hourly_production"].sum() hourly_system_electrical_usage = h2_ts.loc["Power Consumed [kWh]"].sum() water_hourly_usage = h2_ts.loc["water_hourly_usage_kg"].sum() avg_eff_perc = eta_h2_hhv * hydrogen_hourly_production / hourly_system_electrical_usage @@ -102,6 +106,7 @@ def run_h2_PEM( # Beginning of Life (BOL) Rated Specs (attributes/system design) max_h2_pr_hr = h2_tot.loc["Cluster Rated H2 Production [kg/hr]"].sum() + max_o2_pr_hr = h2_tot.loc["Cluster Rated O2 Production [kg/hr]"].sum() max_pwr_pr_hr = h2_tot.loc["Cluster Rated Power Consumed [kWh]"].sum() rated_kWh_pr_kg = h2_tot.loc["Stack Rated Efficiency [kWh/kg]"].mean() elec_rated_h2_capacity_kgpy = h2_tot.loc["Cluster Rated H2 Production [kg/yr]"].sum() @@ -110,6 +115,7 @@ def run_h2_PEM( atrribute_desc = [ "Efficiency [kWh/kg]", "H2 Production [kg/hr]", + "O2 Production [kg/hr]", "Power Consumed [kWh]", "Annual H2 Production [kg/year]", "Gal H2O per kg-H2", @@ -118,6 +124,7 @@ def run_h2_PEM( attributes = [ rated_kWh_pr_kg, max_h2_pr_hr, + max_o2_pr_hr, max_pwr_pr_hr, elec_rated_h2_capacity_kgpy, gal_h20_pr_kg_h2, @@ -188,6 +195,7 @@ def run_h2_PEM( H2_Results.update(dict(zip(life_desc, life_vals))) H2_Results.update({"Performance Schedules": pd.DataFrame(annual_avg_performance)}) H2_Results.update({"Hydrogen Hourly Production [kg/hr]": hydrogen_hourly_production}) + H2_Results.update({"Oxygen Hourly Production [kg/hr]": oxygen_hourly_production}) H2_Results.update({"Water Hourly Consumption [kg/hr]": water_hourly_usage}) if not debug_mode: diff --git a/h2integrate/converters/hydrogen/singlitico_cost_model.py b/h2integrate/converters/hydrogen/singlitico_cost_model.py index 8c36a7d9d..19b5642e7 100644 --- a/h2integrate/converters/hydrogen/singlitico_cost_model.py +++ b/h2integrate/converters/hydrogen/singlitico_cost_model.py @@ -29,6 +29,11 @@ class SingliticoCostModel(ElectrolyzerCostBaseClass): An OpenMDAO component that computes the cost of a PEM electrolyzer. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = SingliticoCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/hydrogen/steam_methane_reformer.py b/h2integrate/converters/hydrogen/steam_methane_reformer.py index 18b8fa287..104478dc8 100644 --- a/h2integrate/converters/hydrogen/steam_methane_reformer.py +++ b/h2integrate/converters/hydrogen/steam_methane_reformer.py @@ -1,9 +1,9 @@ import numpy as np from attrs import field, define +from openmdao.utils import units from h2integrate.core.utilities import BaseConfig, merge_shared_inputs from h2integrate.core.validators import gt_zero, gte_zero -from h2integrate.tools.constants import HHV_H2_MJ_PER_KG from h2integrate.core.model_baseclasses import ( CostModelBaseClass, CostModelBaseConfig, @@ -44,6 +44,11 @@ class SteamMethaneReformerPerformanceModel(PerformanceModelBaseClass): unmet_hydrogen_demand (array): Unmet hydrogen demand in kg/h for each timestep """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "hydrogen" @@ -144,6 +149,14 @@ def setup(self): desc="Unmet hydrogen demand for SMR plant", ) + self.add_output( + "total_energy_conversion_ratio", + val=0.0, + shape=1, + units="kW*h/kg", + desc="Net energy conversion ratio", + ) + def compute(self, inputs, outputs): """ Compute hydrogen output from natural gas input. @@ -163,7 +176,7 @@ def compute(self, inputs, outputs): # calculate max input and output system_capacity_kg_per_hour = inputs["system_capacity"] * ( 1000 / 24 - ) # plant capacity in kg/h + ) # plant capacity in kg/h from tonnes per day natural_gas_usage_mmbtu_per_kg = inputs["natural_gas_usage_rate"] max_natural_gas_consumption = system_capacity_kg_per_hour * natural_gas_usage_mmbtu_per_kg electricity_usage_kWh_per_kg = inputs["electricity_usage_rate"] @@ -202,16 +215,22 @@ def compute(self, inputs, outputs): hydrogen_out = np.minimum.reduce([hydrogen_out_ng, hydrogen_out_elec]) outputs["hydrogen_out"] = hydrogen_out - outputs["natural_gas_consumed"] = natural_gas_consumed - outputs["electricity_consumed"] = electricity_consumed + outputs["natural_gas_consumed"] = hydrogen_out * natural_gas_usage_mmbtu_per_kg + outputs["electricity_consumed"] = hydrogen_out * electricity_usage_kWh_per_kg outputs["rated_hydrogen_production"] = system_capacity_kg_per_hour # kg/h - # Convert HHV of H2 from MJ/kg to kW*h/kg - hhv_h2_kWh_per_kg = HHV_H2_MJ_PER_KG / (3600.0 * 0.001) + # Convert natural gas usage from MMBtu/kg to kW*h/kg + energy_conversion_ratio_ng = units.convert_units( + inputs["natural_gas_usage_rate"], "MMBtu/kg", "kW*h/kg" + ) + total_energy_conversion_ratio = ( + energy_conversion_ratio_ng + inputs["electricity_usage_rate"] + ) + outputs["electrical_rated_hydrogen_production"] = ( - system_capacity_kg_per_hour * hhv_h2_kWh_per_kg - ) / 1000 # convert kg/h to MW using HHV of hydrogen + system_capacity_kg_per_hour * total_energy_conversion_ratio + ) / 1000 # convert kg/h to MW using energy conversion ratio max_production = system_capacity_kg_per_hour * len(hydrogen_out) * (self.dt / 3600) @@ -223,6 +242,7 @@ def compute(self, inputs, outputs): 1 / self.fraction_of_year_simulated ) outputs["unmet_hydrogen_demand"] = inputs["hydrogen_demand"] - hydrogen_out + outputs["total_energy_conversion_ratio"] = total_energy_conversion_ratio @define(kw_only=True) @@ -256,6 +276,11 @@ class SteamMethaneReformerCostModel(CostModelBaseClass): cost_year (int): Dollar year for the costs """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = SteamMethaneReformerCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), @@ -266,7 +291,6 @@ def setup(self): super().setup() - # Add inputs specific to the cost model with config values as defaults self.add_input( "annual_hydrogen_produced", val=0.0, @@ -274,12 +298,20 @@ def setup(self): units="kg/year", desc="Annual hydrogen output from performance model", ) + self.add_input( + "total_energy_conversion_ratio", + val=0.0, + units="(kW*h)/kg", + desc="Plant electricity usage rate in kWh/kg", + ) self.add_input( "electrical_rated_hydrogen_production", val=0.0, units="kW", desc="Electrical equivalent rated hydrogen production from performance model", ) + + # Add inputs specific to the cost model with config values as defaults self.add_input( "unit_capex", val=self.config.capex_per_kw, @@ -319,12 +351,9 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): hydrogen_out = inputs["annual_hydrogen_produced"] # kg/year annual profile - # Convert HHV of H2 from MJ/kg to kW*h/kg - hhv_h2_kWh_per_kg = HHV_H2_MJ_PER_KG / (3600.0 * 0.001) - - # Convert the variable O&M from USD/kWh to USD/kg using the HHV of H2 + # Convert the variable O&M from USD/kWh to USD/kg using the energy conversion ratio # USD/kW*h * kW*h/kg = USD/kg - variable_opex_per_kg = variable_opex_per_kwh * hhv_h2_kWh_per_kg + variable_opex_per_kg = variable_opex_per_kwh * inputs["total_energy_conversion_ratio"][0] # Calculate variable operating expenses over project life variable_om = variable_opex_per_kg * hydrogen_out diff --git a/h2integrate/converters/hydrogen/test/conftest.py b/h2integrate/converters/hydrogen/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/hydrogen/test/conftest.py +++ b/h2integrate/converters/hydrogen/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/hydrogen/test/test_basic_cost_model.py b/h2integrate/converters/hydrogen/test/test_basic_cost_model.py index c11cdb69b..bce2205ea 100644 --- a/h2integrate/converters/hydrogen/test/test_basic_cost_model.py +++ b/h2integrate/converters/hydrogen/test/test_basic_cost_model.py @@ -34,6 +34,7 @@ def _create_problem(self, location, electrolyzer_size_mw, electrical_generation_ "plant_life": self.useful_life, "simulation": { "n_timesteps": self.n_timesteps, + "dt": 3600, }, }, }, diff --git a/h2integrate/converters/hydrogen/test/test_custom_electrolyzer_cost_model.py b/h2integrate/converters/hydrogen/test/test_custom_electrolyzer_cost_model.py index 3a4771fd8..e4aa77f05 100644 --- a/h2integrate/converters/hydrogen/test/test_custom_electrolyzer_cost_model.py +++ b/h2integrate/converters/hydrogen/test/test_custom_electrolyzer_cost_model.py @@ -26,6 +26,7 @@ def test_custom_electrolyzer_cost_model(subtests): "plant_life": 30, "simulation": { "n_timesteps": 8760, # Default number of timesteps for the simulation + "dt": 3600, # Default time step length in seconds (1 hour) }, }, } diff --git a/h2integrate/converters/hydrogen/test/test_pem_electrolyzer_performance.py b/h2integrate/converters/hydrogen/test/test_pem_electrolyzer_performance.py index 081d39ae4..88a0cfdc0 100644 --- a/h2integrate/converters/hydrogen/test/test_pem_electrolyzer_performance.py +++ b/h2integrate/converters/hydrogen/test/test_pem_electrolyzer_performance.py @@ -129,3 +129,62 @@ def test_electrolyzer_outputs(tech_config, plant_config, subtests): assert prob.get_val("comp.operational_life", units="yr") == plant_life with subtests.test("replacement_schedule value"): assert np.any(prob.get_val("comp.replacement_schedule", units="unitless") == 0) + + +@pytest.mark.regression +def test_electrolyzer_results(tech_config, plant_config, subtests): + prob = om.Problem() + comp = ECOElectrolyzerPerformanceModel( + plant_config=plant_config, tech_config=tech_config, driver_config={} + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + prob.setup() + power_profile = np.full(8760, 32.0) + prob.set_val("comp.electricity_in", power_profile, units="MW") + + prob.run_model() + + with subtests.test("Total hydrogen produced"): + assert ( + pytest.approx(5297814.89908964, rel=1e-6) + == prob.get_val("comp.hydrogen_out", units="kg/h").sum() + ) + + with subtests.test("Total oxygen produced"): + assert ( + pytest.approx(42045916.90741967, rel=1e-6) + == prob.get_val("comp.oxygen_out", units="kg/h").sum() + ) + + with subtests.test("Year 0 capacity factor"): + assert ( + pytest.approx(77.10460139, rel=1e-6) + == prob.get_val("comp.capacity_factor", units="percent")[0] + ) + + with subtests.test("Rated H2 production"): + assert pytest.approx(784.3544735823235, rel=1e-6) == prob.get_val( + "comp.rated_hydrogen_production", units="kg/h" + ) + + with subtests.test("Rated O2 production"): + assert pytest.approx(6225.00099576, rel=1e-6) == prob.get_val( + "comp.rated_oxygen_production", units="kg/h" + ) + + with subtests.test("H2: CF*Rated = Annual"): + np.testing.assert_allclose( + prob.get_val("comp.rated_hydrogen_production", units="kg/h") + * prob.get_val("comp.capacity_factor", units="unitless") + * 8760, + prob.get_val("comp.annual_hydrogen_produced", units="kg/yr"), + rtol=1e-6, + ) + with subtests.test("O2: CF*Rated = Annual"): + np.testing.assert_allclose( + prob.get_val("comp.rated_oxygen_production", units="kg/h") + * prob.get_val("comp.capacity_factor", units="unitless") + * 8760, + prob.get_val("comp.annual_oxygen_produced", units="kg/yr"), + rtol=1e-6, + ) diff --git a/h2integrate/converters/hydrogen/test/test_singlitico_cost_model.py b/h2integrate/converters/hydrogen/test/test_singlitico_cost_model.py index 5fa41ab82..76b448726 100644 --- a/h2integrate/converters/hydrogen/test/test_singlitico_cost_model.py +++ b/h2integrate/converters/hydrogen/test/test_singlitico_cost_model.py @@ -38,6 +38,7 @@ def _create_problem(self, location): "plant_life": 30, "simulation": { "n_timesteps": 8760, + "dt": 3600, }, }, }, diff --git a/h2integrate/converters/hydrogen/test/test_steam_methane_reformer.py b/h2integrate/converters/hydrogen/test/test_steam_methane_reformer.py index a236f3218..3cdd6812e 100644 --- a/h2integrate/converters/hydrogen/test/test_steam_methane_reformer.py +++ b/h2integrate/converters/hydrogen/test/test_steam_methane_reformer.py @@ -178,7 +178,7 @@ def test_h2_smr_performance_outputs(plant_config, smr_performance_params, subtes pytest.approx( prob.get_val("comp.electrical_rated_hydrogen_production", units="MW"), rel=1e-6 ) - == 394.05555 + == 571.49645 ) with subtests.test("total_hydrogen_produced value"): assert ( @@ -231,15 +231,15 @@ def test_h2_smr_cost(smr_performance_params, smr_cost_params, plant_config, subt with subtests.test("capex value"): assert pytest.approx(prob.get_val("cost_comp.CapEx", units="USD"), rel=1e-6) == ( - 394.05555 * 1000.0 * 500.0 + 571.49645 * 1000.0 * 500.0 ) with subtests.test("opex value"): assert pytest.approx(prob.get_val("cost_comp.OpEx", units="USD/year"), rel=1e-6) == ( - 394.05555 * 1000.0 * 20.0 # fixed opex + 571.49645 * 1000.0 * 20.0 # fixed opex ) with subtests.test("var opex value"): assert pytest.approx(prob.get_val("cost_comp.VarOpEx", units="USD/year"), rel=1e-6) == ( - 3451926666.666666 * 0.05 # variable opex + 250315447.17 # variable opex ) diff --git a/h2integrate/converters/hydrogen/wombat_model.py b/h2integrate/converters/hydrogen/wombat_model.py index 84fdc04be..58edd06e8 100644 --- a/h2integrate/converters/hydrogen/wombat_model.py +++ b/h2integrate/converters/hydrogen/wombat_model.py @@ -35,6 +35,11 @@ class WOMBATElectrolyzerModel(ECOElectrolyzerPerformanceModel): lost due to operations and maintenance (O&M), and electrolyzer availability. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() self.config = WOMBATModelConfig.from_dict( diff --git a/h2integrate/converters/iron/humbert_ewin_perf.py b/h2integrate/converters/iron/humbert_ewin_perf.py index 7a8888933..1fc65f46d 100644 --- a/h2integrate/converters/iron/humbert_ewin_perf.py +++ b/h2integrate/converters/iron/humbert_ewin_perf.py @@ -75,6 +75,11 @@ class HumbertEwinPerformanceComponent(PerformanceModelBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.commodity = "sponge_iron" self.commodity_rate_units = "kg/h" diff --git a/h2integrate/converters/iron/humbert_stinn_ewin_cost.py b/h2integrate/converters/iron/humbert_stinn_ewin_cost.py index 374ee1732..6eabd529b 100644 --- a/h2integrate/converters/iron/humbert_stinn_ewin_cost.py +++ b/h2integrate/converters/iron/humbert_stinn_ewin_cost.py @@ -117,6 +117,11 @@ class HumbertStinnEwinCostComponent(CostModelBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) diff --git a/h2integrate/converters/iron/iron.py b/h2integrate/converters/iron/iron.py deleted file mode 100644 index 3f3ced9ec..000000000 --- a/h2integrate/converters/iron/iron.py +++ /dev/null @@ -1,366 +0,0 @@ -import copy -import importlib -from pathlib import Path -from dataclasses import field - -import pandas as pd -from attrs import define -from pandas import DataFrame - -from h2integrate.core.file_utils import load_yaml - - -# Get model locations loaded up to refer to -CD = Path(__file__).parent -model_locs_fp = CD / "model_locations.yaml" -model_locs = load_yaml(model_locs_fp) - - -@define(kw_only=True) -class IronPerformanceModelConfig: - """ - Configuration inputs for the iron performance model. - - Attributes: - product_selection (str): The particular iron product selected. - site (dict): Contains information on the site where iron is being reduced. - model (dict): Contains name of performance model and, if necessary, filepaths to - secure location passed from input if not part of public H2Integrate. - Also contains 'refit_coeffs' boolean to re-do - model coefficient curve fitting. - params (dict): The rest of the parameters for the performance model. - """ - - product_selection: str = "" - site: dict = field(default_factory=dict) - model: dict = field(default_factory=dict) - params: dict = field(default_factory=dict) - - def __attrs_post_init__(self): - if self.product_selection == "": - raise ValueError("Iron performance product_selection must be set.") - if self.site == {}: - raise ValueError("Iron performance site must be set.") - if self.model == {}: - raise ValueError("Iron performance model must be set.") - for fieldname in ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"]: - if fieldname not in self.model.keys(): - if fieldname != "refit_coeffs": - self.model[fieldname] = "" - else: - self.model[fieldname] = False - - -@define(kw_only=True) -class IronPerformanceModelOutputs: - """ - Outputs from the iron performance model. - - Attributes: - performances_df (DataFrame): Contains locations and modeled iron plant performance outputs. - """ - - performances_df: DataFrame = pd.DataFrame() - - def __attrs_post_init__(self): - if len(self.performances_df) == 0: - raise ValueError("No iron performance data has been calculated.") - - -def run_size_iron_plant_performance( - config: IronPerformanceModelConfig, -) -> IronPerformanceModelOutputs: - """ - Calculates either the annual iron production in metric tons based on plant capacity and - available hydrogen or the amount of required hydrogen based on a desired iron production. - - Args: - config (IronPerformanceModelConfig): - Configuration object containing all necessary parameters for the capacity sizing, - including capacity factor estimate and feedstock costs. - - Returns: - IronPerformanceModelOutputs: An object containing iron plant capacity in metric tons - per year and amount of hydrogen required in kilograms per year. - - """ - - perf_model = config.model["name"] - if config.model["model_fp"] == "": - config.model["model_fp"] = model_locs["performance"][perf_model]["model"] - if config.model["inputs_fp"] == "": - config.model["inputs_fp"] = model_locs["performance"][perf_model]["inputs"] - if config.model["coeffs_fp"] == "": - config.model["coeffs_fp"] = model_locs["performance"][perf_model]["coeffs"] - model = importlib.import_module(config.model["model_fp"]) - model_outputs = model.main(config) - performances_df = model_outputs - - return IronPerformanceModelOutputs(performances_df=performances_df) - - -@define(kw_only=True) -class IronCostModelConfig: - """ - Configuration inputs for the iron cost model. - - Attributes: - performance(IronPerformanceModelOutputs): Outputs from the performance model. - product_selection (str): The particular iron product selected. - site (dict): Contains information on the site where iron is being reduced. - model (dict): Contains name of cost model and, if necessary, filepaths to - secure location passed from input if not part of public H2Integrate. - Also contains 'refit_coeffs' boolean to re-do - model coefficient curve fitting. - params (dict): The rest of the parameters for the cost model. - """ - - performance: IronPerformanceModelOutputs - product_selection: str = "" - site: dict = field(default_factory=dict) - model: dict = field(default_factory=dict) - params: dict = field(default_factory=dict) - - def __attrs_post_init__(self): - if self.product_selection == "": - raise ValueError("Iron cost product_selection must be set.") - if self.site == {}: - raise ValueError("Iron cost site must be set.") - if self.model == {}: - raise ValueError("Iron cost model must be set.") - for fieldname in ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"]: - if fieldname not in self.model.keys(): - if fieldname != "refit_coeffs": - self.model[fieldname] = "" - else: - self.model[fieldname] = False - - -@define(kw_only=True) -class IronCostModelOutputs: - """ - Outputs from the iron cost model. - - Attributes: - costs_df (DataFrame): Contains locations and modeled iron plant cost outputs. - """ - - costs_df: DataFrame = pd.DataFrame() - - def __attrs_post_init__(self): - if len(self.costs_df) == 0: - raise ValueError("No iron performance data has been calculated.") - - -def run_iron_cost_model(config: IronCostModelConfig) -> IronCostModelOutputs: - """ - Calculates the capital expenditure (CapEx) and operating expenditure (OpEx) for - a iron manufacturing plant based on the provided configuration. - - Args: - config (IronCostModelConfig): - Configuration object containing all necessary parameters for the cost - model, including plant capacity, feedstock costs, and integration options - for oxygen and heat. - - Returns: - IronCostModelOutputs: An object containing detailed breakdowns of capital and - operating costs, as well as total plant cost and other financial metrics. - - Note: - The calculation includes various cost components such as electric arc furnace - (EAF) casting, shaft furnace, oxygen supply, hydrogen preheating, cooling tower, - and more, adjusted based on the Chemical Engineering Plant Cost Index (CEPCI). - """ - # If cost model name is "placeholder", use the code that was copied over from Green Steel - cost_model = config.model["name"] - if config.model["model_fp"] == "": - config.model["model_fp"] = model_locs["cost"][cost_model]["model"] - if config.model["inputs_fp"] == "": - config.model["inputs_fp"] = model_locs["cost"][cost_model]["inputs"] - if config.model["coeffs_fp"] == "": - config.model["coeffs_fp"] = model_locs["cost"][cost_model]["coeffs"] - model = importlib.import_module(config.model["model_fp"]) - model_outputs = model.main(config) - - return IronCostModelOutputs(costs_df=model_outputs) - - -@define(kw_only=True) -class IronFinanceModelConfig(IronCostModelConfig): - """ - Configuration inputs for the iron finance model. - - Attributes: - cost(IronCostModelOutputs): Outputs from the cost model. - performance(IronPerformanceModelOutputs): Outputs from the performance model. - product_selection (str): The particular iron product selected. - site (dict): Contains information on the site where iron is being reduced. - model (dict): Contains name of finance model and, if necessary, filepaths to - secure location passed from input if not part of public H2Integrate. - Also contains 'refit_coeffs' boolean to re-do - model coefficient curve fitting. - params (dict): The rest of the parameters for the finance model. - pf (dict): Optional dictionary of the ProFAST object. - """ - - cost: IronCostModelOutputs - performance: IronPerformanceModelOutputs - product_selection: str = "" - site: dict = field(default_factory=dict) - model: dict = field(default_factory=dict) - params: dict = field(default_factory=dict) - pf: dict | None = field(init=False) - - def __attrs_post_init__(self): - if self.product_selection == "": - raise ValueError("Iron finance product_selection must be set.") - if self.site == {}: - raise ValueError("Iron finance site must be set.") - if self.model == {}: - raise ValueError("Iron finance model must be set.") - for fieldname in ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"]: - if fieldname not in self.model.keys(): - if fieldname != "refit_coeffs": - self.model[fieldname] = "" - else: - self.model[fieldname] = False - - -@define(kw_only=True) -class IronFinanceModelOutputs: - """ - Represents the outputs of the iron finance model, encapsulating the - results of financial analysis for iron production. - - Attributes: - sol (dict): - A dictionary containing the solution to the financial model, including key - financial indicators such as NPV (Net Present Value), IRR (Internal Rate of - Return), and breakeven price. - summary (dict): - A summary of key results from the financial analysis, providing a - high-level overview of financial metrics and performance indicators. - price_breakdown (pd.DataFrame): - A Pandas DataFrame detailing the cost breakdown for producing iron, - including both capital and operating expenses, as well as the impact of - various cost factors on the overall price of iron. - pf (object): - ProFAST object. - """ - - sol: dict - summary: dict - price_breakdown: pd.DataFrame - pf: object - - -def run_iron_finance_model( - config: IronFinanceModelConfig, -) -> IronFinanceModelOutputs: - """ - Executes the financial model for iron production, calculating the breakeven price - of iron and other financial metrics based on the provided configuration and cost - models. - - This function integrates various cost components, including capital expenditures - (CapEx), operating expenses (OpEx), and owner's costs. It leverages the ProFAST - financial analysis software framework. - - Args: - config (IronFinanceModelConfig): - Configuration object containing all necessary parameters and assumptions - for the financial model, including plant characteristics, cost inputs, - financial assumptions, and grid prices. - - Returns: - IronFinanceModelOutputs: - Object containing detailed financial analysis results, including solution - metrics, summary values, price breakdown, iron price breakdown per - tonne, and the ProFAST object. This output is instrumental in assessing the - financial performance and breakeven price for the iron production facility. - """ - - finance_model = config.model["name"] - if config.model["model_fp"] == "": - config.model["model_fp"] = model_locs["finance"][finance_model]["model"] - model = importlib.import_module(config.model["model_fp"]) - model_outputs = model.main(config) - - sol, summary, price_breakdown, pf = model_outputs - return IronFinanceModelOutputs(sol=sol, summary=summary, price_breakdown=price_breakdown, pf=pf) - - -def run_iron_full_model( - h2integrate_config: dict, -) -> tuple[IronPerformanceModelOutputs, IronCostModelOutputs, IronFinanceModelOutputs]: - """ - Runs the full iron model, including capacity (performance), cost, and finance models. - - Args: - h2integrate_config (dict): The configuration for the h2integrate model. - - Returns: - Tuple[IronPerformanceModelOutputs, IronCostModelOutputs, IronFinanceModelOutputs]: - A tuple containing the outputs of the iron capacity, cost, and finance models. - """ - # this is likely to change as we refactor to use config dataclasses, but for now - # we'll just copy the config and modify it as needed - iron_config = copy.deepcopy(h2integrate_config["iron"]) - - if iron_config["costs"]["lcoh"] != iron_config["finances"]["lcoh"]: - raise ( - ValueError( - "iron cost LCOH and iron finance LCOH are not equal. \ - You must specify both values or neither. \ - If neither is specified, LCOH will be calculated." - ) - ) - iron_product_selection = iron_config["product_selection"] - iron_site = iron_config["site"] - - iron_performance_inputs = iron_config["performance"] - performance_model = iron_config["performance_model"] - - iron_cost_inputs = iron_performance_inputs | iron_config["costs"] - cost_model = iron_config["cost_model"] - - iron_finance_inputs = iron_cost_inputs | iron_config["finances"] - finance_model = iron_config["finance_model"] - - iron_finance_inputs["operational_year"] = iron_cost_inputs["operational_year"] - iron_finance_inputs["installation_years"] = iron_cost_inputs["installation_years"] - iron_finance_inputs["plant_life"] = iron_cost_inputs["plant_life"] - iron_finance_inputs["cost_year"] = h2integrate_config["project_parameters"]["cost_year"] - - # run iron performance model to get iron plant size - performance_config = IronPerformanceModelConfig( - product_selection=iron_product_selection, - site=iron_site, - model=performance_model, - params=iron_performance_inputs, - ) - iron_performance = run_size_iron_plant_performance(performance_config) - - # run iron cost model to get iron plant costs - cost_config = IronCostModelConfig( - product_selection=iron_product_selection, - site=iron_site, - model=cost_model, - params=iron_cost_inputs, - performance=iron_performance, - ) - iron_cost = run_iron_cost_model(cost_config) - - # run iron finance model to get iron plant finances - finance_config = IronFinanceModelConfig( - product_selection=iron_product_selection, - site=iron_site, - model=finance_model, - params=iron_finance_inputs, - performance=iron_performance, - cost=iron_cost, - ) - iron_finance = run_iron_finance_model(finance_config) - - return (iron_performance, iron_cost, iron_finance) diff --git a/h2integrate/converters/iron/iron_dri_base.py b/h2integrate/converters/iron/iron_dri_base.py index bc7d9f26d..a24d9636d 100644 --- a/h2integrate/converters/iron/iron_dri_base.py +++ b/h2integrate/converters/iron/iron_dri_base.py @@ -30,6 +30,11 @@ class IronReductionPerformanceBaseConfig(BaseConfig): class IronReductionPlantBasePerformanceComponent(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "pig_iron" @@ -295,6 +300,11 @@ class IronReductionPlantBaseCostComponent(CostModelBaseClass): steel_to_iron_ratio (float): steel/pig iron ratio """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] @@ -327,7 +337,7 @@ def setup(self): self.config = IronReductionCostBaseConfig.from_dict( config_dict, - strict=False, + strict=True, additional_cls_name=self.__class__.__name__, ) diff --git a/h2integrate/converters/iron/iron_dri_plant.py b/h2integrate/converters/iron/iron_dri_plant.py index 25a631ff9..a1d5e551d 100644 --- a/h2integrate/converters/iron/iron_dri_plant.py +++ b/h2integrate/converters/iron/iron_dri_plant.py @@ -15,6 +15,11 @@ class HydrogenIronReductionPlantCostComponent(IronReductionPlantBaseCostComponen steel_to_iron_ratio (float): steel/pig iron ratio """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.product = "h2_dri" super().setup() @@ -31,6 +36,11 @@ class NaturalGasIronReductionPlantCostComponent(IronReductionPlantBaseCostCompon steel_to_iron_ratio (float): steel/pig iron ratio """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.product = "ng_dri" super().setup() @@ -47,6 +57,11 @@ class HydrogenIronReductionPlantPerformanceComponent(IronReductionPlantBasePerfo steel_to_iron_ratio (float): steel/pig iron ratio """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.product = "h2_dri" self.feedstocks_to_units = { @@ -70,6 +85,11 @@ class NaturalGasIronReductionPlantPerformanceComponent(IronReductionPlantBasePer steel_to_iron_ratio (float): steel/pig iron ratio """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.feedstocks_to_units = { "natural_gas": "MMBtu/h", diff --git a/h2integrate/converters/iron/iron_mine.py b/h2integrate/converters/iron/iron_mine.py deleted file mode 100644 index 336527290..000000000 --- a/h2integrate/converters/iron/iron_mine.py +++ /dev/null @@ -1,238 +0,0 @@ -import numpy as np -import pandas as pd -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import contains, range_val -from h2integrate.converters.iron.iron import ( - IronCostModelConfig, - IronPerformanceModelConfig, - IronPerformanceModelOutputs, - run_iron_cost_model, - run_size_iron_plant_performance, -) -from h2integrate.core.model_baseclasses import CostModelBaseClass -from h2integrate.tools.inflation.inflate import inflate_cpi -from h2integrate.converters.iron.martin_ore.variable_om_cost import martin_ore_variable_om_cost -from h2integrate.converters.iron.rosner_ore.variable_om_cost import rosner_ore_variable_om_cost - - -@define(kw_only=True) -class IronMineBaseConfig(BaseConfig): - mine: str = field(validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"])) - - # product_selection - taconite_pellet_type: str = field( - converter=(str.lower, str.strip), validator=contains(["std", "drg"]) - ) - - model_name: str = field(default="martine_ore") # only option at the moment - model_fp: str = field(default="") - inputs_fp: str = field(default="") - coeffs_fp: str = field(default="") - refit_coeffs: bool = field(default=False) - - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - def make_site_dict(self): - return {"name": self.mine} - - -@define(kw_only=True) -class IronMinePerformanceConfig(IronMineBaseConfig): - ore_cf_estimate: float = field(default=0.9, validator=range_val(0, 1)) # ore - - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - -class IronMinePerformanceComponent(om.ExplicitComponent): - def initialize(self): - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - self.config = IronMinePerformanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, - additional_cls_name=self.__class__.__name__, - ) - self.add_discrete_output( - "iron_mine_performance", val=pd.DataFrame(), desc="iron mine performance results" - ) - self.add_output("iron_ore_out", val=0.0, shape=n_timesteps, units="kg/h") - self.add_output("total_iron_ore_produced", val=0.0, units="t/year") - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - ore_performance_inputs = {"input_capacity_factor_estimate": self.config.ore_cf_estimate} - ore_model_inputs = self.config.make_model_dict() - iron_mine_site = self.config.make_site_dict() - performance_config = IronPerformanceModelConfig( - product_selection=f"{self.config.taconite_pellet_type}_taconite_pellets", - site=iron_mine_site, - model=ore_model_inputs, - params=ore_performance_inputs, - ) - iron_mine_performance = run_size_iron_plant_performance(performance_config) - # wltpy = wet long tons per year - ore_produced_wltpy = iron_mine_performance.performances_df.set_index("Name").loc[ - "Ore pellets produced" - ][self.config.mine] - ore_produced_wmtpy = ore_produced_wltpy * 1.016047 # wmtpy = wet metric tonnes per year - ore_produced_mtpy = ore_produced_wmtpy * 0.98 # mtpy = dry metric tonnes per year - discrete_outputs["iron_mine_performance"] = iron_mine_performance.performances_df - outputs["iron_ore_out"] = ore_produced_mtpy * 1000 / n_timesteps - outputs["total_iron_ore_produced"] = ore_produced_mtpy - - -@define(kw_only=True) -class IronMineCostConfig(IronMineBaseConfig): - LCOE: float = field(kw_only=True) # $/MWh - LCOH: float = field(kw_only=True) # $/kg - varom_model_name: str = field( - default="martin_ore", validator=contains(["martin_ore", "rosner_ore"]) - ) - operational_year: int = field(converter=int, kw_only=True) - installation_years: int | float = field(kw_only=True) - plant_life: int = field(converter=int, kw_only=True) - cost_year: int = field(converter=int, kw_only=True) - - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - def make_cost_dict(self): - keys = ["operational_year", "installation_years", "plant_life"] - d = self.as_dict() - cost_dict = {k: v for k, v in d.items() if k in keys} - return cost_dict - - -class IronMineCostComponent(CostModelBaseClass): - def setup(self): - self.target_dollar_year = self.options["plant_config"]["finance_parameters"][ - "cost_adjustment_parameters" - ]["target_dollar_year"] - self.plant_life = self.options["plant_config"]["plant"]["plant_life"] - - config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") - config_dict.update({"cost_year": self.target_dollar_year}) - config_dict.update({"plant_life": self.plant_life}) - - self.config = IronMineCostConfig.from_dict( - config_dict, - strict=False, - additional_cls_name=self.__class__.__name__, - ) - - super().setup() - self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") - self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") - self.add_input("total_iron_ore_produced", val=1.0, units="t/year") - self.add_discrete_input( - "iron_mine_performance", val=pd.DataFrame(), desc="iron mine performance results" - ) - self.add_discrete_output( - "iron_mine_cost", val=pd.DataFrame(), desc="iron mine cost results" - ) - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - ore_performance = IronPerformanceModelOutputs( - performances_df=discrete_inputs["iron_mine_performance"] - ) - - ore_cost_inputs = { - "lcoe": inputs["LCOE"][0] / 1e3, - "lcoh": inputs["LCOH"][0], - } - cost_dict = self.config.make_cost_dict() - ore_cost_inputs.update(cost_dict) - - ore_model_inputs = self.config.make_model_dict() - iron_mine_site = self.config.make_site_dict() - cost_config = IronCostModelConfig( - product_selection=f"{self.config.taconite_pellet_type}_taconite_pellets", - site=iron_mine_site, - model=ore_model_inputs, - params=ore_cost_inputs, - performance=ore_performance, - ) - iron_ore_cost = run_iron_cost_model(cost_config) - - discrete_outputs["iron_mine_cost"] = iron_ore_cost.costs_df - - # Now taking some stuff from finance - cost_df = iron_ore_cost.costs_df.set_index("Name") - cost_ds = cost_df.loc[:, self.config.mine] - cost_names = cost_df.index.values - cost_types = cost_df.loc[:, "Type"].values - cost_units = cost_df.loc[:, "Unit"].values - - capex = 0 - fixed_om = 0 - variable_om = 0 - capital_idxs = np.where(cost_types == "capital")[0] - for idx in capital_idxs: - cost_names[idx] - unit = cost_units[idx] # Units for capital costs should be " $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, self.config.cost_year) - capex += cost - - # Add fixed opex costs - fixed_idxs = np.where(cost_types == "fixed opex")[0] - for idx in fixed_idxs: - cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - fixed_cost = inflate_cpi(source_year_cost, source_year, self.config.cost_year) - fixed_om += fixed_cost - # NOTE: why are we double counting this cost? - fixed_om * 6 / 12 # TODO: output installation cost? - - var_idxs = np.where(cost_types == "variable opex")[0] - for idx in var_idxs: - unit = cost_units[idx] # Should be " $ per " - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, self.config.cost_year) - variable_om += cost - - analysis_start = self.config.operational_year - self.config.installation_years - var_om_td = 0 - # below is for rosner finance model - if "rosner" in self.config.varom_model_name: - var_om_td = rosner_ore_variable_om_cost( - self.config.mine, cost_df, analysis_start, self.config.cost_year, self.plant_life - ) - else: - var_om_td = martin_ore_variable_om_cost( - self.config.mine, cost_df, analysis_start, self.config.cost_year, self.plant_life - ) - - variable_om += var_om_td - - total_production = inputs["total_iron_ore_produced"] - variable_om = np.multiply(total_production, variable_om) - - outputs["CapEx"] = capex - outputs["OpEx"] = fixed_om - outputs["VarOpEx"] = variable_om diff --git a/h2integrate/converters/iron/iron_plant.py b/h2integrate/converters/iron/iron_plant.py deleted file mode 100644 index 79339af4b..000000000 --- a/h2integrate/converters/iron/iron_plant.py +++ /dev/null @@ -1,288 +0,0 @@ -import numpy as np -import pandas as pd -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import contains -from h2integrate.converters.iron.iron import ( - IronCostModelConfig, - IronPerformanceModelConfig, - IronPerformanceModelOutputs, - run_iron_cost_model, - run_size_iron_plant_performance, -) -from h2integrate.core.model_baseclasses import CostModelBaseClass -from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci -from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs - - -@define(kw_only=True) -class IronPlantBaseConfig(BaseConfig): - winning_type: str = field( - kw_only=True, converter=(str.lower, str.strip), validator=contains(["h2", "ng"]) - ) # product selection - iron_win_capacity: float | int = field(default=1418095) # plant_capacity_mtpy - win_capacity_demon: str = field( - default="iron", converter=(str.lower, str.strip), validator=contains(["iron", "steel"]) - ) # capacity_denominator - - model_name: str = field(default="rosner") # only option at the moment - model_fp: str = field(default="") - inputs_fp: str = field(default="") - coeffs_fp: str = field(default="") - refit_coeffs: bool = field(default=False) - site_name: str = field(default="winning_site") - - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - def make_site_dict(self): - return {"name": self.site_name} - - -@define(kw_only=True) -class IronPlantPerformanceConfig(IronPlantBaseConfig): - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - -class IronPlantPerformanceComponent(om.ExplicitComponent): - def initialize(self): - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - self.config = IronPlantPerformanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, - additional_cls_name=self.__class__.__name__, - ) - self.add_input("iron_ore_in", val=0.0, shape=n_timesteps, units="t/h") - self.add_discrete_output( - "iron_plant_performance", val=pd.DataFrame(), desc="iron plant performance results" - ) - self.add_output("pig_iron_out", val=0.0, shape=n_timesteps, units="kg/h") - self.add_output("total_pig_iron_produced", val=0.0, units="t/year") - # self.add_output("total_steel_produced", val=0.0, units="t/year") - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - iron_plant_performance_inputs = { - "plant_capacity_mtpy": self.config.iron_win_capacity, - "capacity_denominator": self.config.win_capacity_demon, - } - iron_plant_model_inputs = self.config.make_model_dict() - iron_plant_site = self.config.make_site_dict() - performance_config = IronPerformanceModelConfig( - product_selection=f"{self.config.winning_type}_dri", - site=iron_plant_site, - model=iron_plant_model_inputs, - params=iron_plant_performance_inputs, - ) - iron_plant_performance = run_size_iron_plant_performance(performance_config) - # wltpy = wet long tons per year - pig_iron_produced_mtpy = iron_plant_performance.performances_df.set_index("Name").loc[ - "Pig Iron Production" - ]["Model"] - outputs["pig_iron_out"] = pig_iron_produced_mtpy * 1000 / n_timesteps - outputs["total_pig_iron_produced"] = pig_iron_produced_mtpy - discrete_outputs["iron_plant_performance"] = iron_plant_performance.performances_df - - -@define(kw_only=True) -class IronPlantCostConfig(IronPlantBaseConfig): - LCOE: float = field(kw_only=True) # $/MWh - LCOH: float = field(kw_only=True) # $/kg - LCOI_ore: float = field(kw_only=True) - iron_transport_cost: float = field(kw_only=True) - ore_profit_pct: float = field(kw_only=True) - - # varom_model_name is unused at the moment - varom_model_name: str = field( - default="rosner", validator=contains(["rosner", "rosner_override"]) - ) - operational_year: int = field(converter=int, kw_only=True) - installation_years: int | float = field(kw_only=True) - plant_life: int = field(converter=int, kw_only=True) - cost_year: int = field(converter=int, kw_only=True) - - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - def make_cost_dict(self): - keys = ["operational_year", "installation_years", "plant_life"] - d = self.as_dict() - cost_dict = {k: v for k, v in d.items() if k in keys} - return cost_dict - - -class IronPlantCostComponent(CostModelBaseClass): - def setup(self): - self.target_dollar_year = self.options["plant_config"]["finance_parameters"][ - "cost_adjustment_parameters" - ]["target_dollar_year"] - self.plant_life = self.options["plant_config"]["plant"]["plant_life"] - - config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") - config_dict.update({"cost_year": self.target_dollar_year}) - config_dict.update({"plant_life": self.plant_life}) - - self.config = IronPlantCostConfig.from_dict( - config_dict, - additional_cls_name=self.__class__.__name__, - ) - - super().setup() - self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") - self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") - self.add_input("price_iron_ore", val=self.config.LCOI_ore, units="USD/t") - self.add_input("iron_transport_cost", val=self.config.iron_transport_cost, units="USD/t") - self.add_input("ore_profit_pct", val=self.config.ore_profit_pct, units="USD/t") - self.add_input("total_pig_iron_produced", val=1.0, units="t/year") - self.add_discrete_input( - "iron_plant_performance", val=pd.DataFrame(), desc="iron plant performance results" - ) - self.add_discrete_output( - "iron_plant_cost", val=pd.DataFrame(), desc="iron plant cost results" - ) - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - iron_plant_performance = IronPerformanceModelOutputs( - performances_df=discrete_inputs["iron_plant_performance"] - ) - - iron_plant_cost_inputs = { - "lcoe": inputs["LCOE"][0] / 1e3, - "lcoh": inputs["LCOH"][0], - "lco_iron_ore_tonne": inputs["price_iron_ore"], - "iron_transport_tonne": inputs["iron_transport_cost"][0], - "plant_capacity_mtpy": self.config.iron_win_capacity, - "capacity_denominator": self.config.win_capacity_demon, - } - cost_dict = self.config.make_cost_dict() - iron_plant_cost_inputs.update(cost_dict) - - iron_plant_model_inputs = self.config.make_model_dict() - iron_ore_site = self.config.make_site_dict() - cost_config = IronCostModelConfig( - product_selection=f"{self.config.winning_type}_dri", - site=iron_ore_site, - model=iron_plant_model_inputs, - params=iron_plant_cost_inputs, - performance=iron_plant_performance, - ) - iron_plant_cost = run_iron_cost_model(cost_config) - - discrete_outputs["iron_plant_cost"] = iron_plant_cost.costs_df - - # Now taking some stuff from finance - cost_df = iron_plant_cost.costs_df.set_index("Name") - cost_ds = cost_df.loc[:, self.config.site_name] - - cost_names = cost_df.index.values - cost_types = cost_df.loc[:, "Type"].values - cost_units = cost_df.loc[:, "Unit"].values - - # add capital items - capex = 0 - fixed_om = 0 - variable_om = 0 - capital_idxs = np.where(cost_types == "capital")[0] - for idx in capital_idxs: - cost_names[idx] - unit = cost_units[idx] # Units for capital costs should be " $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - capex += inflate_cepci(source_year_cost, source_year, self.config.cost_year) - - # add fixed costs - fixed_idxs = np.where(cost_types == "fixed opex")[0] - for idx in fixed_idxs: - cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - fixed_om += inflate_cpi(source_year_cost, source_year, self.config.cost_year) - - # add feedstock costs - perf_df = iron_plant_performance.performances_df.set_index("Name") - perf_ds = perf_df.loc[:, "Model"] - - coeff_dict = load_top_down_coeffs( - [ - "Raw Water", - "Lime", - "Carbon", - "Slag Disposal", - "Hydrogen", - "Natural Gas", - "Electricity", - "Inflation Rate", - ] - ) - - years = list(coeff_dict["years"]) - analysis_start = self.config.operational_year - self.config.installation_years - start_idx = years.index(analysis_start) - if len(years) > (start_idx + self.config.plant_life + self.config.installation_years + 1): - end_idx = years.index( - analysis_start + self.config.plant_life + self.config.installation_years + 1 - ) - indices = list(np.arange(start_idx, end_idx)) - else: - end_idx = len(years) - 1 - indices = list(np.arange(start_idx, end_idx)) - repeats = ( - start_idx + self.config.plant_life + self.config.installation_years + 2 - len(years) - ) - for _i in range(repeats): - indices.append(end_idx) - - raw_water_unitcost_tonne = coeff_dict["Raw Water"]["values"][indices].astype(float) - lime_unitcost_tonne = coeff_dict["Lime"]["values"][indices].astype(float) - carbon_unitcost_tonne = coeff_dict["Carbon"]["values"][indices].astype(float) - slag_disposal_unitcost_tonne = coeff_dict["Slag Disposal"]["values"][indices].astype(float) - - # TODO: make natural gas costs an input - natural_gas_prices_MMBTU = coeff_dict["Natural Gas"]["values"][indices].astype(float) - natural_gas_prices_GJ = natural_gas_prices_MMBTU / 1.05506 # Convert to GJ - - iron_ore_pellet_unitcost_tonne = inputs["price_iron_ore"] - if inputs["iron_transport_cost"] > 0: - iron_transport_cost_tonne = inputs["iron_transport_cost"][0] - ore_profit_pct = inputs["ore_profit_pct"][0] - iron_ore_pellet_unitcost_tonne = ( - iron_ore_pellet_unitcost_tonne + iron_transport_cost_tonne - ) * (1 + ore_profit_pct / 100) - - v_start = years.index(self.config.operational_year) - years.index(analysis_start) + 1 - variable_om += perf_ds["Raw Water Withdrawal"] * raw_water_unitcost_tonne - variable_om += perf_ds["Lime"] * lime_unitcost_tonne - variable_om += perf_ds["Carbon (Coke)"] * carbon_unitcost_tonne - variable_om += perf_ds["Iron Ore"] * iron_ore_pellet_unitcost_tonne - variable_om += perf_ds["Hydrogen"] * inputs["LCOH"][0] * 1000 - variable_om += perf_ds["Natural Gas"] * natural_gas_prices_GJ - variable_om += perf_ds["Electricity"] * inputs["LCOE"][0] - variable_om += perf_ds["Slag"] * slag_disposal_unitcost_tonne - - total_production = inputs["total_pig_iron_produced"] - variable_om = np.multiply(total_production, variable_om) - - outputs["CapEx"] = capex - outputs["OpEx"] = fixed_om - outputs["VarOpEx"] = variable_om[v_start:] diff --git a/h2integrate/converters/iron/iron_transport.py b/h2integrate/converters/iron/iron_transport.py index 38b43699e..93223b453 100644 --- a/h2integrate/converters/iron/iron_transport.py +++ b/h2integrate/converters/iron/iron_transport.py @@ -29,6 +29,11 @@ def __attrs_post_init__(self): class IronTransportPerformanceComponent(om.ExplicitComponent): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) @@ -37,7 +42,7 @@ def initialize(self): def setup(self): self.config = IronTransportPerformanceConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, + strict=True, additional_cls_name=self.__class__.__name__, ) self.add_output("land_transport_distance", val=0.0, units="km") @@ -163,6 +168,11 @@ class IronTransportCostConfig(BaseConfig): class IronTransportCostComponent(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) diff --git a/h2integrate/converters/iron/iron_wrapper.py b/h2integrate/converters/iron/iron_wrapper.py deleted file mode 100644 index 59d87cf3f..000000000 --- a/h2integrate/converters/iron/iron_wrapper.py +++ /dev/null @@ -1,278 +0,0 @@ -import copy -from pathlib import Path - -from attrs import field, define -from hopp.utilities import load_yaml - -import h2integrate.tools.profast_tools as pf_tools -from h2integrate.core.utilities import merge_shared_inputs -from h2integrate.core.validators import contains, range_val -from h2integrate.converters.iron.iron import run_iron_full_model -from h2integrate.core.model_baseclasses import CostModelBaseClass, CostModelBaseConfig -from h2integrate.converters.iron.martin_transport.iron_transport import calc_iron_ship_cost - - -@define(kw_only=True) -class IronConfig(CostModelBaseConfig): - """Configuration class for IronComponent. - - Attributes: - LCOE (float): cost of electricity in USD/MW/h - LCOH (float): cost of hydrogen in USD/kg - ROM_iron_site_name (str): mine for Iron Ore. - Options are "Hibbing", "Northshore", "United", "Minorca" or "Tilden". - iron_ore_product_selection (str): iron ore pellet type. - Options are "drg_taconite_pellets" or "std_taconite_pellets". - reduced_iron_product_selection (str): material for iron electrowinning process. - Options are "h2_dri" or "ng_dri" - structural_iron_product_selection (str): iron processing method. - Options are "eaf_steel" or "none". - iron_capacity_denom (str): Capacity denominator to use in iron modeling. - Options are "iron" or "steel". - eaf_capacity (float, optional): Capacity of electric arc furnace in - metric tonnes of iron per year. Defaults to 1000000. - dri_capacity (float, optional): Capacity of direct reduced iron plant in - metric tonnes of iron per year. Defaults to 1418095. - iron_ore_cf_estimate (float, optional): Estimated capacity factor of iron ore mine. - Defaults to 0.9. Must be between 0 and 1. - - """ - - # Comments below denote which step each config variable applies to in run_iron_full_model - - LCOE: float = field() # $/MWh - LCOH: float = field() # $/kg - ROM_iron_site_name: str = field( - validator=contains(["Hibbing", "Northshore", "United", "Minorca", "Tilden"]) - ) # ore - iron_ore_product_selection: str = field( - converter=(str.lower, str.strip), - validator=contains(["drg_taconite_pellets", "std_taconite_pellets"]), - ) # ore - reduced_iron_site_latitude: float = field() - reduced_iron_site_longitude: float = field() - reduced_iron_product_selection: str = field( - converter=(str.lower, str.strip), validator=contains(["h2_dri", "ng_dri"]) - ) # win - structural_iron_product_selection: str = field( - converter=(str.lower, str.strip), validator=contains(["eaf_steel", "none"]) - ) # post - iron_capacity_denom: str = field( - default="iron", converter=(str.lower, str.strip), validator=contains(["iron", "steel"]) - ) # win - eaf_capacity: float | int = field(default=1000000) # post - dri_capacity: float | int = field(default=1418095) # win - iron_ore_cf_estimate: float = field(default=0.9, validator=range_val(0, 1)) # ore - transport_cost_included: bool = field(default=True) - ng_mod: bool = field(default=False) - ng_price: float = field(default=4.00) # $/MMBTU - capex_mod: bool = field(default=False) - capex_mod_pct: float = field(default=0.0) # Fraction of orignal capex value to modify by - - -class IronComponent(CostModelBaseClass): - """ - A simple OpenMDAO component that represents an Iron model from old GreenHEART code. - - This component uses caching to store and retrieve results of the iron model - based on the configuration. - """ - - def setup(self): - plant_life = self.options["plant_config"]["plant"]["plant_life"] - - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] - self.config = IronConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), - strict=False, - additional_cls_name=self.__class__.__name__, - ) - super().setup() - - CD = Path(__file__).parent - old_input_path = CD / "old_input" - h2i_config_old_fn = "h2integrate_config_modular.yaml" - self.h2i_config_old = load_yaml(old_input_path / h2i_config_old_fn) - - self.add_output("iron_out", val=0.0, shape=n_timesteps, units="kg/h") - - self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") - self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") - - self.add_output("annual_iron_produced", val=0.0, shape=plant_life, units="kg/year") - self.add_output("LCOI", val=0.0, units="USD/kg") - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - # Parse in values from config - mine_site = self.config.ROM_iron_site_name - ore_type = self.config.iron_ore_product_selection - red_site_lat = self.config.reduced_iron_site_latitude - red_site_lon = self.config.reduced_iron_site_longitude - red_iron_type = self.config.reduced_iron_product_selection - struct_iron_type = self.config.structural_iron_product_selection - denom = self.config.iron_capacity_denom - eaf_cap = self.config.eaf_capacity - dri_cap = self.config.dri_capacity - ore_cf = self.config.iron_ore_cf_estimate - trans_incl = self.config.transport_cost_included - ng_mod = self.config.ng_mod - ng_price = self.config.ng_price - capex_mod = self.config.capex_mod - capex_pct = self.config.capex_mod_pct - - # BELOW: Copy-pasted from ye olde h2integrate_simulation.py (the 1000+ line monster) - - iron_config = copy.deepcopy(self.h2i_config_old) - - # This is not the most graceful way to do this... but it avoids copied imports - # and copying iron.py - iron_ore_config = copy.deepcopy(iron_config) - iron_win_config = copy.deepcopy(iron_config) - iron_post_config = copy.deepcopy(iron_config) - - iron_ore_config["iron"] = iron_config["iron_ore"] - iron_win_config["iron"] = iron_config["iron_win"] - iron_post_config["iron"] = iron_config["iron_post"] - for sub_iron_config in [ - iron_ore_config, - iron_win_config, - iron_post_config, - ]: # ,iron_post_config]: # iron_pre_config, iron_post_config - sub_iron_config["iron"]["costs"]["lcoe"] = inputs["LCOE"][0] / 1e3 - sub_iron_config["iron"]["finances"]["lcoe"] = inputs["LCOE"][0] / 1e3 - sub_iron_config["iron"]["costs"]["lcoh"] = inputs["LCOH"][0] - sub_iron_config["iron"]["finances"]["lcoh"] = inputs["LCOH"][0] - - # Update ore config - iron_ore_config["iron"]["site"]["name"] = mine_site - iron_ore_config["iron"]["performance"]["input_capacity_factor_estimate"] = ore_cf - iron_ore_config["iron"]["product_selection"] = ore_type - - # Update win config - iron_win_config["iron"]["product_selection"] = red_iron_type - iron_win_config["iron"]["performance"]["plant_capacity_mtpy"] = dri_cap - iron_win_config["iron"]["site"]["lat"] = red_site_lat - iron_win_config["iron"]["site"]["lon"] = red_site_lon - - # Update post config - if struct_iron_type == "none": - iron_post_config["iron"]["product_selection"] = "none" - elif struct_iron_type == "eaf_steel": - if red_iron_type == "ng_dri": - iron_post_config["iron"]["product_selection"] = "ng_eaf" - elif red_iron_type == "h2_dri": - iron_post_config["iron"]["product_selection"] = "h2_eaf" - else: - msg = f"The EAF steel model cannot (yet) use {red_iron_type} as input" - raise NotImplementedError(msg) - iron_post_config["iron"]["performance"]["capacity_denominator"] = denom - iron_post_config["iron"]["performance"]["plant_capacity_mtpy"] = eaf_cap - - # Run iron model for iron ore - iron_ore_config["iron"]["finances"]["ng_mod"] = ng_mod - iron_ore_config["iron"]["finances"]["ng_price"] = ng_price - iron_ore_config["iron"]["costs"]["capex_mod"] = capex_mod - iron_ore_config["iron"]["costs"]["capex_pct"] = capex_pct - iron_ore_performance, iron_ore_costs, iron_ore_finance = run_iron_full_model( - iron_ore_config - ) - - # Run iron transport model - # Determine whether to ship from "Duluth", "Chicago", "Cleveland" or "Buffalo" - # To electrowinning site - if trans_incl: - iron_transport_cost_tonne, ore_profit_pct = calc_iron_ship_cost(iron_win_config) - else: - iron_transport_cost_tonne = 0 - ore_profit_pct = 6 - - ### DRI ---------------------------------------------------------------------------- - ### Electrowinning - - iron_win_config["iron"]["finances"]["ng_mod"] = ng_mod - iron_win_config["iron"]["finances"]["ng_price"] = ng_price - iron_win_config["iron"]["costs"]["capex_mod"] = capex_mod - iron_win_config["iron"]["costs"]["capex_pct"] = capex_pct - iron_win_config["iron"]["finances"]["ore_profit_pct"] = ore_profit_pct - iron_win_config["iron"]["costs"]["iron_transport_tonne"] = iron_transport_cost_tonne - iron_win_config["iron"]["costs"]["lco_iron_ore_tonne"] = iron_ore_finance.sol["lco"] - iron_win_performance, iron_win_costs, iron_win_finance = run_iron_full_model( - iron_win_config - ) - - ### EAF ---------------------------------------------------------------------------- - if iron_post_config["iron"]["product_selection"] == "none": - iron_performance = iron_win_performance - iron_costs = iron_win_costs - iron_finance = iron_win_finance - - else: - if iron_post_config["iron"]["product_selection"] not in ["ng_eaf", "h2_eaf"]: - raise ValueError( - "The product selection for the iron post module must be either \ - 'ng_eaf' or 'h2_eaf'" - ) - pf_config = pf_tools.make_pf_config_from_profast( - iron_win_finance.pf - ) # dictionary of profast objects - pf_dict = pf_tools.convert_pf_res_to_pf_config( - copy.deepcopy(pf_config) - ) # profast dictionary of values - iron_post_config["iron"]["finances"]["pf"] = pf_dict - iron_post_config["iron"]["costs"]["lco_iron_ore_tonne"] = iron_ore_finance.sol["lco"] - iron_post_config["iron"]["finances"]["ng_mod"] = ng_mod - iron_post_config["iron"]["finances"]["ng_price"] = ng_price - iron_post_config["iron"]["costs"]["capex_mod"] = capex_mod - iron_post_config["iron"]["costs"]["capex_pct"] = capex_pct - - iron_post_performance, iron_post_costs, iron_post_finance = run_iron_full_model( - iron_post_config - ) - - iron_performance = iron_post_performance - iron_costs = iron_post_costs - iron_finance = iron_post_finance - - perf_df = iron_performance.performances_df - iron_mtpy = perf_df.loc[perf_df["Name"] == "Pig Iron Production", "Model"].values[0] - - # ABOVE: Copy-pasted from ye olde h2integrate_simulation.py (the 1000+ line monster) - - outputs["iron_out"] = iron_mtpy * 1000 / 8760 - outputs["annual_iron_produced"] = iron_mtpy * 1000 - - cost_df = iron_costs.costs_df - capex = 0 - opex = 0 - capex_list = [ - "EAF & Casting", - "Shaft Furnace", - "Reformer", - "Recycle Compressor", - "Oxygen Supply", - "H2 Pre-heating", - "Cooling Tower", - "Piping", - "Electrical & Instrumentation", - "Buildings, Storage, Water Service", - "Other Miscellaneous Cost", - ] - opex_list = [ - "labor_cost_annual_operation", - "labor_cost_maintenance", - "labor_cost_admin_support", - "property_tax_insurance", - "maintenance_materials", - ] - - location = cost_df.columns.values[-1] - for capex_item in capex_list: - capex += cost_df.loc[cost_df["Name"] == capex_item, location].values[0] - for opex_item in opex_list: - opex += cost_df.loc[cost_df["Name"] == opex_item, location].values[0] - - outputs["CapEx"] = capex - outputs["OpEx"] = opex - - lcoi = iron_finance.sol["lco"] - outputs["LCOI"] = lcoi / 1000 diff --git a/h2integrate/converters/iron/martin_mine_cost_model.py b/h2integrate/converters/iron/martin_mine_cost_model.py index 2f5554b57..912b46933 100644 --- a/h2integrate/converters/iron/martin_mine_cost_model.py +++ b/h2integrate/converters/iron/martin_mine_cost_model.py @@ -39,6 +39,11 @@ class MartinIronMineCostConfig(BaseConfig): class MartinIronMineCostComponent(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): # merge inputs from performance parameters and cost parameters config_dict = merge_shared_inputs( diff --git a/h2integrate/converters/iron/martin_mine_perf_model.py b/h2integrate/converters/iron/martin_mine_perf_model.py index b886ca7cf..6a3d5ab1f 100644 --- a/h2integrate/converters/iron/martin_mine_perf_model.py +++ b/h2integrate/converters/iron/martin_mine_perf_model.py @@ -31,6 +31,11 @@ class MartinIronMinePerformanceConfig(BaseConfig): class MartinIronMinePerformanceComponent(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "iron_ore" diff --git a/h2integrate/converters/iron/martin_ore/cost_inputs.csv b/h2integrate/converters/iron/martin_ore/cost_inputs.csv deleted file mode 100644 index baddd2ad2..000000000 --- a/h2integrate/converters/iron/martin_ore/cost_inputs.csv +++ /dev/null @@ -1,27 +0,0 @@ -Product,Name,Type,Unit,Northshore,United,Hibbing,Minorca,Tilden -std_taconite_pellets,Latitude,location,deg N,47.29415278,47.34858889,47.53,47.55833333,46.48333333 -std_taconite_pellets,Longitude,location,deg E,-91.25649444,-92.58361944,-92.91,-92.525,-87.66666667 -std_taconite_pellets,Crude ore processed,capacity,wltpy,17000000,15000000,24000000,8600000,20500000 -std_taconite_pellets,Ore pellets produced,capacity,wltpy,4540000,4600000,6300000,2790000,7700000 -std_taconite_pellets,Estimated Reserves,capacity,mlt,1158,774.6,109,109.7,520 -std_taconite_pellets,Buildings and other structures,capital,2021 $,802586723.3,782080397.9,1078561311,552238204.9,1340439971 -std_taconite_pellets,Mineral exploration and development,capital,2021 $,92838867.94,90466807.72,124762107.6,63879912.64,155054807 -std_taconite_pellets,Mineral land and rights,capital,2021 $,1041461.66,1014852.01,1399574.925,716601.5841,1739396.873 -std_taconite_pellets,Mining,variable opex,2021 $ per wlt pellet,16.875,15.49,19.87,16.84,15.3 -std_taconite_pellets,Processing,variable opex,2021 $ per wlt pellet,40.135,37.62,34.57,45.56,42.79 -std_taconite_pellets,Site administration,variable opex,2021 $ per wlt pellet,2.37,2.14,2.3,2.2,2.84 -std_taconite_pellets,New equipment purchases,variable opex,2021 $ per wlt pellet,4.2,4.46,4.54,5.63,4.65 -std_taconite_pellets,General/other,variable opex,2021 $ per wlt pellet,8.165,9.29,8.2,10.1,5.07 -drg_taconite_pellets,Latitude,location,deg N,47.29415278,47.34858889,47.53,47.55833333,46.48333333 -drg_taconite_pellets,Longitude,location,deg E,-91.25649444,-92.58361944,-92.91,-92.525,-87.66666667 -drg_taconite_pellets,Crude ore processed,capacity,wltpy,17000000,15000000,24000000,0,0 -drg_taconite_pellets,Ore pellets produced,capacity,wltpy,4540000,4600000,6300000,0,0 -drg_taconite_pellets,Estimated Reserves,capacity,mlt,1158,774.6,109,0,0 -drg_taconite_pellets,Buildings and other structures,capital,2021 $,1012588246,1118066189,949301480.9,0,0 -drg_taconite_pellets,Mineral exploration and development,capital,2021 $,117130702.2,129331817,109810033.3,0,0 -drg_taconite_pellets,Mineral land and rights,capital,2021 $,1313966.21,1450837.691,1231843.322,0,0 -drg_taconite_pellets,Mining,variable opex,2021 $ per wlt pellet,22.1175,26.60498583,22.58913891,0,0 -drg_taconite_pellets,Processing,variable opex,2021 $ per wlt pellet,43.8175,51.61628024,43.8251436,0,0 -drg_taconite_pellets,Site administration,variable opex,2021 $ per wlt pellet,4.515,5.521117114,4.687740946,0,0 -drg_taconite_pellets,New equipment purchases,variable opex,2021 $ per wlt pellet,4.2,4.46,4.54,0,0 -drg_taconite_pellets,General/other,variable opex,2021 $ per wlt pellet,15.8675,15.39868427,13.07435456,0,0 diff --git a/h2integrate/converters/iron/martin_ore/cost_model.py b/h2integrate/converters/iron/martin_ore/cost_model.py deleted file mode 100644 index d34c354dc..000000000 --- a/h2integrate/converters/iron/martin_ore/cost_model.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -Direct Reduced Grade (DR-Grade) iron ore model developed by Jonathan Martin at NREL -in conjunction with UMN-Duluth's NRRI (Brett Spigarelli, Rod Johnson, Matt Aro) -""" - -from pathlib import Path - -import numpy as np -import pandas as pd - -from h2integrate.core.file_utils import load_yaml - - -CD = Path(__file__).parent - -# Get model locations loaded up to refer to -model_locs_fp = CD / "../model_locations.yaml" -model_locs = load_yaml(model_locs_fp) - - -def main(config): - """Loads and processes Direct Reduced Grade (DR-Grade) iron ore cost coefficients. - - This function imports "top-down" costs, loads coefficients for a specified - iron ore product and site, and converts units from wet long tons to dry - metric tonnes. If refitting the model, it loads an input dataframe and saves - the updated coefficients. Otherwise, it loads pre-existing coefficients. - - Args: - config (object): Configuration object containing: - - model (dict): Includes: - - ``refit_coeffs`` (bool): Whether to refit model coefficients. - - ``inputs_fp`` (str): File path for input coefficients (if refitting). - - ``coeffs_fp`` (str): File path for stored coefficients. - - product_selection (str): Selected iron ore product. - - site (dict): Contains ``name`` (str), the site name. - - Returns: - pd.DataFrame: DataFrame containing processed cost coefficients for the - selected product and site. - - Raises: - ValueError: If the selected product or site is not found in the coefficients data. - - Notes: - Direct Reduced Grade (DR-Grade) iron ore model developed by Jonathan Martin at NREL - in conjunction with UMN-Duluth's NRRI (Brett Spigarelli, Rod Johnson, Matt Aro) - """ - - # --------------- capital items ---------------- - # If re-fitting the model, load an inputs dataframe, otherwise, load up the coeffs - if config.model["refit_coeffs"]: - input_df = pd.read_csv(CD / config.model["inputs_fp"]) - - # Right now all the performance modeling is constant - input_df.insert(3, "Coeff", np.full((len(input_df),), "constant")) - - coeff_df = input_df - coeff_df.to_csv(CD / config.model["coeffs_fp"]) - - else: - coeff_df = pd.read_csv(CD / config.model["coeffs_fp"], index_col=0) - - prod = config.product_selection - site = config.site["name"] - - rows = np.where(coeff_df.loc[:, "Product"] == prod)[0] - col = np.where(coeff_df.columns == site)[0] - cols = [0, 1, 2, 3, 4] - cols.extend(list(col)) - - if len(rows) == 0: - raise ValueError(f'Product "{prod}" not found in coeffs data!') - if len(cols) == 0: - raise ValueError(f'Site "{site}" not found in coeffs data!') - - prod_df = coeff_df.iloc[rows, cols] - - # Convert per unit wet long ton to per unit dry metric tonne - prod_df = prod_df.set_index("Name") - for name, item in prod_df.iterrows(): - unit = item["Unit"] - if "per wlt" in unit: - LT_idx = unit.index("per wlt") - if len(unit) == LT_idx + 7: - new_unit = unit[:LT_idx] + "per mt" - else: - new_unit = unit[:LT_idx] + "per mt" + unit[(LT_idx + 7) :] - LT_value = item[site] - mt_value = ( - LT_value - / 1.016047 # Long tons to metric tons - / 0.98 - ) # Wet tons to dry tons (2% moisture) - prod_df.loc[name, site] = mt_value - prod_df.loc[name, "Unit"] = new_unit - if "wltpy" in unit: - LT_idx = unit.index("wltpy") - if len(unit) == LT_idx + 5: - new_unit = unit[:LT_idx] + "mtpy" - else: - new_unit = unit[:LT_idx] + "mtpy" + unit[(LT_idx + 5) :] - LT_value = item[site] - mt_value = ( - LT_value - * 1.016047 # Long tons to metric tons - * 0.98 - ) # Wet tons to dry tons (2% moisture) - prod_df.loc[name, site] = mt_value - prod_df.loc[name, "Unit"] = new_unit - prod_df = prod_df.reset_index().set_index("Product").reset_index() - - # Right now, the there is no need to scale the coefficients. - # cost_df will contain the same values as coeff_df - # This will change when scaling/extrapolating mining operations - prod_df = coeff_df.iloc[rows, cols] - length, width = prod_df.shape - cost_cols = list(prod_df.columns.values) - cost_cols.remove("Coeff") - col_idxs = list(range(width)) - col_idxs.remove(3) - cost_df = pd.DataFrame([], columns=cost_cols) - for row in range(length): - if prod_df.iloc[row, 3] == "constant": - cost_df.loc[len(cost_df)] = prod_df.iloc[row, col_idxs] - - return cost_df diff --git a/h2integrate/converters/iron/martin_ore/finance_model.py b/h2integrate/converters/iron/martin_ore/finance_model.py deleted file mode 100644 index 3bf6b1aee..000000000 --- a/h2integrate/converters/iron/martin_ore/finance_model.py +++ /dev/null @@ -1,212 +0,0 @@ -import numpy as np -import ProFAST - -from h2integrate.tools.inflation.inflate import inflate_cpi -from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs - - -def main(config): - """Sets up a ProFAST financial model for an iron reduction plant, including costs, - production capacity, and economic assumptions. - - This function initializes and configures a ProFAST financial model using - cost data, site-specific parameters, and inflation adjustments. It categorizes - costs into capital, fixed operational expenses, and variable operational expenses, - including both model-defined and top-down costs. - - Args: - config (object): Configuration object containing: - - cost (object): Includes ``costs_df`` (DataFrame) with cost names, types, - units, and site-specific costs. - - site (dict): Contains ``name`` (str), the site name. - - params (dict): Contains various financial and operational parameters, including: - - ``operational_year`` (int): Year the plant starts operation. - - ``installation_years`` (int): Number of years for installation. - - ``plant_life`` (int): Expected plant lifetime in years. - - ``gen_inflation`` (float): General inflation rate. - - ``cost_year`` (int): Reference year for cost inflation adjustments. - - ``financial_assumptions`` (dict): Key-value pairs of financial settings. - - Returns: - tuple: A tuple containing: - - sol (float): Solved price required for economic viability. - - summary (dict): Summary of key financial outputs from ProFAST. - - price_breakdown (dict): Detailed breakdown of cost components. - - pf (ProFAST.ProFAST): The ProFAST model instance used for the calculations. - """ - # Get reduction plant costs into data frame/series with cost names as index - costs = config.cost - cost_df = costs.costs_df.set_index("Name") - cost_ds = cost_df.loc[:, config.site["name"]] - cost_names = cost_df.index.values - cost_types = cost_df.loc[:, "Type"].values - cost_units = cost_df.loc[:, "Unit"].values - - operational_year = config.params["operational_year"] - install_years = config.params["installation_years"] - plant_life = config.params["plant_life"] - gen_inflation = config.params["gen_inflation"] - cost_year = config.params["cost_year"] - - analysis_start = operational_year - install_years - - # Set up ProFAST - pf = ProFAST.ProFAST("blank") - - # Apply all params passed through from config - for param, val in config.params["financial_assumptions"].items(): - pf.set_params(param, val) - pf.set_params("analysis start year", analysis_start) - pf.set_params("operating life", plant_life) - pf.set_params("installation months", 12 * install_years) - pf.set_params("general inflation rate", gen_inflation) - - # Set the commodity produced as processed iron ore - pf.set_params( - "commodity", - { - "name": "processed iron ore", - "unit": "wet metric tonnes", - "initial price": 80, - "escalation": gen_inflation, - }, - ) - - # Set plant production capacity - ore_produced_wltpy = cost_ds.loc["Ore pellets produced"] # wltpy = wet long tons per year - ore_produced_wmtpy = ore_produced_wltpy * 1.016047 # wmtpy = wet metric tonnes per year - ore_produced_mtpy = ore_produced_wmtpy * 0.98 # mtpy = dry metric tonnes per year - pf.set_params("capacity", ore_produced_mtpy / 365) # units/day - - # Set default parameters - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("debt type", "Revolving debt") - - # Set unused parameters to zeros and ones - pf.set_params("maintenance", {"value": 0, "escalation": gen_inflation}) - pf.set_params("non depr assets", 0) - pf.set_params("end of proj sale non depr assets", 0) - pf.set_params("demand rampup", 0) - pf.set_params("long term utilization", 1) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", 0) - pf.set_params("license and permit", {"value": 00, "escalation": gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": gen_inflation}) - pf.set_params("property tax and insurance", 0) - pf.set_params("admin expense", 0) - pf.set_params("cash onhand", 1) - - """ - Add the costs - find the indices ("idxs") of the costs in the cost dataframe - and loop through each index ("idx") to add the name, unit, and value to ProFAST - """ - - # Add capital items - capital_idxs = np.where(cost_types == "capital")[0] - for idx in capital_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for capital costs should be " $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - - pf.add_capital_item( - name=name, - cost=cost, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - - # Add fixed opex costs - fixed_idxs = np.where(cost_types == "fixed opex")[0] - installation_cost = 0 - for idx in fixed_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - pf.add_fixed_cost( - name=name, - usage=1, - unit="$/year", - cost=cost, - escalation=gen_inflation, - ) - installation_cost += cost - - # Installation costs = 6 months fixed opex cost - installation_cost = installation_cost * 6 / 12 - pf.set_params( - "installation cost", - { - "value": installation_cost, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - - """ - In the Martin model, the ProFAST 'feedstocks' cost class covers both the Martin model's - 'variable opex' costs, which are defined solely by the model for the specific technology, - and the Martin model's 'variable opex td' costs, which are UNIVERSAL, 'top-down' costs where - the price of the feedstock (e.g. natural gas) changes in tandem across multiple modules. - """ - - # Add variable opex costs (defined in model) - var_idxs = np.where(cost_types == "variable opex")[0] - installation_cost = 0 - for idx in var_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Should be " $ per " - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - pf.add_feedstock( - name=name, - usage=1.0, - unit=unit, - cost=cost, - escalation=gen_inflation, - ) - - # Add variable opex costs (look up price from 'top-down' inputs) - var_td_idxs = np.where(cost_types == "variable opex td")[0] - var_td_names = cost_names[var_td_idxs] - var_td_input_costs = load_top_down_coeffs(var_td_names, cost_year) - var_td_years = var_td_input_costs["years"] - year_start_idx = np.where(var_td_years == analysis_start)[0][0] - analysis_end = min(max(var_td_years), analysis_start + plant_life) - year_end_idx = np.where(var_td_years == analysis_end)[0][0] - year_idxs = range(year_start_idx, year_end_idx) - installation_cost = 0 - for idx in var_td_idxs: - name = cost_names[idx] - unit1 = cost_units[idx] # Should be " per " - var_td_usage = cost_ds.iloc[idx] - - var_td_dict = var_td_input_costs[name] - unit2 = var_td_dict["unit"] # Should be " $ per per " - var_td_usage = cost_ds.iloc[idx] - - var_td_dict = var_td_input_costs[name] - var_td_dict["unit"] # Should be " $ per see files/task1/regulation and policy revue/ page 4 of 13 middle - read this - # and look at assumptions - electricity_itc: 0 - electricity_ptc: 0 - h2_ptc: 0 - h2_storage_itc: 0 - option2: # base credit levels with H2 - electricity_itc: 0 - electricity_ptc: 0.003 # $0.003/kW (this is base, see inflation adjustment in option 3) - h2_ptc: 0.6 # $0.60/kg h2 produced - assumes net zero but not meeting prevailing wage requirements - does this need to be - # adjusted for inflation from 2022 dollars to claim date, probably constant after claim date? - h2_storage_itc: 0.06 - option3: # same as option 5, but assuming prevailing wages are met --> 5x multiplier on both PTCs - electricity_itc: 0 - electricity_ptc: 0.015 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg 2022 dollars - do not adjust for inflation - h2_storage_itc: 0.3 - # bonus options, option 5 and 6 but ITC equivalents - option4: # prevailing wages not met - electricity_itc: 0.06 # %/100 capex - electricity_ptc: 0.00 # $/kW 1992 dollars - h2_ptc: 0.6 # $0.60/kg produced 2022 dollars - assumes net zero but not meeting prevailing wage requirements - does this need to be - # do not adjust for inflation, probably constant after claim date? - h2_storage_itc: 0.06 - option5: # prevailing wages met - electricity_itc: 0.30 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.3 - option6: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.40 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.4 - option7: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.0 # %/100 capex - electricity_ptc: 0.0165 # $/kWh 1992 dollars (0.015*1.1) - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0 - # you can elect itc_for_h2 in leu of the h2_ptc - this choice is independent of the other tech credit selections - # 6% or %50 for itc_for_h2 -plant_design: - scenario0: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario1: - electrolyzer_location: onshore # can be one of ["onshore", "turbine", "platform"] - transportation: hvdc # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario2: - electrolyzer_location: onshore # can be one of ["onshore", "turbine", "platform"] - transportation: hvdc # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario3: - electrolyzer_location: turbine # can be one of ["onshore", "turbine", "platform"] - transportation: none # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: turbine # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario4: - electrolyzer_location: turbine # can be one of ["onshore", "turbine", "platform"] - transportation: none # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario5: - electrolyzer_location: turbine # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario6: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: none # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario7: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario8: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: hvdc+pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - scenario9: - electrolyzer_location: onshore # can be one of ["onshore", "turbine", "platform"] - transportation: colocated # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: onshore # can be one of ["onshore", "offshore"] - pv_location: onshore # can be one of ["none", "onshore", "platform"] - battery_location: onshore # can be one of ["none", "onshore", "platform"] - scenario10: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - pv_location: platform # can be one of ["none", "onshore", "platform"] - battery_location: platform # can be one of ["none", "onshore", "platform"] -iron_ore: - site: - lat: 47.29415278 - lon: -91.25649444 - resource_dir: /../data_library/weather/ - name: Northshore - product_selection: drg_taconite_pellets #'drg_taconite_pellets' # 'std_taconite_pellets' # - performance_model: - name: martin_ore # 'martin_ore' - refit_coeffs: false - cost_model: - name: martin_ore # 'martin_ore' - refit_coeffs: false - finance_model: - name: martin_ore # 'martin_ore', 'rosner_ore' - performance: - input_capacity_factor_estimate: 0.9 - costs: - operational_year: 2035 - installation_years: 3 - plant_life: 30 - o2_heat_integration: false - finances: - gen_inflation: 0.025 - # Additional parameters passed to ProFAST - financial_assumptions: - total income tax rate: 0.2574 - capital gains tax rate: 0.15 - leverage after tax nominal discount rate: 0.10893 - debt equity ratio of initial financing: 0.624788 - debt interest rate: 0.050049 -iron_win: - site: - lat: 41.717 - lon: -88.398 - resource_dir: /../data_library/weather/ - name: IL - product_selection: ng_dri # 'h2_dri' # 'ng_dri' - performance_model: - name: rosner # 'rosner' - refit_coeffs: false - cost_model: - name: rosner # 'rosner' - refit_coeffs: false - finance_model: - name: rosner # 'rosner', 'rosner_override' - performance: - plant_capacity_mtpy: 1418095 - capacity_denominator: iron # steel - costs: - operational_year: 2035 - installation_years: 3 - plant_life: 30 - o2_heat_integration: false - finances: - gen_inflation: 0.025 - # Additional parameters passed to ProFAST - financial_assumptions: - total income tax rate: 0.2574 - capital gains tax rate: 0.15 - leverage after tax nominal discount rate: 0.10893 - debt equity ratio of initial financing: 0.624788 - debt interest rate: 0.050049 -iron_post: - site: - lat: 41.717 - lon: -88.398 - resource_dir: /../data_library/weather/ - name: IL - product_selection: ng_eaf #''h2_eaf' # 'ng_eaf' - performance_model: - name: rosner # 'rosner' - refit_coeffs: false - cost_model: - name: rosner # 'rosner' - refit_coeffs: false - finance_model: - name: rosner # 'rosner', 'rosner_override' - performance: - plant_capacity_mtpy: 1000000 - costs: - operational_year: 2035 - installation_years: 3 - plant_life: 30 - o2_heat_integration: false - finances: - gen_inflation: 0.025 - # Additional parameters passed to ProFAST - financial_assumptions: - total income tax rate: 0.2574 - capital gains tax rate: 0.15 - leverage after tax nominal discount rate: 0.10893 - debt equity ratio of initial financing: 0.624788 - debt interest rate: 0.050049 -lca_config: - run_lca: true # True - electrolyzer_type: pem # alkaline, soec - feedstock_water_type: ground # desal, surface - cambium: # cambium API argument, see cambium_data.py for additional argument options - project_uuid: 0f92fe57-3365-428a-8fe8-0afc326b3b43 - scenario: Mid-case with 100% decarbonization by 2035 - location_type: GEA Regions 2023 - time_type: hourly -opt_options: - opt_flag: true - general: - folder_output: output - fname_output: optimization_log - design_variables: - electrolyzer_rating_kw: - flag: true - lower: 1000.0 - upper: 2000000.0 - units: kW - pv_capacity_kw: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW - wave_capacity_kw: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW*h - battery_capacity_kw: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW - battery_capacity_kwh: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW*h - turbine_x: - flag: false - lower: 0.0 - upper: 20000.0 - units: m - turbine_y: - flag: false - lower: 0.0 - upper: 20000.0 - units: m - constraints: - turbine_spacing: - flag: false - lower: 0.0 - boundary_distance: - flag: false - lower: 0.0 - pv_to_platform_area_ratio: - flag: false - upper: 1.0 # relative size of solar pv area to platform area - user: {} - merit_figure: lcoi - merit_figure_user: - name: lcoi - max_flag: false - ref: 1.0 # value of objective that scales to 1.0 - driver: - optimization: - flag: true - solver: SNOPT - tol: 1E-6 - gradient_method: snopt_fd # can be one of ['pyopt_fd', 'openmdao', 'snopt_fd'] - max_major_iter: 10 - max_minor_iter: 30 - # time_limit: 10 # (sec) optional - # "hist_file_name: "snopt_history.txt", # optional - verify_level: 0 # optional - step_calc: None - form: forward # type of finite differences to use, can be one of ["forward", "backward", "central"] - debug_print: false - design_of_experiments: - flag: false - run_parallel: false - generator: FullFact # [Uniform, FullFact, PlackettBurman, BoxBehnken, LatinHypercube] - num_samples: 5 # Number of samples to evaluate model at (Uniform and LatinHypercube only) - seed: 2 - levels: 5 # Number of evenly spaced levels between each design variable lower and upper bound (FullFactorial only) - criterion: None # [None, center, c, maximin, m, centermaximin, cm, correelation, corr] - iterations: 1 - debug_print: false - step_size_study: - flag: false - recorder: - flag: true - file_name: record.sql - includes: false diff --git a/h2integrate/converters/iron/old_input/hopp_config.yaml b/h2integrate/converters/iron/old_input/hopp_config.yaml deleted file mode 100644 index 3e9621a21..000000000 --- a/h2integrate/converters/iron/old_input/hopp_config.yaml +++ /dev/null @@ -1,95 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 47.5233 - lon: -92.5366 - elev: 1099 - year: 2013 - tz: -6 - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 20000.0] - - [20000.0, 20000.0] - - [20000.0, 0.0] - verts_simple: - - [0.0, 0.0] - - [0.0, 20000.0] - - [20000.0, 20000.0] - - [20000.0, 0.0] - solar_resource_file: ../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv - wind_resource_file: ../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw - wave_resource_file: '' - grid_resource_file: '' - hub_height: 115.0 - capacity_hours: [] - solar: true - wind: true - wave: false - wind_resource_origin: WTK -technologies: - wind: - num_turbines: 216 - turbine_rating_kw: 6000.0 - model_name: floris - timestep: [0, 8760] - floris_config: input_files/floris/floris_input_lbw_6MW.yaml - fin_model: !include default_fin_config.yaml - hub_height: 115.0 - pv: - system_capacity_kw: 100000 - dc_degradation: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - fin_model: !include default_fin_config.yaml - battery: - system_capacity_kwh: 100000 - system_capacity_kw: 100000 - minimum_SOC: 20.0 - maximum_SOC: 100.0 - initial_SOC: 90.0 - fin_model: !include default_fin_config.yaml - grid: - interconnect_kw: 2000000 # Set higher than rated generation capacity - fin_model: !include default_fin_config.yaml -config: - simulation_options: - wind: - skip_financial: false - dispatch_options: - battery_dispatch: load_following_heuristic # load_following_heuristic # heuristic - solver: cbc - n_look_ahead_periods: 48 - grid_charging: false - pv_charging_only: false - include_lifecycle_count: false - cost_info: # Costs from GS Manuscript Supplemental Table S11 - wind_installed_cost_mw: 1098000 # (2020USD) - solar_installed_cost_mw: 991000 # (2020USD) - storage_installed_cost_mwh: 158000 # (2020USD) - storage_installed_cost_mw: 212000 # (2020USD) - wind_om_per_kw: 25.8 # (2020USD) - pv_om_per_kw: 17.2 # (2020USD) - battery_om_per_kw: 9.25 # (2020USD) based on 0.025 percent of battery capex with a 100MW 1hr battery diff --git a/h2integrate/converters/iron/peters/cost_coeffs.csv b/h2integrate/converters/iron/peters/cost_coeffs.csv deleted file mode 100644 index 2836b54da..000000000 --- a/h2integrate/converters/iron/peters/cost_coeffs.csv +++ /dev/null @@ -1,3 +0,0 @@ -Name,Type,Coeff,Unit,A -Annual Operating Labor Cost,fixed opex,lin,hr/day/step/(kg/day),4.42732 -Annual Operating Labor Cost,fixed opex,exp,-,0.25242 diff --git a/h2integrate/converters/iron/peters/cost_inputs.csv b/h2integrate/converters/iron/peters/cost_inputs.csv deleted file mode 100644 index 8cdb6d2c1..000000000 --- a/h2integrate/converters/iron/peters/cost_inputs.csv +++ /dev/null @@ -1,3 +0,0 @@ -Name,Type,Unit,,,,,,,,,,,,, -Plant Size,capacity,kg/day,2732.869921,4379.474018,7403.041639,11296.91978,17315.77767,30062.34547,44074.13326,69075.8528,114196.8106,193037.7348,309346.4996,491342.1164,783889.5626 -Operating Labor,fixed opex,hr/day/process step,32.55405119,36.73889167,41.86477288,46.79161847,52.29827868,59.88401692,65.96715145,73.37467971,83.61205692,95.27777281,108.0471822,120.7626885,136.2867959 diff --git a/h2integrate/converters/iron/peters/cost_model.py b/h2integrate/converters/iron/peters/cost_model.py deleted file mode 100644 index 847caf288..000000000 --- a/h2integrate/converters/iron/peters/cost_model.py +++ /dev/null @@ -1,8 +0,0 @@ -""" -Opex model developed by Peters et al. -Plant Design and Economics for Chemical Engineers, 5th ed. -""" - - -def main(): - raise NotImplementedError("Peters et al. OpEx model not yet implemented.") diff --git a/h2integrate/converters/iron/rosner/__init__.py b/h2integrate/converters/iron/rosner/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/converters/iron/rosner/cost_inputs.csv b/h2integrate/converters/iron/rosner/cost_inputs.csv deleted file mode 100644 index 80b2b82c5..000000000 --- a/h2integrate/converters/iron/rosner/cost_inputs.csv +++ /dev/null @@ -1,72 +0,0 @@ -Product,Name,Type,Unit,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Capacity Factor,capacity,%,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Steel Slab,capacity,mtpy,1953600,1855920,1758240,1660560,1562880,1465200,1367520,1269840,1162077.47,976800,879120,781440,683760,586080,488400,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,EAF & Casting,capital,2022 $,260255522.8,254238851.7,248047319.7,241665683.2,235076376.8,228258989.6,221189578.3,213839753.4,205364842.6,189727496.6,180827659.3,171371781.1,161248239.8,150302860.7,138312234.7,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Shaft Furnace,capital,2022 $,189167703.1,180245439.2,171339493.9,162448492.9,153570754.7,144704212.1,135846309.2,126993862.1,117229159.8,100423410.7,91539783.55,82625838.87,73665745.24,64636998.8,55506165.19,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Oxygen Supply,capital,2022 $,19803012.38,19156134.82,18497276.17,17825524.6,17139840.36,16439028.46,15721703.48,14986243.13,14151511.46,12649792.98,11818078.61,10953276.74,10049616.88,9099314.638,8091391.698,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,H2 Pre-heating,capital,2022 $,12748756.83,12194648.33,11636658.34,11074540.3,10508016.47,9936771.729,9360445.679,8778622.438,8129781.283,6994858.784,6385188.139,5766411.648,5137214.284,4495870.843,3840025.155,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Cooling Tower,capital,2022 $,24211545.45,23436000.52,22645521.65,21838964.04,21015021.6,20172192.55,19308734.81,18422607.29,17415796.02,15601435.51,14594752.86,13546545,12449519.48,11293828.55,10065567.56,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Piping,capital,2022 $,70654088.85,68365967.71,66048982.85,63700332.79,61316781.93,58894562.17,56429244.11,53915565.49,51078684.26,46013679.72,43226867.91,40340339.97,37333250.44,34176804.85,30829299.67,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Electrical & Instrumentation,capital,2022 $,47102725.9,45577311.81,44032655.23,42466888.53,40877854.62,39263041.45,37619496.07,35943710.32,34052456.17,30675786.48,28817911.94,26893559.98,24888833.62,22784536.57,20552866.45,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,"Buildings, Storage, Water Service",capital,2022 $,118358421.5,113599926,108791050.9,103928415.2,99008197.5,94026046.36,88976966.75,83855171.16,78112171.69,67979062.02,62484050.6,56865276.8,51103847.67,45174792.69,39043718.36,,,,,,,,,,,,,,,,,,,,, -h2_dri_eaf,Other Miscellaneous Cost,capital,2022 $,47102725.9,45577311.81,44032655.23,42466888.53,40877854.62,39263041.45,37619496.07,35943710.32,34052456.17,30675786.48,28817911.94,26893559.98,24888833.62,22784536.57,20552866.45,,,,,,,,,,,,,,,,,,,,, -h2_dri,Capacity Factor,capacity,%,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,, -h2_dri,Steel Slab,capacity,mtpy,1953600,1855920,1758240,1660560,1562880,1465200,1367520,1269840,1162077.47,976800,879120,781440,683760,586080,488400,,,,,,,,,,,,,,,,,,,,, -h2_dri,Steel Liquid,capacity,mtpy,2000000,1900000,1800000,1700000,1600000,1500000,1400000,1300000,1189678,1000000,900000,800000,700000,600000,500000,,,,,,,,,,,,,,,,,,,,, -h2_dri,Pig Iron,capacity,mtpy,2328689.051,2212254.598,2095820.146,1979385.693,1862951.241,1746516.788,1630082.336,1513647.883,1385195.066,1164344.526,1047910.073,931475.6204,815041.1679,698606.7153,582172.2628,,,,,,,,,,,,,,,,,,,,, -h2_dri,EAF & Casting,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -h2_dri,Shaft Furnace,capital,2022 $,189390550.8,180465334.6,171556319.8,162662120.4,153781041.3,144910999.5,136049420.3,127193097.1,117423853.5,100609508.1,91720852.25,82801446.65,73835360.85,64799950.79,55661572.89,,,,,,,,,,,,,,,,,,,,, -h2_dri,Oxygen Supply,capital,2022 $,13343949.9,12915276.82,12478447.69,12032836.22,11577727.75,11112300.32,10635600.23,10146509.77,9590962.663,8590229.013,8035204.66,7457451.766,6852966.973,6216340.633,5539928.599,,,,,,,,,,,,,,,,,,,,, -h2_dri,H2 Pre-heating,capital,2022 $,12748756.83,12194648.33,11636658.34,11074540.3,10508016.47,9936771.729,9360445.679,8778622.438,8129781.283,6994858.784,6385188.139,5766411.648,5137214.284,4495870.843,3840025.155,,,,,,,,,,,,,,,,,,,,, -h2_dri,Cooling Tower,capital,2022 $,21190954.21,20515950.93,19827895.04,19125783.63,18408472.21,17674644.5,16922773.21,16151068.41,15274139.21,13693464.2,12816205.63,11902557.23,10946107.5,9938192.428,8866568.634,,,,,,,,,,,,,,,,,,,,, -h2_dri,Piping,capital,2022 $,30392341.75,29048457.94,27702678.21,26354542.59,25003512.82,23648954.17,22290111.66,20926078.37,19413897.55,16790455.92,15391628.85,13978482.46,12547251.51,11092719.52,9607326.862,,,,,,,,,,,,,,,,,,,,, -h2_dri,Electrical & Instrumentation,capital,2022 $,20261561.16,19365638.63,18468452.14,17569695.06,16669008.54,15765969.44,14860074.44,13950718.91,12942598.37,11193637.28,10261085.9,9318988.307,8364834.337,7395146.345,6404884.575,,,,,,,,,,,,,,,,,,,,, -h2_dri,"Buildings, Storage, Water Service",capital,2022 $,67979062.02,65246024.09,62484050.6,59691199.81,56865276.8,54003782.39,51103847.67,48162148.58,44863661.56,39043718.36,35887663.07,32660524.96,29351452.87,25946105.02,22424727.53,,,,,,,,,,,,,,,,,,,,, -h2_dri,Other Miscellaneous Cost,capital,2022 $,20261561.16,19365638.63,18468452.14,17569695.06,16669008.54,15765969.44,14860074.44,13950718.91,12942598.37,11193637.28,10261085.9,9318988.307,8364834.337,7395146.345,6404884.575,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Capacity Factor,capacity,%,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Steel Slab,capacity,mtpy,1953600,1855920,1758240,1660560,1562880,1465200,1367520,1269840,1162077.47,976800,879120,781440,683760,586080,488400,,,,,,,,,,,,,,,,,,,,, -h2_eaf,EAF & Casting,capital,2022 $,260255522.8,254238851.7,248047319.7,241665683.2,235076376.8,228258989.6,221189578.3,213839753.4,205364842.6,189727496.6,180827659.3,171371781.1,161248239.8,150302860.7,138312234.7,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Shaft Furnace,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Oxygen Supply,capital,2022 $,6459062.48,6240858,6018828.48,5792688.38,5562112.61,5326728.14,5086103.25,4839733.36,4560548.797,4059563.967,3782873.95,3495824.974,3196649.907,2882974.005,2551463.099,,,,,,,,,,,,,,,,,,,,, -h2_eaf,H2 Pre-heating,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Cooling Tower,capital,2022 $,3020591.24,2920049.59,2817626.61,2713180.41,2606549.39,2497548.05,2385961.6,2271538.88,2141656.81,1907971.31,1778547.23,1643987.77,1503411.98,1355636.122,1198998.926,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Piping,capital,2022 $,40261747.1,39317509.77,38346304.64,37345790.2,36313269.11,35245608,34139132.45,32989487.12,31664786.71,29223223.8,27835239.06,26361857.51,24785998.93,23084085.33,21221972.81,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Electrical & Instrumentation,capital,2022 $,26841164.74,26211673.18,25564203.09,24897193.47,24208846.08,23497072.01,22759421.63,21992991.41,21109857.8,19482149.2,18556826.04,17574571.67,16523999.28,15389390.23,14147981.88,,,,,,,,,,,,,,,,,,,,, -h2_eaf,"Buildings, Storage, Water Service",capital,2022 $,50379359.48,48353901.91,46307000.3,44237215.39,42142920.7,40022263.97,37873119.08,35693022.58,33248510.13,28935343.66,26596387.53,24204751.84,21752394.8,19228687.67,16618990.83,,,,,,,,,,,,,,,,,,,,, -h2_eaf,Other Miscellaneous Cost,capital,2022 $,26618317.04,25991777.78,25347377.19,24683565.97,23998559.48,23290284.61,22556310.53,21793756.41,20915164.1,19296051.8,18375757.34,17398963.89,16354383.67,15226438.24,13992574.18,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Capacity Factor,capacity,%,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Steel Slab,capacity,mtpy,1953600,1855920,1758240,1660560,1562880,1465200,1367520,1269840,1189722,976800,879120,781440,683760,586080,488400,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,EAF & Casting,capital,2022 $,257484642.6,251532029.6,245406417.4,239092724.7,232573573.1,225828769,218834624.1,211563051.2,205368306,187707511.9,178902429.1,169547225.5,159531467.2,148702621,136839656.4,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Shaft Furnace,capital,2022 $,165527681,160054337.4,154481860.4,148802740.6,143008418.3,137089060.4,131033271.8,124827716,119615081.2,105137857.9,98138556.42,90866839.64,83275476.47,75300822.77,66853240.14,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Oxygen Supply,capital,2022 $,13734411.21,13286338.24,12829949.23,12364610.84,11889600.84,11404089.11,10907113.21,10397546.05,9969266.546,8778527.165,8202117.982,7602726.696,6976342.098,6317552.322,5618723.867,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Reformer,capital,2022 $,155515479.7,150412197,145214142.4,139914133.2,134503982.3,128974285,123314143,117510801.7,112633449.3,99074627.27,92512331.92,85689569.9,78561196.09,71066388.76,63119505.7,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Recycle Compressor,capital,2022 $,28009339.48,27007639.45,25990524.82,24956880.8,23905440.91,22834755.43,21743150.7,20628675.8,19695901.24,17122673.3,15888531.24,14613877.46,13292025.9,11914037.38,10467435.02,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Cooling Tower,capital,2022 $,16524489.01,15997098.2,15459524.15,14910985.05,14350588.81,13777309.51,13189956.87,12587136.09,12080000.14,10667564.33,9982444.377,9268960.317,8522120.373,7735180.647,6898613.857,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Piping,capital,2022 $,90856917.47,88235300.53,85556351.08,82815434.77,80007241.31,77125636.47,74163469.32,71112316.96,68536326.07,61313421.04,57781339.33,54080687.4,50180016.81,46036400.54,41588462.91,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Electrical & Instrumentation,capital,2022 $,60571278.32,58823533.68,57037567.39,55210289.85,53338160.87,51417090.98,49442312.88,47408211.31,45690884.05,40875614.03,38520892.89,36053791.6,33453344.54,30690933.7,27725641.94,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,"Buildings, Storage, Water Service",capital,2022 $,116156544.8,111486573.9,106767160.5,101994986.7,97166302.06,92276836.19,87321686.95,82295174.5,78114482.85,66714415.99,61321630.82,55807385.67,50153139.08,44334385.06,38317369.95,,,,,,,,,,,,,,,,,,,,, -ng_dri_eaf,Other Miscellaneous Cost,capital,2022 $,60571278.32,58823533.68,57037567.39,55210289.85,53338160.87,51417090.98,49442312.88,47408211.31,45690884.05,40875614.03,38520892.89,36053791.6,33453344.54,30690933.7,27725641.94,,,,,,,,,,,,,,,,,,,,, -ng_dri,Capacity Factor,capacity,%,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,, -ng_dri,Steel Slab,capacity,mtpy,1953600,1855920,1758240,1660560,1562880,1465200,1367520,1269840,1189722,976800,879120,781440,683760,586080,488400,,,,,,,,,,,,,,,,,,,,, -ng_dri,EAF & Casting,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -ng_dri,Shaft Furnace,capital,2022 $,165527681,160054337.4,154481860.4,148802740.6,143008418.3,137089060.4,131033271.8,124827716,119615081.2,105137857.9,98138556.42,90866839.64,83275476.47,75300822.77,66853240.14,,,,,,,,,,,,,,,,,,,,, -ng_dri,Oxygen Supply,capital,2022 $,10432717.02,10096184.15,9753290.492,9403548.672,9046402.626,8681212.934,8307237.826,7923608.146,7601028.016,6703390.286,6268417.391,5815757.607,5342303.03,4843855.705,4314486.461,,,,,,,,,,,,,,,,,,,,, -ng_dri,Reformer,capital,2022 $,155515479.7,150412197,145214142.4,139914133.2,134503982.3,128974285,123314143,117510801.7,112633449.3,99074627.27,92512331.92,85689569.9,78561196.09,71066388.76,63119505.7,,,,,,,,,,,,,,,,,,,,, -ng_dri,Recycle Compressor,capital,2022 $,28009339.48,27007639.45,25990524.82,24956880.8,23905440.91,22834755.43,21743150.7,20628675.8,19695901.24,17122673.3,15888531.24,14613877.46,13292025.9,11914037.38,10467435.02,,,,,,,,,,,,,,,,,,,,, -ng_dri,Cooling Tower,capital,2022 $,16505954.56,15978809.29,15441490.53,14893217.45,14333099.07,13760110.8,13173063.93,12570565.52,12063707.99,10652086.43,9967384.718,9254354.849,8508013.279,7721627.773,6885688.449,,,,,,,,,,,,,,,,,,,,, -ng_dri,Piping,capital,2022 $,51795405.61,50081454.67,48336380.82,46557831.31,44743124.71,42889181.22,40992432.52,39048703.14,37415930.5,32880989.75,30688418.56,28410499.86,26032470.76,23534446.21,20888432.63,,,,,,,,,,,,,,,,,,,,, -ng_dri,Electrical & Instrumentation,capital,2022 $,34530270.4,33387636.45,32224253.88,31038554.21,29828749.8,28592787.48,27328288.35,26032468.76,24943953.66,21920659.84,20458945.71,18940333.24,17354980.51,15689630.81,13925621.75,,,,,,,,,,,,,,,,,,,,, -ng_dri,"Buildings, Storage, Water Service",capital,2022 $,66714415.99,64032222.03,61321630.82,58580736.73,55807385.67,52999124.97,50153139.08,47266165.79,44864988.97,38317369.95,35220028.22,32052926.06,28805414.18,25463417.59,22007549.92,,,,,,,,,,,,,,,,,,,,, -ng_dri,Other Miscellaneous Cost,capital,2022 $,34530270.4,33387636.45,32224253.88,31038554.21,29828749.8,28592787.48,27328288.35,26032468.76,24943953.66,21920659.84,20458945.71,18940333.24,17354980.51,15689630.81,13925621.75,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Capacity Factor,capacity,%,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Steel Slab,capacity,mtpy,1953600,1855920,1758240,1660560,1562880,1465200,1367520,1269840,1189722,976800,879120,781440,683760,586080,488400,,,,,,,,,,,,,,,,,,,,, -ng_eaf,EAF & Casting,capital,2022 $,257484642.6,251532029.6,245406417.4,239092724.7,232573573.1,225828769,218834624.1,211563051.2,205368306,187707511.9,178902429.1,169547225.5,159531467.2,148702621,136839656.4,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Shaft Furnace,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Oxygen Supply,capital,2022 $,3301694.19,3190154.09,3076658.738,2961062.168,2843198.214,2722876.176,2599875.384,2473937.904,2368238.53,2075136.879,1933700.591,1786969.089,1634039.068,1473696.617,1304237.406,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Reformer,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Recycle Compressor,capital,2022 $,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Cooling Tower,capital,2022 $,18534.45,18288.91,18033.62,17767.6,17489.74,17198.71,16892.94,16570.57,16292.15,15477.9,15059.659,14605.468,14107.094,13552.874,12925.408,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Piping,capital,2022 $,39061511.86,38153845.86,37219970.26,36257603.46,35264116.6,34236455.25,33171036.8,32063613.82,31120395.57,28432431.29,27092920.77,25670187.54,24147546.05,22501954.33,20700030.28,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Electrical & Instrumentation,capital,2022 $,26041007.92,25435897.23,24813313.51,24171735.64,23509411.07,22824303.5,22114024.53,21375742.55,20746930.39,18954954.19,18061947.18,17113458.36,16098364.03,15001302.89,13800020.19,,,,,,,,,,,,,,,,,,,,, -ng_eaf,"Buildings, Storage, Water Service",capital,2022 $,49442128.81,47454351.87,45445529.68,43414249.97,41358916.39,39277711.22,37168547.87,35029008.71,33249493.88,28397046.04,26101602.6,23754459.61,21347724.9,18870967.47,16309820.03,,,,,,,,,,,,,,,,,,,,, -ng_eaf,Other Miscellaneous Cost,capital,2022 $,26041007.92,25435897.23,24813313.51,24171735.64,23509411.07,22824303.5,22114024.53,21375742.55,20746930.39,18954954.19,18061947.18,17113458.36,16098364.03,15001302.89,13800020.19,,,,,,,,,,,,,,,,,,,,, diff --git a/h2integrate/converters/iron/rosner/cost_model.py b/h2integrate/converters/iron/rosner/cost_model.py deleted file mode 100644 index db293686e..000000000 --- a/h2integrate/converters/iron/rosner/cost_model.py +++ /dev/null @@ -1,342 +0,0 @@ -""" -Direct Reduced Iron (DRI) model developed by Rosner et al. -Energy Environ. Sci., 2023, 16, 4121 -doi.org/10.1039/d3ee01077e -""" - -from pathlib import Path - -import numpy as np -import pandas as pd - -from h2integrate.core.file_utils import load_yaml -from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs - - -CD = Path(__file__).parent - -# Get model locations loaded up to refer to -model_locs_fp = CD / "../model_locations.yaml" -model_locs = load_yaml(model_locs_fp) - -capital_costs = {} - - -def main(config): - """Calculates the capital, fixed O&M, and owner's costs for a Direct Reduced Iron (DRI) plant or - a Electric Arc Furnace (EAF) plant. - - This function processes economic and performance data to estimate the total capital cost, - fixed operational expenses, and other costs associated with a DRI and/or EAF plant based on the - methodology presented by Rosner et al. - (Energy Environ. Sci., 2023, 16, 4121, doi:10.1039/d3ee01077e). - - The function uses predefined coefficients and refits cost models if needed. - It also considers various cost components, including labor, maintenance, - property tax, installation, and consumables. - - Args: - config (Config): A configuration object containing parameters such as plant capacity, - operational year, plant life, product selection, site information, and performance data. - - Returns: - pandas.DataFrame: A DataFrame containing cost estimates with columns: - - "Product": The product type (e.g., 'ng_dri', 'h2_dri', 'ng_eaf', 'h2_eaf'). - - "Name": Cost component name. - - "Type": Cost category (e.g., 'capital', 'fixed opex', 'other'). - - "Unit": Currency unit and reference year. - - "Value": Estimated cost for the given category. - """ - # Import 'top-down' costs - top_down_coeffs = load_top_down_coeffs() - - model_year = 2022 # Rosner paper: All economic data in 2022 $ - - start_year = config.params["operational_year"] - end_year = start_year + config.params["plant_life"] - end_year = min(end_year, top_down_coeffs["years"][-1]) - td_start_idx = np.where(top_down_coeffs["years"] == start_year)[0][0] - td_end_idx = np.where(top_down_coeffs["years"] == end_year)[0][0] - - # Get plant performances into data frame/series with performance names as index - perf_df = config.performance.performances_df.set_index("Name") - perf_ds = perf_df.loc[:, "Model"] - - plant_capacity_mtpy = config.params["plant_capacity_mtpy"] # In metric tonnes per year - - # Convert iron to steel if needed - if config.params["capacity_denominator"] == "iron": - steel_cap = perf_ds["Steel Production"] - iron_cap = perf_ds["Pig Iron Production"] - plant_capacity_mtpy *= steel_cap / iron_cap - - lcoh = config.params["lcoh"] - - # Set up dataframe to store costs - cols = ["Product", "Name", "Type", "Unit", config.site["name"]] - costs_df = pd.DataFrame([], columns=cols) - - # If re-fitting the model, load an inputs dataframe, otherwise, load up the coeffs - if config.model["refit_coeffs"]: - input_df = pd.read_csv(CD / config.model["inputs_fp"]) - products = np.unique(input_df.loc[:, "Product"].values) - coeff_df = pd.read_csv(CD / config.model["coeffs_fp"], index_col=0) - - for product in products: - prod_rows = np.where(input_df.loc[:, "Product"].values == product)[0] - prod_df = input_df.iloc[prod_rows, :] - product_col = np.where(coeff_df.columns.values == product)[0] - - remove_rows = ["Capacity Factor", "Pig Iron", "Steel Liquid"] - keep_rows = np.where( - np.logical_not([i in remove_rows for i in prod_df.loc[:, "Name"].values]) - ) - prod_df = prod_df.iloc[keep_rows] - - keys = prod_df.iloc[:, 1] # Extract name - values = prod_df.iloc[:, 4:19] # Extract values for cost re-fitting - - # Create dictionary with keys for name and arrays of values - array_dict = { - key: np.array(row) - for key, row in zip(keys, values.itertuples(index=False, name=None)) - } - - # This determines that costs are a function of steel slab output - x = np.log(array_dict["Steel Slab"]) - - del array_dict["Steel Slab"] - - for key in array_dict: - y = np.log(array_dict[key] + 1e-10) # Add a small value to avoid log(0) - # Fit the curve - coeffs = np.polyfit(x, y, 1) - - # Extract coefficients - a = np.exp(coeffs[1]) - b = coeffs[0] - - # Ensure all values are real - a = 0 if np.isnan(a) else a - b = 0 if np.isnan(b) else b - - # Store the parameters in the coeff dataframe - lin_row = np.where( - np.logical_and(coeff_df.index.values == key, coeff_df.loc[:, "Coeff"] == "lin") - )[0][0] - exp_row = np.where( - np.logical_and(coeff_df.index.values == key, coeff_df.loc[:, "Coeff"] == "exp") - )[0][0] - coeff_df.iloc[lin_row, product_col] = a - coeff_df.iloc[exp_row, product_col] = b - - coeff_df.to_csv(CD / config.model["coeffs_fp"]) - coeff_df = pd.read_csv(CD / config.model["coeffs_fp"], index_col=[0, 1, 2, 3]) - product = config.product_selection - - prod_coeffs = coeff_df[[product]].reset_index() - - # Workaround for changing capex - if "capex_mod" in list(config.params.keys()): - if config.params["capex_mod"]: - capex_lin = prod_coeffs.iloc[ - np.where((prod_coeffs["Type"] == "capital") & (prod_coeffs["Coeff"] == "lin"))[0], - -1, - ].values - capex_lin = [i * (1 + config.params["capex_pct"]) for i in capex_lin] - prod_coeffs.iloc[ - np.where((prod_coeffs["Type"] == "capital") & (prod_coeffs["Coeff"] == "lin"))[0], - -1, - ] = capex_lin - - # Add unique capital items based on the "Name" column for product - for item_name in prod_coeffs[prod_coeffs["Type"] == "capital"]["Name"].unique(): - # Filter for this item and get the lin and exp coefficients - item_data = prod_coeffs[ - (prod_coeffs["Name"] == item_name) & (prod_coeffs["Type"] == "capital") - ] - lin_coeff = item_data[item_data["Coeff"] == "lin"][product].values[0] - exp_coeff = item_data[item_data["Coeff"] == "exp"][product].values[0] - - # Calculate the capital cost for the item - capital_costs[item_name] = lin_coeff * plant_capacity_mtpy**exp_coeff - - total_plant_cost = sum(capital_costs.values()) - - for cost_name, cost in capital_costs.items(): - new_cost = [product, cost_name, "capital", str(model_year) + " $", cost] - costs_df.loc[len(costs_df)] = new_cost - - # -------------------------------Fixed O&M Costs------------------------------ - - # Import Peters opex model - if config.model["refit_coeffs"]: - input_df = pd.read_csv(CD / "../peters" / model_locs["cost"]["peters"]["inputs"]) - keys = input_df.iloc[:, 0] # Extract name - values = input_df.iloc[:, 3:16] # Extract values for cost re-fitting - - # Create dictionary with keys for name and arrays of values - array_dict = { - key: np.array(row) for key, row in zip(keys, values.itertuples(index=False, name=None)) - } - - x = np.log(array_dict["Plant Size"]) - y = np.log(array_dict["Operating Labor"]) - - # Fit the curve - coeffs = np.polyfit(x, y, 1) - - # Extract coefficients - Peters_coeffs_lin = np.exp(coeffs[1]) - Peters_coeffs_exp = coeffs[0] - - else: - coeff_df = pd.read_csv( - CD / "../peters" / model_locs["cost"]["peters"]["coeffs"], index_col=[0, 1, 2, 3] - ) - Peters_coeffs = coeff_df["A"] - Peters_coeffs_lin = Peters_coeffs.loc["Annual Operating Labor Cost", :, "lin"].values[0] - Peters_coeffs_exp = Peters_coeffs.loc["Annual Operating Labor Cost", :, "exp"].values[0] - - # Peters model - employee-hours/day/process step * # of process steps - fixed_costs = {} - - cost = ( - 365 - * ( - prod_coeffs.loc[prod_coeffs["Name"] == "% Skilled Labor", product].values[0] - / 100 - * np.mean(top_down_coeffs["Skilled Labor Cost"]["values"][td_start_idx:td_end_idx]) - + prod_coeffs.loc[prod_coeffs["Name"] == "% Unskilled Labor", product].values[0] - / 100 - * np.mean(top_down_coeffs["Unskilled Labor Cost"]["values"][td_start_idx:td_end_idx]) - ) - * prod_coeffs.loc[prod_coeffs["Name"] == "Processing Steps", product].values[0] - * Peters_coeffs_lin - * (plant_capacity_mtpy / 365 * 1000) ** Peters_coeffs_exp - ) - labor_cost_annual_operation = cost - fixed_costs["labor_cost_annual_operation"] = cost - - cost = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Maintenance Labor Cost", product].values[0] - * total_plant_cost - ) - labor_cost_maintenance = cost - fixed_costs["labor_cost_maintenance"] = cost - - cost = prod_coeffs.loc[ - prod_coeffs["Name"] == "Administrative & Support Labor Cost", product - ].values[0] * (labor_cost_annual_operation + labor_cost_maintenance) - labor_cost_admin_support = cost - fixed_costs["labor_cost_admin_support"] = cost - - cost = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Property Tax & Insurance", product].values[0] - * total_plant_cost - ) - property_tax_insurance = cost - fixed_costs["property_tax_insurance"] = cost - - cost = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Maintenance Materials", product].values[0] - * plant_capacity_mtpy - ) - maintenance_materials = cost - fixed_costs["maintenance_materials"] = cost - - ( - labor_cost_annual_operation - + labor_cost_maintenance - + labor_cost_admin_support - + property_tax_insurance - + maintenance_materials - ) - - for cost_name, cost in fixed_costs.items(): - new_cost = [product, cost_name, "fixed opex", str(model_year) + " $ per year", cost] - costs_df.loc[len(costs_df)] = new_cost - - # ---------------------- Owner's (Installation) Costs -------------------------- - if config.product_selection == "ng_dri" or "h2_dri" or "ng_dri_eaf" or "h2_dri_eaf": - labor_cost_fivemonth = ( - 5 - / 12 - * (labor_cost_annual_operation + labor_cost_maintenance + labor_cost_admin_support) - ) - else: - labor_cost_fivemonth = 0 - - ( - prod_coeffs.loc[prod_coeffs["Name"] == "Maintenance Materials", product].values[0] - * plant_capacity_mtpy - / 12 - ) - non_fuel_consumables_onemonth = ( - plant_capacity_mtpy - * ( - perf_ds["Raw Water Withdrawal"] * top_down_coeffs["Raw Water"]["values"][td_start_idx] - + perf_ds["Lime"] * top_down_coeffs["Lime"]["values"][td_start_idx] - + perf_ds["Carbon (Coke)"] * top_down_coeffs["Carbon"]["values"][td_start_idx] - + perf_ds["Iron Ore"] * top_down_coeffs["Iron Ore Pellets"]["values"][td_start_idx] - + perf_ds["Reformer Catalyst"] - * top_down_coeffs["Reformer Catalyst"]["values"][td_start_idx] - ) - / 12 - ) - - ( - plant_capacity_mtpy - * perf_ds["Slag"] - * top_down_coeffs["Slag Disposal"]["values"][td_start_idx] - / 12 - ) - - ( - plant_capacity_mtpy - * ( - perf_ds["Hydrogen"] * lcoh * 1000 - + perf_ds["Natural Gas"] * top_down_coeffs["Natural Gas"]["values"][td_start_idx] - + perf_ds["Electricity"] * top_down_coeffs["Electricity"]["values"][td_start_idx] - ) - / 12 - ) - preproduction_cost = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Preproduction", product].values[0] - * total_plant_cost - ) - - fuel_consumables_60day_supply_cost = non_fuel_consumables_onemonth * 12 / 365 * 60 - - spare_parts_cost = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Spare Parts", product].values[0] * total_plant_cost - ) - land_cost = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Land", product].values[0] * plant_capacity_mtpy - ) - misc_owners_costs = ( - prod_coeffs.loc[prod_coeffs["Name"] == "Other Owners's Costs", product].values[0] - * total_plant_cost - ) - - installation_cost = ( - labor_cost_fivemonth - + preproduction_cost - + fuel_consumables_60day_supply_cost - + spare_parts_cost - + misc_owners_costs - ) - - new_cost = [product, "Land cost", "other", str(model_year) + " $ per year", land_cost] - costs_df.loc[len(costs_df)] = new_cost - - new_cost = [ - product, - "Installation cost", - "other", - str(model_year) + " $ per year", - installation_cost, - ] - costs_df.loc[len(costs_df)] = new_cost - - return costs_df diff --git a/h2integrate/converters/iron/rosner/finance_model.py b/h2integrate/converters/iron/rosner/finance_model.py deleted file mode 100644 index 46032d3bd..000000000 --- a/h2integrate/converters/iron/rosner/finance_model.py +++ /dev/null @@ -1,269 +0,0 @@ -import numpy as np -import ProFAST - -import h2integrate.tools.profast_tools as pf_tools -from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci -from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs - - -def main(config): - """Performs financial analysis for a Direct Reduced Iron (DRI) plant or - a Electric Arc Furnace (EAF) plant using ProFAST. - - This function models the finances of a DRI or EAF - plant based on input parameters, cost data, and plant performance metrics. It - uses ProFAST for financial modeling, including capital costs, operational expenses, - feedstock costs, and coproduct revenues. - - Args: - config (Config): Configuration object containing plant parameters, - cost data, performance metrics, and financial assumptions. - - Returns: - tuple: A tuple containing the following elements: - - sol (float): Solved price required to meet financial constraints. - - summary (dict): Summary of key financial metrics. - - price_breakdown (dict): Detailed breakdown of cost contributions. - - pf (ProFAST.ProFAST): Configured ProFAST object for further analysis. - """ - # First thing - get iron pellet cost from previous modules - iron_ore_pellet_unitcost_tonne = config.params["lco_iron_ore_tonne"] - if "iron_transport_tonne" in config.params.keys(): - iron_transport_cost_tonne = config.params["iron_transport_tonne"] - ore_profit_pct = config.params["ore_profit_pct"] - iron_ore_pellet_unitcost_tonne = ( - iron_ore_pellet_unitcost_tonne + iron_transport_cost_tonne - ) * (1 + ore_profit_pct / 100) - - # Determine years for analyzing cost - operational_year = config.params["operational_year"] - install_years = config.params["installation_years"] - plant_life = config.params["plant_life"] - cost_year = config.params["cost_year"] - analysis_start = operational_year - install_years - - # Get feedstock costs from input sheets - coeff_dict = load_top_down_coeffs( - [ - "Raw Water", - "Lime", - "Carbon", - "Slag Disposal", - "Hydrogen", - "Natural Gas", - "Electricity", - "Inflation Rate", - ] - ) - - # Workaround for changing ng_price - if "ng_mod" in list(config.params.keys()): - if config.params["ng_mod"]: - ng_prices = coeff_dict["Natural Gas"]["values"] - ng_prices = [config.params["ng_price"] for i in ng_prices] - coeff_dict["Natural Gas"]["values"] = np.array(ng_prices) - - years = list(coeff_dict["years"]) - start_idx = years.index(analysis_start) - if len(years) > (start_idx + plant_life + install_years + 1): - end_idx = years.index(analysis_start + plant_life + install_years + 1) - indices = list(np.arange(start_idx, end_idx)) - else: - end_idx = len(years) - 1 - indices = list(np.arange(start_idx, end_idx)) - repeats = start_idx + plant_life + install_years + 2 - len(years) - for _i in range(repeats): - indices.append(end_idx) - - raw_water_unitcost_tonne = coeff_dict["Raw Water"]["values"][indices].astype(float) - lime_unitcost_tonne = coeff_dict["Lime"]["values"][indices].astype(float) - carbon_unitcost_tonne = coeff_dict["Carbon"]["values"][indices].astype(float) - slag_disposal_unitcost_tonne = coeff_dict["Slag Disposal"]["values"][indices].astype(float) - hydrogen_cost_kg = coeff_dict["Hydrogen"]["values"][indices].astype(float) - natural_gas_prices_MMBTU = coeff_dict["Natural Gas"]["values"][indices].astype(float) - electricity_cost_kwh = coeff_dict["Electricity"]["values"][indices].astype(float) - gen_inflation_pct = coeff_dict["Inflation Rate"]["values"][indices].astype(float) - gen_inflation = np.mean(gen_inflation_pct) / 100 - - # Choose whether to override top-down electricity, hydrogen, and TODO: natural gas - electricity_cost_kwh = config.params["lcoe"] # Originally in $/kWh - lcoe_dollar_MWH = electricity_cost_kwh * 1000 - hydrogen_cost_kg = config.params["lcoh"] # Originally in $/kg - lcoh_dollar_metric_tonne = hydrogen_cost_kg * 1000 - # TODO: Natural Gas - natural_gas_prices_GJ = natural_gas_prices_MMBTU * 1.05506 # Convert to GJ - - # Get plant performances into data frame/series with performance names as index - performance = config.performance - perf_df = performance.performances_df.set_index("Name") - perf_ds = perf_df.loc[:, "Model"] - - plant_capacity_mtpy = config.params["plant_capacity_mtpy"] # In metric tonnes per year - plant_capacity_factor = perf_ds["Capacity Factor"] / 100 # Fractional - - # Get reduction plant costs into data frame/series with cost names as index - costs = config.cost - cost_df = costs.costs_df.set_index("Name") - cost_ds = cost_df.loc[:, config.site["name"]] - cost_names = cost_df.index.values - cost_types = cost_df.loc[:, "Type"].values - cost_units = cost_df.loc[:, "Unit"].values - - installation_cost = cost_ds["Installation cost"] - land_cost = cost_ds["Land cost"] - - if "pf" in config.params: - pf = pf_tools.create_and_populate_profast(config.params["pf"]) - else: - # Set up ProFAST - pf = ProFAST.ProFAST("blank") - - product_name = config.params["capacity_denominator"] - module_label = config.product_selection - - # apply all params passed through from config - for param, val in config.params["financial_assumptions"].items(): - pf.set_params(param, val) - - pf.set_params( - "commodity", - { - "name": f"{product_name}", - "unit": "metric tonnes", - "initial price": 1000, - "escalation": gen_inflation, - }, - ) - pf.set_params("capacity", plant_capacity_mtpy / 365) # units/day - pf.set_params("maintenance", {"value": 0, "escalation": gen_inflation}) - pf.set_params("analysis start year", analysis_start) - pf.set_params("operating life", plant_life) - pf.set_params("installation months", 12 * install_years) - pf.set_params( - "installation cost", - { - "value": installation_cost, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - pf.set_params("non depr assets", land_cost) - pf.set_params( - "end of proj sale non depr assets", - land_cost * (1 + gen_inflation) ** plant_life, - ) - pf.set_params("demand rampup", 5.3) - pf.set_params("long term utilization", plant_capacity_factor) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", 0) - pf.set_params("license and permit", {"value": 00, "escalation": gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": gen_inflation}) - pf.set_params("property tax and insurance", 0) - pf.set_params("admin expense", 0) - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("general inflation rate", gen_inflation) - pf.set_params("debt type", "Revolving debt") - pf.set_params("cash onhand", 1) - - # ----------------------------------- Add capital items to ProFAST ---------------- - capital_idxs = np.where(cost_types == "capital")[0] - for idx in capital_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for capital costs should be " $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cepci(source_year_cost, source_year, cost_year) - - pf.add_capital_item( - name=f"{module_label}: {name}", - cost=cost, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - - # -------------------------------------- Add fixed costs-------------------------------- - fixed_idxs = np.where(cost_types == "fixed opex")[0] - for idx in fixed_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - pf.add_fixed_cost( - name=f"{module_label}: {name}", - usage=1, - unit="$/year", - cost=cost, - escalation=gen_inflation, - ) - # Putting property tax and insurance here to zero out depreciation/escalation. - # Could instead put it in set_params if we think that is more accurate - - # ---------------------- Add feedstocks, note the various cost options------------------- - pf.add_feedstock( - name=f"{module_label}: Raw Water Withdrawal", - usage=perf_ds["Raw Water Withdrawal"], - unit="metric tonnes of water per metric tonne of iron", - cost=raw_water_unitcost_tonne, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Lime", - usage=perf_ds["Lime"], - unit="metric tonnes of lime per metric tonne of iron", - cost=lime_unitcost_tonne, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Carbon", - usage=perf_ds["Carbon (Coke)"], - unit="metric tonnes of carbon per metric tonne of iron", - cost=carbon_unitcost_tonne, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Iron Ore", - usage=perf_ds["Iron Ore"], - unit="metric tonnes of iron ore per metric tonne of iron", - cost=iron_ore_pellet_unitcost_tonne, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Hydrogen", - usage=perf_ds["Hydrogen"], - unit="metric tonnes of hydrogen per metric tonne of iron", - cost=lcoh_dollar_metric_tonne, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Natural Gas", - usage=perf_ds["Natural Gas"], - unit="GJ-LHV per metric tonne of iron", - cost=natural_gas_prices_GJ, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Electricity", - usage=perf_ds["Electricity"], - unit="MWh per metric tonne of iron", - cost=lcoe_dollar_MWH, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Slag Disposal", - usage=perf_ds["Slag"], - unit="metric tonnes of slag per metric tonne of iron", - cost=slag_disposal_unitcost_tonne, - escalation=gen_inflation, - ) - - # ------------------------------ Set up outputs --------------------------- - - sol = pf.solve_price() - summary = pf.get_summary_vals() - price_breakdown = pf.get_cost_breakdown() - - return sol, summary, price_breakdown, pf diff --git a/h2integrate/converters/iron/rosner/perf_inputs.csv b/h2integrate/converters/iron/rosner/perf_inputs.csv deleted file mode 100644 index 3b70c37ed..000000000 --- a/h2integrate/converters/iron/rosner/perf_inputs.csv +++ /dev/null @@ -1,145 +0,0 @@ -Product,Name,Type,Unit,Model -h2_dri_eaf,Steel Production,capacity,mtpy,1189678 -h2_dri_eaf,Pig Iron Production,capacity,mtpy,1418094.867 -h2_dri_eaf,Capacity Factor,capacity,%,100 -h2_dri_eaf,Iron Ore,feed,mt ore / mt steel,1.62927 -h2_dri_eaf,Reformer Catalyst,feed,m3 catalyst/mt steel,0 -h2_dri_eaf,Hydrogen,feed,mt H2 / mt steel,0.06596 -h2_dri_eaf,Natural Gas,feed,GJ-LHV NG / mt steel,0.71657 -h2_dri_eaf,Electricity,feed,MWh / mt steel,0.5502 -h2_dri_eaf,Carbon (Coke),feed,mt C / mt steel,0.0538 -h2_dri_eaf,Lime,feed,mt lime / mt steel,0.01812 -h2_dri_eaf,Raw Water Withdrawal,feed,mt H2O / mt steel,0.80367 -h2_dri_eaf,Carbon Dioxide (Methane as Fuel),emission,mt CO2 / mt steel,0.03929 -h2_dri_eaf,Carbon Dioxide (Carbon),emission,mt CO2 / mt steel,0.17466 -h2_dri_eaf,Slag,emission,mt slag / mt steel,0.17433 -h2_dri_eaf,Surface Water Discharge,emission,mt H2O discharged/mt H2O withdrawn,0.42113 -h2_dri_eaf,Steelmaking efficiency,efficiency,%,60.07 -h2_dri_eaf,Reformer Furnace & Stack Air Blower,feed,kW / mtpy steel,0 -h2_dri_eaf,Process Gas recycle,feed,kW / mtpy steel,0 -h2_dri_eaf,DRI Scrubber Electricity,feed,kW / mtpy steel,0.000122575 -h2_dri_eaf,Cooling Tower & Water Circulation Electricity,feed,kW / mtpy steel,0.000760857 -h2_dri_eaf,Oxygen Supply Electricity,feed,kW / mtpy steel,0.010389687 -h2_dri_eaf,Electric Arc Furnace Electricity,feed,kW / mtpy steel,0.041202278 -h2_dri_eaf,Ladle Refining Electricity,feed,kW / mtpy steel,0.003218638 -h2_dri_eaf,Miscellaneous Balance of Plant Electricity,feed,kW / mtpy steel,0.007113805 -h2_dri,Steel Production,capacity,mtpy,1189678 -h2_dri,Pig Iron Production,capacity,mtpy,1418094.867 -h2_dri,Capacity Factor,capacity,%,100 -h2_dri,Iron Ore,feed,mt ore / mt steel,1.62927 -h2_dri,Reformer Catalyst,feed,m3 catalyst/mt steel,0 -h2_dri,Hydrogen,feed,mt H2 / mt steel,0.06596 -h2_dri,Natural Gas,feed,GJ-LHV NG / mt steel,0.622287755 -h2_dri,Electricity,feed,MWh / mt steel,0.117029561 -h2_dri,Carbon (Coke),feed,mt C / mt steel,0 -h2_dri,Lime,feed,mt lime / mt steel,0 -h2_dri,Raw Water Withdrawal,feed,mt H2O / mt steel,0.642938077 -h2_dri,Carbon Dioxide (Methane as Fuel),emission,mt CO2 / mt steel,0.029631801 -h2_dri,Carbon Dioxide (Carbon),emission,mt CO2 / mt steel,0.377646164 -h2_dri,Slag,emission,mt slag / mt steel,0 -h2_dri,Surface Water Discharge,emission,mt H2O discharged/mt H2O withdrawn,0.270760315 -h2_dri,Steelmaking efficiency,efficiency,%,87.988 -h2_dri,Reformer Furnace & Stack Air Blower,feed,kW / mtpy steel,0 -h2_dri,Process Gas recycle,feed,kW / mtpy steel,0 -h2_dri,DRI Scrubber Electricity,feed,kW / mtpy steel,0.000122575 -h2_dri,Cooling Tower & Water Circulation Electricity,feed,kW / mtpy steel,0.000608686 -h2_dri,Oxygen Supply Electricity,feed,kW / mtpy steel,0.005507939 -h2_dri,Electric Arc Furnace Electricity,feed,kW / mtpy steel,0.000006534 -h2_dri,Ladle Refining Electricity,feed,kW / mtpy steel,0 -h2_dri,Miscellaneous Balance of Plant Electricity,feed,kW / mtpy steel,0.007113805 -h2_eaf,Steel Production,capacity,mtpy,1189678 -h2_eaf,Pig Iron Production,capacity,mtpy,1418094.867 -h2_eaf,Capacity Factor,capacity,%,100 -h2_eaf,Iron Ore,feed,mt ore / mt steel,0 -h2_eaf,Reformer Catalyst,feed,m3 catalyst/mt steel,0 -h2_eaf,Hydrogen,feed,mt H2 / mt steel,0 -h2_eaf,Natural Gas,feed,GJ-LHV NG / mt steel,0.094282245 -h2_eaf,Electricity,feed,MWh / mt steel,0.433170439 -h2_eaf,Carbon (Coke),feed,mt C / mt steel,0.0538 -h2_eaf,Lime,feed,mt lime / mt steel,0.01812 -h2_eaf,Raw Water Withdrawal,feed,mt H2O / mt steel,0.160731923 -h2_eaf,Carbon Dioxide (Methane as Fuel),emission,mt CO2 / mt steel,0.009658199 -h2_eaf,Carbon Dioxide (Carbon),emission,mt CO2 / mt steel,0 -h2_eaf,Slag,emission,mt slag / mt steel,0.17433 -h2_eaf,Surface Water Discharge,emission,mt H2O discharged/mt H2O withdrawn,0.150369685 -h2_eaf,Steelmaking efficiency,efficiency,%,60.07 -h2_eaf,Reformer Furnace & Stack Air Blower,feed,kW / mtpy steel,0 -h2_eaf,Process Gas recycle,feed,kW / mtpy steel,0 -h2_eaf,DRI Scrubber Electricity,feed,kW / mtpy steel,0 -h2_eaf,Cooling Tower & Water Circulation Electricity,feed,kW / mtpy steel,0.000152171 -h2_eaf,Oxygen Supply Electricity,feed,kW / mtpy steel,0.004881748 -h2_eaf,Electric Arc Furnace Electricity,feed,kW / mtpy steel,0.041195744 -h2_eaf,Ladle Refining Electricity,feed,kW / mtpy steel,0.003218638 -h2_eaf,Miscellaneous Balance of Plant Electricity,feed,kW / mtpy steel,0 -ng_dri_eaf,Steel Production,capacity,mtpy,1189772 -ng_dri_eaf,Pig Iron Production,capacity,mtpy,1418206.915 -ng_dri_eaf,Capacity Factor,capacity,%,100 -ng_dri_eaf,Iron Ore,feed,mt ore / mt steel,1.629206363 -ng_dri_eaf,Reformer Catalyst,feed,m3 catalyst/mt steel,0.000003493 -ng_dri_eaf,Hydrogen,feed,mt H2 / mt steel,0 -ng_dri_eaf,Natural Gas,feed,GJ-LHV NG / mt steel,10.41822203 -ng_dri_eaf,Electricity,feed,MWh / mt steel,0.583453494 -ng_dri_eaf,Carbon (Coke),feed,mt C / mt steel,0.047169223 -ng_dri_eaf,Lime,feed,mt lime / mt steel,0.018120393 -ng_dri_eaf,Raw Water Withdrawal,feed,mt H2O / mt steel,1.158363659 -ng_dri_eaf,Carbon Dioxide (Methane as Fuel),emission,mt CO2 / mt steel,0 -ng_dri_eaf,Carbon Dioxide (Carbon),emission,mt CO2 / mt steel,0.721051998 -ng_dri_eaf,Slag,emission,mt slag / mt steel,0.174325548 -ng_dri_eaf,Surface Water Discharge,emission,mt H2O discharged/mt H2O withdrawn,0.326557377 -ng_dri_eaf,Steelmaking efficiency,efficiency,%,52.854 -ng_dri_eaf,Reformer Furnace & Stack Air Blower,feed,kW / mtpy steel,0.004095664 -ng_dri_eaf,Process Gas recycle,feed,kW / mtpy steel,0.00451324 -ng_dri_eaf,DRI Scrubber Electricity,feed,kW / mtpy steel,0.00011255 -ng_dri_eaf,Cooling Tower & Water Circulation Electricity,feed,kW / mtpy steel,0.000717118 -ng_dri_eaf,Oxygen Supply Electricity,feed,kW / mtpy steel,0.004981703 -ng_dri_eaf,Electric Arc Furnace Electricity,feed,kW / mtpy steel,0.040593161 -ng_dri_eaf,Ladle Refining Electricity,feed,kW / mtpy steel,0.003143966 -ng_dri_eaf,Miscellaneous Balance of Plant Electricity,feed,kW / mtpy steel,0.006901666 -ng_dri,Steel Production,capacity,mtpy,1189772 -ng_dri,Pig Iron Production,capacity,mtpy,1418206.915 -ng_dri,Capacity Factor,capacity,%,100 -ng_dri,Iron Ore,feed,mt ore / mt steel,1.629206363 -ng_dri,Reformer Catalyst,feed,m3 catalyst/mt steel,0.000003493 -ng_dri,Hydrogen,feed,mt H2 / mt steel,0 -ng_dri,Natural Gas,feed,GJ-LHV NG / mt steel,8.270148697 -ng_dri,Electricity,feed,MWh / mt steel,0.16645596 -ng_dri,Carbon (Coke),feed,mt C / mt steel,0 -ng_dri,Lime,feed,mt lime / mt steel,0 -ng_dri,Raw Water Withdrawal,feed,mt H2O / mt steel,0.905191697 -ng_dri,Carbon Dioxide (Methane as Fuel),emission,mt CO2 / mt steel,0 -ng_dri,Carbon Dioxide (Carbon),emission,mt CO2 / mt steel,0.721051998 -ng_dri,Slag,emission,mt slag / mt steel,0 -ng_dri,Surface Water Discharge,emission,mt H2O discharged/mt H2O withdrawn,0.281912658 -ng_dri,Steelmaking efficiency,efficiency,%,52.853 -ng_dri,Reformer Furnace & Stack Air Blower,feed,kW / mtpy steel,0.004095663 -ng_dri,Process Gas recycle,feed,kW / mtpy steel,0.00451324 -ng_dri,DRI Scrubber Electricity,feed,kW / mtpy steel,0.00011255 -ng_dri,Cooling Tower & Water Circulation Electricity,feed,kW / mtpy steel,0.000573694 -ng_dri,Oxygen Supply Electricity,feed,kW / mtpy steel,0.002805009 -ng_dri,Electric Arc Furnace Electricity,feed,kW / mtpy steel,0 -ng_dri,Ladle Refining Electricity,feed,kW / mtpy steel,0 -ng_dri,Miscellaneous Balance of Plant Electricity,feed,kW / mtpy steel,0.006901666 -ng_eaf,Steel Production,capacity,mtpy,1189772 -ng_eaf,Pig Iron Production,capacity,mtpy,1418206.915 -ng_eaf,Capacity Factor,capacity,%,100 -ng_eaf,Iron Ore,feed,mt ore / mt steel,0 -ng_eaf,Reformer Catalyst,feed,m3 catalyst/mt steel,0 -ng_eaf,Hydrogen,feed,mt H2 / mt steel,0 -ng_eaf,Natural Gas,feed,GJ-LHV NG / mt steel,2.148073333 -ng_eaf,Electricity,feed,MWh / mt steel,0.416997534 -ng_eaf,Carbon (Coke),feed,mt C / mt steel,0 -ng_eaf,Lime,feed,mt lime / mt steel,0 -ng_eaf,Raw Water Withdrawal,feed,mt H2O / mt steel,0.253171962 -ng_eaf,Carbon Dioxide (Methane as Fuel),emission,mt CO2 / mt steel,0 -ng_eaf,Carbon Dioxide (Carbon),emission,mt CO2 / mt steel,0 -ng_eaf,Slag,emission,mt slag / mt steel,0.174325548 -ng_eaf,Surface Water Discharge,emission,mt H2O discharged/mt H2O withdrawn,0.044644719 -ng_eaf,Steelmaking efficiency,efficiency,%,52.854 -ng_eaf,Reformer Furnace & Stack Air Blower,feed,kW / mtpy steel,0.000000001 -ng_eaf,Process Gas recycle,feed,kW / mtpy steel,0 -ng_eaf,DRI Scrubber Electricity,feed,kW / mtpy steel,0 -ng_eaf,Cooling Tower & Water Circulation Electricity,feed,kW / mtpy steel,0.000143424 -ng_eaf,Oxygen Supply Electricity,feed,kW / mtpy steel,0.002176694 -ng_eaf,Electric Arc Furnace Electricity,feed,kW / mtpy steel,0.040593161 -ng_eaf,Ladle Refining Electricity,feed,kW / mtpy steel,0.003143966 -ng_eaf,Miscellaneous Balance of Plant Electricity,feed,kW / mtpy steel,0 diff --git a/h2integrate/converters/iron/rosner/perf_model.py b/h2integrate/converters/iron/rosner/perf_model.py deleted file mode 100644 index 6afe032e3..000000000 --- a/h2integrate/converters/iron/rosner/perf_model.py +++ /dev/null @@ -1,106 +0,0 @@ -""" -Direct Reduced Iron (DRI) model developed by Rosner et al. -Energy Environ. Sci., 2023, 16, 4121 -doi.org/10.1039/d3ee01077e -""" - -import copy -from pathlib import Path - -import numpy as np -import pandas as pd - - -CD = Path(__file__).parent - - -def main(config): - """Processes and retrieves performance data for Direct Reduced Iron (DRI) modeling - or Electric Arc Furnace (EAF) modeling. - - This function either fits a new model by processing input data or loads precomputed - coefficients from a file. It then extracts performance data for the selected product - and site, and converts units from per-unit steel to per-unit iron if necessary. - - Args: - config (object): Configuration object containing: - - model (dict): Model-related settings including: - - refit_coeffs (bool): Whether to refit coefficients from input data. - - inputs_fp (str): File path to input data (if refitting). - - coeffs_fp (str): File path to coefficient data. - - product_selection (str): Selected product for analysis. - - params (dict): Additional parameters, including: - - capacity_denominator (str): Determines unit conversion (e.g., "iron"). - - Returns: - pd.DataFrame: Processed performance data with relevant coefficients. - - Raises: - ValueError: If the selected product or site is not found in the coefficient data. - - References: - Rosner et al., "Direct Reduced Iron (DRI) Model," Energy Environ. Sci., 2023, 16, 4121. - DOI: https://doi.org/10.1039/d3ee01077e - """ - # If re-fitting the model, load an inputs dataframe, otherwise, load up the coeffs - if config.model["refit_coeffs"]: - input_df = pd.read_csv(CD / config.model["inputs_fp"]) - - # Right now all the performance modeling is linear - input_df.insert(3, "Coeff", np.full((len(input_df),), "lin")) - - # Right now, no curve fitting - just copy input DataFrame to make coeff DataFrame - coeff_df = copy.deepcopy(input_df) - - coeff_df.to_csv(CD / config.model["coeffs_fp"]) - else: - coeff_df = pd.read_csv(CD / config.model["coeffs_fp"], index_col=0) - - prod = config.product_selection - site = "Model" - - rows = np.where(coeff_df.loc[:, "Product"] == prod)[0] - col = np.where(coeff_df.columns == site)[0] - cols = [0, 1, 2, 3, 4] - cols.extend(list(col)) - - if len(rows) == 0: - raise ValueError(f'Product "{prod}" not found in coeffs data!') - if len(cols) == 0: - raise ValueError(f'Site "{site}" not found in coeffs data!') - - prod_df = coeff_df.iloc[rows, cols] - - # Convert per unit steel to per unit iron - if config.params["capacity_denominator"] == "iron": - prod_df = prod_df.set_index("Name") - steel_cap = prod_df.loc["Steel Production", "Model"] - iron_cap = prod_df.loc["Pig Iron Production", "Model"] - for name, item in prod_df.iterrows(): - unit = item["Unit"] - if "steel" in unit: - steel_idx = unit.index("steel") - if len(unit) == steel_idx + 5: - new_unit = unit[:steel_idx] + "iron" - else: - new_unit = unit[:steel_idx] + "iron" + unit[steel_idx + 5 :] - steel_value = item["Model"] - iron_value = steel_value * steel_cap / iron_cap - prod_df.loc[name, "Model"] = iron_value - prod_df.loc[name, "Unit"] = new_unit - prod_df = prod_df.reset_index().set_index("Product").reset_index() - - # Right now, the there is no need to scale the coefficients. - # perf_df will contain the same values as coeff_df - # This will change when scaling/extrapolating mining operations - length, width = prod_df.shape - perf_cols = list(prod_df.columns.values) - perf_cols.remove("Coeff") - col_idxs = list(range(width)) - col_idxs.remove(3) - perf_df = pd.DataFrame([], columns=perf_cols) - for row in range(length): - if prod_df.iloc[row, 3] == "lin": - perf_df.loc[len(perf_df)] = prod_df.iloc[row, col_idxs] - - return perf_df diff --git a/h2integrate/converters/iron/rosner_ore/__init__.py b/h2integrate/converters/iron/rosner_ore/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/h2integrate/converters/iron/rosner_ore/finance_model.py b/h2integrate/converters/iron/rosner_ore/finance_model.py deleted file mode 100644 index 6ba726de6..000000000 --- a/h2integrate/converters/iron/rosner_ore/finance_model.py +++ /dev/null @@ -1,211 +0,0 @@ -import numpy as np -import ProFAST - -from h2integrate.tools.inflation.inflate import inflate_cpi -from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs - - -def main(config): - """ - Runs a techno-economic analysis of a reduction plant using ProFAST. - - This function retrieves cost data, configures ProFAST with financial assumptions, - and calculates the levelized cost of processed iron ore. It processes capital, - fixed, and variable operational costs while adjusting for inflation. - - Args: - config (object): Configuration object containing input parameters, including: - cost (object): Contains cost data in a DataFrame. - site (dict): Contains site-specific parameters, including the site name. - params (dict): Contains financial and operational parameters such as: - - - operational_year (int): The first year of plant operation. - - installation_years (int): Duration of installation in years. - - plant_life (int): Expected operational life of the plant in years. - - gen_inflation (float): General inflation rate. - - cost_year (int): The reference year for cost adjustments. - - financial_assumptions (dict): Key-value pairs of financial assumptions. - - Returns: - tuple: A tuple containing: - - sol (dict): Solution output from ProFAST, including the levelized cost. - - summary (dict): Summary values from the ProFAST model. - - price_breakdown (dict): Cost breakdown from ProFAST. - - pf (ProFAST.ProFAST): The ProFAST model instance with applied parameters. - """ - # Get reduction plant costs into data frame/series with cost names as index - costs = config.cost - cost_df = costs.costs_df.set_index("Name") - cost_ds = cost_df.loc[:, config.site["name"]] - cost_names = cost_df.index.values - cost_types = cost_df.loc[:, "Type"].values - cost_units = cost_df.loc[:, "Unit"].values - - operational_year = config.params["operational_year"] - install_years = config.params["installation_years"] - plant_life = config.params["plant_life"] - gen_inflation = config.params["gen_inflation"] - cost_year = config.params["cost_year"] - - analysis_start = operational_year - install_years - - # Set up ProFAST - pf = ProFAST.ProFAST("blank") - - # Apply all params passed through from config - for param, val in config.params["financial_assumptions"].items(): - pf.set_params(param, val) - pf.set_params("analysis start year", analysis_start) - pf.set_params("operating life", plant_life) - pf.set_params("installation months", 12 * install_years) - pf.set_params("general inflation rate", gen_inflation) - - # Set the commodity produced as processed iron ore - pf.set_params( - "commodity", - { - "name": "processed iron ore", - "unit": "wet metric tonnes", - "initial price": 80, - "escalation": gen_inflation, - }, - ) - - # Set plant production capacity - ore_produced_wltpy = cost_ds.loc["Ore pellets produced"] # wltpy = wet long tons per year - ore_produced_wmtpy = ore_produced_wltpy * 1.016047 # wmtpy = wet metric tones per year - pf.set_params("capacity", ore_produced_wmtpy / 365) # units/day - - # Set default parameters - pf.set_params("sell undepreciated cap", True) - pf.set_params("tax losses monetized", True) - pf.set_params("debt type", "Revolving debt") - - # Set unused parameters to zeros and ones - pf.set_params("maintenance", {"value": 0, "escalation": gen_inflation}) - pf.set_params("non depr assets", 0) - pf.set_params("end of proj sale non depr assets", 0) - pf.set_params("demand rampup", 0) - pf.set_params("long term utilization", 1) - pf.set_params("credit card fees", 0) - pf.set_params("sales tax", 0) - pf.set_params("license and permit", {"value": 00, "escalation": gen_inflation}) - pf.set_params("rent", {"value": 0, "escalation": gen_inflation}) - pf.set_params("property tax and insurance", 0) - pf.set_params("admin expense", 0) - pf.set_params("cash onhand", 1) - - """ - Add the costs - find the indices ("idxs") of the costs in the cost dataframe - and loop through each index ("idx") to add the name, unit, and value to ProFAST - """ - - # Add capital items - capital_idxs = np.where(cost_types == "capital")[0] - for idx in capital_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for capital costs should be " $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - - pf.add_capital_item( - name=name, - cost=cost, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - - # Add fixed opex costs - fixed_idxs = np.where(cost_types == "fixed opex")[0] - installation_cost = 0 - for idx in fixed_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - pf.add_fixed_cost( - name=name, - usage=1, - unit="$/year", - cost=cost, - escalation=gen_inflation, - ) - installation_cost += cost - - # Installation costs = 6 months fixed opex cost - installation_cost = installation_cost * 6 / 12 - pf.set_params( - "installation cost", - { - "value": installation_cost, - "depr type": "Straight line", - "depr period": 4, - "depreciable": False, - }, - ) - - """ - In the Martin model, the ProFAST 'feedstocks' cost class covers both the Martin model's - 'variable opex' costs, which are defined solely by the model for the specific technology, - and the Martin model's 'variable opex td' costs, which are UNIVERSAL, 'top-down' costs where - the price of the feedstock (e.g. natural gas) changes in tandem across multiple modules. - """ - - # Add variable opex costs (defined in model) - var_idxs = np.where(cost_types == "variable opex")[0] - installation_cost = 0 - for idx in var_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Should be " $ per " - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - pf.add_feedstock( - name=name, - usage=1.0, - unit=unit, - cost=cost, - escalation=gen_inflation, - ) - - # Add variable opex costs (look up price from 'top-down' inputs) - var_td_idxs = np.where(cost_types == "variable opex td")[0] - var_td_names = cost_names[var_td_idxs] - var_td_input_costs = load_top_down_coeffs(var_td_names, cost_year) - var_td_years = var_td_input_costs["years"] - year_start_idx = np.where(var_td_years == analysis_start)[0][0] - analysis_end = min(max(var_td_years), analysis_start + plant_life) - year_end_idx = np.where(var_td_years == analysis_end)[0][0] - year_idxs = range(year_start_idx, year_end_idx) - installation_cost = 0 - for idx in var_td_idxs: - name = cost_names[idx] - unit1 = cost_units[idx] # Should be " per " - var_td_usage = cost_ds.iloc[idx] - - var_td_dict = var_td_input_costs[name] - unit2 = var_td_dict["unit"] # Should be " $ per per " - var_td_usage = cost_ds.iloc[idx] - - var_td_dict = var_td_input_costs[name] - var_td_dict["unit"] # Should be " $ per $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cepci(source_year_cost, source_year, cost_year) - - pf.add_capital_item( - name=f"{module_label}: {name}", - cost=cost, - depr_type="MACRS", - depr_period=7, - refurb=[0], - ) - - # -------------------------------------- Add fixed costs-------------------------------- - fixed_idxs = np.where(cost_types == "fixed opex")[0] - for idx in fixed_idxs: - name = cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - cost = inflate_cpi(source_year_cost, source_year, cost_year) - pf.add_fixed_cost( - name=f"{module_label}: {name}", - usage=1, - unit="$/year", - cost=cost, - escalation=gen_inflation, - ) - # Putting property tax and insurance here to zero out depcreciation/escalation. - # Could instead put it in set_params if we think that is more accurate - - # ---------------------- Add feedstocks, note the various cost options------------------- - pf.add_feedstock( - name=f"{module_label}: Raw Water Withdrawal", - usage=perf_ds["Raw Water Withdrawal"], - unit="metric tonnes of water per metric tonne of iron", - cost=raw_water_unitcost, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Lime", - usage=perf_ds["Lime"], - unit="metric tonnes of lime per metric tonne of iron", - cost=lime_unitcost, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Carbon", - usage=perf_ds["Carbon (Coke)"], - unit="metric tonnes of carbon per metric tonne of iron", - cost=carbon_unitcost, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Iron Ore", - usage=perf_ds["Iron Ore"], - unit="metric tonnes of iron ore per metric tonne of iron", - cost=iron_ore_pellet_unitcost, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Hydrogen", - usage=perf_ds["Hydrogen"], - unit="metric tonnes of hydrogen per metric tonne of iron", - cost=lcoh_dollar_metric_tonne, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Natural Gas", - usage=perf_ds["Natural Gas"], - unit="GJ-LHV per metric tonne of iron", - cost=natural_gas_prices, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Electricity", - usage=perf_ds["Electricity"], - unit="MWh per metric tonne of iron", - cost=lcoe_dollar_MWH, - escalation=gen_inflation, - ) - pf.add_feedstock( - name=f"{module_label}: Slag Disposal", - usage=perf_ds["Slag"], - unit="metric tonnes of slag per metric tonne of iron", - cost=slag_disposal_unitcost, - escalation=gen_inflation, - ) - - pf.add_coproduct( - name=f"{module_label}: Oxygen sales", - usage=unused_oxygen, - unit="kg O2 per metric tonne of iron", - cost=oxygen_market_price, - escalation=gen_inflation, - ) - - # ------------------------------ Set up outputs --------------------------- - - sol = pf.solve_price() - summary = pf.get_summary_vals() - price_breakdown = pf.get_cost_breakdown() - - return sol, summary, price_breakdown, pf diff --git a/h2integrate/converters/iron/test/conftest.py b/h2integrate/converters/iron/test/conftest.py index 107ff3d86..3fa460d19 100644 --- a/h2integrate/converters/iron/test/conftest.py +++ b/h2integrate/converters/iron/test/conftest.py @@ -3,12 +3,18 @@ from h2integrate import EXAMPLE_DIR from h2integrate.core.inputs.validation import load_driver_yaml -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) @fixture def driver_config(): - driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + driver_config = load_driver_yaml( + EXAMPLE_DIR / "21_iron_examples" / "iron_dri" / "driver_config.yaml" + ) return driver_config diff --git a/h2integrate/converters/iron/test/input/default_fin_config.yaml b/h2integrate/converters/iron/test/input/default_fin_config.yaml deleted file mode 100644 index 6a87adbad..000000000 --- a/h2integrate/converters/iron/test/input/default_fin_config.yaml +++ /dev/null @@ -1,39 +0,0 @@ -battery_system: - batt_replacement_schedule_percent: [0] - batt_bank_replacement: [0] - batt_replacement_option: 0 - batt_computed_bank_capacity: 0 - batt_meter_position: 0 -system_costs: - om_fixed: [1] - om_production: [2] - om_capacity: [0] - om_batt_fixed_cost: 42.888 - om_batt_variable_cost: [0] - om_batt_capacity_cost: 0 - om_batt_replacement_cost: 0 - om_replacement_cost_escal: 0 -revenue: - ppa_price_input: [0.01] # cents/kWh - ppa_escalation: 1 # % -system_use_lifetime_output: 0 -financial_parameters: - inflation_rate: 2.5 - real_discount_rate: 6.98 - federal_tax_rate: 21.0 - state_tax_rate: 4.74 - property_tax_rate: 1.0 - insurance_rate: 0.5 - debt_percent: 68.5 - term_int_rate: 4.6 - months_working_reserve: 1 - analysis_start_year: 2025 - installation_months: 36 - sales_tax_rate_state: 0.0 - admin_expense_percent_of_sales: 1.0 - capital_gains_tax_rate: 15.0 - debt_type: Revolving debt - depreciation_method: MACRS - depreciation_period: 5 -cp_capacity_credit_percent: [0] -degradation: [0] diff --git a/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml b/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml deleted file mode 100644 index d0f6ef653..000000000 --- a/h2integrate/converters/iron/test/input/h2integrate_config_modular.yaml +++ /dev/null @@ -1,393 +0,0 @@ -site: - mean_windspeed: false - depth: 0 # m - wind_layout: - row_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - turbine_spacing: 5 # Also defined in ORBIT config for offshore layout. H2Integrate config values override the values in ORBIT. - grid_angle: 0 # wind layout grid angle in degrees where 0 is north, increasing clockwise - row_phase_offset: 0 # wind layout offset of turbines along row from one row to the next -project_parameters: - project_lifetime: 30 - grid_connection: false # option, can be turned on or off - ppa_price: 0.025 # $/kWh based on 2022 land based wind market report (ERCOT area ppa prices) https://www.energy.gov/sites/default/files/2022-08/land_based_wind_market_report_2202.pdf - hybrid_electricity_estimated_cf: 0.492 # should equal 1 if grid_connection = True - financial_analysis_start_year: 2032 - cost_year: 2022 # to match ATB - installation_time: 36 # months -finance_parameters: - costing_general_inflation: 0.025 # used to adjust modeled costs to cost_year - inflation_rate: 0 # based on 2022 ATB - discount_rate: 0.0948 # nominal return based on 2022 ATB basline workbook - debt_equity_ratio: 1.72 - property_tax: 0.01 # percent of CAPEX # combined with property insurance then between H2A and H2FAST defaults - property_insurance: 0.005 # percent of CAPEX # combined with property tax then between H2A and H2FAST defaults - total_income_tax_rate: 0.2574 # 0.257 tax rate in 2022 atb baseline workbook # current federal income tax rate, but proposed 2023 rate is 0.28. No state income tax in Texas - capital_gains_tax_rate: 0.15 # H2FAST default - sales_tax_rate: 0.0 # Verify that a different rate shouldn't be used # minimum total sales tax rate in Corpus Christi https://www.cctexas.com/detail/corpus-christi-type-fund-purpose - does this apply to H2? - debt_interest_rate: 0.046 - debt_type: Revolving debt # can be "Revolving debt" or "One time loan". Revolving debt is H2FAST default and leads to much lower LCOH - loan_period: 0 # H2FAST default, not used for revolving debt - cash_onhand_months: 1 # H2FAST default - administrative_expense_percent_of_sales: 0.00 # Check this # percent of sales H2FAST default - depreciation_method: MACRS # can be "MACRS" or "Straight line" - MACRS may be better and can reduce LCOH by more than $1/kg and is spec'd in the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period: 7 # years - as specified by the IRS MACRS schedule https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - depreciation_period_electrolyzer: 7 # based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years. also see https://www.irs.gov/publications/p946#en_US_2020_publink1000107507 - discount_years: - wind: 2020 # Updated for GS - wind_and_electrical: 2020 # Updated for GS - wave: 2020 # confirmed by Kaitlin Brunik 20240103 - solar: 2020 # Updated for GS - battery: 2020 # Updated for GS - platform: 2022 # TODO ask Nick and Charlie - electrical_export_system: 2022 # also from ORBIT, so match wind assumptions. TODO ask Sophie Bradenkamp - desal: 2013 # from code citation: https://www.nrel.gov/docs/fy16osti/66073.pdf - electrolyzer: 2020 # 2020 for singlitico2021, 2016 # for simple h2 cost model in hopp (see https://www.hydrogen.energy.gov/pdfs/19009_h2_production_cost_pem_electrolysis_2019.pdf) ## 2020 # based on IRENA report https://www.irena.org/-/media/Files/IRENA/Agency/Publication/2020/Dec/IRENA_Green_hydrogen_cost_2020.pdf - h2_transport_compressor: 2016 # listed in code header - h2_storage: - pressure_vessel: 2022 # based on readme for Compressed_gas_function - pipe: 2019 # Papadias 2021 - salt_cavern: 2019 # Papadias 2021 - turbine: 2003 # assumed based on Kottenstette 2004 - lined_rock_cavern: 2018 # based on Papadias 2021 and HD SAM - none: 2022 # arbitrary - h2_pipe_array: 2018 # ANL costs - h2_transport_pipeline: 2018 # same model for costs as the h2_pipe_array - wind: - expected_plant_cost: none -electrolyzer: - size_mode: normal - rating: 1160 # MW - cluster_rating_MW: 40 - eol_eff_percent_loss: 13 # eol defined as x% change in efficiency from bol - uptime_hours_until_eol: 77600 # number of 'on' hours until electrolyzer reaches eol - include_degradation_penalty: true # include degradation - turndown_ratio: 0.1 # turndown_ratio = minimum_cluster_power/cluster_rating_MW - electrolyzer_capex: 1600 # $/kW - time_between_replacement: 62320 # 62320 based on PEM Electrolysis H2A Production Case Study Documentation estimate of 7 years, 40000 based on current est (see unpublished report), 80000 hours based on OSW atb_year = 2025 - replacement_cost_percent: 0.15 # percent of capex - H2A default case - cost_model: singlitico2021 # "basic" is a basic cost model based on H2a and HFTO program record for PEM electrolysis. "singlitico2021" uses cost estimates from that paper -h2_transport_compressor: - outlet_pressure: 68 # bar based on HDSAM -h2_storage_compressor: - output_pressure: 100 # bar (1 bar = 100 kPa) - flow_rate: 89 # kg/hr - energy_rating: 802 # kWe (aka 1 kWh) - mean_days_between_failures: 200 # days -h2_transport_pipe: - outlet_pressure: 10 # bar - from example in code from Jamie # TODO check this value -h2_storage: - size_capacity_from_demand: - flag: true # If True, then storage is sized to provide steady-state storage - capacity_from_max_on_turbine_storage: false # if True, then days of storage is ignored and storage capacity is based on how much h2 storage fits on the turbines in the plant using Kottenstete 2003. - type: lined_rock_cavern # can be one of ["none", "pipe", "turbine", "pressure_vessel", "salt_cavern", "lined_rock_cavern"] - days: 0 # 8.57267 # from `hydrogen_storage_duration_hr` = 205.74419987482239 [days] how many days worth of production we should be able to store (this is ignored if `capacity_from_max_on_turbine_storage` is set to True) -policy_parameters: # these should be adjusted for inflation prior to application - order of operations: rate in 1992 $, -# then prevailing wage multiplier if applicable, then inflation - option1: # base # no policy included ---> see files/task1/regulation and policy revue/ page 4 of 13 middle - read this - # and look at assumptions - electricity_itc: 0 - electricity_ptc: 0 - h2_ptc: 0 - h2_storage_itc: 0 - option2: # base credit levels with H2 - electricity_itc: 0 - electricity_ptc: 0.003 # $0.003/kW (this is base, see inflation adjustment in option 3) - h2_ptc: 0.6 # $0.60/kg h2 produced - assumes net zero but not meeting prevailing wage requirements - does this need to be - # adjusted for inflation from 2022 dollars to claim date, probably constant after claim date? - h2_storage_itc: 0.06 - option3: # same as option 5, but assuming prevailing wages are met --> 5x multiplier on both PTCs - electricity_itc: 0 - electricity_ptc: 0.015 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg 2022 dollars - do not adjust for inflation - h2_storage_itc: 0.3 - # bonus options, option 5 and 6 but ITC equivalents - option4: # prevailing wages not met - electricity_itc: 0.06 # %/100 capex - electricity_ptc: 0.00 # $/kW 1992 dollars - h2_ptc: 0.6 # $0.60/kg produced 2022 dollars - assumes net zero but not meeting prevailing wage requirements - does this need to be - # do not adjust for inflation, probably constant after claim date? - h2_storage_itc: 0.06 - option5: # prevailing wages met - electricity_itc: 0.30 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.3 - option6: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.40 # %/100 capex - electricity_ptc: 0.0 # $/kWh 1992 dollars - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0.4 - option7: # assumes prevailing wages are met, and includes 10% bonus credit of domestic content (100% of steel and iron - # and mfg. components from the US) - electricity_itc: 0.0 # %/100 capex - electricity_ptc: 0.0165 # $/kWh 1992 dollars (0.015*1.1) - h2_ptc: 3.00 # $/kg of h2 produced 2022 dollars - do adjust for inflation every year applied and until application year - h2_storage_itc: 0 - # you can elect itc_for_h2 in leu of the h2_ptc - this choice is independent of the other tech credit selections - # 6% or %50 for itc_for_h2 -plant_design: - scenario0: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario1: - electrolyzer_location: onshore # can be one of ["onshore", "turbine", "platform"] - transportation: hvdc # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario2: - electrolyzer_location: onshore # can be one of ["onshore", "turbine", "platform"] - transportation: hvdc # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario3: - electrolyzer_location: turbine # can be one of ["onshore", "turbine", "platform"] - transportation: none # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: turbine # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario4: - electrolyzer_location: turbine # can be one of ["onshore", "turbine", "platform"] - transportation: none # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario5: - electrolyzer_location: turbine # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario6: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: none # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: platform # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario7: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - pv_location: none # can be one of ["none", "onshore", "platform"] - battery_location: none # can be one of ["none", "onshore", "platform"] - scenario8: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: hvdc+pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: offshore # can be one of ["onshore", "offshore"] - scenario9: - electrolyzer_location: onshore # can be one of ["onshore", "turbine", "platform"] - transportation: colocated # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - wind_location: onshore # can be one of ["onshore", "offshore"] - pv_location: onshore # can be one of ["none", "onshore", "platform"] - battery_location: onshore # can be one of ["none", "onshore", "platform"] - scenario10: - electrolyzer_location: platform # can be one of ["onshore", "turbine", "platform"] - transportation: pipeline # can be one of ["hvdc", "pipeline", "none", hvdc+pipeline, "colocated"] - h2_storage_location: onshore # can be one of ["onshore", "turbine", "platform"] - pv_location: platform # can be one of ["none", "onshore", "platform"] - battery_location: platform # can be one of ["none", "onshore", "platform"] -iron_ore: - site: - lat: 47.29415278 - lon: -91.25649444 - resource_dir: /../data_library/weather/ - name: Northshore - product_selection: drg_taconite_pellets #'drg_taconite_pellets' # 'std_taconite_pellets' # - performance_model: - name: martin_ore # 'martin_ore' - refit_coeffs: false - cost_model: - name: martin_ore # 'martin_ore' - refit_coeffs: false - finance_model: - name: martin_ore # 'martin_ore', 'rosner_ore' - performance: - input_capacity_factor_estimate: 0.9 - costs: - operational_year: 2035 - installation_years: 3 - plant_life: 30 - o2_heat_integration: false - finances: - gen_inflation: 0.025 - # Additional parameters passed to ProFAST - financial_assumptions: - total income tax rate: 0.2574 - capital gains tax rate: 0.15 - leverage after tax nominal discount rate: 0.10893 - debt equity ratio of initial financing: 0.624788 - debt interest rate: 0.050049 -iron_win: - site: - lat: 41 - lon: -78 - resource_dir: /../data_library/weather/ - name: Mid WI - product_selection: ng_dri # 'h2_dri' # 'ng_dri' - performance_model: - name: rosner # 'rosner' - refit_coeffs: false - cost_model: - name: rosner # 'rosner' - refit_coeffs: false - finance_model: - name: rosner # 'rosner', 'rosner_override' - performance: - plant_capacity_mtpy: 1418095 - capacity_denominator: iron # steel - costs: - operational_year: 2035 - installation_years: 3 - plant_life: 30 - o2_heat_integration: false - finances: - gen_inflation: 0.025 - # Additional parameters passed to ProFAST - financial_assumptions: - total income tax rate: 0.2574 - capital gains tax rate: 0.15 - leverage after tax nominal discount rate: 0.10893 - debt equity ratio of initial financing: 0.624788 - debt interest rate: 0.050049 -iron_post: - site: - lat: 41 - lon: -84 - resource_dir: /../data_library/weather/ - name: Mid WI - product_selection: ng_eaf #''h2_eaf' # 'ng_eaf' - performance_model: - name: rosner # 'rosner' - refit_coeffs: false - cost_model: - name: rosner # 'rosner' - refit_coeffs: false - finance_model: - name: rosner # 'rosner', 'rosner_override' - performance: - plant_capacity_mtpy: 1000000 - costs: - operational_year: 2035 - installation_years: 3 - plant_life: 30 - o2_heat_integration: false - finances: - gen_inflation: 0.025 - # Additional parameters passed to ProFAST - financial_assumptions: - total income tax rate: 0.2574 - capital gains tax rate: 0.15 - leverage after tax nominal discount rate: 0.10893 - debt equity ratio of initial financing: 0.624788 - debt interest rate: 0.050049 -lca_config: - run_lca: true # True - electrolyzer_type: pem # alkaline, soec - feedstock_water_type: ground # desal, surface - cambium: # cambium API argument, see cambium_data.py for additional argument options - project_uuid: 0f92fe57-3365-428a-8fe8-0afc326b3b43 - scenario: Mid-case with 100% decarbonization by 2035 - location_type: GEA Regions 2023 - time_type: hourly -opt_options: - opt_flag: true - general: - folder_output: output - fname_output: optimization_log - design_variables: - electrolyzer_rating_kw: - flag: true - lower: 1000.0 - upper: 2000000.0 - units: kW - pv_capacity_kw: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW - wave_capacity_kw: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW*h - battery_capacity_kw: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW - battery_capacity_kwh: - flag: false - lower: 1000.0 - upper: 2000000.0 - units: kW*h - turbine_x: - flag: false - lower: 0.0 - upper: 20000.0 - units: m - turbine_y: - flag: false - lower: 0.0 - upper: 20000.0 - units: m - constraints: - turbine_spacing: - flag: false - lower: 0.0 - boundary_distance: - flag: false - lower: 0.0 - pv_to_platform_area_ratio: - flag: false - upper: 1.0 # relative size of solar pv area to platform area - user: {} - merit_figure: lcoi - merit_figure_user: - name: lcoi - max_flag: false - ref: 1.0 # value of objective that scales to 1.0 - driver: - optimization: - flag: true - solver: SNOPT - tol: 1E-6 - gradient_method: snopt_fd # can be one of ['pyopt_fd', 'openmdao', 'snopt_fd'] - max_major_iter: 10 - max_minor_iter: 30 - # time_limit: 10 # (sec) optional - # "hist_file_name: "snopt_history.txt", # optional - verify_level: 0 # optional - step_calc: None - form: forward # type of finite differences to use, can be one of ["forward", "backward", "central"] - debug_print: false - design_of_experiments: - flag: false - run_parallel: false - generator: FullFact # [Uniform, FullFact, PlackettBurman, BoxBehnken, LatinHypercube] - num_samples: 5 # Number of samples to evaluate model at (Uniform and LatinHypercube only) - seed: 2 - levels: 5 # Number of evenly spaced levels between each design variable lower and upper bound (FullFactorial only) - criterion: None # [None, center, c, maximin, m, centermaximin, cm, correelation, corr] - iterations: 1 - debug_print: false - step_size_study: - flag: false - recorder: - flag: true - file_name: record.sql - includes: false diff --git a/h2integrate/converters/iron/test/input/hopp_config.yaml b/h2integrate/converters/iron/test/input/hopp_config.yaml deleted file mode 100644 index 3e9621a21..000000000 --- a/h2integrate/converters/iron/test/input/hopp_config.yaml +++ /dev/null @@ -1,95 +0,0 @@ -site: #!include flatirons_site.yaml - data: - lat: 47.5233 - lon: -92.5366 - elev: 1099 - year: 2013 - tz: -6 - site_boundaries: - verts: - - [0.0, 0.0] - - [0.0, 20000.0] - - [20000.0, 20000.0] - - [20000.0, 0.0] - verts_simple: - - [0.0, 0.0] - - [0.0, 20000.0] - - [20000.0, 20000.0] - - [20000.0, 0.0] - solar_resource_file: ../../../../resource_files/solar/47.5233_-92.5366_psmv3_60_2013.csv - wind_resource_file: ../../../../resource_files/wind/47.5233_-92.5366_windtoolkit_2013_60min_100m_120m.srw - wave_resource_file: '' - grid_resource_file: '' - hub_height: 115.0 - capacity_hours: [] - solar: true - wind: true - wave: false - wind_resource_origin: WTK -technologies: - wind: - num_turbines: 216 - turbine_rating_kw: 6000.0 - model_name: floris - timestep: [0, 8760] - floris_config: input_files/floris/floris_input_lbw_6MW.yaml - fin_model: !include default_fin_config.yaml - hub_height: 115.0 - pv: - system_capacity_kw: 100000 - dc_degradation: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - fin_model: !include default_fin_config.yaml - battery: - system_capacity_kwh: 100000 - system_capacity_kw: 100000 - minimum_SOC: 20.0 - maximum_SOC: 100.0 - initial_SOC: 90.0 - fin_model: !include default_fin_config.yaml - grid: - interconnect_kw: 2000000 # Set higher than rated generation capacity - fin_model: !include default_fin_config.yaml -config: - simulation_options: - wind: - skip_financial: false - dispatch_options: - battery_dispatch: load_following_heuristic # load_following_heuristic # heuristic - solver: cbc - n_look_ahead_periods: 48 - grid_charging: false - pv_charging_only: false - include_lifecycle_count: false - cost_info: # Costs from GS Manuscript Supplemental Table S11 - wind_installed_cost_mw: 1098000 # (2020USD) - solar_installed_cost_mw: 991000 # (2020USD) - storage_installed_cost_mwh: 158000 # (2020USD) - storage_installed_cost_mw: 212000 # (2020USD) - wind_om_per_kw: 25.8 # (2020USD) - pv_om_per_kw: 17.2 # (2020USD) - battery_om_per_kw: 9.25 # (2020USD) based on 0.025 percent of battery capex with a 100MW 1hr battery diff --git a/h2integrate/converters/iron/test/test_iron_mine.py b/h2integrate/converters/iron/test/test_iron_mine.py deleted file mode 100644 index 953bde012..000000000 --- a/h2integrate/converters/iron/test/test_iron_mine.py +++ /dev/null @@ -1,153 +0,0 @@ -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate.converters.iron.iron_mine import ( - IronMineCostComponent, - IronMinePerformanceComponent, -) - - -@fixture -def iron_ore_config_martin_om(): - shared_params = { - "mine": "Northshore", - "taconite_pellet_type": "drg", - } - performance_params = {"ore_cf_estimate": 0.9, "model_name": "martin_ore"} - cost_params = { - "LCOE": 58.02, - "LCOH": 7.10, - "model_name": "martin_ore", - "varom_model_name": "martin_ore", - "installation_years": 3, - "operational_year": 2035, - # 'plant_life': 30, - } - - tech_config = { - "model_inputs": { - "cost_parameters": cost_params, - "performance_parameters": performance_params, - "shared_parameters": shared_params, - } - } - return tech_config - - -@fixture -def iron_ore_config_rosner_om(): - shared_params = { - "mine": "Northshore", - "taconite_pellet_type": "drg", - } - performance_params = {"ore_cf_estimate": 0.9, "model_name": "martin_ore"} - cost_params = { - "LCOE": 58.02, - "LCOH": 7.10, - "model_name": "martin_ore", - "varom_model_name": "rosner_ore", - "installation_years": 3, - "operational_year": 2035, - # 'plant_life': 30, - } - - tech_config = { - "model_inputs": { - "cost_parameters": cost_params, - "performance_parameters": performance_params, - "shared_parameters": shared_params, - } - } - return tech_config - - -# baseline case -@pytest.mark.regression -def test_baseline_iron_ore_costs_martin( - plant_config, driver_config, iron_ore_config_martin_om, subtests -): - martin_ore_capex = 1221599018.626594 - martin_ore_var_om = 441958721.59532887 - martin_ore_fixed_om = 0.0 - - prob = om.Problem() - iron_ore_perf = IronMinePerformanceComponent( - plant_config=plant_config, - tech_config=iron_ore_config_martin_om, - driver_config=driver_config, - ) - - iron_ore_cost = IronMineCostComponent( - plant_config=plant_config, - tech_config=iron_ore_config_martin_om, - driver_config=driver_config, - ) - - prob.model.add_subsystem("ore_perf", iron_ore_perf, promotes=["*"]) - prob.model.add_subsystem("ore_cost", iron_ore_cost, promotes=["*"]) - prob.setup() - prob.run_model() - - annual_ore = prob.get_val("ore_perf.total_iron_ore_produced", units="t/year") - with subtests.test("Annual Ore"): - assert pytest.approx(annual_ore[0] / 365, rel=1e-6) == 12385.195376438356 - with subtests.test("CapEx"): - assert ( - pytest.approx(prob.get_val("ore_cost.CapEx", units="USD")[0], rel=1e-6) - == martin_ore_capex - ) - with subtests.test("OpEx"): - assert ( - pytest.approx(prob.get_val("ore_cost.OpEx", units="USD/year")[0], rel=1e-6) - == martin_ore_fixed_om - ) - with subtests.test("VarOpEx"): - assert ( - pytest.approx(prob.get_val("ore_cost.VarOpEx", units="USD/year")[0], rel=1e-6) - == martin_ore_var_om - ) - - -@pytest.mark.regression -def test_baseline_iron_ore_costs_rosner( - plant_config, driver_config, iron_ore_config_rosner_om, subtests -): - rosner_ore_capex = 1221599018.626594 - rosner_ore_var_om = 441958721.59532887 - rosner_ore_fixed_om = 0.0 - prob = om.Problem() - iron_ore_perf = IronMinePerformanceComponent( - plant_config=plant_config, - tech_config=iron_ore_config_rosner_om, - driver_config=driver_config, - ) - - iron_ore_cost = IronMineCostComponent( - plant_config=plant_config, - tech_config=iron_ore_config_rosner_om, - driver_config=driver_config, - ) - - prob.model.add_subsystem("ore_perf", iron_ore_perf, promotes=["*"]) - prob.model.add_subsystem("ore_cost", iron_ore_cost, promotes=["*"]) - prob.setup() - prob.run_model() - annual_ore = prob.get_val("ore_perf.total_iron_ore_produced", units="t/year") - with subtests.test("Annual Ore"): - assert pytest.approx(annual_ore[0] / 365, rel=1e-6) == 12385.195376438356 - with subtests.test("CapEx"): - assert ( - pytest.approx(prob.get_val("ore_cost.CapEx", units="USD")[0], rel=1e-6) - == rosner_ore_capex - ) - with subtests.test("OpEx"): - assert ( - pytest.approx(prob.get_val("ore_cost.OpEx", units="USD/year")[0], rel=1e-6) - == rosner_ore_fixed_om - ) - with subtests.test("VarOpEx"): - assert ( - pytest.approx(prob.get_val("ore_cost.VarOpEx", units="USD/year")[0], rel=1e-6) - == rosner_ore_var_om - ) diff --git a/h2integrate/converters/iron/test/test_iron_ore.py b/h2integrate/converters/iron/test/test_iron_ore.py deleted file mode 100644 index 727fadcfb..000000000 --- a/h2integrate/converters/iron/test/test_iron_ore.py +++ /dev/null @@ -1,219 +0,0 @@ -import copy -import shutil -from pathlib import Path - -import pytest -from pytest import approx, fixture - -from h2integrate.converters.iron import iron - - -@fixture -def iron_ore(): - iron_ore = { - "project_parameters": { - "cost_year": 2022, - "project_lifetime": 30, - "grid_connection": False, - "ppa_price": 0.025, - "hybrid_electricity_estimated_cf": 0.492, - "financial_analysis_start_year": 2032, - "installation_time": 36, - }, - "iron": { - "site": { - "lat": 47.29415278, - "lon": -91.25649444, - "resource_dir": "/../data_library/weather/", - "name": "Northshore", - }, - "product_selection": "drg_taconite_pellets", # 'std_taconite_pellets' - "performance_model": { - "name": "martin_ore", - "refit_coeffs": False, - }, - "cost_model": { - "name": "martin_ore", - "refit_coeffs": False, - }, - "finance_model": { - "name": "martin_ore", # 'rosner_ore' also an option - }, - "performance": { - "input_capacity_factor_estimate": 0.9, - }, - "costs": { - "operational_year": 2035, - "installation_years": 3, - "plant_life": 30, - "o2_heat_integration": False, - "lcoh": 2.80, - }, - "finances": { - "lcoh": 2.80, - "gen_inflation": 0.025, - "financial_assumptions": { - "total income tax rate": 0.2574, - "capital gains tax rate": 0.15, - "leverage after tax nominal discount rate": 0.10893, - "debt equity ratio of initial financing": 0.624788, - "debt interest rate": 0.050049, - }, - }, - }, - } - return iron_ore - - -@pytest.mark.regression -def test_run_martin_iron_ore(iron_ore, subtests): - performance, cost, finance = iron.run_iron_full_model(iron_ore) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: drg_taconite_pellets"): - assert perf_df.loc[perf_df["Name"] == "Pellet Fe Content", "Northshore"].values[ - 0 - ] == approx(67.35, 1e-3) - with subtests.test("cost model: drg_taconite_pellets"): - assert cost_df.loc[ - cost_df["Name"] == "Buildings and other structures", "Northshore" - ].values[0] == approx(1012588246, 1e-3) - with subtests.test("finance model: drg_taconite_pellets"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(125.25, 1e-3) - - # Test a different ore type - iron_ore_copy = copy.deepcopy(iron_ore) # Create an isolated copy - iron_ore_copy["iron"]["product_selection"] = "std_taconite_pellets" - performance, cost, finance = iron.run_iron_full_model(iron_ore_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - with subtests.test("performance model: std_taconite_pellets"): - assert perf_df.loc[perf_df["Name"] == "Pellet Fe Content", "Northshore"].values[ - 0 - ] == approx(65.0, 1e-3) - with subtests.test("cost model: std_taconite_pellets"): - assert cost_df.loc[ - cost_df["Name"] == "Buildings and other structures", "Northshore" - ].values[0] == approx(802586723.3, 1e-3) - with subtests.test("finance model: std_taconite_pellets"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(99.28, 1e-3) - - # Test a different mine location - # TODO: check that site lat/lon get updated if you're changing site name - iron_ore_copy = copy.deepcopy(iron_ore) # Create an isolated copy - iron_ore_copy["iron"]["site"]["name"] = "United" - performance, cost, finance = iron.run_iron_full_model(iron_ore_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - with subtests.test("performance model: different location"): - assert perf_df.loc[perf_df["Name"] == "Pellet Fe Content", "United"].values[0] == approx( - 67.63, 1e-3 - ) - with subtests.test("cost model: different location"): - assert cost_df.loc[cost_df["Name"] == "Buildings and other structures", "United"].values[ - 0 - ] == approx(1118066189.0, 1e-3) - with subtests.test("finance model: different location"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(141.91, 1e-3) - - -@pytest.mark.regression -def test_refit_coefficients(iron_ore, subtests): - # Determine the model directory based on the model name - iron_tech_dir = Path(__file__).parents[3] / "h2integrate" / "converters" / "iron" - model_name = iron_ore["iron"]["cost_model"]["name"] - model_dir = iron_tech_dir / model_name - - # Backup both performance and cost coefficient files - cost_coeffs_file = model_dir / "cost_coeffs.csv" - cost_backup_file = model_dir / "cost_coeffs_backup.csv" - perf_coeffs_file = model_dir / "perf_coeffs.csv" - perf_backup_file = model_dir / "perf_coeffs_backup.csv" - - if cost_coeffs_file.exists(): - shutil.copy2(cost_coeffs_file, cost_backup_file) - if perf_coeffs_file.exists(): - shutil.copy2(perf_coeffs_file, perf_backup_file) - - # Non-refit coefficients - performance, cost, finance = iron.run_iron_full_model(iron_ore) - perf_df = performance.performances_df - cost_df = cost.costs_df - - # Refit coefficients performance model - iron_ore_copy = copy.deepcopy(iron_ore) - iron_ore_copy["iron"]["performance_model"]["refit_coeffs"] = True - performance2, cost2, finance2 = iron.run_iron_full_model(iron_ore_copy) - perf_df2 = performance2.performances_df - cost_df2 = cost2.costs_df - with subtests.test("performance model: refit coefficients"): - assert perf_df2.loc[perf_df2["Name"] == "Pellet Fe Content", "Northshore"].values[ - 0 - ] == approx( - perf_df.loc[perf_df["Name"] == "Pellet Fe Content", "Northshore"].values[0], 1e-3 - ) - with subtests.test("cost model: refit coefficients"): - assert cost_df2.loc[ - cost_df2["Name"] == "Buildings and other structures", "Northshore" - ].values[0] == approx( - cost_df.loc[cost_df["Name"] == "Buildings and other structures", "Northshore"].values[ - 0 - ], - 1e-3, - ) - with subtests.test("finance model: refit coefficients"): - assert finance2.sol["lco"] == approx(finance.sol["lco"], 1e-3) - - # Refit coefficients cost model - iron_ore_copy = copy.deepcopy(iron_ore) - iron_ore_copy["iron"]["cost_model"]["refit_coeffs"] = True - performance2, cost2, finance2 = iron.run_iron_full_model(iron_ore_copy) - perf_df2 = performance2.performances_df - cost_df2 = cost2.costs_df - with subtests.test("performance model: refit coefficients"): - assert perf_df2.loc[perf_df2["Name"] == "Pellet Fe Content", "Northshore"].values[ - 0 - ] == approx( - perf_df.loc[perf_df["Name"] == "Pellet Fe Content", "Northshore"].values[0], 1e-3 - ) - with subtests.test("cost model: refit coefficients"): - assert cost_df2.loc[ - cost_df2["Name"] == "Buildings and other structures", "Northshore" - ].values[0] == approx( - cost_df.loc[cost_df["Name"] == "Buildings and other structures", "Northshore"].values[ - 0 - ], - 1e-3, - ) - with subtests.test("finance model: refit coefficients"): - assert finance2.sol["lco"] == approx(finance.sol["lco"], 1e-3) - - # Restore the original coefficient files - if cost_backup_file.exists(): - shutil.move(cost_backup_file, cost_coeffs_file) - if perf_backup_file.exists(): - shutil.move(perf_backup_file, perf_coeffs_file) - - -@pytest.mark.regression -def test_run_rosner_iron_ore(iron_ore, subtests): - iron_ore_copy = copy.deepcopy(iron_ore) - iron_ore_copy["iron"]["finance_model"]["name"] = "rosner_ore" - performance, cost, finance = iron.run_iron_full_model(iron_ore_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - with subtests.test("performance model: drg_taconite_pellets"): - assert perf_df.loc[perf_df["Name"] == "Pellet Fe Content", "Northshore"].values[ - 0 - ] == approx(67.35, 1e-3) - with subtests.test("cost model: drg_taconite_pellets"): - assert cost_df.loc[ - cost_df["Name"] == "Buildings and other structures", "Northshore" - ].values[0] == approx(1012588246, 1e-3) - with subtests.test("finance model: drg_taconite_pellets"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(207.66, 1e-3) diff --git a/h2integrate/converters/iron/test/test_iron_plant.py b/h2integrate/converters/iron/test/test_iron_plant.py deleted file mode 100644 index 865936330..000000000 --- a/h2integrate/converters/iron/test/test_iron_plant.py +++ /dev/null @@ -1,133 +0,0 @@ -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate.converters.iron.iron_plant import ( - IronPlantCostComponent, - IronPlantPerformanceComponent, -) - - -@fixture -def iron_dri_config_rosner_ng(): - shared_params = { - "winning_type": "ng", - "iron_win_capacity": 1418095, - "site_name": "IL", - } - performance_params = {"win_capacity_demon": "iron", "model_name": "rosner"} - cost_params = { - "LCOE": 58.02, - "LCOH": 7.10, - "LCOI_ore": 125.25996463784443, - "iron_transport_cost": 30.566808424134745, - "ore_profit_pct": 6.0, - "varom_model_name": "rosner", - "installation_years": 3, - "operational_year": 2035, - # 'plant_life': 30, - } - - tech_config = { - "model_inputs": { - "cost_parameters": cost_params, - "performance_parameters": performance_params, - "shared_parameters": shared_params, - } - } - return tech_config - - -@pytest.mark.regression -def test_baseline_iron_dri_costs_rosner_ng( - plant_config, driver_config, iron_dri_config_rosner_ng, subtests -): - expected_capex = 403808062.6981323 - expected_var_om = 369445330.68402404 - expected_fixed_om = 60103761.59958463 - capacity = 3885.1917808219177 - - prob = om.Problem() - iron_dri_perf = IronPlantPerformanceComponent( - plant_config=plant_config, - tech_config=iron_dri_config_rosner_ng, - driver_config=driver_config, - ) - - iron_dri_cost = IronPlantCostComponent( - plant_config=plant_config, - tech_config=iron_dri_config_rosner_ng, - driver_config=driver_config, - ) - - prob.model.add_subsystem("dri_perf", iron_dri_perf, promotes=["*"]) - prob.model.add_subsystem("dri_cost", iron_dri_cost, promotes=["*"]) - prob.setup() - prob.run_model() - - annual_pig_iron = prob.get_val("dri_perf.total_pig_iron_produced", units="t/year") - with subtests.test("Annual Ore"): - assert pytest.approx(annual_pig_iron[0] / 365, rel=1e-3) == capacity - with subtests.test("CapEx"): - assert ( - pytest.approx(prob.get_val("dri_cost.CapEx", units="USD")[0], rel=1e-6) - == expected_capex - ) - with subtests.test("OpEx"): - assert ( - pytest.approx(prob.get_val("dri_cost.OpEx", units="USD/year")[0], rel=1e-6) - == expected_fixed_om - ) - with subtests.test("VarOpEx"): - assert ( - pytest.approx(prob.get_val("dri_cost.VarOpEx", units="USD/year")[0], rel=1e-6) - == expected_var_om - ) - - -@pytest.mark.regression -def test_baseline_iron_dri_costs_rosner_h2( - plant_config, driver_config, iron_dri_config_rosner_ng, subtests -): - expected_capex = 246546589.2914324 - expected_var_om = 888529893.2442514 - expected_fixed_om = 53360873.348792635 - capacity = 3885.1917808219177 - - iron_dri_config_rosner_ng["model_inputs"]["shared_parameters"].update({"winning_type": "h2"}) - prob = om.Problem() - iron_dri_perf = IronPlantPerformanceComponent( - plant_config=plant_config, - tech_config=iron_dri_config_rosner_ng, - driver_config=driver_config, - ) - - iron_dri_cost = IronPlantCostComponent( - plant_config=plant_config, - tech_config=iron_dri_config_rosner_ng, - driver_config=driver_config, - ) - - prob.model.add_subsystem("dri_perf", iron_dri_perf, promotes=["*"]) - prob.model.add_subsystem("dri_cost", iron_dri_cost, promotes=["*"]) - prob.setup() - prob.run_model() - - annual_pig_iron = prob.get_val("dri_perf.total_pig_iron_produced", units="t/year") - with subtests.test("Annual Ore"): - assert pytest.approx(annual_pig_iron[0] / 365, rel=1e-3) == capacity - with subtests.test("CapEx"): - assert ( - pytest.approx(prob.get_val("dri_cost.CapEx", units="USD")[0], rel=1e-6) - == expected_capex - ) - with subtests.test("OpEx"): - assert ( - pytest.approx(prob.get_val("dri_cost.OpEx", units="USD/year")[0], rel=1e-6) - == expected_fixed_om - ) - with subtests.test("VarOpEx"): - assert ( - pytest.approx(prob.get_val("dri_cost.VarOpEx", units="USD/year")[0], rel=1e-6) - == expected_var_om - ) diff --git a/h2integrate/converters/iron/test/test_iron_post.py b/h2integrate/converters/iron/test/test_iron_post.py deleted file mode 100644 index 44aa0f4c1..000000000 --- a/h2integrate/converters/iron/test/test_iron_post.py +++ /dev/null @@ -1,239 +0,0 @@ -import copy -import shutil -from pathlib import Path - -import pytest -from pytest import approx, fixture - -from h2integrate.converters.iron import iron - - -@fixture -def iron_post(): - iron_post = { - "project_parameters": { - "cost_year": 2022, - "project_lifetime": 30, - "grid_connection": False, - "ppa_price": 0.025, - "hybrid_electricity_estimated_cf": 0.492, - "financial_analysis_start_year": 2032, - "installation_time": 36, - }, - "iron": { - "site": { - "lat": 41, - "lon": -84, - "resource_dir": "/../data_library/weather/", - "name": "Mid WI", - }, - "product_selection": "ng_eaf", # Alternative: 'h2_eaf' - "performance_model": { - "name": "rosner", - "refit_coeffs": False, - }, - "cost_model": { - "name": "rosner", - "refit_coeffs": False, - }, - "finance_model": { - "name": "rosner", # Alternative: 'rosner_override' - }, - "performance": { - "plant_capacity_mtpy": 1000000, - "capacity_denominator": "iron", # Alternative: 'steel' - }, - "costs": { - "lcoh": 2.80, - "lcoe": 0.050, - "lco_iron_ore_tonne": 313, - "operational_year": 2035, - "installation_years": 3, - "plant_life": 30, - "o2_heat_integration": False, - }, - "finances": { - "lcoh": 2.80, - "gen_inflation": 0.025, - "financial_assumptions": { - "total income tax rate": 0.2574, - "capital gains tax rate": 0.15, - "leverage after tax nominal discount rate": 0.10893, - "debt equity ratio of initial financing": 0.624788, - "debt interest rate": 0.050049, - }, - }, - }, - } - return iron_post - - -@pytest.mark.regression -def test_ng_eaf(iron_post, subtests): - performance, cost, finance = iron.run_iron_full_model(iron_post) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 1.80, 1e-2 - ) - with subtests.test("performance model: H2"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0, 1e-3) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "EAF & Casting", "Mid WI"].values[0] == approx( - 175125136, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(119.38, 1e-3) - - -@pytest.mark.regression -def test_h2_eaf(iron_post, subtests): - iron_post_copy = copy.deepcopy(iron_post) - iron_post_copy["iron"]["product_selection"] = "h2_eaf" - performance, cost, finance = iron.run_iron_full_model(iron_post_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 0.079, 1e-2 - ) - with subtests.test("performance model: H2"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0, 1e-2) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "EAF & Casting", "Mid WI"].values[0] == approx( - 177009717, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(124.68, 1e-3) - - -@pytest.mark.regression -def test_steel_capacity_denominator(iron_post, subtests): - iron_post_copy = copy.deepcopy(iron_post) - iron_post_copy["iron"]["performance"]["capacity_denominator"] = "steel" - iron_post_copy["iron"]["product_selection"] = "h2_eaf" - performance, cost, finance = iron.run_iron_full_model(iron_post_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 0.0942, 1e-2 - ) - with subtests.test("performance model: H2"): - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0, 1e-2) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "EAF & Casting", "Mid WI"].values[0] == approx( - 191769218, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(138.31, 1e-3) - - -@pytest.mark.regression -def test_rosner_override(iron_post, subtests): - iron_post_copy = copy.deepcopy(iron_post) - iron_post_copy["iron"]["finance_model"]["name"] = "rosner_override" - performance, cost, finance = iron.run_iron_full_model(iron_post_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 1.80, 1e-2 - ) - with subtests.test("performance model: H2"): - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0, 1e-2) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "EAF & Casting", "Mid WI"].values[0] == approx( - 175125136, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(119.0, 1e-3) - - -@pytest.mark.regression -def test_refit_coefficients(iron_post, subtests): - # Determine the model directory based on the model name - iron_tech_dir = Path(__file__).parents[3] / "h2integrate" / "converters" / "iron" - model_name = iron_post["iron"]["cost_model"]["name"] - model_dir = iron_tech_dir / model_name - - # Backup both performance and cost coefficient files - cost_coeffs_file = model_dir / "cost_coeffs.csv" - cost_backup_file = model_dir / "cost_coeffs_backup.csv" - perf_coeffs_file = model_dir / "perf_coeffs.csv" - perf_backup_file = model_dir / "perf_coeffs_backup.csv" - - if cost_coeffs_file.exists(): - shutil.copy2(cost_coeffs_file, cost_backup_file) - if perf_coeffs_file.exists(): - shutil.copy2(perf_coeffs_file, perf_backup_file) - - # Non-refit coefficients - performance, cost, finance = iron.run_iron_full_model(iron_post) - perf_df = performance.performances_df - cost_df = cost.costs_df - - # Refit coefficients performance model - iron_post_copy = copy.deepcopy(iron_post) - iron_post_copy["iron"]["performance_model"]["refit_coeffs"] = True - performance2, cost2, finance2 = iron.run_iron_full_model(iron_post_copy) - perf_df2 = performance2.performances_df - cost_df2 = cost2.costs_df - with subtests.test("performance model: NG"): - assert perf_df2.loc[perf_df2["Name"] == "Natural Gas", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0], 1e-3 - ) - with subtests.test("performance model: H2"): - assert perf_df2.loc[perf_df2["Name"] == "Hydrogen", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0], 1e-3 - ) - with subtests.test("cost model"): - assert cost_df2.loc[cost_df2["Name"] == "EAF & Casting", "Mid WI"].values[0] == approx( - cost_df.loc[cost_df["Name"] == "EAF & Casting", "Mid WI"].values[0], 1e-3 - ) - with subtests.test("finance model"): - assert finance.sol["lco"] == approx(finance.sol["lco"], 1e-3) - - # Refit coefficients cost model - iron_post_copy = copy.deepcopy(iron_post) - iron_post_copy["iron"]["cost_model"]["refit_coeffs"] = True - performance2, cost2, finance2 = iron.run_iron_full_model(iron_post_copy) - perf_df2 = performance2.performances_df - cost_df2 = cost2.costs_df - with subtests.test("performance model: NG"): - assert perf_df2.loc[perf_df2["Name"] == "Natural Gas", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0], 1e-3 - ) - with subtests.test("performance model: H2"): - assert perf_df2.loc[perf_df2["Name"] == "Hydrogen", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0], 1e-3 - ) - with subtests.test("cost model"): - assert cost_df2.loc[cost_df2["Name"] == "EAF & Casting", "Mid WI"].values[0] == approx( - cost_df.loc[cost_df["Name"] == "EAF & Casting", "Mid WI"].values[0], 1e-3 - ) - with subtests.test("finance model"): - assert finance.sol["lco"] == approx(finance.sol["lco"], 1e-3) - - # Restore the original coefficient files - if cost_backup_file.exists(): - shutil.move(cost_backup_file, cost_coeffs_file) - if perf_backup_file.exists(): - shutil.move(perf_backup_file, perf_coeffs_file) diff --git a/h2integrate/converters/iron/test/test_iron_win.py b/h2integrate/converters/iron/test/test_iron_win.py deleted file mode 100644 index 08303334f..000000000 --- a/h2integrate/converters/iron/test/test_iron_win.py +++ /dev/null @@ -1,241 +0,0 @@ -import copy -import shutil -from pathlib import Path - -import pytest -from pytest import approx, fixture - -from h2integrate.converters.iron import iron - - -@fixture -def iron_win(): - iron_win = { - "project_parameters": { - "cost_year": 2022, - "project_lifetime": 30, - "grid_connection": False, - "ppa_price": 0.025, - "hybrid_electricity_estimated_cf": 0.492, - "financial_analysis_start_year": 2032, - "installation_time": 36, - }, - "iron": { - "site": { - "lat": 41, - "lon": -78, - "resource_dir": "/../data_library/weather/", - "name": "Mid WI", - }, - "product_selection": "ng_dri", # Alternative: 'h2_dri' - "performance_model": { - "name": "rosner", - "refit_coeffs": False, - }, - "cost_model": { - "name": "rosner", - "refit_coeffs": False, - }, - "finance_model": { - "name": "rosner", # Alternative: 'rosner_override' - }, - "performance": { - "plant_capacity_mtpy": 1418095, - "capacity_denominator": "iron", # Alternative: 'steel' - }, - "costs": { - "lcoh": 2.80, - "lcoe": 0.050, - "lco_iron_ore_tonne": 125, - "operational_year": 2035, - "installation_years": 3, - "plant_life": 30, - "o2_heat_integration": False, - }, - "finances": { - "lcoh": 2.80, - "gen_inflation": 0.025, - "financial_assumptions": { - "total income tax rate": 0.2574, - "capital gains tax rate": 0.15, - "leverage after tax nominal discount rate": 0.10893, - "debt equity ratio of initial financing": 0.624788, - "debt interest rate": 0.050049, - }, - }, - }, - } - return iron_win - - -@pytest.mark.regression -def test_ng_dri(iron_win, subtests): - performance, cost, finance = iron.run_iron_full_model(iron_win) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 6.938, 1e-3 - ) - with subtests.test("performance model: H2"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0, 1e-3) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "Shaft Furnace", "Mid WI"].values[0] == approx( - 119635267, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(313.56, 1e-3) - - -@pytest.mark.regression -def test_h2_dri(iron_win, subtests): - iron_win_copy = copy.deepcopy(iron_win) - iron_win_copy["iron"]["product_selection"] = "h2_dri" - performance, cost, finance = iron.run_iron_full_model(iron_win_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 0.52, 1e-2 - ) - with subtests.test("performance model: H2"): - # TODO: verify conversion is correct - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0.055, 1e-2) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "Shaft Furnace", "Mid WI"].values[0] == approx( - 120794215.5, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(418.08, 1e-3) - - -@pytest.mark.regression -def test_steel_capacity_denominator(iron_win, subtests): - iron_win_copy = copy.deepcopy(iron_win) - iron_win_copy["iron"]["performance"]["capacity_denominator"] = "steel" - iron_win_copy["iron"]["product_selection"] = "h2_dri" - performance, cost, finance = iron.run_iron_full_model(iron_win_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 0.62, 1e-2 - ) - with subtests.test("performance model: H2"): - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx( - 0.06596, 1e-2 - ) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "Shaft Furnace", "Mid WI"].values[0] == approx( - 141139018.10, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(492.62, 1e-3) - - -@pytest.mark.regression -def test_rosner_override(iron_win, subtests): - iron_win_copy = copy.deepcopy(iron_win) - iron_win_copy["iron"]["finance_model"]["name"] = "rosner_override" - performance, cost, finance = iron.run_iron_full_model(iron_win_copy) - perf_df = performance.performances_df - cost_df = cost.costs_df - - with subtests.test("performance model: NG"): - assert perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0] == approx( - 6.938, 1e-2 - ) - with subtests.test("performance model: H2"): - assert perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0] == approx(0, 1e-2) - with subtests.test("cost model"): - # TODO: verify value - just copied result - assert cost_df.loc[cost_df["Name"] == "Shaft Furnace", "Mid WI"].values[0] == approx( - 119635267, 1e-3 - ) - with subtests.test("finance model"): - # TODO: verify value - just copied result - assert finance.sol["lco"] == approx(427.2, 1e-3) - - -@pytest.mark.regression -def test_refit_coefficients(iron_win, subtests): - # Determine the model directory based on the model name - iron_tech_dir = Path(__file__).parents[3] / "h2integrate" / "converters" / "iron" - model_name = iron_win["iron"]["cost_model"]["name"] - model_dir = iron_tech_dir / model_name - - # Backup both performance and cost coefficient files - cost_coeffs_file = model_dir / "cost_coeffs.csv" - cost_backup_file = model_dir / "cost_coeffs_backup.csv" - perf_coeffs_file = model_dir / "perf_coeffs.csv" - perf_backup_file = model_dir / "perf_coeffs_backup.csv" - - if cost_coeffs_file.exists(): - shutil.copy2(cost_coeffs_file, cost_backup_file) - if perf_coeffs_file.exists(): - shutil.copy2(perf_coeffs_file, perf_backup_file) - - # Non-refit coefficients - performance, cost, finance = iron.run_iron_full_model(iron_win) - perf_df = performance.performances_df - cost_df = cost.costs_df - - # Refit coefficients performance model - iron_win_copy = copy.deepcopy(iron_win) - iron_win_copy["iron"]["performance_model"]["refit_coeffs"] = True - performance2, cost2, finance2 = iron.run_iron_full_model(iron_win_copy) - perf_df2 = performance2.performances_df - cost_df2 = cost2.costs_df - with subtests.test("performance model: NG"): - assert perf_df2.loc[perf_df2["Name"] == "Natural Gas", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0], 1e-3 - ) - with subtests.test("performance model: H2"): - assert perf_df2.loc[perf_df2["Name"] == "Hydrogen", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0], 1e-3 - ) - with subtests.test("cost model"): - assert cost_df2.loc[cost_df2["Name"] == "Shaft Furnace", "Mid WI"].values[0] == approx( - cost_df.loc[cost_df["Name"] == "Shaft Furnace", "Mid WI"].values[0], 1e-3 - ) - with subtests.test("finance model"): - assert finance.sol["lco"] == approx(finance.sol["lco"], 1e-3) - - # Refit coefficients cost model - iron_win_copy = copy.deepcopy(iron_win) - iron_win_copy["iron"]["cost_model"]["refit_coeffs"] = True - performance2, cost2, finance2 = iron.run_iron_full_model(iron_win_copy) - perf_df2 = performance2.performances_df - cost_df2 = cost2.costs_df - with subtests.test("performance model: NG"): - assert perf_df2.loc[perf_df2["Name"] == "Natural Gas", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Natural Gas", "Model"].values[0], 1e-3 - ) - with subtests.test("performance model: H2"): - assert perf_df2.loc[perf_df2["Name"] == "Hydrogen", "Model"].values[0] == approx( - perf_df.loc[perf_df["Name"] == "Hydrogen", "Model"].values[0], 1e-3 - ) - with subtests.test("cost model"): - assert cost_df2.loc[cost_df2["Name"] == "Shaft Furnace", "Mid WI"].values[0] == approx( - cost_df.loc[cost_df["Name"] == "Shaft Furnace", "Mid WI"].values[0], 1e-3 - ) - with subtests.test("finance model"): - assert finance.sol["lco"] == approx(finance.sol["lco"], 1e-3) - - # Restore the original coefficient files - if cost_backup_file.exists(): - shutil.move(cost_backup_file, cost_coeffs_file) - if perf_backup_file.exists(): - shutil.move(perf_backup_file, perf_coeffs_file) diff --git a/h2integrate/converters/iron/test/test_iron_wrapper_baseline.py b/h2integrate/converters/iron/test/test_iron_wrapper_baseline.py deleted file mode 100644 index a5de0895b..000000000 --- a/h2integrate/converters/iron/test/test_iron_wrapper_baseline.py +++ /dev/null @@ -1,277 +0,0 @@ -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate import EXAMPLE_DIR -from h2integrate.core.inputs.validation import load_plant_yaml -from h2integrate.converters.iron.iron_wrapper import IronComponent - - -@fixture -def iron_config(lcoe, lcoh, site): - iron_config = { - "LCOE": lcoe, - "LCOH": lcoh, - "ROM_iron_site_name": site, - "iron_ore_product_selection": "drg_taconite_pellets", - "reduced_iron_site_latitude": 41.717, - "reduced_iron_site_longitude": -88.398, - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - "win_capacity_denom": "iron", - "iron_post_capacity": 1000000, - "iron_win_capacity": 1418095, - "ore_cf_estimate": 0.9, - "cost_year": 2020, - } - return iron_config - - -@fixture -def location_iron_tech(): - iron_config = { - "LCOE": 60.48, - "LCOH": 8.86, - "ROM_iron_site_name": "Northshore", - "iron_ore_product_selection": "drg_taconite_pellets", - "reduced_iron_site_latitude": 41.2, - "reduced_iron_site_longitude": -81.7, - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - "win_capacity_denom": "iron", - "iron_post_capacity": 1000000, - "iron_win_capacity": 1418095, - "ore_cf_estimate": 0.9, - "cost_year": 2020, - } - return iron_config - - -@fixture -def plant_config(): - plant_config = load_plant_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "plant_config.yaml") - return plant_config - - -@pytest.mark.regression -@pytest.mark.parametrize("lcoe,lcoh,site", [(58.02, 7.1, "Northshore")]) -def test_baseline_iron(plant_config, driver_config, iron_config, subtests): - test_cases = { - "ng/none": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - }, - "ng/eaf": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "eaf_steel", - }, - "h2/none": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "none", - }, - "h2/eaf": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "eaf_steel", - }, - } - expected_lcoi = { - "ng/none": 370.212189551055, # USD/t - "ng/eaf": 513.8574754088993, - "h2/none": 715.1015416039348, - "h2/eaf": 858.9727023405763, - } - - for test_name, test_inputs in test_cases.items(): - iron_config.update(test_inputs) - prob = om.Problem() - comp = IronComponent( - plant_config=plant_config, - tech_config={"model_inputs": {"cost_parameters": iron_config}}, - driver_config=driver_config, - ) - prob.model.add_subsystem("iron", comp) - prob.setup() - prob.run_model() - - with subtests.test(f"baseline LCOI for {test_name}"): - lcoi = prob.get_val("iron.LCOI", units="USD/t") - assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] - - -@pytest.mark.regression -@pytest.mark.parametrize("lcoe,lcoh,site", [(58.02, 7.1, "Hibbing")]) -def test_changing_mine_iron(plant_config, driver_config, iron_config, subtests): - test_cases = { - "ng/none": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - }, - "ng/eaf": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "eaf_steel", - }, - "h2/none": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "none", - }, - "h2/eaf": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "eaf_steel", - }, - } - expected_lcoi = { - "ng/none": 354.77730320952014, - "ng/eaf": 498.42258906736447, - "h2/none": 699.666052372724, - "h2/eaf": 843.5372131093657, - } - for test_name, test_inputs in test_cases.items(): - iron_config.update(test_inputs) - prob = om.Problem() - comp = IronComponent( - plant_config=plant_config, - tech_config={"model_inputs": {"cost_parameters": iron_config}}, - driver_config=driver_config, - ) - prob.model.add_subsystem("iron", comp) - prob.setup() - prob.run_model() - - with subtests.test(f"Hibbing mine LCOI for {test_name}"): - lcoi = prob.get_val("iron.LCOI", units="USD/t") - assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] - - -@pytest.mark.regression -@pytest.mark.parametrize("lcoe,lcoh,site", [(50.0, 7.1, "Northshore")]) -def test_lcoe50_iron(plant_config, driver_config, iron_config, subtests): - test_cases = { - "ng/none": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - }, - "ng/eaf": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "eaf_steel", - }, - "h2/none": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "none", - }, - "h2/eaf": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "eaf_steel", - }, - } - - expected_lcoi = { - "ng/none": 369.07934010565174, - "ng/eaf": 509.8866655496638, - "h2/none": 714.305073437314, - "h2/eaf": 855.2282058088431, - } - for test_name, test_inputs in test_cases.items(): - iron_config.update(test_inputs) - prob = om.Problem() - comp = IronComponent( - plant_config=plant_config, - tech_config={"model_inputs": {"cost_parameters": iron_config}}, - driver_config=driver_config, - ) - prob.model.add_subsystem("iron", comp) - prob.setup() - prob.run_model() - - with subtests.test(f"Hibbing mine LCOI for {test_name}"): - lcoi = prob.get_val("iron.LCOI", units="USD/t") - assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] - - -@pytest.mark.regression -@pytest.mark.parametrize("lcoe,lcoh,site", [(58.02, 6.0, "Northshore")]) -def test_lcoh6_iron(plant_config, driver_config, iron_config, subtests): - test_cases = { - "ng/none": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - }, - "ng/eaf": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "eaf_steel", - }, - "h2/none": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "none", - }, - "h2/eaf": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "eaf_steel", - }, - } - - expected_lcoi = { - "ng/none": 370.212189551055, - "ng/eaf": 513.8574754088993, - "h2/none": 653.4076529067631, - "h2/eaf": 797.2788136434048, - } - for test_name, test_inputs in test_cases.items(): - iron_config.update(test_inputs) - prob = om.Problem() - comp = IronComponent( - plant_config=plant_config, - tech_config={"model_inputs": {"cost_parameters": iron_config}}, - driver_config=driver_config, - ) - prob.model.add_subsystem("iron", comp) - prob.setup() - prob.run_model() - - with subtests.test(f"Hibbing mine LCOI for {test_name}"): - lcoi = prob.get_val("iron.LCOI", units="USD/t") - assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] - - -@pytest.mark.regression -def test_location_iron(plant_config, driver_config, location_iron_tech, subtests): - test_cases = { - "ng/none": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "none", - }, - "ng/eaf": { - "reduced_iron_product_selection": "ng_dri", - "structural_iron_product_selection": "eaf_steel", - }, - "h2/none": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "none", - }, - "h2/eaf": { - "reduced_iron_product_selection": "h2_dri", - "structural_iron_product_selection": "eaf_steel", - }, - } - - expected_lcoi = { - "ng/none": 365.2571816, - "ng/eaf": 509.7708257, - "h2/none": 808.3401864, - "h2/eaf": 953.1133839, - } - - for test_name, test_inputs in test_cases.items(): - location_iron_tech.update(test_inputs) - prob = om.Problem() - comp = IronComponent( - plant_config=plant_config, - tech_config={"model_inputs": {"cost_parameters": location_iron_tech}}, - driver_config=driver_config, - ) - prob.model.add_subsystem("iron", comp) - prob.setup() - prob.run_model() - - with subtests.test(f"Hibbing mine LCOI for {test_name}"): - lcoi = prob.get_val("iron.LCOI", units="USD/t") - assert pytest.approx(lcoi, abs=0.3) == expected_lcoi[test_name] diff --git a/h2integrate/converters/methanol/co2h_methanol_plant.py b/h2integrate/converters/methanol/co2h_methanol_plant.py index abf2cbbce..d9c561a52 100644 --- a/h2integrate/converters/methanol/co2h_methanol_plant.py +++ b/h2integrate/converters/methanol/co2h_methanol_plant.py @@ -49,6 +49,11 @@ class CO2HMethanolPlantPerformanceModel(MethanolPerformanceBaseClass): - methanol_out: methanol produced in kg/h """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.config = CO2HPerformanceConfig.from_dict( @@ -161,6 +166,11 @@ class CO2HMethanolPlantCostModel(MethanolCostBaseClass): co2_cost: annual cost of CO2 (USD/year) """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.config = CO2HCostConfig.from_dict( diff --git a/h2integrate/converters/methanol/methanol_baseclass.py b/h2integrate/converters/methanol/methanol_baseclass.py index ad0babc2a..1d918303d 100644 --- a/h2integrate/converters/methanol/methanol_baseclass.py +++ b/h2integrate/converters/methanol/methanol_baseclass.py @@ -34,6 +34,11 @@ class MethanolPerformanceBaseClass(PerformanceModelBaseClass): - h2o_consumption: h2o consumption in kg/h """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "methanol" @@ -87,6 +92,11 @@ class MethanolCostBaseClass(CostModelBaseClass): - Variable_OpEx: all methanol plant variable operating expenses (vary with production rate) """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] super().setup() diff --git a/h2integrate/converters/methanol/smr_methanol_plant.py b/h2integrate/converters/methanol/smr_methanol_plant.py index 9ab9fe600..46f48e0bd 100644 --- a/h2integrate/converters/methanol/smr_methanol_plant.py +++ b/h2integrate/converters/methanol/smr_methanol_plant.py @@ -42,6 +42,11 @@ class SMRMethanolPlantPerformanceModel(MethanolPerformanceBaseClass): - electricity_out: hourly electricity production (kW*h/h) """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.config = SMRPerformanceConfig.from_dict( @@ -145,6 +150,11 @@ class SMRMethanolPlantCostModel(MethanolCostBaseClass): cost_year: dollar year for output costs """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = SMRCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/methanol/test/conftest.py b/h2integrate/converters/methanol/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/methanol/test/conftest.py +++ b/h2integrate/converters/methanol/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/natural_gas/dummy_gas_components.py b/h2integrate/converters/natural_gas/dummy_gas_components.py new file mode 100644 index 000000000..96525ff5f --- /dev/null +++ b/h2integrate/converters/natural_gas/dummy_gas_components.py @@ -0,0 +1,270 @@ +""" +Dummy components for demonstrating multivariable streams, nominally based +on wellhead gas mixtures. These components are not meant to represent any real +physical processes or technologies, but simply to provide a realistic example +of producing and consuming a multivariable stream with multiple constituent +variables. + +These components are used in example 32 to showcase the multivariable stream +connection feature. They produce and consume wellhead_gas_mixture streams with +5 constituent variables. +""" + +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import gt_zero, gte_zero +from h2integrate.core.model_baseclasses import ( + CostModelBaseClass, + CostModelBaseConfig, + PerformanceModelBaseClass, +) +from h2integrate.core.commodity_stream_definitions import ( + add_multivariable_input, + add_multivariable_output, +) + + +@define(kw_only=True) +class SimpleGasProducerPerformanceConfig(BaseConfig): + """ + Configuration class for dummy gas producer performance model. + + Attributes: + base_flow_rate: Base gas flow rate in kg/h + base_temperature: Base gas temperature in K + base_pressure: Base gas pressure in bar + flow_variation: Absolute variation in flow rate in kg/h + temp_variation: Variation in temperature in K + pressure_variation: Variation in pressure in bar + random_seed: Seed for random number generator (for reproducibility) + """ + + base_flow_rate: float = field(default=100.0, validator=gt_zero) + base_temperature: float = field(default=300.0, validator=gt_zero) + base_pressure: float = field(default=10.0, validator=gt_zero) + flow_variation: float = field(default=20.0, validator=gte_zero) + temp_variation: float = field(default=10.0, validator=gte_zero) + pressure_variation: float = field(default=1.0, validator=gte_zero) + random_seed: int | None = field(default=None) + + +class SimpleGasProducerPerformance(PerformanceModelBaseClass): + """ + A dummy gas producer component that outputs a 'wellhead_gas_mixture' multivariable stream. + + This component produces time-varying outputs for each constituent variable + of the wellhead_gas_mixture stream (mass_flow, hydrogen_mass_fraction, oxygen_mass_fraction, + temperature, pressure). + + The outputs use random variations around base values. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def initialize(self): + super().initialize() + self.commodity = "gas" + self.commodity_rate_units = "kg/h" + self.commodity_amount_units = "kg" + + def setup(self): + self.config = SimpleGasProducerPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + super().setup() + + # Add all wellhead_gas_mixture stream outputs + add_multivariable_output(self, "wellhead_gas_mixture", self.n_timesteps) + + def compute(self, inputs, outputs): + # Set random seed for reproducibility if specified + rng = np.random.default_rng(self.config.random_seed) + + base_flow = self.config.base_flow_rate + base_temp = self.config.base_temperature + base_pressure = self.config.base_pressure + + # Gas flow varies randomly within ±flow_variation (absolute, kg/h) + flow_noise = rng.uniform( + -self.config.flow_variation, self.config.flow_variation, self.n_timesteps + ) + outputs["wellhead_gas_mixture:mass_flow_out"] = base_flow + flow_noise + + # Hydrogen fraction: 0.7 to 0.9 (random) + outputs["wellhead_gas_mixture:hydrogen_mass_fraction_out"] = rng.uniform( + 0.7, 0.9, self.n_timesteps + ) + + # Oxygen mass fraction: 0.0 to 0.05 (random) + outputs["wellhead_gas_mixture:oxygen_mass_fraction_out"] = rng.uniform( + 0.0, 0.05, self.n_timesteps + ) + + # Temperature varies randomly within ±temp_variation K + temp_noise = rng.uniform( + -self.config.temp_variation, self.config.temp_variation, self.n_timesteps + ) + outputs["wellhead_gas_mixture:temperature_out"] = base_temp + temp_noise + + # Pressure varies randomly within ±pressure_variation bar + pres_noise = rng.uniform( + -self.config.pressure_variation, self.config.pressure_variation, self.n_timesteps + ) + outputs["wellhead_gas_mixture:pressure_out"] = base_pressure + pres_noise + + # Standardized outputs from PerformanceModelBaseClass + rated_production = base_flow + self.config.flow_variation + outputs["gas_out"] = outputs["wellhead_gas_mixture:mass_flow_out"] + outputs["total_gas_produced"] = np.sum(outputs["wellhead_gas_mixture:mass_flow_out"]) * ( + self.dt / 3600 + ) + outputs["rated_gas_production"] = rated_production + outputs["annual_gas_produced"] = ( + outputs["total_gas_produced"] / self.fraction_of_year_simulated + ) + outputs["capacity_factor"] = outputs["total_gas_produced"] / ( + rated_production * self.n_timesteps * (self.dt / 3600) + ) + + +class SimpleGasConsumerPerformance(PerformanceModelBaseClass): + """ + A dummy gas consumer component that takes in a 'wellhead_gas_mixture' multivariable stream. + + This component demonstrates receiving all constituent variables of a + wellhead_gas_mixture stream (mass_flow, hydrogen_mass_fraction, oxygen_mass_fraction, + temperature, pressure) and performing simple calculations. + + The component calculates some derived quantities from the input stream. + The primary commodity output is hydrogen (extracted from the gas stream). + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def initialize(self): + super().initialize() + self.commodity = "hydrogen" + self.commodity_rate_units = "kg/h" + self.commodity_amount_units = "kg" + + def setup(self): + super().setup() + + # Add all wellhead_gas_mixture stream inputs + add_multivariable_input(self, "wellhead_gas_mixture", self.n_timesteps) + + # Add some derived outputs + self.add_output( + "total_gas_consumed", val=0.0, units="kg", desc="Total gas consumed over the simulation" + ) + self.add_output("avg_temperature", val=0.0, units="K", desc="Average gas temperature") + self.add_output("avg_pressure", val=0.0, units="bar", desc="Average gas pressure") + + def compute(self, inputs, outputs): + # Calculate derived quantities from the stream inputs + gas_flow = inputs["wellhead_gas_mixture:mass_flow_in"] + h2_fraction = inputs["wellhead_gas_mixture:hydrogen_mass_fraction_in"] + temperature = inputs["wellhead_gas_mixture:temperature_in"] + pressure = inputs["wellhead_gas_mixture:pressure_in"] + + # Hydrogen mass flow is total flow times hydrogen fraction + hydrogen_mass_flow = gas_flow * h2_fraction + + # Total gas consumed (assuming hourly data, sum all flow rates) + outputs["total_gas_consumed"] = np.sum(gas_flow) * (self.dt / 3600) + + # Average temperature and pressure + outputs["avg_temperature"] = np.mean(temperature) + outputs["avg_pressure"] = np.mean(pressure) + + # Standardized outputs from PerformanceModelBaseClass + outputs["hydrogen_out"] = hydrogen_mass_flow + outputs["total_hydrogen_produced"] = np.sum(hydrogen_mass_flow) * (self.dt / 3600) + outputs["rated_hydrogen_production"] = np.max(hydrogen_mass_flow) + outputs["annual_hydrogen_produced"] = ( + outputs["total_hydrogen_produced"] / self.fraction_of_year_simulated + ) + max_possible = np.max(hydrogen_mass_flow) * self.n_timesteps * (self.dt / 3600) + outputs["capacity_factor"] = ( + outputs["total_hydrogen_produced"] / max_possible if max_possible > 0 else 0.0 + ) + + +@define(kw_only=True) +class SimpleGasProducerCostConfig(CostModelBaseConfig): + """ + Configuration class for dummy gas producer cost model. + + Attributes: + capex: Capital expenditure in USD + opex: Fixed operational expenditure in USD/year + """ + + capex: float = field(default=1_000_000.0, validator=gte_zero) + opex: float = field(default=50_000.0, validator=gte_zero) + + +class SimpleGasProducerCost(CostModelBaseClass): + """ + Simple cost model for the dummy gas producer. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + self.config = SimpleGasProducerCostConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + ) + + super().setup() + + def compute(self, inputs, outputs, discrete_inputs=None, discrete_outputs=None): + outputs["CapEx"] = self.config.capex + outputs["OpEx"] = self.config.opex + + +@define(kw_only=True) +class SimpleGasConsumerCostConfig(CostModelBaseConfig): + """ + Configuration class for dummy gas consumer cost model. + + Attributes: + capex: Capital expenditure in USD + opex: Fixed operational expenditure in USD/year + """ + + capex: float = field(default=2_000_000.0, validator=gte_zero) + opex: float = field(default=100_000.0, validator=gte_zero) + + +class SimpleGasConsumerCost(CostModelBaseClass): + """ + Simple cost model for the dummy gas consumer. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + self.config = SimpleGasConsumerCostConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") + ) + + super().setup() + + def compute(self, inputs, outputs, discrete_inputs=None, discrete_outputs=None): + outputs["CapEx"] = self.config.capex + outputs["OpEx"] = self.config.opex diff --git a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py index 36f1b0010..173e2163a 100644 --- a/h2integrate/converters/natural_gas/natural_gas_cc_ct.py +++ b/h2integrate/converters/natural_gas/natural_gas_cc_ct.py @@ -56,6 +56,11 @@ class NaturalGasPerformanceModel(PerformanceModelBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" @@ -84,7 +89,7 @@ def setup(self): self.add_input( "heat_rate_mmbtu_per_mwh", val=self.config.heat_rate_mmbtu_per_mwh, - units="MMBtu/MW/h", + units="MMBtu/(MW*h)", desc="Plant heat rate in MMBtu/MWh", ) @@ -246,6 +251,11 @@ class NaturalGasCostModel(CostModelBaseClass): cost_year (int): Dollar year for the costs """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = NaturalGasCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/natural_gas/test/conftest.py b/h2integrate/converters/natural_gas/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/natural_gas/test/conftest.py +++ b/h2integrate/converters/natural_gas/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/nitrogen/simple_ASU.py b/h2integrate/converters/nitrogen/simple_ASU.py index d32399a98..12ef88b48 100644 --- a/h2integrate/converters/nitrogen/simple_ASU.py +++ b/h2integrate/converters/nitrogen/simple_ASU.py @@ -65,6 +65,11 @@ class SimpleASUPerformanceModel(PerformanceModelBaseClass): Air Separation Unit. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "nitrogen" @@ -278,6 +283,11 @@ def __attrs_post_init__(self): class SimpleASUCostModel(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("plant_config", types=dict) self.options.declare("tech_config", types=dict) diff --git a/h2integrate/converters/nitrogen/test/conftest.py b/h2integrate/converters/nitrogen/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/nitrogen/test/conftest.py +++ b/h2integrate/converters/nitrogen/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/nuclear/nuclear_plant.py b/h2integrate/converters/nuclear/nuclear_plant.py index 212c3f44f..832dbb4b3 100644 --- a/h2integrate/converters/nuclear/nuclear_plant.py +++ b/h2integrate/converters/nuclear/nuclear_plant.py @@ -2,7 +2,7 @@ from attrs import field, define from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import gt_zero +from h2integrate.core.validators import gt_zero, gte_zero from h2integrate.core.model_baseclasses import ( CostModelBaseClass, CostModelBaseConfig, @@ -33,6 +33,11 @@ class QuinnNuclearPerformanceModel(PerformanceModelBaseClass): https://doi.org/10.1016/j.apenergy.2023.120669 """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" @@ -99,9 +104,9 @@ class QuinnNuclearCostModelConfig(CostModelBaseConfig): """ system_capacity_kw: float = field(validator=gt_zero) - capex_per_kw: float = field(validator=gt_zero) - fixed_opex_per_kw_year: float = field(validator=gt_zero) - variable_opex_per_mwh: float = field(validator=gt_zero) + capex_per_kw: float = field(validator=gte_zero) + fixed_opex_per_kw_year: float = field(validator=gte_zero) + variable_opex_per_mwh: float = field(validator=gte_zero) reference_capacity_kw: float | None = field(default=None) capex_scaling_exponent: float = field(default=1.0, validator=gt_zero) @@ -124,6 +129,11 @@ class QuinnNuclearCostModel(CostModelBaseClass): https://doi.org/10.1016/j.apenergy.2023.120669 """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = QuinnNuclearCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/solar/atb_res_com_pv_cost.py b/h2integrate/converters/solar/atb_res_com_pv_cost.py index b5e8540b7..43baef180 100644 --- a/h2integrate/converters/solar/atb_res_com_pv_cost.py +++ b/h2integrate/converters/solar/atb_res_com_pv_cost.py @@ -10,12 +10,11 @@ class ATBResComPVCostModelConfig(CostModelBaseConfig): """Configuration class for the ATBResComPVCostModel with costs based on DC capacity. Recommended to use with commercial or residential PV models. More information on ATB methodology and representative PV technologies can be found - `here for commercial PV `_ and - `here for residential PV `_. + `here for commercial PV `_ and + `here for residential PV `_. Reference cost values can be found on the `Solar - PV Dist. Comm` or `Solar - PV Dist. Res` sheets of the - `NREL ATB workbook `_. - + `NLR ATB workbook `_. Attributes: capex_per_kWdc (float|int): capital cost of solar-PV system in $/kW-DC opex_per_kWdc_per_year (float|int): annual operating cost of solar-PV @@ -30,6 +29,11 @@ class ATBResComPVCostModelConfig(CostModelBaseConfig): class ATBResComPVCostModel(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = ATBResComPVCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/solar/atb_utility_pv_cost.py b/h2integrate/converters/solar/atb_utility_pv_cost.py index 25a223dd1..2fca31e22 100644 --- a/h2integrate/converters/solar/atb_utility_pv_cost.py +++ b/h2integrate/converters/solar/atb_utility_pv_cost.py @@ -10,9 +10,9 @@ class ATBUtilityPVCostModelConfig(CostModelBaseConfig): """Configuration class for the ATBUtilityPVCostModel with costs based on AC capacity. Recommended to use with utility-scale PV models. More information on ATB methodology and representative utility-scale PV technologies can be found - `here `_ + `here `_ Reference cost values can be found on the `Solar - Utility PV` sheet of the - `NREL ATB workbook `_. + `NLR ATB workbook `_. Attributes: capex_per_kWac (float|int): capital cost of solar-PV system in $/kW-AC @@ -26,6 +26,11 @@ class ATBUtilityPVCostModelConfig(CostModelBaseConfig): class ATBUtilityPVCostModel(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = ATBUtilityPVCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/solar/solar_baseclass.py b/h2integrate/converters/solar/solar_baseclass.py index c27ebb322..0bfa4019c 100644 --- a/h2integrate/converters/solar/solar_baseclass.py +++ b/h2integrate/converters/solar/solar_baseclass.py @@ -2,6 +2,11 @@ class SolarPerformanceBaseClass(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" diff --git a/h2integrate/converters/solar/solar_pysam.py b/h2integrate/converters/solar/solar_pysam.py index ac6b3535b..2fefd5986 100644 --- a/h2integrate/converters/solar/solar_pysam.py +++ b/h2integrate/converters/solar/solar_pysam.py @@ -142,12 +142,17 @@ class PYSAMSolarPlantPerformanceModel(SolarPerformanceBaseClass): It takes solar parameters as input and outputs power generation data. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() self.design_config = PYSAMSolarPlantPerformanceModelDesignConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, + strict=True, additional_cls_name=self.__class__.__name__, ) self.add_input( @@ -206,20 +211,24 @@ def calc_tilt_angle(self, latitude): # Return user-specified tilt return self.design_config.tilt + # Use absolute value of latitude for tilt calculations + # to support southern hemisphere (negative) latitudes + abs_latitude = abs(latitude) + # If tilt angle function is 'lat', use the latitude as the tilt if self.design_config.tilt_angle_func == "lat": - return latitude + return abs_latitude # If tilt angle function is 'lat-func', use empirical formulas based on latitude if self.design_config.tilt_angle_func == "lat-func": - if latitude <= 25: + if abs_latitude <= 25: # For latitudes <= 25, use 0.87 * latitude - return latitude * 0.87 - if 25 < latitude <= 50: + return abs_latitude * 0.87 + if 25 < abs_latitude <= 50: # For latitudes between 25 and 50, use 0.76 * latitude + 3.1 - return (latitude * 0.76) + 3.1 + return (abs_latitude * 0.76) + 3.1 # For latitudes > 50, use latitude directly - return latitude + return abs_latitude def format_resource_data(self, solar_resource_data): """Format solar resource data into the format required for the diff --git a/h2integrate/converters/solar/test/conftest.py b/h2integrate/converters/solar/test/conftest.py index fe767140b..2a0ca26e7 100644 --- a/h2integrate/converters/solar/test/conftest.py +++ b/h2integrate/converters/solar/test/conftest.py @@ -2,7 +2,11 @@ from h2integrate import EXAMPLE_DIR -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) @pytest.fixture diff --git a/h2integrate/converters/solar/test/test_pysam_solar.py b/h2integrate/converters/solar/test/test_pysam_solar.py index 931455a41..6df3286a5 100644 --- a/h2integrate/converters/solar/test/test_pysam_solar.py +++ b/h2integrate/converters/solar/test/test_pysam_solar.py @@ -1,3 +1,5 @@ +from unittest.mock import MagicMock + import numpy as np import pytest import openmdao.api as om @@ -7,6 +9,106 @@ from h2integrate.resource.solar.nlr_developer_goes_api_models import GOESAggregatedSolarAPI +@pytest.mark.unit +class TestCalcTiltAngle: + """Unit tests for PYSAMSolarPlantPerformanceModel.calc_tilt_angle + with various latitudes including southern hemisphere (negative) values. + """ + + def _make_model(self, tilt_angle_func, tilt=None, create_model_from="default"): + """Create a lightweight mock of PYSAMSolarPlantPerformanceModel + with the minimum attributes needed by calc_tilt_angle.""" + model = MagicMock(spec=PYSAMSolarPlantPerformanceModel) + model.design_config = MagicMock() + model.design_config.tilt_angle_func = tilt_angle_func + model.design_config.tilt = tilt + model.design_config.create_model_from = create_model_from + model.design_config.pysam_options = {} + model.system_model = MagicMock() + model.system_model.value.return_value = 20.0 # default tilt from PySAM model + return model + + # --- tilt_angle_func = "lat" --- + @pytest.mark.parametrize( + "latitude, expected_tilt", + [ + (30.0, 30.0), + (-30.0, 30.0), + (0.0, 0.0), + (45.0, 45.0), + (-45.0, 45.0), + (90.0, 90.0), + (-90.0, 90.0), + ], + ) + def test_lat_mode(self, latitude, expected_tilt): + model = self._make_model(tilt_angle_func="lat") + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, latitude) + assert result == pytest.approx(expected_tilt) + + # --- tilt_angle_func = "lat-func" --- + @pytest.mark.parametrize( + "latitude, expected_tilt", + [ + # |lat| <= 25: tilt = 0.87 * |lat| + (10.0, 10.0 * 0.87), + (-10.0, 10.0 * 0.87), + (25.0, 25.0 * 0.87), + (-25.0, 25.0 * 0.87), + (0.0, 0.0), + # 25 < |lat| <= 50: tilt = 0.76 * |lat| + 3.1 + (30.0, 30.0 * 0.76 + 3.1), + (-30.0, 30.0 * 0.76 + 3.1), + (50.0, 50.0 * 0.76 + 3.1), + (-50.0, 50.0 * 0.76 + 3.1), + # |lat| > 50: tilt = |lat| + (60.0, 60.0), + (-60.0, 60.0), + (80.0, 80.0), + (-80.0, 80.0), + ], + ) + def test_lat_func_mode(self, latitude, expected_tilt): + model = self._make_model(tilt_angle_func="lat-func") + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, latitude) + assert result == pytest.approx(expected_tilt) + + def test_lat_func_symmetric(self): + """Verify that positive and negative latitudes produce identical tilt angles.""" + model = self._make_model(tilt_angle_func="lat-func") + for lat in [5, 15, 25, 30, 40, 50, 55, 70, 85]: + pos = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, lat) + neg = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, -lat) + assert pos == pytest.approx(neg), f"Mismatch at latitude {lat}: {pos} != {neg}" + + # --- tilt_angle_func = "none" --- + def test_none_mode_default_with_user_tilt(self): + model = self._make_model(tilt_angle_func="none", tilt=15.0, create_model_from="default") + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, -33.0) + assert result == pytest.approx(15.0) + + def test_none_mode_default_without_user_tilt(self): + model = self._make_model(tilt_angle_func="none", tilt=None, create_model_from="default") + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, -33.0) + assert result == pytest.approx(20.0) # from system_model.value("tilt") + + def test_none_mode_new_with_user_tilt(self): + model = self._make_model(tilt_angle_func="none", tilt=10.0, create_model_from="new") + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, -33.0) + assert result == pytest.approx(10.0) + + def test_none_mode_new_without_user_tilt(self): + model = self._make_model(tilt_angle_func="none", tilt=None, create_model_from="new") + model.design_config.pysam_options = {"SystemDesign": {"tilt": 22.0}} + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, -33.0) + assert result == pytest.approx(22.0) + + def test_none_mode_new_no_tilt_anywhere(self): + model = self._make_model(tilt_angle_func="none", tilt=None, create_model_from="new") + result = PYSAMSolarPlantPerformanceModel.calc_tilt_angle(model, -33.0) + assert result == pytest.approx(0) # default fallback + + @fixture def basic_pysam_options(): pysam_options = { diff --git a/h2integrate/converters/steel/electric_arc_furnance.py b/h2integrate/converters/steel/electric_arc_furnance.py deleted file mode 100644 index cb2ab9bce..000000000 --- a/h2integrate/converters/steel/electric_arc_furnance.py +++ /dev/null @@ -1,273 +0,0 @@ -import numpy as np -import pandas as pd -import openmdao.api as om -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import contains -from h2integrate.converters.iron.iron import ( - IronCostModelConfig, - IronPerformanceModelConfig, - IronPerformanceModelOutputs, - run_iron_cost_model, - run_size_iron_plant_performance, -) -from h2integrate.core.model_baseclasses import CostModelBaseClass -from h2integrate.tools.inflation.inflate import inflate_cpi, inflate_cepci -from h2integrate.converters.iron.load_top_down_coeffs import load_top_down_coeffs - - -@define(kw_only=True) -class EAFPlantBaseConfig(BaseConfig): - eaf_type: str = field( - kw_only=True, converter=(str.lower, str.strip), validator=contains(["h2", "ng"]) - ) # product selection - eaf_capacity: float | int = field(default=1418095) # plant_capacity_mtpy - eaf_capacity_denominator: str = field( - default="iron", converter=(str.lower, str.strip), validator=contains(["iron", "steel"]) - ) # how is this being used for steel? - - model_name: str = field(default="rosner") # only option at the moment - model_fp: str = field(default="") - inputs_fp: str = field(default="") - coeffs_fp: str = field(default="") - refit_coeffs: bool = field(default=False) - site_name: str = field(default="winning_site") - - def make_site_dict(self): - return {"name": self.site_name} - - -@define(kw_only=True) -class EAFPlantPerformanceConfig(EAFPlantBaseConfig): - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - -class EAFPlantPerformanceComponent(om.ExplicitComponent): - def initialize(self): - self.options.declare("driver_config", types=dict) - self.options.declare("plant_config", types=dict) - self.options.declare("tech_config", types=dict) - - def setup(self): - self.config = EAFPlantPerformanceConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, - additional_cls_name=self.__class__.__name__, - ) - - self.add_discrete_output( - "steel_plant_performance", val=pd.DataFrame(), desc="steel plant performance results" - ) - - self.add_output("total_steel_produced", val=0.0, units="t/year") - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - steel_plant_performance_inputs = { - "plant_capacity_mtpy": self.config.eaf_capacity, - "capacity_denominator": self.config.eaf_capacity_denominator, - } - steel_plant_model_inputs = self.config.make_model_dict() - steel_plant_site = self.config.make_site_dict() - performance_config = IronPerformanceModelConfig( - product_selection=f"{self.config.eaf_type}_eaf", - site=steel_plant_site, - model=steel_plant_model_inputs, - params=steel_plant_performance_inputs, - ) - iron_post_plant_performance = run_size_iron_plant_performance(performance_config) - # wltpy = wet long tons per year - steel_produced_mtpy = iron_post_plant_performance.performances_df.set_index("Name").loc[ - "Steel Production" - ]["Model"] - outputs["total_steel_produced"] = steel_produced_mtpy - discrete_outputs["steel_plant_performance"] = iron_post_plant_performance.performances_df - - -@define(kw_only=True) -class EAFPlantCostConfig(EAFPlantBaseConfig): - LCOE: float = field(kw_only=True) # $/MWh - LCOH: float = field(kw_only=True) # $/kg - LCOI_ore: float = field(kw_only=True) - iron_transport_cost: float = field(kw_only=True) - ore_profit_pct: float = field(kw_only=True) - - # varom_model_name is unused at the moment - varom_model_name: str = field( - default="rosner", validator=contains(["rosner", "rosner_override"]) - ) - operational_year: int = field(converter=int, kw_only=True) - installation_years: int | float = field(kw_only=True) - plant_life: int = field(converter=int, kw_only=True) - cost_year: int = field(converter=int, kw_only=True) - - def make_model_dict(self): - keys = ["model_fp", "inputs_fp", "coeffs_fp", "refit_coeffs"] - d = self.as_dict() - model_dict = {k: v for k, v in d.items() if k in keys} - model_dict.update({"name": self.model_name}) - return model_dict - - def make_cost_dict(self): - keys = ["operational_year", "installation_years", "plant_life"] - d = self.as_dict() - cost_dict = {k: v for k, v in d.items() if k in keys} - return cost_dict - - -class EAFPlantCostComponent(CostModelBaseClass): - def setup(self): - self.target_dollar_year = self.options["plant_config"]["finance_parameters"][ - "cost_adjustment_parameters" - ]["target_dollar_year"] - self.plant_life = self.options["plant_config"]["plant"]["plant_life"] - - config_dict = merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") - config_dict.update({"cost_year": self.target_dollar_year}) - config_dict.update({"plant_life": self.plant_life}) - - self.config = EAFPlantCostConfig.from_dict( - config_dict, - additional_cls_name=self.__class__.__name__, - ) - - super().setup() - self.add_input("LCOE", val=self.config.LCOE, units="USD/MW/h") - self.add_input("LCOH", val=self.config.LCOH, units="USD/kg") - self.add_input("LCOI_ore", val=self.config.LCOI_ore, units="USD/t") - self.add_input("iron_transport_cost", val=self.config.iron_transport_cost, units="USD/t") - self.add_input("ore_profit_pct", val=self.config.ore_profit_pct, units="USD/t") - self.add_discrete_input( - "steel_plant_performance", val=pd.DataFrame(), desc="steel plant performance results" - ) - self.add_discrete_output( - "steel_plant_cost", val=pd.DataFrame(), desc="steel plant cost results" - ) - - def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - steel_plant_performance = IronPerformanceModelOutputs( - performances_df=discrete_inputs["steel_plant_performance"] - ) - - steel_plant_cost_inputs = { - "lcoe": inputs["LCOE"][0] / 1e3, - "lcoh": inputs["LCOH"][0], - "lco_iron_ore_tonne": inputs["LCOI_ore"][0], - "iron_transport_tonne": inputs["iron_transport_cost"][0], - "plant_capacity_mtpy": self.config.eaf_capacity, - "capacity_denominator": self.config.eaf_capacity_denominator, - } - cost_dict = self.config.make_cost_dict() - steel_plant_cost_inputs.update(cost_dict) - - steel_plant_model_inputs = self.config.make_model_dict() - iron_ore_site = self.config.make_site_dict() - cost_config = IronCostModelConfig( - product_selection=f"{self.config.eaf_type}_eaf", - site=iron_ore_site, - model=steel_plant_model_inputs, - params=steel_plant_cost_inputs, - performance=steel_plant_performance, - ) - steel_plant_cost = run_iron_cost_model(cost_config) - - discrete_outputs["steel_plant_cost"] = steel_plant_cost.costs_df - - # Now taking some stuff from finance - cost_df = steel_plant_cost.costs_df.set_index("Name") - cost_ds = cost_df.loc[:, self.config.site_name] - - cost_names = cost_df.index.values - cost_types = cost_df.loc[:, "Type"].values - cost_units = cost_df.loc[:, "Unit"].values - - # add capital items - capex = 0 - fixed_om = 0 - variable_om = 0 - capital_idxs = np.where(cost_types == "capital")[0] - for idx in capital_idxs: - cost_names[idx] - unit = cost_units[idx] # Units for capital costs should be " $"" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - capex += inflate_cepci(source_year_cost, source_year, self.config.cost_year) - - # add fixed costs - fixed_idxs = np.where(cost_types == "fixed opex")[0] - for idx in fixed_idxs: - cost_names[idx] - unit = cost_units[idx] # Units for fixed opex costs should be " $ per year" - source_year = int(unit[:4]) - source_year_cost = cost_ds.iloc[idx] - fixed_om += inflate_cpi(source_year_cost, source_year, self.config.cost_year) - - # add feedstock costs - perf_df = steel_plant_performance.performances_df.set_index("Name") - perf_ds = perf_df.loc[:, "Model"] - - coeff_dict = load_top_down_coeffs( - [ - "Raw Water", - "Lime", - "Carbon", - "Slag Disposal", - "Hydrogen", - "Natural Gas", - "Electricity", - "Inflation Rate", - ] - ) - - years = list(coeff_dict["years"]) - analysis_start = self.config.operational_year - self.config.installation_years - start_idx = years.index(analysis_start) - if len(years) > (start_idx + self.config.plant_life + self.config.installation_years + 1): - end_idx = years.index( - analysis_start + self.config.plant_life + self.config.installation_years + 1 - ) - indices = list(np.arange(start_idx, end_idx)) - else: - end_idx = len(years) - 1 - indices = list(np.arange(start_idx, end_idx)) - repeats = ( - start_idx + self.config.plant_life + self.config.installation_years + 2 - len(years) - ) - for _i in range(repeats): - indices.append(end_idx) - - raw_water_unitcost_tonne = coeff_dict["Raw Water"]["values"][indices].astype(float) - lime_unitcost_tonne = coeff_dict["Lime"]["values"][indices].astype(float) - carbon_unitcost_tonne = coeff_dict["Carbon"]["values"][indices].astype(float) - slag_disposal_unitcost_tonne = coeff_dict["Slag Disposal"]["values"][indices].astype(float) - - # TODO: make natural gas costs an input - natural_gas_prices_MMBTU = coeff_dict["Natural Gas"]["values"][indices].astype(float) - natural_gas_prices_GJ = natural_gas_prices_MMBTU / 1.05506 # Convert to GJ - - iron_ore_pellet_unitcost_tonne = inputs["LCOI_ore"][0] - if inputs["iron_transport_cost"] > 0: - iron_transport_cost_tonne = inputs["iron_transport_cost"][0] - ore_profit_pct = inputs["ore_profit_pct"][0] - iron_ore_pellet_unitcost_tonne = ( - iron_ore_pellet_unitcost_tonne + iron_transport_cost_tonne - ) * (1 + ore_profit_pct / 100) - - v_start = years.index(self.config.operational_year) - years.index(analysis_start) + 1 - variable_om += perf_ds["Raw Water Withdrawal"] * raw_water_unitcost_tonne - variable_om += perf_ds["Lime"] * lime_unitcost_tonne - variable_om += perf_ds["Carbon (Coke)"] * carbon_unitcost_tonne - variable_om += perf_ds["Iron Ore"] * iron_ore_pellet_unitcost_tonne - variable_om += perf_ds["Hydrogen"] * inputs["LCOH"][0] * 1000 - variable_om += perf_ds["Natural Gas"] * natural_gas_prices_GJ - variable_om += perf_ds["Electricity"] * inputs["LCOE"][0] - variable_om += perf_ds["Slag"] * slag_disposal_unitcost_tonne - - outputs["CapEx"] = capex - outputs["OpEx"] = fixed_om - outputs["VarOpEx"] = variable_om[v_start:] diff --git a/h2integrate/converters/steel/steel.py b/h2integrate/converters/steel/steel.py index 753c26fd1..599d65729 100644 --- a/h2integrate/converters/steel/steel.py +++ b/h2integrate/converters/steel/steel.py @@ -21,6 +21,11 @@ class SteelPerformanceModel(SteelPerformanceBaseClass): Computes annual steel production based on plant capacity and capacity factor. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() self.config = SteelPerformanceModelConfig.from_dict( @@ -84,6 +89,11 @@ class SteelCostAndFinancialModel(SteelCostBaseClass): Includes CapEx, OpEx, and byproduct credits. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = SteelCostAndFinancialModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/steel/steel_baseclass.py b/h2integrate/converters/steel/steel_baseclass.py index 16c11c032..24eb57f5c 100644 --- a/h2integrate/converters/steel/steel_baseclass.py +++ b/h2integrate/converters/steel/steel_baseclass.py @@ -2,6 +2,11 @@ class SteelPerformanceBaseClass(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "steel" @@ -26,6 +31,11 @@ def compute(self, inputs, outputs): class SteelCostBaseClass(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): # Inputs for cost model configuration super().setup() diff --git a/h2integrate/converters/steel/steel_eaf_base.py b/h2integrate/converters/steel/steel_eaf_base.py index 9f83ca8f7..bdd8b606f 100644 --- a/h2integrate/converters/steel/steel_eaf_base.py +++ b/h2integrate/converters/steel/steel_eaf_base.py @@ -30,6 +30,11 @@ class ElectricArcFurnacePerformanceBaseConfig(BaseConfig): class ElectricArcFurnacePlantBasePerformanceComponent(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "steel" @@ -300,6 +305,11 @@ class ElectricArcFurnacePlantBaseCostComponent(CostModelBaseClass): coeff_df (pd.DataFrame): cost coefficient dataframe """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] @@ -332,7 +342,7 @@ def setup(self): self.config = ElectricArcFurnaceCostBaseConfig.from_dict( config_dict, - strict=False, + strict=True, additional_cls_name=self.__class__.__name__, ) diff --git a/h2integrate/converters/steel/steel_eaf_plant.py b/h2integrate/converters/steel/steel_eaf_plant.py index 6aa5b5e93..50e35f366 100644 --- a/h2integrate/converters/steel/steel_eaf_plant.py +++ b/h2integrate/converters/steel/steel_eaf_plant.py @@ -14,6 +14,11 @@ class HydrogenEAFPlantCostComponent(ElectricArcFurnacePlantBaseCostComponent): coeff_df (pd.DataFrame): cost coefficient dataframe """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.product = "h2_eaf" super().setup() @@ -29,6 +34,11 @@ class NaturalGasEAFPlantCostComponent(ElectricArcFurnacePlantBaseCostComponent): coeff_df (pd.DataFrame): cost coefficient dataframe """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.product = "ng_eaf" super().setup() @@ -44,6 +54,11 @@ class HydrogenEAFPlantPerformanceComponent(ElectricArcFurnacePlantBasePerformanc coeff_df (pd.DataFrame): performance coefficient dataframe """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.product = "h2_eaf" self.feedstocks_to_units = { @@ -67,6 +82,11 @@ class NaturalGasEAFPlantPerformanceComponent(ElectricArcFurnacePlantBasePerforma coeff_df (pd.DataFrame): performance coefficient dataframe """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.feedstocks_to_units = { "natural_gas": "MMBtu/h", diff --git a/h2integrate/converters/steel/test/conftest.py b/h2integrate/converters/steel/test/conftest.py index 934d70cd2..6029ca9d3 100644 --- a/h2integrate/converters/steel/test/conftest.py +++ b/h2integrate/converters/steel/test/conftest.py @@ -3,11 +3,17 @@ from h2integrate import EXAMPLE_DIR from h2integrate.core.inputs.validation import load_driver_yaml -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) @pytest.fixture def driver_config(temp_dir): # noqa: F811 # NOTE: no idea why this error is raised - driver_config = load_driver_yaml(EXAMPLE_DIR / "21_iron_mn_to_il" / "driver_config.yaml") + driver_config = load_driver_yaml( + EXAMPLE_DIR / "21_iron_examples" / "iron_dri" / "driver_config.yaml" + ) driver_config["general"]["folder_output"] = temp_dir return driver_config diff --git a/h2integrate/converters/steel/test/test_electric_arc_furnance.py b/h2integrate/converters/steel/test/test_electric_arc_furnance.py deleted file mode 100644 index 1041c6985..000000000 --- a/h2integrate/converters/steel/test/test_electric_arc_furnance.py +++ /dev/null @@ -1,101 +0,0 @@ -import pytest -import openmdao.api as om -from pytest import fixture - -from h2integrate.converters.steel.electric_arc_furnance import ( - EAFPlantCostComponent, - EAFPlantPerformanceComponent, -) - - -@fixture -def steel_eaf_config_rosner_ng(): - shared_params = { - "eaf_type": "ng", - "eaf_capacity": 1000000, - "site_name": "IL", - } - performance_params = {"model_name": "rosner"} - cost_params = { - "LCOE": 58.02, - "LCOH": 7.10, - "LCOI_ore": 125.25996463784443, - "iron_transport_cost": 30.566808424134745, - "ore_profit_pct": 6.0, - "varom_model_name": "rosner", - "installation_years": 3, - "operational_year": 2035, - # 'plant_life': 30, - } - - tech_config = { - "model_inputs": { - "cost_parameters": cost_params, - "performance_parameters": performance_params, - "shared_parameters": shared_params, - } - } - return tech_config - - -@fixture -def plant_config(): - plant_config = { - "plant": { - "plant_life": 30, - }, - "finance_parameters": { - "cost_adjustment_parameters": { - "cost_year_adjustment_inflation": 0.025, - "target_dollar_year": 2022, - } - }, - } - return plant_config - - -@pytest.mark.regression -def test_baseline_steel_eaf_costs_rosner_ng( - plant_config, driver_config, steel_eaf_config_rosner_ng, subtests -): - expected_capex = 264034898.3329662 - expected_var_om = 31.31789319 - expected_fixed_om = 38298777.651658 - capacity = 1189772 / 365 # t/day - - prob = om.Problem() - steel_eaf_perf = EAFPlantPerformanceComponent( - plant_config=plant_config, - tech_config=steel_eaf_config_rosner_ng, - driver_config=driver_config, - ) - - steel_eaf_cost = EAFPlantCostComponent( - plant_config=plant_config, - tech_config=steel_eaf_config_rosner_ng, - driver_config=driver_config, - ) - - prob.model.add_subsystem("eaf_perf", steel_eaf_perf, promotes=["*"]) - prob.model.add_subsystem("eaf_cost", steel_eaf_cost, promotes=["*"]) - prob.setup() - prob.run_model() - - annual_steel = prob.get_val("eaf_perf.total_steel_produced", units="t/year") - with subtests.test("Annual Steel"): - assert pytest.approx(annual_steel[0] / 365, rel=1e-3) == capacity - with subtests.test("CapEx"): - assert ( - pytest.approx(prob.get_val("eaf_cost.CapEx", units="USD")[0], rel=1e-6) - == expected_capex - ) - with subtests.test("OpEx"): - assert ( - pytest.approx(prob.get_val("eaf_cost.OpEx", units="USD/year")[0], rel=1e-6) - == expected_fixed_om - ) - with subtests.test("VarOpEx"): - assert ( - pytest.approx(prob.get_val("eaf_cost.VarOpEx", units="USD/year")[0], rel=1e-6) - == expected_var_om - ) diff --git a/h2integrate/converters/test/conftest.py b/h2integrate/converters/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/converters/test/conftest.py +++ b/h2integrate/converters/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/converters/test/test_generic_converter_cost.py b/h2integrate/converters/test/test_generic_converter_cost.py new file mode 100644 index 000000000..b4089f505 --- /dev/null +++ b/h2integrate/converters/test/test_generic_converter_cost.py @@ -0,0 +1,184 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.converters.generic_converter_cost import ( + GenericConverterCostModel, + GenericConverterCostConfig, +) + + +@fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + }, + }, + } + return plant_config + + +@fixture +def model_inputs(): + tech_config = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "commodity_amount_units": "kg", + "unit_capex": 10.0, + "unit_opex": None, + "opex_fraction": 0.1, + "unit_varopex": 0.0, + "cost_year": 2022, + } + return {"cost_parameters": tech_config} + + +@pytest.mark.unit +def test_generic_converter_cost_config(model_inputs, subtests): + expected_msg = "Please provide either a value for unit_opex or a value for opex_fraction" + + model_inputs["cost_parameters"]["unit_opex"] = 10.0 + model_inputs["cost_parameters"]["opex_fraction"] = 0.1 + with subtests.test("Config error: two opex inputs provided"): + with pytest.raises(KeyError) as excinfo: + config = GenericConverterCostConfig.from_dict( + merge_shared_inputs(model_inputs, "cost"), + strict=True, + additional_cls_name="test", + ) + assert str(excinfo.value) == expected_msg + + model_inputs["cost_parameters"]["unit_opex"] = None + model_inputs["cost_parameters"]["opex_fraction"] = None + with subtests.test("Config error: No opex input provided"): + with pytest.raises(KeyError) as excinfo: + GenericConverterCostConfig.from_dict( + merge_shared_inputs(model_inputs, "cost"), + strict=True, + additional_cls_name="test", + ) + assert str(excinfo.value) == expected_msg + + model_inputs["cost_parameters"]["unit_opex"] = None + model_inputs["cost_parameters"]["opex_fraction"] = 0.1 + with subtests.test("Config instantiation: opex fraction provided"): + config = GenericConverterCostConfig.from_dict( + merge_shared_inputs(model_inputs, "cost"), + strict=True, + additional_cls_name="test", + ) + assert config.opex_fraction == 0.1 + + model_inputs["cost_parameters"]["unit_opex"] = 10.0 + model_inputs["cost_parameters"]["opex_fraction"] = None + with subtests.test("Config instantiation: unit opex provided"): + config = GenericConverterCostConfig.from_dict( + merge_shared_inputs(model_inputs, "cost"), + strict=True, + additional_cls_name="test", + ) + assert config.unit_opex == 10.0 + + +@pytest.mark.unit +def test_generic_converter_cost_opex_fraction(plant_config, model_inputs, subtests): + model_inputs["cost_parameters"]["unit_opex"] = None + model_inputs["cost_parameters"]["opex_fraction"] = 0.1 + + prob = om.Problem() + + comp = GenericConverterCostModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ) + + opex_fraction = 0.1 + unit_capex = 10.0 + unit_varom = 5.0 + hourly_rated_production = 1.0 + annual_production = 8760 * hourly_rated_production + rated_prod_comp = om.IndepVarComp( + name="rated_hydrogen_production", val=hourly_rated_production, units="kg/h" + ) + annual_prod_comp = om.IndepVarComp( + name="annual_hydrogen_produced", val=annual_production, shape=30, units="kg/yr" + ) + prob.model.add_subsystem("cost", comp, promotes=["*"]) + prob.model.add_subsystem("IVC1", rated_prod_comp, promotes=["*"]) + prob.model.add_subsystem("IVC2", annual_prod_comp, promotes=["*"]) + + prob.setup() + + prob.set_val("cost.fixed_opex_ratio", val=opex_fraction, units="unitless") + prob.set_val("cost.unit_capex", val=unit_capex, units="USD/(kg/h)") + prob.set_val("cost.unit_varopex", val=unit_varom, units="USD/kg") + prob.run_model() + + with subtests.test("CapEx"): + expected_capex = unit_capex * hourly_rated_production + assert pytest.approx(expected_capex, rel=1e-6) == prob.get_val("CapEx", units="USD") + + with subtests.test("Fixed OpEx"): + expected_opex = expected_capex * opex_fraction + assert pytest.approx(expected_opex, rel=1e-6) == prob.get_val("OpEx", units="USD/year") + + with subtests.test("Variable OpEx"): + expected_varopex = np.full(30, unit_varom * annual_production) + assert pytest.approx(expected_varopex, rel=1e-6) == prob.get_val( + "VarOpEx", units="USD/year" + ) + + +@pytest.mark.unit +def test_generic_converter_cost_opex_value(plant_config, model_inputs, subtests): + model_inputs["cost_parameters"]["unit_opex"] = 1.0 + model_inputs["cost_parameters"]["opex_fraction"] = None + + prob = om.Problem() + + comp = GenericConverterCostModel( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ) + + unit_opex = 1.0 + unit_capex = 10.0 + unit_varom = 5.0 + hourly_rated_production = 1.0 + annual_production = 8760 * hourly_rated_production + rated_prod_comp = om.IndepVarComp( + name="rated_hydrogen_production", val=hourly_rated_production, units="kg/h" + ) + annual_prod_comp = om.IndepVarComp( + name="annual_hydrogen_produced", val=annual_production, shape=30, units="kg/yr" + ) + prob.model.add_subsystem("cost", comp, promotes=["*"]) + prob.model.add_subsystem("IVC1", rated_prod_comp, promotes=["*"]) + prob.model.add_subsystem("IVC2", annual_prod_comp, promotes=["*"]) + + prob.setup() + + prob.set_val("cost.unit_opex", val=unit_opex, units="USD/(kg/h)/year") + prob.set_val("cost.unit_capex", val=unit_capex, units="USD/(kg/h)") + prob.set_val("cost.unit_varopex", val=unit_varom, units="USD/kg") + prob.run_model() + + with subtests.test("CapEx"): + expected_capex = unit_capex * hourly_rated_production + assert pytest.approx(expected_capex, rel=1e-6) == prob.get_val("CapEx", units="USD") + + with subtests.test("Fixed OpEx"): + expected_opex = hourly_rated_production * unit_opex + assert pytest.approx(expected_opex, rel=1e-6) == prob.get_val("OpEx", units="USD/year") + + with subtests.test("Variable OpEx"): + expected_varopex = np.full(30, unit_varom * annual_production) + assert pytest.approx(expected_varopex, rel=1e-6) == prob.get_val( + "VarOpEx", units="USD/year" + ) diff --git a/h2integrate/converters/water/desal/desalination.py b/h2integrate/converters/water/desal/desalination.py index 7f2bff123..1444b59c3 100644 --- a/h2integrate/converters/water/desal/desalination.py +++ b/h2integrate/converters/water/desal/desalination.py @@ -32,6 +32,11 @@ class ReverseOsmosisPerformanceModel(DesalinationPerformanceBaseClass): Takes plantcapacitykgph input and outputs fresh water and electricity required. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() self.config = ReverseOsmosisPerformanceModelConfig.from_dict( @@ -132,6 +137,11 @@ class ReverseOsmosisCostModel(DesalinationCostBaseClass): An OpenMDAO component that computes the cost of a reverse osmosis desalination system. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = ReverseOsmosisCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), @@ -140,7 +150,7 @@ def setup(self): super().setup() def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): - """Cost reference: Table 3 of https://www.nrel.gov/docs/fy16osti/66073.pdf. + """Cost reference: Table 3 of https://www.nlr.gov/docs/fy16osti/66073.pdf. CapEx includes 2.55% financing factor, numbers based on INL report https://doi.org/10.2172/1236837 (in Table 10) which came from this report https://www-pub.iaea.org/MTCD/Publications/PDF/te_1561_web.pdf diff --git a/h2integrate/converters/water/desal/desalination_baseclass.py b/h2integrate/converters/water/desal/desalination_baseclass.py index 55fd58c4c..fcabf728e 100644 --- a/h2integrate/converters/water/desal/desalination_baseclass.py +++ b/h2integrate/converters/water/desal/desalination_baseclass.py @@ -2,6 +2,11 @@ class DesalinationPerformanceBaseClass(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "water" @@ -25,6 +30,11 @@ def compute(self, inputs, outputs): class DesalinationCostBaseClass(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() # Inputs for cost model configuration diff --git a/h2integrate/converters/water/desal/test/conftest.py b/h2integrate/converters/water/desal/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/converters/water/desal/test/conftest.py +++ b/h2integrate/converters/water/desal/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/converters/water_power/hydro_plant_run_of_river.py b/h2integrate/converters/water_power/hydro_plant_run_of_river.py index 780b5b950..c00575901 100644 --- a/h2integrate/converters/water_power/hydro_plant_run_of_river.py +++ b/h2integrate/converters/water_power/hydro_plant_run_of_river.py @@ -36,6 +36,11 @@ class RunOfRiverHydroPerformanceModel(PerformanceModelBaseClass): Computes annual electricity production based on water flow rate and turbine efficiency. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" @@ -107,6 +112,11 @@ class RunOfRiverHydroCostModel(CostModelBaseClass): Just a placeholder for now, but can be extended with more detailed cost models. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = RunOfRiverHydroCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/water_power/pysam_marine_cost.py b/h2integrate/converters/water_power/pysam_marine_cost.py new file mode 100644 index 000000000..32791347b --- /dev/null +++ b/h2integrate/converters/water_power/pysam_marine_cost.py @@ -0,0 +1,291 @@ +import PySAM.MhkCosts as MhkCost +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.core.validators import gt_zero, contains, range_val, must_equal +from h2integrate.core.model_baseclasses import CostModelBaseClass, CostModelBaseConfig + + +@define(kw_only=True) +class PySAMMarineCostConfig(CostModelBaseConfig): + """Configuration class for the PySAMMarineCostModel. + + Args: + device_rating_kw (float): Rated power of the MHK device [kW] + num_devices (int): Number of MHK tidal devices in the system + reference_model_number (int): Reference model number from the + Department of Energy Reference Model Project + (1, 2, 3, 5 or 6). + water_depth (float): Water depth in meters. + distance_to_shore (float): Distance to shore in meters. + number_rows (int): Number of rows in the device layout. + device_spacing (float): Spacing between devices in a row in meters. + row_spacing (float): Spacing between rows in meters. + cable_system_overbuild: Cable system overbuild percentage. + pysam_cost_options (dict, optional): dictionary of MhkCosts input parameters with + top-level keys corresponding to the different MhkCosts variable groups. + (please refer to MhkCosts documentation + `here `__ + ) + + Note: + More information about the reference models and their + associated costs can be found in the + [Reference Model Project](https://energy.sandia.gov/programs/renewable-energy/water-power/projects/reference-model-project-rmp/) + + The supported reference models in this cost model are: + - Reference Model 1: Tidal Current Turbine + - Reference Model 2: River Current Turbine + - Reference Model 3: Wave Point Absorber + - Reference Model 5: Oscillating Surge Flap + - Reference Model 6: Oscillating Water Column + + Additional MHK cost model information can be found + through the [System Advisor Model](https://sam.nlr.gov/) + """ + + device_rating_kw: float = field(validator=gt_zero) + num_devices: int = field(validator=gt_zero) + reference_model_number: int = field(validator=contains([1, 2, 3, 5, 6])) + water_depth: float = field(validator=gt_zero) + distance_to_shore: float = field(validator=gt_zero) + number_rows: int = field(validator=gt_zero) + device_spacing: float = field(validator=gt_zero) + row_spacing: float = field(validator=gt_zero) + cable_system_overbuild: float = field(validator=range_val(0, 100)) + pysam_cost_options: dict = field(default={}) + cost_year: int = field( + default=2022, converter=int, validator=must_equal(2022) + ) # TODO update based on feedback from SAM team + + def __attrs_post_init__(self): + # if pysam_cost_options is not an empty dictionary + if not self.pysam_cost_options: + self.check_pysam_cost_options() + + def check_pysam_cost_options(self): + """Checks that top-level keys of pysam_cost_options dictionary are valid and that + system capacity is not given in pysam_cost_options. + + Raises: + ValueError: if top-level keys of pysam_cost_options are not valid. + ValueError: if device_rated_power is provide in pysam_cost_options["MHKCosts"] + """ + valid_groups = [ + "MHKCosts", + ] + if bool(self.pysam_cost_options): + invalid_groups = [k for k in self.pysam_cost_options if k not in valid_groups] + if len(invalid_groups) > 0: + msg = ( + f"Invalid group(s) found in pysam_cost_options: {invalid_groups}. " + f"Valid groups are: {valid_groups}." + ) + raise ValueError(msg) + + if ( + self.pysam_cost_options.get("MHKCosts", {}).get("device_rated_power", None) + is not None + ): + msg = ( + "Please do not specify device_rated_power in the pysam_cost_options " + "dictionary. The device rated power should be set with the " + "'device_rating' in the cost parameter." + ) + raise ValueError(msg) + return + + def create_input_dict(self): + """Create dictionary of inputs to over-write the default values + associated with the specified MHKCosts configuration. + + Returns: + dict: dictionary of MHKCosts group parameters from user-input. + """ + design_dict = { + "MHKCosts": { + "device_rated_power": self.device_rating_kw, + }, + } + + # check if custom cost values are input + cost_keys_map = [ + "structural_assembly_cost", + "power_takeoff_system_cost", + "mooring_found_substruc_cost", + "development_cost", + "eng_and_mgmt_cost", + "assembly_and_install_cost", + "other_infrastructure_cost", + "array_cable_system_cost", + "export_cable_system_cost", + "onshore_substation_cost", + "offshore_substation_cost", + "other_elec_infra_cost", + ] + + for key in cost_keys_map: + design_dict["MHKCosts"][f"{key}_method"] = 2 # used modeled values + design_dict["MHKCosts"][f"{key}_input"] = 0 + if self.pysam_cost_options.get("MHKCosts", {}).get(f"{key}_input", None) is not None: + design_dict["MHKCosts"][f"{key}_method"] = self.pysam_cost_options.get( + "MHKCosts" + ).get(f"{key}_input") + design_dict["MHKCosts"][f"{key}_input"] = self.pysam_cost_options.get( + "MHKCosts" + ).get(f"{key}_method") + + return design_dict + + +class PySAMMarineCostModel(CostModelBaseClass): + """An OpenMDAO component for calculating the costs associated + with Marine Hydrokinetic (MHK) energy systems. + + The class initializes and configures cost calculations for MHK systems. + It uses the PySAM library for cost modeling which is based on industry + input as well as the Department of Energy + [Reference Model Project](https://energy.sandia.gov/programs/renewable-energy/water-power/projects/reference-model-project-rmp/). + Additional MHK cost model information can be found + through the [System Advisor Model](https://sam.nlr.gov/). + + Note: + The supported reference models in this cost model are: + - Reference Model 1: Tidal Current Turbine + - Reference Model 2: River Current Turbine + - Reference Model 3: Wave Point Absorber + - Reference Model 5: Oscillating Surge Flap + - Reference Model 6: Oscillating Water Column + + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + self.config = PySAMMarineCostConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), + additional_cls_name=self.__class__.__name__, + ) + super().setup() + + self.add_input( + "device_rating", + val=self.config.device_rating_kw, + units="kW", + desc="Rated power of the MHK device", + ) + + self.add_input( + "num_devices", + val=self.config.num_devices, + units="unitless", + desc="Number of MHK devices in the system", + ) + + self.cost_model = MhkCost.new() + + design_dict = self.config.create_input_dict() + if bool(self.config.pysam_cost_options): + for group, group_parameters in self.config.pysam_cost_options.items(): + if group in design_dict: + design_dict[group].update(group_parameters) + else: + design_dict.update({group: group_parameters}) + self.cost_model.assign(design_dict) + + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # Assign + number_devices = inputs["num_devices"][0] + device_rating = inputs["device_rating"][0] + self.cost_model.value("device_rated_power", device_rating) + self.cost_model.value("system_capacity", device_rating * number_devices) + + if number_devices < self.config.number_rows: + raise Exception("number_of_rows exceeds num_devices") + else: + if (number_devices / self.config.number_rows).is_integer(): + self.cost_model.value("devices_per_row", number_devices / self.config.number_rows) + else: + raise Exception( + "Layout must be square or rectangular. Modify 'number_rows' or 'num_devices'." + ) + + # Assign type of MHK device + ref_model_num = f"RM{self.config.reference_model_number}" + self.cost_model.value("lib_wave_device", ref_model_num) + if ref_model_num == "RM3" or ref_model_num == "RM5" or ref_model_num == "RM6": + self.cost_model.value("marine_energy_tech", 0) # Wave + self.cost_model.value("lib_wave_device", ref_model_num) + elif ref_model_num == "RM1" or ref_model_num == "RM2": + self.cost_model.value("marine_energy_tech", 1) # Tidal + self.cost_model.value("lib_tidal_device", ref_model_num) + else: + self.cost_model.value("marine_energy_tech", 0) # Generic + self.cost_model.value("library_or_input_wec", 0) + + # Inter-array cable length, m + # The total length of cable used within the array of devices + array_cable_length = (self.cost_model.value("devices_per_row") - 1) * ( + self.config.device_spacing * self.config.number_rows + ) + self.config.row_spacing * (self.config.number_rows - 1) + self.cost_model.value("inter_array_cable_length", array_cable_length) + + # Export cable length, m + # The length of cable between the array and onshore grid connection point + export_cable_length = (self.config.water_depth + self.config.distance_to_shore) * ( + 1 + self.config.cable_system_overbuild / 100 + ) + self.cost_model.value("export_cable_length", export_cable_length) + + # Riser cable length, m + # The length of cable from the seabed to the water surface that + # connects the floating device to the seabed cabling. + # Applies only to floating array + riser_cable_length = ( + 1.5 + * self.config.water_depth + * number_devices + * (1 + self.config.cable_system_overbuild / 100) + ) + self.cost_model.value("riser_cable_length", riser_cable_length) + + self.cost_model.execute(1) + + cost_dict = self.cost_model.Outputs.export() + + capex = ( + cost_dict["structural_assembly_cost_modeled"] + + cost_dict["power_takeoff_system_cost_modeled"] + + cost_dict["mooring_found_substruc_cost_modeled"] + ) + bos = ( + cost_dict["development_cost_modeled"] + + cost_dict["eng_and_mgmt_cost_modeled"] + + cost_dict["plant_commissioning_cost_modeled"] + + cost_dict["site_access_port_staging_cost_modeled"] + + cost_dict["assembly_and_install_cost_modeled"] + + cost_dict["other_infrastructure_cost_modeled"] + ) + elec_infrastruc_costs = ( + cost_dict["array_cable_system_cost_modeled"] + + cost_dict["export_cable_system_cost_modeled"] + + cost_dict["onshore_substation_cost_modeled"] + + cost_dict["offshore_substation_cost_modeled"] + + cost_dict["other_elec_infra_cost_modeled"] + ) + financial = ( + cost_dict["project_contingency"] + + cost_dict["insurance_during_construction"] + + cost_dict["reserve_accounts"] + ) + + total_installed_cost = capex + bos + elec_infrastruc_costs + financial + + outputs["CapEx"] = total_installed_cost + + opex = cost_dict["maintenance_cost"] + cost_dict["operations_cost"] + + outputs["OpEx"] = opex diff --git a/h2integrate/converters/water_power/test/conftest.py b/h2integrate/converters/water_power/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/converters/water_power/test/conftest.py +++ b/h2integrate/converters/water_power/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/converters/water_power/test/test_marine_pysam_cost.py b/h2integrate/converters/water_power/test/test_marine_pysam_cost.py new file mode 100644 index 000000000..0578527e5 --- /dev/null +++ b/h2integrate/converters/water_power/test/test_marine_pysam_cost.py @@ -0,0 +1,310 @@ +import pytest +import openmdao.api as om + +from h2integrate.resource.tidal import TidalResource +from h2integrate.converters.water_power.tidal_pysam import PySAMTidalPerformanceModel +from h2integrate.converters.water_power.pysam_marine_cost import PySAMMarineCostModel + + +@pytest.fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + "dt": 3600, + }, + }, + "site": { + "latitude": 47.5233, + "longitude": -92.5366, + "resources": { + "tidal_resource": { + "resource_parameters": { + "resource_dir": "resource_files/tidal/", + "resource_filename": "Tidal_resource_timeseries.csv", + } + } + }, + }, + } + return plant_config + + +@pytest.fixture +def cost_config(): + cost_config = { + "model_inputs": { + "cost_parameters": { + "device_rating_kw": 1115, + "num_devices": 20, + "reference_model_number": 1, + "water_depth": 100, + "distance_to_shore": 80, + "number_rows": 2, + "device_spacing": 600, + "row_spacing": 600, + "cable_system_overbuild": 20, + } + } + } + return cost_config + + +# Loop through reference model number and test capex and opex values +@pytest.mark.unit +def test_ref_model_number1(cost_config, plant_config, subtests): + prob = om.Problem() + + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + with subtests.test("RM1 Capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 123902868.62743238 + ) + + with subtests.test("RM1 Opex"): + assert pytest.approx(prob.get_val("cost.OpEx", units="USD/year"), rel=1e-6) == 4498582.9 + + +@pytest.mark.unit +def test_ref_model_number2(cost_config, plant_config, subtests): + prob = om.Problem() + + cost_config["model_inputs"]["cost_parameters"]["reference_model_number"] = 2 + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + with subtests.test("RM2 Capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 194855694.06743234 + ) + + with subtests.test("RM2 Opex"): + assert pytest.approx(prob.get_val("cost.OpEx", units="USD/year"), rel=1e-6) == 4498582.9 + + +@pytest.mark.unit +def test_ref_model_number3(cost_config, plant_config, subtests): + prob = om.Problem() + + cost_config["model_inputs"]["cost_parameters"]["reference_model_number"] = 3 + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + with subtests.test("RM3 Capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 366034529.39826673 + ) + + with subtests.test("RM3 Opex"): + assert pytest.approx(prob.get_val("cost.OpEx", units="USD/year"), rel=1e-6) == 4498582.9 + + +@pytest.mark.unit +def test_ref_model_number5(cost_config, plant_config, subtests): + prob = om.Problem() + + cost_config["model_inputs"]["cost_parameters"]["reference_model_number"] = 5 + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + with subtests.test("RM5 Capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 366895942.95049995 + ) + + with subtests.test("RM5 Opex"): + assert pytest.approx(prob.get_val("cost.OpEx", units="USD/year"), rel=1e-6) == 4498582.9 + + +@pytest.mark.unit +def test_ref_model_number6(cost_config, plant_config, subtests): + prob = om.Problem() + + cost_config["model_inputs"]["cost_parameters"]["reference_model_number"] = 6 + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + with subtests.test("RM6 Capex"): + assert pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 580646799.6967537 + + with subtests.test("RM6 Opex"): + assert pytest.approx(prob.get_val("cost.OpEx", units="USD/year"), rel=1e-6) == 4498582.9 + + +@pytest.mark.unit +def test_custom_cost(cost_config, plant_config, subtests): + prob = om.Problem() + + cost_config["model_inputs"]["cost_parameters"]["pysam_cost_options"] = { + "MHKCosts": { + "structural_assembly_cost_input": 20, # $/kw + "structural_assembly_cost_method": 0, # Enter in $/kw + } + } + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + with subtests.test("capex is not equal to RM1 capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) + != 123902868.62743238 # Value from test_ref_model_number1 subtest [RM1 Capex] + ) + with subtests.test("Adjusted RM1 Capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 122936916.35143237 + ) + + +@pytest.mark.integration +def test_performance_cost_with_pysam_options(plant_config, cost_config, subtests): + prob = om.Problem() + + tidal_resource = TidalResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["tidal_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("tidal_resource", tidal_resource, promotes=["*"]) + + tidal_config = { + "model_inputs": { + "performance_parameters": { + "create_model_from": "default", + "num_devices": 20, + "device_rating_kw": 1115, + "pysam_options": { + "MHKTidal": { + "loss_downtime": 10.0, + } + }, + } + } + } + comp = PySAMTidalPerformanceModel( + plant_config=plant_config, + tech_config=tidal_config, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + + cost_config["model_inputs"]["cost_parameters"]["pysam_cost_options"] = { + "MHKCosts": { + "structural_assembly_cost_input": 20, # $/kw + "structural_assembly_cost_method": 0, # Enter in $/kw + } + } + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + with subtests.test("total_electricity_produced value"): + assert ( + pytest.approx(prob.get_val("comp.total_electricity_produced", units="kW*h"), rel=1e-6) + == 51531688.16819879 + ) + + with subtests.test("capex is not equal to RM1 capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) + != 123902868.62743238 # Value from test_ref_model_number1 subtest [RM1 Capex] + ) + with subtests.test("Adjusted RM1 Capex"): + assert ( + pytest.approx(prob.get_val("cost.CapEx", units="USD"), rel=1e-6) == 122936916.35143237 + ) + + +@pytest.mark.unit +def test_rows_and_device_error(cost_config, plant_config): + prob = om.Problem() + + msg = "number_of_rows exceeds num_devices" + with pytest.raises(Exception, match=msg): + cost_config["model_inputs"]["cost_parameters"]["number_rows"] = 100 + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() + + +@pytest.mark.unit +def test_layout_error(cost_config, plant_config): + prob = om.Problem() + msg = "Layout must be square or rectangular. Modify 'number_rows' or 'num_devices'." + with pytest.raises(Exception, match=msg): + cost_config["model_inputs"]["cost_parameters"]["num_devices"] = 25 + cost = PySAMMarineCostModel( + plant_config=plant_config, + tech_config=cost_config, + driver_config={}, + ) + + prob.model.add_subsystem("cost", cost, promotes=["*"]) + prob.setup() + + prob.run_model() diff --git a/h2integrate/converters/water_power/test/test_tidal_pysam.py b/h2integrate/converters/water_power/test/test_tidal_pysam.py new file mode 100644 index 000000000..58d2be0af --- /dev/null +++ b/h2integrate/converters/water_power/test/test_tidal_pysam.py @@ -0,0 +1,360 @@ +import numpy as np +import pytest +import openmdao.api as om + +from h2integrate.resource.tidal import TidalResource +from h2integrate.converters.water_power.tidal_pysam import PySAMTidalPerformanceModel + + +@pytest.fixture +def tidal_config(): + config = { + "model_inputs": { + "performance_parameters": { + "device_rating_kw": 1115, # [kW] + "num_devices": 20, + "tidal_power_curve": [ + (0.0, 0.0), + (0.1, 0.0), + (0.2, 0.0), + (0.3, 0.0), + (0.4, 0.0), + (0.5, 0.0), + (0.6, 10.4211), + (0.7, 20.8423), + (0.8, 39.9689), + (0.9, 59.0956), + (1.0, 89.2016), + (1.1, 119.3080), + (1.2, 160.8860), + (1.3, 202.4640), + (1.4, 259.2920), + (1.5, 316.1200), + (1.6, 392.6730), + (1.7, 469.2260), + (1.8, 570.3060), + (1.9, 671.3860), + (2.0, 802.9080), + (2.1, 934.4300), + (2.2, 1024.7100), + (2.3, 1115.0000), + (2.4, 1115.0000), + (2.5, 1115.0000), + (2.6, 1115.0000), + (2.7, 1115.0000), + (2.8, 1115.0000), + (2.9, 1115.0000), + (3.0, 1115.0000), + (3.1, 1115.0000), + (3.2, 1085.3700), + (3.3, 1055.7300), + ], + } + } + } + return config + + +@pytest.fixture +def pysam_options(): + pysam_options = { + "MHKTidal": { + "loss_array_spacing": 0.0, + "loss_resource_overprediction": 0.0, + "loss_transmission": 0.0, + "loss_downtime": 0.0, + "loss_additional": 0.0, + } + } + return pysam_options + + +@pytest.fixture +def plant_config(): + plant_config = { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + "dt": 3600, + }, + }, + "site": { + "latitude": 47.5233, + "longitude": -92.5366, + "resources": { + "tidal_resource": { + "resource_parameters": { + "resource_dir": "resource_files/tidal/", + "resource_filename": "Tidal_resource_timeseries.csv", + } + } + }, + }, + } + return plant_config + + +@pytest.mark.unit +def test_tidal_pysam_outputs(plant_config, tidal_config, pysam_options, subtests): + prob = om.Problem() + + tidal_resource = TidalResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["tidal_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("tidal_resource", tidal_resource, promotes=["*"]) + + tidal_config["model_inputs"]["performance_parameters"]["pysam_options"] = pysam_options + comp = PySAMTidalPerformanceModel( + plant_config=plant_config, + tech_config=tidal_config, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + prob.setup() + prob.run_model() + + commodity = "electricity" + commodity_amount_units = "kW*h" + commodity_rate_units = "kW" + plant_life = int(plant_config["plant"]["plant_life"]) + n_timesteps = int(plant_config["plant"]["simulation"]["n_timesteps"]) + + # Check that replacement schedule is between 0 and 1 + with subtests.test("0 <= replacement_schedule <=1"): + assert np.all(prob.get_val("comp.replacement_schedule", units="unitless") >= 0) + assert np.all(prob.get_val("comp.replacement_schedule", units="unitless") <= 1) + + with subtests.test("replacement_schedule length"): + assert len(prob.get_val("comp.replacement_schedule", units="unitless")) == plant_life + + # Check that capacity factor is between 0 and 1 with units of "unitless" + with subtests.test("0 <= capacity_factor (unitless) <=1"): + assert np.all(prob.get_val("comp.capacity_factor", units="unitless") >= 0) + assert np.all(prob.get_val("comp.capacity_factor", units="unitless") <= 1) + + # Check that capacity factor is between 1 and 100 with units of "percent" + with subtests.test("1 <= capacity_factor (percent) <=1"): + assert np.all(prob.get_val("comp.capacity_factor", units="percent") >= 1) + assert np.all(prob.get_val("comp.capacity_factor", units="percent") <= 100) + + with subtests.test("capacity_factor length"): + assert len(prob.get_val("comp.capacity_factor", units="unitless")) == plant_life + + # Test that rated commodity production is greater than zero + with subtests.test(f"rated_{commodity}_production > 0"): + assert np.all( + prob.get_val(f"comp.rated_{commodity}_production", units=commodity_rate_units) > 0 + ) + + with subtests.test(f"rated_{commodity}_production length"): + assert ( + len(prob.get_val(f"comp.rated_{commodity}_production", units=commodity_rate_units)) == 1 + ) + + # Test that total commodity production is greater than zero + with subtests.test(f"total_{commodity}_produced > 0"): + assert np.all( + prob.get_val(f"comp.total_{commodity}_produced", units=commodity_amount_units) > 0 + ) + with subtests.test(f"total_{commodity}_produced length"): + assert ( + len(prob.get_val(f"comp.total_{commodity}_produced", units=commodity_amount_units)) == 1 + ) + + # Test that annual commodity production is greater than zero + with subtests.test(f"annual_{commodity}_produced > 0"): + assert np.all( + prob.get_val(f"comp.annual_{commodity}_produced", units=f"{commodity_amount_units}/yr") + > 0 + ) + + with subtests.test(f"annual_{commodity}_produced[1:] == annual_{commodity}_produced[0]"): + annual_production = prob.get_val( + f"comp.annual_{commodity}_produced", units=f"{commodity_amount_units}/yr" + ) + assert np.all(annual_production[1:] == annual_production[0]) + + with subtests.test(f"annual_{commodity}_produced length"): + assert len(annual_production) == plant_life + + # Test that commodity output has some values greater than zero + with subtests.test(f"Some of {commodity}_out > 0"): + assert np.any(prob.get_val(f"comp.{commodity}_out", units=commodity_rate_units) > 0) + + with subtests.test(f"{commodity}_out length"): + assert len(prob.get_val(f"comp.{commodity}_out", units=commodity_rate_units)) == n_timesteps + + # Test default values + with subtests.test("operational_life default value"): + assert prob.get_val("comp.operational_life", units="yr") == plant_life + with subtests.test("replacement_schedule value"): + assert np.all(prob.get_val("comp.replacement_schedule", units="unitless") == 0) + + +@pytest.mark.unit +def test_tidal_performance_values(plant_config, tidal_config, pysam_options, subtests): + """Add tests for values from performance model.""" + prob = om.Problem() + + tidal_resource = TidalResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["tidal_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("tidal_resource", tidal_resource, promotes=["*"]) + + tidal_config["model_inputs"]["performance_parameters"]["pysam_options"] = pysam_options + comp = PySAMTidalPerformanceModel( + plant_config=plant_config, + tech_config=tidal_config, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + prob.setup() + prob.run_model() + + # Test output values + with subtests.test("electricity_out value"): + assert ( + pytest.approx(np.sum(prob.get_val("comp.electricity_out", units="kW")), rel=1e-6) + == 60625515.492 + ) + + with subtests.test("rated_electricity_production value"): + assert ( + pytest.approx(prob.get_val("comp.rated_electricity_production", units="kW"), rel=1e-6) + == 1115 * 20 + ) + with subtests.test("total_electricity_produced value"): + assert ( + pytest.approx(prob.get_val("comp.total_electricity_produced", units="kW*h"), rel=1e-6) + == 60625515.492 + ) + with subtests.test("capacity_factor value"): + assert ( + pytest.approx(prob.get_val("comp.capacity_factor", units="unitless"), rel=1e-6) + == 0.310346 + ) + + with subtests.test("annual_electricity_produced value"): + assert ( + pytest.approx( + prob.get_val("comp.annual_electricity_produced", units="kW*h/yr"), rel=1e-6 + ) + == 60625515.492 + ) + + +@pytest.mark.unit +### Test run_recalculate_power_curve method +def test_recalculate_power_curve(plant_config, tidal_config, pysam_options, subtests): + prob = om.Problem() + + tidal_resource = TidalResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["tidal_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("tidal_resource", tidal_resource, promotes=["*"]) + + tidal_config["model_inputs"]["performance_parameters"]["pysam_options"] = pysam_options + tidal_config["model_inputs"]["performance_parameters"]["run_recalculate_power_curve"] = True + tidal_config["model_inputs"]["performance_parameters"]["device_rating_kw"] = ( + 2230 # 2x the original rating + ) + + comp = PySAMTidalPerformanceModel( + plant_config=plant_config, + tech_config=tidal_config, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + prob.setup() + prob.run_model() + + device_rating_kw = 2230 # 2x the original rating + + with subtests.test("correctly runs in model"): + # Check that the model runs with the recalculated power curve and produces expected outputs + assert ( + pytest.approx(prob.get_val("comp.rated_electricity_production", units="kW"), rel=1e-6) + == device_rating_kw * 20 + ) + + with subtests.test("annual_electricity_produced value recalculated power curve"): + assert ( + pytest.approx( + prob.get_val("comp.annual_electricity_produced", units="kW*h/yr"), rel=1e-6 + ) + == 60625515.492 * 2 + ) + + +@pytest.mark.unit +def test_tidal_default_model(plant_config, subtests): + """Add tests for values from performance model.""" + prob = om.Problem() + + tidal_resource = TidalResource( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["tidal_resource"]["resource_parameters"], + driver_config={}, + ) + + prob.model.add_subsystem("tidal_resource", tidal_resource, promotes=["*"]) + + tidal_config = { + "model_inputs": { + "performance_parameters": { + "create_model_from": "default", + "num_devices": 20, + "device_rating_kw": 1115, + } + } + } + comp = PySAMTidalPerformanceModel( + plant_config=plant_config, + tech_config=tidal_config, + driver_config={}, + ) + prob.model.add_subsystem("comp", comp, promotes=["*"]) + prob.setup() + prob.run_model() + + # Test output values + with subtests.test("electricity_out value"): + assert ( + pytest.approx(np.sum(prob.get_val("comp.electricity_out", units="kW")), rel=1e-6) + == 56381729.40755999 + ) + + # test that it correctly adds the number of devices (overwriting PySAM json defaults) + with subtests.test("rated_electricity_production value"): + assert ( + pytest.approx(prob.get_val("comp.rated_electricity_production", units="kW"), rel=1e-6) + == 1115 * 20 + ) + with subtests.test("total_electricity_produced value"): + assert ( + pytest.approx(prob.get_val("comp.total_electricity_produced", units="kW*h"), rel=1e-6) + == 56381729.40755999 + ) + with subtests.test("capacity_factor value"): + assert ( + pytest.approx(prob.get_val("comp.capacity_factor", units="unitless"), rel=1e-6) + == 0.28862199 + ) + + with subtests.test("annual_electricity_produced value"): + assert ( + pytest.approx( + prob.get_val("comp.annual_electricity_produced", units="kW*h/yr"), rel=1e-6 + ) + == 56381729.40755999 + ) diff --git a/h2integrate/converters/water_power/tidal_pysam.py b/h2integrate/converters/water_power/tidal_pysam.py new file mode 100644 index 000000000..f0e961175 --- /dev/null +++ b/h2integrate/converters/water_power/tidal_pysam.py @@ -0,0 +1,230 @@ +import PySAM.MhkTidal as MhkTidal +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.validators import gt_zero, contains +from h2integrate.core.model_baseclasses import PerformanceModelBaseClass + + +@define(kw_only=True) +class PySAMTidalPerformanceConfig(BaseConfig): + """ + Configuration class for MHKTidalPlant. + + Args: + device_rating_kw (float): Rated power of the MHK device [kW] + num_devices (int): Number of MHK tidal devices in the system + tidal_power_curve (List[List[float]]): Power curve of tidal energy device as + function of stream speeds [kW]. Required if create_model_from == 'new'. + create_model_from (str): + - 'default': instantiate MhkTidal model from the default config 'config_name' + - 'new': instantiate new MhkTidal model (default). Requires pysam_options. + config_name (str,optional): PySAM.MhkTidal configuration name for non-hybrid wind systems. + Defaults to 'MEtidalNone'. Only used if create_model_from='default'. + pysam_options (dict, optional): dictionary of MhkTidal input parameters with + top-level keys corresponding to the different MhkTidal variable groups. + (please refer to MhkTidal documentation + `here `__ + ) + run_recalculate_power_curve (bool, optional): If True, the tidal device power curve will be + recalculated based on the device_rating_kw and original power_curve. Defaults to False. + + """ + + device_rating_kw: float = field(validator=gt_zero) + num_devices: int = field(validator=gt_zero) + tidal_power_curve: list[list[float]] | None = field(default=None) + + create_model_from: str = field( + default="new", validator=contains(["default", "new"]), converter=(str.strip, str.lower) + ) + + config_name: str = field( + default="MEtidalNone", + validator=contains( + [ + "MEtidalLCOECalculator", + "MEtidalNone", + ] + ), + ) + pysam_options: dict = field(default={}) + run_recalculate_power_curve: bool = field(default=False) + + def __attrs_post_init__(self): + if self.create_model_from == "new" and not bool(self.pysam_options): + msg = ( + "To create a new MhkTidal object, please provide a dictionary " + "of MhkTidal design variables for the 'pysam_options' key." + ) + raise ValueError(msg) + + if self.create_model_from == "new" and self.tidal_power_curve is None: + msg = ( + "To create a new MhkTidal object, please provide a " + "tidal_power_curve in the config." + ) + raise ValueError(msg) + + self.check_pysam_options() + + def check_pysam_options(self): + """Checks that top-level keys of pysam_options dictionary are valid and that + system capacity is not given in pysam_options. + + Raises: + ValueError: if top-level keys of pysam_options are not valid. + ValueError: if number_devices is provided in pysam_options["MHKTidal"] + """ + valid_groups = [ + "MHKTidal", + "AdjustmentFactors", + ] + if bool(self.pysam_options): + invalid_groups = [k for k in self.pysam_options if k not in valid_groups] + if len(invalid_groups) > 0: + msg = ( + f"Invalid group(s) found in pysam_options: {invalid_groups}. " + f"Valid groups are: {valid_groups}." + ) + raise ValueError(msg) + + if self.pysam_options.get("MHKTidal", {}).get("number_devices", None) is not None: + msg = ( + "Please do not specify number_devices in the pysam_options dictionary. " + "The number of tidal devices should be set with the 'num_devices' " + "performance parameter." + ) + raise ValueError(msg) + + return + + def create_input_dict(self): + """Create dictionary of inputs to over-write the default values + associated with the specified MhkTidal configuration. + + Returns: + dict: dictionary of MHKTidal group parameters from user-input. + """ + design_dict = { + "MHKTidal": { + "number_devices": self.num_devices, + }, + } + + return design_dict + + +class PySAMTidalPerformanceModel(PerformanceModelBaseClass): + """An OpenMDAO component that wraps the PySAM MhkTidal model. + It takes tidal parameters as input and outputs power generation data. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def initialize(self): + super().initialize() + self.commodity = "electricity" + self.commodity_rate_units = "kW" + self.commodity_amount_units = "kW*h" + + def setup(self): + super().setup() + self.config = PySAMTidalPerformanceConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + additional_cls_name=self.__class__.__name__, + ) + + #### Tidal Resource #### + self.add_input( + "tidal_velocity", + val=0.0, + shape=self.n_timesteps, + units="m/s", + ) + + #### Tidal Device Parameters #### + self.add_input( + "num_devices", + val=self.config.num_devices, + units="unitless", + desc="Number of tidal devices in the system", + ) + + self.add_input( + "device_rating", + val=self.config.device_rating_kw, + units="kW", + desc="Rated power of the tidal energy device", + ) + + if self.config.create_model_from == "default": + self.system_model = MhkTidal.default(self.config.config_name) + elif self.config.create_model_from == "new": + self.system_model = MhkTidal.new() + self.system_model.value("tidal_power_curve", self.config.tidal_power_curve) + + design_dict = self.config.create_input_dict() + if bool(self.config.pysam_options): + for group, group_parameters in self.config.pysam_options.items(): + if group in design_dict: + design_dict[group].update(group_parameters) + else: + design_dict.update({group: group_parameters}) + self.system_model.assign(design_dict) + + def recalculate_power_curve(self, device_rating_kw, power_curve): + """Recalculate tidal device power curve based on the device rating. + + Args: + device_rating_kw (float): Rated power of the tidal energy device in kW. + power_curve (List[List[float]]): Original power curve of tidal energy + device as function of stream speeds [kW]. + + Returns: + List[List[float]]: Recalculated power curve based on the device rating. + """ + original_rated_power = max([point[1] for point in power_curve]) + scaling_factor = device_rating_kw[0] / original_rated_power + recalculated_power_curve = [(point[0], point[1] * scaling_factor) for point in power_curve] + + return recalculated_power_curve + + def compute(self, inputs, outputs): + # set tidal resource model choice + self.system_model.MHKTidal.tidal_resource_model_choice = ( + 1 # Time-series data=1 JPD=0 (Joint-probability distribution) + ) + + # assign resource to tidal model + tidal_velocity = inputs["tidal_velocity"] + self.system_model.value("tidal_velocity", tidal_velocity) + + # recalculate power curve if specified in config + if self.config.run_recalculate_power_curve: + recalculated_power_curve = self.recalculate_power_curve( + device_rating_kw=inputs["device_rating"], + power_curve=self.config.tidal_power_curve, + ) + self.system_model.value("tidal_power_curve", recalculated_power_curve) + + # calculate system capacity + system_capacity_kw = inputs["num_devices"][0] * inputs["device_rating"][0] + self.system_model.value("system_capacity", system_capacity_kw) + self.system_model.value("number_devices", inputs["num_devices"][0]) + + # run the model + self.system_model.execute(0) + + outputs["electricity_out"] = self.system_model.Outputs.gen + outputs["rated_electricity_production"] = system_capacity_kw + + outputs["total_electricity_produced"] = outputs["electricity_out"].sum() * (self.dt / 3600) + outputs["annual_electricity_produced"] = self.system_model.Outputs.annual_energy + + outputs["capacity_factor"] = ( + self.system_model.Outputs.capacity_factor / 100 + ) # divide by 100 to make it unitless diff --git a/h2integrate/converters/wind/atb_wind_cost.py b/h2integrate/converters/wind/atb_wind_cost.py index 7aaf35edf..1f9a75809 100644 --- a/h2integrate/converters/wind/atb_wind_cost.py +++ b/h2integrate/converters/wind/atb_wind_cost.py @@ -10,10 +10,10 @@ class ATBWindPlantCostModelConfig(CostModelBaseConfig): """Configuration class for the ATBWindCostModel. Recommended to use with wind models (Land-Based, Offshore and Distributed More information on ATB methodology and representative wind technologies can - be found `here `_ + be found `here `_ Reference cost values can be found on the `Land-Based Wind`, `Fixed-Bottom Offshore Wind`, `Floating Offshore Wind` or `Distributed Wind` - sheet of the `NREL ATB workbook `_. + sheet of the `NLR ATB workbook `_. Attributes: capex_per_kW (float|int): capital cost of wind system in $/kW @@ -48,6 +48,11 @@ class ATBWindPlantCostModel(CostModelBaseClass): Annual operating expenditure of the wind plant. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = ATBWindPlantCostModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), diff --git a/h2integrate/converters/wind/floris.py b/h2integrate/converters/wind/floris.py index 773e73a2a..02c26ef1e 100644 --- a/h2integrate/converters/wind/floris.py +++ b/h2integrate/converters/wind/floris.py @@ -104,6 +104,11 @@ class FlorisWindPlantPerformanceModel(WindPerformanceBaseClass, CacheBaseClass): outputs power generation data. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) diff --git a/h2integrate/converters/wind/layout/test/conftest.py b/h2integrate/converters/wind/layout/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/wind/layout/test/conftest.py +++ b/h2integrate/converters/wind/layout/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/wind/test/conftest.py b/h2integrate/converters/wind/test/conftest.py index 3c9a44d85..81f4ba75b 100644 --- a/h2integrate/converters/wind/test/conftest.py +++ b/h2integrate/converters/wind/test/conftest.py @@ -3,7 +3,11 @@ import pytest from hopp import TEST_ENV_VAR -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/converters/wind/test/test_ard_wind.py b/h2integrate/converters/wind/test/test_ard_wind.py index 0fbf47dd6..6afcbf8be 100644 --- a/h2integrate/converters/wind/test/test_ard_wind.py +++ b/h2integrate/converters/wind/test/test_ard_wind.py @@ -55,18 +55,18 @@ def ard_config(): "rated_power": 5000000.0, # W "num_blades": 3, "rated_thrust_N": 823484.4216152605, # from NREL 5MW definition - "gust_velocity_m_per_s": 70.0, # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + "gust_velocity_m_per_s": 70.0, # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml "blade_surface_area": 69.7974979, "tower_mass": 620.4407337521, "nacelle_mass": 101.98582836439, "hub_mass": 8.38407517646, "blade_mass": 14.56341339641, "foundation_height": 0.0, - "commissioning_cost_kW": 44.0, # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml - "decommissioning_cost_kW": 58.0, # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + "commissioning_cost_kW": 44.0, # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + "decommissioning_cost_kW": 58.0, # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml "trench_len_to_substation_km": 50.0, "distance_to_interconnect_mi": 4.97096954, - "interconnect_voltage_kV": 130.0, # from https://github.com/WISDEM/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml + "interconnect_voltage_kV": 130.0, # from https://github.com/NLRWindSystems/WISDEM/blob/master/examples/02_reference_turbines/nrel5mw.yaml "tcc_per_kW": 1300.00, # (USD/kW) "opex_per_kW": 44.00, # (USD/kWh) }, diff --git a/h2integrate/converters/wind/tools/test/conftest.py b/h2integrate/converters/wind/tools/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/converters/wind/tools/test/conftest.py +++ b/h2integrate/converters/wind/tools/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/converters/wind/wind_plant_ard.py b/h2integrate/converters/wind/wind_plant_ard.py index 43204e623..fedb9ab33 100644 --- a/h2integrate/converters/wind/wind_plant_ard.py +++ b/h2integrate/converters/wind/wind_plant_ard.py @@ -37,19 +37,13 @@ class WindArdPerformanceCompatibilityComponent(PerformanceModelBaseClass): H2Integrate. """ + _time_step_bounds = (3600, 3600) # (min, max) time step lengths compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" self.commodity_rate_units = "kW" self.commodity_amount_units = "kW*h" - if set_up_ard_model is None: - msg = ( - "Please install `ard-nrel` or `h2integrate[ard]` to use the" - " `WindArdPerformanceCompatibilityComponent` Ard-based model." - " It is highly recommended to run `conda install wisdem` first. See H2I's" - "installation instructions for further details." - ) - raise ModuleNotFoundError(msg) def setup(self): self.config = WindPlantArdModelConfig.from_dict( @@ -99,6 +93,11 @@ class WindArdCostCompatibilityComponent(CostModelBaseClass): requires a self.config attribute to be defined, so we create this minimal subclass. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = CostModelBaseConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost") @@ -145,11 +144,24 @@ class ArdWindPlantModel(om.Group): VarOpEx: Variable operating expenditure (currently placeholder). """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) self.options.declare("tech_config", types=dict) + if set_up_ard_model is None: + msg = ( + "Please install `ard-nrel` or `h2integrate[ard]` to use the" + " `ArdWindPlantModel`. See H2I's installation instructions " + "for further details." + ) + raise ModuleNotFoundError(msg) + def setup(self): self.config = WindPlantArdModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") diff --git a/h2integrate/converters/wind/wind_plant_baseclass.py b/h2integrate/converters/wind/wind_plant_baseclass.py index 0355996fb..6e4de0bd2 100644 --- a/h2integrate/converters/wind/wind_plant_baseclass.py +++ b/h2integrate/converters/wind/wind_plant_baseclass.py @@ -2,6 +2,11 @@ class WindPerformanceBaseClass(PerformanceModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() self.commodity = "electricity" diff --git a/h2integrate/converters/wind/wind_pysam.py b/h2integrate/converters/wind/wind_pysam.py index 074ea9eb6..46dd84a2e 100644 --- a/h2integrate/converters/wind/wind_pysam.py +++ b/h2integrate/converters/wind/wind_pysam.py @@ -182,6 +182,11 @@ class PYSAMWindPlantPerformanceModel(WindPerformanceBaseClass): It takes wind parameters as input and outputs power generation data. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): super().setup() @@ -247,7 +252,7 @@ def setup(self): if self.config.create_model_from == "default": self.system_model = Windpower.default(self.config.config_name) elif self.config.create_model_from == "new": - self.system_model = Windpower.new(self.config.config_name) + self.system_model = Windpower.new() design_dict = self.config.create_input_dict() if bool(self.config.pysam_options): diff --git a/h2integrate/core/commodity_stream_definitions.py b/h2integrate/core/commodity_stream_definitions.py new file mode 100644 index 000000000..22e20bddb --- /dev/null +++ b/h2integrate/core/commodity_stream_definitions.py @@ -0,0 +1,114 @@ +""" +Commodity stream definitions for H2Integrate. + +This module contains: +1. multivariable_streams: Definitions for streams that bundle multiple related variables +2. add_multivariable_output / add_multivariable_input: Helpers to register all + constituent variables of a multivariable stream on an OpenMDAO component +3. is_electricity_producer: Helper function to identify electricity-producing technologies +""" + +multivariable_streams = { + "wellhead_gas_mixture": { + "mass_flow": { + "units": "kg/h", + "desc": "Total mass flow rate of gas in the stream", + }, + "hydrogen_mass_fraction": { + "units": "unitless", + "desc": "Mass fraction of hydrogen in the gas stream", + }, + "oxygen_mass_fraction": { + "units": "unitless", + "desc": "Mass fraction of oxygen in the gas stream", + }, + "temperature": { + "units": "K", + "desc": "Temperature of the gas stream", + }, + "pressure": { + "units": "bar", + "desc": "Pressure of the gas stream", + }, + }, + # Future multivariable stream definitions can be added here +} + + +def add_multivariable_output(component, stream_name: str, n_timesteps: int) -> None: + """Add all constituent variables of a multivariable stream as outputs. + + For each variable defined in ``multivariable_streams[stream_name]``, an + output named ``:_out`` is added to *component*. + + Args: + component: An OpenMDAO component instance (must have ``add_output``). + stream_name: Key into :data:`multivariable_streams`. + n_timesteps: Length of the time-series dimension. + + Raises: + KeyError: If *stream_name* is not in :data:`multivariable_streams`. + """ + for var_name, var_props in multivariable_streams[stream_name].items(): + component.add_output( + f"{stream_name}:{var_name}_out", + val=0.0, + shape=n_timesteps, + units=var_props.get("units"), + desc=var_props.get("desc", ""), + ) + + +def add_multivariable_input(component, stream_name: str, n_timesteps: int) -> None: + """Add all constituent variables of a multivariable stream as inputs. + + For each variable defined in ``multivariable_streams[stream_name]``, an + input named ``:_in`` is added to *component*. + + Args: + component: An OpenMDAO component instance (must have ``add_input``). + stream_name: Key into :data:`multivariable_streams`. + n_timesteps: Length of the time-series dimension. + + Raises: + KeyError: If *stream_name* is not in :data:`multivariable_streams`. + """ + for var_name, var_props in multivariable_streams[stream_name].items(): + component.add_input( + f"{stream_name}:{var_name}_in", + val=0.0, + shape=n_timesteps, + units=var_props.get("units"), + desc=var_props.get("desc", ""), + ) + + +def is_electricity_producer(tech_name: str) -> bool: + """Check if a technology is an electricity producer. + + Args: + tech_name: The name of the technology to check. + Returns: + True if tech_name starts with any of the known electricity producing + tech prefixes (e.g., 'wind', 'solar', 'pv', 'grid_buy', etc.). + Note: + This uses prefix matching, so 'grid_buy_1' and 'grid_buy_2' would both + be considered electricity producers. Be careful when naming technologies + to avoid unintended matches (e.g., 'pv_battery' would be incorrectly + identified as an electricity producer). + """ + + # add any new electricity producing technologies to this list + electricity_producing_techs = [ + "wind", + "solar", + "pv", + "tidal", + "river", + "hopp", + "natural_gas_plant", + "grid_buy", + "h2_fuel_cell", + ] + + return any(tech_name.startswith(elem) for elem in electricity_producing_techs) diff --git a/h2integrate/core/dict_utils.py b/h2integrate/core/dict_utils.py index 1404024ac..34b5c3483 100644 --- a/h2integrate/core/dict_utils.py +++ b/h2integrate/core/dict_utils.py @@ -1,6 +1,7 @@ import copy import operator from functools import reduce +from collections import Counter import numpy as np @@ -217,3 +218,139 @@ def rename_dict_keys(input_dict, init_keyname, new_keyname): input_dict = update_keyname(input_dict, init_keyname, new_keyname) input_dict = remove_keynames(input_dict, init_keyname) return input_dict + + +def check_inputs(prob, tech: str, tech_info: dict, tech_config_path: str): + """Check the user-input technology configuration inputs against the + instantiated technology configuration classes to ensure that: + + 1. All user-input parameters are used in at least 1 configuration class + 2. User-input `shared_parameters` are shared across at least 2 configuration classes + 3. User-input parameters that are not shared are only used in 1 configuration class + + Args: + prob (om.Problem): OpenMDAO problem defined in H2IntegrateModel + tech (str): name of technology that the tech_info is for. + tech_info (dict): technology input dictionary, including the + technology model names and `model_inputs`. + tech_config_path (str or Path, optional): path to the technology + configuration file. Used in error messages to help the user + locate the problematic section. + + Raises: + AttributeError: Raised if any of the 3 conditions are not met. + """ + # Only check models that have a control strategy or dispatch rule set + if not {"control_strategy", "dispatch_rule_set"}.intersection(tech_info): + return + + # Only check for shared inputs when the system contains at least one technology + # in addition to a performance and control model + check_keys = ("control_strategy", "dispatch_rule_set", "cost_model", "performance_model") + minimal_keys = {"control_strategy", "performance_model"} + overlap = set(tech_info).intersection(check_keys) + if not overlap.difference(minimal_keys): + return + + msg = None + control_sys = None + dispatch_sys = None + cost_sys = None + perf_sys = None + group = getattr(prob.model.plant, tech) + + # Rebuild the model inputs dictionary from the initialized technology parameters + control_params = {} + dispatch_params = {} + cost_params = {} + performance_params = {} + if "control_strategy" in tech_info: + if (control_sys := getattr(group, tech_info["control_strategy"]["model"])) is not None: + control_params = control_sys.config.as_dict() + if "dispatch_rule_set" in tech_info: + if (dispatch_sys := getattr(group, tech_info["dispatch_rule_set"]["model"])) is not None: + dispatch_params = dispatch_sys.config.as_dict() + if "cost_model" in tech_info: + if (cost_sys := getattr(group, tech_info["cost_model"]["model"])) is not None: + cost_params = cost_sys.config.as_dict() + if "performance_model" in tech_info: + if (perf_sys := getattr(group, tech_info["performance_model"]["model"])) is not None: + performance_params = perf_sys.config.as_dict() + if "cost_model" in tech_info and "performance_model" in tech_info: + # Handle case with combined cost and performance model + if tech_info["cost_model"]["model"] == tech_info["performance_model"]["model"]: + cost_sys = None + cost_params = {} + + # Check for overlapping keys between any two sets of configurations to reconstruct + # the shared parameters, and create a restructured configuration + all_parameters = (control_params, dispatch_params, cost_params, performance_params) + _share_check = Counter([x for el in all_parameters for x in set(el)]) + shared = {k for k, v in _share_check.items() if v > 1} + shared_params = {k: control_params.pop(k) for k in shared.intersection(control_params)} + shared_params |= {k: dispatch_params.pop(k) for k in shared.intersection(dispatch_params)} + shared_params |= {k: cost_params.pop(k) for k in shared.intersection(cost_params)} + shared_params |= {k: performance_params.pop(k) for k in shared.intersection(performance_params)} + restructured_params = { + "control_parameters": control_params, + "dispatch_parameters": dispatch_params, + "cost_parameters": cost_params, + "performance_parameters": performance_params, + "shared_parameters": shared_params, + } + + tech_location = f"the '{tech}' section of {tech_config_path}" + + # Flag any extra parameterizations provided by the user that should have either been + # shared but were not or were inappropriately shared + for param_key, vals in restructured_params.items(): + # check that the parameter key exists in both the user-provided model_inputs and + # the restructured parameters + if (user_params := tech_info["model_inputs"].get(param_key)) is None: + continue + + # Only throw errors when the user provided extraneous parameterizations + user_extras = set(user_params).difference(vals) + if not user_extras: + continue + + if param_key == "shared_parameters": + unnecessary_shared = [ + (user_extras.intersection(other_params), other_key) + for other_key, other_params in restructured_params.items() + ] + unnecessary_shared = [el for el in unnecessary_shared if el[0]] # remove the empty sets + if unnecessary_shared: + if len(unnecessary_shared) == 1: + unshared_params, other_key = unnecessary_shared[0] + msg = ( + f"The parameter(s): {unnecessary_shared} found in shared_parameters" + f" but should be in {other_key} for {tech_location}" + ) + else: + mapping = "\n\t".join( + f"{level} should contain: {keys}" for keys, level in unnecessary_shared + ) + msg = ( + f"The following parameter sets were found in shared_parameters but should" + f" be in the following sections for {tech_location}:" + f"\n\t{mapping}" + ) + else: + msg = ( + f"The parameter(s): {user_extras} found in shared_parameters" + f" are not used by any of the models for {tech_location}" + ) + raise AttributeError(msg) + + shared_overlap = user_extras.intersection(restructured_params.get("shared_parameters", {})) + if shared_overlap: + msg = ( + f"The parameter(s) {shared_overlap} found in {param_key}" + f" should be under shared_parameters for {tech_location}" + ) + msg = ( + f"The parameter(s) {user_extras} found in {param_key} are not used for " + f"{tech_location}" + ) + raise AttributeError(msg) diff --git a/h2integrate/core/feedstocks.py b/h2integrate/core/feedstocks.py index 3a4fc5fd0..a0f457c3c 100644 --- a/h2integrate/core/feedstocks.py +++ b/h2integrate/core/feedstocks.py @@ -23,6 +23,11 @@ class FeedstockPerformanceConfig(BaseConfig): class FeedstockPerformanceModel(om.ExplicitComponent): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) @@ -75,7 +80,6 @@ class FeedstockCostConfig(CostModelBaseConfig): price: int | float | list = field() annual_cost: float = field(default=0.0) start_up_cost: float = field(default=0.0) - commodity_amount_units: str | None = field(default=None) def __attrs_post_init__(self): @@ -84,34 +88,107 @@ def __attrs_post_init__(self): class FeedstockCostModel(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = FeedstockCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), additional_cls_name=self.__class__.__name__, ) - n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] + self.n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) + # Set cost outputs super().setup() self.add_input( f"{self.config.commodity}_consumed", val=0.0, - shape=int(n_timesteps), + shape=self.n_timesteps, units=self.config.commodity_rate_units, desc=f"Consumption profile of {self.config.commodity}", ) + self.add_input( + f"{self.config.commodity}_out", + val=0, + shape=self.n_timesteps, + units=self.config.commodity_rate_units, + ) + self.add_input( "price", val=self.config.price, units=f"USD/({self.config.commodity_amount_units})", - desc=f"Consumption profile of {self.config.commodity}", + desc=f"Price profile of {self.config.commodity}", + ) + + self.dt = self.options["plant_config"]["plant"]["simulation"]["dt"] + self.plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) + hours_per_year = 8760 + hours_simulated = (self.dt / 3600) * self.n_timesteps + self.fraction_of_year_simulated = hours_simulated / hours_per_year + # since feedstocks are consumed, some outputs are appended + # with 'consumed' rather than 'produced' + + self.add_output( + f"total_{self.config.commodity}_consumed", + val=0.0, + units=self.config.commodity_amount_units, + ) + + self.add_output( + f"annual_{self.config.commodity}_consumed", + val=0.0, + shape=self.plant_life, + units=f"({self.config.commodity_amount_units})/year", + ) + + # Capacity factor is feedstock_consumed/max_feedstock_available + self.add_output( + "capacity_factor", + val=0.0, + shape=self.plant_life, + units="unitless", + desc="Capacity factor", + ) + + # The should be equal to the commodity_capacity input of the FeedstockPerformanceModel + self.add_output( + f"rated_{self.config.commodity}_production", + val=0, + units=self.config.commodity_rate_units, ) # lifetime estimate of item replacements, represented as a fraction of the capacity. self.add_output("replacement_schedule", val=0.0, shape=plant_life, units="unitless") def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): + # Capacity factor is the total amount consumed / the total amount available + outputs["capacity_factor"] = ( + inputs[f"{self.config.commodity}_consumed"].sum() + / inputs[f"{self.config.commodity}_out"].sum() + ) + + # Sum the amount consumed + outputs[f"total_{self.config.commodity}_consumed"] = inputs[ + f"{self.config.commodity}_consumed" + ].sum() * (self.dt / 3600) + + # Estimate annual consumption based on consumption over the simulation + # NOTE: once we standardize feedstock consumption outputs in models, this should + # be updated to handle consumption that varies over years of operation + outputs[f"annual_{self.config.commodity}_consumed"] = outputs[ + f"total_{self.config.commodity}_consumed" + ] * (1 / self.fraction_of_year_simulated) + + outputs[f"rated_{self.config.commodity}_production"] = inputs[ + f"{self.config.commodity}_out" + ].max() + + # Calculate costs price = inputs["price"] hourly_consumption = inputs[f"{self.config.commodity}_consumed"] cost_per_year = sum(price * hourly_consumption) diff --git a/h2integrate/core/file_utils.py b/h2integrate/core/file_utils.py index 73266e416..9f19d411e 100644 --- a/h2integrate/core/file_utils.py +++ b/h2integrate/core/file_utils.py @@ -143,7 +143,7 @@ def find_file(filename: str | Path, root_folder: str | Path | None = None): f"the root directory {root_folder}." ) raise ValueError( - f"Cannot find unique file: found {len(files_cwd)} files relative to cwd, " + f"Cannot find unique file for {filename}: found {len(files_cwd)} files relative to cwd, " f"{len(files_h2i)} files relative to H2Integrate root directory, " f"{len(files)} files relative to the root folder." ) diff --git a/h2integrate/core/h2integrate_model.py b/h2integrate/core/h2integrate_model.py index b401f39c2..e7c3e80c0 100644 --- a/h2integrate/core/h2integrate_model.py +++ b/h2integrate/core/h2integrate_model.py @@ -1,4 +1,5 @@ import importlib.util +from enum import IntEnum import numpy as np import networkx as nx @@ -7,14 +8,23 @@ from h2integrate.core.sites import SiteLocationComponent from h2integrate.core.utilities import create_xdsm_from_config +from h2integrate.core.dict_utils import check_inputs from h2integrate.core.file_utils import get_path, find_file, load_yaml from h2integrate.finances.finances import AdjustedCapexOpexComp -from h2integrate.core.supported_models import supported_models, is_electricity_producer +from h2integrate.core.supported_models import ( + no_cost_models, + supported_models, + no_replacement_schedule_models, +) from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml from h2integrate.core.pose_optimization import PoseOptimization from h2integrate.postprocess.sql_to_csv import convert_sql_to_csv_summary -from h2integrate.control.control_strategies.pyomo_controller_baseclass import ( - PyomoControllerBaseClass, +from h2integrate.core.commodity_stream_definitions import ( + multivariable_streams, + is_electricity_producer, +) +from h2integrate.control.control_strategies.pyomo_storage_controller_baseclass import ( + PyomoStorageControllerBaseClass, ) @@ -24,6 +34,13 @@ pyxdsm = None +class State(IntEnum): + INITIALIZED = 0 + SETUP = 1 + RUN = 2 + POST_PROCESS = 3 + + class H2IntegrateModel: def __init__(self, config_input): # read in config file; it's a yaml dict that looks like this: @@ -40,9 +57,6 @@ def __init__(self, config_input): self.prob = om.Problem(reports=create_om_reports) self.model = self.prob.model - # track if setup has been called via boolean - self.setup_has_been_called = False - # initialize recorder_path attribute self.recorder_path = None @@ -71,6 +85,8 @@ def __init__(self, config_input): # might be an analysis or optimization self.create_driver_model() + self.state = State.INITIALIZED + def _load_component_config(self, config_key, config_value, config_path, validator_func): """Helper method to load and validate a component configuration. @@ -192,7 +208,7 @@ def load_config(self, config_input): controller_model_name = vals["control_strategy"]["model"] controller_cls = supported_models.get(controller_model_name) if controller_cls is not None and issubclass( - controller_cls, PyomoControllerBaseClass + controller_cls, PyomoStorageControllerBaseClass ): model_inputs = self.technology_config["technologies"][name]["model_inputs"] if ( @@ -346,6 +362,9 @@ def create_site_model(self): and resources models (if provided in the configuration) for that site. """ # Loop through each site defined in the plant config + # If no sites defined in plant_config, nothing to do + if "sites" not in self.plant_config or not self.plant_config["sites"]: + return for site_name, site_info in self.plant_config["sites"].items(): # Reorganize the plant config to be formatted as expected by the # resource models @@ -480,6 +499,7 @@ def create_technology_models(self): plant_config=self.plant_config, tech_config=individual_tech_config, ) + self._check_time_step(perf_model, comp) self.plant.add_subsystem(f"{tech_name}_source", comp) else: tech_group = self.plant.add_subsystem(tech_name, om.Group()) @@ -489,6 +509,7 @@ def create_technology_models(self): # and in combined_performance_and_cost_models perf_model = individual_tech_config.get("performance_model", {}).get("model") cost_model = individual_tech_config.get("cost_model", {}).get("model") + individual_tech_config.get("finance_model", {}).get("model") if ( perf_model @@ -514,7 +535,8 @@ def create_technology_models(self): plant_config=self.plant_config, tech_config=individual_tech_config, ) - om_model_object = tech_group.add_subsystem(tech_name, comp, promotes=["*"]) + self._check_time_step(perf_model, comp) + om_model_object = tech_group.add_subsystem(perf_model, comp, promotes=["*"]) self.performance_models.append(om_model_object) self.cost_models.append(om_model_object) self.finance_models.append(om_model_object) @@ -563,18 +585,23 @@ def create_technology_models(self): for tech_name, individual_tech_config in self.technology_config["technologies"].items(): cost_model = individual_tech_config.get("cost_model", {}).get("model") + if cost_model == "FeedstockCostModel": comp = self.supported_models[cost_model]( driver_config=self.driver_config, plant_config=self.plant_config, tech_config=individual_tech_config, ) + self._check_time_step(tech_name, comp) self.plant.add_subsystem(tech_name, comp) def _process_model(self, model_type, individual_tech_config, tech_group): # Generalized function to process model definitions model_name = individual_tech_config[model_type]["model"] model_object = self.supported_models[model_name] + + self._check_time_step(model_name, model_object) + om_model_object = tech_group.add_subsystem( model_name, model_object( @@ -584,8 +611,23 @@ def _process_model(self, model_type, individual_tech_config, tech_group): ), promotes=["*"], ) + return om_model_object + def _check_time_step(self, model_name, model_object): + dt = int(self.plant_config["plant"]["simulation"]["dt"]) + + min_ts = model_object._time_step_bounds[0] + max_ts = model_object._time_step_bounds[1] + if dt < min_ts or dt > max_ts: + msg = ( + f"Model {model_name} is compatible with time steps " + f"between {min_ts} (s) and {max_ts} (s), but a time step of {dt} (s) " + "was specified. Please set plant_config['plant']['simulation']['dt'] to a" + f" value within the range [{min_ts}, {max_ts}]." + ) + raise ValueError(msg) + def create_finance_model(self): """ Create and configure the finance model(s) for the plant. @@ -753,7 +795,12 @@ def create_finance_model(self): f"technologies: {list(self.technology_config['technologies'].keys())}" ) if commodity_stream is not None: - if "combiner" not in commodity_stream and commodity_stream not in tech_names: + commodity_stream_has_cost = ( + self.technology_config["technologies"] + .get(commodity_stream, {}) + .get("cost_model", False) + ) + if commodity_stream_has_cost and commodity_stream not in tech_names: raise UserWarning( f"The technology specific for the commodity_stream '{commodity_stream}' " f"is not included in subgroup '{subgroup_name}' technologies list." @@ -947,6 +994,50 @@ def create_finance_model(self): self.finance_subgroups = finance_subgroups + def _connect_multivariable_stream( + self, source_tech, dest_tech, stream_name, combiner_counts, splitter_counts + ): + """Connect a multivariable stream between source and destination technologies. + + Handles combiner indexing (numbered inputs), splitter indexing (numbered outputs), + and direct connections. Updates combiner_counts/splitter_counts dicts in-place. + + Args: + source_tech (str): Name of the source technology. + dest_tech (str): Name of the destination technology. + stream_name (str): Name of the multivariable stream (key in multivariable_streams). + combiner_counts (dict): Tracks the next input index per combiner technology. + splitter_counts (dict): Tracks the next output index per splitter technology. + """ + if "combiner" in dest_tech: + if dest_tech not in combiner_counts: + combiner_counts[dest_tech] = 1 + else: + combiner_counts[dest_tech] += 1 + stream_index = combiner_counts[dest_tech] + for var_name in multivariable_streams[stream_name]: + self.plant.connect( + f"{source_tech}.{stream_name}:{var_name}_out", + f"{dest_tech}.{stream_name}:{var_name}_in{stream_index}", + ) + elif "splitter" in source_tech: + if source_tech not in splitter_counts: + splitter_counts[source_tech] = 1 + else: + splitter_counts[source_tech] += 1 + stream_index = splitter_counts[source_tech] + for var_name in multivariable_streams[stream_name]: + self.plant.connect( + f"{source_tech}.{stream_name}:{var_name}_out{stream_index}", + f"{dest_tech}.{stream_name}:{var_name}_in", + ) + else: + for var_name in multivariable_streams[stream_name]: + self.plant.connect( + f"{source_tech}.{stream_name}:{var_name}_out", + f"{dest_tech}.{stream_name}:{var_name}_in", + ) + def connect_technologies(self): technology_interconnections = self.plant_config.get("technology_interconnections", []) @@ -959,6 +1050,18 @@ def connect_technologies(self): if len(connection) == 4: source_tech, dest_tech, transport_item, transport_type = connection + # Check if this is a multivariable stream connection + # Format: [source, dest, stream_name, transport_type] + if transport_item in multivariable_streams: + self._connect_multivariable_stream( + source_tech, + dest_tech, + transport_item, + combiner_counts, + splitter_counts, + ) + continue # Skip the rest of the 4-element handling + if transport_type in self.tech_names: # if the transport type is already a technology, skip creating a new component connection_name = f"{transport_type}" @@ -978,6 +1081,11 @@ def connect_technologies(self): f"{dest_tech}.{transport_item}_consumed", f"{source_tech}.{transport_item}_consumed", ) + # Connect the feedstock performance model output to the cost model input + self.plant.connect( + f"{source_tech}_source.{transport_item}_out", + f"{source_tech}.{transport_item}_out", + ) if perf_model_name == "FeedstockPerformanceModel": source_tech = f"{source_tech}_source" @@ -989,10 +1097,11 @@ def connect_technologies(self): pass else: connection_component = self.supported_models[transport_type]( - transport_item=transport_item + transport_item=transport_item, plant_config=self.plant_config ) # Add the connection component to the model + self._check_time_step(transport_type, connection_component) self.plant.add_subsystem(connection_name, connection_component) # Reorder the subsystems so transporters comes after their source technology @@ -1061,13 +1170,34 @@ def connect_technologies(self): source_tech, dest_tech, connected_parameter = connection if isinstance(connected_parameter, tuple | list): source_parameter, dest_parameter = connected_parameter - self.plant.connect( - f"{source_tech}.{source_parameter}", f"{dest_tech}.{dest_parameter}" - ) + # Check if this is a multivariable stream connection + if source_parameter in multivariable_streams: + self._connect_multivariable_stream( + source_tech, + dest_tech, + source_parameter, + combiner_counts, + splitter_counts, + ) + else: + self.plant.connect( + f"{source_tech}.{source_parameter}", f"{dest_tech}.{dest_parameter}" + ) else: - self.plant.connect( - f"{source_tech}.{connected_parameter}", f"{dest_tech}.{connected_parameter}" - ) + # Check if the connected_parameter is a multivariable stream + if connected_parameter in multivariable_streams: + self._connect_multivariable_stream( + source_tech, + dest_tech, + connected_parameter, + combiner_counts, + splitter_counts, + ) + else: + self.plant.connect( + f"{source_tech}.{connected_parameter}", + f"{dest_tech}.{connected_parameter}", + ) else: err_msg = f"Invalid connection: {connection}" @@ -1079,51 +1209,51 @@ def connect_technologies(self): resource_models = {} for site_grp, site_grp_inputs in self.plant_config["sites"].items(): for resource_key, resource_params in site_grp_inputs.get("resources", {}).items(): - resource_models[f"{site_grp}-{resource_key}"] = resource_params - - resource_source_connections = [c[0] for c in resource_to_tech_connections] - # Check if there is a missing resource to tech connection or missing resource model - if len(resource_models) != len(resource_source_connections): - if len(resource_models) > len(resource_source_connections): - # more resource models than resources connected to technologies - non_connected_resource = [ - k for k in resource_models if k not in resource_source_connections - ] - # check if theres a resource model that isn't connected to a technology - if len(non_connected_resource) > 0: - msg = ( - "Some resources are not connected to a technology. Resource models " - f"{non_connected_resource} are not included in " - "`resource_to_tech_connections`. Please connect these resources " - "to their technologies under `resource_to_tech_connections` in " - "the plant config file." - ) - raise ValueError(msg) - if len(resource_source_connections) > len(resource_models): - # more resources connected than resource models - missing_resource = [ - k for k in resource_source_connections if k not in resource_models - ] - # check if theres a resource model that isn't connected to a technology - if len(missing_resource) > 0: - msg = ( - "Missing resource(s) are not defined but are connected to a technology. " - f"Missing resource(s) are {missing_resource}. " - "Please check ``resource_to_tech_connections`` in the plant config file " - "or add the missing resources" - " to plant_config['site']['resources']." - ) - raise ValueError(msg) + resource_models[f"{site_grp}.{resource_key}"] = resource_params + + resource_source_connections = [c[0] for c in resource_to_tech_connections] + # Check if there is a missing resource to tech connection or missing resource model + if len(resource_models) != len(resource_source_connections): + if len(resource_models) > len(resource_source_connections): + # more resource models than resources connected to technologies + non_connected_resource = [ + k for k in resource_models if k not in resource_source_connections + ] + # check if theres a resource model that isn't connected to a technology + if len(non_connected_resource) > 0: + msg = ( + "Some resources are not connected to a technology. Resource models " + f"{non_connected_resource} are not included in " + "`resource_to_tech_connections`. Please connect these resources " + "to their technologies under `resource_to_tech_connections` in " + "the plant config file." + ) + raise ValueError(msg) + if len(resource_source_connections) > len(resource_models): + # more resources connected than resource models + missing_resource = [ + k for k in resource_source_connections if k not in resource_models + ] + # check if theres a resource model that isn't connected to a technology + if len(missing_resource) > 0: + msg = ( + "Missing resource(s) are not defined but are connected to a" + f" technology. Missing resource(s) are {missing_resource}. " + "Please check ``resource_to_tech_connections`` in the plant" + " config file or add the missing resources" + " to plant_config['site']['resources']." + ) + raise ValueError(msg) - for connection in resource_to_tech_connections: - if len(connection) != 3: - err_msg = f"Invalid resource to tech connection: {connection}" - raise ValueError(err_msg) + for connection in resource_to_tech_connections: + if len(connection) != 3: + err_msg = f"Invalid resource to tech connection: {connection}" + raise ValueError(err_msg) - resource_name, tech_name, variable = connection + resource_name, tech_name, variable = connection - # Connect the resource output to the technology input - self.model.connect(f"{resource_name}.{variable}", f"{tech_name}.{variable}") + # Connect the resource output to the technology input + self.model.connect(f"{resource_name}.{variable}", f"{tech_name}.{variable}") # connect outputs of the technology models to the cost and finance models of the # same name if the cost and finance models are not None @@ -1150,10 +1280,9 @@ def connect_technologies(self): # Only connect technologies that are included in the finance stackup for tech_name in tech_configs.keys(): - # For now, assume splitters and combiners do not add any costs - if "splitter" in tech_name or "combiner" in tech_name: - continue - if tech_name == "cable" or tech_name == "pipe": + # Skip technologies whose models doesn't add costs + perf_model = tech_configs[tech_name].get("performance_model").get("model") + if perf_model in no_cost_models: continue self.plant.connect( @@ -1171,7 +1300,7 @@ def connect_technologies(self): f"finance_subgroup_{group_id}.cost_year_{tech_name}", ) - if is_system_finance_model and "transport" not in tech_name: + if is_system_finance_model and perf_model not in no_replacement_schedule_models: # connect replacement schedule to system-level finance models self.plant.connect( f"{tech_name}.replacement_schedule", @@ -1208,17 +1337,16 @@ def connect_technologies(self): if tech_name == dispatching_tech_name: continue else: - # Connect the dispatch rules output to the dispatching_tech_name input - self.model.connect( - f"{tech_name}.dispatch_block_rule_function", - f"{dispatching_tech_name}.dispatch_block_rule_function_{tech_name}", + # Only connect dispatch rules if they are defined in the tech_config + tech_dispatch_rule = self.technology_config.get(tech_name, {}).get( + "dispatch_rule_set", False ) - - if (pyxdsm is not None) and (len(technology_interconnections) > 0): - try: - create_xdsm_from_config(self.plant_config) - except FileNotFoundError as e: - print(f"Unable to create system XDSM diagram. Error: {e}") + if tech_dispatch_rule: + # Connect the dispatch rules output to the dispatching_tech_name input + self.model.connect( + f"{tech_name}.dispatch_block_rule_function", + f"{dispatching_tech_name}.dispatch_block_rule_function_{tech_name}", + ) def create_driver_model(self): """ @@ -1239,17 +1367,26 @@ def setup(self): """ Extremely light wrapper to setup the OpenMDAO problem and track setup status. """ - self.setup_has_been_called = True self.prob.setup() + self.state = State.SETUP + + for tech, tech_info in self.technology_config["technologies"].items(): + check_inputs(self.prob, tech, tech_info, self.tech_config_path) def run(self): # do model setup based on the driver config # might add a recorder, driver, set solver tolerances, etc - if not self.setup_has_been_called: + if self.state < State.SETUP: self.prob.setup() - self.setup_has_been_called = True + + if self.state < State.RUN: + # OpenMDAO will skip this step if it encounters an issue leading to silent failures + # TODO: remove this step when OpenMDAO implements cursor closure + if self.recorder_path is not None: + self.recorder_path.unlink(missing_ok=True) self.prob.run_driver() + self.state = State.RUN def post_process(self, print_results=True, summarize_sql=False, show_plots=False): """Post-process the results of the OpenMDAO model. @@ -1266,6 +1403,8 @@ def post_process(self, print_results=True, summarize_sql=False, show_plots=False show_plots (bool): If True, run post-processing plots for any performance models that support them. Defaults to False. """ + if self.state < State.RUN: + raise RuntimeError("`run` not called, so `post_process` cannot be called.") if print_results: # Use custom summary printer instead of OpenMDAO's built-in printing so we can # suppress internal value printing and display only mean values. @@ -1279,6 +1418,7 @@ def post_process(self, print_results=True, summarize_sql=False, show_plots=False model.post_process(show_plots=show_plots) if show_plots: plt.show() + self.state = State.POST_PROCESS @staticmethod def print_results(model, includes=None, excludes=None, show_units=True): @@ -1444,3 +1584,29 @@ def _structured(meta_list): "explicit_outputs": _structured(explicit_meta), "implicit_outputs": _structured(implicit_meta), } + + def create_xdsm(self, outfile="connections_xdsm"): + """Create an XDSM diagram from the plant technology interconnections. + + This method reads ``technology_interconnections`` from ``self.plant_config`` + and delegates diagram generation to + :func:`h2integrate.core.utilities.create_xdsm_from_config`. + + Args: + outfile (str, optional): Base filename for the generated XDSM output. + The default is ``"connections_xdsm"``. + + Raises: + ValueError: If ``technology_interconnections`` is empty or missing from + the plant configuration. + """ + + technology_interconnections = self.plant_config.get("technology_interconnections", []) + + if len(technology_interconnections) > 0: + create_xdsm_from_config(self.plant_config, output_file=outfile) + else: + raise ValueError( + "Generating an XDSM diagram requires technology interconnections, " + "but none were found." + ) diff --git a/h2integrate/core/inputs/plant_schema.yaml b/h2integrate/core/inputs/plant_schema.yaml index 603f94e09..eabcf4280 100644 --- a/h2integrate/core/inputs/plant_schema.yaml +++ b/h2integrate/core/inputs/plant_schema.yaml @@ -72,4 +72,4 @@ properties: items: type: [string, array] description: Technology names and connection types -required: [name, description, sites] +required: [name, description] diff --git a/h2integrate/core/inputs/tech_schema.yaml b/h2integrate/core/inputs/tech_schema.yaml index b85ac3294..a25530379 100644 --- a/h2integrate/core/inputs/tech_schema.yaml +++ b/h2integrate/core/inputs/tech_schema.yaml @@ -52,5 +52,5 @@ properties: type: object description: Financial model details (optional) additionalProperties: true - required: [] + required: [performance_model] required: [name, description, technologies] diff --git a/h2integrate/core/inputs/validation.py b/h2integrate/core/inputs/validation.py index d9cc6f90d..927691cc7 100644 --- a/h2integrate/core/inputs/validation.py +++ b/h2integrate/core/inputs/validation.py @@ -1,5 +1,5 @@ """ -Code adapted from NREL's WISDEM tool. +Code adapted from NLR's WISDEM tool. """ from pathlib import Path @@ -140,20 +140,18 @@ def load_tech_yaml(finput): def load_plant_yaml(finput): plant_config = _validate(finput, fschema_plant) - if int(plant_config["plant"]["simulation"]["n_timesteps"]) != 8760: + n_timesteps = plant_config["plant"]["simulation"]["n_timesteps"] + dt = plant_config["plant"]["simulation"]["dt"] + + if int(n_timesteps) * int(dt) != 31536000: # seconds in simulation must be seconds/year msg = ( "H2Integrate does not currently support simulations that are less than or " "greater than 1-year. Please ensure that " - "plant_config['plant']['simulation']['n_timesteps'] is set to 8760." - ) - raise ValueError(msg) - if int(plant_config["plant"]["simulation"]["dt"]) != 3600: - msg = ( - "H2Integrate does not currently support simulations with a time step that is " - "less than or greater than 1-hour. Please ensure that " - "plant_config['plant']['simulation']['dt'] is set to 3600." + "plant_config['plant']['simulation']['n_timesteps'] times " + "plant_config['plant']['simulation']['dt'] equals 31536000 (s)." ) raise ValueError(msg) + return plant_config diff --git a/h2integrate/core/model_baseclasses.py b/h2integrate/core/model_baseclasses.py index 60226ce08..c6adf5cd6 100644 --- a/h2integrate/core/model_baseclasses.py +++ b/h2integrate/core/model_baseclasses.py @@ -32,7 +32,7 @@ def setup(self): self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] # dt is seconds per timestep - self.dt = self.options["plant_config"]["plant"]["simulation"]["dt"] + self.dt = int(self.options["plant_config"]["plant"]["simulation"]["dt"]) # plant_life is number of years the plant is expected to operate for self.plant_life = int(self.options["plant_config"]["plant"]["plant_life"]) @@ -151,6 +151,9 @@ def setup(self): "cost_year", val=self.config.cost_year, desc="Dollar year for costs" ) + # dt is seconds per timestep + self.dt = int(self.options["plant_config"]["plant"]["simulation"]["dt"]) + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """ Computation for the OM component. diff --git a/h2integrate/core/pose_optimization.py b/h2integrate/core/pose_optimization.py index 323d06842..b139f5d5b 100644 --- a/h2integrate/core/pose_optimization.py +++ b/h2integrate/core/pose_optimization.py @@ -1,5 +1,5 @@ """ -This file is based on the WISDEM file of the same name: https://github.com/WISDEM/WISDEM +This file is based on the WISDEM file of the same name: https://github.com/NLRWindSystems/WISDEM and also based off of the H2Integrate file of the same name originally adapted by Jared Thomas. """ diff --git a/h2integrate/core/supported_models.py b/h2integrate/core/supported_models.py index a96c9f95a..f57d46a1f 100644 --- a/h2integrate/core/supported_models.py +++ b/h2integrate/core/supported_models.py @@ -1,25 +1,18 @@ from h2integrate.resource.river import RiverResource +from h2integrate.resource.tidal import TidalResource from h2integrate.core.feedstocks import FeedstockCostModel, FeedstockPerformanceModel from h2integrate.transporters.pipe import PipePerformanceModel from h2integrate.transporters.cable import CablePerformanceModel from h2integrate.converters.grid.grid import GridCostModel, GridPerformanceModel from h2integrate.finances.profast_lco import ProFastLCO from h2integrate.finances.profast_npv import ProFastNPV +from h2integrate.demand.generic_demand import GenericDemandComponent from h2integrate.converters.steel.steel import SteelPerformanceModel, SteelCostAndFinancialModel from h2integrate.converters.wind.floris import FlorisWindPlantPerformanceModel -from h2integrate.converters.iron.iron_mine import ( - IronMineCostComponent, - IronMinePerformanceComponent, -) -from h2integrate.converters.iron.iron_plant import ( - IronPlantCostComponent, - IronPlantPerformanceComponent, -) +from h2integrate.demand.flexible_demand import FlexibleDemandComponent from h2integrate.converters.wind.wind_pysam import PYSAMWindPlantPerformanceModel -from h2integrate.storage.generic_storage_pyo import StoragePerformanceModel from h2integrate.transporters.generic_summer import GenericSummerPerformanceModel from h2integrate.converters.hopp.hopp_wrapper import HOPPComponent -from h2integrate.converters.iron.iron_wrapper import IronComponent from h2integrate.converters.solar.solar_pysam import PYSAMSolarPlantPerformanceModel from h2integrate.finances.numpy_financial_npv import NumpyFinancialNPV from h2integrate.resource.wind.openmeteo_wind import OpenMeteoHistoricalWindResource @@ -42,7 +35,6 @@ from h2integrate.converters.nitrogen.simple_ASU import SimpleASUCostModel, SimpleASUPerformanceModel from h2integrate.converters.wind.wind_plant_ard import ArdWindPlantModel from h2integrate.resource.solar.openmeteo_solar import OpenMeteoHistoricalSolarResource -from h2integrate.storage.simple_generic_storage import SimpleGenericStorage from h2integrate.converters.hydrogen.h2_fuel_cell import ( H2FuelCellCostModel, LinearH2FuelCellPerformanceModel, @@ -64,12 +56,16 @@ SaltCavernStorageCostModel, LinedRockCavernStorageCostModel, ) +from h2integrate.transporters.gas_stream_combiner import GasStreamCombinerPerformanceModel from h2integrate.transporters.generic_transporter import GenericTransporterPerformanceModel +from h2integrate.converters.generic_converter_cost import GenericConverterCostModel from h2integrate.converters.iron.humbert_ewin_perf import HumbertEwinPerformanceComponent +from h2integrate.storage.storage_performance_model import StoragePerformanceModel from h2integrate.converters.ammonia.ammonia_synloop import ( AmmoniaSynLoopCostModel, AmmoniaSynLoopPerformanceModel, ) +from h2integrate.converters.water_power.tidal_pysam import PySAMTidalPerformanceModel from h2integrate.storage.simple_storage_auto_sizing import StorageAutoSizingModel from h2integrate.converters.water.desal.desalination import ( ReverseOsmosisCostModel, @@ -101,12 +97,19 @@ NaturalGasCostModel, NaturalGasPerformanceModel, ) +from h2integrate.converters.water_power.pysam_marine_cost import PySAMMarineCostModel from h2integrate.converters.hydrogen.singlitico_cost_model import SingliticoCostModel from h2integrate.converters.co2.marine.direct_ocean_capture import DOCCostModel, DOCPerformanceModel from h2integrate.converters.hydrogen.steam_methane_reformer import ( SteamMethaneReformerCostModel, SteamMethaneReformerPerformanceModel, ) +from h2integrate.converters.natural_gas.dummy_gas_components import ( + SimpleGasConsumerCost, + SimpleGasProducerCost, + SimpleGasConsumerPerformance, + SimpleGasProducerPerformance, +) from h2integrate.converters.hydrogen.geologic.mathur_modified import GeoH2SubsurfaceCostModel from h2integrate.resource.solar.nlr_developer_goes_api_models import ( GOESTMYSolarAPI, @@ -137,12 +140,6 @@ from h2integrate.converters.hydrogen.custom_electrolyzer_cost_model import ( CustomElectrolyzerCostModel, ) -from h2integrate.control.control_strategies.heuristic_pyomo_controller import ( - HeuristicLoadFollowingController, -) -from h2integrate.control.control_strategies.optimized_pyomo_controller import ( - OptimizedDispatchController, -) from h2integrate.converters.hydrogen.geologic.aspen_surface_processing import ( AspenGeoH2SurfaceCostModel, AspenGeoH2SurfacePerformanceModel, @@ -153,18 +150,18 @@ from h2integrate.control.control_rules.storage.pyomo_storage_rule_baseclass import ( PyomoRuleStorageBaseclass, ) -from h2integrate.control.control_strategies.passthrough_openloop_controller import ( - PassThroughOpenLoopController, -) from h2integrate.resource.solar.nlr_developer_meteosat_prime_meridian_models import ( MeteosatPrimeMeridianSolarAPI, MeteosatPrimeMeridianTMYSolarAPI, ) -from h2integrate.control.control_strategies.storage.demand_openloop_controller import ( - DemandOpenLoopStorageController, +from h2integrate.control.control_strategies.storage.heuristic_pyomo_controller import ( + HeuristicLoadFollowingStorageController, +) +from h2integrate.control.control_strategies.storage.optimized_pyomo_controller import ( + OptimizedDispatchStorageController, ) -from h2integrate.control.control_strategies.converters.demand_openloop_controller import ( - DemandOpenLoopConverterController, +from h2integrate.control.control_strategies.storage.simple_openloop_controller import ( + SimpleStorageOpenLoopController, ) from h2integrate.control.control_rules.storage.pyomo_storage_rule_min_operating_cost import ( PyomoRuleStorageMinOperatingCosts, @@ -172,13 +169,14 @@ from h2integrate.control.control_rules.converters.generic_converter_min_operating_cost import ( PyomoDispatchGenericConverterMinOperatingCosts, ) -from h2integrate.control.control_strategies.converters.flexible_demand_openloop_controller import ( - FlexibleDemandOpenLoopConverterController, +from h2integrate.control.control_strategies.storage.demand_openloop_storage_controller import ( + DemandOpenLoopStorageController, ) supported_models = { # Resources + "TidalResource": TidalResource, "RiverResource": RiverResource, "WTKNLRDeveloperAPIWindResource": WTKNLRDeveloperAPIWindResource, "OpenMeteoHistoricalWindResource": OpenMeteoHistoricalWindResource, @@ -193,6 +191,7 @@ "Himawari8SolarAPI": Himawari8SolarAPI, "HimawariTMYSolarAPI": HimawariTMYSolarAPI, # Converters + "GenericConverterCostModel": GenericConverterCostModel, "ATBWindPlantCostModel": ATBWindPlantCostModel, "PYSAMWindPlantPerformanceModel": PYSAMWindPlantPerformanceModel, "FlorisWindPlantPerformanceModel": FlorisWindPlantPerformanceModel, @@ -200,6 +199,8 @@ "PYSAMSolarPlantPerformanceModel": PYSAMSolarPlantPerformanceModel, "ATBUtilityPVCostModel": ATBUtilityPVCostModel, "ATBResComPVCostModel": ATBResComPVCostModel, + "PySAMTidalPerformanceModel": PySAMTidalPerformanceModel, + "PySAMMarineCostModel": PySAMMarineCostModel, "RunOfRiverHydroPerformanceModel": RunOfRiverHydroPerformanceModel, "RunOfRiverHydroCostModel": RunOfRiverHydroCostModel, "ECOElectrolyzerPerformanceModel": ECOElectrolyzerPerformanceModel, @@ -214,11 +215,6 @@ "SimpleASUCostModel": SimpleASUCostModel, "SimpleASUPerformanceModel": SimpleASUPerformanceModel, "HOPPComponent": HOPPComponent, - "IronComponent": IronComponent, - "IronMinePerformanceComponent": IronMinePerformanceComponent, - "IronMineCostComponent": IronMineCostComponent, - "IronPlantPerformanceComponent": IronPlantPerformanceComponent, - "IronPlantCostComponent": IronPlantCostComponent, "MartinIronMinePerformanceComponent": MartinIronMinePerformanceComponent, # standalone model "MartinIronMineCostComponent": MartinIronMineCostComponent, # standalone model "NaturalGasIronReductionPlantPerformanceComponent": NaturalGasIronReductionPlantPerformanceComponent, # noqa: E501 @@ -279,14 +275,13 @@ "PipeStorageCostModel": PipeStorageCostModel, "ATBBatteryCostModel": ATBBatteryCostModel, "GenericStorageCostModel": GenericStorageCostModel, - "SimpleGenericStorage": SimpleGenericStorage, # Control - "PassThroughOpenLoopController": PassThroughOpenLoopController, + "SimpleStorageOpenLoopController": SimpleStorageOpenLoopController, "DemandOpenLoopStorageController": DemandOpenLoopStorageController, - "HeuristicLoadFollowingController": HeuristicLoadFollowingController, - "OptimizedDispatchController": OptimizedDispatchController, - "DemandOpenLoopConverterController": DemandOpenLoopConverterController, - "FlexibleDemandOpenLoopConverterController": FlexibleDemandOpenLoopConverterController, + "HeuristicLoadFollowingStorageController": HeuristicLoadFollowingStorageController, + "OptimizedDispatchStorageController": OptimizedDispatchStorageController, + "GenericDemandComponent": GenericDemandComponent, + "FlexibleDemandComponent": FlexibleDemandComponent, # Dispatch "PyomoDispatchGenericConverter": PyomoDispatchGenericConverter, "PyomoRuleStorageBaseclass": PyomoRuleStorageBaseclass, @@ -302,34 +297,32 @@ "ProFastLCO": ProFastLCO, "ProFastNPV": ProFastNPV, "NumpyFinancialNPV": NumpyFinancialNPV, + # Dummy components for multivariable stream demonstrations + "SimpleGasProducerPerformance": SimpleGasProducerPerformance, + "SimpleGasProducerCost": SimpleGasProducerCost, + "SimpleGasConsumerPerformance": SimpleGasConsumerPerformance, + "SimpleGasConsumerCost": SimpleGasConsumerCost, + "GasStreamCombinerPerformanceModel": GasStreamCombinerPerformanceModel, } -def is_electricity_producer(tech_name: str) -> bool: - """Check if a technology is an electricity producer. +# This next section is to demarcate specific models that belong to certain categories that are +# relevant for processing in the model stackup. Right now, these designations are +# used in `h2integrate_model.py`. - Args: - tech_name: The name of the technology to check. - Returns: - True if tech_name starts with any of the known electricity producing - tech prefixes (e.g., 'wind', 'solar', 'pv', 'grid_buy', etc.). - Note: - This uses prefix matching, so 'grid_buy_1' and 'grid_buy_2' would both - be considered electricity producers. Be careful when naming technologies - to avoid unintended matches (e.g., 'pv_battery' would be incorrectly - identified as an electricity producer). - """ - # add any new electricity producing technologies to this list - electricity_producing_techs = [ - "wind", - "solar", - "pv", - "river", - "hopp", - "natural_gas_plant", - "grid_buy", - "h2_fuel_cell", - ] +# Model classes that do not contribute costs to the finance stackup because they are essentially +# internal-only models that aren't categorized as a specific technology (e.g. a generic combiner +# or splitter, or a model that is only used for performance modeling within another model and +# doesn't have an independent cost model). +no_cost_models = { + "GenericSplitterPerformanceModel", + "GenericCombinerPerformanceModel", + "GasStreamCombinerPerformanceModel", + "CablePerformanceModel", + "PipePerformanceModel", +} - return any(tech_name.startswith(elem) for elem in electricity_producing_techs) +no_replacement_schedule_models = { + "IronTransportPerformanceComponent", +} diff --git a/h2integrate/core/test/conftest.py b/h2integrate/core/test/conftest.py index 144c38689..378efd555 100644 --- a/h2integrate/core/test/conftest.py +++ b/h2integrate/core/test/conftest.py @@ -6,7 +6,13 @@ from h2integrate import EXAMPLE_DIR -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_dir_module, + temp_copy_of_example, + pytest_collection_modifyitems, + temp_copy_of_example_module_scope, +) def pytest_sessionstart(session): diff --git a/h2integrate/core/test/inputs/duplicate_keys.yaml b/h2integrate/core/test/inputs/duplicate_keys.yaml index da5f98faf..b06b7b9ba 100644 --- a/h2integrate/core/test/inputs/duplicate_keys.yaml +++ b/h2integrate/core/test/inputs/duplicate_keys.yaml @@ -43,7 +43,7 @@ technologies: dispatch_rule_set: model: "PyomoRuleStorageBaseclass" control_strategy: - model: "HeuristicLoadFollowingController" + model: "HeuristicLoadFollowingStorageController" performance_model: model: "PySAMBatteryPerformanceModel" cost_model: @@ -55,9 +55,9 @@ technologies: max_charge_rate: 50000 #kW max_capacity: 200000 #kWh n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: system_model_source: "pysam" diff --git a/h2integrate/core/test/inputs/no_duplicates.yaml b/h2integrate/core/test/inputs/no_duplicates.yaml index d1d272d4a..7be0b79bb 100644 --- a/h2integrate/core/test/inputs/no_duplicates.yaml +++ b/h2integrate/core/test/inputs/no_duplicates.yaml @@ -42,7 +42,7 @@ technologies: dispatch_rule_set: model: "PyomoRuleStorageBaseclass" control_strategy: - model: "HeuristicLoadFollowingController" + model: "HeuristicLoadFollowingStorageController" performance_model: model: "PySAMBatteryPerformanceModel" cost_model: @@ -54,16 +54,16 @@ technologies: max_charge_rate: 50000 #kW max_capacity: 200000 #kWh n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: system_model_source: "pysam" chemistry: "LFPGraphite" + demand_profile: 50.0 cost_parameters: cost_year: 2022 - commodity_units: "kW" energy_capex: 246 # $/kWh from 2024 ATB year 2025 power_capex: 317 # $/kW from 2024 ATB year 2025 opex_fraction: 0.02536510376633359 diff --git a/h2integrate/core/test/inputs/no_duplicates_use_include.yaml b/h2integrate/core/test/inputs/no_duplicates_use_include.yaml index 255959518..69b568024 100644 --- a/h2integrate/core/test/inputs/no_duplicates_use_include.yaml +++ b/h2integrate/core/test/inputs/no_duplicates_use_include.yaml @@ -75,7 +75,7 @@ technologies: dispatch_rule_set: model: "PyomoRuleStorageBaseclass" control_strategy: - model: "HeuristicLoadFollowingController" + model: "HeuristicLoadFollowingStorageController" performance_model: model: "PySAMBatteryPerformanceModel" cost_model: @@ -87,9 +87,9 @@ technologies: max_charge_rate: 375740.4 #kW max_capacity: 375745.2 #kWh n_control_window: 24 - init_charge_fraction: 0.9 - max_charge_fraction: 1.0 - min_charge_fraction: 0.2 + init_soc_fraction: 0.9 + max_soc_fraction: 1.0 + min_soc_fraction: 0.2 system_commodity_interface_limit: 1e12 performance_parameters: system_model_source: "pysam" @@ -126,7 +126,7 @@ technologies: performance_model: model: "StorageAutoSizingModel" control_strategy: - model: "PassThroughOpenLoopController" + model: "SimpleStorageOpenLoopController" cost_model: model: "LinedRockCavernStorageCostModel" model_inputs: diff --git a/h2integrate/core/test/test_commodity_stream_definitions.py b/h2integrate/core/test/test_commodity_stream_definitions.py new file mode 100644 index 000000000..7eb29c5b5 --- /dev/null +++ b/h2integrate/core/test/test_commodity_stream_definitions.py @@ -0,0 +1,111 @@ +from unittest.mock import MagicMock, call + +import pytest + +from h2integrate.core.commodity_stream_definitions import ( + multivariable_streams, + add_multivariable_input, + is_electricity_producer, + add_multivariable_output, +) + + +@pytest.mark.unit +def test_is_electricity_producer(subtests): + with subtests.test("exact match"): + assert is_electricity_producer("grid_buy") + + with subtests.test("partial starts-with match"): + assert is_electricity_producer("grid_buy_1") + + with subtests.test("partial ends-with match fails"): + assert not is_electricity_producer("wrong_grid_buy") + + with subtests.test("empty string fails"): + assert not is_electricity_producer("") + + with subtests.test("non-electricity producing tech fails"): + assert not is_electricity_producer("battery") + + +@pytest.mark.unit +def test_add_multivariable_output(subtests): + stream_name = "wellhead_gas_mixture" + n_timesteps = 8760 + component = MagicMock() + + add_multivariable_output(component, stream_name, n_timesteps) + + stream_def = multivariable_streams[stream_name] + + with subtests.test("called once per variable"): + assert component.add_output.call_count == len(stream_def) + + with subtests.test("correct variable names and kwargs"): + expected_calls = [ + call( + f"{stream_name}:{var_name}_out", + val=0.0, + shape=n_timesteps, + units=var_props.get("units"), + desc=var_props.get("desc", ""), + ) + for var_name, var_props in stream_def.items() + ] + component.add_output.assert_has_calls(expected_calls, any_order=False) + + with subtests.test("uses stream_name:var_name prefix"): + called_names = [c.args[0] for c in component.add_output.call_args_list] + for name in called_names: + assert name.startswith(f"{stream_name}:") + assert name.endswith("_out") + + with subtests.test("all variables are unique"): + called_names = [c.args[0] for c in component.add_output.call_args_list] + assert len(called_names) == len(set(called_names)) + + +@pytest.mark.unit +def test_add_multivariable_input(subtests): + stream_name = "wellhead_gas_mixture" + n_timesteps = 8760 + component = MagicMock() + + add_multivariable_input(component, stream_name, n_timesteps) + + stream_def = multivariable_streams[stream_name] + + with subtests.test("called once per variable"): + assert component.add_input.call_count == len(stream_def) + + with subtests.test("correct variable names and kwargs"): + expected_calls = [ + call( + f"{stream_name}:{var_name}_in", + val=0.0, + shape=n_timesteps, + units=var_props.get("units"), + desc=var_props.get("desc", ""), + ) + for var_name, var_props in stream_def.items() + ] + component.add_input.assert_has_calls(expected_calls, any_order=False) + + with subtests.test("uses stream_name:var_name prefix"): + called_names = [c.args[0] for c in component.add_input.call_args_list] + for name in called_names: + assert name.startswith(f"{stream_name}:") + assert name.endswith("_in") + + with subtests.test("all variables are unique"): + called_names = [c.args[0] for c in component.add_input.call_args_list] + assert len(called_names) == len(set(called_names)) + + +@pytest.mark.unit +def test_add_multivariable_invalid_stream(): + component = MagicMock() + with pytest.raises(KeyError): + add_multivariable_output(component, "nonexistent_stream", 10) + with pytest.raises(KeyError): + add_multivariable_input(component, "nonexistent_stream", 10) diff --git a/h2integrate/core/test/test_feedstocks.py b/h2integrate/core/test/test_feedstocks.py index ef9ca7acb..886658c6f 100644 --- a/h2integrate/core/test/test_feedstocks.py +++ b/h2integrate/core/test/test_feedstocks.py @@ -8,10 +8,90 @@ import numpy as np import pytest import openmdao.api as om +from pytest import fixture from h2integrate.core.feedstocks import FeedstockCostModel, FeedstockPerformanceModel +@fixture +def plant_config(): + return { + "plant": { + "plant_life": 30, + "simulation": { + "n_timesteps": 8760, + "dt": 3600, + }, + }, + } + + +@fixture +def ng_feedstock_input_config(): + tech_config = { + "model_inputs": { + "shared_parameters": { + "commodity": "natural_gas", + "commodity_rate_units": "MMBtu/h", + }, + "performance_parameters": { + "rated_capacity": 100.0, + }, + "cost_parameters": { + "price": 4.2, # USD/MMBtu + "annual_cost": 0, + "start_up_cost": 0, + "cost_year": 2023, + "commodity_amount_units": "MMBtu", # optional + }, + } + } + return tech_config + + +@pytest.mark.unit +def test_feedstock_standard_outputs(plant_config, ng_feedstock_input_config, subtests): + perf_model = FeedstockPerformanceModel( + plant_config=plant_config, tech_config=ng_feedstock_input_config, driver_config={} + ) + cost_model = FeedstockCostModel( + plant_config=plant_config, tech_config=ng_feedstock_input_config, driver_config={} + ) + prob = om.Problem() + prob.model.add_subsystem("ng_feedstock_source", perf_model) + prob.model.add_subsystem("ng_feedstock", cost_model) + # Connect the feedstock performance model output to the cost model input + prob.model.connect( + "ng_feedstock_source.natural_gas_out", + "ng_feedstock.natural_gas_out", + ) + + prob.setup() + # Set some consumption values + consumption = np.full(8760, 50.0) # 50 MMBtu/hour + prob.set_val("ng_feedstock.natural_gas_consumed", consumption) + prob.run_model() + with subtests.test("Check feedstock capacity factor"): + ng_cf = prob.get_val("ng_feedstock.capacity_factor", units="unitless").mean() + assert pytest.approx(ng_cf, rel=1e-6) == 0.5 + with subtests.test("Check feedstock rated production"): + rated_production_source = prob.get_val( + "ng_feedstock_source.natural_gas_capacity", units="MMBtu/h" + ) + rated_production = prob.get_val( + "ng_feedstock.rated_natural_gas_production", units="MMBtu/h" + ) + assert pytest.approx(rated_production, rel=1e-6) == rated_production_source + with subtests.test("Check feedstock total consumption"): + total_consumption = prob.get_val("ng_feedstock.total_natural_gas_consumed", units="MMBtu") + assert pytest.approx(total_consumption, rel=1e-6) == consumption.sum() + with subtests.test("Check feedstock annual consumption"): + annual_consumption = prob.get_val( + "ng_feedstock.annual_natural_gas_consumed", units="MMBtu/yr" + ) + assert pytest.approx(annual_consumption, rel=1e-6) == consumption.sum() + + def create_basic_feedstock_config( feedstock_type="natural_gas", units="MMBtu/h", @@ -38,7 +118,7 @@ def create_basic_feedstock_config( }, } } - plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 8760}}} + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 8760, "dt": 3600}}} driver_config = {} return tech_config, plant_config, driver_config diff --git a/h2integrate/core/test/test_framework.py b/h2integrate/core/test/test_framework.py index 524968a64..b932c51c1 100644 --- a/h2integrate/core/test/test_framework.py +++ b/h2integrate/core/test/test_framework.py @@ -1,11 +1,14 @@ +import os import shutil from copy import deepcopy from pathlib import Path +from unittest.mock import patch import yaml import numpy as np import pytest +import h2integrate.core.h2integrate_model as h2i_model_module from h2integrate import EXAMPLE_DIR from h2integrate.core.h2integrate_model import H2IntegrateModel from h2integrate.core.inputs.validation import load_tech_yaml, load_plant_yaml, load_driver_yaml @@ -179,9 +182,37 @@ def test_unsupported_simulation_parameters(temp_dir): with pytest.raises(ValueError, match="greater than 1-year"): load_plant_yaml(plant_config_data_ntimesteps) - # check that error is thrown when loading config with invalid time interval - with pytest.raises(ValueError, match="with a time step that"): - load_plant_yaml(plant_config_data_dt) + +@pytest.mark.unit +def test_check_time_step_with_model_bounds_allows_supported_dt(): + class DummyModel: + _time_step_bounds = (900, 3600) + + model = object.__new__(H2IntegrateModel) + model.plant_config = {"plant": {"simulation": {"dt": 1800}}} + + model._check_time_step("DummyModel", DummyModel) + + +@pytest.mark.unit +def test_check_time_step_with_model_bounds_raises_for_unsupported_dt(): + class DummyModel: + _time_step_bounds = ( + 900, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + model = object.__new__(H2IntegrateModel) + model.plant_config = {"plant": {"simulation": {"dt": 7200}}} + + with pytest.raises( + ValueError, + match=( + r"Model DummyModel is compatible with time steps between " + r"900 \(s\) and 3600 \(s\), but a time step of 7200 \(s\) was specified" + ), + ): + model._check_time_step("DummyModel", DummyModel) @pytest.mark.unit @@ -203,9 +234,9 @@ def test_technology_connections(temp_dir): new_connection = (["finance_subgroup_electricity", "steel", ("LCOE", "electricity_cost")],) new_tech_interconnections = ( - plant_config_data["technology_interconnections"][0:4] + plant_config_data["technology_interconnections"][0:9] + list(new_connection) - + [plant_config_data["technology_interconnections"][4]] + + [plant_config_data["technology_interconnections"][9]] ) plant_config_data["technology_interconnections"] = new_tech_interconnections @@ -321,6 +352,33 @@ def test_resource_connection_error_missing_resource(temp_dir): temp_highlevel_yaml.unlink(missing_ok=True) +@pytest.mark.unit +def test_no_resource_connection_error_resource_to_multiple_techs(temp_dir): + # Path to the original plant_config.yaml and high-level yaml in the example directory + + driver_config = load_driver_yaml(EXAMPLE_DIR / "08_wind_electrolyzer" / "driver_config.yaml") + tech_config = load_tech_yaml(EXAMPLE_DIR / "08_wind_electrolyzer" / "tech_config.yaml") + plant_config = load_plant_yaml(EXAMPLE_DIR / "08_wind_electrolyzer" / "plant_config.yaml") + # Add a second wind technology + wind_tech = tech_config["technologies"]["wind"] + tech_config["technologies"].update({"wind_plant2": wind_tech}) + resource_to_tech_connections = [ + ["site.wind_resource", "wind", "wind_resource_data"], + ["site.wind_resource", "wind_plant2", "wind_resource_data"], + ] + plant_config["resource_to_tech_connections"] = resource_to_tech_connections + input_config = { + "plant_config": plant_config, + "technology_config": tech_config, + "driver_config": driver_config, + } + h2i_model = H2IntegrateModel(input_config) + h2i_model.setup() + # Need to call final_setup to trigger the potential error related to the resource connections + h2i_model.prob.final_setup() + assert True + + @pytest.mark.unit def test_reports_turned_off(temp_dir): # Path to the original config files in the example directory @@ -457,12 +515,18 @@ def test_system_order(subtests): "solar", "solar_to_combiner_cable", "combiner", + "combiner_to_elec_combiner_cable", "combiner_to_battery_cable", "battery", - "battery_to_electrolyzer_cable", + "battery_to_elec_combiner_cable", + "elec_combiner", + "elec_combiner_to_electrolyzer_cable", "electrolyzer", + "electrolyzer_to_h2_combiner_pipe", "electrolyzer_to_h2_storage_pipe", "h2_storage", + "h2_storage_to_h2_combiner_pipe", + "h2_combiner", "steel", "finance_subgroup_electricity", "finance_subgroup_hydrogen", @@ -470,9 +534,98 @@ def test_system_order(subtests): ] names = [sys.name for sys in h2i.model.plant.system_iter(include_self=False, recurse=False)] - with subtests.test("Test expected names are all present"): assert sorted(names) == sorted(expected_names) with subtests.test("Test expected names are in the correct order"): assert names == expected_names + + +@pytest.mark.unit +def test_no_sites_entry(temp_dir): + """Verify that a model can set up and run without a ``sites`` entry in the plant config. + + Uses Example 32 (multivariable streams), whose plant_config intentionally + omits the ``sites`` key. + """ + example_folder = EXAMPLE_DIR / "32_multivariable_streams" + shutil.copytree(example_folder, temp_dir / "32_multivariable_streams", dirs_exist_ok=True) + + os.chdir(temp_dir / "32_multivariable_streams") + + model = H2IntegrateModel( + temp_dir / "32_multivariable_streams" / "32_multivariable_streams.yaml" + ) + model.run() + + # Smoke-check: combiner output flow should be the sum of the two producers + flow_out = model.prob.get_val("gas_combiner.wellhead_gas_mixture:mass_flow_out", units="kg/h") + assert flow_out.mean() > 0.0 + + os.chdir(Path(__file__).parent) + + +@pytest.mark.unit +def test_create_xdsm_calls_create_xdsm_from_config_default_outfile(): + plant_config = {"technology_interconnections": [("wind", "electrolyzer", "electricity")]} + model = object.__new__(H2IntegrateModel) + model.plant_config = plant_config + + with patch.object(h2i_model_module, "create_xdsm_from_config") as mock_fn: + model.create_xdsm() + + mock_fn.assert_called_once_with(plant_config, output_file="connections_xdsm") + + +@pytest.mark.unit +def test_create_xdsm_calls_create_xdsm_from_config_custom_outfile(): + plant_config = {"technology_interconnections": [("wind", "electrolyzer", "electricity")]} + model = object.__new__(H2IntegrateModel) + model.plant_config = plant_config + outfile = "my_custom_xdsm" + + with patch.object(h2i_model_module, "create_xdsm_from_config") as mock_fn: + model.create_xdsm(outfile=outfile) + + mock_fn.assert_called_once_with(plant_config, output_file=outfile) + + +@pytest.mark.unit +def test_create_xdsm_raises_when_no_interconnections(): + plant_config = {"technology_interconnections": []} + model = object.__new__(H2IntegrateModel) + model.plant_config = plant_config + + with patch.object(h2i_model_module, "create_xdsm_from_config") as mock_fn: + with pytest.raises(ValueError, match="requires technology interconnections"): + model.create_xdsm() + + mock_fn.assert_not_called() + + +@pytest.mark.unit +def test_create_xdsm_raises_when_interconnections_key_missing(): + plant_config = {} + model = object.__new__(H2IntegrateModel) + model.plant_config = plant_config + + with patch.object(h2i_model_module, "create_xdsm_from_config") as mock_fn: + with pytest.raises(ValueError, match="requires technology interconnections"): + model.create_xdsm() + + mock_fn.assert_not_called() + + +@pytest.mark.unit +def test_create_xdsm_propagates_file_not_found_error(): + plant_config = {"technology_interconnections": [("wind", "electrolyzer", "electricity")]} + model = object.__new__(H2IntegrateModel) + model.plant_config = plant_config + + with patch.object( + h2i_model_module, + "create_xdsm_from_config", + side_effect=FileNotFoundError("latex not found"), + ): + with pytest.raises(FileNotFoundError, match="latex not found"): + model.create_xdsm() diff --git a/h2integrate/core/test/test_recorder.py b/h2integrate/core/test/test_recorder.py index 316a25f80..804f54a87 100644 --- a/h2integrate/core/test/test_recorder.py +++ b/h2integrate/core/test/test_recorder.py @@ -1,8 +1,7 @@ -import os +import sys import pytest -from h2integrate import EXAMPLE_DIR from h2integrate.core.h2integrate_model import H2IntegrateModel from h2integrate.core.inputs.validation import load_driver_yaml @@ -13,23 +12,21 @@ @pytest.mark.unit -def test_output_folder_creation_first_run(temp_dir, subtests): - # Test that the sql file is written to the output folder - # with the specified name - - # change to example dir - os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") +@pytest.mark.parametrize("example_folder,resource_example_folder", [("05_wind_h2_opt", None)]) +def test_output_folder_creation_first_run(temp_copy_of_example_module_scope, subtests): + """Test that the sql file is written to the output folder with the specified name.""" # initialize H2I using non-optimization config - input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + example_folder = temp_copy_of_example_module_scope + input_file = example_folder / "wind_plant_electrolyzer0.yaml" h2i = H2IntegrateModel(input_file) # load driver config for optimization run - driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + driver_config = load_driver_yaml(example_folder / "driver_config.yaml") # update driver config params with test variables filename_initial = TEST_RECORDER_OUTPUT_FILE0 - driver_config["general"]["folder_output"] = temp_dir + output_folder = example_folder / driver_config["general"]["folder_output"] driver_config["recorder"]["file"] = filename_initial driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long @@ -40,10 +37,8 @@ def test_output_folder_creation_first_run(temp_dir, subtests): h2i.create_driver_model() # check if output folder and output files exist - output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir).exists() - output_file_exists_prerun = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_initial - ).exists() + output_folder_exists = output_folder.exists() + output_file_exists_prerun = (output_folder / filename_initial).exists() with subtests.test("Run 0: output folder exists"): assert output_folder_exists is True @@ -54,32 +49,31 @@ def test_output_folder_creation_first_run(temp_dir, subtests): h2i.run() # check that recorder file was created - output_file_exists_postrun = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_initial - ).exists() + output_file_exists_postrun = (output_folder / filename_initial).exists() with subtests.test("Run 0: recorder output file exists after run"): assert output_file_exists_postrun is True @pytest.mark.unit -def test_output_new_recorder_filename_second_run(temp_dir, subtests): - # Test that the sql file is written to the output folder - # with the specified base name and an appended 0 - # change to example dir - os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") +@pytest.mark.parametrize("example_folder,resource_example_folder", [("05_wind_h2_opt", None)]) +def test_output_new_recorder_filename_second_run(temp_copy_of_example_module_scope, subtests): + """Test that the sql file is written to the output folder with the specified base name and + an appended 0. + """ # initialize H2I using non-optimization config - input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + example_folder = temp_copy_of_example_module_scope + input_file = example_folder / "wind_plant_electrolyzer0.yaml" h2i = H2IntegrateModel(input_file) # load driver config for optimization run - driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + driver_config = load_driver_yaml(example_folder / "driver_config.yaml") # update driver config params with test variables filename_initial = TEST_RECORDER_OUTPUT_FILE0 filename_expected = TEST_RECORDER_OUTPUT_FILE1 - driver_config["general"]["folder_output"] = temp_dir + output_folder = example_folder / driver_config["general"]["folder_output"] driver_config["recorder"]["file"] = filename_initial driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long @@ -90,43 +84,35 @@ def test_output_new_recorder_filename_second_run(temp_dir, subtests): h2i.create_driver_model() # check if output folder and output files exist - output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir).exists() - output_file_exists_prerun = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_initial - ).exists() - with subtests.test("Run 1: output folder exists"): - assert output_folder_exists is True + assert output_folder.exists() with subtests.test("Run 1: initial recorder output file exists"): - assert output_file_exists_prerun is True + assert (output_folder / filename_initial).exists() # run the model h2i.run() # check that the new recorder file was created - new_output_file_exists = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_expected - ).exists() with subtests.test("Run 1: new recorder output file was made"): - assert new_output_file_exists is True + assert (output_folder / filename_expected).exists() @pytest.mark.unit -def test_output_new_recorder_overwrite_first_run(temp_dir, subtests): - # change to example dir - os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") - +@pytest.mark.parametrize("example_folder,resource_example_folder", [("05_wind_h2_opt", None)]) +@pytest.mark.xfail(sys.platform == "win32", reason="OpenMDAO incorrectly ends SQL processes") +def test_output_new_recorder_overwrite_first_run(temp_copy_of_example_module_scope, subtests): # initialize H2I using non-optimization config - input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + example_folder = temp_copy_of_example_module_scope + input_file = example_folder / "wind_plant_electrolyzer0.yaml" h2i = H2IntegrateModel(input_file) # load driver config for optimization run - driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + driver_config = load_driver_yaml(example_folder / "driver_config.yaml") # update driver config params with test variables filename_initial = TEST_RECORDER_OUTPUT_FILE0 filename_exists_if_failed = TEST_RECORDER_OUTPUT_FILE2 - driver_config["general"]["folder_output"] = temp_dir + output_folder = example_folder / driver_config["general"]["folder_output"] driver_config["recorder"]["file"] = filename_initial # specify that we want the previous file overwritten rather @@ -141,44 +127,35 @@ def test_output_new_recorder_overwrite_first_run(temp_dir, subtests): h2i.create_driver_model() # check if output folder and output files exist - output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir).exists() - output_file_exists_prerun = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_initial - ).exists() - with subtests.test("Run 2: output folder exists"): - assert output_folder_exists is True + assert output_folder.exists() with subtests.test("Run 2: initial recorder output file exists"): - assert output_file_exists_prerun is True + assert (output_folder / filename_initial).exists() # run the model h2i.run() # check that recorder file was overwritten - new_output_file_exists = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_exists_if_failed - ).exists() with subtests.test("Run 2: initial output file was overwritten"): - assert new_output_file_exists is False + assert not (output_folder / filename_exists_if_failed).exists() @pytest.mark.unit -def test_output_new_recorder_filename_third_run(temp_dir, subtests): - # change to example dir - os.chdir(EXAMPLE_DIR / "05_wind_h2_opt") - +@pytest.mark.parametrize("example_folder,resource_example_folder", [("05_wind_h2_opt", None)]) +def test_output_new_recorder_filename_third_run(temp_copy_of_example_module_scope, subtests): # initialize H2I using non-optimization config - input_file = EXAMPLE_DIR / "05_wind_h2_opt" / "wind_plant_electrolyzer0.yaml" + example_folder = temp_copy_of_example_module_scope + input_file = example_folder / "wind_plant_electrolyzer0.yaml" h2i = H2IntegrateModel(input_file) # load driver config for optimization run - driver_config = load_driver_yaml(EXAMPLE_DIR / "05_wind_h2_opt" / "driver_config.yaml") + driver_config = load_driver_yaml(example_folder / "driver_config.yaml") # update driver config params with test variables filename_initial = TEST_RECORDER_OUTPUT_FILE0 filename_second = TEST_RECORDER_OUTPUT_FILE1 filename_expected = TEST_RECORDER_OUTPUT_FILE2 - driver_config["general"]["folder_output"] = temp_dir + output_folder = example_folder / driver_config["general"]["folder_output"] driver_config["recorder"]["file"] = filename_initial driver_config["driver"]["optimization"]["max_iter"] = 5 # to prevent tests taking too long @@ -189,26 +166,16 @@ def test_output_new_recorder_filename_third_run(temp_dir, subtests): h2i.create_driver_model() # check if output folder and output files exist - output_folder_exists = (EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir).exists() - output_file_exists_prerun = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_initial - ).exists() - run1_output_file_exists_prerun = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_second - ).exists() with subtests.test("Run 3: output folder exists"): - assert output_folder_exists is True + assert output_folder.exists() with subtests.test("Run 3: initial recorder output file exists"): - assert output_file_exists_prerun is True + assert (output_folder / filename_initial).exists() with subtests.test("Run 3: second recorder output file exists"): - assert run1_output_file_exists_prerun is True + assert (output_folder / filename_second).exists() # run the model h2i.run() # check that the new recorder file was created - new_output_file_exists = ( - EXAMPLE_DIR / "05_wind_h2_opt" / temp_dir / filename_expected - ).exists() with subtests.test("Run 3: new recorder output file was made"): - assert new_output_file_exists is True + assert (output_folder / filename_expected).exists() diff --git a/h2integrate/core/test/test_supported_models.py b/h2integrate/core/test/test_supported_models.py index 271817695..da94d49dd 100644 --- a/h2integrate/core/test/test_supported_models.py +++ b/h2integrate/core/test/test_supported_models.py @@ -1,24 +1,6 @@ import pytest -from h2integrate.core.supported_models import supported_models, is_electricity_producer - - -@pytest.mark.unit -def test_is_electricity_producer(subtests): - with subtests.test("exact match"): - assert is_electricity_producer("grid_buy") - - with subtests.test("partial starts-with match"): - assert is_electricity_producer("grid_buy_1") - - with subtests.test("partial ends-with match fails"): - assert not is_electricity_producer("wrong_grid_buy") - - with subtests.test("empty string fails"): - assert not is_electricity_producer("") - - with subtests.test("non-electricity producing tech fails"): - assert not is_electricity_producer("battery") +from h2integrate.core.supported_models import supported_models @pytest.mark.unit diff --git a/h2integrate/core/test/test_utilities.py b/h2integrate/core/test/test_utilities.py index e7556382d..62f1ed5ef 100644 --- a/h2integrate/core/test/test_utilities.py +++ b/h2integrate/core/test/test_utilities.py @@ -5,12 +5,14 @@ import yaml import numpy as np import pytest +import openmdao.api as om from attrs import field, define from h2integrate import ROOT_DIR, EXAMPLE_DIR, RESOURCE_DEFAULT_DIR from h2integrate.core.utilities import BaseConfig -from h2integrate.core.dict_utils import dict_to_yaml_formatting +from h2integrate.core.dict_utils import check_inputs, dict_to_yaml_formatting from h2integrate.core.file_utils import get_path, find_file, load_yaml, make_unique_case_name +from h2integrate.core.supported_models import supported_models from h2integrate.core.inputs.validation import load_tech_yaml @@ -547,3 +549,193 @@ def traverse_dict(sample_dict): sample = load_yaml(inputs / fn) traverse_dict(sample) load_tech_yaml(inputs / fn) + + +def create_om_problem(tech_config): + plant_config_base = { + "plant": { + "plant_life": 30, + "simulation": { + "dt": 3600, + "n_timesteps": 8760, + }, + }, + "tech_to_dispatch_connections": [ + ["wind", "battery"], + ["battery", "battery"], + ], + } + + prob = om.Problem(reports=False) + model = prob.model + plant_group = om.Group() + plant = model.add_subsystem("plant", plant_group, promotes=["*"]) + + model_types = [ + "dispatch_rule_set", + "control_strategy", + "performance_model", + "cost_model", + ] + for tech_name, individual_tech_config in tech_config["technologies"].items(): + tech_group = plant.add_subsystem(tech_name, om.Group()) + + for model_type in model_types: + if model_type in individual_tech_config: + if model_type == "control_strategy": + control_params = individual_tech_config["model_inputs"].get( + "control_parameters", {} + ) + control_params["tech_name"] = tech_name + individual_tech_config["model_inputs"].update( + {"control_parameters": control_params} + ) + model_name = individual_tech_config[model_type]["model"] + model_object = supported_models[model_name] + tech_group.add_subsystem( + model_name, + model_object( + driver_config={}, + plant_config=plant_config_base, + tech_config=individual_tech_config, + ), + promotes=["*"], + ) + + prob.setup() + return prob + + +@pytest.mark.unit +def test_check_inputs(subtests): + tech_config_fpath = Path(__file__).parent / "inputs" / "no_duplicates.yaml" + + # 1: check for an unused parameter under performance_parameters + tech_config = load_tech_yaml(tech_config_fpath) + prob = create_om_problem(tech_config) + + for tech, tech_info in tech_config["technologies"].items(): + if tech == "battery": + with pytest.raises(AttributeError) as excinfo: + check_inputs(prob, tech, tech_info, tech_config_fpath) + expected_error = ( + "The parameter(s) ['system_model_source'] found in performance_parameters " + f"are not used for the 'battery' section of {tech_config_fpath}" + ) + assert expected_error == str(excinfo.value) + else: + check_inputs(prob, tech, tech_info, tech_config_fpath) + + # 2: check when not-shared parameters are under shared_parameters + tech_config = load_tech_yaml(tech_config_fpath) + tech_config["technologies"]["battery"]["model_inputs"]["performance_parameters"].pop( + "system_model_source" + ) + prob = create_om_problem(tech_config) + + for tech, tech_info in tech_config["technologies"].items(): + if tech == "battery": + with pytest.raises(AttributeError) as excinfo: + check_inputs(prob, tech, tech_info, tech_config_fpath) + expected_error = ( + "The parameter(s) ['n_control_window', 'system_commodity_interface_limit'] " + "found in shared_parameters but should be in control_parameters for " + f"the 'battery' section of {tech_config_fpath}" + ) + assert expected_error == str(excinfo.value) + else: + check_inputs(prob, tech, tech_info, tech_config_fpath) + + # 3: check when multiple unshared parameters from different categories are under shared\ + key = "opex_fraction" + val = tech_config["technologies"]["battery"]["model_inputs"]["cost_parameters"].pop(key) + tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"][key] = val + for tech, tech_info in tech_config["technologies"].items(): + if tech == "battery": + with pytest.raises(AttributeError) as excinfo: + check_inputs(prob, tech, tech_info, tech_config_fpath) + expected_error = ( + "The following parameter sets were found in shared_parameters but should be" + " contained in the following sections for the 'battery' section of " + f"{tech_config_fpath}:" + "\n\tcontrol_parameters should contain" + " ['n_control_window', 'system_commodity_interface_limit']" + "\n\tcost_parameters should contain ['opex_fraction]" + ) + assert expected_error == str(excinfo.value) + else: + check_inputs(prob, tech, tech_info, tech_config_fpath) + + # 4: check when an unused parameter is under shared_parameters + tech_config = load_tech_yaml(tech_config_fpath) + control_parameters = {} + tech_config["technologies"]["battery"]["model_inputs"]["performance_parameters"].pop( + "system_model_source" + ) + control_parameters["n_control_window"] = tech_config["technologies"]["battery"]["model_inputs"][ + "shared_parameters" + ].pop("n_control_window") + control_parameters["system_commodity_interface_limit"] = tech_config["technologies"]["battery"][ + "model_inputs" + ]["shared_parameters"].pop("system_commodity_interface_limit") + tech_config["technologies"]["battery"]["model_inputs"].update( + {"control_parameters": control_parameters} + ) + # add unused parameter to shared + tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"].update( + {"test_unused_input": "fake"} + ) + prob = create_om_problem(tech_config) + + for tech, tech_info in tech_config["technologies"].items(): + if tech == "battery": + with pytest.raises(AttributeError) as excinfo: + check_inputs(prob, tech, tech_info, tech_config_fpath) + expected_error = ( + "The parameter(s) ['test_unused_input'] found in " + f"shared_parameters are not used by any of the models for the " + f"'battery' section of {tech_config_fpath}" + ) + assert expected_error == str(excinfo.value) + else: + check_inputs(prob, tech, tech_info, tech_config_fpath) + + # 5: check when parameters are shared but specified individually + combiner_tech = { + "performance_model": {"model": "GenericCombinerPerformanceModel"}, + "dispatch_rule_set": {"model": "PyomoDispatchGenericConverter"}, + "model_inputs": { + "performance_parameters": {"commodity": "electricity", "commodity_rate_units": "kW"}, + "dispatch_rule_parameters": {"commodity": "electricity", "commodity_rate_units": "kW"}, + }, + } + + tech_config = load_tech_yaml(tech_config_fpath) + control_parameters = {} + tech_config["technologies"]["battery"]["model_inputs"]["performance_parameters"].pop( + "system_model_source" + ) + control_parameters["n_control_window"] = tech_config["technologies"]["battery"]["model_inputs"][ + "shared_parameters" + ].pop("n_control_window") + control_parameters["system_commodity_interface_limit"] = tech_config["technologies"]["battery"][ + "model_inputs" + ]["shared_parameters"].pop("system_commodity_interface_limit") + tech_config["technologies"]["battery"]["model_inputs"].update( + {"control_parameters": control_parameters} + ) + tech_config["technologies"].update({"combiner": combiner_tech}) + prob = create_om_problem(tech_config) + + for tech, tech_info in tech_config["technologies"].items(): + if tech == "combiner": + with pytest.raises(AttributeError) as excinfo: + check_inputs(prob, tech, tech_info, tech_config_fpath) + expected_error = ( + "The parameter(s) ['commodity', 'commodity_rate_units] found in " + "performance_parameters should be under shared_parameter(s) for " + f"the 'combiner' section of {tech_config_fpath}" + ) + assert expected_error == str(excinfo.value) + else: + check_inputs(prob, tech, tech_info, tech_config_fpath) diff --git a/h2integrate/converters/iron/martin_ore/__init__.py b/h2integrate/demand/__init__.py similarity index 100% rename from h2integrate/converters/iron/martin_ore/__init__.py rename to h2integrate/demand/__init__.py diff --git a/h2integrate/demand/demand_base.py b/h2integrate/demand/demand_base.py new file mode 100644 index 000000000..09072594f --- /dev/null +++ b/h2integrate/demand/demand_base.py @@ -0,0 +1,153 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig +from h2integrate.core.model_baseclasses import PerformanceModelBaseClass + + +@define(kw_only=True) +class DemandComponentBaseConfig(BaseConfig): + """Configuration for defining a demand profile. + + This configuration object specifies the commodity being demanded and the + demand profile that should be met by downstream components. + + Attributes: + commodity (str): Name of the commodity being demanded + (e.g., "hydrogen"). Converted to lowercase and stripped of whitespace. + commodity_rate_units (str): Units of the commodity (e.g., "kg/h"). + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., kW*h or kg). If not provided, defaults to commodity_rate_units*h. + """ + + commodity: str = field(converter=str.strip) + commodity_rate_units: str = field(converter=str.strip) + demand_profile: int | float | list = field() + commodity_amount_units: str = field(default=None) + + def __attrs_post_init__(self): + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" + + +class DemandComponentBase(PerformanceModelBaseClass): + """Base OpenMDAO component for open-loop demand tracking. + + This component defines the interfaces required for demand + components, including inputs for demand, supplied commodity, and outputs + tracking unmet demand, unused production, and total unmet demand. + Subclasses must implement the :meth:`compute` method to define the + demand component behavior. + """ + + _time_step_bounds = (3600, 3600) # (min, max) time step lengths compatible with this model + + def setup(self): + """Define inputs and outputs for demand component. + + Creates time-series inputs and outputs for commodity demand, supply, + unmet demand, unused commodity, and total unmet demand. Shapes and units + are determined by the plant configuration and load component configuration. + + Raises: + KeyError: If required configuration keys are missing from + ``plant_config`` or ``tech_config``. + """ + self.commodity = self.config.commodity + self.commodity_rate_units = self.config.commodity_rate_units + self.commodity_amount_units = self.config.commodity_amount_units + + super().setup() + + self.add_input( + f"{self.commodity}_demand", + val=self.config.demand_profile, + shape=self.n_timesteps, + units=self.commodity_rate_units, + desc=f"Demand profile of {self.commodity}", + ) + + self.add_input( + f"{self.commodity}_in", + val=0.0, + shape=self.n_timesteps, + units=self.commodity_rate_units, + desc=f"Amount of {self.commodity} demand that has already been supplied", + ) + + self.add_output( + f"unmet_{self.commodity}_demand_out", + val=self.config.demand_profile, + shape=self.n_timesteps, + units=self.commodity_rate_units, + desc=f"Remaining demand profile of {self.commodity}", + ) + + self.add_output( + f"unused_{self.commodity}_out", + val=0.0, + shape=self.n_timesteps, + units=self.commodity_rate_units, + desc=f"Excess production of {self.commodity}", + ) + + def compute(): + """This method must be implemented by subclasses to define the + demand component. + + Raises: + NotImplementedError: Always, unless implemented in a subclass. + """ + raise NotImplementedError("This method should be implemented in a subclass.") + + def calculate_outputs(self, commodity_in, commodity_demand, outputs): + """Compute unmet demand, unused commodity, and converter output. + + This method compares the demand profile to the supplied commodity for + each timestep and assigns unmet demand, curtailed production, and + actual delivered output. + + Args: + commodity_in (np.array): supplied commodity profile + commodity_demand (np.array): entire commodity demand profile + outputs (dict-like): Mapping of output variable names where results + will be written, including: + + * ``unmet_{commodity}_demand_out``: Unmet demand. + * ``unused_{commodity}_out``: Curtailed production. + * ``{commodity}_out``: Actual output delivered. + + Notes: + All variables operate on a per-timestep basis and typically have + array shape ``(n_timesteps,)``. + """ + + remaining_demand = commodity_demand - commodity_in + + # Calculate missed load and curtailed production + outputs[f"unmet_{self.commodity}_demand_out"] = np.where( + remaining_demand > 0, remaining_demand, 0 + ) + outputs[f"unused_{self.commodity}_out"] = np.where( + remaining_demand < 0, -1 * remaining_demand, 0 + ) + + # Calculate actual output based on demand met and curtailment + outputs[f"{self.commodity}_out"] = commodity_in - outputs[f"unused_{self.commodity}_out"] + + outputs[f"rated_{self.commodity}_production"] = commodity_demand.mean() + + outputs[f"total_{self.commodity}_produced"] = np.sum(outputs[f"{self.commodity}_out"]) * ( + self.dt / 3600 + ) + + outputs[f"annual_{self.commodity}_produced"] = ( + outputs[f"total_{self.commodity}_produced"] / self.fraction_of_year_simulated + ) + + outputs["capacity_factor"] = outputs[f"{self.commodity}_out"].sum() / commodity_demand.sum() + + return outputs diff --git a/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py b/h2integrate/demand/flexible_demand.py similarity index 81% rename from h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py rename to h2integrate/demand/flexible_demand.py index c3dc37fe0..f4bcf23cc 100644 --- a/h2integrate/control/control_strategies/converters/flexible_demand_openloop_controller.py +++ b/h2integrate/demand/flexible_demand.py @@ -1,18 +1,16 @@ import numpy as np from attrs import field, define +from h2integrate.core.utilities import merge_shared_inputs from h2integrate.core.validators import gte_zero, range_val -from h2integrate.control.control_strategies.demand_openloop_controller import ( - DemandOpenLoopControlBase, - DemandOpenLoopControlBaseConfig, -) +from h2integrate.demand.demand_base import DemandComponentBase, DemandComponentBaseConfig @define(kw_only=True) -class FlexibleDemandOpenLoopConverterControllerConfig(DemandOpenLoopControlBaseConfig): - """Configuration for defining a flexible demand open-loop controller. +class FlexibleDemandComponentConfig(DemandComponentBaseConfig): + """Configuration for defining a flexible demand component. - Extends :class:`DemandOpenLoopControlBaseConfig` with additional parameters + Extends :class:`DemandComponentBaseConfig` with additional parameters required for dynamically adjusting demand based on turndown, ramping, and minimum utilization constraints. These parameters are expressed as fractions of ``maximum_demand`` and must lie within ``(0, 1)``. @@ -42,37 +40,37 @@ class FlexibleDemandOpenLoopConverterControllerConfig(DemandOpenLoopControlBaseC min_utilization: float = field(validator=range_val(0, 1.0)) -class FlexibleDemandOpenLoopConverterController(DemandOpenLoopControlBase): - """Open-loop controller for flexible demand with ramping and utilization constraints. +class FlexibleDemandComponent(DemandComponentBase): + """Demand component for flexible demand with ramping and utilization constraints. - This controller extends the base demand controller by allowing the effective + This component extends the base demand component by allowing the effective demand to vary dynamically based on turndown constraints, ramp-rate limits, and minimum-utilization requirements. A flexible demand profile is generated and used to compute unmet demand, unused commodity, and delivered output. """ + _time_step_bounds = (3600, 3600) # (min, max) time step lengths compatible with this model + def setup(self): - """Set up component inputs and outputs for flexible demand control. + """Set up component inputs and outputs for flexible demand. Adds inputs for turndown ratio, ramp up/down rates, and minimum utilization, all expressed as fractions of maximum demand. Adds the flexible demand output profile, which will be populated in ``compute``. """ - self.config = FlexibleDemandOpenLoopConverterControllerConfig.from_dict( - self.options["tech_config"]["model_inputs"]["control_parameters"], + self.config = FlexibleDemandComponentConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=True, additional_cls_name=self.__class__.__name__, ) super().setup() - n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) - commodity = self.config.commodity - self.add_input( - f"rated_{commodity}_demand", + f"rated_{self.commodity}_demand", val=self.config.demand_profile, - shape=(n_timesteps), - units=self.config.commodity_rate_units, - desc=f"Rated demand of {commodity}", + shape=self.n_timesteps, + units=self.commodity_rate_units, + desc=f"Rated demand of {self.commodity}", ) self.add_input( @@ -104,11 +102,11 @@ def setup(self): ) self.add_output( - f"{commodity}_flexible_demand_profile", + f"{self.commodity}_flexible_demand_profile", val=0.0, - shape=(n_timesteps), + shape=self.n_timesteps, units=self.config.commodity_rate_units, - desc=f"Flexible demand profile of {commodity}", + desc=f"Flexible demand profile of {self.commodity}", ) def adjust_demand_for_ramping(self, pre_demand_met_clipped, demand_bounds, ramp_rate_bounds): @@ -250,7 +248,7 @@ def compute(self, inputs, outputs): """Compute unmet demand, unused commodity, and output under flexible demand. If ``min_utilization == 1.0``, the behavior matches the regular open-loop - controller with no flexible demand adjustments. + component with no flexible demand adjustments. Otherwise: * Construct a flexible demand profile. @@ -263,40 +261,33 @@ def compute(self, inputs, outputs): outputs (dict-like): Mapping where computed outputs are written. """ - commodity = self.config.commodity - remaining_demand = inputs[f"{commodity}_demand"] - inputs[f"{commodity}_in"] if self.config.min_utilization == 1.0: + outputs[f"{self.commodity}_flexible_demand_profile"] = inputs[ + f"{self.commodity}_demand" + ] + # Calculate missed load and curtailed production - outputs[f"{commodity}_unmet_demand"] = np.where( - remaining_demand > 0, remaining_demand, 0 - ) - outputs[f"{commodity}_unused_commodity"] = np.where( - remaining_demand < 0, -1 * remaining_demand, 0 + outputs = self.calculate_outputs( + inputs[f"{self.commodity}_in"], inputs[f"{self.commodity}_demand"], outputs ) + else: + remaining_demand = inputs[f"{self.commodity}_demand"] - inputs[f"{self.commodity}_in"] + # when remaining demand is less than 0, that means input exceeds demand # multiply by -1 to make it positive curtailed = np.where(remaining_demand < 0, -1 * remaining_demand, 0) # subtract out the excess input commodity - inflexible_out = inputs[f"{commodity}_in"] - curtailed + inflexible_out = inputs[f"{self.commodity}_in"] - curtailed flexible_demand_profile = self.make_flexible_demand( - inputs[f"{commodity}_demand"], inflexible_out, inputs + inputs[f"{self.commodity}_demand"], inflexible_out, inputs ) - outputs[f"{commodity}_flexible_demand_profile"] = flexible_demand_profile - flexible_remaining_demand = flexible_demand_profile - inputs[f"{commodity}_in"] + outputs[f"{self.commodity}_flexible_demand_profile"] = flexible_demand_profile - outputs[f"{commodity}_unmet_demand"] = np.where( - flexible_remaining_demand > 0, flexible_remaining_demand, 0 - ) - outputs[f"{commodity}_unused_commodity"] = np.where( - flexible_remaining_demand < 0, -1 * flexible_remaining_demand, 0 + outputs = self.calculate_outputs( + inputs[f"{self.commodity}_in"], flexible_demand_profile, outputs ) - - # Calculate actual output based on demand met and curtailment - outputs[f"{commodity}_set_point"] = ( - inputs[f"{commodity}_in"] - outputs[f"{commodity}_unused_commodity"] - ) diff --git a/h2integrate/demand/generic_demand.py b/h2integrate/demand/generic_demand.py new file mode 100644 index 000000000..b65e713f1 --- /dev/null +++ b/h2integrate/demand/generic_demand.py @@ -0,0 +1,56 @@ +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.demand.demand_base import DemandComponentBase, DemandComponentBaseConfig + + +class GenericDemandComponent(DemandComponentBase): + """Component for for converting input supply into met demand. + + This component computes unmet demand, unused (curtailed) production, and + the resulting commodity output profile based on the incoming supply and an + externally specified demand profile. It uses simple arithmetic rules: + + * If demand exceeds supplied commodity, the difference is unmet demand. + * If supply exceeds demand, the excess is unused (curtailed) commodity. + * Output equals supplied commodity minus curtailed commodity. + + This component relies on configuration provided through the + ``tech_config`` dictionary, which must define the demand's + ``performance_parameters``. + """ + + def setup(self): + self.config = DemandComponentBaseConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=True, + additional_cls_name=self.__class__.__name__, + ) + super().setup() + + def compute(self, inputs, outputs): + """Compute unmet demand, unused commodity, and converter output. + + This method compares the demand profile to the supplied commodity for + each timestep and assigns unmet demand, curtailed production, and + actual delivered output. + + Args: + inputs (dict-like): Mapping of input variable names to their + current values, including: + + * ``{commodity}_demand``: Demand profile. + * ``{commodity}_in``: Supplied commodity. + outputs (dict-like): Mapping of output variable names where results + will be written, including: + + * ``unmet_{commodity}_demand_out``: Unmet demand. + * ``unused_{commodity}_out``: Curtailed production. + * ``{commodity}_out``: Actual output delivered. + + Notes: + All variables operate on a per-timestep basis and typically have + array shape ``(n_timesteps,)``. + """ + + outputs = self.calculate_outputs( + inputs[f"{self.commodity}_in"], inputs[f"{self.commodity}_demand"], outputs + ) diff --git a/h2integrate/demand/test/test_demand_components.py b/h2integrate/demand/test/test_demand_components.py new file mode 100644 index 000000000..45cbca3b9 --- /dev/null +++ b/h2integrate/demand/test/test_demand_components.py @@ -0,0 +1,256 @@ +import numpy as np +import pytest +import openmdao.api as om +from pytest import fixture + +from h2integrate.demand.generic_demand import GenericDemandComponent +from h2integrate.demand.flexible_demand import FlexibleDemandComponent + + +@fixture +def variable_h2_production_profile(): + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + slow_ramp_up = np.arange(0, end_use_rated_demand * 1.1, 0.5) + slow_ramp_down = np.arange(end_use_rated_demand * 1.1, -0.5, -0.5) + fast_ramp_up = np.arange(0, end_use_rated_demand, ramp_up_rate_kg * 1.2) + fast_ramp_down = np.arange(end_use_rated_demand, 0.0, ramp_down_rate_kg * 1.1) + variable_profile = np.concat( + [slow_ramp_up, fast_ramp_down, slow_ramp_up, slow_ramp_down, fast_ramp_up] + ) + variable_h2_profile = np.tile(variable_profile, 2) + return variable_h2_profile + + +@pytest.mark.regression +def test_demand_converter_controller(subtests): + # Test is the same as the demand controller test test_demand_controller for the "h2_storage" + # performance model but with the "StoragePerformanceModel" performance model + + # Define the technology configuration + tech_config = {"technologies": {}} + + tech_config["technologies"]["load"] = { + "performance_model": { + "model": "GenericDemandComponent", + }, + "model_inputs": { + "performance_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg", + "demand_profile": [5.0] * 10, # Example: 10 time steps with 5 kg/time step demand + }, + }, + } + + plant_config = {"plant": {"plant_life": 30, "simulation": {"n_timesteps": 10, "dt": 3600}}} + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=np.arange(10)), + promotes=["*"], + ) + + prob.model.add_subsystem( + "demand_open_loop_storage_controller", + GenericDemandComponent( + plant_config=plant_config, tech_config=tech_config["technologies"]["load"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + # # Run the test + with subtests.test("Check output"): + assert prob.get_val("hydrogen_out") == pytest.approx( + [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 5.0, 5.0, 5.0, 5.0] + ) + + with subtests.test("Check curtailment"): + assert prob.get_val("unused_hydrogen_out") == pytest.approx( + [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0] + ) + + with subtests.test("Check missed load"): + assert prob.get_val("unmet_hydrogen_demand_out") == pytest.approx( + [5.0, 4.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0] + ) + + +@pytest.mark.unit +def test_flexible_demand_converter_controller(subtests, variable_h2_production_profile): + # Define the technology configuration + tech_config = {"technologies": {}} + + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + min_demand_kg = 2.5 + tech_config["technologies"]["load"] = { + "performance_model": { + "model": "FlexibleDemandComponent", + }, + "model_inputs": { + "performance_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg", + "rated_demand": end_use_rated_demand, + "demand_profile": end_use_rated_demand, # flat demand profile + "turndown_ratio": min_demand_kg / end_use_rated_demand, + "ramp_down_rate_fraction": ramp_down_rate_kg / end_use_rated_demand, + "ramp_up_rate_fraction": ramp_up_rate_kg / end_use_rated_demand, + "min_utilization": 0.1, + }, + }, + } + + plant_config = { + "plant": { + "plant_life": 30, + "simulation": {"n_timesteps": len(variable_h2_production_profile), "dt": 3600}, + } + } + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=variable_h2_production_profile), + promotes=["*"], + ) + + prob.model.add_subsystem( + "flexible_demand_open_loop_converter_controller", + FlexibleDemandComponent( + plant_config=plant_config, tech_config=tech_config["technologies"]["load"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + flexible_total_demand = prob.get_val("hydrogen_flexible_demand_profile", units="kg") + + rated_production = end_use_rated_demand * len(variable_h2_production_profile) + + with subtests.test("Check that total demand profile is less than rated"): + assert np.all(flexible_total_demand <= end_use_rated_demand) + + with subtests.test("Check curtailment"): # failed + assert np.sum(prob.get_val("unused_hydrogen_out", units="kg")) == pytest.approx(6.6) + + # check ramping constraints and turndown constraints are met + with subtests.test("Check turndown ratio constraint"): + assert np.all(flexible_total_demand >= min_demand_kg) + + ramping_down = np.where( + np.diff(flexible_total_demand) < 0, -1 * np.diff(flexible_total_demand), 0 + ) + ramping_up = np.where(np.diff(flexible_total_demand) > 0, np.diff(flexible_total_demand), 0) + + with subtests.test("Check ramping down constraint"): + assert np.max(ramping_down) == pytest.approx(ramp_down_rate_kg, rel=1e-6) + + with subtests.test("Check ramping up constraint"): # failed + assert np.max(ramping_up) == pytest.approx(ramp_up_rate_kg, rel=1e-6) + + with subtests.test("Check min utilization constraint"): + assert np.sum(flexible_total_demand) / rated_production >= 0.1 + + with subtests.test("Check min utilization value"): + flexible_demand_utilization = np.sum(flexible_total_demand) / rated_production + assert flexible_demand_utilization == pytest.approx(0.5822142857142857, rel=1e-6) + + # flexible_demand_profile[i] >= commodity_in[i] (as long as you are not curtailing + # any commodity in) + with subtests.test("Check that flexible demand is greater than hydrogen_in"): + hydrogen_available = variable_h2_production_profile - prob.get_val( + "unused_hydrogen_out", units="kg" + ) + assert np.all(flexible_total_demand >= hydrogen_available) + + with subtests.test("Check that remaining demand was calculated properly"): + unmet_demand = flexible_total_demand - hydrogen_available + assert np.all(unmet_demand == prob.get_val("unmet_hydrogen_demand_out", units="kg")) + + +@pytest.mark.regression +def test_flexible_demand_converter_controller_min_utilization( + subtests, variable_h2_production_profile +): + # give it a min utilization larger than utilization resulting from above test + + # Define the technology configuration + tech_config = {"technologies": {}} + + end_use_rated_demand = 10.0 # kg/h + ramp_up_rate_kg = 4.0 + ramp_down_rate_kg = 2.0 + min_demand_kg = 2.5 + tech_config["technologies"]["load"] = { + "performance_model": { + "model": "FlexibleDemandComponent", + }, + "model_inputs": { + "performance_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg", + "rated_demand": end_use_rated_demand, + "demand_profile": end_use_rated_demand, # flat demand profile + "turndown_ratio": min_demand_kg / end_use_rated_demand, + "ramp_down_rate_fraction": ramp_down_rate_kg / end_use_rated_demand, + "ramp_up_rate_fraction": ramp_up_rate_kg / end_use_rated_demand, + "min_utilization": 0.8, + }, + }, + } + + plant_config = { + "plant": { + "plant_life": 30, + "simulation": {"n_timesteps": len(variable_h2_production_profile), "dt": 3600}, + } + } + + # Set up OpenMDAO problem + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC", + subsys=om.IndepVarComp(name="hydrogen_in", val=variable_h2_production_profile), + promotes=["*"], + ) + + prob.model.add_subsystem( + "DemandOpenLoopStorageController", + FlexibleDemandComponent( + plant_config=plant_config, tech_config=tech_config["technologies"]["load"] + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + flexible_total_demand = prob.get_val("hydrogen_flexible_demand_profile", units="kg") + + rated_production = end_use_rated_demand * len(variable_h2_production_profile) + + flexible_demand_utilization = np.sum(flexible_total_demand) / rated_production + + with subtests.test("Check min utilization constraint"): + assert flexible_demand_utilization >= 0.8 + + with subtests.test("Check min utilization value"): + assert flexible_demand_utilization == pytest.approx(0.8010612244, rel=1e-6) diff --git a/h2integrate/finances/profast_base.py b/h2integrate/finances/profast_base.py index fe0e0ea4b..3bccca45d 100644 --- a/h2integrate/finances/profast_base.py +++ b/h2integrate/finances/profast_base.py @@ -447,7 +447,7 @@ class ProFastBase(om.ExplicitComponent): Reference: ProFAST Documentation: - https://www.nrel.gov/hydrogen/profast-access + https://www.nlr.gov/hydrogen/profast-access Attributes: diff --git a/h2integrate/finances/test/conftest.py b/h2integrate/finances/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/finances/test/conftest.py +++ b/h2integrate/finances/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/postprocess/test/conftest.py b/h2integrate/postprocess/test/conftest.py index 8d49ffb3d..fa8f250cf 100644 --- a/h2integrate/postprocess/test/conftest.py +++ b/h2integrate/postprocess/test/conftest.py @@ -1 +1,5 @@ -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/postprocess/test/test_mapping_tools.py b/h2integrate/postprocess/test/test_mapping_tools.py index 285e411b2..8da878ac7 100644 --- a/h2integrate/postprocess/test/test_mapping_tools.py +++ b/h2integrate/postprocess/test/test_mapping_tools.py @@ -1,15 +1,21 @@ import numpy as np import pandas as pd import pytest -import geopandas as gpd from shapely.geometry import Polygon -from h2integrate.postprocess.mapping import ( - auto_colorbar_limits, - validate_gdfs_are_same_crs, - auto_detect_lat_long_columns, - calculate_geodataframe_total_bounds, -) + +gis_extras = True +try: + import geopandas as gpd + + from h2integrate.postprocess.mapping import ( + auto_colorbar_limits, + validate_gdfs_are_same_crs, + auto_detect_lat_long_columns, + calculate_geodataframe_total_bounds, + ) +except ModuleNotFoundError: + gis_extras = False # Define geometries to be used in testing of GeoDataFrames @@ -32,6 +38,7 @@ @pytest.mark.unit +@pytest.mark.skipif(not gis_extras, reason="`gis` dependencies not installed") def test_calculate_geodataframe_total_bounds(subtests): with subtests.test("Check invalid argument type"): expected_msg = "Must provide at least one GeoDataFrame." @@ -98,6 +105,7 @@ def test_calculate_geodataframe_total_bounds(subtests): @pytest.mark.unit +@pytest.mark.skipif(not gis_extras, reason="`gis` dependencies not installed") def test_auto_detect_lat_long_columns(subtests): test_good_results_df1 = pd.DataFrame(columns=["index", "latitude", "longitude"]) test_good_results_df2 = pd.DataFrame(columns=["index", "lat", "long"]) @@ -163,6 +171,7 @@ def test_auto_detect_lat_long_columns(subtests): @pytest.mark.unit +@pytest.mark.skipif(not gis_extras, reason="`gis` dependencies not installed") def test_validate_gdfs_are_same_crs(subtests): gdf_1 = gpd.GeoDataFrame( data={"index": [0], "test1": ["larger_square"], "test2": [larger_square_coords]}, @@ -211,6 +220,7 @@ def test_validate_gdfs_are_same_crs(subtests): @pytest.mark.unit +@pytest.mark.skipif(not gis_extras, reason="`gis` dependencies not installed") def test_auto_colorbar_limits(subtests): with subtests.test("Test good value input types"): vmin, vmax = auto_colorbar_limits(values=pd.Series([0.62, 0.75, 0.93])) diff --git a/h2integrate/postprocess/test/test_sql_timeseries_to_csv.py b/h2integrate/postprocess/test/test_sql_timeseries_to_csv.py index dae722dc5..b23867f08 100644 --- a/h2integrate/postprocess/test/test_sql_timeseries_to_csv.py +++ b/h2integrate/postprocess/test/test_sql_timeseries_to_csv.py @@ -1,27 +1,27 @@ -import os from pathlib import Path import numpy as np import pytest from pytest import fixture -from h2integrate import EXAMPLE_DIR from h2integrate.core.h2integrate_model import H2IntegrateModel from h2integrate.core.inputs.validation import load_yaml, load_tech_yaml, load_driver_yaml from h2integrate.postprocess.sql_timeseries_to_csv import save_case_timeseries_as_csv @fixture -def configuration(temp_dir): - config = load_yaml(EXAMPLE_DIR / "02_texas_ammonia" / "02_texas_ammonia.yaml") +def configuration(temp_copy_of_example): + example_folder = temp_copy_of_example + config = load_yaml(example_folder / "02_texas_ammonia.yaml") - driver_config = load_driver_yaml(EXAMPLE_DIR / "02_texas_ammonia" / "driver_config.yaml") - driver_config["general"]["folder_output"] = str(temp_dir) + driver_config = load_driver_yaml(example_folder / "driver_config.yaml") + output_folder = example_folder / driver_config["general"]["folder_output"] + driver_config["general"]["folder_output"] = str(output_folder) config["driver_config"] = driver_config - tech_config = load_tech_yaml(EXAMPLE_DIR / "02_texas_ammonia" / "tech_config.yaml") + tech_config = load_tech_yaml(example_folder / "tech_config.yaml") tech_config["technologies"]["wind"]["model_inputs"]["performance_parameters"]["cache_dir"] = ( - str(temp_dir) + str(output_folder) ) config["technology_config"] = tech_config return config @@ -30,11 +30,13 @@ def configuration(temp_dir): @fixture def run_example_02_sql_fpath(configuration): # check if case file exists, if so, return the filepath - sql_fpath = EXAMPLE_DIR / "02_texas_ammonia" / "outputs" / "cases.sql" + output_folder = ( + Path(configuration["driver_config"]["general"]["folder_output"]).resolve().parent + ) + sql_fpath = output_folder / "cases.sql" if sql_fpath.exists(): return sql_fpath else: - os.chdir(EXAMPLE_DIR / "02_texas_ammonia") # Create a H2Integrate model h2i = H2IntegrateModel(configuration) @@ -50,6 +52,7 @@ def run_example_02_sql_fpath(configuration): @pytest.mark.unit +@pytest.mark.parametrize("example_folder,resource_example_folder", [("02_texas_ammonia", None)]) def test_save_csv_all_results(subtests, configuration, run_example_02_sql_fpath): expected_csv_fpath = ( Path(configuration["driver_config"]["general"]["folder_output"]) / "cases_Case-1.csv" @@ -57,7 +60,7 @@ def test_save_csv_all_results(subtests, configuration, run_example_02_sql_fpath) res = save_case_timeseries_as_csv(run_example_02_sql_fpath, save_to_file=True) with subtests.test("Check number of columns"): - assert len(res.columns.to_list()) == 34 + assert len(res.columns.to_list()) == 49 with subtests.test("Check number of rows"): assert len(res) == 8760 @@ -67,6 +70,7 @@ def test_save_csv_all_results(subtests, configuration, run_example_02_sql_fpath) @pytest.mark.unit +@pytest.mark.parametrize("example_folder,resource_example_folder", [("02_texas_ammonia", None)]) def test_make_df_from_varname_list(subtests, run_example_02_sql_fpath): vars_to_save = [ "electrolyzer.hydrogen_out", @@ -91,6 +95,7 @@ def test_make_df_from_varname_list(subtests, run_example_02_sql_fpath): @pytest.mark.unit +@pytest.mark.parametrize("example_folder,resource_example_folder", [("02_texas_ammonia", None)]) def test_make_df_from_varname_unit_dict(subtests, run_example_02_sql_fpath): vars_units_to_save = { "ammonia.hydrogen_in": "kg/h", @@ -116,6 +121,7 @@ def test_make_df_from_varname_unit_dict(subtests, run_example_02_sql_fpath): @pytest.mark.unit +@pytest.mark.parametrize("example_folder,resource_example_folder", [("02_texas_ammonia", None)]) def test_alternative_column_names(subtests, run_example_02_sql_fpath): vars_to_save = { "electrolyzer.hydrogen_out": {"alternative_name": "Electrolyzer Hydrogen Output"}, diff --git a/h2integrate/postprocess/test/test_sql_to_csv.py b/h2integrate/postprocess/test/test_sql_to_csv.py index 3fde7ae2e..19fb3a773 100644 --- a/h2integrate/postprocess/test/test_sql_to_csv.py +++ b/h2integrate/postprocess/test/test_sql_to_csv.py @@ -27,7 +27,7 @@ EXAMPLE_19_DIR = EXAMPLE_DIR / "19_simple_dispatch" -@fixture +@fixture(scope="function") def configuration(temp_dir): """Load and patch the example-19 configuration so outputs go to a temp dir.""" config = load_yaml(EXAMPLE_19_DIR / "wind_battery_dispatch.yaml") diff --git a/h2integrate/preprocess/test/conftest.py b/h2integrate/preprocess/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/preprocess/test/conftest.py +++ b/h2integrate/preprocess/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/resource/resource_base.py b/h2integrate/resource/resource_base.py index d0bbef18a..35fb46636 100644 --- a/h2integrate/resource/resource_base.py +++ b/h2integrate/resource/resource_base.py @@ -90,6 +90,7 @@ def setup(self): self.resource_data = None self.resource_site = [self.config.latitude, self.config.longitude] self.dt = self.options["plant_config"]["plant"]["simulation"]["dt"] + self.n_timesteps = self.options["plant_config"]["plant"]["simulation"]["n_timesteps"] self.add_input("latitude", self.config.latitude, units="deg") self.add_input("longitude", self.config.longitude, units="deg") @@ -178,6 +179,60 @@ def add_resource_start_end_times(self, data: dict): return data + def process_leap_day(self, data: dict): + """Process leap day data by optionally removing it and validating data length. + + Checks whether the provided resource data contains a leap day (February 29th). + If ``include_leap_day`` is set to False in the config and the data contains a + leap day, the leap day entries are removed. After processing, validates that + the length of the data matches the expected number of timesteps. + + Args: + data (dict): DataFrame-like dictionary of resource data containing + "Month" and "Day" columns. + Returns: + dict: Processed resource data with leap day handled according to configuration. + + Raises: + ValueError: If the length of the data does not match ``self.n_timesteps`` + after leap day processing. + """ + + # Check if data includes leap day + data_has_leap_day = int(data[data["Month"] == 2]["Day"].max()) == 29 + + # Remove leap day if needed + if not self.config.include_leap_day and data_has_leap_day: + # Get index of dataframe that includes leap day + leap_day_index = ( + data.reset_index(drop=False) + .set_index(keys=["Month", "Day"], drop=True) + .loc[(2, 29)]["index"] + .to_list() + ) + # Drop the leap day data from the dataframe + data = data.drop(index=leap_day_index) + + # Check if data is the same length as the number of timesteps + if len(data) != self.n_timesteps: + leap_day_msg = "" + if data_has_leap_day and len(data) > self.n_timesteps: + # Add extra detail to error message if error may be due to leap day + leap_day_msg = ( + "This may be because the resource data includes a leap day. ", + "To remove data from a leap day from resource data, please set " + "`include_leap_day` to False.", + ) + + msg = ( + f"{self.__class__.__name__}: Resource data is not the same length as n_timesteps. " + f"Resource data has length {len(data)}, n_timesteps is {self.n_timesteps}. " + f"{leap_day_msg}" + ) + raise ValueError(msg) + + return data + def create_filename(self, latitude, longitude): """Create default filename to save downloaded data to. Suggested filename formatting is: diff --git a/h2integrate/resource/solar/openmeteo_solar.py b/h2integrate/resource/solar/openmeteo_solar.py index 19adb7a40..fff03d7c9 100644 --- a/h2integrate/resource/solar/openmeteo_solar.py +++ b/h2integrate/resource/solar/openmeteo_solar.py @@ -21,6 +21,8 @@ class OpenMeteoHistoricalSolarAPIConfig(ResourceBaseAPIConfig): Args: resource_year (int): Year to use for resource data. Must been between 1940 the year before the current calendar year. (inclusive). + include_leap_day (bool, optional): If False, remove data from leap day if the + resource_year is a leap year. Otherwise, leave leap day data in. Defaults to False. resource_data (dict | object, optional): Dictionary of user-input resource data. Defaults to an empty dictionary. resource_dir (str | Path, optional): Folder to save resource files to or @@ -42,6 +44,7 @@ class OpenMeteoHistoricalSolarAPIConfig(ResourceBaseAPIConfig): """ resource_year: int = field(converter=int, validator=range_val(1940, datetime.now().year - 1)) + include_leap_day: bool = field(default=False) dataset_desc: str = "openmeteo_archive_solar" resource_type: str = "solar" valid_intervals: list[int] = field(factory=lambda: [60]) @@ -286,7 +289,10 @@ def load_data(self, fpath): data["Minute"] = time.minute data = data[data["Year"] == self.config.resource_year] - # TODO: throw error if data isn't proper length + + data = data.reset_index(drop=True) + + data = self.process_leap_day(data) data, data_units = self.format_timeseries_data(data) # make units for data in openmdao-compatible units diff --git a/h2integrate/resource/solar/test/conftest.py b/h2integrate/resource/solar/test/conftest.py index fb3a637e2..b8bb99aee 100644 --- a/h2integrate/resource/solar/test/conftest.py +++ b/h2integrate/resource/solar/test/conftest.py @@ -5,4 +5,8 @@ pytest_sessionfinish, ) -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/resource/solar/test/test_pvwatts_integration.py b/h2integrate/resource/solar/test/test_pvwatts_integration.py index 63b2e7433..7bd871ac6 100644 --- a/h2integrate/resource/solar/test/test_pvwatts_integration.py +++ b/h2integrate/resource/solar/test/test_pvwatts_integration.py @@ -72,6 +72,7 @@ def pysam_performance_model(): ("MeteosatPrimeMeridianSolarAPI", "solar", 41.9077, 12.4368, 2008, "nsrdb_msg_v4", 0, 2e-2, 410211.9419), # noqa: E501 pytest.param("MeteosatPrimeMeridianTMYSolarAPI", "solar", -27.3649, 152.67935, "tmy-2022", "himawari_tmy_v3", 0, 1e-3, 510709.633402, marks=pytest.mark.xfail(reason="Longitude mismatch")), # noqa: E501 ("OpenMeteoHistoricalSolarResource", "solar", 44.04218, -95.19757, 2023, "openmeteo_archive_solar", 0, 1e-3, 443558.17053592583), # noqa: E501 + ("OpenMeteoHistoricalSolarResource", "solar", -28.454864, 114.551749, 2024, "openmeteo_archive_solar", 8, 2e-2, 192656.49240723), # noqa: E501 ], ids=[ "Himawari7SolarAPI", @@ -80,6 +81,7 @@ def pysam_performance_model(): "MeteosatPrimeMeridianSolarAPI", "MeteosatPrimeMeridianTMYSolarAPI", "OpenMeteoHistoricalSolarResource", + "OpenMeteoHistoricalSolarResource-LeapYear", ] ) # fmt: on diff --git a/h2integrate/resource/solar/test/test_resource_models.py b/h2integrate/resource/solar/test/test_resource_models.py index aa997f26a..b064593fa 100644 --- a/h2integrate/resource/solar/test/test_resource_models.py +++ b/h2integrate/resource/solar/test/test_resource_models.py @@ -30,7 +30,7 @@ ] ) # fmt: on -def test_nrel_solar_resource_file_downloads( +def test_nlr_solar_resource_file_downloads( subtests, plant_simulation, site_config, @@ -197,3 +197,61 @@ def test_solar_resource_h2i_download( assert solar_data["start_time"] == f"{resource_year}/01/01 00:00:00 (+0000)" with subtests.test("Time step"): assert solar_data["dt"] == plant_simulation["simulation"]["dt"] + + + +# fmt: off +@pytest.mark.unit +@pytest.mark.parametrize( + "model,which,lat,lon,resource_year,model_name,timezone", + [("OpenMeteoHistoricalSolarResource", "solar", -28.454864, 114.551749, 2024, "openmeteo_archive_solar", 8)], # noqa: E501 + ids=["OpenMeteoHistoricalSolarResource-LeapYear"] +) +# fmt: on +def test_solar_resource_h2i_download_leap_year( + plant_simulation, + site_config, + subtests, + model, + which, + lat, + lon, + resource_year, + model_name, +): + plant_config = { + "site": site_config, + "plant": plant_simulation, + } + + prob = om.Problem() + comp = supported_models[model]( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["solar_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + solar_data = prob.get_val("resource.solar_resource_data") + name_expected = f"{lat}_{lon}_{resource_year}_{model_name}_60min_local_tz.csv" + with subtests.test("filepath for data was found where expected"): + assert Path(solar_data["filepath"]).exists() + assert Path(solar_data["filepath"]).name == name_expected + + with subtests.test("Data timezone"): + assert pytest.approx(solar_data["data_tz"], rel=1e-6) == 8 + with subtests.test("Site Elevation"): + assert pytest.approx(solar_data["elevation"], rel=1e-6) == 71 + + data_keys = [k for k, v in solar_data.items() if not isinstance(v, float | int | str)] + for k in data_keys: + with subtests.test(f"{k} resource data is 8760"): + assert len(solar_data[k]) == 8760 + + with subtests.test("There are 16 timeseries data keys"): + assert len(data_keys) == 16 + with subtests.test("Start time"): + assert solar_data["start_time"] == f"{resource_year}/01/01 00:00:00 (+0800)" + with subtests.test("Time step"): + assert solar_data["dt"] == plant_simulation["simulation"]["dt"] diff --git a/h2integrate/resource/test/conftest.py b/h2integrate/resource/test/conftest.py index 204de72db..5cd0ab0ea 100644 --- a/h2integrate/resource/test/conftest.py +++ b/h2integrate/resource/test/conftest.py @@ -4,7 +4,11 @@ from h2integrate.resource.utilities.nlr_developer_api_keys import set_nlr_key_dot_env -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) # docs fencepost start: DO NOT REMOVE diff --git a/h2integrate/resource/tidal.py b/h2integrate/resource/tidal.py new file mode 100644 index 000000000..723560724 --- /dev/null +++ b/h2integrate/resource/tidal.py @@ -0,0 +1,140 @@ +from pathlib import Path + +import pandas as pd +import openmdao.api as om +import PySAM.TidalFileReader as tidalfile +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig +from h2integrate.core.file_utils import get_path, find_file + + +@define(kw_only=True) +class TidalResourceConfig(BaseConfig): + """ + Args: + resource_dir (str | Path, optional): Folder to save resource files to or + load resource files from. Defaults to "". + resource_filename (str, optional): Filename to save resource data to or load + resource data from. Defaults to None. + """ + + resource_dir: Path | str | None = field(default=None) + resource_filename: Path | str = field(default="") + + +class TidalResource(om.ExplicitComponent): + """ + A resource component for processing tidal data from a CSV file. + + This component reads a CSV file containing tidal data, processes it, + and outputs hourly tidal velocity values for a full year (8760 hours). The input + file is expected to have specific formatting, including metadata and day and time, + and speed data columns with some error handling for missing or malformed data. + + Notes: + The tidal resource data should be in the format: + - Rows 1 and 2: Header rows with location info. + - Row 3: Column headings for time-series data + - (`Year`, `Month`, `Day`, `Hour`, `Minute`, `Speed`). + - Rows 4+: Data values: + - `Speed` (current speed) in meters/second. + + + Methods: + initialize(): + Declares the options for the component, including the required "filename" option. + setup(): + Defines the outputs for the component, in this case just the "tidal_velocity" array. + compute(inputs, outputs): + Reads, processes, and resamples the data from the input file. + Outputs the hourly tidal velocity values. + + Raises: + FileNotFoundError: If the specified file does not exist. + ValueError: If the file does not contain sufficient data or the required + speed column is not found. + """ + + def initialize(self): + self.options.declare("plant_config", types=dict) + self.options.declare("resource_config", types=dict) + self.options.declare("driver_config", types=dict) + + def setup(self): + # Define inputs and outputs + self.config = TidalResourceConfig.from_dict( + self.options["resource_config"], + additional_cls_name=self.__class__.__name__, + ) + site_config = self.options["plant_config"]["site"] + + self.add_input("latitude", site_config.get("longitude"), units="deg") + self.add_input("longitude", site_config.get("longitude"), units="deg") + self.add_output("tidal_velocity", shape=8760, val=0.0, units="m/s") + + def compute(self, inputs, outputs): + # Read the CSV file + # Check if the file exists + + resource_dir = get_path(self.config.resource_dir) + filename = find_file(self.config.resource_filename, resource_dir) + + # filename = resource_dir / self.config.resource_filename + + tidalfile_model = tidalfile.new() + # Load resource file + tidalfile_model.WeatherReader.tidal_resource_filename = str(filename) + tidalfile_model.WeatherReader.tidal_resource_model_choice = 1 # Time-series=1 JPD=0 + + # Read in resource file, output time series arrays to pass to wave performance module + tidalfile_model.execute() + hours = tidalfile_model.Outputs.hour + + if len(hours) < 8760: + # code that makes/modifies data_df + # Set up dataframe for data manipulation + df = pd.DataFrame() + df["year"] = tidalfile_model.Outputs.year + df["month"] = tidalfile_model.Outputs.month + df["day"] = tidalfile_model.Outputs.day + df["hour"] = tidalfile_model.Outputs.hour + df["minute"] = tidalfile_model.Outputs.minute + df["date_time"] = pd.to_datetime( + { + "year": df.year, + "month": df.month, + "day": df.day, + "hour": df.hour, + "minute": df.minute, + } + ) + df = df.drop(["year", "month", "day", "hour", "minute"], axis=1) + df = df.set_index(["date_time"]) + df["tidal_velocity"] = tidalfile_model.Outputs.tidal_velocity + + # Resample data and linearly interpolate to hourly data + data_df = df.resample("h").mean() + data_df = data_df.interpolate(method="linear") + + # If data cannot interpolate last hours + if len(data_df["tidal_velocity"]) < 8760: + last_hour = data_df.index.max() + missing_hours = 8760 - len(data_df["tidal_velocity"]) + + missing_time = pd.date_range( + last_hour + pd.Timedelta(hours=1), periods=missing_hours, freq="h" + ) + missing_rows = pd.DataFrame(index=missing_time, columns=df.columns) + data_df = pd.concat([data_df, missing_rows]).sort_index() + data_df = data_df.ffill() # forward fill + + data_df = data_df.reset_index() + outputs["tidal_velocity"] = data_df["tidal_velocity"] + return + + if len(hours) == 8760: + outputs["tidal_velocity"] = tidalfile_model.Outputs.tidal_velocity + return + + raise ValueError("Resource time-series cannot be subhourly.") diff --git a/h2integrate/resource/utilities/test/conftest.py b/h2integrate/resource/utilities/test/conftest.py index 6a746b5c5..a7b6c2f5e 100644 --- a/h2integrate/resource/utilities/test/conftest.py +++ b/h2integrate/resource/utilities/test/conftest.py @@ -2,7 +2,11 @@ from hopp import TEST_ENV_VAR -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/resource/wind/openmeteo_wind.py b/h2integrate/resource/wind/openmeteo_wind.py index 18cee50fa..a3b684528 100644 --- a/h2integrate/resource/wind/openmeteo_wind.py +++ b/h2integrate/resource/wind/openmeteo_wind.py @@ -22,6 +22,8 @@ class OpenMeteoHistoricalWindAPIConfig(ResourceBaseAPIConfig): Args: resource_year (int): Year to use for resource data. Must been between 1940 the year before the current calendar year. (inclusive). + include_leap_day (bool, optional): If False, remove data from leap day if the + resource_year is a leap year. Otherwise, leave leap day data in. Defaults to False. verify_download (bool, optional): Whether to verify the API download from the url. If an `openmeteo_requests.Client.OpenMeteoRequestsError` error is thrown, try setting to True. Defaults to False. @@ -37,6 +39,7 @@ class OpenMeteoHistoricalWindAPIConfig(ResourceBaseAPIConfig): """ resource_year: int = field(converter=int, validator=range_val(1940, datetime.now().year - 1)) + include_leap_day: bool = field(default=False) dataset_desc: str = "openmeteo_archive" resource_type: str = "wind" valid_intervals: list[int] = field(factory=lambda: [60]) @@ -279,7 +282,10 @@ def load_data(self, fpath): data["Minute"] = time.minute data = data[data["Year"] == self.config.resource_year] - # TODO: throw error if data isn't proper length + + data = data.reset_index(drop=True) + + data = self.process_leap_day(data) data, data_units = self.format_timeseries_data(data) # make units for data in openmdao-compatible units @@ -325,7 +331,7 @@ def format_timeseries_data(self, data): if "is_day" in c: data_rename_mapper.update({c: "is_day"}) - data_units.update({"is_day": "percent"}) + data_units.update({"is_day": "unitless"}) if "surface" in c: new_c += "_0m" diff --git a/h2integrate/resource/wind/test/conftest.py b/h2integrate/resource/wind/test/conftest.py index fb3a637e2..b8bb99aee 100644 --- a/h2integrate/resource/wind/test/conftest.py +++ b/h2integrate/resource/wind/test/conftest.py @@ -5,4 +5,8 @@ pytest_sessionfinish, ) -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/resource/wind/test/test_openmeteo_wind_api.py b/h2integrate/resource/wind/test/test_openmeteo_wind_api.py index 63995bd8f..b0d289998 100644 --- a/h2integrate/resource/wind/test/test_openmeteo_wind_api.py +++ b/h2integrate/resource/wind/test/test_openmeteo_wind_api.py @@ -127,3 +127,63 @@ def test_wind_resource_h2i_download( assert wind_data["start_time"] == f"{resource_year}/01/01 00:00:00 (-0600)" with subtests.test("Time step"): assert wind_data["dt"] == plant_simulation["simulation"]["dt"] + + + +# fmt: off +@pytest.mark.unit +@pytest.mark.parametrize( + "model,which,lat,lon,resource_year,model_name,timezone,elevation", + [("OpenMeteoHistoricalWindResource", "wind", -28.454864, 114.551749, 2024, "openmeteo_archive", 8, 71.0)], # noqa: E501 + ids=["Non-UTC Leap Year"], +) +# fmt: on +def test_wind_resource_h2i_download_leap_year( + plant_simulation, + site_config, + subtests, + model, + lat, + lon, + resource_year, + model_name, + timezone, + elevation, +): + plant_config = { + "site": site_config, + "plant": plant_simulation, + } + + prob = om.Problem() + comp = supported_models[model]( + plant_config=plant_config, + resource_config=plant_config["site"]["resources"]["wind_resource"]["resource_parameters"], + driver_config={}, + ) + prob.model.add_subsystem("resource", comp) + prob.setup() + prob.run_model() + wind_data = prob.get_val("resource.wind_resource_data") + + expected_fn = f"{lat}_{lon}_{resource_year}_{model_name}_60min_local_tz.csv" + with subtests.test("filepath for data was found where expected"): + assert Path(wind_data["filepath"]).exists() + assert Path(wind_data["filepath"]).name == expected_fn + + with subtests.test("Data timezone"): + assert pytest.approx(wind_data["data_tz"], rel=1e-6) == timezone + with subtests.test("Site Elevation"): + assert pytest.approx(wind_data["elevation"], rel=1e-6) == elevation + + data_keys = [k for k, v in wind_data.items() if not isinstance(v, float | int | str)] + for k in data_keys: + with subtests.test(f"{k} resource data is 8760"): + assert len(wind_data[k]) == 8760 + + with subtests.test("theres 14 timeseries data keys"): + assert len(data_keys) == 14 + with subtests.test("Start time"): + assert wind_data["start_time"] == f"{resource_year}/01/01 00:00:00 (+0800)" + with subtests.test("Time step"): + assert wind_data["dt"] == plant_simulation["simulation"]["dt"] diff --git a/h2integrate/storage/battery/atb_battery_cost.py b/h2integrate/storage/battery/atb_battery_cost.py index 1e5f77e49..f63e943fe 100644 --- a/h2integrate/storage/battery/atb_battery_cost.py +++ b/h2integrate/storage/battery/atb_battery_cost.py @@ -11,10 +11,10 @@ class ATBBatteryCostConfig(CostModelBaseConfig): """Configuration class for the ATBBatteryCostModel with costs based on storage capacity and charge rate. More information on ATB methodology and representative battery technologies can be found - `here `_ + `here `_ Reference cost values can be found on the `Utility-Scale Battery Storage`, `Commercial Battery Storage`, and `Residential Battery Storage` sheets of the - `NREL ATB workbook `_. + `NLR ATB workbook `_. Attributes: energy_capex (float|int): battery energy capital cost in $/kWh @@ -27,6 +27,8 @@ class ATBBatteryCostConfig(CostModelBaseConfig): per time step, e.g., "kW/time step"). commodity_rate_units (str): Units of the electricity resource used to define the max_capacity and max_charge_rate. Must have a base of Watts ('W'). + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., kW*h or kg). If not provided, defaults to commodity_rate_units*h. """ energy_capex: float | int = field(validator=gte_zero) @@ -35,6 +37,11 @@ class ATBBatteryCostConfig(CostModelBaseConfig): max_capacity: float = field() max_charge_rate: float = field() commodity_rate_units: str = field(validator=contains(["W", "kW", "MW", "GW", "TW"])) + commodity_amount_units: str = field(default=None) + + def __attrs_post_init__(self): + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" class ATBBatteryCostModel(CostModelBaseClass): @@ -54,6 +61,11 @@ class ATBBatteryCostModel(CostModelBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = ATBBatteryCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), @@ -66,13 +78,13 @@ def setup(self): self.add_input( "max_charge_rate", val=self.config.max_charge_rate, - units=f"{self.config.commodity_rate_units}", + units=self.config.commodity_rate_units, desc="Battery charge/discharge rate", ) self.add_input( - "max_capacity", + "storage_capacity", val=self.config.max_capacity, - units=f"{self.config.commodity_rate_units}*h", + units=self.config.commodity_amount_units, desc="Battery storage capacity", ) @@ -81,7 +93,7 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): # convert the input capacity to units of kW*h max_capacity_kWh = units.convert_units( - inputs["max_capacity"], f"{self.config.commodity_rate_units}*h", "kW*h" + inputs["storage_capacity"], self.config.commodity_amount_units, "kW*h" ) # convert the input charge rate to units of kW diff --git a/h2integrate/storage/battery/battery_baseclass.py b/h2integrate/storage/battery/battery_baseclass.py deleted file mode 100644 index 29ad18e6e..000000000 --- a/h2integrate/storage/battery/battery_baseclass.py +++ /dev/null @@ -1,45 +0,0 @@ -from h2integrate.core.model_baseclasses import PerformanceModelBaseClass - - -class BatteryPerformanceBaseClass(PerformanceModelBaseClass): - def initialize(self): - super().initialize() - self.commodity = "electricity" - self.commodity_rate_units = "kW" - self.commodity_amount_units = "kW*h" - - def setup(self): - super().setup() - - self.add_input( - "electricity_in", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Power input to Battery", - ) - - self.add_output( - "SOC", - val=0.0, - shape=self.n_timesteps, - units="percent", - desc="State of charge of Battery", - ) - - self.add_output( - "battery_electricity", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Electricity output from Battery only", - ) - - def compute(self, inputs, outputs): - """ - Computation for the OM component. - - For a template class this is not implemented and raises an error. - """ - - raise NotImplementedError("This method should be implemented in a subclass.") diff --git a/h2integrate/storage/battery/pysam_battery.py b/h2integrate/storage/battery/pysam_battery.py index 310d1df89..8e64b4b2d 100644 --- a/h2integrate/storage/battery/pysam_battery.py +++ b/h2integrate/storage/battery/pysam_battery.py @@ -3,13 +3,16 @@ import PySAM.BatteryStateful as BatteryStateful from attrs import field, define -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.utilities import merge_shared_inputs from h2integrate.core.validators import gt_zero, contains, range_val -from h2integrate.storage.battery.battery_baseclass import BatteryPerformanceBaseClass +from h2integrate.storage.storage_baseclass import ( + StoragePerformanceBase, + StoragePerformanceBaseConfig, +) @define(kw_only=True) -class PySAMBatteryPerformanceModelConfig(BaseConfig): +class PySAMBatteryPerformanceModelConfig(StoragePerformanceBaseConfig): """Configuration class for battery performance models. This class defines configuration parameters for simulating battery @@ -18,35 +21,27 @@ class PySAMBatteryPerformanceModelConfig(BaseConfig): and reference module characteristics. Attributes: - max_capacity (float): - Maximum battery energy capacity in kilowatt-hours (kWh). + max_capacity (float): Maximum battery energy capacity in kilowatt-hours (kWh). Must be greater than zero. - max_charge_rate (float): - Rated power capacity of the battery in kilowatts (kW). + max_charge_rate (float): Rated power capacity of the battery in kilowatts (kW). Must be greater than zero. - + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. chemistry (str): Battery chemistry option. "LDES" has not been brought over from HOPP yet. Supported values include: - PySAM: ``"LFPGraphite"``, ``"LMOLTO"``, ``"LeadAcid"``, ``"NMCGraphite"`` - min_charge_fraction (float): - Minimum allowable state of charge as a fraction (0 to 1). - max_charge_fraction (float): - Maximum allowable state of charge as a fraction (0 to 1). - init_charge_fraction (float): - Initial state of charge as a fraction (0 to 1). - n_control_window (int, optional): - Number of timesteps in the control window. Defaults to 24. - control_variable (str): - Control mode for the PySAM battery, either ``"input_power"`` + min_soc_fraction (float): Minimum allowable state of charge as a fraction (0 to 1). + max_soc_fraction (float): Maximum allowable state of charge as a fraction (0 to 1). + init_soc_fraction (float): Initial state of charge as a fraction (0 to 1). + control_variable (str): Control mode for the PySAM battery, either ``"input_power"`` or ``"input_current"``. - ref_module_capacity (int | float, optional): - Reference module capacity in kilowatt-hours (kWh). + ref_module_capacity (int | float, optional): Reference module capacity in kWh. Defaults to 400. - ref_module_surface_area (int | float, optional): - Reference module surface area in square meters (m²). + ref_module_surface_area (int | float, optional): Reference module surface area in m². Defaults to 30. Cp (int | float, optional): Battery specific heat capacity [J/kg*K]. Defaults to 900. @@ -62,10 +57,8 @@ class PySAMBatteryPerformanceModelConfig(BaseConfig): chemistry: str = field( validator=contains(["LFPGraphite", "LMOLTO", "LeadAcid", "NMCGraphite"]), ) - min_charge_fraction: float = field(validator=range_val(0, 1)) - max_charge_fraction: float = field(validator=range_val(0, 1)) - init_charge_fraction: float = field(validator=range_val(0, 1)) - n_control_window: int = field(validator=gt_zero, default=24) + + init_soc_fraction: float = field(validator=range_val(0, 1)) control_variable: str = field( default="input_power", validator=contains(["input_power", "input_current"]) ) @@ -76,10 +69,10 @@ class PySAMBatteryPerformanceModelConfig(BaseConfig): resistance: int | float = field(default=0.001) -class PySAMBatteryPerformanceModel(BatteryPerformanceBaseClass): +class PySAMBatteryPerformanceModel(StoragePerformanceBase): """OpenMDAO component wrapping the PySAM Battery Performance model. - This class integrates the NREL PySAM ``BatteryStateful`` model into + This class integrates the NLR PySAM ``BatteryStateful`` model into an OpenMDAO component. It provides inputs and outputs for battery capacity, charge/discharge power, state of charge, and unmet or unused demand. @@ -88,70 +81,31 @@ class PySAMBatteryPerformanceModel(BatteryPerformanceBaseClass): bounds set by the user. It may exceed the bounds by up to 5% SOC. Attributes: - config (PySAMBatteryPerformanceModelConfig): - Configuration parameters for the battery performance model. - system_model (``BatteryStateful``): - Instance of the PySAM BatteryStateful model, initialized with - the selected chemistry and configuration parameters. - outputs (BatteryOutputs): - Container for simulation outputs such as SOC, chargeable/dischargeable - power, unmet demand, and unused commodities. - unmet_demand (float): - Tracks unmet demand during simulation (kW). - unused_commodity (float): - Tracks unused commodity during simulation (kW). - - Inputs: - max_charge_rate (float): - Battery charge rate in kilowatts per hour (kW). - storage_capacity (float): - Total energy storage capacity in kilowatt-hours (kWh). - electricity_demand (ndarray): - Power demand time series (kW). - electricity_in (ndarray): - Commanded input electricity (kW), typically from dispatch. - - Outputs: - unmet_demand_out (ndarray): - Remaining unmet demand after discharge (kW). - unused_commodity_out (ndarray): - Unused energy not absorbed by the battery (kW). - electricity_out (ndarray): - Dispatched electricity to meet demand (kW), including electricity from - electricity_in that was never used to charge the battery and - battery_electricity. - SOC (ndarray): - Battery state of charge (%). - battery_electricity (ndarray): - Electricity output from the battery model (kW). + system_model (``BatteryStateful``): Instance of the PySAM BatteryStateful model, initialized + with the selected chemistry and configuration parameters. + Methods: - setup(): - Defines model inputs, outputs, configuration, and connections - to plant-level dispatch (if applicable). compute(inputs, outputs, discrete_inputs, discrete_outputs): Runs the PySAM BatteryStateful model for a simulation timestep, updating outputs such as SOC, charge/discharge limits, unmet demand, and unused commodities. - simulate(electricity_in, electricity_demand, time_step_duration, control_variable, - sim_start_index=0): - Simulates the battery behavior across timesteps using either - input power or input current as control. This method is similar to what is - provided in typical compute methods in H2Integrate for running models, but - needs to be a separate method here to allow the dispatch function to call - and manage the performance model. _set_control_mode(control_mode=1.0, input_power=0.0, input_current=0.0, control_variable="input_power"): Sets the battery control mode (power or current). - - Notes: - - Default timestep is 1 hour (``dt=1.0``). - - State of charge (SOC) bounds are set using the configuration's - ``min_charge_fraction`` and ``max_charge_fraction``. - - If a Pyomo dispatch solver is provided, the battery will simulate - dispatch decisions using solver inputs. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def initialize(self): + super().initialize() + self.commodity = "electricity" + self.commodity_rate_units = "kW" + self.commodity_amount_units = "kW*h" + def setup(self): """Set up the PySAM Battery Performance model in OpenMDAO. @@ -166,99 +120,17 @@ def setup(self): additional_cls_name=self.__class__.__name__, ) - self.add_input( - "max_charge_rate", - val=self.config.max_charge_rate, - units="kW", - desc="Battery charge rate", - ) - - self.add_input( - "storage_capacity", - val=self.config.max_capacity, - units="kW*h", - desc="Battery storage capacity", - ) - super().setup() - self.add_input( - "electricity_demand", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Power demand", - ) - - self.add_output( - "unmet_electricity_demand_out", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Unmet power demand", - ) - - self.add_output( - "unused_electricity_out", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Unused generated commodity", - ) - - self.add_output( - "battery_electricity_discharge", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Electricity discharged from battery", - ) - - self.add_output( - "battery_electricity_charge", - val=0.0, - shape=self.n_timesteps, - units="kW", - desc="Electricity to charge battery", - ) - # Initialize the PySAM BatteryStateful model with defaults self.system_model = BatteryStateful.default(self.config.chemistry) - self.dt_hr = int(self.options["plant_config"]["plant"]["simulation"]["dt"]) / ( - 60**2 - ) # convert from seconds to hours - - # create inputs for pyomo control model - if "tech_to_dispatch_connections" in self.options["plant_config"]: - # get technology group name - # TODO: The split below seems brittle - self.tech_group_name = self.pathname.split(".") - for _source_tech, intended_dispatch_tech in self.options["plant_config"][ - "tech_to_dispatch_connections" - ]: - if any(intended_dispatch_tech in name for name in self.tech_group_name): - self.add_discrete_input("pyomo_dispatch_solver", val=dummy_function) - break - def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): """Run the PySAM Battery model for one simulation step. Configures the battery stateful model parameters (SOC limits, timestep, thermal properties, etc.), executes the simulation, and stores the results in OpenMDAO outputs. - - Args: - inputs (dict): - Continuous input values (e.g., electricity_in, electricity_demand) or - battery design parameters. - outputs (dict): - Dictionary where model outputs (SOC, battery_discharge, unmet demand, etc.) - are written. - discrete_inputs (dict): - Discrete inputs such as control mode or Pyomo solver. - discrete_outputs (dict): - Discrete outputs (unused in this component). """ # Size the battery based on inputs -> method brought from HOPP @@ -286,9 +158,9 @@ def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): self.system_model.value("input_current", 0.0) self.system_model.value("dt_hr", self.dt_hr) - self.system_model.value("minimum_SOC", self.config.min_charge_fraction * 100) - self.system_model.value("maximum_SOC", self.config.max_charge_fraction * 100) - self.system_model.value("initial_SOC", self.config.init_charge_fraction * 100) + self.system_model.value("minimum_SOC", self.config.min_soc_fraction * 100) + self.system_model.value("maximum_SOC", self.config.max_soc_fraction * 100) + self.system_model.value("initial_SOC", self.config.init_soc_fraction * 100) # Setup PySAM battery model using PySAM method self.system_model.setup() @@ -298,81 +170,13 @@ def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): self.system_model.value("input_power", 0.0) self.system_model.execute(0) - if "pyomo_dispatch_solver" in discrete_inputs: - # Simulate the battery with provided dispatch inputs - dispatch = discrete_inputs["pyomo_dispatch_solver"] - kwargs = { - "charge_rate": inputs["max_charge_rate"][0], - "discharge_rate": inputs["max_charge_rate"][0], - "storage_capacity": inputs["storage_capacity"][0], - "control_variable": self.config.control_variable, - } - ( - total_power_out, - battery_power, - unmet_demand, - unused_commodity, - soc, - ) = dispatch(self.simulate, kwargs, inputs) - - battery_power = np.array(battery_power) - - else: - # Simulate the battery with provided inputs and no controller. - # This essentially asks for discharge when demand exceeds input - # and requests charge when input exceeds demand - - # update the control window to be the number of timesteps in the simulation - self.config.n_control_window = self.n_timesteps - - # estimate required dispatch commands - pseudo_commands = inputs["electricity_demand"] - inputs["electricity_in"] - - battery_power, soc = self.simulate( - storage_dispatch_commands=pseudo_commands, - charge_rate=inputs["max_charge_rate"][0], - discharge_rate=inputs["max_charge_rate"][0], - storage_capacity=inputs["storage_capacity"][0], - control_variable=self.config.control_variable, - ) - - # battery_power is positive when the battery is discharged - # and negative when the battery is charged - battery_power = np.array(battery_power) - - # calculate combined power out from inflow source and battery (note: battery_power - # is negative when charging) - combined_power_out = inputs["electricity_in"] + np.array(battery_power) - - # find the total power out to meet demand - total_power_out = np.minimum(inputs["electricity_demand"], combined_power_out) - - # determine how much of the inflow electricity was unused - unused_commodity = np.maximum(0, combined_power_out - inputs["electricity_demand"]) - - # determine how much demand was not met - unmet_demand = np.maximum(0, inputs["electricity_demand"] - combined_power_out) - - outputs["unmet_electricity_demand_out"] = unmet_demand - outputs["unused_electricity_out"] = unused_commodity - outputs["battery_electricity"] = battery_power - - # separate out the charge and discharge profiles from battery_power - # battery_electricity_charge is always <= zero, battery_electricity_discharge is always >=0 - outputs["battery_electricity_charge"] = np.where(battery_power < 0, battery_power, 0) - outputs["battery_electricity_discharge"] = np.where(battery_power > 0, battery_power, 0) - - outputs["electricity_out"] = total_power_out - outputs["SOC"] = soc - - outputs["rated_electricity_production"] = inputs["max_charge_rate"] - - outputs["total_electricity_produced"] = np.sum(total_power_out) - outputs["annual_electricity_produced"] = outputs["total_electricity_produced"] * ( - 1 / self.fraction_of_year_simulated - ) - outputs["capacity_factor"] = outputs["total_electricity_produced"] / ( - outputs["rated_electricity_production"] * self.n_timesteps + outputs = self.run_storage( + inputs["max_charge_rate"][0], + inputs["max_charge_rate"][0], + inputs["storage_capacity"][0], + inputs, + outputs, + discrete_inputs, ) def simulate( @@ -381,7 +185,6 @@ def simulate( charge_rate: float, discharge_rate: float, storage_capacity: float, - control_variable: str, sim_start_index: int = 0, ): """Run the PySAM BatteryStateful model over a control window. @@ -418,8 +221,9 @@ def simulate( self.system_model.value("dt_hr", self.dt_hr) # initialize outputs - storage_power_out_timesteps = np.zeros(self.config.n_control_window) - soc_timesteps = np.zeros(self.config.n_control_window) + n = len(storage_dispatch_commands) + storage_power_out_timesteps = np.zeros(n) + soc_timesteps = np.zeros(n) # get constant battery parameters needed during all time steps soc_max = self.system_model.value("maximum_SOC") / 100.0 @@ -466,7 +270,7 @@ def simulate( cmd = actual_discharge # Set the input variable to the desired value - self.system_model.value(control_variable, cmd) + self.system_model.value(self.config.control_variable, cmd) # Simulate the PySAM BatteryStateful model self.system_model.execute(0) @@ -509,8 +313,3 @@ def _set_control_mode( self.system_model.value("input_current", input_current) # Either `input_power` or `input_current`; need to adjust `control_mode` above self.control_variable = control_variable - - -def dummy_function(): - # this function is required for initializing the pyomo control input and nothing else - pass diff --git a/h2integrate/storage/battery/test/conftest.py b/h2integrate/storage/battery/test/conftest.py index 1003a1f0a..349aa222a 100644 --- a/h2integrate/storage/battery/test/conftest.py +++ b/h2integrate/storage/battery/test/conftest.py @@ -1,3 +1,7 @@ from h2integrate.storage.test.conftest import plant_config # noqa: F401 -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) diff --git a/h2integrate/storage/battery/test/inputs/tech_config.yaml b/h2integrate/storage/battery/test/inputs/tech_config.yaml index 8d27fa7b2..a80912b29 100644 --- a/h2integrate/storage/battery/test/inputs/tech_config.yaml +++ b/h2integrate/storage/battery/test/inputs/tech_config.yaml @@ -12,14 +12,16 @@ technologies: shared_parameters: max_charge_rate: 50000 max_capacity: 200000 - n_control_window: 24 dt: 1.0 n_timesteps: 24 - init_charge_fraction: 0.5 - max_charge_fraction: 0.9 - min_charge_fraction: 0.1 + init_soc_fraction: 0.5 + max_soc_fraction: 0.9 + min_soc_fraction: 0.1 performance_parameters: chemistry: LFPGraphite + demand_profile: 0.0 dispatch_rule_parameters: commodity_name: electricity commodity_storage_units: kW + control_parameters: + n_control_window: 24 diff --git a/h2integrate/storage/battery/test/test_battery_cost.py b/h2integrate/storage/battery/test/test_battery_cost.py index 9e7520b82..0ffa3c0a2 100644 --- a/h2integrate/storage/battery/test/test_battery_cost.py +++ b/h2integrate/storage/battery/test/test_battery_cost.py @@ -4,7 +4,7 @@ from pytest import fixture from h2integrate.storage.battery.atb_battery_cost import ATBBatteryCostModel -from h2integrate.control.control_strategies.storage.demand_openloop_controller import ( +from h2integrate.control.control_strategies.storage.demand_openloop_storage_controller import ( DemandOpenLoopStorageController, ) @@ -17,7 +17,7 @@ def electricity_profile_kW(): @fixture def battery_tech_config_kW(): battery_inputs = { - "performance_model": {"model": "SimpleGenericStorage"}, + "performance_model": {"model": "StoragePerformanceModel"}, "cost_model": {"model": "ATBBatteryCostModel"}, "control_strategy": {"model": "DemandOpenLoopStorageController"}, "model_inputs": { @@ -28,9 +28,9 @@ def battery_tech_config_kW(): "max_capacity": 30000.0, }, "control_parameters": { - "max_charge_fraction": 1.0, - "min_charge_fraction": 0.1, - "init_charge_fraction": 0.25, + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.1, + "init_soc_fraction": 0.25, "max_discharge_rate": 5000.0, "charge_efficiency": 1.0, "discharge_efficiency": 1.0, @@ -50,7 +50,7 @@ def battery_tech_config_kW(): @fixture def battery_tech_config_MW(): battery_inputs = { - "performance_model": {"model": "SimpleGenericStorage"}, + "performance_model": {"model": "StoragePerformanceModel"}, "cost_model": {"model": "ATBBatteryCostModel"}, "control_strategy": {"model": "DemandOpenLoopStorageController"}, "model_inputs": { @@ -61,9 +61,9 @@ def battery_tech_config_MW(): "max_capacity": 30.0, }, "control_parameters": { - "max_charge_fraction": 1.0, - "min_charge_fraction": 0.1, - "init_charge_fraction": 0.25, + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.1, + "init_soc_fraction": 0.25, "max_discharge_rate": 5.0, "charge_efficiency": 1.0, "discharge_efficiency": 1.0, diff --git a/h2integrate/storage/battery/test/test_pysam_battery.py b/h2integrate/storage/battery/test/test_pysam_battery.py index 96f4b6369..815fcd260 100644 --- a/h2integrate/storage/battery/test/test_pysam_battery.py +++ b/h2integrate/storage/battery/test/test_pysam_battery.py @@ -28,7 +28,7 @@ def test_pysam_battery_performance_model_without_controller(plant_config, subtes # Set up the OpenMDAO problem prob = om.Problem() - n_control_window = tech_config["technologies"]["battery"]["model_inputs"]["shared_parameters"][ + n_control_window = tech_config["technologies"]["battery"]["model_inputs"]["control_parameters"][ "n_control_window" ] @@ -56,6 +56,14 @@ def test_pysam_battery_performance_model_without_controller(plant_config, subtes promotes=["*"], ) + prob.model.add_subsystem( + name="IVC4", + subsys=om.IndepVarComp( + name="electricity_set_point", val=electricity_demand - electricity_in, units="kW" + ), + promotes=["*"], + ) + prob.model.add_subsystem( "pysam_battery", PySAMBatteryPerformanceModel( @@ -159,7 +167,7 @@ def test_pysam_battery_performance_model_without_controller(plant_config, subtes with subtests.test("expected_battery_power"): np.testing.assert_allclose( - prob.get_val("battery_electricity", units="kW"), + prob.get_val("electricity_out", units="kW"), expected_battery_power, rtol=1e-2, ) @@ -170,15 +178,21 @@ def test_pysam_battery_performance_model_without_controller(plant_config, subtes ) with subtests.test("expected_battery_unmet_demand"): + combined_out = electricity_in + prob.get_val("electricity_out", units="kW") + combined_commodity_to_demand = np.clip(combined_out, a_min=0, a_max=electricity_demand) + unmet_demand = electricity_demand - combined_commodity_to_demand np.testing.assert_allclose( - prob.get_val("unmet_electricity_demand_out", units="kW"), + unmet_demand, expected_unment_demand, rtol=1e-2, ) with subtests.test("expected_battery_unused_commodity"): + unused_electricity = np.clip( + electricity_in - combined_commodity_to_demand, a_min=0, a_max=None + ) np.testing.assert_allclose( - prob.get_val("unused_electricity_out", units="kW"), + unused_electricity, expected_unused_electricity, rtol=1e-2, ) @@ -191,9 +205,10 @@ def test_battery_config(subtests): "max_capacity": batt_kw * 4, "max_charge_rate": batt_kw, "chemistry": "LFPGraphite", - "init_charge_fraction": 0.1, - "max_charge_fraction": 0.9, - "min_charge_fraction": 0.1, + "init_soc_fraction": 0.1, + "max_soc_fraction": 0.9, + "min_soc_fraction": 0.1, + "demand_profile": 0.0, } config = PySAMBatteryPerformanceModelConfig.from_dict(config_data) @@ -204,20 +219,17 @@ def test_battery_config(subtests): assert config.max_capacity == batt_kw * 4 with subtests.test("with minimal params minimum_SOC"): assert ( - config.min_charge_fraction == 0.1 + config.min_soc_fraction == 0.1 ) # Decimal percent as compared to test_battery.py in HOPP 10% with subtests.test("with minimal params maximum_SOC"): assert ( - config.max_charge_fraction == 0.9 + config.max_soc_fraction == 0.9 ) # Decimal percent as compared to test_battery.py in HOPP 90% with subtests.test("with minimal params initial_SOC"): assert ( - config.init_charge_fraction == 0.1 + config.init_soc_fraction == 0.1 ) # Decimal percent as compared to test_battery.py in HOPP 10% - with subtests.test("with minimal params n_control_window"): - assert config.n_control_window == 24 - with subtests.test("with invalid capacity"): with pytest.raises(ValueError): data = deepcopy(config_data) @@ -233,17 +245,17 @@ def test_battery_config(subtests): # SOC values must be between 0-100 with pytest.raises(ValueError): data = deepcopy(config_data) - data["min_charge_fraction"] = -1.0 + data["min_soc_fraction"] = -1.0 PySAMBatteryPerformanceModelConfig.from_dict(data) with pytest.raises(ValueError): data = deepcopy(config_data) - data["max_charge_fraction"] = 120.0 + data["max_soc_fraction"] = 120.0 PySAMBatteryPerformanceModelConfig.from_dict(data) with pytest.raises(ValueError): data = deepcopy(config_data) - data["init_charge_fraction"] = 120.0 + data["init_soc_fraction"] = 120.0 PySAMBatteryPerformanceModelConfig.from_dict(data) @@ -306,11 +318,11 @@ def test_pysam_battery_no_controller_change_capacity(plant_config, subtests): "max_charge_rate": init_charge_rate, "max_capacity": init_capacity, "n_control_window": 48, - "init_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "min_charge_fraction": 0.1, + "init_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "min_soc_fraction": 0.1, }, - "performance_parameters": {"chemistry": "LFPGraphite"}, + "performance_parameters": {"chemistry": "LFPGraphite", "demand_profile": 0.0}, } } # Set up the OpenMDAO problem @@ -327,6 +339,14 @@ def test_pysam_battery_no_controller_change_capacity(plant_config, subtests): promotes=["*"], ) + prob_init.model.add_subsystem( + name="IVC3", + subsys=om.IndepVarComp( + name="electricity_set_point", val=electricity_demand - electricity_in, units="kW" + ), + promotes=["*"], + ) + prob_init.model.add_subsystem( "pysam_battery", PySAMBatteryPerformanceModel( @@ -342,21 +362,21 @@ def test_pysam_battery_no_controller_change_capacity(plant_config, subtests): with subtests.test("5 MW battery discharge profile within charge rate bounds"): assert ( - prob_init.get_val("pysam_battery.battery_electricity_discharge", units="kW").max() + prob_init.get_val("pysam_battery.storage_electricity_discharge", units="kW").max() < init_charge_rate ) assert ( - prob_init.get_val("pysam_battery.battery_electricity_discharge", units="kW").min() + prob_init.get_val("pysam_battery.storage_electricity_discharge", units="kW").min() >= 0.0 ) with subtests.test("5 MW battery charge profile within charge rate bounds"): assert ( - prob_init.get_val("pysam_battery.battery_electricity_charge", units="kW").min() + prob_init.get_val("pysam_battery.storage_electricity_charge", units="kW").min() > -1 * init_charge_rate ) assert ( - prob_init.get_val("pysam_battery.battery_electricity_charge", units="kW").max() <= 0.0 + prob_init.get_val("pysam_battery.storage_electricity_charge", units="kW").max() <= 0.0 ) with subtests.test("5 MW battery rated production == charge rate"): @@ -382,6 +402,14 @@ def test_pysam_battery_no_controller_change_capacity(plant_config, subtests): promotes=["*"], ) + prob.model.add_subsystem( + name="IVC3", + subsys=om.IndepVarComp( + name="electricity_set_point", val=electricity_demand - electricity_in, units="kW" + ), + promotes=["*"], + ) + prob.model.add_subsystem( "pysam_battery", PySAMBatteryPerformanceModel( @@ -399,33 +427,33 @@ def test_pysam_battery_no_controller_change_capacity(plant_config, subtests): with subtests.test("2.5 MW battery discharge profile within charge rate bounds"): assert ( - prob.get_val("pysam_battery.battery_electricity_discharge", units="kW").max() + prob.get_val("pysam_battery.storage_electricity_discharge", units="kW").max() < init_charge_rate / 2 ) - assert prob.get_val("pysam_battery.battery_electricity_discharge", units="kW").min() >= 0.0 + assert prob.get_val("pysam_battery.storage_electricity_discharge", units="kW").min() >= 0.0 with subtests.test("2.5 MW battery charge profile within charge rate bounds"): assert ( - prob.get_val("pysam_battery.battery_electricity_charge", units="kW").min() + prob.get_val("pysam_battery.storage_electricity_charge", units="kW").min() > -1 * init_charge_rate / 2 ) - assert prob.get_val("pysam_battery.battery_electricity_charge", units="kW").max() <= 0.0 + assert prob.get_val("pysam_battery.storage_electricity_charge", units="kW").max() <= 0.0 with subtests.test("2.5 MW battery discharge < charge rate"): assert prob.get_val( - "pysam_battery.battery_electricity_discharge", units="MW" + "pysam_battery.storage_electricity_discharge", units="MW" ).max() < init_charge_rate / (2 * 1e3) with subtests.test("2.5 MW battery discharge <= 5 MW battery discharge"): assert ( - prob.get_val("pysam_battery.battery_electricity_discharge", units="MW").max() - < prob_init.get_val("pysam_battery.battery_electricity_discharge", units="MW").max() + prob.get_val("pysam_battery.storage_electricity_discharge", units="MW").max() + < prob_init.get_val("pysam_battery.storage_electricity_discharge", units="MW").max() ) with subtests.test("5 MW battery charge <= 2.5 MW battery charge"): assert ( - prob.get_val("pysam_battery.battery_electricity_discharge", units="MW").min() - <= prob_init.get_val("pysam_battery.battery_electricity_discharge", units="MW").min() + prob.get_val("pysam_battery.storage_electricity_discharge", units="MW").min() + <= prob_init.get_val("pysam_battery.storage_electricity_discharge", units="MW").min() ) with subtests.test("2.5 MW battery rated production == charge rate"): diff --git a/h2integrate/storage/generic_storage_cost.py b/h2integrate/storage/generic_storage_cost.py index 8138ddf2e..4e4cd7bbe 100644 --- a/h2integrate/storage/generic_storage_cost.py +++ b/h2integrate/storage/generic_storage_cost.py @@ -1,4 +1,5 @@ from attrs import field, define +from openmdao.utils import units from h2integrate.core.utilities import merge_shared_inputs from h2integrate.core.validators import contains, gte_zero, range_val @@ -26,7 +27,13 @@ class GenericStorageCostConfig(CostModelBaseConfig): max_charge_rate: float = field() commodity_rate_units: str = field( validator=contains(["W", "kW", "MW", "GW", "TW", "g/h", "kg/h", "t/h", "MMBtu/h"]) - ) # TODO: udpate to commodity_rate_units + ) + + commodity_amount_units: str = field(default=None) + + def __attrs_post_init__(self): + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" class GenericStorageCostModel(CostModelBaseClass): @@ -43,6 +50,11 @@ class GenericStorageCostModel(CostModelBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = GenericStorageCostConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "cost"), @@ -54,7 +66,7 @@ def setup(self): charge_units = self.config.commodity_rate_units - capacity_units = f"({self.config.commodity_rate_units})*h" + capacity_units = self.config.commodity_amount_units self.add_input( "max_charge_rate", @@ -63,7 +75,7 @@ def setup(self): desc="Storage charge/discharge rate", ) self.add_input( - "max_capacity", + "storage_capacity", val=self.config.max_capacity, units=capacity_units, desc="Storage storage capacity", @@ -91,7 +103,11 @@ def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): storage_duration_hrs = 0.0 if inputs["max_charge_rate"] > 0: - storage_duration_hrs = inputs["max_capacity"] / inputs["max_charge_rate"] + storage_duration_hrs = units.convert_units( + inputs["storage_capacity"] / inputs["max_charge_rate"], + f"({self.config.commodity_amount_units})/({self.config.commodity_rate_units})", + "h", + ) if inputs["max_charge_rate"] < 0: msg = ( f"max_charge_rate cannot be less than zero and has value of " diff --git a/h2integrate/storage/generic_storage_pyo.py b/h2integrate/storage/generic_storage_pyo.py deleted file mode 100644 index da922d8d7..000000000 --- a/h2integrate/storage/generic_storage_pyo.py +++ /dev/null @@ -1,545 +0,0 @@ -import numpy as np -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import gt_zero, range_val, range_val_or_none -from h2integrate.core.model_baseclasses import PerformanceModelBaseClass - - -@define(kw_only=True) -class StoragePerformanceModelConfig(BaseConfig): - """Configuration class for storage performance models. - - This class defines configuration parameters for simulating storage - performance with the Pyomo controllers. It includes - specifications such as capacity, charge rate, state-of-charge limits, - and charge/discharge efficiencies. - - Attributes: - commodity (str): name of commodity - commodity_rate_units (str): Units of the commodity (e.g., "kg/h"). - max_capacity (float): - Maximum storage energy capacity in commodity_amount_units. - Must be greater than zero. - max_charge_rate (float): - Rated commodity capacity of the storage in commodity_rate_units. - Must be greater than zero. - min_charge_fraction (float): - Minimum allowable state of charge as a fraction (0 to 1). - max_charge_fraction (float): - Maximum allowable state of charge as a fraction (0 to 1). - init_charge_fraction (float): - Initial state of charge as a fraction (0 to 1). - n_control_window (int, optional): - Number of timesteps in the control window. Defaults to 24. - commodity_amount_units (str | None, optional): Units of the commodity as an amount - (i.e., kW*h or kg). If not provided, defaults to commodity_rate_units*h. - max_discharge_rate (float | None, optional): Maximum rate at which the commodity can be - discharged (in units per time step, e.g., "kg/time step"). This rate does not include - the discharge_efficiency. Only required if `charge_equals_discharge` is False. - charge_equals_discharge (bool, optional): If True, set the max_discharge_rate equal to the - max_charge_rate. If False, specify the max_discharge_rate as a value different than - the max_charge_rate. Defaults to True. - charge_efficiency (float | None, optional): Efficiency of charging the storage, represented - as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if - `round_trip_efficiency` is provided. - discharge_efficiency (float | None, optional): Efficiency of discharging the storage, - represented as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if - `round_trip_efficiency` is provided. - round_trip_efficiency (float | None, optional): Combined efficiency of charging and - discharging the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for - 81% efficiency). Optional if `charge_efficiency` and `discharge_efficiency` are - provided. - - """ - - commodity: str = field() - commodity_rate_units: str = field() - - max_capacity: float = field(validator=gt_zero) - max_charge_rate: float = field(validator=gt_zero) - - min_charge_fraction: float = field(validator=range_val(0, 1)) - max_charge_fraction: float = field(validator=range_val(0, 1)) - init_charge_fraction: float = field(validator=range_val(0, 1)) - n_control_window: int = field(validator=gt_zero, default=24) - - commodity_amount_units: str = field(default=None) - max_discharge_rate: float | None = field(default=None) - charge_equals_discharge: bool = field(default=True) - - charge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) - discharge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) - round_trip_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) - - def __attrs_post_init__(self): - """ - Post-initialization logic to validate and calculate efficiencies. - - Ensures that either `charge_efficiency` and `discharge_efficiency` are provided, - or `round_trip_efficiency` is provided. If `round_trip_efficiency` is provided, - it calculates `charge_efficiency` and `discharge_efficiency` as the square root - of `round_trip_efficiency`. - """ - if self.round_trip_efficiency is not None: - if self.charge_efficiency is not None or self.discharge_efficiency is not None: - raise ValueError( - "Exactly one of the following sets of parameters must be set: (a) " - "`round_trip_efficiency`, or (b) both `charge_efficiency` " - "and `discharge_efficiency`." - ) - - # Calculate charge and discharge efficiencies from round-trip efficiency - self.charge_efficiency = np.sqrt(self.round_trip_efficiency) - self.discharge_efficiency = np.sqrt(self.round_trip_efficiency) - elif self.charge_efficiency is not None and self.discharge_efficiency is not None: - # Ensure both charge and discharge efficiencies are provided - pass - else: - raise ValueError( - "Exactly one of the following sets of parameters must be set: (a) " - "`round_trip_efficiency`, or (b) both `charge_efficiency` " - "and `discharge_efficiency`." - ) - - if self.charge_equals_discharge: - if ( - self.max_discharge_rate is not None - and self.max_discharge_rate != self.max_charge_rate - ): - msg = ( - "Max discharge rate does not equal max charge rate but charge_equals_discharge " - f"is True. Discharge rate is {self.max_discharge_rate} and charge rate " - f"is {self.max_charge_rate}." - ) - raise ValueError(msg) - - self.max_discharge_rate = self.max_charge_rate - - if not self.charge_equals_discharge and self.max_discharge_rate is None: - msg = ( - "max_discharge_rate is required when charge_equals_discharge is False. " - "Please input the discharge rate using the key `max_discharge_rate`." - ) - raise ValueError(msg) - - if self.commodity_amount_units is None: - self.commodity_amount_units = f"({self.commodity_rate_units})*h" - - -class StoragePerformanceModel(PerformanceModelBaseClass): - """OpenMDAO component for a storage component. - - Attributes: - config (StoragePerformanceModelConfig): - Configuration parameters for the storage performance model. - current_soc (float): soc at the start of each interval that the simulate() - method is called - dt_hr (float): timestep in hours. - - Inputs: - max_charge_rate (float): - storage charge rate in commodity_rate_units - storage_capacity (float): - Total energy storage capacity in commodity_amount_units - commodity_demand (ndarray): - Commodity demand time series (commodity_rate_units). - commodity_in (ndarray): - Commanded input commodity (commodity_rate_units), typically from dispatch. - - Outputs: - unmet_demand_out (ndarray): - Remaining unmet demand after discharge in commodity_rate_units. - unused_commodity_out (ndarray): - Unused energy not absorbed by the storage in commodity_rate_units. - commodity_out (ndarray): - Dispatched commodity to meet demand in commodity_rate_units, including commodity from - commodity_in that was never used to charge the storage and - storage_commodity_discharge. - SOC (ndarray): - storage state of charge (%). - storage_commodity_discharge (ndarray): - commodity output from the storage model in commodity_rate_units. - - Methods: - setup(): - Defines model inputs, outputs, configuration, and connections - to plant-level dispatch (if applicable). - compute(inputs, outputs, discrete_inputs, discrete_outputs): - Runs the storage model for a simulation timestep, - updating outputs such as SOC, charge/discharge limits, unmet - demand, and unused commodities. - simulate(commodity_in, commodity_demand, time_step_duration, control_variable, - sim_start_index=0): - Simulates the storage behavior across timesteps using input commodity as control. - This method is similar to what is - provided in typical compute methods in H2Integrate for running models, but - needs to be a separate method here to allow the dispatch function to call - and manage the performance model. - - - Notes: - - Default timestep is 1 hour (``dt=1.0``). - - State of charge (SOC) bounds are set using the configuration's - ``min_charge_fraction`` and ``max_charge_fraction``. - - If a Pyomo dispatch solver is provided, the storage will simulate - dispatch decisions using solver inputs. - """ - - def setup(self): - """Set up the storage performance model in OpenMDAO. - - Initializes the configuration and defines inputs/outputs for OpenMDAO. - If dispatch connections are specified, it also sets up a discrete - input for Pyomo solver integration. - """ - self.config = StoragePerformanceModelConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, - additional_cls_name=self.__class__.__name__, - ) - - self.commodity = self.config.commodity - self.commodity_rate_units = self.config.commodity_rate_units - self.commodity_amount_units = self.config.commodity_amount_units - super().setup() - - self.add_input( - f"{self.commodity}_in", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc=f"{self.commodity} input to storage", - ) - - self.add_output( - "SOC", - val=0.0, - shape=self.n_timesteps, - units="percent", - desc="State of charge of storage", - ) - - self.add_output( - f"storage_{self.commodity}_discharge", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc=f"{self.commodity} output from storage only", - ) - - self.add_output( - f"storage_{self.commodity}_charge", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc=f"{self.commodity} input to storage only", - ) - - self.add_output( - f"storage_{self.commodity}_out", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc=f"{self.commodity} input and output from storage", - ) - - self.add_input( - "max_charge_rate", - val=self.config.max_charge_rate, - units=self.config.commodity_rate_units, - desc="Storage charge rate", - ) - - if not self.config.charge_equals_discharge: - self.add_input( - "max_discharge_rate", - val=self.config.max_discharge_rate, - units=self.config.commodity_rate_units, - desc="Storage discharge rate", - ) - - self.add_input( - "storage_capacity", - val=self.config.max_capacity, - units=self.commodity_amount_units, - desc="Storage capacity", - ) - - self.add_input( - f"{self.commodity}_demand", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc=f"{self.commodity} demand", - ) - - self.add_output( - f"unmet_{self.commodity}_demand_out", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc=f"Unmet {self.commodity} demand", - ) - - self.add_output( - f"unused_{self.commodity}_out", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - desc="Unused generated commodity", - ) - - self.dt_hr = int(self.options["plant_config"]["plant"]["simulation"]["dt"]) / ( - 60**2 - ) # convert from seconds to hours - - # create inputs for pyomo control model - if "tech_to_dispatch_connections" in self.options["plant_config"]: - # get technology group name - # TODO: The split below seems brittle - self.tech_group_name = self.pathname.split(".") - for _source_tech, intended_dispatch_tech in self.options["plant_config"][ - "tech_to_dispatch_connections" - ]: - if any(intended_dispatch_tech in name for name in self.tech_group_name): - self.add_discrete_input("pyomo_dispatch_solver", val=dummy_function) - break - - def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): - """Run the storage model. - - Configures the storage stateful model parameters (SOC limits, timestep, - thermal properties, etc.), executes the simulation, and stores the - results in OpenMDAO outputs. - - Args: - inputs (dict): - Continuous input values (e.g., commodity_in, commodity_demand). - outputs (dict): - Dictionary where model outputs (SOC, unmet demand, etc.) - are written. - discrete_inputs (dict): - Discrete inputs such as control mode or Pyomo solver. - discrete_outputs (dict): - Discrete outputs (unused in this component). - """ - # Size the storage based on inputs -> method brought from HOPP - if self.config.charge_equals_discharge: - max_discharge_rate = inputs["max_charge_rate"][0] - else: - max_discharge_rate = inputs["max_discharge_rate"][0] - - self.current_soc = self.config.init_charge_fraction - - if "pyomo_dispatch_solver" in discrete_inputs: - # Simulate the storage with provided dispatch inputs - dispatch = discrete_inputs["pyomo_dispatch_solver"] - # kwargs are tech-specific inputs to the simulate() method - kwargs = { - "charge_rate": inputs["max_charge_rate"][0], - "discharge_rate": max_discharge_rate, - "storage_capacity": inputs["storage_capacity"][0], - } - ( - total_commodity_out, - storage_commodity_out, - unmet_demand, - unused_commodity, - soc, - ) = dispatch(self.simulate, kwargs, inputs) - - storage_commodity_out = np.array(storage_commodity_out) - - else: - # Simulate the storage with provided inputs and no controller. - # This essentially asks for discharge when demand exceeds input - # and requests charge when input exceeds demand - - # update the control window to be the number of timesteps in the simulation - self.config.n_control_window = self.n_timesteps - - # estimate required dispatch commands - pseudo_commands = inputs[f"{self.commodity}_demand"] - inputs[f"{self.commodity}_in"] - - storage_commodity_out, soc = self.simulate( - storage_dispatch_commands=pseudo_commands, - charge_rate=inputs["max_charge_rate"][0], - discharge_rate=max_discharge_rate, - storage_capacity=inputs["storage_capacity"][0], - ) - - # determine storage charge and discharge - # storage_commodity_out is positive when the storage is discharged - # and negative when the storage is charged - storage_commodity_out = np.array(storage_commodity_out) - - # calculate combined commodity out from inflow source and storage - # (note: storage_commodity_out is negative when charging) - combined_commodity_out = inputs[f"{self.commodity}_in"] + storage_commodity_out - - # find the total commodity out to meet demand - total_commodity_out = np.minimum( - inputs[f"{self.commodity}_demand"], combined_commodity_out - ) - - # determine how much of the inflow commodity was unused - unused_commodity = np.maximum( - 0, combined_commodity_out - inputs[f"{self.commodity}_demand"] - ) - - # determine how much demand was not met - unmet_demand = np.maximum( - 0, inputs[f"{self.commodity}_demand"] - combined_commodity_out - ) - - outputs[f"storage_{self.commodity}_charge"] = np.where( - storage_commodity_out < 0, storage_commodity_out, 0 - ) - outputs[f"storage_{self.commodity}_discharge"] = np.where( - storage_commodity_out > 0, storage_commodity_out, 0 - ) - - outputs[f"unmet_{self.commodity}_demand_out"] = unmet_demand - outputs[f"unused_{self.commodity}_out"] = unused_commodity - outputs[f"storage_{self.commodity}_out"] = storage_commodity_out - outputs[f"{self.commodity}_out"] = total_commodity_out - - outputs["SOC"] = soc - outputs[f"rated_{self.commodity}_production"] = max_discharge_rate - outputs[f"total_{self.commodity}_produced"] = np.sum(total_commodity_out) - outputs[f"annual_{self.commodity}_produced"] = outputs[ - f"total_{self.commodity}_produced" - ] * (1 / self.fraction_of_year_simulated) - - if outputs[f"rated_{self.commodity}_production"] <= 0: - outputs["capacity_factor"] = 0.0 - else: - outputs["capacity_factor"] = outputs[f"total_{self.commodity}_produced"] / ( - outputs[f"rated_{self.commodity}_production"] * self.n_timesteps - ) - - def simulate( - self, - storage_dispatch_commands: list, - charge_rate: float, - discharge_rate: float, - storage_capacity: float, - sim_start_index: int = 0, - ): - """Run the storage model over a control window of ``n_control_window`` timesteps. - - Iterates through ``storage_dispatch_commands`` one timestep at a time. - A negative command requests charging; a positive command requests - discharging. Each command is clipped to the most restrictive of three - limits before it is applied: - - 1. **SOC headroom** - the remaining capacity (charge) or remaining - stored commodity (discharge), converted to a rate via - ``storage_capacity / dt_hr``. - 2. **Hardware rate limit** - ``charge_rate`` or ``discharge_rate``, - divided by the corresponding efficiency so the limit is expressed - in pre-efficiency rate units. - 3. **Commanded magnitude** - the absolute value of the dispatch command - itself (we never exceed what was asked for). - - After clipping, the result is scaled by the charge or discharge - efficiency to obtain the actual commodity flow into or out of the - storage, and the SOC is updated accordingly. - - This method is separated from ``compute()`` so the Pyomo dispatch - controller can call it directly to evaluate candidate schedules. - - Args: - storage_dispatch_commands (array_like[float]): - Dispatch set-points for each timestep in ``commodity_rate_units``. - Negative values command charging; positive values command - discharging. Length must equal ``config.n_control_window``. - charge_rate (float): - Maximum commodity input rate to storage in - ``commodity_rate_units`` (before charge efficiency is applied). - discharge_rate (float): - Maximum commodity output rate from storage in - ``commodity_rate_units`` (before discharge efficiency is applied). - storage_capacity (float): - Rated storage capacity in ``commodity_amount_units``. - sim_start_index (int, optional): - Starting index for writing into persistent output arrays. - Defaults to 0. - - Returns: - tuple[np.ndarray, np.ndarray] - storage_commodity_out_timesteps : - Commodity flow per timestep in ``commodity_rate_units``. - Positive = discharge (commodity leaving storage), - negative = charge (commodity entering storage). - soc_timesteps : - State of charge at the end of each timestep, in percent - (0-100). - """ - - n = self.config.n_control_window - storage_commodity_out_timesteps = np.zeros(n) - soc_timesteps = np.zeros(n) - - # Early return when storage cannot operate: zero capacity or both - # charge and discharge rates are zero. - if storage_capacity <= 0 or (charge_rate <= 0 and discharge_rate <= 0): - soc_timesteps[:] = self.current_soc * 100.0 - return storage_commodity_out_timesteps, soc_timesteps - - # Pre-compute scalar constants to avoid repeated attribute lookups - # and redundant divisions inside the per-timestep loop. - charge_eff = self.config.charge_efficiency - discharge_eff = self.config.discharge_efficiency - soc_max = self.config.max_charge_fraction - soc_min = self.config.min_charge_fraction - - # max_charge_input / max_discharge_input are the hardware rate limits - # expressed in *pre-efficiency* rate units so they can be compared - # directly against the SOC headroom and the raw command magnitude. - max_charge_input = charge_rate / charge_eff - max_discharge_input = discharge_rate / discharge_eff - - commands = np.asarray(storage_dispatch_commands, dtype=float) - soc = float(self.current_soc) - - for t, cmd in enumerate(commands): - if cmd < 0.0: - # --- Charging --- - # headroom: how much more commodity the storage can accept, - # expressed as a rate (commodity_rate_units). - headroom = (soc_max - soc) * storage_capacity / self.dt_hr - - # Clip to the most restrictive limit, then apply efficiency. - # max(0, ...) guards against negative headroom when SOC - # slightly exceeds soc_max. - actual_charge = max(0.0, min(headroom, max_charge_input, -cmd)) * charge_eff - - # Update SOC (actual_charge is in post-efficiency units) - soc += actual_charge / storage_capacity - storage_commodity_out_timesteps[t] = -actual_charge - else: - # --- Discharging --- - # headroom: how much commodity can still be drawn before - # hitting the minimum SOC, expressed as a rate. - headroom = (soc - soc_min) * storage_capacity / self.dt_hr - - # Clip and apply discharge efficiency. - actual_discharge = max(0.0, min(headroom, max_discharge_input, cmd)) * discharge_eff - - # Update SOC (actual_discharge is in post-efficiency units) - soc -= actual_discharge / storage_capacity - storage_commodity_out_timesteps[t] = actual_discharge - - soc_timesteps[t] = soc * 100.0 - - # Persist the final SOC so subsequent simulate() calls (e.g. from the - # Pyomo controller across rolling windows) start where we left off. - self.current_soc = soc - return storage_commodity_out_timesteps, soc_timesteps - - -def dummy_function(): - # this function is required for initializing the pyomo control input and nothing else - pass diff --git a/h2integrate/storage/hydrogen/h2_storage_cost.py b/h2integrate/storage/hydrogen/h2_storage_cost.py index 970889605..ab392c5b2 100644 --- a/h2integrate/storage/hydrogen/h2_storage_cost.py +++ b/h2integrate/storage/hydrogen/h2_storage_cost.py @@ -74,6 +74,11 @@ def make_model_dict(self): class HydrogenStorageBaseCostModel(CostModelBaseClass): + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() @@ -96,7 +101,7 @@ def setup(self): ) self.add_input( - "max_capacity", + "storage_capacity", val=self.config.max_capacity, units=f"{self.config.commodity_units}*h", desc="Hydrogen storage capacity", @@ -117,7 +122,7 @@ def make_storage_input_dict(self, inputs): # convert capacity to kg max_capacity_kg = units.convert_units( - inputs["max_capacity"], f"({self.config.commodity_units})*h", "kg" + inputs["storage_capacity"], f"({self.config.commodity_units})*h", "kg" ) storage_input["h2_storage_kg"] = max_capacity_kg[0] @@ -151,6 +156,11 @@ class LinedRockCavernStorageCostModel(HydrogenStorageBaseCostModel): [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """Calculate installed capital and O&M costs for lined rock cavern hydrogen storage. @@ -276,6 +286,11 @@ class SaltCavernStorageCostModel(HydrogenStorageBaseCostModel): [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """Calculate installed capital and O&M costs for salt cavern hydrogen storage. @@ -406,6 +421,11 @@ class PipeStorageCostModel(HydrogenStorageBaseCostModel): [3] HDSAM V4.0 Gaseous H2 Geologic Storage sheet """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def compute(self, inputs, outputs, discrete_inputs, discrete_outputs): """Calculate installed capital and O&M costs for underground pipe hydrogen storage. diff --git a/h2integrate/storage/hydrogen/mch_storage.py b/h2integrate/storage/hydrogen/mch_storage.py index f6a53b663..4888519c4 100644 --- a/h2integrate/storage/hydrogen/mch_storage.py +++ b/h2integrate/storage/hydrogen/mch_storage.py @@ -54,6 +54,11 @@ class MCHTOLStorageCostModel(CostModelBaseClass): """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): super().initialize() diff --git a/h2integrate/storage/hydrogen/test/conftest.py b/h2integrate/storage/hydrogen/test/conftest.py index abdb88bca..1600cde57 100644 --- a/h2integrate/storage/hydrogen/test/conftest.py +++ b/h2integrate/storage/hydrogen/test/conftest.py @@ -6,7 +6,11 @@ from h2integrate.storage.test.conftest import plant_config # noqa: F401 -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/storage/simple_generic_storage.py b/h2integrate/storage/simple_generic_storage.py deleted file mode 100644 index 528d474a2..000000000 --- a/h2integrate/storage/simple_generic_storage.py +++ /dev/null @@ -1,66 +0,0 @@ -from attrs import field, define - -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.validators import gte_zero -from h2integrate.core.model_baseclasses import PerformanceModelBaseClass - - -@define(kw_only=True) -class SimpleGenericStorageConfig(BaseConfig): - commodity: str = field() - commodity_rate_units: str = field() # TODO: update to commodity_rate_units - max_charge_rate: float = field(validator=gte_zero) - - -class SimpleGenericStorage(PerformanceModelBaseClass): - """ - Simple generic storage model that acts as a pass-through component. - - Note: this storage performance model is intended to be used with the - `DemandOpenLoopStorageController` controller and has not been tested - with other controllers. - - """ - - def setup(self): - self.config = SimpleGenericStorageConfig.from_dict( - merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), - strict=False, - additional_cls_name=self.__class__.__name__, - ) - self.commodity = self.config.commodity - self.commodity_rate_units = self.config.commodity_rate_units - self.commodity_amount_units = f"({self.commodity_rate_units})*h" - super().setup() - self.add_input( - f"{self.commodity}_set_point", - val=0.0, - shape=self.n_timesteps, - units=self.commodity_rate_units, - ) - self.add_input( - "max_charge_rate", - val=self.config.max_charge_rate, - units=self.config.commodity_rate_units, - desc="Storage charge/discharge rate", - ) - - def compute(self, inputs, outputs): - # Pass the commodity_out as the commodity_set_point - outputs[f"{self.commodity}_out"] = inputs[f"{self.commodity}_set_point"] - - # Set the rated commodity production from the max_charge_rate input - outputs[f"rated_{self.commodity}_production"] = inputs["max_charge_rate"] - - # Calculate the total and annual commodity produced - outputs[f"total_{self.commodity}_produced"] = outputs[f"{self.commodity}_out"].sum() - outputs[f"annual_{self.commodity}_produced"] = outputs[ - f"total_{self.commodity}_produced" - ] * (1 / self.fraction_of_year_simulated) - - # Calculate the maximum theoretical commodity production over the simulation - rated_production = ( - outputs[f"rated_{self.commodity}_production"] * self.n_timesteps * (self.dt / 3600) - ) - - outputs["capacity_factor"] = outputs[f"total_{self.commodity}_produced"] / rated_production diff --git a/h2integrate/storage/simple_storage_auto_sizing.py b/h2integrate/storage/simple_storage_auto_sizing.py index 8d914df2f..c84dad87d 100644 --- a/h2integrate/storage/simple_storage_auto_sizing.py +++ b/h2integrate/storage/simple_storage_auto_sizing.py @@ -1,25 +1,100 @@ -from copy import deepcopy - import numpy as np from attrs import field, define -from h2integrate.core.utilities import BaseConfig, merge_shared_inputs -from h2integrate.core.model_baseclasses import PerformanceModelBaseClass +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.core.validators import range_val_or_none +from h2integrate.storage.storage_baseclass import ( + StoragePerformanceBase, + StoragePerformanceBaseConfig, +) @define(kw_only=True) -class StorageSizingModelConfig(BaseConfig): +class StorageSizingModelConfig(StoragePerformanceBaseConfig): """Configuration class for the StorageAutoSizingModel. - Fields include `commodity`, `commodity_rate_units`, and `demand_profile`. + Attributes: + commodity (str): name of commodity + commodity_rate_units (str): Units of the commodity (e.g., kW or kg/h). + min_soc_fraction (float): Minimum allowable state of charge as a fraction (0 to 1). + max_soc_fraction (float): Maximum allowable state of charge as a fraction (0 to 1). + set_demand_as_avg_commodity_in (bool): If True, assume the demand is + equal to the mean input commodity. If False, uses the demand input. + demand_profile (int | float | list, optional): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + Only used if `set_demand_as_avg_commodity_in` is False. Defaults to 0. + charge_efficiency (float | None, optional): Efficiency of charging the storage, represented + as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if + `round_trip_efficiency` is provided. + discharge_efficiency (float | None, optional): Efficiency of discharging the storage, + represented as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if + `round_trip_efficiency` is provided. + round_trip_efficiency (float | None, optional): Combined efficiency of charging and + discharging the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for + 81% efficiency). Optional if `charge_efficiency` and `discharge_efficiency` are + provided. + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., kW*h or kg). If not provided, defaults to commodity_rate_units*h. """ - commodity: str = field(default="hydrogen") - commodity_rate_units: str = field(default="kg/h") # TODO: update to commodity_rate_units - demand_profile: int | float | list = field(default=0.0) + commodity: str = field(converter=(str.strip, str.lower)) + commodity_rate_units: str = field(converter=str.strip) + # TODO: add in logic for having different discharge rate + # charge_equals_discharge: bool = field(default=True) + set_demand_as_avg_commodity_in: bool = field() + demand_profile: int | float | list = field(default=0.0) -class StorageAutoSizingModel(PerformanceModelBaseClass): + charge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + discharge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + round_trip_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + + commodity_amount_units: str = field(default=None) + + def __attrs_post_init__(self): + """ + Post-initialization logic to validate and calculate efficiencies. + + Ensures that either `charge_efficiency` and `discharge_efficiency` are provided, + or `round_trip_efficiency` is provided. If `round_trip_efficiency` is provided, + it calculates `charge_efficiency` and `discharge_efficiency` as the square root + of `round_trip_efficiency`. + """ + if (self.round_trip_efficiency is not None) and ( + self.charge_efficiency is None and self.discharge_efficiency is None + ): + # Calculate charge and discharge efficiencies from round-trip efficiency + self.charge_efficiency = np.sqrt(self.round_trip_efficiency) + self.discharge_efficiency = np.sqrt(self.round_trip_efficiency) + self.round_trip_efficiency = None + if self.charge_efficiency is None or self.discharge_efficiency is None: + raise ValueError( + "Exactly one of the following sets of parameters must be set: (a) " + "`round_trip_efficiency`, or (b) both `charge_efficiency` " + "and `discharge_efficiency`." + ) + + # Set the default commodity_amount_units as the commodity_rate_units*h + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" + + # Check if the user provided a non-zero demand profile + user_input_dmd = True if np.sum(self.demand_profile) > 0 else False + + # Check that the demand profile is zero if set_demand_as_avg_commodity_in is True + if self.set_demand_as_avg_commodity_in and user_input_dmd: + # If using the average commodity in as the demand, + # warn users if they input the demand profile + msg = ( + "A non-zero demand profile was provided but set_demand_as_avg_commodity_in is True." + " The provided demand profile will not be used, the demand profile will be " + f"calculated as the mean of ``{self.commodity}_in``. " + ) + raise ValueError(msg) + + +class StorageAutoSizingModel(StoragePerformanceBase): """Performance model that calculates the storage charge rate and capacity needed to either: @@ -28,40 +103,13 @@ class StorageAutoSizingModel(PerformanceModelBaseClass): Then simulates performance of a basic storage component using the charge rate and capacity calculated. - - Note: this storage performance model is intended to be used with the - `PassThroughOpenLoopController` controller and is not compatible with the - `DemandOpenLoopStorageController` controller. - - Inputs: - {commodity}_in (float): Input commodity flow timeseries (e.g., hydrogen production) - used to estimate the demand if `commodity_demand_profile` is zero. - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - {commodity}_set_point (float): Input commodity flow timeseries (e.g., hydrogen production) - used as the available input commodity to meet the demand. - {commodity}_demand_profile (float): Demand profile of commodity. - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - - Outputs: - max_capacity (float): Maximum storage capacity of the commodity. - - Units: in non-rate units, e.g., "kg" if `commodity_rate_units` is "kg/h" - max_charge_rate (float): Maximum rate at which the commodity can be charged - - Units: Defined in `commodity_rate_units` (e.g., "kg/h"). - Assumed to also be the discharge rate. - {commodity}_out (np.ndarray): the commodity used to meet demand from the available - input commodity and storage component. Defined in `commodity_rate_units`. - total_{commodity}_produced (float): sum of commodity discharged from storage over - the simulation. Defined in `commodity_rate_units*h` - rated_{commodity}_production (float): maximum commodity that could be discharged - in a timestep. Defined in `commodity_rate_units` - annual_{commodity}_produced (np.ndarray): total commodity discharged per year. - Defined in `commodity_rate_units*h/year` - capacity_factor (np.ndarray): ratio of commodity discharged to the maximum - commodity that could be discharged over the simulation. - Defined as a ratio (units of `unitless`) - """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def setup(self): self.config = StorageSizingModelConfig.from_dict( merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), @@ -71,147 +119,162 @@ def setup(self): self.commodity = self.config.commodity self.commodity_rate_units = self.config.commodity_rate_units - self.commodity_amount_units = f"({self.commodity_rate_units})*h" + self.commodity_amount_units = self.config.commodity_amount_units super().setup() - self.add_input( - f"{self.commodity}_demand_profile", - units=f"{self.config.commodity_rate_units}", - val=self.config.demand_profile, - shape=self.n_timesteps, - desc=f"{self.commodity} demand profile timeseries", - ) - - self.add_input( - f"{self.commodity}_in", - shape_by_conn=True, - units=f"{self.config.commodity_rate_units}", - desc=f"{self.commodity} input timeseries from production to storage", - ) - - self.add_input( - f"{self.commodity}_set_point", - shape_by_conn=True, - units=f"{self.config.commodity_rate_units}", - desc=f"{self.commodity} input set point from controller", + # Capacity outputs + self.add_output( + "storage_capacity", + val=0.0, + shape=1, + units=self.commodity_amount_units, ) self.add_output( - "max_capacity", + "max_charge_rate", val=0.0, shape=1, - units=f"({self.config.commodity_rate_units})*h", + units=self.commodity_rate_units, ) self.add_output( - "max_charge_rate", + "max_discharge_rate", val=0.0, shape=1, - units=f"{self.config.commodity_rate_units}", + units=self.commodity_rate_units, ) - def compute(self, inputs, outputs): - # Step 1: Auto-size the storage to meet the demand + # Check if we need to have an input for demand + # If using the actual demand profile and using + # open-loop control, add demand as an input + if not self.config.set_demand_as_avg_commodity_in and not self.using_feedback_control: + self.add_input( + f"{self.commodity}_demand", + val=self.config.demand_profile, + shape=self.n_timesteps, + units=self.commodity_rate_units, + desc=f"{self.commodity} demand profile", + ) + + def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): + """ + Part 0: get demand profile based on user input parameters: + + 1) Estimate the demand profile from either the input `commodity_demand` or assume + the demand is the average of the `commodity_in` profile + + Part 1: calculate the storage sizes (charge rate, discharge rate, and capacity) + needed to meet the demand. The steps to do this are: + + 1) Calculate the max charge and discharge rate as the maximum of the `commodity_in` + profile and oversize to account for charge/discharge efficiencies. + 2) Estimate the storage SOC (in `commodity_amount_units`). The SOC increases when + charging and decreases when discharging. If `commodity_set_point` is input, + calculate the storage SOC as the cumulative summation of the negative of + `commodity_set_point` input (`commodity_set_point` input is + negative when charging and positive when discharging). + Otherwise, calculate the storage SOC as the cumulative summation of + `commodity_in - demand`. + 3) If needed, adjust the SOC profile from Step 2 so that the minimum SOC is positive + 4) Calculate the usable storage capacity as the difference between the + maximum SOC and minimum SOC from Steps 2 and 3. + 5) Calculate the rated storage capacity as the usable storage capacity + (calculated in Step 4) divided by + `config.max_soc_fraction - config.min_soc_fraction` + + Part 2: Simulate the performance of that storage model. The steps of this are: + + 1) Estimate the starting SOC (as a fraction) at the start of the simulation. + Take the first value in the SOC profile (in `commodity_amount_units`) + and divide by the storage capacity + 2) Make an input dictionary containing the calculated demand profile, + storage capacity, and storage fill rate, and run the storage performance. + 3) Calculate the outputs + """ + + # Part 0: get demand profile based on user input parameters + # 1. Calculate the demand profile + if self.config.set_demand_as_avg_commodity_in: + if dict(inputs.items()).get(f"{self.commodity}_demand", np.array([0])).sum() > 0: + msg = ( + "A non-zero demand profile was input when set_demand_as_avg_commodity_in is " + "True. When set_demand_as_avg_commodity_in is True, the input demand profile " + f"cannot be used. Please ensure that ``{self.config.commodity}_in`` is zero or " + "set set_demand_as_avg_commodity_in as False." + ) + raise ValueError(msg) - # Auto-size the fill rate as the max of the input commodity - storage_max_fill_rate = np.max(inputs[f"{self.commodity}_in"]) + commodity_demand = np.mean(inputs[f"{self.commodity}_in"]) * np.ones(self.n_timesteps) - # Set the demand profile - if np.sum(inputs[f"{self.commodity}_demand_profile"]) > 0: - commodity_demand = inputs[f"{self.commodity}_demand_profile"] else: - # If the commodity_demand_profile is zero, use the average - # commodity_in as the demand - commodity_demand = np.mean(inputs[f"{self.commodity}_in"]) * np.ones( - self.n_timesteps - ) # TODO: update demand based on end-use needs - - # The commodity_set_point is the production set by the controller - desired_commodity_production = inputs[f"{self.commodity}_set_point"] - - # TODO: SOC is just an absolute value and is not a percentage. Ideally would calculate as shortfall in future. - # Size the storage capacity to meet the demand as much as possible - commodity_storage_soc = [] - for j in range(len(desired_commodity_production)): - if j == 0: - commodity_storage_soc.append(desired_commodity_production[j] - commodity_demand[j]) - else: - commodity_storage_soc.append( - commodity_storage_soc[j - 1] - + desired_commodity_production[j] - - commodity_demand[j] - ) + commodity_demand = inputs[f"{self.commodity}_demand"] + # Part 1: Auto-size the storage to meet the demand + # 1. Auto-size the fill rate as the max of the input commodity + storage_max_fill_rate = np.max(inputs[f"{self.commodity}_in"]) + # Auto-size the empty rate as the max of the input commodity + storage_max_empty_rate = np.max(inputs[f"{self.commodity}_in"]) + + # Auto-size the storage capacity to meet the demand as much as possible + # 2. Estimate the storage SOC in `commodity_amount_units` + # NOTE: commodity_storage_soc is just an absolute value and is not a percentage. + if f"{self.commodity}_set_point" in inputs: + # `{self.commodity}_set_point` is negative when charging and positive when + # discharging, the negative of `{self.commodity}_set_point` can be used to + # estimate the SOC (which increases when charging and decreases when discharging) + commodity_storage_soc = np.cumsum(-1 * inputs[f"{self.commodity}_set_point"]) + else: + # estimate the SOC (which increases when charging and decreases when discharging) + # based on the demand profile and the input commodity + commodity_storage_soc = np.cumsum( + inputs[f"{self.config.commodity}_in"] - commodity_demand + ) + + # 3. If needed, adjust the SOC profile from Step 2 so that the minimum SOC is positive minimum_soc = np.min(commodity_storage_soc) # Adjust soc so it's not negative. if minimum_soc < 0: - commodity_storage_soc = [x + np.abs(minimum_soc) for x in commodity_storage_soc] - - # Calculate the maximum hydrogen storage capacity needed to meet the demand - commodity_storage_capacity_kg = np.max(commodity_storage_soc) - np.min( - commodity_storage_soc - ) - - # Step 2: Simulate the storage performance based on the sizes calculated - - # Initialize output arrays of charge and discharge - discharge_storage = np.zeros(self.n_timesteps) - charge_storage = np.zeros(self.n_timesteps) - output_array = np.zeros(self.n_timesteps) - - # Initialize state-of-charge value as the soc at t=0 - soc = deepcopy(commodity_storage_soc[0]) - - # Simulate a basic storage component - for t, demand_t in enumerate(commodity_demand): - input_flow = desired_commodity_production[t] - available_charge = float(commodity_storage_capacity_kg - soc) - available_discharge = float(soc) - - # If demand is greater than the input, discharge storage - if demand_t > input_flow: - # Discharge storage to meet demand. - discharge_needed = demand_t - input_flow - discharge = min(discharge_needed, available_discharge, storage_max_fill_rate) - # Update SOC - soc -= discharge - - discharge_storage[t] = discharge - output_array[t] = input_flow + discharge - - # If input is greater than the demand, charge storage - else: - # Charge storage with unused input - unused_input = input_flow - demand_t - charge = min(unused_input, available_charge, storage_max_fill_rate) - # Update SOC - soc += charge - - charge_storage[t] = charge - output_array[t] = demand_t - - # Output the storage sizes (charge rate and capacity) - outputs["max_charge_rate"] = storage_max_fill_rate - outputs["max_capacity"] = commodity_storage_capacity_kg + commodity_storage_soc = commodity_storage_soc + np.abs(minimum_soc) - # commodity_out is the commodity_set_point - charge_storage + discharge_storage - outputs[f"{self.commodity}_out"] = output_array + # 4. Calculate the maximum usable storage capacity needed to meet the demand + max_usable_storage_capacity = np.max(commodity_storage_soc) - np.min(commodity_storage_soc) - # The rated_commodity_production is based on the discharge rate - # (which is assumed equal to the charge rate) - outputs[f"rated_{self.commodity}_production"] = storage_max_fill_rate + # 5. Calculate the storage capacity to account for SOC limits + rated_storage_capacity = max_usable_storage_capacity / ( + self.config.max_soc_fraction - self.config.min_soc_fraction + ) - # The total_commodity_produced is the sum of the commodity discharged from storage - outputs[f"total_{self.commodity}_produced"] = discharge_storage.sum() - # Adjust the total_commodity_produced to a year-long simulation - outputs[f"annual_{self.commodity}_produced"] = outputs[ - f"total_{self.commodity}_produced" - ] * (1 / self.fraction_of_year_simulated) + # Part 2: Simulate the storage performance based on the sizes calculated + # Estimate the initial SOC - # The maximum production is based on the charge/discharge rate - max_production = storage_max_fill_rate * self.n_timesteps * (self.dt / 3600) + # 1. Set the starting SOC (as a fraction) at the start of the simulation. + self.current_soc = np.max( + [self.config.min_soc_fraction, commodity_storage_soc[0] / rated_storage_capacity] + ) - # Capacity factor is total discharged commodity / maximum discharged commodity possible - outputs["capacity_factor"] = outputs[f"total_{self.commodity}_produced"] / max_production + # Output the calculated storage sizes (charge rate and capacity) + outputs["max_charge_rate"] = storage_max_fill_rate + outputs["max_discharge_rate"] = storage_max_empty_rate + outputs["storage_capacity"] = rated_storage_capacity + + # 2. Make dictionary of inputs containing information to pass to the controller + # (such as demand profile, charge rate, and storage capacity) + inputs_adjusted = dict(inputs.items()) + if self.config.set_demand_as_avg_commodity_in: + inputs_adjusted[f"{self.commodity}_demand"] = commodity_demand + + if "pyomo_dispatch_solver" in discrete_inputs: + inputs_adjusted["storage_capacity"] = np.array([rated_storage_capacity]) + inputs_adjusted["max_charge_rate"] = np.array([storage_max_fill_rate]) + + # 3. Simulate the storage performance and calculate outputs + outputs = self.run_storage( + storage_max_fill_rate, + storage_max_empty_rate, + rated_storage_capacity, + inputs_adjusted, + outputs, + discrete_inputs, + ) diff --git a/h2integrate/storage/storage_baseclass.py b/h2integrate/storage/storage_baseclass.py new file mode 100644 index 000000000..05a614da6 --- /dev/null +++ b/h2integrate/storage/storage_baseclass.py @@ -0,0 +1,439 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig +from h2integrate.core.validators import range_val +from h2integrate.core.model_baseclasses import PerformanceModelBaseClass + + +@define(kw_only=True) +class StoragePerformanceBaseConfig(BaseConfig): + """ + Configuration class for the StoragePerformanceBase model. + + Attributes: + min_soc_fraction (float): Minimum allowable state of charge as a fraction (0 to 1). + max_soc_fraction (float): Maximum allowable state of charge as a fraction (0 to 1). + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + """ + + # Below are used in all storage models + min_soc_fraction: float = field(validator=range_val(0, 1)) + max_soc_fraction: float = field(validator=range_val(0, 1)) + demand_profile: int | float | list = field() + + +class StoragePerformanceBase(PerformanceModelBaseClass): + """ + Baseclass for storage performance models + + Attributes: + config (StoragePerformanceModelConfig): + Configuration parameters for the storage performance model. + current_soc (float): soc at the start of each interval that the simulate() + method is called + dt_hr (float): timestep in hours. + + + Notes: + - Default timestep is 1 hour (``dt=3600.0``). + - State of charge (SOC) bounds are set using the configuration's + ``min_soc_fraction`` and ``max_soc_fraction``. + - If a Pyomo dispatch solver is provided, the storage will simulate + dispatch decisions using solver inputs. + """ + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + """Set up the storage performance model in OpenMDAO. + + Initializes the configuration and defines inputs/outputs for OpenMDAO. + If dispatch connections are specified, it also sets up a discrete + input for Pyomo solver integration. + """ + + # Below should be done in models that inherit it + # self.commodity = self.config.commodity + # self.commodity_rate_units = self.config.commodity_rate_units + # self.commodity_amount_units = self.config.commodity_amount_units + + # Initialize standard performance model outputs + super().setup() + + commodity = self.commodity + commodity_rate_units = self.commodity_rate_units + commodity_amount_units = self.commodity_amount_units + n_timesteps = self.n_timesteps + + # Input timeseries + self.add_input( + f"{commodity}_in", + val=0, + shape=n_timesteps, + units=commodity_rate_units, + desc=f"{commodity} input", + ) + + # Input storage design parameters + if hasattr(self.config, "max_charge_rate"): + self.add_input( + "max_charge_rate", + val=self.config.max_charge_rate, + units=commodity_rate_units, + desc="Storage charge rate", + ) + + if hasattr(self.config, "max_capacity"): + self.add_input( + "storage_capacity", + val=self.config.max_capacity, + units=commodity_amount_units, + desc="Storage capacity", + ) + + if not getattr(self.config, "charge_equals_discharge", True): + # add max_discharge_rate if discharge rate != charge rate + self.add_input( + "max_discharge_rate", + val=self.config.max_discharge_rate, + units=commodity_rate_units, + desc="Storage discharge rate", + ) + + # Storage design outputs: + default_storage_duration = 0.0 + if hasattr(self.config, "max_charge_rate") and hasattr(self.config, "max_capacity"): + default_storage_duration = self.config.max_capacity / self.config.max_charge_rate + + self.add_output( + "storage_duration", + val=default_storage_duration, + units=f"({commodity_amount_units})/({commodity_rate_units})", + desc="Storage duration capacity", + ) + + # Storage performance outputs + self.add_output( + "SOC", + val=0.0, + shape=n_timesteps, + units="percent", + desc="State of charge of storage", + ) + + self.add_output( + f"storage_{commodity}_discharge", + val=0.0, + shape=n_timesteps, + units=commodity_rate_units, + desc=f"{commodity} output from storage only", + ) + + self.add_output( + f"storage_{commodity}_charge", + val=0.0, + shape=n_timesteps, + units=commodity_rate_units, + desc=f"{commodity} input to storage only", + ) + + self.add_output( + "standard_capacity_factor", + val=0.0, + shape=self.plant_life, + units="unitless", + desc=f"Capacity factor of {commodity} discharged from storage", + ) + + # create a variable to determine whether we are using feedback control + # for this technology + using_feedback_control = False + # create inputs for pyomo control model + if "tech_to_dispatch_connections" in self.options["plant_config"]: + # get technology group name + # TODO: The split below seems brittle + self.tech_group_name = self.pathname.split(".") + for _source_tech, intended_dispatch_tech in self.options["plant_config"][ + "tech_to_dispatch_connections" + ]: + if any(intended_dispatch_tech in name for name in self.tech_group_name): + self.add_input( + f"{commodity}_demand", + val=self.config.demand_profile, + shape=n_timesteps, + units=commodity_rate_units, + desc=f"{commodity} demand profile", + ) + self.add_discrete_input("pyomo_dispatch_solver", val=lambda: None) + # the controller gets demand from the storage model + # set the using feedback control variable to True + using_feedback_control = True + break + if not using_feedback_control: + # using an open-loop storage controller + self.add_input( + f"{commodity}_set_point", + val=0.0, + shape=n_timesteps, + units=commodity_rate_units, + ) + + self.using_feedback_control = using_feedback_control + # convert from seconds to hours + self.dt_hr = int(self.options["plant_config"]["plant"]["simulation"]["dt"]) / ( + 3600 + ) # convert from seconds to hours + + def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): + """Run the storage model. + + Configures the storage stateful model parameters (SOC limits, timestep, + thermal properties, etc.), executes the simulation, and stores the + results in OpenMDAO outputs. + + Args: + inputs (dict): Continuous input values (e.g., commodity_in, commodity_demand). + outputs (dict): Dictionary where model outputs (SOC, unmet demand, etc.) + are written. + discrete_inputs (dict): Discrete inputs such as control mode or Pyomo solver. + discrete_outputs (dict): Discrete outputs (unused in this component). + """ + # Below is an example of what the compute method would look like in the + # StoragePerformanceModel + # Do whatever pre-calculations are necessary, then run storage + # self.current_soc = self.config.init_soc_fraction + + # charge_rate = inputs["max_charge_rate"][0] + # if "max_discharge_rate" in inputs: + # discharge_rate = inputs["max_discharge_rate"][0] + # else: + # discharge_rate = inputs["max_charge_rate"][0] + # storage_capacity = inputs["storage_capacity"][0] + # outputs = self.run_storage( + # charge_rate, discharge_rate, storage_capacity, inputs, outputs, discrete_inputs + # ) + raise NotImplementedError("This method should be implemented in a subclass") + + def run_storage( + self, charge_rate, discharge_rate, storage_capacity, inputs, outputs, discrete_inputs + ): + """Run the storage performance model and calculate the outputs. This method should + be called in the `compute()` method of a subclass. + + Example: + >>> # In the `compute()` method: + >>> self.current_soc = self.config.init_soc_fraction + >>> charge_rate = inputs["max_charge_rate"][0] + >>> discharge_rate = inputs["max_discharge_rate"][0] + >>> storage_capacity = inputs["storage_capacity"] + >>> outputs = self.run_storage( + ... charge_rate, discharge_rate, storage_capacity, inputs, outputs, discrete_inputs + >>> ) + + Args: + charge_rate (float): storage charge rate in commodity_rate_units + discharge_rate (float): storage discharge rate in commodity_rate_units + storage_capacity (float): storage capacity in commodity_amount_units + inputs (om.vectors.default_vector.DefaultVector | dict): OpenMDAO inputs + to the `compute()` method. This should at least include the commodity + demand profile and input commodity profile. + outputs (om.vectors.default_vector.DefaultVector): OpenMDAO outputs + from the `compute()` method + discrete_inputs (om.core.component._DictValues, optional): OpenMDAO discrete + inputs to the `compute()` method. This is only required if using a + feedback control strategy and should contain the discrete input + 'pyomo_dispatch_solver'. + + Returns: + om.vectors.default_vector.DefaultVector: calculated OpenMDAO outputs. + """ + if "pyomo_dispatch_solver" in discrete_inputs: + dispatch = discrete_inputs["pyomo_dispatch_solver"] + # kwargs are tech-specific inputs to the simulate() method + kwargs = { + "charge_rate": charge_rate, + "discharge_rate": discharge_rate, + "storage_capacity": storage_capacity, + } + storage_commodity_out, soc = dispatch(self.simulate, kwargs, inputs) + + else: + storage_commodity_out, soc = self.simulate( + storage_dispatch_commands=inputs[f"{self.commodity}_set_point"], + charge_rate=charge_rate, + discharge_rate=discharge_rate, + storage_capacity=storage_capacity, + ) + + # determine storage charge and discharge + # storage_commodity_out is positive when the storage is discharged + # and negative when the storage is charged + storage_commodity_out = np.array(storage_commodity_out) + + # Storage design outputs + if discharge_rate > 0: + outputs["storage_duration"] = storage_capacity / discharge_rate + else: + outputs["storage_duration"] = 0 + + # Storage specific timeseries outputs + outputs[f"storage_{self.commodity}_charge"] = np.where( + storage_commodity_out < 0, storage_commodity_out, 0 + ) + outputs[f"storage_{self.commodity}_discharge"] = np.where( + storage_commodity_out > 0, storage_commodity_out, 0 + ) + outputs["SOC"] = soc + outputs[f"{self.commodity}_out"] = storage_commodity_out + + # Performance model outputs + outputs[f"rated_{self.commodity}_production"] = discharge_rate + outputs[f"total_{self.commodity}_produced"] = np.sum(storage_commodity_out) + outputs[f"annual_{self.commodity}_produced"] = outputs[ + f"total_{self.commodity}_produced" + ] * (1 / self.fraction_of_year_simulated) + + if outputs[f"rated_{self.commodity}_production"] <= 0: + outputs["capacity_factor"] = 0.0 + outputs["standard_capacity_factor"] = 0.0 + else: + outputs["capacity_factor"] = outputs[f"total_{self.commodity}_produced"] / ( + outputs[f"rated_{self.commodity}_production"] * self.n_timesteps + ) + # standard_capacity_factor is the ratio of commodity discharged to the discharge rate + total_commodity_discharged = outputs[f"storage_{self.commodity}_discharge"].sum() + outputs["standard_capacity_factor"] = total_commodity_discharged / ( + outputs[f"rated_{self.commodity}_production"] * self.n_timesteps + ) + return outputs + + def simulate( + self, + storage_dispatch_commands: list, + charge_rate: float, + discharge_rate: float, + storage_capacity: float, + sim_start_index: int = 0, + ): + """Run the storage model over a control window of ``n_control_window`` timesteps. + + Iterates through ``storage_dispatch_commands`` one timestep at a time. + A negative command requests charging; a positive command requests + discharging. Each command is clipped to the most restrictive of three + limits before it is applied: + + 1. **SOC headroom** - the remaining capacity (charge) or remaining + stored commodity (discharge), converted to a rate via + ``storage_capacity / dt_hr``. + 2. **Hardware rate limit** - ``charge_rate`` or ``discharge_rate``, + divided by the corresponding efficiency so the limit is expressed + in pre-efficiency rate units. + 3. **Commanded magnitude** - the absolute value of the dispatch command + itself (we never exceed what was asked for). + + After clipping, the result is scaled by the charge or discharge + efficiency to obtain the actual commodity flow into or out of the + storage, and the SOC is updated accordingly. + + This method is separated from ``compute()`` so the Pyomo dispatch + controller can call it directly to evaluate candidate schedules. + + Args: + storage_dispatch_commands (array_like[float]): + Dispatch set-points for each timestep in ``commodity_rate_units``. + Negative values command charging; positive values command + discharging. Length must equal ``config.n_control_window``. + charge_rate (float): + Maximum commodity input rate to storage in + ``commodity_rate_units`` (before charge efficiency is applied). + discharge_rate (float): + Maximum commodity output rate from storage in + ``commodity_rate_units`` (before discharge efficiency is applied). + storage_capacity (float): + Rated storage capacity in ``commodity_amount_units``. + sim_start_index (int, optional): + Starting index for writing into persistent output arrays. + Defaults to 0. + + Returns: + tuple[np.ndarray, np.ndarray] + storage_commodity_out_timesteps : + Commodity flow per timestep in ``commodity_rate_units``. + Positive = discharge (commodity leaving storage), + negative = charge (commodity entering storage). + soc_timesteps : + State of charge at the end of each timestep, in percent + (0-100). + """ + + n = len(storage_dispatch_commands) + storage_commodity_out_timesteps = np.zeros(n) + soc_timesteps = np.zeros(n) + + # Early return when storage cannot operate: zero capacity or both + # charge and discharge rates are zero. + if storage_capacity <= 0 or (charge_rate <= 0 and discharge_rate <= 0): + soc_timesteps[:] = self.current_soc * 100.0 + return storage_commodity_out_timesteps, soc_timesteps + + # Pre-compute scalar constants to avoid repeated attribute lookups + # and redundant divisions inside the per-timestep loop. + charge_eff = self.config.charge_efficiency + discharge_eff = self.config.discharge_efficiency + soc_max = self.config.max_soc_fraction + soc_min = self.config.min_soc_fraction + + commands = np.asarray(storage_dispatch_commands, dtype=float) + soc = float(self.current_soc) + + for t, cmd in enumerate(commands): + if cmd < 0.0: + # --- Charging --- + # headroom: how much more commodity the storage can accept, + # expressed as a rate (commodity_rate_units). + headroom = (soc_max - soc) * storage_capacity / self.dt_hr + + # Clip to the most restrictive limit, then apply efficiency. + # max(0, ...) guards against negative headroom when SOC + # slightly exceeds soc_max. + # correct headroom to not include charge_eff. + actual_charge = max(0.0, min(headroom / charge_eff, charge_rate, -cmd)) * charge_eff + + # Update SOC (actual_charge is in post-efficiency units) + soc += actual_charge / storage_capacity + + # Update the amount of commodity used to charge from the input stream + # If charge_eff<1, more commodity is pulled from the input stream than + # the commodity that goes into the storage. + storage_commodity_out_timesteps[t] = -actual_charge / charge_eff + else: + # --- Discharging --- + # headroom: how much commodity can still be drawn before + # hitting the minimum SOC, expressed as a rate. + headroom = (soc - soc_min) * storage_capacity / self.dt_hr + + # Clip to the most restrictive limit without applied efficiency. + # Efficiency losses occur as energy leaves storage. + actual_discharge = max( + 0.0, min(headroom, discharge_rate / discharge_eff, cmd / discharge_eff) + ) + + # Update SOC (actual_discharge is before efficiency losses are applied.) + soc -= actual_discharge / storage_capacity + + # If discharge_eff<1, then less commodity is output from the storage + # than the commodity discharged from storage + storage_commodity_out_timesteps[t] = actual_discharge * discharge_eff + + soc_timesteps[t] = soc * 100.0 + + # Persist the final SOC so subsequent simulate() calls (e.g. from the + # Pyomo controller across rolling windows) start where we left off. + self.current_soc = soc + return storage_commodity_out_timesteps, soc_timesteps diff --git a/h2integrate/storage/storage_performance_model.py b/h2integrate/storage/storage_performance_model.py new file mode 100644 index 000000000..f4eed89c7 --- /dev/null +++ b/h2integrate/storage/storage_performance_model.py @@ -0,0 +1,152 @@ +import numpy as np +from attrs import field, define + +from h2integrate.core.utilities import merge_shared_inputs +from h2integrate.core.validators import gt_zero, range_val, range_val_or_none +from h2integrate.storage.storage_baseclass import ( + StoragePerformanceBase, + StoragePerformanceBaseConfig, +) + + +@define(kw_only=True) +class StoragePerformanceModelConfig(StoragePerformanceBaseConfig): + """Configuration class for storage performance models. + + This class defines configuration parameters for simulating storage + performance with the Pyomo controllers. It includes + specifications such as capacity, charge rate, state-of-charge limits, + and charge/discharge efficiencies. + + Attributes: + commodity (str): name of commodity + commodity_rate_units (str): Units of the commodity (e.g., "kg/h"). + demand_profile (int | float | list): Demand values for each timestep, in + the same units as `commodity_rate_units`. May be a scalar for constant + demand or a list/array for time-varying demand. + max_capacity (float): Maximum storage energy capacity in commodity_amount_units. + Must be greater than zero. + max_charge_rate (float): Rated commodity capacity of the storage in commodity_rate_units. + Must be greater than zero. + min_soc_fraction (float): Minimum allowable state of charge as a fraction (0 to 1). + max_soc_fraction (float): Maximum allowable state of charge as a fraction (0 to 1). + init_soc_fraction (float): Initial state of charge as a fraction (0 to 1). + commodity_amount_units (str | None, optional): Units of the commodity as an amount + (i.e., kW*h or kg). If not provided, defaults to commodity_rate_units*h. + max_discharge_rate (float | None, optional): Maximum rate at which the commodity can be + discharged (in units per time step, e.g., "kg/time step"). This rate does not include + the discharge_efficiency. Only required if `charge_equals_discharge` is False. + charge_equals_discharge (bool, optional): If True, set the max_discharge_rate equal to the + max_charge_rate. If False, specify the max_discharge_rate as a value different than + the max_charge_rate. Defaults to True. + charge_efficiency (float | None, optional): Efficiency of charging the storage, represented + as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if + `round_trip_efficiency` is provided. + discharge_efficiency (float | None, optional): Efficiency of discharging the storage, + represented as a decimal between 0 and 1 (e.g., 0.9 for 90% efficiency). Optional if + `round_trip_efficiency` is provided. + round_trip_efficiency (float | None, optional): Combined efficiency of charging and + discharging the storage, represented as a decimal between 0 and 1 (e.g., 0.81 for + 81% efficiency). Optional if `charge_efficiency` and `discharge_efficiency` are + provided. + + """ + + commodity: str = field() + commodity_rate_units: str = field() + + max_capacity: float = field(validator=gt_zero) + max_charge_rate: float = field(validator=gt_zero) + + init_soc_fraction: float = field(validator=range_val(0, 1)) + + commodity_amount_units: str = field(default=None) + max_discharge_rate: float | None = field(default=None) + charge_equals_discharge: bool = field(default=True) + + charge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + discharge_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + round_trip_efficiency: float | None = field(default=None, validator=range_val_or_none(0, 1)) + + def __attrs_post_init__(self): + """ + Post-initialization logic to validate and calculate efficiencies. + + Ensures that either `charge_efficiency` and `discharge_efficiency` are provided, + or `round_trip_efficiency` is provided. If `round_trip_efficiency` is provided, + it calculates `charge_efficiency` and `discharge_efficiency` as the square root + of `round_trip_efficiency`. + """ + if (self.round_trip_efficiency is not None) and ( + self.charge_efficiency is None and self.discharge_efficiency is None + ): + # Calculate charge and discharge efficiencies from round-trip efficiency + self.charge_efficiency = np.sqrt(self.round_trip_efficiency) + self.discharge_efficiency = np.sqrt(self.round_trip_efficiency) + self.round_trip_efficiency = None + if self.charge_efficiency is None or self.discharge_efficiency is None: + raise ValueError( + "Exactly one of the following sets of parameters must be set: (a) " + "`round_trip_efficiency`, or (b) both `charge_efficiency` " + "and `discharge_efficiency`." + ) + + if self.charge_equals_discharge: + if ( + self.max_discharge_rate is not None + and self.max_discharge_rate != self.max_charge_rate + ): + msg = ( + "Max discharge rate does not equal max charge rate but charge_equals_discharge " + f"is True. Discharge rate is {self.max_discharge_rate} and charge rate " + f"is {self.max_charge_rate}." + ) + raise ValueError(msg) + + self.max_discharge_rate = self.max_charge_rate + + if not self.charge_equals_discharge and self.max_discharge_rate is None: + msg = ( + "max_discharge_rate is required when charge_equals_discharge is False. " + "Please input the discharge rate using the key `max_discharge_rate`." + ) + raise ValueError(msg) + + if self.commodity_amount_units is None: + self.commodity_amount_units = f"({self.commodity_rate_units})*h" + + +class StoragePerformanceModel(StoragePerformanceBase): + """OpenMDAO component for a storage component.""" + + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def setup(self): + self.config = StoragePerformanceModelConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance"), + strict=False, + additional_cls_name=self.__class__.__name__, + ) + + self.commodity = self.config.commodity + self.commodity_rate_units = self.config.commodity_rate_units + self.commodity_amount_units = self.config.commodity_amount_units + + super().setup() + + def compute(self, inputs, outputs, discrete_inputs=[], discrete_outputs=[]): + """Run the storage performance model.""" + self.current_soc = self.config.init_soc_fraction + + charge_rate = inputs["max_charge_rate"][0] + if "max_discharge_rate" in inputs: + discharge_rate = inputs["max_discharge_rate"][0] + else: + discharge_rate = inputs["max_charge_rate"][0] + storage_capacity = inputs["storage_capacity"][0] + outputs = self.run_storage( + charge_rate, discharge_rate, storage_capacity, inputs, outputs, discrete_inputs + ) diff --git a/h2integrate/storage/test/conftest.py b/h2integrate/storage/test/conftest.py index 3ae271aaf..be1f5dacd 100644 --- a/h2integrate/storage/test/conftest.py +++ b/h2integrate/storage/test/conftest.py @@ -6,7 +6,11 @@ import pytest -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/storage/test/test_storage_auto_sizing.py b/h2integrate/storage/test/test_storage_auto_sizing.py new file mode 100644 index 000000000..dffd1951f --- /dev/null +++ b/h2integrate/storage/test/test_storage_auto_sizing.py @@ -0,0 +1,516 @@ +import numpy as np +import pytest +import openmdao.api as om + +from h2integrate.storage.simple_storage_auto_sizing import StorageAutoSizingModel +from h2integrate.control.control_strategies.storage.simple_openloop_controller import ( + SimpleStorageOpenLoopController, +) + + +@pytest.mark.regression +@pytest.mark.parametrize("n_timesteps", [24]) +def test_storage_autosizing_basic_performance_no_losses(plant_config, subtests): + # Basic test to ensure that storage outputs (charge profile, discharge profile, SOC) + # don't violate any performance constraints and that the calculated storage sizes + # are as expected + performance_model_config = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "set_demand_as_avg_commodity_in": True, + "min_soc_fraction": 0.0, + "max_soc_fraction": 1.0, + "commodity_amount_units": "kg", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + } + + commodity_in = np.concat( + [np.full(3, 12.0), np.cumsum(np.ones(15)), np.full(3, 4.0), np.zeros(3)] + ) + commodity_demand = np.full(24, np.mean(commodity_in)) + + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + name="IVC2", + subsys=om.IndepVarComp( + name="hydrogen_set_point", val=commodity_demand - commodity_in, units="kg/h" + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "storage", + StorageAutoSizingModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] + capacity = prob.get_val("storage.storage_capacity", units="kg")[0] + + with subtests.test("Charge rate value"): + assert pytest.approx(charge_rate, rel=1e-6) == np.max(commodity_in) + + with subtests.test("Storage capacity value"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + assert pytest.approx(capacity, rel=1e-6) == expected_capacity + + with subtests.test("Storage duration"): + expected_storage_duration = expected_capacity / np.max(commodity_in) + assert ( + pytest.approx(prob.get_val("storage_duration", units="h"), rel=1e-6) + == expected_storage_duration + ) + + # Basic sanity-check unit tests on storage performance + with subtests.test("Discharge is always positive"): + assert np.all(prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") >= 0) + + with subtests.test("Charge is always negative"): + assert np.all(prob.get_val("storage.storage_hydrogen_charge", units="kg/h") <= 0) + + with subtests.test("Charge + Discharge == hydrogen_out"): + charge_plus_discharge = prob.get_val( + "storage.storage_hydrogen_charge", units="kg/h" + ) + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") + np.testing.assert_allclose( + charge_plus_discharge, prob.get_val("hydrogen_out", units="kg/h"), rtol=1e-6 + ) + + # Check that never charging and discharging at the same time + indx_soc_increase = np.argwhere( + np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) > 0 + ).flatten() + indx_soc_decrease = np.argwhere( + np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=False) < 0 + ).flatten() + indx_soc_same = np.argwhere( + np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) == 0.0 + ).flatten() + + with subtests.test("SOC increases when charging"): + assert np.all( + prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] < 0 + ) + assert np.all( + prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_decrease] == 0 + ) + assert np.all( + prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_same] == 0 + ) + + with subtests.test("SOC decreases when discharging"): + assert np.all( + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_decrease] > 0 + ) + assert np.all( + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_increase] == 0 + ) + assert np.all( + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h")[indx_soc_same] == 0 + ) + + # Check that charge rate limits are respected + with subtests.test("Charge never exceeds charge rate"): + assert np.all( + prob.get_val("storage.storage_hydrogen_charge", units="kg/h") >= -1 * charge_rate + ) + + with subtests.test("Discharge never exceeds discharge rate"): + assert np.all( + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") <= charge_rate + ) + + with subtests.test("Discharge never exceeds demand"): + assert np.all( + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") <= commodity_demand + ) + + with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() >= -1 * capacity + + # Check that demand is fully met, this is because this test starts off with charging the storage + # enough. In cases where the storage is not charged enough at the start, the demand may not + # fully be met + with subtests.test("Demand is fully met"): + combined_out = commodity_in + prob.get_val("hydrogen_out", units="kg/h") + combined_commodity_to_demand = np.clip(combined_out, a_min=0, a_max=commodity_demand) + np.testing.assert_allclose( + combined_commodity_to_demand, commodity_demand, rtol=1e-6, atol=1e-10 + ) + + with subtests.test("Unmet demand"): + unmet_demand = commodity_demand - combined_commodity_to_demand + np.testing.assert_allclose( + unmet_demand, + np.zeros(len(commodity_demand)), + rtol=1e-6, + atol=1e-10, + ) + + with subtests.test("Discharge Profile"): + expected_discharge = np.concat( + [np.zeros(3), np.arange(6, 0, -1), np.zeros(9), np.full(3, 3.0), np.full(3, 7.0)] + ) + np.testing.assert_allclose( + prob.get_val("storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + atol=1e-10, + ) + + with subtests.test("Charge Profile"): + expected_charge = np.concat( + [np.full(3, -5), np.zeros(7), np.arange(-1, -8, -1), np.array([-3]), np.zeros(6)] + ) + np.testing.assert_allclose( + prob.get_val("storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + atol=1e-10, + ) + + with subtests.test("Total unused commodity"): + combined_out = prob.get_val("hydrogen_out", units="kg/h") + commodity_in + unused_commodity_out = combined_out - commodity_demand + assert pytest.approx(unused_commodity_out.sum(), rel=1e-6) == 5.0 + + +@pytest.mark.regression +@pytest.mark.parametrize("n_timesteps", [24]) +def test_storage_autosizing_soc_bounds(plant_config, subtests): + performance_model_config = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "set_demand_as_avg_commodity_in": True, + "min_soc_fraction": 0.1, + "max_soc_fraction": 0.9, + "commodity_amount_units": "kg", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + } + + commodity_in = np.concat( + [np.full(3, 12.0), np.cumsum(np.ones(15)), np.full(3, 4.0), np.zeros(3)] + ) + commodity_demand = np.full(24, np.mean(commodity_in)) + + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + name="IVC2", + subsys=om.IndepVarComp( + name="hydrogen_set_point", val=commodity_demand - commodity_in, units="kg/h" + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "storage", + StorageAutoSizingModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] + capacity = prob.get_val("storage.storage_capacity", units="kg")[0] + + with subtests.test("Charge rate value"): + assert pytest.approx(charge_rate, rel=1e-6) == np.max(commodity_in) + + with subtests.test("Storage capacity value"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_usable_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + + expected_capacity = expected_usable_capacity / ( + performance_model_config["max_soc_fraction"] + - performance_model_config["min_soc_fraction"] + ) + assert pytest.approx(capacity, rel=1e-6) == expected_capacity + + with subtests.test("Storage duration"): + expected_storage_duration = expected_capacity / np.max(commodity_in) + assert ( + pytest.approx(prob.get_val("storage_duration", units="h"), rel=1e-6) + == expected_storage_duration + ) + + with subtests.test("SOC >= min SOC fraction"): + assert np.all( + prob.get_val("storage.SOC", units="unitless") + >= performance_model_config["min_soc_fraction"] + ) + + with subtests.test("SOC <= max SOC fraction"): + assert np.all( + prob.get_val("storage.SOC", units="unitless") + <= performance_model_config["max_soc_fraction"] + ) + + with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() >= -1 * capacity + + # Check that demand is fully met, this is because this test starts off with charging the storage + # enough. In cases where the storage is not charged enough at the start, the demand may not + # fully be met + with subtests.test("Demand is fully met"): + combined_out = commodity_in + prob.get_val("hydrogen_out", units="kg/h") + np.testing.assert_allclose( + np.clip(combined_out, a_min=0, a_max=commodity_demand), + commodity_demand, + rtol=1e-6, + atol=1e-10, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("n_timesteps", [24]) +def test_storage_autosizing_losses(plant_config, subtests): + charge_eff = 0.80 + discharge_eff = 0.75 + performance_model_config = { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "set_demand_as_avg_commodity_in": True, + "min_soc_fraction": 0.0, + "max_soc_fraction": 1.0, + "commodity_amount_units": "kg", + "charge_efficiency": charge_eff, + "discharge_efficiency": discharge_eff, + } + + commodity_in = np.concat( + [np.full(3, 12.0), np.cumsum(np.ones(15)), np.full(3, 4.0), np.zeros(3)] + ) + commodity_demand = np.full(24, np.mean(commodity_in)) + + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + name="IVC2", + subsys=om.IndepVarComp( + name="hydrogen_set_point", val=commodity_demand - commodity_in, units="kg/h" + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "storage", + StorageAutoSizingModel( + plant_config=plant_config, + tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] + capacity = prob.get_val("storage.storage_capacity", units="kg")[0] + + with subtests.test("Discharge never exceeds discharge rate"): + assert np.all( + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") + <= charge_rate * discharge_eff + ) + + with subtests.test("Charge never exceeds charge rate"): + assert np.all( + prob.get_val("storage.storage_hydrogen_charge", units="kg/h") + >= -1 * charge_rate / charge_eff + ) + + # When charging, the increase in the SOC (in kg) should be less than the commodity taken + # from the available commodity to charge + indx_soc_increase = np.argwhere( + np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=True) > 0 + ).flatten() + soc_kg = prob.model.get_val("storage.SOC", units="unitless") * capacity + commodity_to_soc_when_charging = np.diff(soc_kg, prepend=True)[indx_soc_increase] + commodity_from_instream_when_charging = ( + -1 * prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] + ) + charge_losses = 1 - (commodity_to_soc_when_charging / commodity_from_instream_when_charging) + + with subtests.test( + "Charge efficiency: commodity from available > commodity to storage when charging" + ): + assert np.allclose(charge_losses, 1 - charge_eff, rtol=1e-6, atol=1e-10) + + # When discharging, the decrease in the SOC (in kg) should be more than the commodity added + # to the available commodity from discharging + indx_soc_decrease = np.argwhere( + np.diff(prob.model.get_val("storage.SOC", units="unitless"), prepend=False) < 0 + ).flatten() + commodity_from_soc_when_discharging = -1 * np.diff(soc_kg, prepend=False)[indx_soc_decrease] + commodity_to_outstream_when_discharging = prob.get_val( + "storage.storage_hydrogen_discharge", units="kg/h" + )[indx_soc_decrease] + discharge_losses = 1 - ( + commodity_to_outstream_when_discharging / commodity_from_soc_when_discharging + ) + + with subtests.test( + "Discharge efficiency: commodity to available < commodity from storage when discharging" + ): + assert np.allclose(discharge_losses, 1 - discharge_eff, rtol=1e-6, atol=1e-10) + + with subtests.test("Charge Profile"): + expected_charge = np.concat( + [np.full(3, -5), np.zeros(7), np.arange(-1, -9, -1), np.zeros(6)] + ) + np.testing.assert_allclose( + prob.get_val("storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + atol=1e-10, + ) + + with subtests.test("Discharge Profile"): + expected_discharge = np.concat( + [ + np.zeros(3), + np.arange(6, 3, -1), + np.array([2.25]), + np.zeros(11), + np.full(3, 3.0), + np.array([7, 5.6, 0.0]), + ] + ) + np.testing.assert_allclose( + prob.get_val("storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + atol=1e-10, + ) + + +@pytest.mark.regression +@pytest.mark.parametrize("n_timesteps", [24]) +def test_storage_autosizing_with_passthrough_controller(plant_config, subtests): + # Basic test to ensure that storage performance model + # works as-expected with the SimpleStorageOpenLoopController. + # This test should have the same results as test_storage_autosizing_basic_performance_no_losses + + tech_config = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + "set_demand_as_avg_commodity_in": True, + }, + "performance_parameters": { + "min_soc_fraction": 0.0, + "max_soc_fraction": 1.0, + "commodity_amount_units": "kg", + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + }, + } + + commodity_in = np.concat( + [np.full(3, 12.0), np.cumsum(np.ones(15)), np.full(3, 4.0), np.zeros(3)] + ) + commodity_demand = np.full(24, np.mean(commodity_in)) + + prob = om.Problem() + + prob.model.add_subsystem( + name="IVC1", + subsys=om.IndepVarComp(name="hydrogen_in", val=commodity_in, units="kg/h"), + promotes=["*"], + ) + + prob.model.add_subsystem( + "controller", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": tech_config}, + ), + promotes=["*"], + ) + + prob.model.add_subsystem( + "storage", + StorageAutoSizingModel( + plant_config=plant_config, + tech_config={"model_inputs": tech_config}, + ), + promotes=["*"], + ) + + prob.setup() + + prob.run_model() + + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] + capacity = prob.get_val("storage.storage_capacity", units="kg")[0] + + with subtests.test("Charge rate value"): + assert pytest.approx(charge_rate, rel=1e-6) == np.max(commodity_in) + + with subtests.test("Storage capacity value"): + soc_kg = np.cumsum(commodity_demand - commodity_in) + soc_kg_adj = soc_kg + np.abs(np.min(soc_kg)) + expected_capacity = np.max(soc_kg_adj) - np.min(soc_kg_adj) + assert pytest.approx(capacity, rel=1e-6) == expected_capacity + + with subtests.test("Discharge Profile"): + expected_discharge = np.concat( + [np.zeros(3), np.arange(6, 0, -1), np.zeros(9), np.full(3, 3.0), np.full(3, 7.0)] + ) + np.testing.assert_allclose( + prob.get_val("storage_hydrogen_discharge", units="kg/h"), + expected_discharge, + rtol=1e-6, + atol=1e-10, + ) + + with subtests.test("Charge Profile"): + expected_charge = np.concat( + [np.full(3, -5), np.zeros(7), np.arange(-1, -8, -1), np.array([-3]), np.zeros(6)] + ) + np.testing.assert_allclose( + prob.get_val("storage_hydrogen_charge", units="kg/h"), + expected_charge, + rtol=1e-6, + atol=1e-10, + ) diff --git a/h2integrate/storage/test/test_generic_storage_pyo.py b/h2integrate/storage/test/test_storage_performance_model.py similarity index 66% rename from h2integrate/storage/test/test_generic_storage_pyo.py rename to h2integrate/storage/test/test_storage_performance_model.py index af26e05da..aa2996939 100644 --- a/h2integrate/storage/test/test_generic_storage_pyo.py +++ b/h2integrate/storage/test/test_storage_performance_model.py @@ -2,26 +2,34 @@ import pytest import openmdao.api as om -from h2integrate.storage.generic_storage_pyo import StoragePerformanceModel +from h2integrate.storage.storage_performance_model import StoragePerformanceModel +from h2integrate.control.control_strategies.storage.simple_openloop_controller import ( + SimpleStorageOpenLoopController, +) @pytest.mark.regression @pytest.mark.parametrize("n_timesteps", [24]) -def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_config, subtests): +def test_generic_storage_with_simple_control_dmd_lessthan_charge_rate(plant_config, subtests): # this tests a case where the demand < charge rate and charge_rate=discharge_rate - performance_model_config = { - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - "max_capacity": 40, - "max_charge_rate": 10, - "min_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "init_charge_fraction": 0.1, - "n_control_window": 24, - "commodity_amount_units": "kg", - "charge_equals_discharge": True, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, + model_inputs = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + }, + "performance_parameters": { + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "commodity_amount_units": "kg", + "charge_equals_discharge": True, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": 0.0, + }, + "control_parameters": {"set_demand_as_avg_commodity_in": False}, } prob = om.Problem() @@ -41,11 +49,20 @@ def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_confi promotes=["*"], ) + prob.model.add_subsystem( + "control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + prob.model.add_subsystem( "storage", StoragePerformanceModel( plant_config=plant_config, - tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + tech_config={"model_inputs": model_inputs}, ), promotes=["*"], ) @@ -54,6 +71,8 @@ def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_confi prob.run_model() + performance_model_config = model_inputs["performance_parameters"] + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] discharge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] capacity = prob.get_val("storage.storage_capacity", units="kg")[0] @@ -72,17 +91,17 @@ def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_confi with subtests.test("Charge is always negative"): assert np.all(prob.get_val("storage.storage_hydrogen_charge", units="kg/h") <= 0) - with subtests.test("Charge + Discharge == storage_hydrogen_out"): + with subtests.test("Charge + Discharge == hydrogen_out"): charge_plus_discharge = prob.get_val( "storage.storage_hydrogen_charge", units="kg/h" ) + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") np.testing.assert_allclose( - charge_plus_discharge, prob.get_val("storage_hydrogen_out", units="kg/h"), rtol=1e-6 + charge_plus_discharge, prob.get_val("hydrogen_out", units="kg/h"), rtol=1e-6 ) with subtests.test("Initial SOC is correct"): assert ( pytest.approx(prob.model.get_val("storage.SOC", units="unitless")[0], rel=1e-6) - == performance_model_config["init_charge_fraction"] + == performance_model_config["init_soc_fraction"] ) indx_soc_increase = np.argwhere( @@ -120,13 +139,13 @@ def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_confi with subtests.test("Max SOC <= Max storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").max() - <= performance_model_config["max_charge_fraction"] + <= performance_model_config["max_soc_fraction"] ) with subtests.test("Min SOC >= Min storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").min() - >= performance_model_config["min_charge_fraction"] + >= performance_model_config["min_soc_fraction"] ) with subtests.test("Charge never exceeds charge rate"): @@ -146,8 +165,8 @@ def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_confi ) with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).max() <= capacity - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).min() >= -1 * capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() >= -1 * capacity with subtests.test("Expected discharge"): expected_discharge = np.concat([np.zeros(18), np.ones(6)]) @@ -165,24 +184,42 @@ def test_generic_storage_without_controller_dmd_lessthan_charge_rate(plant_confi rtol=1e-6, ) + with subtests.test("Expected capacity factor"): + assert ( + pytest.approx(-12.5, rel=1e-6) + == prob.get_val("storage.capacity_factor", units="percent")[0] + ) + + with subtests.test("Expected standard capacity factor"): + assert ( + pytest.approx(2.5, rel=1e-6) + == prob.get_val("storage.standard_capacity_factor", units="percent")[0] + ) + @pytest.mark.regression @pytest.mark.parametrize("n_timesteps", [24]) -def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_config, subtests): +def test_generic_storage_with_simple_control_charge_rate_lessthan_demand(plant_config, subtests): # this tests a case where the charge_rate < demand and charge_rate=discharge_rate - performance_model_config = { - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - "max_capacity": 400, - "max_charge_rate": 100, - "min_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "init_charge_fraction": 0.1, - "n_control_window": 24, - "commodity_amount_units": "kg", - "charge_equals_discharge": True, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, + model_inputs = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + }, + "performance_parameters": { + "max_capacity": 400, + "max_charge_rate": 100, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "n_control_window": 24, + "commodity_amount_units": "kg", + "charge_equals_discharge": True, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": 0.0, + }, + "control_parameters": {"set_demand_as_avg_commodity_in": False}, } prob = om.Problem() @@ -202,11 +239,20 @@ def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_co promotes=["*"], ) + prob.model.add_subsystem( + "control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + prob.model.add_subsystem( "storage", StoragePerformanceModel( plant_config=plant_config, - tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + tech_config={"model_inputs": model_inputs}, ), promotes=["*"], ) @@ -220,6 +266,8 @@ def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_co prob.run_model() + performance_model_config = model_inputs["performance_parameters"] + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] discharge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] capacity = prob.get_val("storage.storage_capacity", units="kg")[0] @@ -238,17 +286,17 @@ def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_co with subtests.test("Charge is always negative"): assert np.all(prob.get_val("storage.storage_hydrogen_charge", units="kg/h") <= 0) - with subtests.test("Charge + Discharge == storage_hydrogen_out"): + with subtests.test("Charge + Discharge == hydrogen_out"): charge_plus_discharge = prob.get_val( "storage.storage_hydrogen_charge", units="kg/h" ) + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") np.testing.assert_allclose( - charge_plus_discharge, prob.get_val("storage_hydrogen_out", units="kg/h"), rtol=1e-6 + charge_plus_discharge, prob.get_val("hydrogen_out", units="kg/h"), rtol=1e-6 ) with subtests.test("Initial SOC is correct"): init_soc_expected = ( - performance_model_config["init_charge_fraction"] - - prob.get_val("storage_hydrogen_out", units="kg/h")[0] / capacity + performance_model_config["init_soc_fraction"] + - prob.get_val("hydrogen_out", units="kg/h")[0] / capacity ) assert ( pytest.approx(prob.model.get_val("storage.SOC", units="unitless")[0], rel=1e-6) @@ -290,13 +338,13 @@ def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_co with subtests.test("Max SOC <= Max storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").max() - <= performance_model_config["max_charge_fraction"] + <= performance_model_config["max_soc_fraction"] ) with subtests.test("Min SOC >= Min storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").min() - >= performance_model_config["min_charge_fraction"] + >= performance_model_config["min_soc_fraction"] ) with subtests.test("Charge never exceeds charge rate"): @@ -316,8 +364,8 @@ def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_co ) with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).max() <= capacity - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).min() >= -1 * capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity + assert np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() >= -1 * capacity with subtests.test("Expected discharge"): expected_discharge = np.concat( @@ -340,25 +388,51 @@ def test_generic_storage_without_controller_charge_rate_lessthan_demand(plant_co rtol=1e-6, ) + with subtests.test("Total charge = total discharge"): + assert ( + pytest.approx( + -1 * prob.get_val("storage.storage_hydrogen_charge", units="kg/h").sum(), rel=1e-6 + ) + == prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").sum() + ) + + with subtests.test("Expected capacity factor"): + assert ( + pytest.approx(0.0, rel=1e-6) + == prob.get_val("storage.capacity_factor", units="percent")[0] + ) + + with subtests.test("Expected standard capacity factor"): + assert ( + pytest.approx(15.416666, rel=1e-6) + == prob.get_val("storage.standard_capacity_factor", units="percent")[0] + ) + @pytest.mark.regression @pytest.mark.parametrize("n_timesteps", [24]) -def test_generic_storage_without_controller_zero_size(plant_config, subtests): +def test_generic_storage_with_simple_control_zero_size(plant_config, subtests): # this tests a case where the charge_rate < demand and charge_rate=discharge_rate - performance_model_config = { - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - "max_capacity": 40, - "max_charge_rate": 10, - "max_discharge_rate": 10, - "min_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "init_charge_fraction": 0.1, - "n_control_window": 24, - "commodity_amount_units": "kg", - "charge_equals_discharge": False, - "charge_efficiency": 1.0, - "discharge_efficiency": 1.0, + model_inputs = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + }, + "performance_parameters": { + "max_capacity": 40, + "max_charge_rate": 10, + "max_discharge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "n_control_window": 24, + "commodity_amount_units": "kg", + "charge_equals_discharge": False, + "charge_efficiency": 1.0, + "discharge_efficiency": 1.0, + "demand_profile": 0.0, + }, + "control_parameters": {"set_demand_as_avg_commodity_in": False}, } prob = om.Problem() @@ -378,11 +452,20 @@ def test_generic_storage_without_controller_zero_size(plant_config, subtests): promotes=["*"], ) + prob.model.add_subsystem( + "control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + prob.model.add_subsystem( "storage", StoragePerformanceModel( plant_config=plant_config, - tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + tech_config={"model_inputs": model_inputs}, ), promotes=["*"], ) @@ -398,6 +481,8 @@ def test_generic_storage_without_controller_zero_size(plant_config, subtests): prob.run_model() + performance_model_config = model_inputs["performance_parameters"] + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] discharge_rate = prob.get_val("storage.max_discharge_rate", units="kg/h")[0] capacity = prob.get_val("storage.storage_capacity", units="kg")[0] @@ -447,7 +532,7 @@ def test_generic_storage_without_controller_zero_size(plant_config, subtests): with subtests.test("SOC never changes"): assert np.all( prob.get_val("storage.SOC", units="unitless") - == performance_model_config["init_charge_fraction"] + == performance_model_config["init_soc_fraction"] ) # Test when capacity is zero @@ -481,33 +566,56 @@ def test_generic_storage_without_controller_zero_size(plant_config, subtests): with subtests.test("SOC never changes"): assert np.all( prob.get_val("storage.SOC", units="unitless") - == performance_model_config["init_charge_fraction"] + == performance_model_config["init_soc_fraction"] + ) + + with subtests.test("Expected capacity factor"): + assert ( + pytest.approx(0.0, rel=1e-6) + == prob.get_val("storage.capacity_factor", units="percent")[0] + ) + + with subtests.test("Expected standard capacity factor"): + assert ( + pytest.approx(0.0, rel=1e-6) + == prob.get_val("storage.standard_capacity_factor", units="percent")[0] ) @pytest.mark.regression @pytest.mark.parametrize("n_timesteps", [24]) -def test_generic_storage_without_controller_with_losses(plant_config, subtests): +def test_generic_storage_with_simple_control_with_losses(plant_config, subtests): # this tests a case where the demand < charge rate and charge_rate=discharge_rate - performance_model_config = { - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - "max_capacity": 40, - "max_charge_rate": 10, - "min_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "init_charge_fraction": 0.1, - "n_control_window": 24, - "commodity_amount_units": "kg", - "charge_equals_discharge": True, - "charge_efficiency": 0.80, - "discharge_efficiency": 0.75, + charge_eff = 0.80 + discharge_eff = 0.75 + model_inputs = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + }, + "performance_parameters": { + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "n_control_window": 24, + "commodity_amount_units": "kg", + "charge_equals_discharge": True, + "charge_efficiency": charge_eff, + "discharge_efficiency": discharge_eff, + "demand_profile": 0.0, + }, + "control_parameters": {"set_demand_as_avg_commodity_in": False}, } prob = om.Problem() - commodity_demand = np.full(24, 5.0) - commodity_in = np.concat([np.zeros(3), np.cumsum(np.ones(15)), np.full(6, 4.0)]) + # demand is below then above the charge rate + commodity_demand = np.concat([np.full(12, 5.0), np.full(12, 20.0)]) + # start with charging for first 3 hours (in>demand), + # then discharging at last 6 hours (in= Min storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").min() - >= performance_model_config["min_charge_fraction"] + >= performance_model_config["min_soc_fraction"] ) with subtests.test("Charge never exceeds charge rate"): assert ( prob.get_val("storage.storage_hydrogen_charge", units="kg/h").min() - >= -1 * charge_rate * performance_model_config["charge_efficiency"] + >= -1 * charge_rate / charge_eff ) with subtests.test("Discharge never exceeds discharge rate"): assert ( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() - <= discharge_rate * performance_model_config["discharge_efficiency"] + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() <= discharge_rate ) with subtests.test("Discharge never exceeds demand"): assert np.all( - prob.get_val("storage.storage_hydrogen_discharge", units="kg/h").max() - <= commodity_demand + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") <= commodity_demand ) with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).max() <= capacity - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).min() >= -1 * capacity + assert ( + np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity * discharge_eff + ) + assert ( + np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() + >= -1 * capacity / charge_eff + ) + + # When charging, the increase in the SOC (in kg) should be less than the commodity taken + # from the available commodity to charge + soc_kg = prob.model.get_val("storage.SOC", units="unitless") * capacity + commodity_to_soc_when_charging = np.diff(soc_kg, prepend=True)[indx_soc_increase] + commodity_from_instream_when_charging = ( + -1 * prob.get_val("storage.storage_hydrogen_charge", units="kg/h")[indx_soc_increase] + ) + charge_losses = 1 - (commodity_to_soc_when_charging / commodity_from_instream_when_charging) + + with subtests.test( + "Charge efficiency: commodity from available > commodity to storage when charging" + ): + assert np.allclose(charge_losses, 1 - charge_eff, rtol=1e-6, atol=1e-10) + + # When discharging, the decrease in the SOC (in kg) should be more than the commodity added + # to the available commodity from discharging + commodity_from_soc_when_discharging = -1 * np.diff(soc_kg, prepend=False)[indx_soc_decrease] + commodity_to_outstream_when_discharging = prob.get_val( + "storage.storage_hydrogen_discharge", units="kg/h" + )[indx_soc_decrease] + discharge_losses = 1 - ( + commodity_to_outstream_when_discharging / commodity_from_soc_when_discharging + ) + + with subtests.test( + "Discharge efficiency: commodity to available < commodity from storage when discharging" + ): + assert np.allclose(discharge_losses, 1 - discharge_eff, rtol=1e-6, atol=1e-10) with subtests.test("Expected discharge"): expected_discharge = np.concat( - [np.zeros(18), performance_model_config["discharge_efficiency"] * np.ones(6)] + [np.zeros(3), np.array([4, 1.4]), np.zeros(7), np.array([6]), np.zeros(11)] ) np.testing.assert_allclose( prob.get_val("storage.storage_hydrogen_discharge", units="kg/h"), @@ -643,7 +799,7 @@ def test_generic_storage_without_controller_with_losses(plant_config, subtests): with subtests.test("Expected charge"): expected_charge = np.concat( - [np.zeros(8), np.arange(-0.8, -7.2, -0.8), np.array([-5.76, -1.152]), np.zeros(6)] + [np.full(3, -3.0), np.zeros(5), np.arange(-1, -5, -1), np.zeros(12)] ) np.testing.assert_allclose( prob.get_val("storage.storage_hydrogen_charge", units="kg/h"), @@ -651,23 +807,44 @@ def test_generic_storage_without_controller_with_losses(plant_config, subtests): rtol=1e-6, ) + with subtests.test("Expected capacity factor"): + assert ( + pytest.approx(-3.16666666, rel=1e-6) + == prob.get_val("storage.capacity_factor", units="percent")[0] + ) + + with subtests.test("Expected standard capacity factor"): + assert ( + pytest.approx(4.750, rel=1e-6) + == prob.get_val("storage.standard_capacity_factor", units="percent")[0] + ) + @pytest.mark.regression @pytest.mark.parametrize("n_timesteps", [24]) -def test_generic_storage_without_controller_with_losses_round_trip(plant_config, subtests): +def test_generic_storage_with_simple_control_with_losses_round_trip(plant_config, subtests): # this tests a case where the demand < charge rate and charge_rate=discharge_rate - performance_model_config = { - "commodity": "hydrogen", - "commodity_rate_units": "kg/h", - "max_capacity": 40, - "max_charge_rate": 10, - "min_charge_fraction": 0.1, - "max_charge_fraction": 1.0, - "init_charge_fraction": 0.1, - "n_control_window": 24, - "commodity_amount_units": "kg", - "charge_equals_discharge": True, - "round_trip_efficiency": 0.6, + charge_eff = 0.75 + discharge_eff = 0.75 + round_trip_eff = charge_eff * discharge_eff + model_inputs = { + "shared_parameters": { + "commodity": "hydrogen", + "commodity_rate_units": "kg/h", + }, + "performance_parameters": { + "max_capacity": 40, + "max_charge_rate": 10, + "min_soc_fraction": 0.1, + "max_soc_fraction": 1.0, + "init_soc_fraction": 0.1, + "n_control_window": 24, + "commodity_amount_units": "kg", + "charge_equals_discharge": True, + "round_trip_efficiency": round_trip_eff, + "demand_profile": 0.0, + }, + "control_parameters": {"set_demand_as_avg_commodity_in": False}, } prob = om.Problem() @@ -687,11 +864,20 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, promotes=["*"], ) + prob.model.add_subsystem( + "control", + SimpleStorageOpenLoopController( + plant_config=plant_config, + tech_config={"model_inputs": model_inputs}, + ), + promotes=["*"], + ) + prob.model.add_subsystem( "storage", StoragePerformanceModel( plant_config=plant_config, - tech_config={"model_inputs": {"performance_parameters": performance_model_config}}, + tech_config={"model_inputs": model_inputs}, ), promotes=["*"], ) @@ -700,6 +886,8 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, prob.run_model() + performance_model_config = model_inputs["performance_parameters"] + charge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] discharge_rate = prob.get_val("storage.max_charge_rate", units="kg/h")[0] capacity = prob.get_val("storage.storage_capacity", units="kg")[0] @@ -718,17 +906,17 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, with subtests.test("Charge is always negative"): assert np.all(prob.get_val("storage.storage_hydrogen_charge", units="kg/h") <= 0) - with subtests.test("Charge + Discharge == storage_hydrogen_out"): + with subtests.test("Charge + Discharge == hydrogen_out"): charge_plus_discharge = prob.get_val( "storage.storage_hydrogen_charge", units="kg/h" ) + prob.get_val("storage.storage_hydrogen_discharge", units="kg/h") np.testing.assert_allclose( - charge_plus_discharge, prob.get_val("storage_hydrogen_out", units="kg/h"), rtol=1e-6 + charge_plus_discharge, prob.get_val("hydrogen_out", units="kg/h"), rtol=1e-6 ) with subtests.test("Initial SOC is correct"): assert ( pytest.approx(prob.model.get_val("storage.SOC", units="unitless")[0], rel=1e-6) - == performance_model_config["init_charge_fraction"] + == performance_model_config["init_soc_fraction"] ) indx_soc_increase = np.argwhere( @@ -766,19 +954,20 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, with subtests.test("Max SOC <= Max storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").max() - <= performance_model_config["max_charge_fraction"] + <= performance_model_config["max_soc_fraction"] ) with subtests.test("Min SOC >= Min storage percent"): assert ( prob.get_val("storage.SOC", units="unitless").min() - >= performance_model_config["min_charge_fraction"] + >= performance_model_config["min_soc_fraction"] ) with subtests.test("Charge never exceeds charge rate"): - assert prob.get_val( - "storage.storage_hydrogen_charge", units="kg/h" - ).min() >= -1 * charge_rate * np.sqrt(performance_model_config["round_trip_efficiency"]) + assert ( + prob.get_val("storage.storage_hydrogen_charge", units="kg/h").min() + >= -1 * charge_rate / charge_eff + ) with subtests.test("Discharge never exceeds discharge rate"): assert prob.get_val( @@ -792,13 +981,16 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, ) with subtests.test("Cumulative charge/discharge does not exceed storage capacity"): - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).max() <= capacity - assert np.cumsum(prob.get_val("storage_hydrogen_out", units="kg/h")).min() >= -1 * capacity + assert ( + np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).max() <= capacity * discharge_eff + ) + assert ( + np.cumsum(prob.get_val("hydrogen_out", units="kg/h")).min() + >= -1 * capacity / charge_eff + ) with subtests.test("Expected discharge"): - expected_discharge = np.concat( - [np.zeros(18), np.sqrt(performance_model_config["round_trip_efficiency"]) * np.ones(6)] - ) + expected_discharge = np.concat([np.zeros(18), np.ones(6)]) np.testing.assert_allclose( prob.get_val("storage.storage_hydrogen_discharge", units="kg/h"), expected_discharge, @@ -809,12 +1001,8 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, expected_charge = np.concat( [ np.zeros(8), - np.arange( - -1 * np.sqrt(performance_model_config["round_trip_efficiency"]), - -6.5, - -np.sqrt(performance_model_config["round_trip_efficiency"]), - ), - np.array([-6.28548009, -1.41676815]), + np.arange(-1, -10, -1), + np.array([-3]), np.zeros(6), ] ) @@ -823,3 +1011,15 @@ def test_generic_storage_without_controller_with_losses_round_trip(plant_config, expected_charge, rtol=1e-6, ) + + with subtests.test("Expected capacity factor"): + assert ( + pytest.approx(-17.5, rel=1e-6) + == prob.get_val("storage.capacity_factor", units="percent")[0] + ) + + with subtests.test("Expected standard capacity factor"): + assert ( + pytest.approx(2.5, rel=1e-6) + == prob.get_val("storage.standard_capacity_factor", units="percent")[0] + ) diff --git a/h2integrate/test/conftest.py b/h2integrate/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/test/conftest.py +++ b/h2integrate/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/tools/profast_tools.py b/h2integrate/tools/profast_tools.py index 8aed16123..33d0c810b 100644 --- a/h2integrate/tools/profast_tools.py +++ b/h2integrate/tools/profast_tools.py @@ -134,11 +134,16 @@ def make_price_breakdown(price_breakdown, pf_config): total_price_capex += cash_outflow_prices.loc[ cash_outflow_prices["Name"] == item, "NPV" ].tolist()[0] - for item in capital_items: - capex_fraction[item] = ( - cash_outflow_prices.loc[cash_outflow_prices["Name"] == item, "NPV"].tolist()[0] - / total_price_capex - ) + if total_price_capex != 0: + for item in capital_items: + capex_fraction[item] = ( + cash_outflow_prices.loc[cash_outflow_prices["Name"] == item, "NPV"].tolist()[0] + / total_price_capex + ) + else: + for item in capital_items: + capex_fraction[item] = 0 + cap_expense = ( price_breakdown.loc[price_breakdown["Name"] == "Repayment of debt", "NPV"].tolist()[0] + price_breakdown.loc[price_breakdown["Name"] == "Interest expense", "NPV"].tolist()[0] diff --git a/h2integrate/tools/test/conftest.py b/h2integrate/tools/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/tools/test/conftest.py +++ b/h2integrate/tools/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/transporters/cable.py b/h2integrate/transporters/cable.py index 5b369367b..95730cad5 100644 --- a/h2integrate/transporters/cable.py +++ b/h2integrate/transporters/cable.py @@ -6,24 +6,29 @@ class CablePerformanceModel(om.ExplicitComponent): Pass-through cable with no losses. """ + _time_step_bounds = ( + 1, + 1e9, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("transport_item", values=["electricity"]) + self.options.declare("plant_config", types=dict) def setup(self): + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) self.input_name = self.options["transport_item"] + "_in" self.output_name = self.options["transport_item"] + "_out" self.add_input( self.input_name, val=-1.0, - shape_by_conn=True, - copy_shape=self.output_name, + shape=n_timesteps, units="kW", ) self.add_output( self.output_name, val=-1.0, - shape_by_conn=True, - copy_shape=self.input_name, + shape=n_timesteps, units="kW", ) diff --git a/h2integrate/transporters/gas_stream_combiner.py b/h2integrate/transporters/gas_stream_combiner.py new file mode 100644 index 000000000..9a53bb936 --- /dev/null +++ b/h2integrate/transporters/gas_stream_combiner.py @@ -0,0 +1,113 @@ +""" +Gas stream combiner for multivariable streams. + +Combines multiple gas streams using mass-weighted averaging for intensive properties +(temperature, pressure, composition) while summing extensive properties (mass flow). +""" + +import numpy as np +import openmdao.api as om +from attrs import field, define + +from h2integrate.core.utilities import BaseConfig, merge_shared_inputs +from h2integrate.core.commodity_stream_definitions import multivariable_streams + + +@define(kw_only=True) +class GasStreamCombinerConfig(BaseConfig): + """Configuration for the gas stream combiner. + + Attributes: + commodity: Type of multivariable stream (e.g., 'wellhead_gas_mixture') + in_streams: Number of inflow streams to combine + """ + + commodity: str = field(default="wellhead_gas_mixture") + in_streams: int = field(default=2) + + def __attrs_post_init__(self): + if self.commodity not in multivariable_streams: + raise ValueError( + f"Unknown commodity '{self.commodity}'. " + f"Available: {list(multivariable_streams.keys())}" + ) + + +class GasStreamCombinerPerformanceModel(om.ExplicitComponent): + """ + Combine multiple gas streams into one using mass-weighted averaging. + + Total mass flow is summed. Temperature, pressure, and compositions are + mass-weighted averages of the input streams. + """ + + _time_step_bounds = ( + 1, + 1e9, + ) # (min, max) time step lengths (in seconds) compatible with this model + + def initialize(self): + self.options.declare("driver_config", types=dict) + self.options.declare("plant_config", types=dict) + self.options.declare("tech_config", types=dict) + + def setup(self): + self.config = GasStreamCombinerConfig.from_dict( + merge_shared_inputs(self.options["tech_config"]["model_inputs"], "performance") + ) + + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + stream_def = multivariable_streams[self.config.commodity] + stream_name = self.config.commodity + + # Add inputs for each stream + for i in range(1, self.config.in_streams + 1): + for var_name, var_props in stream_def.items(): + self.add_input( + f"{stream_name}:{var_name}_in{i}", + val=0.0, + shape=n_timesteps, + units=var_props.get("units"), + desc=f"Stream {i}: {var_props.get('desc', '')}", + ) + + # Add outputs + for var_name, var_props in stream_def.items(): + self.add_output( + f"{stream_name}:{var_name}_out", + val=0.0, + shape=n_timesteps, + units=var_props.get("units"), + desc=f"Combined: {var_props.get('desc', '')}", + ) + + # Identify the flow variable for weighting + self._flow_var = next((v for v in stream_def.keys() if "flow" in v.lower()), None) + if self._flow_var is None: + raise ValueError(f"No flow variable found in '{self.config.commodity}'") + + def compute(self, inputs, outputs): + n_streams = self.config.in_streams + stream_def = multivariable_streams[self.config.commodity] + stream_name = self.config.commodity + flow_var = self._flow_var + + # Collect mass flows + mass_flows = [inputs[f"{stream_name}:{flow_var}_in{i}"] for i in range(1, n_streams + 1)] + total_mass_flow = sum(mass_flows) + outputs[f"{stream_name}:{flow_var}_out"] = total_mass_flow + + # Mass-weighted average for other variables + for var_name in stream_def.keys(): + if var_name == flow_var: + continue + + weighted_sum = sum( + inputs[f"{stream_name}:{var_name}_in{i}"] * mass_flows[i - 1] + for i in range(1, n_streams + 1) + ) + + with np.errstate(divide="ignore", invalid="ignore"): + outputs[f"{stream_name}:{var_name}_out"] = np.where( + total_mass_flow > 0, weighted_sum / total_mass_flow, 0.0 + ) diff --git a/h2integrate/transporters/generic_combiner.py b/h2integrate/transporters/generic_combiner.py index d6aea2e4b..d9d11a2ef 100644 --- a/h2integrate/transporters/generic_combiner.py +++ b/h2integrate/transporters/generic_combiner.py @@ -38,6 +38,11 @@ class GenericCombinerPerformanceModel(om.ExplicitComponent): the output commodity profile is the element-wise sum of all input profiles. """ + _time_step_bounds = ( + 1, + 1e9, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) diff --git a/h2integrate/transporters/generic_splitter.py b/h2integrate/transporters/generic_splitter.py index ddfe4df6d..3f07a3df8 100644 --- a/h2integrate/transporters/generic_splitter.py +++ b/h2integrate/transporters/generic_splitter.py @@ -63,6 +63,11 @@ class GenericSplitterPerformanceModel(om.ExplicitComponent): losses or other considerations from system components. """ + _time_step_bounds = ( + 1, + 1e9, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict, default={}) self.options.declare("plant_config", types=dict, default={}) @@ -75,10 +80,12 @@ def setup(self): additional_cls_name=self.__class__.__name__, ) + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + self.add_input( f"{self.config.commodity}_in", val=0.0, - shape_by_conn=True, + shape=n_timesteps, units=self.config.commodity_rate_units, ) @@ -94,7 +101,7 @@ def setup(self): self.add_input( "prescribed_commodity_to_priority_tech", val=self.config.prescribed_commodity_to_priority_tech, - copy_shape=f"{self.config.commodity}_in", + shape=n_timesteps, units=self.config.commodity_rate_units, desc="Prescribed amount of commodity to send to the priority technology", ) @@ -102,14 +109,14 @@ def setup(self): self.add_output( f"{self.config.commodity}_out1", val=0.0, - copy_shape=f"{self.config.commodity}_in", + shape=n_timesteps, units=self.config.commodity_rate_units, desc=f"{self.config.commodity} output to the first technology", ) self.add_output( f"{self.config.commodity}_out2", val=0.0, - copy_shape=f"{self.config.commodity}_in", + shape=n_timesteps, units=self.config.commodity_rate_units, desc=f"{self.config.commodity} output to the second technology", ) diff --git a/h2integrate/transporters/generic_summer.py b/h2integrate/transporters/generic_summer.py index 32e27c338..c0ef79a15 100644 --- a/h2integrate/transporters/generic_summer.py +++ b/h2integrate/transporters/generic_summer.py @@ -26,6 +26,11 @@ class GenericSummerPerformanceModel(om.ExplicitComponent): Sum the production or consumption profile of some commodity from a single source. """ + _time_step_bounds = ( + 3600, + 3600, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) diff --git a/h2integrate/transporters/generic_transporter.py b/h2integrate/transporters/generic_transporter.py index c94606ac7..642b98777 100644 --- a/h2integrate/transporters/generic_transporter.py +++ b/h2integrate/transporters/generic_transporter.py @@ -23,6 +23,11 @@ class GenericTransporterPerformanceModel(om.ExplicitComponent): losses or other considerations from system components. """ + _time_step_bounds = ( + 1, + 1e9, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare("driver_config", types=dict) self.options.declare("plant_config", types=dict) diff --git a/h2integrate/transporters/pipe.py b/h2integrate/transporters/pipe.py index f0edbf669..45c6cda3e 100644 --- a/h2integrate/transporters/pipe.py +++ b/h2integrate/transporters/pipe.py @@ -6,6 +6,11 @@ class PipePerformanceModel(om.ExplicitComponent): Pass-through pipe with no losses. """ + _time_step_bounds = ( + 1, + 1e9, + ) # (min, max) time step lengths (in seconds) compatible with this model + def initialize(self): self.options.declare( "transport_item", @@ -20,12 +25,15 @@ def initialize(self): "water", ], ) + self.options.declare("plant_config", types=dict) def setup(self): transport_item = self.options["transport_item"] self.input_name = transport_item + "_in" self.output_name = transport_item + "_out" + n_timesteps = int(self.options["plant_config"]["plant"]["simulation"]["n_timesteps"]) + if transport_item == "natural_gas": units = "MMBtu/h" elif transport_item == "water": @@ -38,15 +46,13 @@ def setup(self): self.add_input( self.input_name, val=-1.0, - shape_by_conn=True, - copy_shape=self.output_name, + shape=n_timesteps, units=units, ) self.add_output( self.output_name, val=-1.0, - shape_by_conn=True, - copy_shape=self.input_name, + shape=n_timesteps, units=units, ) diff --git a/h2integrate/transporters/test/conftest.py b/h2integrate/transporters/test/conftest.py index aec692e38..a4763a760 100644 --- a/h2integrate/transporters/test/conftest.py +++ b/h2integrate/transporters/test/conftest.py @@ -4,7 +4,11 @@ import os -from test.conftest import temp_dir, pytest_collection_modifyitems # noqa: F401 +from test.conftest import ( # noqa: F401 + temp_dir, + temp_copy_of_example, + pytest_collection_modifyitems, +) def pytest_sessionstart(session): diff --git a/h2integrate/transporters/test/test_generic_splitter.py b/h2integrate/transporters/test/test_generic_splitter.py index ee0c7411f..7f9f2cfb3 100644 --- a/h2integrate/transporters/test/test_generic_splitter.py +++ b/h2integrate/transporters/test/test_generic_splitter.py @@ -25,10 +25,16 @@ def splitter_tech_config_hydrogen(): rng = np.random.default_rng(seed=0) +N_TIMESTEPS = 10 + + +@fixture +def plant_config(): + return {"plant": {"simulation": {"n_timesteps": N_TIMESTEPS}}} @pytest.mark.regression -def test_splitter_ratio_mode_edge_cases_electricity(splitter_tech_config_electricity): +def test_splitter_ratio_mode_edge_cases_electricity(splitter_tech_config_electricity, plant_config): """Test the splitter in fraction mode with edge case fractions.""" performance_config = { "split_mode": "fraction", @@ -40,45 +46,45 @@ def test_splitter_ratio_mode_edge_cases_electricity(splitter_tech_config_electri tech_config = {"model_inputs": {"performance_parameters": performance_config}} prob = om.Problem() - comp = GenericSplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config, plant_config=plant_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() - ivc.add_output("electricity_in", val=100.0, units="kW") + ivc.add_output("electricity_in", val=np.full(N_TIMESTEPS, 100.0), units="kW") ivc.add_output("fraction_to_priority_tech", val=0.0) prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() - electricity_input = 100.0 + electricity_input = np.full(N_TIMESTEPS, 100.0) prob.set_val("electricity_in", electricity_input, units="kW") prob.set_val("fraction_to_priority_tech", 0.0) prob.run_model() - assert prob.get_val("electricity_out1", units="kW") == approx(0.0, abs=1e-10) + assert prob.get_val("electricity_out1", units="kW") == approx(np.zeros(N_TIMESTEPS), abs=1e-10) assert prob.get_val("electricity_out2", units="kW") == approx(electricity_input, rel=1e-5) prob.set_val("fraction_to_priority_tech", 1.0) prob.run_model() assert prob.get_val("electricity_out1", units="kW") == approx(electricity_input, rel=1e-5) - assert prob.get_val("electricity_out2", units="kW") == approx(0.0, abs=1e-10) + assert prob.get_val("electricity_out2", units="kW") == approx(np.zeros(N_TIMESTEPS), abs=1e-10) prob.set_val("fraction_to_priority_tech", 1.5) prob.run_model() assert prob.get_val("electricity_out1", units="kW") == approx(electricity_input, rel=1e-5) - assert prob.get_val("electricity_out2", units="kW") == approx(0.0, abs=1e-10) + assert prob.get_val("electricity_out2", units="kW") == approx(np.zeros(N_TIMESTEPS), abs=1e-10) prob.set_val("fraction_to_priority_tech", -0.5) prob.run_model() - assert prob.get_val("electricity_out1", units="kW") == approx(0.0, abs=1e-10) + assert prob.get_val("electricity_out1", units="kW") == approx(np.zeros(N_TIMESTEPS), abs=1e-10) assert prob.get_val("electricity_out2", units="kW") == approx(electricity_input, rel=1e-5) @pytest.mark.regression -def test_splitter_prescribed_electricity_mode(splitter_tech_config_electricity): +def test_splitter_prescribed_electricity_mode(splitter_tech_config_electricity, plant_config): """Test the splitter in prescribed_electricity mode.""" performance_config = { "split_mode": "prescribed_commodity", @@ -90,17 +96,17 @@ def test_splitter_prescribed_electricity_mode(splitter_tech_config_electricity): tech_config = {"model_inputs": {"performance_parameters": performance_config}} prob = om.Problem() - comp = GenericSplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config, plant_config=plant_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() - ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") - ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in", val=np.zeros(N_TIMESTEPS), units="kW") + ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(N_TIMESTEPS), units="kW") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() - electricity_input = rng.random(8760) * 500 + 300 - prescribed_electricity = np.full(8760, 200.0) + electricity_input = rng.random(N_TIMESTEPS) * 500 + 300 + prescribed_electricity = np.full(N_TIMESTEPS, 200.0) prob.set_val("electricity_in", electricity_input, units="kW") prob.set_val("prescribed_commodity_to_priority_tech", prescribed_electricity, units="kW") @@ -119,7 +125,9 @@ def test_splitter_prescribed_electricity_mode(splitter_tech_config_electricity): @pytest.mark.regression -def test_splitter_prescribed_electricity_mode_limited_input(splitter_tech_config_electricity): +def test_splitter_prescribed_electricity_mode_limited_input( + splitter_tech_config_electricity, plant_config +): """ Test the splitter in prescribed_electricity mode when input is less than prescribed electricity. @@ -135,31 +143,31 @@ def test_splitter_prescribed_electricity_mode_limited_input(splitter_tech_config tech_config = {"model_inputs": {"performance_parameters": performance_config}} prob = om.Problem() - comp = GenericSplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config, plant_config=plant_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() - ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") - ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in", val=np.zeros(N_TIMESTEPS), units="kW") + ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(N_TIMESTEPS), units="kW") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() - electricity_input = np.full(8760, 100.0) - prescribed_electricity = np.full(8760, 150.0) + electricity_input = np.full(N_TIMESTEPS, 100.0) + prescribed_electricity = np.full(N_TIMESTEPS, 150.0) prob.set_val("electricity_in", electricity_input, units="kW") prob.set_val("prescribed_commodity_to_priority_tech", prescribed_electricity, units="kW") prob.run_model() expected_output1 = electricity_input - expected_output2 = np.zeros(8760) + expected_output2 = np.zeros(N_TIMESTEPS) assert prob.get_val("electricity_out1", units="kW") == approx(expected_output1, rel=1e-5) assert prob.get_val("electricity_out2", units="kW") == approx(expected_output2, abs=1e-10) @pytest.mark.unit -def test_splitter_invalid_mode(splitter_tech_config_electricity): +def test_splitter_invalid_mode(splitter_tech_config_electricity, plant_config): """Test that an invalid split mode raises an error.""" performance_config = { "split_mode": "invalid_mode", @@ -174,13 +182,13 @@ def test_splitter_invalid_mode(splitter_tech_config_electricity): match="Item invalid_mode not found in list", ): prob = om.Problem() - comp = GenericSplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config, plant_config=plant_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) prob.setup() @pytest.mark.regression -def test_splitter_scalar_inputs(splitter_tech_config_electricity): +def test_splitter_scalar_inputs(splitter_tech_config_electricity, plant_config): """Test the splitter with scalar inputs instead of arrays.""" performance_config_ratio = { "split_mode": "fraction", @@ -191,18 +199,22 @@ def test_splitter_scalar_inputs(splitter_tech_config_electricity): tech_config_ratio = {"model_inputs": {"performance_parameters": performance_config_ratio}} prob = om.Problem() - comp = GenericSplitterPerformanceModel(tech_config=tech_config_ratio) + comp = GenericSplitterPerformanceModel(tech_config=tech_config_ratio, plant_config=plant_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() - ivc.add_output("electricity_in", val=100.0, units="kW") + ivc.add_output("electricity_in", val=np.full(N_TIMESTEPS, 100.0), units="kW") ivc.add_output("fraction_to_priority_tech", val=0.4) prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() prob.run_model() - assert prob.get_val("electricity_out1", units="kW") == approx(40.0, rel=1e-5) - assert prob.get_val("electricity_out2", units="kW") == approx(60.0, rel=1e-5) + assert prob.get_val("electricity_out1", units="kW") == approx( + np.full(N_TIMESTEPS, 40.0), rel=1e-5 + ) + assert prob.get_val("electricity_out2", units="kW") == approx( + np.full(N_TIMESTEPS, 60.0), rel=1e-5 + ) performance_config_prescribed = { "split_mode": "prescribed_commodity", @@ -216,22 +228,32 @@ def test_splitter_scalar_inputs(splitter_tech_config_electricity): } prob2 = om.Problem() - comp2 = GenericSplitterPerformanceModel(tech_config=tech_config_prescribed) + comp2 = GenericSplitterPerformanceModel( + tech_config=tech_config_prescribed, plant_config=plant_config + ) prob2.model.add_subsystem("comp", comp2, promotes=["*"]) ivc2 = om.IndepVarComp() - ivc2.add_output("electricity_in", val=100.0, units="kW") - ivc2.add_output("prescribed_commodity_to_priority_tech", val=30.0, units="kW") + ivc2.add_output("electricity_in", val=np.full(N_TIMESTEPS, 100.0), units="kW") + ivc2.add_output( + "prescribed_commodity_to_priority_tech", val=np.full(N_TIMESTEPS, 30.0), units="kW" + ) prob2.model.add_subsystem("ivc", ivc2, promotes=["*"]) prob2.setup() prob2.run_model() - assert prob2.get_val("electricity_out1", units="kW") == approx(30.0, rel=1e-5) - assert prob2.get_val("electricity_out2", units="kW") == approx(70.0, rel=1e-5) + assert prob2.get_val("electricity_out1", units="kW") == approx( + np.full(N_TIMESTEPS, 30.0), rel=1e-5 + ) + assert prob2.get_val("electricity_out2", units="kW") == approx( + np.full(N_TIMESTEPS, 70.0), rel=1e-5 + ) @pytest.mark.regression -def test_splitter_prescribed_electricity_varied_array(splitter_tech_config_electricity): +def test_splitter_prescribed_electricity_varied_array( + splitter_tech_config_electricity, plant_config +): """Test the splitter in prescribed_electricity mode with a varied array (50-100 MW).""" performance_config = { "split_mode": "prescribed_commodity", @@ -245,20 +267,20 @@ def test_splitter_prescribed_electricity_varied_array(splitter_tech_config_elect tech_config.update(splitter_tech_config_electricity) prob = om.Problem() - comp = GenericSplitterPerformanceModel(tech_config=tech_config) + comp = GenericSplitterPerformanceModel(tech_config=tech_config, plant_config=plant_config) prob.model.add_subsystem("comp", comp, promotes=["*"]) ivc = om.IndepVarComp() - ivc.add_output("electricity_in", val=np.zeros(8760), units="kW") - ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(8760), units="kW") + ivc.add_output("electricity_in", val=np.zeros(N_TIMESTEPS), units="kW") + ivc.add_output("prescribed_commodity_to_priority_tech", val=np.zeros(N_TIMESTEPS), units="kW") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) prob.setup() # Generate varied prescribed electricity array between 50-100 MW (50,000-100,000 kW) - prescribed_electricity = rng.random(8760) * 50000 + 50000 # 50-100 MW range + prescribed_electricity = rng.random(N_TIMESTEPS) * 50000 + 50000 # 50-100 MW range # Input electricity should be higher than prescribed to test both scenarios - electricity_input = rng.random(8760) * 30000 + 120000 # 120-150 MW range + electricity_input = rng.random(N_TIMESTEPS) * 30000 + 120000 # 120-150 MW range prob.set_val("electricity_in", electricity_input, units="kW") prob.set_val("prescribed_commodity_to_priority_tech", prescribed_electricity, units="kW") @@ -278,7 +300,7 @@ def test_splitter_prescribed_electricity_varied_array(splitter_tech_config_elect assert total_output == approx(electricity_input, rel=1e-5) # Test with some time steps where prescribed > available - electricity_input_limited = rng.random(8760) * 30000 + 20000 # 20-50 MW range + electricity_input_limited = rng.random(N_TIMESTEPS) * 30000 + 20000 # 20-50 MW range prob.set_val("electricity_in", electricity_input_limited, units="kW") prob.run_model() diff --git a/h2integrate/transporters/test/test_pipe.py b/h2integrate/transporters/test/test_pipe.py index 638f216c4..ab139ddbb 100644 --- a/h2integrate/transporters/test/test_pipe.py +++ b/h2integrate/transporters/test/test_pipe.py @@ -1,16 +1,28 @@ +import numpy as np import pytest import openmdao.api as om -from pytest import approx +from pytest import approx, fixture from h2integrate.transporters.pipe import PipePerformanceModel +@fixture +def plant_config(): + plant_dict = { + "plant": { + "plant_life": 30, + "simulation": {"n_timesteps": 8760, "dt": 3600}, + } + } + return plant_dict + + @pytest.mark.unit -def test_pipe_with_hydrogen(): +def test_pipe_with_hydrogen(plant_config): """Test the pipe transport with hydrogen as transport_item.""" # Create the pipe component with hydrogen as transport item - pipe = PipePerformanceModel(transport_item="hydrogen") + pipe = PipePerformanceModel(plant_config=plant_config, transport_item="hydrogen") # Create OpenMDAO problem and add the component prob = om.Problem() @@ -18,12 +30,13 @@ def test_pipe_with_hydrogen(): # Add independent variable component for input ivc = om.IndepVarComp() - ivc.add_output("hydrogen_in", val=10.0, units="kg/s") + hydrogen_profile = np.full(8760, 10.0) + ivc.add_output("hydrogen_in", val=hydrogen_profile, units="kg/s") prob.model.add_subsystem("ivc", ivc, promotes=["*"]) # Setup and run the model prob.setup() - prob.set_val("hydrogen_in", 10.0, units="kg/s") + prob.set_val("hydrogen_in", val=hydrogen_profile, units="kg/s") prob.run_model() # Check that output equals input (pass-through pipe with no losses) diff --git a/pyproject.toml b/pyproject.toml index c6780fa8c..0a67eb712 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,8 +28,8 @@ authors = [ {name = "Jennifer King"}, ] maintainers = [ - {name = "John Jasa", email = "john.jasa@nrel.gov"}, - {name = "Christopher Bay", email = "christopher.bay@nrel.gov"}, + {name = "John Jasa", email = "john.jasa@nlr.gov"}, + {name = "Christopher Bay", email = "christopher.bay@nlr.gov"}, ] readme = {file = "README.md", content-type = "text/markdown"} description = "Holistic Hybrids Optimization and Design Tool" @@ -86,21 +86,22 @@ classifiers = [ # https://pypi.org/classifiers/ ] [project.urls] -source = "https://github.com/NREL/H2Integrate" +source = "https://github.com/NatLabRockies/H2Integrate" documentation = "https://h2integrate.readthedocs.io/" -issues = "https://github.com/NREL/H2Integrate/issues" -changelog = "https://github.com/NREL/H2Integrate/blob/main/CHANGELOG.md" +issues = "https://github.com/NatLabRockies/H2Integrate/issues" +changelog = "https://github.com/NatLabRockies/H2Integrate/blob/main/CHANGELOG.md" [project.optional-dependencies] develop = [ "isort", "jupyter-book<2", + "networkx", "pre-commit", + "pyvis", "pytest>=9", "pytest-cov", "ruff", "sphinxcontrib-napoleon", - "h2integrate[gis,ard]", "yamlfix" ] examples = [ @@ -112,7 +113,8 @@ gis = [ "contextily" ] ard = ["ard-nrel"] -all = ["h2integrate[develop,examples]"] +extras = ["h2integrate[gis,ard]"] +all = ["h2integrate[develop,extras,examples]"] [tool.setuptools] include-package-data = true diff --git a/resource_files/solar/-28.454864_114.551749_2024_openmeteo_archive_solar_60min_local_tz.csv b/resource_files/solar/-28.454864_114.551749_2024_openmeteo_archive_solar_60min_local_tz.csv new file mode 100644 index 000000000..27bb80f08 --- /dev/null +++ b/resource_files/solar/-28.454864_114.551749_2024_openmeteo_archive_solar_60min_local_tz.csv @@ -0,0 +1,8836 @@ +latitude,longitude,elevation,utc_offset_seconds,timezone,timezone_abbreviation +-28.43585205078125,114.54545593261719,71.0,28800,Australia/Perth,GMT+8 + +time,wind_speed_10m (m/s),wind_direction_10m (deg),temperature_2m (C),surface_pressure (hPa),relative_humidity_2m (percent),shortwave_radiation (W/m**2),direct_normal_irradiance (W/m**2),diffuse_radiation (W/m**2),dew_point_2m (C),snow_depth (m),rain (mm),albedo (percent) +2023-12-30 16:00:00,2.7802877,232.3057,20.8,1005.47546,90.28737,0.0,0.0,0.0,19.15,0.0,0.0, +2023-12-30 17:00:00,2.86007,233.53067,20.85,1004.9811,90.01005,0.0,0.0,0.0,19.15,0.0,0.0, +2023-12-30 18:00:00,3.4409301,234.46223,20.75,1004.8791,90.002846,0.0,0.0,0.0,19.05,0.0,0.0, +2023-12-30 19:00:00,4.0360875,228.01286,20.55,1004.7743,90.26981,0.0,0.0,0.0,18.9,0.0,0.0, +2023-12-30 20:00:00,4.4598207,222.27362,20.75,1004.8791,88.60926,0.0,0.0,0.0,18.8,0.0,0.0, +2023-12-30 21:00:00,4.327817,220.31403,20.6,1005.07306,88.87449,0.0,0.0,0.0,18.7,0.0,0.0, +2023-12-30 22:00:00,4.4687805,220.46214,20.85,1005.77454,86.971245,12.0,42.034687,9.0,18.6,0.0,0.0, +2023-12-30 23:00:00,4.9819674,218.48022,22.2,1006.2092,78.337654,141.0,357.5579,67.0,18.25,0.0,0.0, +2023-12-31 00:00:00,4.816638,221.63345,23.45,1006.73987,70.15413,364.0,621.9316,106.0,17.7,0.0,0.0, +2023-12-31 01:00:00,5.0990195,221.82008,24.35,1007.1613,66.8793,491.0,477.5966,201.0,17.8,0.0,0.0, +2023-12-31 02:00:00,5.0931325,223.4089,25.15,1007.18335,62.170498,686.0,586.27783,234.0,17.4,0.0,0.0, +2023-12-31 03:00:00,5.4451814,224.25603,25.65,1007.1969,60.923904,844.0,649.19244,263.0,17.55,0.0,0.0, +2023-12-31 04:00:00,5.5865912,225.72514,26.0,1007.0084,60.240345,902.0,607.7862,312.0,17.7,0.0,0.0, +2023-12-31 05:00:00,5.8898215,229.82083,26.0,1006.4132,62.35997,963.0,668.5894,299.0,18.25,0.0,0.0, +2023-12-31 06:00:00,6.3031735,228.21558,26.05,1005.91846,62.76333,995.0,811.96967,215.0,18.4,0.0,0.0, +2023-12-31 07:00:00,6.529931,220.0302,25.9,1005.8152,62.337738,893.0,775.62744,214.0,18.15,0.0,0.0, +2023-12-31 08:00:00,6.4899926,213.6901,25.2,1005.3,65.39256,660.0,515.25995,277.0,18.25,0.0,0.0, +2023-12-31 09:00:00,6.400781,208.96756,24.45,1005.18024,67.5336,391.0,277.34073,232.0,18.05,0.0,0.0, +2023-12-31 10:00:00,6.2241464,203.6821,23.7,1005.4574,70.422295,297.0,469.5475,120.0,18.0,0.0,0.0, +2023-12-31 11:00:00,5.597321,198.75874,22.7,1005.9255,75.75499,105.0,310.16373,53.0,18.2,0.0,0.0, +2023-12-31 12:00:00,5.6320515,196.50444,22.05,1006.10565,80.05436,4.0,19.28935,3.0,18.45,0.0,0.0, +2023-12-31 13:00:00,5.491812,190.49142,21.45,1006.8823,82.52451,0.0,0.0,0.0,18.35,0.0,0.0, +2023-12-31 14:00:00,4.924429,192.90741,21.1,1007.0709,86.18267,0.0,0.0,0.0,18.7,0.0,0.0, +2023-12-31 15:00:00,4.554119,188.84174,20.7,1007.0595,88.32867,0.0,0.0,0.0,18.7,0.0,0.0, +2023-12-31 16:00:00,4.9162993,184.66678,20.85,1006.96466,86.15829,0.0,0.0,0.0,18.45,0.0,0.0, +2023-12-31 17:00:00,4.604346,182.4895,20.8,1006.26886,86.15338,0.0,0.0,0.0,18.4,0.0,0.0, +2023-12-31 18:00:00,4.7010636,178.78116,20.6,1005.86646,89.15273,0.0,0.0,0.0,18.75,0.0,0.0, +2023-12-31 19:00:00,4.7518415,171.52895,20.6,1005.569,89.992004,0.0,0.0,0.0,18.9,0.0,0.0, +2023-12-31 20:00:00,4.002499,167.00539,20.45,1005.26733,91.96863,0.0,0.0,0.0,19.1,0.0,0.0, +2023-12-31 21:00:00,3.2984846,165.96373,20.25,1005.36084,92.82157,0.0,0.0,0.0,19.05,0.0,0.0, +2023-12-31 22:00:00,3.710795,165.96373,20.5,1005.86365,92.25849,11.0,56.959167,7.0,19.2,0.0,0.0, +2023-12-31 23:00:00,4.2579336,170.53775,22.45,1006.2161,83.16008,147.0,429.9313,59.0,19.45,0.0,0.0, +2024-01-01 00:00:00,4.501111,178.727,24.35,1006.36774,73.235176,363.0,639.62103,99.0,19.25,0.0,0.0, +2024-01-01 01:00:00,4.8507733,188.29706,26.0,1006.51245,65.35576,596.0,809.3806,106.0,19.0,0.0,0.0, +2024-01-01 02:00:00,5.536244,200.07161,26.75,1006.53253,64.90528,798.0,895.34985,109.0,19.6,0.0,0.0, +2024-01-01 03:00:00,6.1717095,206.98015,27.3,1006.5474,62.06594,948.0,929.5777,117.0,19.4,0.0,0.0, +2024-01-01 04:00:00,7.068239,205.1148,27.7,1006.1613,55.37373,1039.0,945.17346,122.0,17.95,0.0,0.0, +2024-01-01 05:00:00,7.788453,195.6423,28.2,1005.8773,49.53985,1071.0,954.6353,123.0,16.65,0.0,0.0, +2024-01-01 06:00:00,8.354639,191.0409,28.35,1005.8815,46.223347,1037.0,953.20966,121.0,15.7,0.0,0.0, +2024-01-01 07:00:00,8.631338,190.00792,27.4,1005.6575,51.909107,936.0,934.806,117.0,16.65,0.0,0.0, +2024-01-01 08:00:00,8.881442,187.76508,25.9,1005.51764,62.533733,775.0,896.1642,108.0,18.2,0.0,0.0, +2024-01-01 09:00:00,8.620905,183.99083,24.75,1005.5852,67.593735,570.0,823.4165,97.0,18.35,0.0,0.0, +2024-01-01 10:00:00,8.20061,180.69868,23.65,1005.75336,70.63466,341.0,692.8665,79.0,18.0,0.0,0.0, +2024-01-01 11:00:00,8.009994,177.13765,22.25,1006.11127,74.73486,122.0,444.42383,47.0,17.55,0.0,0.0, +2024-01-01 12:00:00,7.4545293,173.06575,21.4,1006.2859,79.714745,4.0,19.095095,3.0,17.75,0.0,0.0, +2024-01-01 13:00:00,7.467262,172.30405,21.3,1006.5806,73.40047,0.0,0.0,0.0,16.35,0.0,0.0, +2024-01-01 14:00:00,7.2993145,170.53775,20.8,1006.7648,81.156166,0.0,0.0,0.0,17.45,0.0,0.0, +2024-01-01 15:00:00,6.726812,168.85715,20.4,1006.4558,84.77017,0.0,0.0,0.0,17.75,0.0,0.0, +2024-01-01 16:00:00,6.8249536,169.0194,20.2,1005.85516,85.01642,0.0,0.0,0.0,17.6,0.0,0.0, +2024-01-01 17:00:00,7.119691,169.47926,20.3,1005.3621,83.16997,0.0,0.0,0.0,17.35,0.0,0.0, +2024-01-01 18:00:00,7.0611615,167.73524,20.6,1005.17224,77.60865,0.0,0.0,0.0,16.55,0.0,0.0, +2024-01-01 19:00:00,6.9123073,165.76268,20.9,1004.88324,74.27285,0.0,0.0,0.0,16.15,0.0,0.0, +2024-01-01 20:00:00,6.5734315,166.80939,20.95,1004.7856,72.64034,0.0,0.0,0.0,15.85,0.0,0.0, +2024-01-01 21:00:00,6.236986,167.96942,20.95,1004.7856,72.40854,0.0,0.0,0.0,15.8,0.0,0.0, +2024-01-01 22:00:00,6.1,169.61119,21.1,1005.18646,74.54346,11.0,43.444176,8.0,16.4,0.0,0.0, +2024-01-01 23:00:00,6.661081,172.23492,22.65,1005.428,67.81438,140.0,400.28207,59.0,16.4,0.0,0.0, +2024-01-02 00:00:00,5.2630787,165.69969,24.1,1005.56757,59.228016,359.0,647.8158,93.0,15.65,0.0,0.0, +2024-01-02 01:00:00,5.345091,162.58194,24.75,1005.6844,50.2347,598.0,820.12994,103.0,13.7,0.0,0.0, +2024-01-02 02:00:00,6.1008196,179.06084,26.25,1005.3286,44.48039,803.0,900.9564,111.0,13.2,0.0,0.0, +2024-01-02 03:00:00,7.668768,192.04256,26.1,1004.9278,48.67024,958.0,940.7223,118.0,14.45,0.0,0.0, +2024-01-02 04:00:00,9.289241,194.33546,25.45,1004.51337,52.915802,1055.0,961.19025,123.0,15.15,0.0,0.0, +2024-01-02 05:00:00,9.241753,193.13403,25.6,1003.92236,51.44401,1082.0,960.7786,128.0,14.85,0.0,0.0, +2024-01-02 06:00:00,8.876937,194.34937,25.85,1003.8301,51.343594,1046.0,961.21906,122.0,15.05,0.0,0.0, +2024-01-02 07:00:00,9.178235,191.30989,25.15,1003.41406,55.269012,940.0,938.65485,117.0,15.55,0.0,0.0, +2024-01-02 08:00:00,8.657945,186.63242,24.85,1002.71155,56.80942,777.0,896.3842,109.0,15.7,0.0,0.0, +2024-01-02 09:00:00,8.5,188.79733,24.5,1002.3054,62.22186,571.0,823.59686,97.0,16.8,0.0,0.0, +2024-01-02 10:00:00,7.8638415,187.30566,24.0,1002.29156,66.17789,341.0,688.17664,80.0,17.3,0.0,0.0, +2024-01-02 11:00:00,6.6910386,189.46225,23.15,1002.3671,72.34181,122.0,441.70712,47.0,17.9,0.0,0.0, +2024-01-02 12:00:00,5.8008623,180.98773,23.05,1002.2655,76.04839,4.0,18.916208,3.0,18.6,0.0,0.0, +2024-01-02 13:00:00,7.692204,164.15686,23.3,1002.47076,69.90495,0.0,0.0,0.0,17.5,0.0,0.0, +2024-01-02 14:00:00,7.17844,161.31256,22.95,1002.8577,71.62567,0.0,0.0,0.0,17.55,0.0,0.0, +2024-01-02 15:00:00,6.4257298,159.02643,22.8,1002.7544,73.89084,0.0,0.0,0.0,17.9,0.0,0.0, +2024-01-02 16:00:00,5.5036354,155.29759,23.1,1002.465,63.919964,0.0,0.0,0.0,15.9,0.0,0.0, +2024-01-02 17:00:00,5.920304,142.54935,24.15,1002.09717,44.93044,0.0,0.0,0.0,11.45,0.0,0.0, +2024-01-02 18:00:00,6.6483083,133.7812,24.35,1002.20184,46.79939,0.0,0.0,0.0,12.25,0.0,0.0, +2024-01-02 19:00:00,6.529931,130.0302,23.9,1002.3879,49.359287,0.0,0.0,0.0,12.65,0.0,0.0, +2024-01-02 20:00:00,6.6030297,125.13428,23.65,1002.6786,50.271786,0.0,0.0,0.0,12.7,0.0,0.0, +2024-01-02 21:00:00,6.9771056,117.29949,23.25,1003.0643,52.00758,0.0,0.0,0.0,12.85,0.0,0.0, +2024-01-02 22:00:00,7.2449985,110.1859,22.8,1003.8454,54.85789,11.0,44.20886,8.0,13.25,0.0,0.0, +2024-01-02 23:00:00,7.955501,104.56032,23.85,1004.3703,52.84682,150.0,480.03622,54.0,13.65,0.0,0.0, +2024-01-03 00:00:00,8.386298,98.22664,25.4,1004.7106,48.326183,372.0,710.01715,82.0,13.7,0.0,0.0, +2024-01-03 01:00:00,7.746612,101.16484,27.6,1004.7701,42.447083,597.0,827.65784,99.0,13.7,0.0,0.0, +2024-01-03 02:00:00,7.6118326,99.8335,29.6,1004.62506,36.46427,797.0,896.1736,110.0,13.15,0.0,0.0, +2024-01-03 03:00:00,7.236712,101.154625,31.55,1004.27985,31.154144,953.0,936.2142,118.0,12.45,0.0,0.0, +2024-01-03 04:00:00,6.9857,103.24053,33.3,1003.3331,26.336803,1050.0,958.6679,121.0,11.4,0.0,0.0, +2024-01-03 05:00:00,6.332456,111.297424,34.6,1002.573,22.53952,1080.0,964.92676,122.0,10.15,0.0,0.0, +2024-01-03 06:00:00,5.0931325,133.4089,34.85,1001.98413,20.370222,1042.0,958.84735,120.0,8.85,0.0,0.0, +2024-01-03 07:00:00,4.837354,150.2552,35.0,1001.39246,19.463575,938.0,937.9712,115.0,8.3,0.0,0.0, +2024-01-03 08:00:00,6.2968245,169.93938,33.9,1000.86816,22.588383,776.0,895.31024,108.0,9.6,0.0,0.0, +2024-01-03 09:00:00,7.3437047,173.74606,31.4,1000.9027,39.790394,570.0,822.1129,96.0,16.1,0.0,0.0, +2024-01-03 10:00:00,6.926038,175.03035,29.7,1001.15564,53.48665,340.0,688.881,78.0,19.25,0.0,0.0, +2024-01-03 11:00:00,5.6885853,169.8754,28.7,1001.5258,56.49291,122.0,445.06094,46.0,19.2,0.0,0.0, +2024-01-03 12:00:00,5.3,148.10925,29.45,1002.04193,37.875324,5.0,18.754517,4.0,13.6,0.0,0.0, +2024-01-03 13:00:00,6.9999995,126.86999,30.55,1002.4677,19.657352,0.0,0.0,0.0,4.8,0.0,0.0, +2024-01-03 14:00:00,6.6603303,131.34769,29.35,1003.1304,21.061085,0.0,0.0,0.0,4.8,0.0,0.0, +2024-01-03 15:00:00,7.340981,127.806595,28.15,1003.3961,22.975538,0.0,0.0,0.0,5.05,0.0,0.0, +2024-01-03 16:00:00,8.450444,110.79419,27.35,1003.3747,26.432938,0.0,0.0,0.0,6.4,0.0,0.0, +2024-01-03 17:00:00,8.316851,108.217186,26.4,1003.34894,29.428024,0.0,0.0,0.0,7.15,0.0,0.0, +2024-01-03 18:00:00,8.420215,105.852,25.6,1003.5256,30.854763,0.0,0.0,0.0,7.15,0.0,0.0, +2024-01-03 19:00:00,8.041144,100.750916,24.75,1004.09735,32.567825,0.0,0.0,0.0,7.2,0.0,0.0, +2024-01-03 20:00:00,8.075271,97.82899,24.0,1004.4737,35.00775,0.0,0.0,0.0,7.6,0.0,0.0, +2024-01-03 21:00:00,8.130191,94.93913,23.35,1005.05084,38.179874,0.0,0.0,0.0,8.3,0.0,0.0, +2024-01-03 22:00:00,8.030566,95.00056,23.0,1005.7353,40.338253,10.0,45.016026,7.0,8.8,0.0,0.0, +2024-01-03 23:00:00,9.313432,93.07739,24.05,1006.2604,39.42616,152.0,496.01993,54.0,9.4,0.0,0.0, +2024-01-04 00:00:00,10.301942,88.887634,25.1,1006.38855,37.90643,379.0,728.6337,83.0,9.75,0.0,0.0, +2024-01-04 01:00:00,9.319335,93.691315,27.7,1005.36774,32.40634,610.0,850.27,100.0,9.7,0.0,0.0, +2024-01-04 02:00:00,9.202173,91.24534,29.5,1005.01917,28.608877,812.0,916.2267,111.0,9.4,0.0,0.0, +2024-01-04 03:00:00,8.602325,91.33219,31.55,1004.27985,24.105291,967.0,954.1629,117.0,8.6,0.0,0.0, +2024-01-04 04:00:00,7.7103825,92.97367,33.4,1003.7325,20.70858,1063.0,972.6793,121.0,7.9,0.0,0.0, +2024-01-04 05:00:00,6.8183575,94.205284,34.85,1003.07544,18.460146,1093.0,978.1611,122.0,7.4,0.0,0.0, +2024-01-04 06:00:00,5.80517,100.92277,35.9,1002.5069,16.833527,1054.0,971.057,120.0,6.9,0.0,0.0, +2024-01-04 07:00:00,4.560702,127.875046,35.6,1001.80475,16.536215,949.0,949.8515,115.0,6.4,0.0,0.0, +2024-01-04 08:00:00,4.967897,139.89915,35.7,1001.41046,15.669406,787.0,909.0159,108.0,5.7,0.0,0.0, +2024-01-04 09:00:00,5.3665633,153.43501,35.05,1001.29456,16.074577,580.0,836.293,97.0,5.55,0.0,0.0, +2024-01-04 10:00:00,5.9506307,155.15764,33.6,1001.75354,17.426226,349.0,705.4317,80.0,5.55,0.0,0.0, +2024-01-04 11:00:00,6.041523,155.55606,31.4,1002.3908,20.004469,126.0,460.22183,47.0,5.75,0.0,0.0, +2024-01-04 12:00:00,6.0,143.13002,30.45,1003.0604,20.117556,5.0,18.607225,4.0,5.05,0.0,0.0, +2024-01-04 13:00:00,5.500909,152.96922,27.0,1003.5637,48.440586,0.0,0.0,0.0,15.2,0.0,0.0, +2024-01-04 14:00:00,6.296825,133.06943,28.1,1003.79144,25.125982,0.0,0.0,0.0,6.3,0.0,0.0, +2024-01-04 15:00:00,7.2449985,116.21132,27.95,1003.6884,21.905268,0.0,0.0,0.0,4.2,0.0,0.0, +2024-01-04 16:00:00,8.032434,108.886185,27.05,1003.36646,25.105455,0.0,0.0,0.0,5.4,0.0,0.0, +2024-01-04 17:00:00,8.561542,104.198586,26.1,1003.2416,29.24425,0.0,0.0,0.0,6.8,0.0,0.0, +2024-01-04 18:00:00,8.766414,101.18172,25.35,1003.22107,31.747679,0.0,0.0,0.0,7.35,0.0,0.0, +2024-01-04 19:00:00,8.414867,93.40637,24.7,1003.69946,33.68456,0.0,0.0,0.0,7.65,0.0,0.0, +2024-01-04 20:00:00,8.448076,83.88459,24.05,1004.1774,35.623257,0.0,0.0,0.0,7.9,0.0,0.0, +2024-01-04 21:00:00,8.620905,86.00917,23.5,1004.55896,37.70784,0.0,0.0,0.0,8.25,0.0,0.0, +2024-01-04 22:00:00,8.329466,85.17932,23.15,1004.946,39.570755,10.0,45.866913,7.0,8.65,0.0,0.0, +2024-01-04 23:00:00,8.030566,84.99945,24.3,1005.47375,38.062984,151.0,502.24216,53.0,9.1,0.0,0.0, +2024-01-05 00:00:00,8.174351,82.266495,26.25,1005.52704,35.525475,379.0,732.6486,83.0,9.8,0.0,0.0, +2024-01-05 01:00:00,6.8249536,79.019394,29.7,1004.92535,27.997152,610.0,854.655,99.0,9.25,0.0,0.0, +2024-01-05 02:00:00,5.8694124,81.1797,32.15,1004.4937,23.696175,814.0,923.281,109.0,8.85,0.0,0.0, +2024-01-05 03:00:00,4.00125,88.56794,33.95,1003.9454,19.809546,972.0,960.92993,117.0,7.7,0.0,0.0, +2024-01-05 04:00:00,2.3259406,154.5367,34.4,1003.5598,18.734476,1069.0,979.49023,121.0,7.25,0.0,0.0, +2024-01-05 05:00:00,6.1351447,199.0257,33.8,1003.24677,24.124062,1098.0,982.35065,123.0,10.5,0.0,0.0, +2024-01-05 06:00:00,9.425497,197.28159,32.1,1003.0043,30.596258,1057.0,972.8926,121.0,12.65,0.0,0.0, +2024-01-05 07:00:00,10.316008,191.7456,30.5,1002.9624,35.426167,950.0,949.2345,116.0,13.5,0.0,0.0, +2024-01-05 08:00:00,10.100495,180.56726,29.5,1002.936,35.845703,785.0,905.36224,108.0,12.8,0.0,0.0, +2024-01-05 09:00:00,9.300538,179.38396,29.0,1002.8236,38.999725,579.0,833.22186,97.0,13.65,0.0,0.0, +2024-01-05 10:00:00,8.329466,175.17932,27.0,1003.2661,49.223984,347.0,701.09607,79.0,15.45,0.0,0.0, +2024-01-05 11:00:00,7.3979726,166.71512,25.45,1003.2239,54.640152,125.0,452.25067,47.0,15.65,0.0,0.0, +2024-01-05 12:00:00,7.4946647,161.3232,24.5,1003.2973,59.511845,5.0,18.477766,4.0,16.1,0.0,0.0, +2024-01-05 13:00:00,6.5551505,158.52315,24.4,1003.9888,57.8009,0.0,0.0,0.0,15.55,0.0,0.0, +2024-01-05 14:00:00,4.802083,148.62704,24.45,1003.79156,55.808064,0.0,0.0,0.0,15.05,0.0,0.0, +2024-01-05 15:00:00,4.6690474,133.26433,24.9,1003.40717,46.034996,0.0,0.0,0.0,12.5,0.0,0.0, +2024-01-05 16:00:00,4.992995,122.73522,26.4,1002.95215,27.759579,0.0,0.0,0.0,6.3,0.0,0.0, +2024-01-05 17:00:00,5.3712196,114.1791,26.4,1002.4562,27.285038,0.0,0.0,0.0,6.05,0.0,0.0, +2024-01-05 18:00:00,5.7870545,108.121956,25.9,1002.34344,28.690958,0.0,0.0,0.0,6.35,0.0,0.0, +2024-01-05 19:00:00,6.2968245,100.06063,25.55,1002.2348,29.903471,0.0,0.0,0.0,6.65,0.0,0.0, +2024-01-05 20:00:00,6.6030297,91.73567,25.2,1002.52264,30.954374,0.0,0.0,0.0,6.85,0.0,0.0, +2024-01-05 21:00:00,6.8066144,87.47394,24.85,1002.8107,32.04326,0.0,0.0,0.0,7.05,0.0,0.0, +2024-01-05 22:00:00,7.034913,84.2895,24.65,1003.4005,32.763027,9.0,46.761063,6.0,7.2,0.0,0.0, +2024-01-05 23:00:00,6.562012,82.11695,26.4,1003.7457,30.24337,148.0,498.31647,52.0,7.55,0.0,0.0, +2024-01-06 00:00:00,7.4525166,78.38854,28.75,1003.80896,27.551052,376.0,731.7692,82.0,8.2,0.0,0.0, +2024-01-06 01:00:00,6.293648,72.42865,32.05,1003.1022,23.590385,604.0,849.0231,98.0,8.7,0.0,0.0, +2024-01-06 02:00:00,4.3863425,65.77226,34.8,1002.57806,19.153173,809.0,918.5672,109.0,7.9,0.0,0.0, +2024-01-06 03:00:00,1.1,180.0,35.0,1002.2854,17.15293,967.0,956.4726,117.0,6.45,0.0,0.0, +2024-01-06 04:00:00,5.936329,212.61923,34.35,1001.77277,24.835928,1065.0,975.98584,121.0,11.4,0.0,0.0, +2024-01-06 05:00:00,7.602631,206.56499,32.85,1001.8332,30.204386,1095.0,980.5146,122.0,13.1,0.0,0.0, +2024-01-06 06:00:00,7.467262,200.37651,32.45,1001.8229,29.703478,1053.0,967.48145,122.0,12.5,0.0,0.0, +2024-01-06 07:00:00,7.3082147,196.69933,32.2,1001.4198,32.160183,949.0,944.10944,119.0,13.5,0.0,0.0, +2024-01-06 08:00:00,7.4464755,194.78278,31.1,1001.1925,35.823853,787.0,903.1115,111.0,14.2,0.0,0.0, +2024-01-06 09:00:00,7.1344237,185.63058,29.85,1001.2586,38.982964,581.0,835.42566,97.0,14.4,0.0,0.0, +2024-01-06 10:00:00,7.302739,181.56932,27.9,1001.70276,47.603165,350.0,707.35254,79.0,15.75,0.0,0.0, +2024-01-06 11:00:00,6.4629717,171.99536,26.2,1001.95483,52.09794,127.0,456.11127,48.0,15.6,0.0,0.0, +2024-01-06 12:00:00,6.281719,166.18495,24.9,1002.4153,55.56207,5.0,18.362371,4.0,15.4,0.0,0.0, +2024-01-06 13:00:00,5.903389,169.26115,23.6,1003.1732,66.51505,0.0,0.0,0.0,17.0,0.0,0.0, +2024-01-06 14:00:00,5.770615,171.02745,23.45,1003.2684,62.983902,0.0,0.0,0.0,16.0,0.0,0.0, +2024-01-06 15:00:00,4.341659,172.05663,22.9,1002.757,68.51379,0.0,0.0,0.0,16.8,0.0,0.0, +2024-01-06 16:00:00,3.4785054,161.56496,22.1,1002.2391,76.377495,0.0,0.0,0.0,17.75,0.0,0.0, +2024-01-06 17:00:00,2.505993,151.38963,21.5,1001.62726,80.73759,0.0,0.0,0.0,18.05,0.0,0.0, +2024-01-06 18:00:00,2.0124612,153.43501,21.0,1001.1173,82.9904,0.0,0.0,0.0,18.0,0.0,0.0, +2024-01-06 19:00:00,1.8788295,154.7989,20.55,1001.10474,84.51986,0.0,0.0,0.0,17.85,0.0,0.0, +2024-01-06 20:00:00,1.7691805,132.70937,19.8,1001.3812,83.11128,0.0,0.0,0.0,16.85,0.0,0.0, +2024-01-06 21:00:00,2.4596748,116.56499,19.8,1001.48035,67.45458,0.0,0.0,0.0,13.6,0.0,0.0, +2024-01-06 22:00:00,2.9410882,107.818985,20.85,1002.2041,45.9927,8.0,47.700756,5.0,8.8,0.0,0.0, +2024-01-06 23:00:00,2.4698179,158.62932,26.25,1002.74963,30.6166,143.0,483.83243,51.0,7.6,0.0,0.0, +2024-01-07 00:00:00,2.408319,175.23645,29.25,1002.92944,27.222633,367.0,715.8896,81.0,8.45,0.0,0.0, +2024-01-07 01:00:00,2.6019223,182.20255,31.45,1002.6897,25.758884,594.0,836.63446,97.0,9.5,0.0,0.0, +2024-01-07 02:00:00,3.7161808,203.80595,33.2,1002.4376,27.1942,797.0,904.64,109.0,11.8,0.0,0.0, +2024-01-07 03:00:00,5.5758405,212.54999,32.35,1002.2173,37.46476,953.0,944.12756,115.0,16.0,0.0,0.0, +2024-01-07 04:00:00,7.392564,210.03319,31.0,1001.88446,40.44839,1051.0,963.1787,120.0,16.0,0.0,0.0, +2024-01-07 05:00:00,7.2235723,201.94876,31.05,1001.58795,35.81,1081.0,966.60297,122.0,14.15,0.0,0.0, +2024-01-07 06:00:00,7.0342026,194.82652,31.1,1001.1925,38.5797,1045.0,961.0632,120.0,15.35,0.0,0.0, +2024-01-07 07:00:00,7.6902537,192.77124,30.55,1000.4836,42.573524,944.0,941.3071,116.0,16.4,0.0,0.0, +2024-01-07 08:00:00,7.4330344,190.85637,29.3,999.9546,47.67267,780.0,898.2591,107.0,17.05,0.0,0.0, +2024-01-07 09:00:00,6.9584484,187.43132,29.2,999.8529,49.95852,574.0,823.9273,96.0,17.7,0.0,0.0, +2024-01-07 10:00:00,6.8117547,183.3664,28.05,1000.11975,51.258633,345.0,692.88544,79.0,17.05,0.0,0.0, +2024-01-07 11:00:00,5.9,180.0,26.65,1000.37994,56.885715,126.0,448.66382,48.0,17.4,0.0,0.0, +2024-01-07 12:00:00,5.885576,170.21767,25.55,1000.74695,56.798813,5.0,18.264292,4.0,16.35,0.0,0.0, +2024-01-07 13:00:00,5.0249376,185.7105,25.3,1001.4344,54.079884,0.0,0.0,0.0,15.35,0.0,0.0, +2024-01-07 14:00:00,4.148494,195.37631,24.65,1001.31757,62.452995,0.0,0.0,0.0,17.0,0.0,0.0, +2024-01-07 15:00:00,3.1400635,189.16228,24.5,1001.1151,64.63043,0.0,0.0,0.0,17.4,0.0,0.0, +2024-01-07 16:00:00,3.7,198.92474,24.25,1000.9098,66.64858,0.0,0.0,0.0,17.65,0.0,0.0, +2024-01-07 17:00:00,3.2557642,190.6196,23.85,1000.6012,69.78956,0.0,0.0,0.0,18.0,0.0,0.0, +2024-01-07 18:00:00,3.0805843,193.13403,23.2,1000.2858,76.31008,0.0,0.0,0.0,18.8,0.0,0.0, +2024-01-07 19:00:00,1.7720045,196.38962,22.35,1000.1631,82.632545,0.0,0.0,0.0,19.25,0.0,0.0, +2024-01-07 20:00:00,1.746425,203.6294,21.7,1000.44244,87.59211,0.0,0.0,0.0,19.55,0.0,0.0, +2024-01-07 21:00:00,1.9235383,188.97255,21.75,1000.5432,88.41581,0.0,0.0,0.0,19.75,0.0,0.0, +2024-01-07 22:00:00,2.0880613,163.30067,21.9,1000.94403,86.52875,8.0,32.457962,6.0,19.55,0.0,0.0, +2024-01-07 23:00:00,2.8231187,157.06787,24.65,1001.11914,67.36203,139.0,469.0066,51.0,18.2,0.0,0.0, +2024-01-08 00:00:00,2.7,180.0,27.8,1001.00586,50.38771,362.0,707.3984,81.0,16.55,0.0,0.0, +2024-01-08 01:00:00,4.022437,214.8754,28.35,1000.9215,60.215534,586.0,825.86426,97.0,19.9,0.0,0.0, +2024-01-08 02:00:00,5.0990195,221.82008,28.65,1000.83014,59.175175,787.0,894.6144,108.0,19.9,0.0,0.0, +2024-01-08 03:00:00,5.672742,220.71075,28.9,1000.9359,52.952984,942.0,931.7596,116.0,18.35,0.0,0.0, +2024-01-08 04:00:00,6.046487,214.21576,29.6,1000.6569,50.69492,1041.0,953.47253,120.0,18.3,0.0,0.0, +2024-01-08 05:00:00,6.8007355,216.02747,28.7,1000.7322,56.14198,1074.0,960.77014,121.0,19.1,0.0,0.0, +2024-01-08 06:00:00,7.6216793,218.07283,27.7,1000.70544,62.54115,1037.0,952.6004,120.0,19.9,0.0,0.0, +2024-01-08 07:00:00,7.184706,214.7961,26.9,1000.98175,66.5657,932.0,928.32745,115.0,20.15,0.0,0.0, +2024-01-08 08:00:00,7.291776,205.15927,25.8,1001.05115,67.80296,773.0,885.4808,109.0,19.4,0.0,0.0, +2024-01-08 09:00:00,7.31642,201.65605,24.95,1001.1273,72.88494,568.0,812.5559,96.0,19.75,0.0,0.0, +2024-01-08 10:00:00,7.05762,200.74615,23.95,1001.49677,78.34688,333.0,644.8159,85.0,19.95,0.0,0.0, +2024-01-08 11:00:00,6.360031,196.44046,23.0,1002.2638,81.69061,118.0,384.16064,51.0,19.7,0.0,0.0, +2024-01-08 12:00:00,6.332456,195.5726,22.45,1002.6455,83.16008,5.0,18.182577,4.0,19.45,0.0,0.0, +2024-01-08 13:00:00,5.59017,190.3048,21.8,1003.3215,84.91871,0.0,0.0,0.0,19.15,0.0,0.0, +2024-01-08 14:00:00,5.632051,186.1154,21.65,1003.71423,85.70066,0.0,0.0,0.0,19.15,0.0,0.0, +2024-01-08 15:00:00,5.8077536,182.96088,21.3,1003.6052,87.55684,0.0,0.0,0.0,19.15,0.0,0.0, +2024-01-08 16:00:00,6.0033326,181.9091,21.1,1003.2029,86.723015,0.0,0.0,0.0,18.8,0.0,0.0, +2024-01-08 17:00:00,6.3007936,180.90936,21.15,1002.7082,83.26905,0.0,0.0,0.0,18.2,0.0,0.0, +2024-01-08 18:00:00,6.400781,180.89516,20.95,1002.50446,82.984505,0.0,0.0,0.0,17.95,0.0,0.0, +2024-01-08 19:00:00,6.2128897,176.30869,20.75,1002.3004,82.43981,0.0,0.0,0.0,17.65,0.0,0.0, +2024-01-08 20:00:00,6.328507,174.55975,20.85,1002.3033,80.39756,0.0,0.0,0.0,17.35,0.0,0.0, +2024-01-08 21:00:00,6.412488,176.42374,20.85,1002.50165,80.14393,0.0,0.0,0.0,17.3,0.0,0.0, +2024-01-08 22:00:00,6.503076,178.23764,21.0,1003.2,78.16227,4.0,0.0,4.0,17.05,0.0,0.0, +2024-01-08 23:00:00,6.6030297,178.26433,21.65,1003.61505,73.928764,89.0,135.06209,64.0,16.8,0.0,0.0, +2024-01-09 00:00:00,6.600757,179.13197,23.2,1003.7573,64.96941,310.0,478.54053,121.0,16.25,0.0,0.0, +2024-01-09 01:00:00,6.449806,187.12492,23.6,1004.1651,64.64253,354.0,132.16595,276.0,16.55,0.0,0.0, +2024-01-09 02:00:00,6.5924196,189.60513,25.0,1004.0052,57.39329,600.0,291.76962,379.0,16.0,0.0,0.0, +2024-01-09 03:00:00,6.9123073,194.23732,25.3,1003.815,60.269066,837.0,615.5461,292.0,17.05,0.0,0.0, +2024-01-09 04:00:00,7.5286117,196.9909,25.45,1003.42224,60.11326,1018.0,814.26886,232.0,17.15,0.0,0.0, +2024-01-09 05:00:00,7.912016,196.14441,25.5,1003.2252,59.36848,1043.0,822.8545,227.0,17.0,0.0,0.0, +2024-01-09 06:00:00,8.20061,195.56157,25.6,1003.02966,59.3919,1027.0,873.541,186.0,17.1,0.0,0.0, +2024-01-09 07:00:00,8.246211,194.03627,25.15,1002.62054,62.367092,944.0,910.86615,142.0,17.45,0.0,0.0, +2024-01-09 08:00:00,8.354639,191.0409,24.6,1002.20874,64.448105,792.0,903.44135,114.0,17.45,0.0,0.0, +2024-01-09 09:00:00,8.657945,186.63242,23.9,1001.99115,68.27869,586.0,833.9852,101.0,17.7,0.0,0.0, +2024-01-09 10:00:00,8.509407,182.69423,23.05,1002.3646,71.64384,344.0,661.9513,89.0,17.65,0.0,0.0, +2024-01-09 11:00:00,8.1,180.0,22.05,1002.6343,76.85219,126.0,428.89355,51.0,17.8,0.0,0.0, +2024-01-09 12:00:00,7.0007143,180.81844,21.3,1002.8117,80.711296,5.0,18.1173,4.0,17.85,0.0,0.0, +2024-01-09 13:00:00,6.6068144,177.39749,20.85,1003.29504,82.45195,0.0,0.0,0.0,17.75,0.0,0.0, +2024-01-09 14:00:00,6.7742157,171.51114,20.6,1003.387,84.25974,0.0,0.0,0.0,17.85,0.0,0.0, +2024-01-09 15:00:00,6.432729,168.34074,20.5,1003.1858,85.58451,0.0,0.0,0.0,18.0,0.0,0.0, +2024-01-09 16:00:00,6.041523,167.57407,20.25,1002.7822,87.73858,0.0,0.0,0.0,18.15,0.0,0.0, +2024-01-09 17:00:00,5.7271285,167.90526,20.2,1002.1856,88.28685,0.0,0.0,0.0,18.2,0.0,0.0, +2024-01-09 18:00:00,5.824946,168.11136,20.15,1001.49005,88.005875,0.0,0.0,0.0,18.1,0.0,0.0, +2024-01-09 19:00:00,5.846366,167.1523,20.1,1000.9926,88.00155,0.0,0.0,0.0,18.05,0.0,0.0, +2024-01-09 20:00:00,5.0921507,160.49747,20.1,1000.9926,87.72546,0.0,0.0,0.0,18.0,0.0,0.0, +2024-01-09 21:00:00,3.9357338,152.78398,19.7,1001.2792,90.20975,0.0,0.0,0.0,18.05,0.0,0.0, +2024-01-09 22:00:00,2.8017852,145.17545,19.25,1001.66296,92.477585,7.0,33.87144,5.0,18.0,0.0,0.0, +2024-01-09 23:00:00,2.5806975,144.46223,20.95,1002.3061,82.984505,123.0,301.2663,68.0,17.95,0.0,0.0, +2024-01-10 00:00:00,2.2203605,172.23492,23.35,1002.5712,68.38575,351.0,651.9434,95.0,17.2,0.0,0.0, +2024-01-10 01:00:00,2.7166157,186.3401,26.2,1002.2525,51.434456,587.0,831.3092,98.0,15.4,0.0,0.0, +2024-01-10 02:00:00,3.7,198.92474,28.4,1002.1132,45.35708,791.0,902.2233,109.0,15.45,0.0,0.0, +2024-01-10 03:00:00,5.5470715,207.95087,28.65,1001.82214,49.657734,950.0,942.00055,117.0,17.1,0.0,0.0, +2024-01-10 04:00:00,6.8883963,207.68097,28.1,1001.41064,49.98772,1050.0,963.0804,121.0,16.7,0.0,0.0, +2024-01-10 05:00:00,7.0007143,201.80147,27.9,1001.00836,48.215546,1082.0,968.3221,122.0,15.95,0.0,0.0, +2024-01-10 06:00:00,7.3736014,200.64706,27.85,1000.6104,46.984207,1049.0,964.86,120.0,15.5,0.0,0.0, +2024-01-10 07:00:00,7.4040527,196.47696,27.35,1000.2996,50.27029,948.0,944.5573,116.0,16.1,0.0,0.0, +2024-01-10 08:00:00,7.495332,193.1092,26.8,999.5902,53.940907,782.0,880.17267,121.0,16.7,0.0,0.0, +2024-01-10 09:00:00,6.760177,187.65056,25.85,999.4656,58.332935,517.0,534.2445,206.0,17.05,0.0,0.0, +2024-01-10 10:00:00,6.6910386,189.46225,24.2,999.4204,69.2018,243.0,173.68529,176.0,18.2,0.0,0.0, +2024-01-10 11:00:00,5.6142673,184.08554,23.1,999.9854,75.58181,103.0,194.02734,69.0,18.55,0.0,0.0, +2024-01-10 12:00:00,5.308484,183.23964,22.25,1000.06104,80.33216,5.0,18.067333,4.0,18.7,0.0,0.0, +2024-01-10 13:00:00,5.508176,183.12207,21.9,1000.24976,81.807915,0.0,0.0,0.0,18.65,0.0,0.0, +2024-01-10 14:00:00,5.423099,185.29,21.8,1000.34607,79.76968,0.0,0.0,0.0,18.15,0.0,0.0, +2024-01-10 15:00:00,6.500769,180.88138,21.65,1000.14374,79.000244,0.0,0.0,0.0,17.85,0.0,0.0, +2024-01-10 16:00:00,5.821512,175.07298,21.2,999.9327,82.49432,0.0,0.0,0.0,18.1,0.0,0.0, +2024-01-10 17:00:00,5.8034477,178.02512,20.95,999.7275,86.168015,0.0,0.0,0.0,18.55,0.0,0.0, +2024-01-10 18:00:00,5.770615,171.02745,20.75,999.7218,88.886475,0.0,0.0,0.0,18.85,0.0,0.0, +2024-01-10 19:00:00,5.3935146,169.31514,20.55,999.4187,90.26981,0.0,0.0,0.0,18.9,0.0,0.0, +2024-01-10 20:00:00,5.333854,173.54128,20.4,999.6126,91.3938,0.0,0.0,0.0,18.95,0.0,0.0, +2024-01-10 21:00:00,5.408327,176.82024,20.45,999.7134,92.832115,0.0,0.0,0.0,19.25,0.0,0.0, +2024-01-10 22:00:00,5.5226803,174.80566,20.75,1000.31683,90.84821,5.0,0.0,5.0,19.2,0.0,0.0, +2024-01-10 23:00:00,6.873136,171.6342,22.0,1000.6493,81.82038,112.0,238.85641,69.0,18.75,0.0,0.0, +2024-01-11 00:00:00,7.0028567,181.63654,23.5,1000.5915,74.24119,328.0,563.5273,108.0,18.65,0.0,0.0, +2024-01-11 01:00:00,6.661081,187.76508,24.4,1001.0131,70.113,520.0,608.9044,163.0,18.6,0.0,0.0, +2024-01-11 02:00:00,6.760177,187.65056,25.45,1000.94244,65.65015,731.0,727.75085,182.0,18.55,0.0,0.0, +2024-01-11 03:00:00,7.0092797,194.03627,26.15,1000.46564,62.785374,881.0,766.54456,204.0,18.5,0.0,0.0, +2024-01-11 04:00:00,7.3736014,200.64706,26.05,1000.26447,63.753475,986.0,761.46313,252.0,18.65,0.0,0.0, +2024-01-11 05:00:00,7.738863,205.2405,25.75,1000.2563,66.537964,1026.0,798.0868,235.0,19.05,0.0,0.0, +2024-01-11 06:00:00,7.7472577,203.58704,25.7,1000.1559,65.70223,1007.0,825.6446,212.0,18.8,0.0,0.0, +2024-01-11 07:00:00,7.7472577,203.58704,25.3,999.6489,66.862816,903.0,808.04407,191.0,18.7,0.0,0.0, +2024-01-11 08:00:00,7.31642,201.65605,24.8,999.2387,69.53406,764.0,823.7425,145.0,18.85,0.0,0.0, +2024-01-11 09:00:00,7.116881,199.70807,24.15,999.31995,73.88823,562.0,756.9059,121.0,19.2,0.0,0.0, +2024-01-11 10:00:00,7.05195,198.17812,23.2,999.78986,77.99491,326.0,577.4318,103.0,19.15,0.0,0.0, +2024-01-11 11:00:00,6.963476,192.43954,22.3,1000.0624,81.85773,116.0,336.19122,57.0,19.05,0.0,0.0, +2024-01-11 12:00:00,6.661081,187.76508,21.6,1000.53876,85.162895,5.0,18.036095,4.0,19.0,0.0,0.0, +2024-01-11 13:00:00,5.813777,183.94511,21.1,1000.8226,85.64528,0.0,0.0,0.0,18.6,0.0,0.0, +2024-01-11 14:00:00,5.4332314,186.3401,21.0,1000.8197,86.442894,0.0,0.0,0.0,18.65,0.0,0.0, +2024-01-11 15:00:00,4.704253,182.4366,20.8,1000.7149,85.883804,0.0,0.0,0.0,18.35,0.0,0.0, +2024-01-11 16:00:00,4.604346,177.5105,20.5,1000.508,89.424126,0.0,0.0,0.0,18.7,0.0,0.0, +2024-01-11 17:00:00,4.4011364,178.69807,20.35,999.90894,89.133224,0.0,0.0,0.0,18.5,0.0,0.0, +2024-01-11 18:00:00,4.6270943,186.20335,20.5,999.2187,87.76043,0.0,0.0,0.0,18.4,0.0,0.0, +2024-01-11 19:00:00,4.110961,184.18483,20.45,999.01917,89.141045,0.0,0.0,0.0,18.6,0.0,0.0, +2024-01-11 20:00:00,3.522783,173.4803,20.3,998.7172,90.81832,0.0,0.0,0.0,18.75,0.0,0.0, +2024-01-11 21:00:00,3.206244,183.57626,20.2,998.9128,91.38123,0.0,0.0,0.0,18.75,0.0,0.0, +2024-01-11 22:00:00,2.9017239,181.97488,20.4,999.51337,90.259285,5.0,17.708017,4.0,18.75,0.0,0.0, +2024-01-11 23:00:00,3.6496572,189.46225,22.15,999.95905,80.82279,116.0,321.1438,59.0,18.7,0.0,0.0, +2024-01-12 00:00:00,3.0083218,201.4478,23.55,999.7004,74.01776,311.0,520.4385,109.0,18.65,0.0,0.0, +2024-01-12 01:00:00,2.9546573,203.9625,24.8,999.93304,69.31721,471.0,419.24765,226.0,18.8,0.0,0.0, +2024-01-12 02:00:00,2.9732137,227.72638,25.8,999.76166,66.7559,719.0,707.9699,186.0,19.15,0.0,0.0, +2024-01-12 03:00:00,4.159327,242.81897,26.35,999.7767,65.63276,893.0,816.2508,173.0,19.4,0.0,0.0, +2024-01-12 04:00:00,4.88467,247.1094,26.6,999.18805,63.475418,1016.0,909.42505,140.0,19.1,0.0,0.0, +2024-01-12 05:00:00,5.515433,247.61981,26.75,998.89453,63.310513,1065.0,957.79913,116.0,19.2,0.0,0.0, +2024-01-12 06:00:00,5.3665633,243.43501,26.5,998.59045,64.85252,1034.0,950.2573,119.0,19.35,0.0,0.0, +2024-01-12 07:00:00,5.4037023,231.009,26.35,998.09033,67.28347,936.0,932.6169,114.0,19.8,0.0,0.0, +2024-01-12 08:00:00,5.7688823,213.6901,25.35,998.16223,70.29106,760.0,817.9952,145.0,19.55,0.0,0.0, +2024-01-12 09:00:00,5.7775426,203.45905,24.85,997.9504,69.76099,568.0,788.94714,108.0,18.95,0.0,0.0, +2024-01-12 10:00:00,5.8872743,200.89784,23.5,998.5086,76.11925,346.0,682.9943,82.0,19.05,0.0,0.0, +2024-01-12 11:00:00,5.7584724,200.32323,22.5,998.97705,84.46686,125.0,432.67487,49.0,19.75,0.0,0.0, +2024-01-12 12:00:00,4.9335585,197.70052,21.85,999.3558,88.42406,5.0,18.021309,4.0,19.85,0.0,0.0, +2024-01-12 13:00:00,5.2773094,189.81923,21.35,999.9368,86.20703,0.0,0.0,0.0,18.95,0.0,0.0, +2024-01-12 14:00:00,4.304649,177.33705,21.35,999.9368,87.56126,0.0,0.0,0.0,19.2,0.0,0.0, +2024-01-12 15:00:00,2.8792362,159.67677,20.6,999.7174,92.83996,0.0,0.0,0.0,19.4,0.0,0.0, +2024-01-12 16:00:00,1.5297059,168.69011,20.1,999.0091,94.86132,0.0,0.0,0.0,19.25,0.0,0.0, +2024-01-12 17:00:00,1.9924859,162.47433,19.2,998.58704,96.022415,0.0,0.0,0.0,18.55,0.0,0.0, +2024-01-12 18:00:00,1.7720045,196.38962,19.25,997.99347,94.82876,0.0,0.0,0.0,18.4,0.0,0.0, +2024-01-12 19:00:00,2.408319,221.63345,18.65,997.2824,96.00604,0.0,0.0,0.0,18.0,0.0,0.0, +2024-01-12 20:00:00,2.4758837,226.63654,18.45,997.27673,96.60608,0.0,0.0,0.0,17.9,0.0,0.0, +2024-01-12 21:00:00,1.8384775,224.9999,19.7,997.4113,95.44005,0.0,0.0,0.0,18.95,0.0,0.0, +2024-01-12 22:00:00,1.6155494,201.80147,20.2,998.4169,95.456955,5.0,18.120289,4.0,19.45,0.0,0.0, +2024-01-12 23:00:00,2.6400757,217.30403,21.8,998.85834,87.32941,91.0,171.46028,61.0,19.6,0.0,0.0, +2024-01-13 00:00:00,2.6172504,226.54811,23.35,998.8021,78.50382,302.0,489.7816,113.0,19.4,0.0,0.0, +2024-01-13 01:00:00,3.3421547,218.92755,24.65,999.2346,71.263,498.0,506.45633,203.0,19.1,0.0,0.0, +2024-01-13 02:00:00,3.8209944,227.12111,25.5,999.2575,69.02067,719.0,693.42114,198.0,19.4,0.0,0.0, +2024-01-13 03:00:00,4.4407206,234.16226,26.0,998.8746,66.79651,900.0,830.88934,168.0,19.35,0.0,0.0, +2024-01-13 04:00:00,4.743417,235.30478,26.35,998.5863,65.63276,1027.0,929.8211,132.0,19.4,0.0,0.0, +2024-01-13 05:00:00,4.992995,237.26477,26.55,998.5916,65.47068,1059.0,931.86804,136.0,19.55,0.0,0.0, +2024-01-13 06:00:00,5.077401,237.87503,26.5,998.19366,65.86817,1023.0,919.12573,138.0,19.6,0.0,0.0, +2024-01-13 07:00:00,5.269725,236.61147,26.15,997.9858,67.66209,920.0,890.44073,135.0,19.7,0.0,0.0, +2024-01-13 08:00:00,4.9648767,235.66972,25.7,997.7753,71.232895,762.0,845.5697,126.0,20.1,0.0,0.0, +2024-01-13 09:00:00,4.8259716,235.9806,25.05,997.65814,73.81096,552.0,737.0721,122.0,20.05,0.0,0.0, +2024-01-13 10:00:00,4.327817,229.68597,24.0,997.8281,79.57509,333.0,628.27234,90.0,20.25,0.0,0.0, +2024-01-13 11:00:00,3.679674,222.79738,22.95,998.1961,85.56587,120.0,381.3328,53.0,20.4,0.0,0.0, +2024-01-13 12:00:00,3.4655447,226.16905,22.55,998.5818,87.66661,5.0,18.024712,4.0,20.4,0.0,0.0, +2024-01-13 13:00:00,3.9597979,224.9999,21.75,999.1547,87.86884,0.0,0.0,0.0,19.65,0.0,0.0, +2024-01-13 14:00:00,3.275668,211.26367,21.75,999.2539,87.32489,0.0,0.0,0.0,19.55,0.0,0.0, +2024-01-13 15:00:00,2.8792362,200.32323,21.85,999.455,86.793205,0.0,0.0,0.0,19.55,0.0,0.0, +2024-01-13 16:00:00,2.7784889,210.25635,21.9,998.9604,86.26035,0.0,0.0,0.0,19.5,0.0,0.0, +2024-01-13 17:00:00,2.9068882,229.18501,21.5,998.35425,88.39515,0.0,0.0,0.0,19.5,0.0,0.0, +2024-01-13 18:00:00,3.2202482,233.84172,21.45,997.6585,89.21868,0.0,0.0,0.0,19.6,0.0,0.0, +2024-01-13 19:00:00,2.8999999,226.39711,21.05,997.74634,91.7186,0.0,0.0,0.0,19.65,0.0,0.0, +2024-01-13 20:00:00,3.1890438,221.18582,21.35,997.854,90.04597,0.0,0.0,0.0,19.65,0.0,0.0, +2024-01-13 21:00:00,3.4999998,216.86998,21.45,997.95605,89.21868,0.0,0.0,0.0,19.6,0.0,0.0, +2024-01-13 22:00:00,3.4,208.07239,21.45,998.2536,88.94202,3.0,0.0,3.0,19.55,0.0,0.0, +2024-01-13 23:00:00,3.8910153,205.90645,22.35,998.477,82.89014,103.0,260.97473,58.0,19.3,0.0,0.0, +2024-01-14 00:00:00,3.7443287,214.11452,23.05,998.49646,77.972916,208.0,151.18759,150.0,19.0,0.0,0.0, +2024-01-14 01:00:00,3.7443287,214.11452,24.5,998.437,73.48912,459.0,377.21646,240.0,19.45,0.0,0.0, +2024-01-14 02:00:00,3.8600519,216.57312,25.65,998.5672,68.40877,646.0,496.1134,274.0,19.4,0.0,0.0, +2024-01-14 03:00:00,4.263801,230.7106,26.3,998.38635,66.85731,806.0,542.1234,329.0,19.65,0.0,0.0, +2024-01-14 04:00:00,5.249762,229.63554,26.5,997.99524,66.48424,1000.0,827.5831,204.0,19.75,0.0,0.0, +2024-01-14 05:00:00,5.663921,227.86247,26.6,997.89856,64.873634,1032.0,841.30566,199.0,19.45,0.0,0.0, +2024-01-14 06:00:00,5.728001,225.70723,26.35,997.69354,65.63276,952.0,687.57135,290.0,19.4,0.0,0.0, +2024-01-14 07:00:00,5.9396963,224.9999,25.75,997.1813,68.854744,787.0,488.8098,356.0,19.6,0.0,0.0, +2024-01-14 08:00:00,5.7801385,217.26648,25.15,997.16504,71.1327,571.0,316.3152,333.0,19.55,0.0,0.0, +2024-01-14 09:00:00,5.8591805,207.43964,24.7,997.1529,73.523254,415.0,318.6834,229.0,19.65,0.0,0.0, +2024-01-14 10:00:00,5.9135437,198.74144,23.85,997.4272,77.60714,242.0,196.41577,166.0,19.7,0.0,0.0, +2024-01-14 11:00:00,5.2392745,193.24052,23.3,997.809,79.726006,66.0,0.0,66.0,19.6,0.0,0.0, +2024-01-14 12:00:00,4.707441,192.26476,22.9,997.897,81.67813,4.0,0.0,4.0,19.6,0.0,0.0, +2024-01-14 13:00:00,4.440721,187.76508,22.15,998.4713,84.166824,0.0,0.0,0.0,19.35,0.0,0.0, +2024-01-14 14:00:00,4.3104525,183.99083,22.15,999.0664,84.69192,0.0,0.0,0.0,19.45,0.0,0.0, +2024-01-14 15:00:00,3.9,180.0,21.9,998.762,86.26035,0.0,0.0,0.0,19.5,0.0,0.0, +2024-01-14 16:00:00,3.8052595,183.01273,21.95,998.3666,85.99758,0.0,0.0,0.0,19.5,0.0,0.0, +2024-01-14 17:00:00,3.5128336,175.101,21.9,997.671,85.459526,0.0,0.0,0.0,19.35,0.0,0.0, +2024-01-14 18:00:00,3.5057096,176.72958,21.55,997.3638,87.5789,0.0,0.0,0.0,19.4,0.0,0.0, +2024-01-14 19:00:00,3.7054014,176.906,21.3,997.05927,89.2071,0.0,0.0,0.0,19.45,0.0,0.0, +2024-01-14 20:00:00,3.4234486,173.29025,21.2,997.05646,89.477196,0.0,0.0,0.0,19.4,0.0,0.0, +2024-01-14 21:00:00,3.1575305,169.04597,21.25,997.05774,88.64993,0.0,0.0,0.0,19.3,0.0,0.0, +2024-01-14 22:00:00,2.8635643,167.90526,21.2,997.55237,88.92221,4.0,19.017685,3.0,19.3,0.0,0.0, +2024-01-14 23:00:00,3.49285,166.75948,22.55,997.8875,81.888756,109.0,329.70764,53.0,19.3,0.0,0.0, +2024-01-15 00:00:00,3.2,180.0,24.4,997.93823,72.56277,306.0,521.851,107.0,19.15,0.0,0.0, +2024-01-15 01:00:00,4.0521603,195.75124,25.55,998.26715,69.46065,539.0,699.9302,134.0,19.55,0.0,0.0, +2024-01-15 02:00:00,5.0990195,205.55992,26.2,998.1855,68.09292,758.0,848.6067,123.0,19.85,0.0,0.0, +2024-01-15 03:00:00,5.7306194,209.24873,26.5,997.6977,66.690704,921.0,908.118,123.0,19.8,0.0,0.0, +2024-01-15 04:00:00,6.105735,211.60745,26.75,997.2082,65.71578,1023.0,933.30676,126.0,19.8,0.0,0.0, +2024-01-15 05:00:00,6.242595,215.21768,26.9,997.11316,64.9369,1061.0,949.7414,121.0,19.75,0.0,0.0, +2024-01-15 06:00:00,6.2128897,213.17853,26.65,997.2057,66.30906,1028.0,941.09235,122.0,19.85,0.0,0.0, +2024-01-15 07:00:00,6.2433968,211.90807,26.4,997.0005,67.71174,926.0,914.00214,120.0,19.95,0.0,0.0, +2024-01-15 08:00:00,5.866856,209.62366,25.95,996.39307,69.32171,760.0,839.7372,128.0,19.9,0.0,0.0, +2024-01-15 09:00:00,5.5946403,204.27443,25.1,995.9736,73.59135,560.0,760.4731,116.0,20.05,0.0,0.0, +2024-01-15 10:00:00,5.2201533,200.17073,24.1,995.94635,78.85463,337.0,638.2172,90.0,20.2,0.0,0.0, +2024-01-15 11:00:00,4.6840153,196.1135,23.25,996.1213,83.25267,112.0,313.35025,57.0,20.25,0.0,0.0, +2024-01-15 12:00:00,4.1231055,194.03627,22.75,996.3059,85.81048,5.0,18.076002,4.0,20.25,0.0,0.0, +2024-01-15 13:00:00,4.2720017,196.31393,21.9,996.97675,89.52992,0.0,0.0,0.0,20.1,0.0,0.0, +2024-01-15 14:00:00,4.3416586,194.67644,21.75,997.27026,90.07456,0.0,0.0,0.0,20.05,0.0,0.0, +2024-01-15 15:00:00,4.1785164,201.03758,21.65,997.3666,90.90762,0.0,0.0,0.0,20.1,0.0,0.0, +2024-01-15 16:00:00,3.6055512,199.44012,21.6,996.869,90.623405,0.0,0.0,0.0,20.0,0.0,0.0, +2024-01-15 17:00:00,2.8635643,192.09474,21.45,996.17084,90.894424,0.0,0.0,0.0,19.9,0.0,0.0, +2024-01-15 18:00:00,3.0016663,178.0909,21.5,995.97394,90.3363,0.0,0.0,0.0,19.85,0.0,0.0, +2024-01-15 19:00:00,2.236068,190.3048,21.6,995.4805,88.95389,0.0,0.0,0.0,19.7,0.0,0.0, +2024-01-15 20:00:00,2.376973,202.24907,21.15,995.5672,91.44055,0.0,0.0,0.0,19.7,0.0,0.0, +2024-01-15 21:00:00,2.7784889,210.25635,21.3,995.76996,90.88459,0.0,0.0,0.0,19.75,0.0,0.0, +2024-01-15 22:00:00,2.9681644,212.61923,21.3,996.46423,91.16683,3.0,0.0,3.0,19.8,0.0,0.0, +2024-01-15 23:00:00,3.11127,224.9999,21.95,996.978,86.80251,63.0,77.740776,50.0,19.65,0.0,0.0, +2024-01-16 00:00:00,2.828427,224.9999,22.7,997.0981,82.16229,173.0,89.70793,139.0,19.5,0.0,0.0, +2024-01-16 01:00:00,3.001666,240.01845,23.2,997.4094,78.72691,317.0,124.85619,245.0,19.3,0.0,0.0, +2024-01-16 02:00:00,3.1906114,237.80429,24.45,997.4435,72.12074,564.0,378.99118,281.0,19.1,0.0,0.0, +2024-01-16 03:00:00,3.8587563,238.78166,25.55,997.3744,66.91356,835.0,597.0935,311.0,18.95,0.0,0.0, +2024-01-16 04:00:00,4.4777226,240.57263,25.95,997.1866,65.3453,1006.0,855.9499,184.0,18.95,0.0,0.0, +2024-01-16 05:00:00,4.8764744,241.85849,26.2,997.19354,64.18551,1050.0,903.6431,156.0,18.9,0.0,0.0, +2024-01-16 06:00:00,4.924429,246.0375,26.25,997.19476,63.796696,1028.0,923.56287,139.0,18.85,0.0,0.0, +2024-01-16 07:00:00,4.976947,247.5572,25.85,996.88654,65.73345,933.0,921.8811,120.0,18.95,0.0,0.0, +2024-01-16 08:00:00,4.4944406,249.14546,25.4,996.47766,67.30214,776.0,884.7407,110.0,18.9,0.0,0.0, +2024-01-16 09:00:00,3.7161808,246.19405,24.75,996.36053,70.61792,575.0,816.8159,98.0,19.05,0.0,0.0, +2024-01-16 10:00:00,3.6359317,238.49579,23.85,996.6337,75.23183,347.0,689.8912,80.0,19.2,0.0,0.0, +2024-01-16 11:00:00,3.5468295,229.574,23.0,997.20544,79.437294,126.0,444.94803,48.0,19.25,0.0,0.0, +2024-01-16 12:00:00,3.0413814,223.66785,22.35,997.48517,82.89014,5.0,18.124813,4.0,19.3,0.0,0.0, +2024-01-16 13:00:00,3.0528674,211.60745,22.0,998.07056,81.82038,0.0,0.0,0.0,18.75,0.0,0.0, +2024-01-16 14:00:00,2.6832817,206.56499,21.7,998.35956,83.59347,0.0,0.0,0.0,18.8,0.0,0.0, +2024-01-16 15:00:00,2.9154758,157.8336,21.6,998.7535,84.36924,0.0,0.0,0.0,18.85,0.0,0.0, +2024-01-16 16:00:00,1.4866068,137.72638,21.6,997.9601,83.84376,0.0,0.0,0.0,18.75,0.0,0.0, +2024-01-16 17:00:00,1.4560219,285.94547,19.9,996.8219,92.22447,0.0,0.0,0.0,18.6,0.0,0.0, +2024-01-16 18:00:00,1.360147,162.89719,19.8,996.6208,90.21685,0.0,0.0,0.0,18.15,0.0,0.0, +2024-01-16 19:00:00,1.9104972,227.12111,19.4,996.4108,91.330826,0.0,0.0,0.0,17.95,0.0,0.0, +2024-01-16 20:00:00,2.184033,195.94547,18.9,996.5951,93.33601,0.0,0.0,0.0,17.8,0.0,0.0, +2024-01-16 21:00:00,2.1931713,226.8476,19.05,996.897,93.050285,0.0,0.0,0.0,17.9,0.0,0.0, +2024-01-16 22:00:00,1.5811387,235.30478,20.2,997.3259,90.52801,3.0,20.046032,2.0,18.6,0.0,0.0, +2024-01-16 23:00:00,2.624881,229.63554,22.4,998.08154,79.85172,113.0,413.2254,45.0,18.75,0.0,0.0, +2024-01-17 00:00:00,2.7802877,232.3057,23.65,998.11597,73.803566,320.0,613.30176,89.0,18.7,0.0,0.0, +2024-01-17 01:00:00,3.6055512,236.3099,24.3,998.5306,68.57254,536.0,706.4897,130.0,18.15,0.0,0.0, +2024-01-17 02:00:00,3.920459,232.25313,24.95,998.7468,66.374016,717.0,727.3887,175.0,18.25,0.0,0.0, +2024-01-17 03:00:00,4.6400433,232.88306,25.45,998.85944,64.42741,886.0,797.5745,187.0,18.25,0.0,0.0, +2024-01-17 04:00:00,4.9406476,234.0578,25.85,998.5729,62.522633,1019.0,927.5186,129.0,18.15,0.0,0.0, +2024-01-17 05:00:00,5.140039,232.90707,25.95,998.37695,62.348854,1058.0,945.5096,123.0,18.2,0.0,0.0, +2024-01-17 06:00:00,5.672742,229.28925,25.85,998.37445,63.710182,1023.0,923.72815,134.0,18.45,0.0,0.0, +2024-01-17 07:00:00,5.9413805,226.36386,25.5,998.2656,65.04683,924.0,891.25543,138.0,18.45,0.0,0.0, +2024-01-17 08:00:00,6.16198,221.71066,25.0,998.0538,66.176414,775.0,877.99536,114.0,18.25,0.0,0.0, +2024-01-17 09:00:00,6.2008066,217.794,24.5,997.9411,67.96909,567.0,779.06433,112.0,18.2,0.0,0.0, +2024-01-17 10:00:00,6.105735,211.60745,23.85,998.02234,69.5705,334.0,625.4176,92.0,17.95,0.0,0.0, +2024-01-17 11:00:00,5.59017,206.56499,23.1,998.5968,72.33292,119.0,371.44623,54.0,17.85,0.0,0.0, +2024-01-17 12:00:00,5.2554736,201.19412,22.9,998.8888,73.21379,5.0,18.187899,4.0,17.85,0.0,0.0, +2024-01-17 13:00:00,4.846648,201.80147,22.45,999.0749,74.29833,0.0,0.0,0.0,17.65,0.0,0.0, +2024-01-17 14:00:00,4.588028,196.4601,22.35,999.36957,74.987335,0.0,0.0,0.0,17.7,0.0,0.0, +2024-01-17 15:00:00,4.464303,195.59286,22.35,999.36957,74.987335,0.0,0.0,0.0,17.7,0.0,0.0, +2024-01-17 16:00:00,4.9030604,191.76826,22.15,999.2648,78.0849,0.0,0.0,0.0,18.15,0.0,0.0, +2024-01-17 17:00:00,4.9162993,184.66678,22.15,999.0664,78.823395,0.0,0.0,0.0,18.3,0.0,0.0, +2024-01-17 18:00:00,5.0159745,175.42616,21.55,999.14905,81.76416,0.0,0.0,0.0,18.3,0.0,0.0, +2024-01-17 19:00:00,4.9335585,162.29948,21.25,999.33887,85.12647,0.0,0.0,0.0,18.65,0.0,0.0, +2024-01-17 20:00:00,3.939543,156.0375,21.1,999.4341,84.84471,0.0,0.0,0.0,18.45,0.0,0.0, +2024-01-17 21:00:00,3.2649658,152.6502,20.7,999.6211,86.685356,0.0,0.0,0.0,18.4,0.0,0.0, +2024-01-17 22:00:00,2.5,143.13002,20.5,1000.21045,88.035835,3.0,0.0,3.0,18.45,0.0,0.0, +2024-01-17 23:00:00,2.751363,160.90642,21.9,1000.54724,80.03402,101.0,296.54938,53.0,18.3,0.0,0.0, +2024-01-18 00:00:00,4.440721,187.76508,23.55,1000.69226,71.50947,318.0,609.1935,90.0,18.1,0.0,0.0, +2024-01-18 01:00:00,5.096077,195.94547,24.85,1000.7278,63.492657,561.0,787.554,110.0,17.45,0.0,0.0, +2024-01-18 02:00:00,5.7939625,201.25058,25.5,1000.9437,58.99343,769.0,874.2165,119.0,16.9,0.0,0.0, +2024-01-18 03:00:00,6.5924196,202.28563,25.85,1000.85425,56.332172,939.0,935.7767,120.0,16.5,0.0,0.0, +2024-01-18 04:00:00,7.2449985,200.18588,26.25,1000.6665,55.18998,1045.0,961.68066,123.0,16.55,0.0,0.0, +2024-01-18 05:00:00,7.655063,199.8553,26.15,1000.36646,56.584717,1078.0,957.0924,132.0,16.85,0.0,0.0, +2024-01-18 06:00:00,7.81089,198.667,26.05,1000.1652,56.56035,1042.0,942.6379,135.0,16.75,0.0,0.0, +2024-01-18 07:00:00,7.7491937,197.2659,25.7,999.85834,57.7452,936.0,904.90234,138.0,16.75,0.0,0.0, +2024-01-18 08:00:00,7.7620873,194.93147,25.3,999.6489,57.64905,790.0,901.86865,111.0,16.35,0.0,0.0, +2024-01-18 09:00:00,7.930952,193.86105,24.6,999.53064,60.87653,584.0,832.1579,98.0,16.55,0.0,0.0, +2024-01-18 10:00:00,7.5802374,188.34381,23.55,999.7004,64.42661,343.0,654.1093,90.0,16.45,0.0,0.0, +2024-01-18 11:00:00,7.7317524,185.19434,22.75,999.8765,67.40425,123.0,412.38422,51.0,16.4,0.0,0.0, +2024-01-18 12:00:00,7.4,180.0,21.95,1000.25104,73.28028,4.0,18.266336,3.0,16.95,0.0,0.0, +2024-01-18 13:00:00,6.129437,174.3825,21.3,1000.72894,69.52157,0.0,0.0,0.0,15.5,0.0,0.0, +2024-01-18 14:00:00,5.8549128,172.14677,21.0,1000.8197,70.13558,0.0,0.0,0.0,15.35,0.0,0.0, +2024-01-18 15:00:00,5.4589376,171.57312,20.75,1000.71356,70.7666,0.0,0.0,0.0,15.25,0.0,0.0, +2024-01-18 16:00:00,5.080354,169.79608,20.6,1000.2133,70.966125,0.0,0.0,0.0,15.15,0.0,0.0, +2024-01-18 17:00:00,5.1195703,167.59259,20.3,999.9074,72.524536,0.0,0.0,0.0,15.2,0.0,0.0, +2024-01-18 18:00:00,5.2392745,166.75948,20.05,999.702,73.89116,0.0,0.0,0.0,15.25,0.0,0.0, +2024-01-18 19:00:00,5.0,163.73972,19.7,999.6924,75.51129,0.0,0.0,0.0,15.25,0.0,0.0, +2024-01-18 20:00:00,4.4598203,160.34608,19.4,999.88196,76.19396,0.0,0.0,0.0,15.1,0.0,0.0, +2024-01-18 21:00:00,4.031129,150.2552,19.15,1000.1725,76.893,0.0,0.0,0.0,15.0,0.0,0.0, +2024-01-18 22:00:00,3.9824615,141.1155,18.7,1000.55634,78.576096,3.0,0.0,3.0,14.9,0.0,0.0, +2024-01-18 23:00:00,4.7201695,143.61555,20.1,1000.9926,71.331116,113.0,408.4647,48.0,14.75,0.0,0.0, +2024-01-19 00:00:00,5.1478148,155.9245,22.0,1001.44275,63.679153,336.0,677.68176,84.0,14.8,0.0,0.0, +2024-01-19 01:00:00,5.3160133,163.61038,23.6,1001.58624,56.320705,574.0,825.41,103.0,14.4,0.0,0.0, +2024-01-19 02:00:00,5.2086463,176.6982,25.25,1001.43304,50.69339,780.0,885.5686,123.0,14.3,0.0,0.0, +2024-01-19 03:00:00,6.166036,188.39284,26.2,1001.26056,49.012135,951.0,954.244,117.0,14.65,0.0,0.0, +2024-01-19 04:00:00,7.0092797,194.03627,26.4,1000.5715,48.75008,1056.0,975.0473,122.0,14.75,0.0,0.0, +2024-01-19 05:00:00,7.42159,194.03627,26.55,1000.27795,47.39427,1093.0,981.8762,123.0,14.45,0.0,0.0, +2024-01-19 06:00:00,7.615773,193.67133,26.3,999.87427,49.514843,1062.0,978.2282,121.0,14.9,0.0,0.0, +2024-01-19 07:00:00,7.5186434,193.85144,25.85,999.56476,51.343594,962.0,958.294,117.0,15.05,0.0,0.0, +2024-01-19 08:00:00,7.495332,193.1092,25.25,999.3501,54.58999,803.0,921.8287,109.0,15.45,0.0,0.0, +2024-01-19 09:00:00,7.3164196,190.23474,24.55,999.33093,57.652252,596.0,852.8221,98.0,15.65,0.0,0.0, +2024-01-19 10:00:00,7.244308,186.3401,23.8,999.70703,62.860924,361.0,724.35693,81.0,16.3,0.0,0.0, +2024-01-19 11:00:00,7.0007143,180.81844,22.7,999.8752,70.23431,131.0,470.96854,49.0,17.0,0.0,0.0, +2024-01-19 12:00:00,6.2128897,176.30869,22.05,1000.353,74.466095,5.0,18.361795,4.0,17.3,0.0,0.0, +2024-01-19 13:00:00,4.9365983,173.01904,21.35,1000.92865,79.207016,0.0,0.0,0.0,17.6,0.0,0.0, +2024-01-19 14:00:00,4.9365983,173.01904,21.05,1001.3168,82.73589,0.0,0.0,0.0,18.0,0.0,0.0, +2024-01-19 15:00:00,5.1971145,168.90631,20.85,1000.81555,85.35196,0.0,0.0,0.0,18.3,0.0,0.0, +2024-01-19 16:00:00,5.2392745,166.75948,20.7,1000.4145,86.414116,0.0,0.0,0.0,18.35,0.0,0.0, +2024-01-19 17:00:00,5.508176,164.19742,20.6,999.8166,87.769165,0.0,0.0,0.0,18.5,0.0,0.0, +2024-01-19 18:00:00,5.565968,162.21602,20.35,999.21466,89.133224,0.0,0.0,0.0,18.5,0.0,0.0, +2024-01-19 19:00:00,5.2810984,161.22188,20.25,999.4102,89.405075,0.0,0.0,0.0,18.45,0.0,0.0, +2024-01-19 20:00:00,4.7169905,158.87521,20.05,999.702,89.95222,0.0,0.0,0.0,18.35,0.0,0.0, +2024-01-19 21:00:00,4.0706263,152.176,19.75,999.8919,90.49702,0.0,0.0,0.0,18.15,0.0,0.0, +2024-01-19 22:00:00,3.577709,153.43501,19.25,1000.5721,91.32129,2.0,0.0,2.0,17.8,0.0,0.0, +2024-01-19 23:00:00,4.3863425,155.77226,20.75,1000.9119,81.14969,109.0,415.6625,44.0,17.4,0.0,0.0, +2024-01-20 00:00:00,4.016217,161.11382,22.65,1001.1631,72.024925,324.0,657.7796,81.0,17.35,0.0,0.0, +2024-01-20 01:00:00,4.2426405,171.86998,25.15,1001.1326,59.098347,550.0,786.1759,103.0,16.6,0.0,0.0, +2024-01-20 02:00:00,4.604346,182.4895,27.3,1000.6948,53.555653,758.0,878.08044,108.0,17.05,0.0,0.0, +2024-01-20 03:00:00,5.096077,195.94547,28.55,1000.33167,53.030853,919.0,920.07776,116.0,18.05,0.0,0.0, +2024-01-20 04:00:00,6.397656,204.96275,28.25,999.92664,58.53359,1023.0,943.53217,120.0,19.35,0.0,0.0, +2024-01-20 05:00:00,7.4732857,204.50739,27.4,999.90405,60.372963,1060.0,950.00055,122.0,19.05,0.0,0.0, +2024-01-20 06:00:00,7.4464755,202.08722,27.35,999.8036,60.739105,1028.0,943.16815,121.0,19.1,0.0,0.0, +2024-01-20 07:00:00,7.725283,201.25058,26.55,999.782,64.46078,929.0,922.1483,116.0,19.3,0.0,0.0, +2024-01-20 08:00:00,7.4946647,198.6768,26.05,999.57007,66.39229,771.0,880.75806,108.0,19.3,0.0,0.0, +2024-01-20 09:00:00,6.888396,193.43105,25.4,999.3542,69.43204,569.0,810.2189,96.0,19.4,0.0,0.0, +2024-01-20 10:00:00,6.264982,188.25935,24.35,999.52374,74.61442,342.0,678.34344,80.0,19.55,0.0,0.0, +2024-01-20 11:00:00,5.830952,185.90605,23.1,1000.0846,82.978226,124.0,443.70972,47.0,20.05,0.0,0.0, +2024-01-20 12:00:00,5.3009434,178.9191,22.4,1000.462,87.11334,4.0,18.471443,3.0,20.15,0.0,0.0, +2024-01-20 13:00:00,4.101219,178.60284,21.8,1000.7428,90.357155,0.0,0.0,0.0,20.15,0.0,0.0, +2024-01-20 14:00:00,4.501111,181.273,21.5,1000.933,92.31474,0.0,0.0,0.0,20.2,0.0,0.0, +2024-01-20 15:00:00,4.8,180.0,21.45,1000.6339,91.45914,0.0,0.0,0.0,20.0,0.0,0.0, +2024-01-20 16:00:00,4.8010416,178.80653,21.35,1000.2344,90.32584,0.0,0.0,0.0,19.7,0.0,0.0, +2024-01-20 17:00:00,5.0159745,175.42616,21.45,999.93964,88.1166,0.0,0.0,0.0,19.4,0.0,0.0, +2024-01-20 18:00:00,4.8507733,171.70294,21.35,999.4409,87.56126,0.0,0.0,0.0,19.2,0.0,0.0, +2024-01-20 19:00:00,4.785394,169.15974,21.25,999.23975,87.27989,0.0,0.0,0.0,19.05,0.0,0.0, +2024-01-20 20:00:00,5.0635953,170.9098,21.35,999.4409,87.017334,0.0,0.0,0.0,19.1,0.0,0.0, +2024-01-20 21:00:00,4.7675986,170.34018,21.4,999.6408,86.75119,0.0,0.0,0.0,19.1,0.0,0.0, +2024-01-20 22:00:00,4.491102,168.4399,21.3,1000.23303,87.28443,2.0,0.0,2.0,19.1,0.0,0.0, +2024-01-20 23:00:00,5.885576,170.21767,22.4,1000.462,81.108055,85.0,208.33603,53.0,19.0,0.0,0.0, +2024-01-21 00:00:00,6.1032777,178.12216,23.9,1000.7017,71.797485,264.0,332.44598,142.0,18.5,0.0,0.0, +2024-01-21 01:00:00,6.537584,186.14653,25.0,1001.12866,68.06816,480.0,561.33386,162.0,18.7,0.0,0.0, +2024-01-21 02:00:00,6.7896976,189.32352,25.6,1000.9466,66.09323,693.0,690.50366,183.0,18.8,0.0,0.0, +2024-01-21 03:00:00,6.888396,193.43105,26.1,1000.6625,63.565197,859.0,766.49835,191.0,18.65,0.0,0.0, +2024-01-21 04:00:00,6.992138,196.62083,26.5,1000.4751,61.309048,985.0,841.9114,180.0,18.45,0.0,0.0, +2024-01-21 05:00:00,7.3054776,199.17911,26.55,1000.37714,61.705418,1038.0,891.77246,158.0,18.6,0.0,0.0, +2024-01-21 06:00:00,7.8447437,197.04912,26.25,1000.17053,63.597736,1006.0,878.999,161.0,18.8,0.0,0.0, +2024-01-21 07:00:00,8.008121,195.94547,25.9,1000.1612,65.13116,898.0,820.2421,175.0,18.85,0.0,0.0, +2024-01-21 08:00:00,8.319857,193.2011,25.4,1000.1477,67.092354,736.0,758.69476,165.0,18.85,0.0,0.0, +2024-01-21 09:00:00,8.041144,190.75092,24.75,1000.12976,70.838425,545.0,717.99426,126.0,19.1,0.0,0.0, +2024-01-21 10:00:00,8.386298,188.22664,23.75,1000.30096,75.68577,321.0,570.186,101.0,19.2,0.0,0.0, +2024-01-21 11:00:00,7.8160095,183.66771,22.75,1000.86835,80.398766,106.0,300.79166,54.0,19.2,0.0,0.0, +2024-01-21 12:00:00,7.1028166,178.38649,22.3,1001.25256,82.36959,4.0,18.599356,3.0,19.15,0.0,0.0, +2024-01-21 13:00:00,6.412488,176.42374,21.8,1001.4371,81.53977,0.0,0.0,0.0,18.5,0.0,0.0, +2024-01-21 14:00:00,7.025667,175.101,21.65,1001.6314,81.01112,0.0,0.0,0.0,18.25,0.0,0.0, +2024-01-21 15:00:00,6.8593006,172.46065,21.65,1001.5322,78.751976,0.0,0.0,0.0,17.8,0.0,0.0, +2024-01-21 16:00:00,6.363961,171.86998,21.05,1000.9201,81.7014,0.0,0.0,0.0,17.8,0.0,0.0, +2024-01-21 17:00:00,6.063827,166.65126,20.55,1000.3113,83.72527,0.0,0.0,0.0,17.7,0.0,0.0, +2024-01-21 18:00:00,6.016644,164.57777,20.2,999.90454,84.74875,0.0,0.0,0.0,17.55,0.0,0.0, +2024-01-21 19:00:00,6.47611,166.60748,20.0,999.89886,84.99531,0.0,0.0,0.0,17.4,0.0,0.0, +2024-01-21 20:00:00,7.0092797,165.96373,20.25,1000.30273,82.11869,0.0,0.0,0.0,17.1,0.0,0.0, +2024-01-21 21:00:00,6.519202,159.341,20.25,1000.60034,79.30314,0.0,0.0,0.0,16.55,0.0,0.0, +2024-01-21 22:00:00,6.2649817,155.48038,20.1,1001.29016,78.52837,2.0,0.0,2.0,16.25,0.0,0.0, +2024-01-21 23:00:00,6.1294374,151.76265,21.05,1001.9119,71.50619,93.0,311.67123,46.0,15.7,0.0,0.0, +2024-01-22 00:00:00,5.99333,154.2901,22.55,1001.9541,61.385025,310.0,609.0306,88.0,14.75,0.0,0.0, +2024-01-22 01:00:00,4.753946,165.37909,24.65,1002.70624,50.045277,555.0,813.2135,96.0,13.55,0.0,0.0, +2024-01-22 02:00:00,6.4070277,182.68372,25.75,1002.6369,47.951103,764.0,891.5525,107.0,13.9,0.0,0.0, +2024-01-22 03:00:00,7.21734,183.97241,26.45,1002.35815,46.306053,927.0,933.09644,115.0,14.0,0.0,0.0, +2024-01-22 04:00:00,7.6941533,188.97255,26.8,1001.7725,46.85277,1030.0,948.4437,124.0,14.5,0.0,0.0, +2024-01-22 05:00:00,7.930952,193.86105,26.6,1001.17194,49.434948,1063.0,943.01575,133.0,15.15,0.0,0.0, +2024-01-22 06:00:00,8.036168,196.63103,26.3,1000.8662,50.15605,1036.0,946.9826,126.0,15.1,0.0,0.0, +2024-01-22 07:00:00,8.160883,197.10281,25.95,1000.75757,52.200653,940.0,935.0831,116.0,15.4,0.0,0.0, +2024-01-22 08:00:00,8.780091,194.5111,25.2,1000.5388,56.17269,783.0,895.80835,109.0,15.85,0.0,0.0, +2024-01-22 09:00:00,9.141116,190.08054,24.15,1000.6094,60.773193,579.0,826.36847,97.0,16.1,0.0,0.0, +2024-01-22 10:00:00,8.728115,184.6,23.2,1000.9801,64.3511,348.0,698.0437,79.0,16.1,0.0,0.0, +2024-01-22 11:00:00,8.3,180.0,22.15,1001.4468,69.02263,125.0,453.14502,47.0,16.2,0.0,0.0, +2024-01-22 12:00:00,7.2339478,174.44713,21.6,1001.9273,71.83529,4.0,18.744806,3.0,16.3,0.0,0.0, +2024-01-22 13:00:00,6.8264194,174.95764,21.1,1002.2111,74.30661,0.0,0.0,0.0,16.35,0.0,0.0, +2024-01-22 14:00:00,6.760177,172.34944,20.8,1002.6984,76.65866,0.0,0.0,0.0,16.55,0.0,0.0, +2024-01-22 15:00:00,6.946222,173.38664,20.55,1002.88995,78.096016,0.0,0.0,0.0,16.6,0.0,0.0, +2024-01-22 16:00:00,7.4545293,173.06575,20.4,1002.6871,79.07277,0.0,0.0,0.0,16.65,0.0,0.0, +2024-01-22 17:00:00,7.6118326,170.1665,20.2,1002.48315,79.80178,0.0,0.0,0.0,16.6,0.0,0.0, +2024-01-22 18:00:00,7.6295476,169.42653,20.1,1002.5795,80.04204,0.0,0.0,0.0,16.55,0.0,0.0, +2024-01-22 19:00:00,7.495332,166.8908,20.1,1002.4803,78.27856,0.0,0.0,0.0,16.2,0.0,0.0, +2024-01-22 20:00:00,6.992138,163.37917,20.3,1002.9819,74.88694,0.0,0.0,0.0,15.7,0.0,0.0, +2024-01-22 21:00:00,7.088018,163.61038,20.1,1003.2737,74.85372,0.0,0.0,0.0,15.5,0.0,0.0, +2024-01-22 22:00:00,6.648308,158.83867,19.85,1003.7626,75.05262,1.0,0.0,1.0,15.3,0.0,0.0, +2024-01-22 23:00:00,6.7542577,154.57317,20.55,1004.17926,70.50198,96.0,341.36542,45.0,15.0,0.0,0.0, +2024-01-23 00:00:00,7.186793,158.79071,21.9,1004.11786,62.84086,317.0,646.3396,83.0,14.5,0.0,0.0, +2024-01-23 01:00:00,7.4330344,162.78384,23.65,1003.5712,50.271786,534.0,750.43866,112.0,12.7,0.0,0.0, +2024-01-23 02:00:00,7.170077,171.983,25.4,1003.1235,45.27402,761.0,875.9167,117.0,12.7,0.0,0.0, +2024-01-23 03:00:00,7.6164293,183.76396,26.2,1002.7484,46.388653,933.0,941.3888,115.0,13.8,0.0,0.0, +2024-01-23 04:00:00,8.649278,190.6603,25.75,1002.4385,50.98827,1040.0,964.0409,120.0,14.85,0.0,0.0, +2024-01-23 05:00:00,9.178235,191.30989,25.75,1002.1409,50.173042,1078.0,970.00305,122.0,14.6,0.0,0.0, +2024-01-23 06:00:00,9.669023,190.7288,25.6,1001.6409,50.133568,1049.0,966.1327,121.0,14.45,0.0,0.0, +2024-01-23 07:00:00,9.815294,188.79047,25.4,1001.338,52.226696,949.0,945.6136,116.0,14.9,0.0,0.0, +2024-01-23 08:00:00,9.662815,186.53654,24.8,1001.3217,55.53723,789.0,905.44794,108.0,15.3,0.0,0.0, +2024-01-23 09:00:00,9.525754,184.2141,23.9,1001.396,61.10475,584.0,833.7533,98.0,15.95,0.0,0.0, +2024-01-23 10:00:00,9.3085985,182.46277,22.9,1001.5668,64.69839,351.0,704.2533,80.0,15.9,0.0,0.0, +2024-01-23 11:00:00,8.800569,180.65105,21.75,1001.9318,71.17962,126.0,455.35242,48.0,16.3,0.0,0.0, +2024-01-23 12:00:00,8.4053545,177.95464,21.1,1002.2111,74.30661,4.0,18.904995,3.0,16.35,0.0,0.0, +2024-01-23 13:00:00,7.8313475,174.8719,20.85,1002.40247,74.977974,0.0,0.0,0.0,16.25,0.0,0.0, +2024-01-23 14:00:00,7.641989,173.99109,20.65,1002.6943,77.12438,0.0,0.0,0.0,16.5,0.0,0.0, +2024-01-23 15:00:00,7.851752,173.41815,20.4,1002.19116,79.57645,0.0,0.0,0.0,16.75,0.0,0.0, +2024-01-23 16:00:00,7.9075913,170.53775,20.15,1001.6884,81.07186,0.0,0.0,0.0,16.8,0.0,0.0, +2024-01-23 17:00:00,7.81025,166.67546,19.95,1001.286,81.82154,0.0,0.0,0.0,16.75,0.0,0.0, +2024-01-23 18:00:00,7.7620873,165.06853,19.85,1001.28314,81.29077,0.0,0.0,0.0,16.55,0.0,0.0, +2024-01-23 19:00:00,7.17844,161.31256,19.6,1001.57385,81.77748,0.0,0.0,0.0,16.4,0.0,0.0, +2024-01-23 20:00:00,7.088018,163.61038,19.45,1001.9662,80.98048,0.0,0.0,0.0,16.1,0.0,0.0, +2024-01-23 21:00:00,7.3082147,163.30067,19.3,1002.061,81.73964,0.0,0.0,0.0,16.1,0.0,0.0, +2024-01-23 22:00:00,7.093659,158.4985,19.2,1002.6532,81.72698,1.0,0.0,1.0,16.0,0.0,0.0, +2024-01-23 23:00:00,7.2235723,158.05124,20.35,1003.4793,74.89523,99.0,384.84055,42.0,15.75,0.0,0.0, +2024-01-24 00:00:00,7.6537576,162.51192,21.85,1003.5214,67.653305,311.0,634.11475,83.0,15.6,0.0,0.0, +2024-01-24 01:00:00,7.8771825,171.97285,23.6,1002.97485,58.354404,550.0,805.01355,99.0,14.95,0.0,0.0, +2024-01-24 02:00:00,8.809087,177.39749,24.65,1002.70624,55.499954,762.0,891.5761,108.0,15.15,0.0,0.0, +2024-01-24 03:00:00,9.2,180.0,25.45,1002.4303,53.256798,926.0,931.2818,118.0,15.25,0.0,0.0, +2024-01-24 04:00:00,9.3085985,182.46277,26.0,1001.85034,51.54782,1032.0,955.5672,121.0,15.25,0.0,0.0, +2024-01-24 05:00:00,9.563472,186.60474,26.15,1001.4576,50.92871,1069.0,960.5066,123.0,15.2,0.0,0.0, +2024-01-24 06:00:00,9.662815,186.53654,26.0,1001.0568,51.217766,1040.0,958.263,120.0,15.15,0.0,0.0, +2024-01-24 07:00:00,9.687621,187.7118,25.5,1000.7454,55.17946,942.0,939.1753,115.0,15.85,0.0,0.0, +2024-01-24 08:00:00,9.972462,186.91113,24.6,1000.3241,59.7253,784.0,897.881,109.0,16.25,0.0,0.0, +2024-01-24 09:00:00,9.832599,184.66678,23.8,1000.20294,63.86885,578.0,827.51904,96.0,16.55,0.0,0.0, +2024-01-24 10:00:00,9.60833,182.3859,22.75,1000.76917,66.97649,347.0,697.6161,79.0,16.3,0.0,0.0, +2024-01-24 11:00:00,9.0,180.0,21.8,1001.2387,72.100395,123.0,451.94318,46.0,16.55,0.0,0.0, +2024-01-24 12:00:00,8.800569,179.34895,21.45,1001.62573,72.960785,4.0,19.088032,3.0,16.4,0.0,0.0, +2024-01-24 13:00:00,8.400595,179.31796,21.1,1001.9136,74.07039,0.0,0.0,0.0,16.3,0.0,0.0, +2024-01-24 14:00:00,8.221922,175.81517,20.65,1002.1984,81.13676,0.0,0.0,0.0,17.3,0.0,0.0, +2024-01-24 15:00:00,8.558621,173.29025,20.3,1001.8909,83.16997,0.0,0.0,0.0,17.35,0.0,0.0, +2024-01-24 16:00:00,8.757282,173.44315,20.1,1001.29016,83.14651,0.0,0.0,0.0,17.15,0.0,0.0, +2024-01-24 17:00:00,8.514693,167.10626,19.95,1000.9885,84.18797,0.0,0.0,0.0,17.2,0.0,0.0, +2024-01-24 18:00:00,8.343262,166.1303,19.9,1000.9873,83.9165,0.0,0.0,0.0,17.1,0.0,0.0, +2024-01-24 19:00:00,8.296988,164.62369,19.75,1001.08203,83.10537,0.0,0.0,0.0,16.8,0.0,0.0, +2024-01-24 20:00:00,7.981228,164.74483,19.7,1001.6759,82.57353,0.0,0.0,0.0,16.65,0.0,0.0, +2024-01-24 21:00:00,7.6655073,164.87595,19.45,1001.9662,82.80627,0.0,0.0,0.0,16.45,0.0,0.0, +2024-01-24 22:00:00,7.3756356,167.4712,19.35,1002.45917,83.0582,1.0,0.0,1.0,16.4,0.0,0.0, +2024-01-24 23:00:00,7.864477,168.26146,20.55,1003.0883,75.649185,95.0,360.97412,42.0,16.1,0.0,0.0, +2024-01-25 00:00:00,7.766595,168.11136,22.15,1003.62885,65.37097,312.0,649.7357,80.0,15.35,0.0,0.0, +2024-01-25 01:00:00,6.537584,173.85347,24.15,1003.1883,53.268272,548.0,809.84,96.0,14.05,0.0,0.0, +2024-01-25 02:00:00,7.5,180.0,25.15,1003.01733,50.17729,760.0,893.6545,106.0,14.05,0.0,0.0, +2024-01-25 03:00:00,8.620905,183.99083,25.55,1003.0283,50.608402,928.0,938.47516,115.0,14.55,0.0,0.0, +2024-01-25 04:00:00,8.956003,186.41075,25.8,1002.7374,50.837376,1038.0,963.89984,120.0,14.85,0.0,0.0, +2024-01-25 05:00:00,9.588535,187.79199,25.8,1002.539,51.828045,1083.0,976.4306,122.0,15.15,0.0,0.0, +2024-01-25 06:00:00,9.873197,186.98096,25.6,1002.0377,54.32913,1055.0,973.3564,121.0,15.7,0.0,0.0, +2024-01-25 07:00:00,9.75141,185.8859,25.25,1001.82983,56.725662,955.0,953.2413,116.0,16.05,0.0,0.0, +2024-01-25 08:00:00,10.239629,185.04236,24.3,1001.90295,61.78307,794.0,911.6792,109.0,16.5,0.0,0.0, +2024-01-25 09:00:00,10.10198,181.1344,23.35,1001.97614,64.17866,585.0,838.56525,97.0,16.2,0.0,0.0, +2024-01-25 10:00:00,9.502105,178.79398,22.35,1002.2459,68.1875,352.0,709.3603,80.0,16.2,0.0,0.0, +2024-01-25 11:00:00,8.908984,177.4267,21.25,1003.00854,73.625824,125.0,460.53574,47.0,16.35,0.0,0.0, +2024-01-25 12:00:00,9.108788,177.48318,20.95,1003.69464,74.28129,4.0,19.288342,3.0,16.2,0.0,0.0, +2024-01-25 13:00:00,9.178781,172.48795,20.6,1004.67633,73.044495,0.0,0.0,0.0,15.6,0.0,0.0, +2024-01-25 14:00:00,9.124144,170.53775,20.3,1004.767,77.81093,0.0,0.0,0.0,16.3,0.0,0.0, +2024-01-25 15:00:00,8.732124,166.75948,19.95,1004.658,82.60376,0.0,0.0,0.0,16.9,0.0,0.0, +2024-01-25 16:00:00,7.558439,162.28412,19.7,1004.35364,83.36357,0.0,0.0,0.0,16.8,0.0,0.0, +2024-01-25 17:00:00,6.35059,153.8385,19.6,1004.44995,79.718895,0.0,0.0,0.0,16.0,0.0,0.0, +2024-01-25 18:00:00,5.333854,149.589,19.5,1004.2487,74.513405,0.0,0.0,0.0,14.85,0.0,0.0, +2024-01-25 19:00:00,3.8587563,148.78166,19.35,1004.2443,69.5924,0.0,0.0,0.0,13.65,0.0,0.0, +2024-01-25 20:00:00,3.2449963,146.3099,19.2,1004.1408,64.736916,0.0,0.0,0.0,12.4,0.0,0.0, +2024-01-25 21:00:00,3.2649655,139.9698,19.85,1004.35767,53.566338,0.0,0.0,0.0,10.15,0.0,0.0, +2024-01-25 22:00:00,3.0,126.86998,20.75,1004.58154,41.083855,1.0,0.0,1.0,7.05,0.0,0.0, +2024-01-25 23:00:00,4.1761227,106.699326,24.3,1004.97784,35.69427,96.0,391.65698,39.0,8.15,0.0,0.0, +2024-01-26 00:00:00,5.0447993,103.76081,27.15,1005.25385,46.947033,313.0,668.39966,76.0,14.85,0.0,0.0, +2024-01-26 01:00:00,4.4922156,106.821495,28.95,1004.9055,42.543972,543.0,805.7141,95.0,14.95,0.0,0.0, +2024-01-26 02:00:00,4.4384685,104.349365,31.2,1004.568,34.821278,754.0,886.16425,107.0,13.85,0.0,0.0, +2024-01-26 03:00:00,4.0249224,116.56499,32.9,1004.31476,29.43812,922.0,932.98883,115.0,12.75,0.0,0.0, +2024-01-26 04:00:00,3.8999999,157.3801,33.65,1003.73914,26.429623,1031.0,957.5575,120.0,11.75,0.0,0.0, +2024-01-26 05:00:00,7.6243033,196.7713,31.95,1003.1989,36.291584,1071.0,966.99066,120.0,15.15,0.0,0.0, +2024-01-26 06:00:00,8.852683,193.72232,30.45,1002.86206,40.686146,1041.0,961.4006,119.0,15.6,0.0,0.0, +2024-01-26 07:00:00,9.198369,191.92072,29.55,1002.4413,40.699417,943.0,941.2365,115.0,14.8,0.0,0.0, +2024-01-26 08:00:00,8.814193,183.25188,28.7,1002.41864,43.723633,782.0,897.60767,108.0,15.15,0.0,0.0, +2024-01-26 09:00:00,8.700575,180.65852,27.95,1002.498,47.01104,579.0,829.0997,97.0,15.6,0.0,0.0, +2024-01-26 10:00:00,8.273452,172.35968,25.55,1002.82996,53.453453,346.0,700.39734,78.0,15.4,0.0,0.0, +2024-01-26 11:00:00,7.1021123,170.27249,24.1,1003.28625,59.799107,122.0,451.64545,46.0,15.8,0.0,0.0, +2024-01-26 12:00:00,6.6940274,166.17133,22.85,1003.6484,63.25481,4.0,19.50971,3.0,15.5,0.0,0.0, +2024-01-26 13:00:00,6.7720013,163.70589,21.7,1004.01294,66.12053,0.0,0.0,0.0,15.1,0.0,0.0, +2024-01-26 14:00:00,6.47611,166.60748,21.3,1004.29944,70.41764,0.0,0.0,0.0,15.7,0.0,0.0, +2024-01-26 15:00:00,5.440588,162.89719,20.95,1003.9922,73.80916,0.0,0.0,0.0,16.1,0.0,0.0, +2024-01-26 16:00:00,3.8832977,145.49142,20.65,1003.6861,74.706154,0.0,0.0,0.0,16.0,0.0,0.0, +2024-01-26 17:00:00,2.9206164,128.04709,20.7,1002.9931,66.98549,0.0,0.0,0.0,14.35,0.0,0.0, +2024-01-26 18:00:00,3.733631,110.37652,22.4,1002.3464,44.148376,0.0,0.0,0.0,9.6,0.0,0.0, +2024-01-26 19:00:00,5.2038445,92.20255,24.5,1001.9086,27.046812,0.0,0.0,0.0,4.3,0.0,0.0, +2024-01-26 20:00:00,5.124451,84.40076,24.35,1001.8051,26.722868,0.0,0.0,0.0,4.0,0.0,0.0, +2024-01-26 21:00:00,5.188449,62.447273,23.6,1001.983,39.832165,0.0,0.0,0.0,9.15,0.0,0.0, +2024-01-26 22:00:00,5.4708314,59.215923,23.1,1002.36584,55.291954,1.0,0.0,1.0,13.65,0.0,0.0, +2024-01-26 23:00:00,4.837354,60.255207,24.45,1002.89886,52.31904,95.0,395.15378,38.0,14.05,0.0,0.0, +2024-01-27 00:00:00,5.011986,61.389645,27.0,1003.3653,42.41942,315.0,678.8012,76.0,13.15,0.0,0.0, +2024-01-27 01:00:00,3.2202485,64.23073,29.95,1002.94794,31.644688,550.0,821.41644,95.0,11.3,0.0,0.0, +2024-01-27 02:00:00,2.5495098,78.6901,31.9,1002.8009,24.857437,762.0,900.61145,106.0,9.35,0.0,0.0, +2024-01-27 03:00:00,1.2727922,135.0001,32.7,1002.12714,21.686398,930.0,944.86774,114.0,8.0,0.0,0.0, +2024-01-27 04:00:00,3.7443287,214.11452,33.2,1001.5447,25.367292,1040.0,970.1647,118.0,10.75,0.0,0.0, +2024-01-27 05:00:00,6.1846585,219.09386,31.65,1000.9093,35.97612,1081.0,977.9216,120.0,14.75,0.0,0.0, +2024-01-27 06:00:00,6.300793,215.9606,31.2,1000.4013,35.967674,1049.0,970.34375,119.0,14.35,0.0,0.0, +2024-01-27 07:00:00,6.140033,210.32352,30.2,1000.07764,37.715885,947.0,947.4783,114.0,14.2,0.0,0.0, +2024-01-27 08:00:00,5.8137765,206.56499,29.7,999.56836,40.219368,789.0,908.9209,107.0,14.75,0.0,0.0, +2024-01-27 09:00:00,5.5470715,207.95087,28.2,999.4294,46.035233,584.0,840.38837,96.0,15.5,0.0,0.0, +2024-01-27 10:00:00,3.6878178,192.5288,27.15,999.79803,49.579945,349.0,709.88196,78.0,15.7,0.0,0.0, +2024-01-27 11:00:00,3.5128336,184.899,25.75,1000.0579,55.772415,122.0,460.82037,45.0,16.25,0.0,0.0, +2024-01-27 12:00:00,3.733631,172.30405,24.8,1000.42896,56.43469,4.0,19.753641,3.0,15.55,0.0,0.0, +2024-01-27 13:00:00,3.6055512,183.17976,23.5,1000.69073,63.803486,0.0,0.0,0.0,16.25,0.0,0.0, +2024-01-27 14:00:00,3.522783,173.4803,22.85,1001.16876,68.939926,0.0,0.0,0.0,16.85,0.0,0.0, +2024-01-27 15:00:00,3.324154,173.08887,22.15,1001.05005,70.13022,0.0,0.0,0.0,16.45,0.0,0.0, +2024-01-27 16:00:00,3.0083218,158.5522,21.45,1000.93146,71.35146,0.0,0.0,0.0,16.05,0.0,0.0, +2024-01-27 17:00:00,2.8231187,157.06787,20.85,1000.61725,71.69878,0.0,0.0,0.0,15.55,0.0,0.0, +2024-01-27 18:00:00,2.9120438,164.05453,20.45,1000.50684,72.551315,0.0,0.0,0.0,15.35,0.0,0.0, +2024-01-27 19:00:00,2.376973,157.75093,19.8,1000.5878,78.48472,0.0,0.0,0.0,15.95,0.0,0.0, +2024-01-27 20:00:00,2.0248458,147.09476,19.1,1000.5677,81.97571,0.0,0.0,0.0,15.95,0.0,0.0, +2024-01-27 21:00:00,1.7492856,149.03632,18.35,1000.74457,83.74068,0.0,0.0,0.0,15.55,0.0,0.0, +2024-01-27 22:00:00,1.8384776,157.61983,17.7,1001.32117,86.12124,1.0,0.0,1.0,15.35,0.0,0.0, +2024-01-27 23:00:00,2.5317976,170.9098,20.6,1001.9985,72.34583,92.0,384.71545,37.0,15.45,0.0,0.0, +2024-01-28 00:00:00,3.3015149,181.73567,22.75,1002.5545,66.33932,310.0,672.1782,75.0,16.15,0.0,0.0, +2024-01-28 01:00:00,2.6076808,184.39862,24.75,1003.30383,57.332752,545.0,817.2993,94.0,15.75,0.0,0.0, +2024-01-28 02:00:00,6.7542577,205.42683,24.5,1003.7933,67.756065,756.0,893.11163,107.0,18.15,0.0,0.0, +2024-01-28 03:00:00,7.9075913,193.15755,24.6,1003.99414,61.459435,914.0,917.36487,123.0,16.7,0.0,0.0, +2024-01-28 04:00:00,8.041144,190.75092,25.3,1003.815,56.37698,1024.0,944.89905,127.0,16.0,0.0,0.0, +2024-01-28 05:00:00,7.5504966,191.45872,25.85,1003.4332,52.007706,1065.0,953.25806,129.0,15.25,0.0,0.0, +2024-01-28 06:00:00,7.324616,194.226,25.7,1003.13165,55.58262,1041.0,960.5516,121.0,16.15,0.0,0.0, +2024-01-28 07:00:00,7.495332,193.1092,25.1,1002.81775,55.611668,943.0,941.27014,116.0,15.6,0.0,0.0, +2024-01-28 08:00:00,7.5504966,191.45872,24.35,1002.797,59.097862,784.0,901.6593,108.0,15.85,0.0,0.0, +2024-01-28 09:00:00,7.2993145,189.46225,23.6,1002.7765,63.420082,578.0,829.40015,97.0,16.25,0.0,0.0, +2024-01-28 10:00:00,7.125307,184.83034,22.55,1002.9459,67.794304,345.0,698.56036,79.0,16.3,0.0,0.0, +2024-01-28 11:00:00,6.7007456,179.14493,21.35,1003.3089,74.822464,120.0,446.25067,46.0,16.7,0.0,0.0, +2024-01-28 12:00:00,5.821512,175.07298,20.9,1004.08984,76.18857,3.0,20.022364,2.0,16.55,0.0,0.0, +2024-01-28 13:00:00,6.264982,171.74065,20.55,1004.17926,77.354774,0.0,0.0,0.0,16.45,0.0,0.0, +2024-01-28 14:00:00,6.760177,172.34944,20.35,1004.37195,81.61302,0.0,0.0,0.0,17.1,0.0,0.0, +2024-01-28 15:00:00,6.2169123,168.87085,20.0,1004.26263,85.80382,0.0,0.0,0.0,17.55,0.0,0.0, +2024-01-28 16:00:00,6.20967,165.06853,19.6,1004.1524,88.794266,0.0,0.0,0.0,17.7,0.0,0.0, +2024-01-28 17:00:00,6.484597,162.96214,19.4,1003.849,85.47213,0.0,0.0,0.0,16.9,0.0,0.0, +2024-01-28 18:00:00,6.5787535,160.46326,19.2,1003.7441,82.77629,0.0,0.0,0.0,16.2,0.0,0.0, +2024-01-28 19:00:00,6.6309876,156.91484,18.9,1003.73553,82.476326,0.0,0.0,0.0,15.85,0.0,0.0, +2024-01-28 20:00:00,5.8137765,153.43501,18.6,1003.92535,81.38935,0.0,0.0,0.0,15.35,0.0,0.0, +2024-01-28 21:00:00,5.1429563,153.43501,18.25,1004.4112,80.56252,0.0,0.0,0.0,14.85,0.0,0.0, +2024-01-28 22:00:00,4.830114,152.90453,18.05,1004.90137,81.31827,1.0,0.0,1.0,14.8,0.0,0.0, +2024-01-28 23:00:00,4.2059484,151.60707,19.25,1005.7291,75.19516,86.0,338.78516,38.0,14.75,0.0,0.0, +2024-01-29 00:00:00,4.215448,157.69374,21.25,1005.98395,65.60146,295.0,616.4716,81.0,14.55,0.0,0.0, +2024-01-29 01:00:00,2.7784889,149.74365,24.05,1005.56604,50.707455,539.0,807.68506,95.0,13.2,0.0,0.0, +2024-01-29 02:00:00,2.5495098,191.30989,26.55,1005.33685,43.41569,753.0,893.8544,105.0,13.1,0.0,0.0, +2024-01-29 03:00:00,4.770744,213.02386,27.05,1005.152,47.9892,920.0,935.08826,115.0,15.1,0.0,0.0, +2024-01-29 04:00:00,6.242595,215.21768,26.25,1004.6343,55.718437,1028.0,957.5637,120.0,16.7,0.0,0.0, +2024-01-29 05:00:00,7.068239,205.1148,25.85,1004.5244,53.87311,1066.0,963.24255,121.0,15.8,0.0,0.0, +2024-01-29 06:00:00,7.4094534,201.37068,26.8,1004.35156,47.76831,1035.0,956.0163,120.0,14.8,0.0,0.0, +2024-01-29 07:00:00,7.18401,196.16457,26.8,1003.9548,46.85277,938.0,937.39404,115.0,14.5,0.0,0.0, +2024-01-29 08:00:00,7.3979726,193.28488,26.45,1003.6477,51.499237,779.0,895.8043,108.0,15.65,0.0,0.0, +2024-01-29 09:00:00,7.8230433,184.39862,24.95,1003.7063,59.61724,573.0,823.6737,96.0,16.55,0.0,0.0, +2024-01-29 10:00:00,7.6006575,180.75383,23.85,1003.7752,65.52161,341.0,689.96533,79.0,17.0,0.0,0.0, +2024-01-29 11:00:00,6.648308,173.08887,22.25,1004.12756,74.26475,117.0,443.84302,44.0,17.45,0.0,0.0, +2024-01-29 12:00:00,6.477654,171.11942,21.3,1004.597,76.01051,3.0,20.31446,2.0,16.9,0.0,0.0, +2024-01-29 13:00:00,7.1021123,170.27249,20.75,1005.27576,77.63122,0.0,0.0,0.0,16.7,0.0,0.0, +2024-01-29 14:00:00,8.178631,168.00313,20.65,1005.37213,76.63529,0.0,0.0,0.0,16.4,0.0,0.0, +2024-01-29 15:00:00,7.472616,164.47583,20.25,1005.26166,80.82819,0.0,0.0,0.0,16.85,0.0,0.0, +2024-01-29 16:00:00,5.8821764,162.18102,20.15,1005.2588,78.53564,0.0,0.0,0.0,16.3,0.0,0.0, +2024-01-29 17:00:00,4.7434163,161.56496,20.0,1004.7585,75.0774,0.0,0.0,0.0,15.45,0.0,0.0, +2024-01-29 18:00:00,4.237924,160.70985,19.75,1004.454,74.55546,0.0,0.0,0.0,15.1,0.0,0.0, +2024-01-29 19:00:00,3.992493,157.93205,19.5,1004.4471,73.79655,0.0,0.0,0.0,14.7,0.0,0.0, +2024-01-29 20:00:00,3.9812057,154.72232,19.35,1004.34357,72.35404,0.0,0.0,0.0,14.25,0.0,0.0, +2024-01-29 21:00:00,3.4132097,148.17259,19.25,1004.53906,68.67282,0.0,0.0,0.0,13.35,0.0,0.0, +2024-01-29 22:00:00,3.0610456,141.63248,19.45,1004.8423,59.672253,0.0,0.0,0.0,11.4,0.0,0.0, +2024-01-29 23:00:00,3.4205263,142.12495,22.55,1005.42554,40.074677,87.0,363.22403,36.0,8.3,0.0,0.0, +2024-01-30 00:00:00,2.720294,162.89719,26.9,1005.54474,27.140327,304.0,664.3906,75.0,6.4,0.0,0.0, +2024-01-30 01:00:00,3.1016126,159.22766,30.75,1005.35004,23.016182,536.0,808.9415,93.0,7.25,0.0,0.0, +2024-01-30 02:00:00,3.324154,173.08887,33.9,1005.1344,20.274654,748.0,887.6861,106.0,8.0,0.0,0.0, +2024-01-30 03:00:00,4.2720017,196.31393,35.05,1004.6679,23.496752,914.0,931.9358,113.0,11.15,0.0,0.0, +2024-01-30 04:00:00,5.239275,203.6294,34.95,1003.77246,28.389248,1022.0,954.4414,118.0,13.95,0.0,0.0, +2024-01-30 05:00:00,6.2241464,203.6821,34.8,1003.17334,30.833012,1062.0,962.0554,119.0,15.1,0.0,0.0, +2024-01-30 06:00:00,7.937884,199.11981,34.7,1002.6748,31.40551,1032.0,954.65796,119.0,15.3,0.0,0.0, +2024-01-30 07:00:00,8.417244,189.57416,34.25,1002.26636,29.419744,932.0,933.5752,113.0,13.9,0.0,0.0, +2024-01-30 08:00:00,7.406079,182.32149,33.5,1001.9495,31.996649,779.0,904.7219,102.0,14.55,0.0,0.0, +2024-01-30 09:00:00,7.1028166,181.61351,31.75,1002.00305,39.88661,580.0,840.52527,94.0,16.45,0.0,0.0, +2024-01-30 10:00:00,6.61211,176.53185,29.7,1002.6437,41.93584,335.0,678.83203,78.0,15.4,0.0,0.0, +2024-01-30 11:00:00,5.5731497,189.29323,28.05,1003.0957,45.847412,111.0,404.82654,45.0,15.3,0.0,0.0, +2024-01-30 12:00:00,5.508176,183.12207,26.3,1003.5445,51.79112,3.0,20.632933,2.0,15.6,0.0,0.0, +2024-01-30 13:00:00,6.2968245,169.93938,25.85,1004.1276,49.395805,0.0,0.0,0.0,14.45,0.0,0.0, +2024-01-30 14:00:00,5.491812,169.50858,25.5,1004.41547,51.583954,0.0,0.0,0.0,14.8,0.0,0.0, +2024-01-30 15:00:00,4.8270073,166.82744,25.2,1004.3081,52.85178,0.0,0.0,0.0,14.9,0.0,0.0, +2024-01-30 16:00:00,4.2201896,166.29301,24.85,1004.00104,53.966057,0.0,0.0,0.0,14.9,0.0,0.0, +2024-01-30 17:00:00,3.905125,166.67546,24.65,1003.4005,53.052357,0.0,0.0,0.0,14.45,0.0,0.0, +2024-01-30 18:00:00,3.4481878,163.14153,24.3,1003.2916,52.450096,0.0,0.0,0.0,13.95,0.0,0.0, +2024-01-30 19:00:00,2.863564,155.22488,24.1,1003.28625,49.574467,0.0,0.0,0.0,12.9,0.0,0.0, +2024-01-30 20:00:00,2.3600848,143.61555,24.35,1003.3921,42.240185,0.0,0.0,0.0,10.7,0.0,0.0, +2024-01-30 21:00:00,2.4698179,111.3707,25.35,1003.5186,32.40434,0.0,0.0,0.0,7.65,0.0,0.0, +2024-01-30 22:00:00,2.9732137,70.346085,27.7,1004.0782,28.794434,0.0,0.0,0.0,7.95,0.0,0.0, +2024-01-30 23:00:00,4.3382025,64.025665,31.55,1004.9743,24.93289,84.0,352.15152,35.0,9.1,0.0,0.0, +2024-01-31 00:00:00,4.9658837,64.98315,34.85,1005.3574,21.641638,296.0,651.6041,73.0,9.75,0.0,0.0, +2024-01-31 01:00:00,4.3908997,59.93151,37.25,1005.1209,20.140762,527.0,797.3597,92.0,10.65,0.0,0.0, +2024-01-31 02:00:00,3.8275318,56.725105,39.5,1004.8797,17.248024,737.0,877.32544,104.0,10.15,0.0,0.0, +2024-01-31 03:00:00,2.641969,60.524208,40.6,1004.7083,15.310637,904.0,921.7882,113.0,9.25,0.0,0.0, +2024-01-31 04:00:00,1.8248286,189.46225,40.8,1003.9195,16.252996,1013.0,946.04614,118.0,10.3,0.0,0.0, +2024-01-31 05:00:00,4.838388,198.06056,39.7,1003.5947,23.301754,1053.0,953.75037,119.0,14.9,0.0,0.0, +2024-01-31 06:00:00,5.9774575,197.52565,38.75,1003.17395,26.56767,960.0,828.813,168.0,16.15,0.0,0.0, +2024-01-31 07:00:00,6.4132676,190.78426,36.2,1002.9113,31.013971,579.0,284.07816,330.0,16.4,0.0,0.0, +2024-01-31 08:00:00,6.576473,188.74608,36.05,1002.60986,29.241499,643.0,533.7978,244.0,15.35,0.0,0.0, +2024-01-31 09:00:00,6.600757,179.13197,34.8,1002.37964,28.257183,543.0,748.4045,111.0,13.75,0.0,0.0, +2024-01-31 10:00:00,6.551336,167.66092,32.95,1002.7287,32.57608,339.0,694.28033,77.0,14.35,0.0,0.0, +2024-01-31 11:00:00,5.903389,169.26115,31.0,1003.37256,40.19089,114.0,439.61032,43.0,15.9,0.0,0.0, +2024-01-31 12:00:00,7.242237,162.31552,29.4,1003.9255,42.25869,3.0,0.0,3.0,15.25,0.0,0.0, +2024-01-31 13:00:00,6.1741395,155.09526,28.45,1004.0984,42.543686,0.0,0.0,0.0,14.5,0.0,0.0, +2024-01-31 14:00:00,3.51141,160.0168,27.9,1004.5795,45.07616,0.0,0.0,0.0,14.9,0.0,0.0, +2024-01-31 15:00:00,1.7720045,163.61038,26.8,1004.35156,47.00428,0.0,0.0,0.0,14.55,0.0,0.0, +2024-01-31 16:00:00,2.3194828,172.56868,26.65,1003.7526,45.91199,0.0,0.0,0.0,14.05,0.0,0.0, +2024-01-31 17:00:00,2.6832817,153.43501,26.6,1003.1559,43.999626,0.0,0.0,0.0,13.35,0.0,0.0, +2024-01-31 18:00:00,2.2627418,135.0001,25.9,1002.74023,40.613533,0.0,0.0,0.0,11.5,0.0,0.0, +2024-01-31 19:00:00,3.0232434,124.21575,25.7,1002.4373,30.56744,0.0,0.0,0.0,7.1,0.0,0.0, +2024-01-31 20:00:00,2.751363,109.09359,26.35,1002.65326,23.726313,0.0,0.0,0.0,4.0,0.0,0.0, +2024-01-31 21:00:00,4.002499,77.00539,29.0,1003.022,18.085268,0.0,0.0,0.0,2.35,0.0,0.0, +2024-01-31 22:00:00,5.412947,64.855255,30.5,1003.35925,16.47155,0.0,0.0,0.0,2.25,0.0,0.0, +2024-01-31 23:00:00,6.664083,64.204025,32.1,1003.9964,17.440748,83.0,355.35446,34.0,4.35,0.0,0.0, +2024-02-01 00:00:00,6.88767,64.17907,35.6,1004.1859,16.479378,300.0,665.07983,74.0,6.35,0.0,0.0, +2024-02-01 01:00:00,7.5802374,59.03632,38.35,1003.8588,19.419281,534.0,811.4278,93.0,11.0,0.0,0.0, +2024-02-01 02:00:00,7.640026,52.98003,41.3,1003.73334,15.722024,747.0,891.91626,105.0,10.2,0.0,0.0, +2024-02-01 03:00:00,6.9065185,55.6196,43.35,1003.38635,10.648402,916.0,936.12646,114.0,6.05,0.0,0.0, +2024-02-01 04:00:00,4.9396358,68.62931,44.7,1002.7245,8.279973,1025.0,959.8745,118.0,3.45,0.0,0.0, +2024-02-01 05:00:00,3.4058774,86.63361,45.3,1002.04425,7.5857825,1069.0,969.99335,120.0,2.65,0.0,0.0, +2024-02-01 06:00:00,3.7013512,181.54813,42.9,1001.39075,10.531382,1041.0,966.7393,118.0,5.55,0.0,0.0, +2024-02-01 07:00:00,6.306346,194.69736,39.7,1001.21326,22.272175,942.0,945.52295,114.0,14.2,0.0,0.0, +2024-02-01 08:00:00,7.093659,201.5015,38.9,1000.79626,21.434778,780.0,901.44305,107.0,12.95,0.0,0.0, +2024-02-01 09:00:00,5.6293874,192.308,36.5,1000.5379,24.262146,572.0,827.8861,95.0,12.85,0.0,0.0, +2024-02-01 10:00:00,2.720294,197.10281,34.0,1000.8709,30.615913,338.0,694.0335,77.0,14.3,0.0,0.0, +2024-02-01 11:00:00,1.5033296,176.186,31.8,1001.3099,36.7192,115.0,450.2963,43.0,15.2,0.0,0.0, +2024-02-01 12:00:00,4.4922156,163.17851,31.6,1001.99927,34.259624,3.0,21.357073,2.0,13.95,0.0,0.0, +2024-02-01 13:00:00,7.430343,151.02039,31.6,1002.1977,28.324522,0.0,0.0,0.0,11.05,0.0,0.0, +2024-02-01 14:00:00,6.0901566,150.4886,30.45,1002.4652,30.954,0.0,0.0,0.0,11.4,0.0,0.0, +2024-02-01 15:00:00,4.9658837,154.98314,30.35,1002.16473,29.325874,0.0,0.0,0.0,10.5,0.0,0.0, +2024-02-01 16:00:00,5.1971145,149.98172,32.0,1001.8113,20.50216,0.0,0.0,0.0,6.6,0.0,0.0, +2024-02-01 17:00:00,5.1739736,138.91835,32.4,1001.524,20.39071,0.0,0.0,0.0,6.85,0.0,0.0, +2024-02-01 18:00:00,4.6690474,133.26433,32.0,1001.31525,20.714506,0.0,0.0,0.0,6.75,0.0,0.0, +2024-02-01 19:00:00,4.8259716,124.019394,31.3,1001.1978,21.628368,0.0,0.0,0.0,6.8,0.0,0.0, +2024-02-01 20:00:00,4.830114,117.095474,30.9,1000.8895,21.60128,0.0,0.0,0.0,6.45,0.0,0.0, +2024-02-01 21:00:00,4.5122056,102.80426,30.4,1001.075,21.033457,0.0,0.0,0.0,5.65,0.0,0.0, +2024-02-01 22:00:00,4.6389656,97.43131,30.2,1001.3674,20.407923,0.0,0.0,0.0,5.05,0.0,0.0, +2024-02-01 23:00:00,5.5145264,94.15957,31.8,1002.0044,18.052486,81.0,351.265,33.0,4.6,0.0,0.0, +2024-02-02 00:00:00,5.5036354,87.91749,35.15,1001.9916,13.706123,300.0,672.7746,73.0,3.35,0.0,0.0, +2024-02-02 01:00:00,4.2755113,79.21575,39.45,1001.207,9.438215,536.0,820.036,92.0,1.4,0.0,0.0, +2024-02-02 02:00:00,3.4539833,67.8905,41.8,1000.96704,10.966726,748.0,895.426,105.0,5.3,0.0,0.0, +2024-02-02 03:00:00,1.9235383,81.02746,42.55,1000.29065,9.695092,914.0,935.3178,114.0,4.1,0.0,0.0, +2024-02-02 04:00:00,3.6674242,205.8663,42.4,999.39404,13.143339,1019.0,949.38464,123.0,8.4,0.0,0.0, +2024-02-02 05:00:00,6.2769423,210.65059,40.1,998.84155,19.90184,960.0,746.88763,230.0,12.8,0.0,0.0, +2024-02-02 06:00:00,7.9924965,211.70139,37.15,998.37134,23.186035,816.0,539.89996,301.0,12.7,0.0,0.0, +2024-02-02 07:00:00,6.6730804,199.24962,35.5,998.13116,26.227196,773.0,563.53754,280.0,13.2,0.0,0.0, +2024-02-02 08:00:00,4.464303,195.59286,35.7,998.03705,25.939384,765.0,875.7877,112.0,13.2,0.0,0.0, +2024-02-02 09:00:00,4.909175,183.50346,34.35,997.80414,29.734343,566.0,808.6644,101.0,14.15,0.0,0.0, +2024-02-02 10:00:00,6.5490456,172.9836,31.85,998.1364,38.91045,341.0,707.2932,76.0,16.15,0.0,0.0, +2024-02-02 11:00:00,6.676077,163.46509,30.5,998.59735,37.193127,113.0,442.4966,43.0,14.25,0.0,0.0, +2024-02-02 12:00:00,7.8771825,159.95467,29.35,999.1623,38.467773,2.0,0.0,2.0,13.75,0.0,0.0, +2024-02-02 13:00:00,7.4946647,161.3232,30.75,999.29846,26.627892,0.0,0.0,0.0,9.4,0.0,0.0, +2024-02-02 14:00:00,6.20967,165.06853,28.5,999.8341,40.016735,0.0,0.0,0.0,13.6,0.0,0.0, +2024-02-02 15:00:00,5.021952,167.34744,26.75,1000.08484,49.47454,0.0,0.0,0.0,15.3,0.0,0.0, +2024-02-02 16:00:00,4.368066,164.05453,25.55,1000.0526,55.015854,0.0,0.0,0.0,15.85,0.0,0.0, +2024-02-02 17:00:00,3.1953092,159.86362,24.9,999.63794,55.56207,0.0,0.0,0.0,15.4,0.0,0.0, +2024-02-02 18:00:00,2.529822,161.56496,24.3,999.62164,55.591618,0.0,0.0,0.0,14.85,0.0,0.0, +2024-02-02 19:00:00,3.1575305,169.04597,23.8,999.4094,58.028095,0.0,0.0,0.0,15.05,0.0,0.0, +2024-02-02 20:00:00,3.2572994,162.12122,23.2,999.5915,62.127945,0.0,0.0,0.0,15.55,0.0,0.0, +2024-02-02 21:00:00,3.1016126,159.22766,22.75,999.9757,65.08094,0.0,0.0,0.0,15.85,0.0,0.0, +2024-02-02 22:00:00,2.863564,155.22488,22.3,1000.26074,66.2458,0.0,0.0,0.0,15.7,0.0,0.0, +2024-02-02 23:00:00,3.1064448,146.82147,23.9,1000.50336,58.802452,79.0,347.08267,32.0,15.35,0.0,0.0, +2024-02-03 00:00:00,3.4234486,186.70975,26.45,1000.87024,52.496567,295.0,662.6481,73.0,15.95,0.0,0.0, +2024-02-03 01:00:00,5.5226803,185.19434,27.05,1000.29144,63.17907,529.0,810.162,92.0,19.45,0.0,0.0, +2024-02-03 02:00:00,5.9841456,189.61966,28.75,1000.13855,55.28529,740.0,887.7897,104.0,18.9,0.0,0.0, +2024-02-03 03:00:00,7.203471,193.65044,29.2,1000.0513,53.528267,908.0,932.17957,112.0,18.8,0.0,0.0, +2024-02-03 04:00:00,8.188407,188.42688,28.6,1000.1345,57.712597,1017.0,954.8105,117.0,19.45,0.0,0.0, +2024-02-03 05:00:00,7.7103825,189.70659,29.75,999.5697,53.167084,1059.0,961.7169,120.0,19.2,0.0,0.0, +2024-02-03 06:00:00,8.302409,189.00842,28.7,999.145,56.845745,1031.0,958.0806,118.0,19.3,0.0,0.0, +2024-02-03 07:00:00,8.747571,190.53912,27.85,998.8249,60.663956,932.0,937.1958,113.0,19.55,0.0,0.0, +2024-02-03 08:00:00,9.334346,184.91647,26.2,999.2767,65.80606,763.0,862.252,121.0,19.3,0.0,0.0, +2024-02-03 09:00:00,9.3085985,182.46277,25.35,999.4517,69.422485,563.0,812.1559,97.0,19.35,0.0,0.0, +2024-02-03 10:00:00,9.408506,182.4366,23.55,999.9979,78.53258,329.0,664.57935,81.0,19.6,0.0,0.0, +2024-02-03 11:00:00,9.8,180.0,22.1,1000.4538,83.63891,107.0,402.85913,44.0,19.2,0.0,0.0, +2024-02-03 12:00:00,10.301942,181.11238,21.6,1000.8363,84.63305,2.0,0.0,2.0,18.9,0.0,0.0, +2024-02-03 13:00:00,10.100495,180.56726,21.3,1001.72076,84.33651,0.0,0.0,0.0,18.55,0.0,0.0, +2024-02-03 14:00:00,9.912618,177.1088,21.1,1002.0127,82.74184,0.0,0.0,0.0,18.05,0.0,0.0, +2024-02-03 15:00:00,9.542536,174.58823,20.85,1002.3033,84.02285,0.0,0.0,0.0,18.05,0.0,0.0, +2024-02-03 16:00:00,9.353609,173.86284,20.85,1002.3033,80.651855,0.0,0.0,0.0,17.4,0.0,0.0, +2024-02-03 17:00:00,9.885849,172.44376,20.65,1002.29755,80.370766,0.0,0.0,0.0,17.15,0.0,0.0, +2024-02-03 18:00:00,9.355747,169.53088,20.55,1002.1957,78.59365,0.0,0.0,0.0,16.7,0.0,0.0, +2024-02-03 19:00:00,9.296236,168.2066,20.45,1002.292,76.84855,0.0,0.0,0.0,16.25,0.0,0.0, +2024-02-03 20:00:00,9.095604,165.35258,20.25,1002.58386,76.81753,0.0,0.0,0.0,16.05,0.0,0.0, +2024-02-03 21:00:00,8.973851,165.80887,20.25,1003.17896,75.35928,0.0,0.0,0.0,15.75,0.0,0.0, +2024-02-03 22:00:00,8.70919,164.68712,20.0,1003.9651,74.12018,0.0,0.0,0.0,15.25,0.0,0.0, +2024-02-03 23:00:00,8.876937,165.65063,20.4,1004.96814,67.358574,69.0,275.7529,32.0,14.15,0.0,0.0, +2024-02-04 00:00:00,8.008121,164.05453,21.4,1005.19495,58.20242,271.0,580.22723,78.0,12.85,0.0,0.0, +2024-02-04 01:00:00,8.060397,168.55069,23.3,1005.04956,50.344013,523.0,800.2216,93.0,12.4,0.0,0.0, +2024-02-04 02:00:00,8.547514,173.95601,24.15,1005.17206,47.67618,743.0,891.3254,106.0,12.35,0.0,0.0, +2024-02-04 03:00:00,8.902246,178.71269,25.05,1004.9983,44.882202,911.0,934.9205,114.0,12.25,0.0,0.0, +2024-02-04 04:00:00,10.407689,182.20255,24.6,1004.8868,47.954346,1019.0,956.0357,119.0,12.85,0.0,0.0, +2024-02-04 05:00:00,10.301942,181.11238,25.15,1004.40594,44.469185,1064.0,967.8871,120.0,12.2,0.0,0.0, +2024-02-04 06:00:00,10.507616,182.1816,25.3,1004.11255,42.928078,1045.0,971.6881,120.0,11.8,0.0,0.0, +2024-02-04 07:00:00,10.807405,182.12105,24.55,1003.99286,47.16216,949.0,955.4799,115.0,12.55,0.0,0.0, +2024-02-04 08:00:00,10.9,180.0,23.7,1003.87036,50.94725,787.0,914.6908,107.0,12.95,0.0,0.0, +2024-02-04 09:00:00,10.801852,178.93912,22.8,1004.0438,55.39683,580.0,843.75397,97.0,13.4,0.0,0.0, +2024-02-04 10:00:00,10.511898,177.27374,21.75,1004.4113,59.63146,342.0,710.5133,78.0,13.55,0.0,0.0, +2024-02-04 11:00:00,10.049875,174.2895,20.5,1004.8718,65.65475,113.0,446.71704,44.0,13.85,0.0,0.0, +2024-02-04 12:00:00,9.436631,170.2383,20.1,1005.4556,67.297134,2.0,0.0,2.0,13.85,0.0,0.0, +2024-02-04 13:00:00,9.002777,167.81636,19.55,1006.2335,68.50937,0.0,0.0,0.0,13.6,0.0,0.0, +2024-02-04 14:00:00,8.852683,166.27768,19.5,1006.62897,69.84794,0.0,0.0,0.0,13.85,0.0,0.0, +2024-02-04 15:00:00,8.572631,163.0446,19.3,1006.4246,71.41373,0.0,0.0,0.0,14.0,0.0,0.0, +2024-02-04 16:00:00,7.8924017,157.6593,18.95,1006.11725,68.166145,0.0,0.0,0.0,12.95,0.0,0.0, +2024-02-04 17:00:00,6.931811,153.43501,18.45,1005.8056,66.51744,0.0,0.0,0.0,12.1,0.0,0.0, +2024-02-04 18:00:00,6.264982,151.38963,18.0,1005.6934,65.55058,0.0,0.0,0.0,11.45,0.0,0.0, +2024-02-04 19:00:00,5.6938567,149.38147,17.6,1005.68176,64.600876,0.0,0.0,0.0,10.85,0.0,0.0, +2024-02-04 20:00:00,5.269725,146.61147,17.3,1005.8716,64.320335,0.0,0.0,0.0,10.5,0.0,0.0, +2024-02-04 21:00:00,4.8600416,143.3658,17.0,1006.25946,64.03967,0.0,0.0,0.0,10.15,0.0,0.0, +2024-02-04 22:00:00,4.4598207,137.72638,16.9,1006.75244,61.49376,0.0,0.0,0.0,9.45,0.0,0.0, +2024-02-04 23:00:00,4.738143,135.85501,18.75,1007.4009,49.793705,77.0,338.49377,32.0,8.05,0.0,0.0, +2024-02-05 00:00:00,5.517246,133.53127,22.0,1007.7904,35.038506,297.0,675.2792,74.0,5.85,0.0,0.0, +2024-02-05 01:00:00,6.6850576,124.641014,24.85,1007.9686,28.796919,537.0,827.5757,94.0,5.5,0.0,0.0, +2024-02-05 02:00:00,6.71193,123.45334,27.4,1007.83984,24.938894,754.0,908.9213,106.0,5.6,0.0,0.0, +2024-02-05 03:00:00,6.551336,121.26367,29.6,1007.2043,21.494677,925.0,952.9712,114.0,5.3,0.0,0.0, +2024-02-05 04:00:00,5.8051705,132.20723,31.15,1006.5508,18.536602,1038.0,976.4452,120.0,4.45,0.0,0.0, +2024-02-05 05:00:00,5.818075,151.23245,31.95,1005.7783,16.864397,1080.0,985.4099,120.0,3.75,0.0,0.0, +2024-02-05 06:00:00,6.726812,168.85715,32.1,1005.2861,17.198116,1052.0,980.13025,120.0,4.15,0.0,0.0, +2024-02-05 07:00:00,9.213577,183.11078,28.7,1004.9978,38.411972,952.0,960.12616,115.0,13.15,0.0,0.0, +2024-02-05 08:00:00,10.307764,182.2239,27.05,1004.9536,42.85031,786.0,914.85736,107.0,13.35,0.0,0.0, +2024-02-05 09:00:00,10.317461,176.66621,24.7,1004.9889,47.2028,576.0,840.62366,96.0,12.7,0.0,0.0, +2024-02-05 10:00:00,9.159148,169.30354,23.75,1005.7562,53.338768,338.0,705.6884,77.0,13.7,0.0,0.0, +2024-02-05 11:00:00,7.808969,170.41713,22.45,1006.4145,63.573456,111.0,443.39798,43.0,15.2,0.0,0.0, +2024-02-05 12:00:00,8.028076,166.30994,21.6,1007.0847,65.46444,2.0,0.0,2.0,14.85,0.0,0.0, +2024-02-05 13:00:00,6.8308125,162.09546,20.75,1007.9536,68.30597,0.0,0.0,0.0,14.7,0.0,0.0, +2024-02-05 14:00:00,5.8600345,154.74687,20.55,1008.14636,68.930145,0.0,0.0,0.0,14.65,0.0,0.0, +2024-02-05 15:00:00,5.080354,143.8067,20.0,1008.3289,68.37704,0.0,0.0,0.0,14.0,0.0,0.0, +2024-02-05 16:00:00,4.5221677,144.90411,20.15,1007.8374,59.838737,0.0,0.0,0.0,12.1,0.0,0.0, +2024-02-05 17:00:00,4.8414874,141.7098,20.85,1007.5598,42.977383,0.0,0.0,0.0,7.8,0.0,0.0, +2024-02-05 18:00:00,4.8795495,135.83023,21.5,1007.37976,27.566048,0.0,0.0,0.0,2.0,0.0,0.0, +2024-02-05 19:00:00,5.1739736,131.08165,21.8,1007.388,26.02135,0.0,0.0,0.0,1.45,0.0,0.0, +2024-02-05 20:00:00,5.4405885,126.027466,21.65,1007.3839,25.886963,0.0,0.0,0.0,1.25,0.0,0.0, +2024-02-05 21:00:00,5.456189,116.09537,21.45,1007.6757,26.394392,0.0,0.0,0.0,1.35,0.0,0.0, +2024-02-05 22:00:00,5.772348,104.03627,21.4,1008.17035,26.76153,0.0,0.0,0.0,1.5,0.0,0.0, +2024-02-05 23:00:00,6.9180923,94.14455,22.95,1008.80884,24.438305,75.0,334.08078,31.0,1.55,0.0,0.0, +2024-02-06 00:00:00,7.100704,89.19309,25.55,1009.07904,20.392406,297.0,680.2145,74.0,1.2,0.0,0.0, +2024-02-06 01:00:00,7.7278714,79.56258,28.9,1008.47516,18.190294,538.0,834.5206,93.0,2.35,0.0,0.0, +2024-02-06 02:00:00,7.6295476,79.42653,31.1,1008.4346,15.4138155,759.0,916.77655,107.0,1.8,0.0,0.0, +2024-02-06 03:00:00,7.125307,85.16967,32.75,1008.081,13.303439,933.0,964.0477,114.0,1.05,0.0,0.0, +2024-02-06 04:00:00,6.7,90.0,34.15,1007.1252,11.864528,1047.0,988.4255,119.0,0.55,0.0,0.0, +2024-02-06 05:00:00,6.303174,91.81827,35.45,1006.26575,10.417337,1089.0,994.80115,121.0,-0.25,0.0,0.0, +2024-02-06 06:00:00,6.129437,95.61749,36.55,1005.6986,9.250052,1058.0,988.6558,119.0,-1.05,0.0,0.0, +2024-02-06 07:00:00,4.7885275,118.70586,35.8,1004.98486,9.156692,957.0,967.1642,115.0,-1.75,0.0,0.0, +2024-02-06 08:00:00,3.9446166,149.53453,35.8,1004.58795,8.9896345,795.0,927.2791,108.0,-2.0,0.0,0.0, +2024-02-06 09:00:00,6.0133185,176.186,32.65,1004.5069,17.877842,581.0,846.3979,99.0,5.15,0.0,0.0, +2024-02-06 10:00:00,6.802941,178.31535,29.55,1004.82214,41.094448,339.0,701.0107,81.0,14.95,0.0,0.0, +2024-02-06 11:00:00,7.532596,174.66794,26.65,1005.1413,43.870235,110.0,439.56232,43.0,13.35,0.0,0.0, +2024-02-06 12:00:00,6.928925,159.73422,24.15,1005.76715,50.89938,2.0,0.0,2.0,13.35,0.0,0.0, +2024-02-06 13:00:00,5.59017,153.43501,23.75,1006.0538,51.294342,0.0,0.0,0.0,13.1,0.0,0.0, +2024-02-06 14:00:00,4.080441,143.97253,24.35,1006.36774,43.66612,0.0,0.0,0.0,11.2,0.0,0.0, +2024-02-06 15:00:00,4.110961,131.05472,25.6,1006.2038,26.32277,0.0,0.0,0.0,4.85,0.0,0.0, +2024-02-06 16:00:00,4.652956,118.21727,26.4,1005.9279,17.08634,0.0,0.0,0.0,-0.55,0.0,0.0, +2024-02-06 17:00:00,5.2952805,100.88548,26.2,1005.5259,17.542849,0.0,0.0,0.0,-0.35,0.0,0.0, +2024-02-06 18:00:00,6.3007936,89.090645,26.35,1005.3315,17.642685,0.0,0.0,0.0,-0.15,0.0,0.0, +2024-02-06 19:00:00,6.946222,83.386635,26.5,1005.4348,17.487253,0.0,0.0,0.0,-0.15,0.0,0.0, +2024-02-06 20:00:00,7.3824115,81.43095,26.25,1005.6262,19.146822,0.0,0.0,0.0,0.9,0.0,0.0, +2024-02-06 21:00:00,7.227724,75.57919,25.7,1006.00824,21.174807,0.0,0.0,0.0,1.85,0.0,0.0, +2024-02-06 22:00:00,7.242237,72.31551,25.15,1006.489,22.672247,0.0,0.0,0.0,2.35,0.0,0.0, +2024-02-06 23:00:00,7.7201037,73.442856,26.0,1007.10754,22.099203,73.0,329.58533,30.0,2.7,0.0,0.0, +2024-02-07 00:00:00,8.052329,75.61857,28.1,1007.26337,19.674377,293.0,676.00494,73.0,2.8,0.0,0.0, +2024-02-07 01:00:00,7.4094534,68.62931,31.3,1006.45575,15.961778,535.0,832.1164,93.0,2.45,0.0,0.0, +2024-02-07 02:00:00,6.7542577,64.57317,34.15,1006.13306,13.498049,755.0,916.23083,105.0,2.35,0.0,0.0, +2024-02-07 03:00:00,5.8180757,65.63756,36.25,1005.98834,12.017317,927.0,959.8603,113.0,2.35,0.0,0.0, +2024-02-07 04:00:00,4.5617976,63.996716,38.35,1005.2479,10.7557745,1035.0,978.0776,118.0,2.4,0.0,0.0, +2024-02-07 05:00:00,1.0816654,123.6901,37.7,1004.43774,11.261029,1073.0,980.5991,120.0,2.55,0.0,0.0, +2024-02-07 06:00:00,6.103278,198.13817,36.45,1003.91003,16.785864,1039.0,969.8577,119.0,7.3,0.0,0.0, +2024-02-07 07:00:00,8.374366,191.71245,35.3,1003.5832,17.88318,936.0,946.69745,113.0,7.3,0.0,0.0, +2024-02-07 08:00:00,9.453041,186.07236,33.65,1003.44147,19.269623,775.0,904.693,106.0,7.05,0.0,0.0, +2024-02-07 09:00:00,8.1154175,176.46777,33.2,1003.2313,19.359406,567.0,832.9708,94.0,6.75,0.0,0.0, +2024-02-07 10:00:00,7.119691,169.47926,32.15,1003.3032,21.918215,331.0,696.47266,76.0,7.7,0.0,0.0, +2024-02-07 11:00:00,6.708204,169.6952,29.85,1003.4411,30.079565,105.0,429.22125,40.0,10.45,0.0,0.0, +2024-02-07 12:00:00,6.456005,163.81073,28.3,1003.79675,33.121346,1.0,0.0,1.0,10.55,0.0,0.0, +2024-02-07 13:00:00,4.609772,167.4712,27.1,1004.35974,34.591858,0.0,0.0,0.0,10.15,0.0,0.0, +2024-02-07 14:00:00,2.7856774,158.96242,26.75,1004.4494,32.032173,0.0,0.0,0.0,8.7,0.0,0.0, +2024-02-07 15:00:00,2.1213202,135.0001,26.35,1004.1412,24.400782,0.0,0.0,0.0,4.4,0.0,0.0, +2024-02-07 16:00:00,2.570992,103.49575,27.4,1004.0704,18.02376,0.0,0.0,0.0,1.0,0.0,0.0, +2024-02-07 17:00:00,3.1144822,84.47256,28.95,1003.9135,14.296885,0.0,0.0,0.0,-0.95,0.0,0.0, +2024-02-07 18:00:00,3.905125,87.064384,29.4,1003.6279,12.291379,0.0,0.0,0.0,-2.65,0.0,0.0, +2024-02-07 19:00:00,5.5362444,73.201546,29.85,1003.5403,11.713062,0.0,0.0,0.0,-2.95,0.0,0.0, +2024-02-07 20:00:00,7.5591,62.418053,30.15,1003.6477,11.903651,0.0,0.0,0.0,-2.5,0.0,0.0, +2024-02-07 21:00:00,8.609298,59.264584,29.85,1004.23474,12.612753,0.0,0.0,0.0,-1.95,0.0,0.0, +2024-02-07 22:00:00,8.300603,58.799557,29.4,1005.0167,13.039754,0.0,0.0,0.0,-1.85,0.0,0.0, +2024-02-07 23:00:00,8.15414,56.50479,30.2,1005.83154,12.407307,68.0,309.5254,28.0,-1.9,0.0,0.0, +2024-02-08 00:00:00,8.070935,56.113,32.45,1006.0889,10.716793,281.0,650.06525,71.0,-2.15,0.0,0.0, +2024-02-08 01:00:00,8.6977005,44.534245,35.25,1005.46704,10.119533,516.0,801.35144,92.0,-0.8,0.0,0.0, +2024-02-08 02:00:00,8.324061,38.65983,38.1,1005.5392,8.469763,730.0,884.6111,104.0,-1.1,0.0,0.0, +2024-02-08 03:00:00,7.2201114,36.552567,40.25,1005.3944,7.768603,901.0,932.0589,112.0,-0.7,0.0,0.0, +2024-02-08 04:00:00,5.3413477,38.157276,41.9,1004.9389,7.8495154,1013.0,957.0566,117.0,0.65,0.0,0.0, +2024-02-08 05:00:00,2.5238857,33.6901,42.6,1004.26135,8.187432,1057.0,966.4104,119.0,1.75,0.0,0.0, +2024-02-08 06:00:00,4.3462625,203.02553,40.1,1003.803,12.213055,1029.0,961.6304,118.0,5.55,0.0,0.0, +2024-02-08 07:00:00,7.1309185,194.62091,38.4,1003.5623,14.5865755,929.0,940.0747,113.0,6.8,0.0,0.0, +2024-02-08 08:00:00,7.81025,193.32454,37.7,1003.4455,14.892809,770.0,899.73566,106.0,6.55,0.0,0.0, +2024-02-08 09:00:00,6.736468,185.96439,35.95,1003.59955,15.724661,562.0,826.66364,94.0,5.95,0.0,0.0, +2024-02-08 10:00:00,5.308484,183.23964,34.45,1004.0572,19.59579,328.0,692.06805,76.0,7.95,0.0,0.0, +2024-02-08 11:00:00,5.3037724,177.83897,32.0,1004.8868,26.784002,103.0,418.8796,40.0,10.55,0.0,0.0, +2024-02-08 12:00:00,4.9010205,178.83089,30.8,1005.4504,25.32821,1.0,0.0,1.0,8.7,0.0,0.0, +2024-02-08 13:00:00,4.3,180.0,29.5,1006.3089,27.475367,0.0,0.0,0.0,8.8,0.0,0.0, +2024-02-08 14:00:00,3.1016126,181.84756,28.85,1006.3907,27.6719,0.0,0.0,0.0,8.35,0.0,0.0, +2024-02-08 15:00:00,2.0099752,174.2895,27.9,1006.0675,25.596405,0.0,0.0,0.0,6.4,0.0,0.0, +2024-02-08 16:00:00,2.4698176,148.24057,27.25,1005.7527,22.502762,0.0,0.0,0.0,4.0,0.0,0.0, +2024-02-08 17:00:00,2.5079873,94.57384,27.0,1005.5476,18.58477,0.0,0.0,0.0,1.1,0.0,0.0, +2024-02-08 18:00:00,3.238827,81.11942,25.05,1005.0974,18.577995,0.0,0.0,0.0,-0.5,0.0,0.0, +2024-02-08 19:00:00,2.8635643,77.90526,25.6,1004.81506,15.352914,0.0,0.0,0.0,-2.65,0.0,0.0, +2024-02-08 20:00:00,3.104835,75.068535,27.25,1004.95905,13.321486,0.0,0.0,0.0,-3.25,0.0,0.0, +2024-02-08 21:00:00,4.4944406,69.14546,28.6,1005.29297,12.497185,0.0,0.0,0.0,-3.05,0.0,0.0, +2024-02-08 22:00:00,5.5226803,58.324585,29.1,1005.70294,12.18552,0.0,0.0,0.0,-3.0,0.0,0.0, +2024-02-08 23:00:00,6.4660654,58.276447,30.5,1006.4346,11.581114,67.0,304.69946,28.0,-2.6,0.0,0.0, +2024-02-09 00:00:00,6.4350605,57.05078,33.75,1006.8172,10.072904,281.0,654.92413,71.0,-2.0,0.0,0.0, +2024-02-09 01:00:00,6.529931,49.969803,37.65,1006.71857,9.506103,518.0,808.2999,92.0,0.15,0.0,0.0, +2024-02-09 02:00:00,6.0207973,41.63345,40.65,1006.59503,7.8294916,734.0,892.51624,104.0,-0.3,0.0,0.0, +2024-02-09 03:00:00,3.8418746,38.65983,42.15,1006.3342,6.846836,907.0,939.6873,113.0,-1.05,0.0,0.0, +2024-02-09 04:00:00,0.53851646,158.19853,41.15,1005.51575,8.226296,1020.0,964.89355,118.0,0.75,0.0,0.0, +2024-02-09 05:00:00,4.4654226,214.04597,40.9,1005.0136,12.199193,1063.0,972.86676,120.0,6.15,0.0,0.0, +2024-02-09 06:00:00,6.6400304,217.04256,38.8,1004.56433,15.129314,1032.0,967.18475,117.0,7.65,0.0,0.0, +2024-02-09 07:00:00,6.6887965,211.55133,37.5,1004.2342,17.140053,933.0,946.2032,113.0,8.45,0.0,0.0, +2024-02-09 08:00:00,6.1351447,199.0257,35.8,1003.9927,18.55896,773.0,905.722,106.0,8.25,0.0,0.0, +2024-02-09 09:00:00,4.8259716,185.94676,35.35,1004.08044,20.150927,564.0,832.8515,94.0,9.1,0.0,0.0, +2024-02-09 10:00:00,4.7296934,193.44862,33.1,1004.4194,25.93741,328.0,696.0761,76.0,11.0,0.0,0.0, +2024-02-09 11:00:00,4.237924,160.70985,30.95,1005.2561,30.08178,103.0,421.91678,40.0,11.4,0.0,0.0, +2024-02-09 12:00:00,4.850773,165.67725,31.0,1005.55505,24.043139,1.0,0.0,1.0,8.1,0.0,0.0, +2024-02-09 13:00:00,5.3712196,155.82089,30.9,1006.3459,18.934687,0.0,0.0,0.0,4.55,0.0,0.0, +2024-02-09 14:00:00,5.60803,148.86108,30.25,1006.7255,19.652145,0.0,0.0,0.0,4.55,0.0,0.0, +2024-02-09 15:00:00,4.7010636,150.70874,29.65,1006.5114,20.555937,0.0,0.0,0.0,4.7,0.0,0.0, +2024-02-09 16:00:00,3.5846896,149.8587,28.7,1006.18823,20.750734,0.0,0.0,0.0,4.05,0.0,0.0, +2024-02-09 17:00:00,3.1144822,137.60262,28.3,1005.78076,18.305813,0.0,0.0,0.0,1.95,0.0,0.0, +2024-02-09 18:00:00,2.7658632,130.60121,27.75,1005.36945,17.78593,0.0,0.0,0.0,1.1,0.0,0.0, +2024-02-09 19:00:00,2.657066,109.798965,27.3,1005.35706,17.299427,0.0,0.0,0.0,0.35,0.0,0.0, +2024-02-09 20:00:00,2.942788,99.78234,27.35,1005.2594,16.2762,0.0,0.0,0.0,-0.45,0.0,0.0, +2024-02-09 21:00:00,3.8052595,93.012726,28.0,1005.2768,15.053145,0.0,0.0,0.0,-1.0,0.0,0.0, +2024-02-09 22:00:00,4.509989,86.186005,28.5,1005.48846,14.408956,0.0,0.0,0.0,-1.2,0.0,0.0, +2024-02-09 23:00:00,5.4571056,76.21838,30.3,1005.9332,13.178723,65.0,291.88965,28.0,-1.0,0.0,0.0, +2024-02-10 00:00:00,5.6921,71.564964,34.2,1006.23364,11.084555,277.0,650.42615,70.0,-0.35,0.0,0.0, +2024-02-10 01:00:00,6.0827627,62.59251,38.65,1006.24744,10.470456,516.0,809.597,91.0,2.25,0.0,0.0, +2024-02-10 02:00:00,6.0207973,48.366554,41.45,1006.1188,9.015004,733.0,893.3775,104.0,2.25,0.0,0.0, +2024-02-10 03:00:00,4.1868844,40.15594,43.2,1005.6654,7.8775253,905.0,940.2575,112.0,1.65,0.0,0.0, +2024-02-10 04:00:00,0.94868326,198.43504,42.1,1005.04285,8.286172,1017.0,965.29297,116.0,1.55,0.0,0.0, +2024-02-10 05:00:00,5.905929,208.30066,40.65,1004.51117,13.889621,1060.0,973.19147,118.0,7.85,0.0,0.0, +2024-02-10 06:00:00,7.1589108,204.77512,38.7,1004.1649,19.055487,1030.0,965.4071,118.0,11.0,0.0,0.0, +2024-02-10 07:00:00,7.912016,196.14441,36.0,1003.7992,21.567911,929.0,943.1833,113.0,10.65,0.0,0.0, +2024-02-10 08:00:00,6.1131005,183.75165,35.15,1003.38055,22.528536,767.0,900.9448,105.0,10.6,0.0,0.0, +2024-02-10 09:00:00,5.622277,185.10208,33.9,1003.2493,27.561232,559.0,826.76135,94.0,12.6,0.0,0.0, +2024-02-10 10:00:00,5.5226803,174.80566,32.2,1003.404,29.15201,323.0,689.18787,75.0,12.0,0.0,0.0, +2024-02-10 11:00:00,5.2773094,170.18077,30.3,1003.8499,35.255497,99.0,411.63406,38.0,13.25,0.0,0.0, +2024-02-10 12:00:00,6.2361846,164.18074,29.9,1004.4348,30.802439,1.0,0.0,1.0,10.85,0.0,0.0, +2024-02-10 13:00:00,5.9481087,163.39294,28.3,1005.08636,31.397266,0.0,0.0,0.0,9.75,0.0,0.0, +2024-02-10 14:00:00,5.1662364,165.42575,27.0,1005.25006,40.78667,0.0,0.0,0.0,12.55,0.0,0.0, +2024-02-10 15:00:00,4.753946,157.75093,26.45,1004.9372,42.6844,0.0,0.0,0.0,12.75,0.0,0.0, +2024-02-10 16:00:00,4.0718546,155.32315,26.4,1004.7377,39.95513,0.0,0.0,0.0,11.7,0.0,0.0, +2024-02-10 17:00:00,3.130495,153.43501,26.1,1004.33264,37.683468,0.0,0.0,0.0,10.55,0.0,0.0, +2024-02-10 18:00:00,2.0880613,163.30067,25.1,1004.1072,37.526974,0.0,0.0,0.0,9.6,0.0,0.0, +2024-02-10 19:00:00,2.0024984,177.13765,24.1,1004.0798,42.029892,0.0,0.0,0.0,10.4,0.0,0.0, +2024-02-10 20:00:00,2.4186773,172.87508,23.6,1003.96674,46.90386,0.0,0.0,0.0,11.6,0.0,0.0, +2024-02-10 21:00:00,2.5632012,159.44388,23.3,1004.1569,45.596195,0.0,0.0,0.0,10.9,0.0,0.0, +2024-02-10 22:00:00,2.2825425,151.1893,22.85,1004.34265,42.95891,0.0,0.0,0.0,9.6,0.0,0.0, +2024-02-10 23:00:00,2.5238857,146.3099,25.1,1004.99994,32.223633,63.0,286.7908,27.0,7.35,0.0,0.0, +2024-02-11 00:00:00,1.6552945,154.98314,29.05,1005.3048,22.034649,276.0,652.18665,70.0,5.2,0.0,0.0, +2024-02-11 01:00:00,2.630589,188.74608,30.05,1005.33136,36.948,512.0,807.0865,90.0,13.75,0.0,0.0, +2024-02-11 02:00:00,3.0364454,197.24155,33.05,1005.0134,31.770456,729.0,889.989,104.0,14.05,0.0,0.0, +2024-02-11 03:00:00,3.5846896,202.98874,35.05,1004.5687,32.31627,901.0,937.293,112.0,16.05,0.0,0.0, +2024-02-11 04:00:00,4.5793014,211.60745,35.6,1003.6899,34.478424,1013.0,962.512,116.0,17.55,0.0,0.0, +2024-02-11 05:00:00,5.7454333,211.47679,34.95,1003.1771,33.123184,1055.0,969.42773,118.0,16.35,0.0,0.0, +2024-02-11 06:00:00,6.307139,205.34613,33.5,1002.54474,32.72684,1023.0,961.56616,116.0,14.9,0.0,0.0, +2024-02-11 07:00:00,5.8523498,196.88687,32.55,1002.2222,37.519844,925.0,941.38763,112.0,16.2,0.0,0.0, +2024-02-11 08:00:00,6.1983867,190.2221,31.05,1001.8856,46.505577,766.0,901.6994,105.0,18.25,0.0,0.0, +2024-02-11 09:00:00,6.412488,183.57626,28.9,1002.0271,53.95719,555.0,824.3208,93.0,18.65,0.0,0.0, +2024-02-11 10:00:00,6.7186303,184.2678,27.4,1001.9872,63.25524,319.0,682.37946,75.0,19.8,0.0,0.0, +2024-02-11 11:00:00,5.0249376,174.2895,25.15,1002.62054,72.69416,96.0,394.50906,38.0,19.9,0.0,0.0, +2024-02-11 12:00:00,3.2015622,181.78987,24.0,1003.28345,78.8405,1.0,0.0,1.0,20.1,0.0,0.0, +2024-02-11 13:00:00,3.324154,173.08887,23.45,1004.3594,81.24256,0.0,0.0,0.0,20.05,0.0,0.0, +2024-02-11 14:00:00,4.440721,172.23492,23.5,1004.16223,72.85947,0.0,0.0,0.0,18.35,0.0,0.0, +2024-02-11 15:00:00,4.318565,174.68555,22.7,1003.54504,77.4353,0.0,0.0,0.0,18.55,0.0,0.0, +2024-02-11 16:00:00,3.981206,168.40785,22.3,1003.2362,80.33886,0.0,0.0,0.0,18.75,0.0,0.0, +2024-02-11 17:00:00,1.9723083,149.53453,21.75,1003.02277,82.560616,0.0,0.0,0.0,18.65,0.0,0.0, +2024-02-11 18:00:00,1.8439089,167.4712,21.3,1002.7126,84.33651,0.0,0.0,0.0,18.55,0.0,0.0, +2024-02-11 19:00:00,2.2022717,182.60251,21.05,1002.50696,87.26185,0.0,0.0,0.0,18.85,0.0,0.0, +2024-02-11 20:00:00,2.9017239,178.02512,20.9,1002.8005,90.85816,0.0,0.0,0.0,19.35,0.0,0.0, +2024-02-11 21:00:00,3.306055,176.53185,20.95,1003.00037,91.99784,0.0,0.0,0.0,19.6,0.0,0.0, +2024-02-11 22:00:00,3.7215588,173.82993,21.0,1003.39844,93.1492,0.0,0.0,0.0,19.85,0.0,0.0, +2024-02-11 23:00:00,3.8587563,148.78166,21.95,1004.01996,89.257195,60.0,273.5384,26.0,20.1,0.0,0.0, +2024-02-12 00:00:00,2.7856774,158.96242,24.05,1004.2766,76.680016,269.0,634.82806,70.0,19.7,0.0,0.0, +2024-02-12 01:00:00,4.204759,182.72626,25.65,1004.51874,69.26436,497.0,756.5566,103.0,19.6,0.0,0.0, +2024-02-12 02:00:00,5.178803,190.00792,27.25,1004.6615,62.441963,717.0,868.0392,109.0,19.45,0.0,0.0, +2024-02-12 03:00:00,6.1611686,193.13403,27.95,1004.48193,60.498608,886.0,914.1107,118.0,19.6,0.0,0.0, +2024-02-12 04:00:00,6.676077,196.53491,28.0,1003.9872,59.762833,997.0,940.4151,122.0,19.45,0.0,0.0, +2024-02-12 05:00:00,6.9892774,199.21277,27.6,1003.8773,62.51914,1041.0,953.268,121.0,19.8,0.0,0.0, +2024-02-12 06:00:00,7.1168814,197.162,27.45,1003.7741,63.070297,1006.0,929.10474,131.0,19.8,0.0,0.0, +2024-02-12 07:00:00,7.0830784,193.05525,27.55,1003.4793,62.702274,910.0,910.6596,125.0,19.8,0.0,0.0, +2024-02-12 08:00:00,7.808969,189.58287,26.45,1003.15173,66.68056,751.0,869.73157,115.0,19.75,0.0,0.0, +2024-02-12 09:00:00,7.256032,187.12492,25.75,1003.0337,70.583824,547.0,805.8658,97.0,20.0,0.0,0.0, +2024-02-12 10:00:00,7.017834,184.08554,24.45,1003.494,75.56253,315.0,675.64154,75.0,19.85,0.0,0.0, +2024-02-12 11:00:00,5.9008474,179.029,22.9,1003.848,82.954834,94.0,384.07834,38.0,19.85,0.0,0.0, +2024-02-12 12:00:00,6.0074954,177.13765,22.1,1004.12354,87.08602,1.0,0.0,1.0,19.85,0.0,0.0, +2024-02-12 13:00:00,5.9413805,173.23392,21.75,1004.4113,81.78918,0.0,0.0,0.0,18.5,0.0,0.0, +2024-02-12 14:00:00,5.323533,174.61078,21.65,1004.8052,80.75733,0.0,0.0,0.0,18.2,0.0,0.0, +2024-02-12 15:00:00,5.0358715,173.15732,21.5,1004.6027,82.27229,0.0,0.0,0.0,18.35,0.0,0.0, +2024-02-12 16:00:00,4.7296934,166.55138,21.2,1004.2966,84.85527,0.0,0.0,0.0,18.55,0.0,0.0, +2024-02-12 17:00:00,3.4176016,159.44388,20.7,1003.88574,88.32867,0.0,0.0,0.0,18.7,0.0,0.0, +2024-02-12 18:00:00,2.7294688,151.55717,20.15,1003.47363,91.092804,0.0,0.0,0.0,18.65,0.0,0.0, +2024-02-12 19:00:00,2.842534,129.28938,20.0,1003.46924,88.27004,0.0,0.0,0.0,18.0,0.0,0.0, +2024-02-12 20:00:00,2.1931713,136.8476,20.45,1003.28375,76.60408,0.0,0.0,0.0,16.2,0.0,0.0, +2024-02-12 21:00:00,2.2825425,151.1893,21.2,1003.70154,63.2971,0.0,0.0,0.0,13.95,0.0,0.0, +2024-02-12 22:00:00,3.5846896,120.141304,23.65,1003.8688,45.240467,0.0,0.0,0.0,11.1,0.0,0.0, +2024-02-12 23:00:00,5.2924476,112.20353,25.85,1004.02844,39.80097,59.0,268.14276,26.0,11.15,0.0,0.0, +2024-02-13 00:00:00,5.27731,117.05052,28.45,1004.396,32.18333,268.0,639.6963,69.0,10.25,0.0,0.0, +2024-02-13 01:00:00,4.6669044,135.0001,29.2,1005.01135,32.824467,502.0,794.3093,90.0,11.2,0.0,0.0, +2024-02-13 02:00:00,4.750789,139.26799,32.0,1004.8868,27.597534,718.0,880.3466,103.0,11.0,0.0,0.0, +2024-02-13 03:00:00,4.7853947,153.97047,34.2,1004.54694,24.067268,890.0,929.0277,111.0,10.8,0.0,0.0, +2024-02-13 04:00:00,5.315073,175.68405,35.35,1003.882,22.805304,1003.0,955.96136,115.0,10.95,0.0,0.0, +2024-02-13 05:00:00,7.368175,187.8001,33.5,1003.04083,33.36435,1047.0,965.12634,117.0,15.2,0.0,0.0, +2024-02-13 06:00:00,8.590692,192.09474,31.9,1002.90015,40.824512,1016.0,958.28467,115.0,16.95,0.0,0.0, +2024-02-13 07:00:00,8.994442,188.3102,30.45,1002.4652,39.40167,917.0,935.6784,112.0,15.1,0.0,0.0, +2024-02-13 08:00:00,8.100618,180.7073,30.15,1001.96124,39.700348,756.0,893.9042,104.0,14.95,0.0,0.0, +2024-02-13 09:00:00,7.5006666,179.23611,29.3,1001.9386,45.45528,549.0,821.5414,92.0,16.3,0.0,0.0, +2024-02-13 10:00:00,7.2,180.0,27.6,1002.1909,51.46822,314.0,680.3014,74.0,16.7,0.0,0.0, +2024-02-13 11:00:00,6.1131005,176.24835,25.75,1002.4385,57.574234,92.0,387.4114,36.0,16.75,0.0,0.0, +2024-02-13 12:00:00,6.067125,171.46931,25.45,1002.6287,55.5207,0.0,0.0,0.0,15.9,0.0,0.0, +2024-02-13 13:00:00,6.2297673,161.27412,25.65,1003.13,50.962162,0.0,0.0,0.0,14.75,0.0,0.0, +2024-02-13 14:00:00,4.8754487,154.48618,25.65,1003.22925,48.70785,0.0,0.0,0.0,14.05,0.0,0.0, +2024-02-13 15:00:00,4.5177426,152.30061,26.65,1002.66144,40.157112,0.0,0.0,0.0,12.0,0.0,0.0, +2024-02-13 16:00:00,4.909175,146.63362,27.85,1002.0984,27.493244,0.0,0.0,0.0,7.4,0.0,0.0, +2024-02-13 17:00:00,4.6647615,120.96369,28.4,1002.014,23.853298,0.0,0.0,0.0,5.8,0.0,0.0, +2024-02-13 18:00:00,4.167733,120.256355,28.35,1001.81433,23.922743,0.0,0.0,0.0,5.8,0.0,0.0, +2024-02-13 19:00:00,4.2544093,113.55228,28.2,1001.61176,25.942688,0.0,0.0,0.0,6.85,0.0,0.0, +2024-02-13 20:00:00,4.4922156,106.821495,28.3,1001.3168,28.280685,0.0,0.0,0.0,8.2,0.0,0.0, +2024-02-13 21:00:00,5.8,90.0,28.65,1001.3261,29.649206,0.0,0.0,0.0,9.2,0.0,0.0, +2024-02-13 22:00:00,6.905071,79.99209,28.6,1001.62256,30.751335,0.0,0.0,0.0,9.7,0.0,0.0, +2024-02-13 23:00:00,7.955501,75.43969,29.4,1002.1399,29.755955,57.0,262.63025,25.0,9.9,0.0,0.0, +2024-02-14 00:00:00,8.271033,75.29166,31.9,1002.3048,25.878395,264.0,634.9108,68.0,9.95,0.0,0.0, +2024-02-14 01:00:00,4.4045434,87.3975,34.1,1002.8578,21.81836,501.0,797.53064,89.0,9.25,0.0,0.0, +2024-02-14 02:00:00,4.0261645,75.61857,37.2,1002.63904,18.082283,716.0,881.2527,102.0,9.0,0.0,0.0, +2024-02-14 03:00:00,2.8231187,67.06787,39.6,1002.0046,14.541731,886.0,927.3013,110.0,7.7,0.0,0.0, +2024-02-14 04:00:00,1.5,216.86998,40.55,1001.13477,13.821878,999.0,953.2651,115.0,7.7,0.0,0.0, +2024-02-14 05:00:00,5.8137765,206.56499,38.6,1000.3922,25.447641,1042.0,961.4786,117.0,15.35,0.0,0.0, +2024-02-14 06:00:00,7.8771825,200.04533,36.65,999.8471,28.203732,1010.0,953.5295,115.0,15.3,0.0,0.0, +2024-02-14 07:00:00,7.119691,190.52074,35.8,999.32935,26.911406,910.0,932.91693,109.0,13.85,0.0,0.0, +2024-02-14 08:00:00,6.041523,192.42593,34.5,999.2964,31.553251,732.0,850.9334,113.0,15.2,0.0,0.0, +2024-02-14 09:00:00,6.9007244,180.83029,33.65,999.0761,33.620422,524.0,768.868,98.0,15.45,0.0,0.0, +2024-02-14 10:00:00,6.7067127,182.56372,31.05,999.0086,40.204662,304.0,639.49725,80.0,15.95,0.0,0.0, +2024-02-14 11:00:00,5.0990195,168.69011,29.15,999.2561,46.290886,89.0,369.96704,36.0,16.45,0.0,0.0, +2024-02-14 12:00:00,6.0728908,162.75845,28.0,999.4241,48.39623,0.0,0.0,0.0,16.1,0.0,0.0, +2024-02-14 13:00:00,6.0083275,161.56496,27.55,1000.50336,45.565025,0.0,0.0,0.0,14.75,0.0,0.0, +2024-02-14 14:00:00,5.1195703,167.59259,26.65,1000.77673,51.55101,0.0,0.0,0.0,15.85,0.0,0.0, +2024-02-14 15:00:00,3.6687872,162.55272,26.45,1000.77106,54.19655,0.0,0.0,0.0,16.45,0.0,0.0, +2024-02-14 16:00:00,2.4186773,172.87508,25.9,1000.4588,55.63208,0.0,0.0,0.0,16.35,0.0,0.0, +2024-02-14 17:00:00,1.4866068,199.65392,25.6,999.75635,57.355564,0.0,0.0,0.0,16.55,0.0,0.0, +2024-02-14 18:00:00,1.6124516,240.2552,23.55,999.4028,73.78659,0.0,0.0,0.0,18.6,0.0,0.0, +2024-02-14 19:00:00,1.0440307,253.30067,22.65,999.17944,86.066216,0.0,0.0,0.0,20.2,0.0,0.0, +2024-02-14 20:00:00,0.92195445,192.5288,23.25,998.8985,85.33286,0.0,0.0,0.0,20.65,0.0,0.0, +2024-02-14 21:00:00,2.4020824,87.614105,26.45,998.688,52.329166,0.0,0.0,0.0,15.9,0.0,0.0, +2024-02-14 22:00:00,6.484597,70.167786,31.8,998.6313,21.532967,0.0,0.0,0.0,7.15,0.0,0.0, +2024-02-14 23:00:00,8.13941,63.749832,33.1,998.7643,18.55246,30.0,66.32196,22.0,6.05,0.0,0.0, +2024-02-15 00:00:00,5.7999997,43.602894,36.5,999.248,13.507568,250.0,558.2216,79.0,4.2,0.0,0.0, +2024-02-15 01:00:00,3.6235344,297.97937,26.4,1001.36505,62.840405,486.0,756.07715,97.0,18.75,0.0,0.0, +2024-02-15 02:00:00,3.471311,281.6336,28.8,1001.5286,54.440735,575.0,453.32275,260.0,18.7,0.0,0.0, +2024-02-15 03:00:00,3.238827,278.88058,27.8,1001.8987,59.531017,498.0,165.24205,360.0,19.2,0.0,0.0, +2024-02-15 04:00:00,3.7215588,276.17007,28.5,1001.8181,56.268715,627.0,277.6175,370.0,18.95,0.0,0.0, +2024-02-15 05:00:00,3.748333,279.21094,27.55,1001.89215,58.55146,402.0,8.329274,394.0,18.7,0.0,0.0, +2024-02-15 06:00:00,4.219004,275.44025,27.1,1001.979,62.99387,424.0,154.75626,279.0,19.45,0.0,0.0, +2024-02-15 07:00:00,3.9623227,259.82455,27.4,1001.9872,60.750484,550.0,271.94495,317.0,19.15,0.0,0.0, +2024-02-15 08:00:00,3.8639357,259.56256,27.1,1002.2767,62.798317,610.0,518.3221,234.0,19.4,0.0,0.0, +2024-02-15 09:00:00,2.84605,251.56496,25.85,1002.9373,67.60236,348.0,279.09784,194.0,19.4,0.0,0.0, +2024-02-15 10:00:00,2.404163,253.0724,24.65,1003.4005,73.514755,87.0,0.0,87.0,19.6,0.0,0.0, +2024-02-15 11:00:00,2.0248456,249.77505,24.0,1003.9778,76.67229,23.0,0.0,23.0,19.65,0.0,0.0, +2024-02-15 12:00:00,1.421267,219.28938,23.8,1004.56714,77.8409,0.0,0.0,0.0,19.7,0.0,0.0, +2024-02-15 13:00:00,2.4413111,214.9921,23.25,1004.6513,82.7396,0.0,0.0,0.0,20.15,0.0,0.0, +2024-02-15 14:00:00,2.0615528,165.96373,23.15,1004.64844,81.70937,0.0,0.0,0.0,19.85,0.0,0.0, +2024-02-15 15:00:00,1.7088008,159.44388,23.15,1004.4501,80.45184,0.0,0.0,0.0,19.6,0.0,0.0, +2024-02-15 16:00:00,3.026549,172.40544,23.1,1003.9528,77.737434,0.0,0.0,0.0,19.0,0.0,0.0, +2024-02-15 17:00:00,2.7166157,186.3401,22.2,1003.8288,82.6146,0.0,0.0,0.0,19.1,0.0,0.0, +2024-02-15 18:00:00,0.9433981,32.005356,22.0,1004.21985,82.59063,0.0,0.0,0.0,18.9,0.0,0.0, +2024-02-15 19:00:00,1.2806249,218.65984,20.75,1003.8873,90.002846,0.0,0.0,0.0,19.05,0.0,0.0, +2024-02-15 20:00:00,2.059126,209.0545,21.8,1004.3133,88.969666,0.0,0.0,0.0,19.9,0.0,0.0, +2024-02-15 21:00:00,1.9313208,201.25058,21.75,1004.4113,90.07456,0.0,0.0,0.0,20.05,0.0,0.0, +2024-02-15 22:00:00,1.4422206,213.6901,21.6,1005.20026,90.343254,0.0,0.0,0.0,19.95,0.0,0.0, +2024-02-15 23:00:00,0.60827625,80.53775,21.8,1006.09863,88.69444,9.0,0.0,9.0,19.85,0.0,0.0, +2024-02-16 00:00:00,1.6643317,147.26479,22.6,1006.81537,83.4361,43.0,0.0,43.0,19.65,0.0,0.0, +2024-02-16 01:00:00,3.905125,182.93561,23.65,1006.64606,78.06084,134.0,72.20941,97.0,19.6,0.0,0.0, +2024-02-16 02:00:00,2.6476402,100.88548,26.35,1006.3234,63.61941,318.0,67.82207,271.0,18.9,0.0,0.0, +2024-02-16 03:00:00,4.0816665,59.03632,30.85,1005.94775,39.259605,304.0,13.198694,293.0,15.4,0.0,0.0, +2024-02-16 04:00:00,3.2802439,217.56866,31.8,1005.7743,37.915287,571.0,167.7319,416.0,15.7,0.0,0.0, +2024-02-16 05:00:00,4.964876,198.79999,30.6,1004.94904,53.545414,834.0,446.37772,406.0,20.1,0.0,0.0, +2024-02-16 06:00:00,6.2393913,201.63095,29.65,1004.6266,58.319664,745.0,279.0726,484.0,20.6,0.0,0.0, +2024-02-16 07:00:00,6.562012,187.88304,26.55,1004.8409,58.68348,462.0,104.103165,373.0,17.8,0.0,0.0, +2024-02-16 08:00:00,5.408327,183.17976,27.75,1004.57587,54.350124,390.0,92.62709,323.0,17.7,0.0,0.0, +2024-02-16 09:00:00,5.4451814,187.38596,27.55,1004.8681,57.103012,308.0,112.84544,246.0,18.3,0.0,0.0, +2024-02-16 10:00:00,6.2201285,184.61057,26.3,1005.0324,63.212425,296.0,631.8066,78.0,18.75,0.0,0.0, +2024-02-16 11:00:00,4.925444,174.17375,24.75,1005.28766,67.8059,54.0,92.486015,41.0,18.4,0.0,0.0, +2024-02-16 12:00:00,3.4481878,163.14153,24.65,1005.9795,69.072014,0.0,0.0,0.0,18.6,0.0,0.0, +2024-02-16 13:00:00,3.764306,129.61066,24.65,1006.4754,61.27599,0.0,0.0,0.0,16.7,0.0,0.0, +2024-02-16 14:00:00,3.4539833,157.8905,24.45,1006.56885,60.07204,0.0,0.0,0.0,16.2,0.0,0.0, +2024-02-16 15:00:00,3.224903,150.2552,23.3,1006.3389,67.51541,0.0,0.0,0.0,16.95,0.0,0.0, +2024-02-16 16:00:00,2.8301945,147.99466,22.75,1006.02594,69.5793,0.0,0.0,0.0,16.9,0.0,0.0, +2024-02-16 17:00:00,3.1780498,155.85446,22.2,1005.4158,75.43686,0.0,0.0,0.0,17.65,0.0,0.0, +2024-02-16 18:00:00,3.535534,151.2603,21.95,1004.81335,78.05551,0.0,0.0,0.0,17.95,0.0,0.0, +2024-02-16 19:00:00,2.2671568,131.42357,20.7,1005.27423,83.21668,0.0,0.0,0.0,17.75,0.0,0.0, +2024-02-16 20:00:00,2.2135942,161.56496,20.15,1005.8539,82.106346,0.0,0.0,0.0,17.0,0.0,0.0, +2024-02-16 21:00:00,3.6055512,146.3099,22.15,1005.3149,65.16156,0.0,0.0,0.0,15.3,0.0,0.0, +2024-02-16 22:00:00,3.4655447,133.83095,24.55,1005.6791,43.14641,0.0,0.0,0.0,11.2,0.0,0.0, +2024-02-16 23:00:00,2.184033,105.945465,25.15,1006.6874,38.3034,13.0,0.0,13.0,9.95,0.0,0.0, +2024-02-17 00:00:00,4.3931766,101.821465,28.25,1006.6722,32.127625,84.0,26.524895,76.0,10.05,0.0,0.0, +2024-02-17 01:00:00,5.0990195,138.17992,31.5,1005.7663,28.67545,262.0,141.09375,190.0,11.15,0.0,0.0, +2024-02-17 02:00:00,5.0990195,131.82008,35.45,1005.47205,20.243336,558.0,474.60626,230.0,9.25,0.0,0.0, +2024-02-17 03:00:00,4.2190046,121.42952,38.85,1005.06177,15.5577,849.0,848.8942,143.0,8.1,0.0,0.0, +2024-02-17 04:00:00,4.140048,127.14677,40.6,1004.21216,12.610819,971.0,914.9864,127.0,6.4,0.0,0.0, +2024-02-17 05:00:00,3.231099,158.19853,41.5,1003.14294,11.817222,1022.0,945.5204,117.0,6.15,0.0,0.0, +2024-02-17 06:00:00,5.0635953,189.0902,39.3,1002.7908,20.037537,993.0,937.3639,118.0,12.25,0.0,0.0, +2024-02-17 07:00:00,6.1846585,194.03627,37.25,1002.3427,31.495213,888.0,907.3973,114.0,17.55,0.0,0.0, +2024-02-17 08:00:00,7.81025,193.32454,34.95,1001.9866,36.42232,717.0,837.5196,113.0,17.85,0.0,0.0, +2024-02-17 09:00:00,7.8230433,184.39862,32.9,1002.03296,34.953056,529.0,802.55505,90.0,15.4,0.0,0.0, +2024-02-17 10:00:00,6.0299253,174.2895,31.65,1002.39746,37.631958,296.0,657.26917,71.0,15.45,0.0,0.0, +2024-02-17 11:00:00,5.423099,174.71,30.25,1002.65814,43.72675,81.0,344.9175,33.0,16.55,0.0,0.0, +2024-02-17 12:00:00,5.8523498,163.11313,28.8,1003.01666,45.03126,0.0,0.0,0.0,15.7,0.0,0.0, +2024-02-17 13:00:00,7.291776,154.84073,27.05,1003.9616,47.9892,0.0,0.0,0.0,15.1,0.0,0.0, +2024-02-17 14:00:00,5.077401,147.87503,27.1,1003.96295,47.69495,0.0,0.0,0.0,15.05,0.0,0.0, +2024-02-17 15:00:00,3.482815,140.82635,27.55,1003.6777,44.260105,0.0,0.0,0.0,14.3,0.0,0.0, +2024-02-17 16:00:00,3.4655447,133.83095,27.9,1003.29,40.373627,0.0,0.0,0.0,13.2,0.0,0.0, +2024-02-17 17:00:00,4.565085,118.8107,30.05,1002.65283,28.759064,0.0,0.0,0.0,9.95,0.0,0.0, +2024-02-17 18:00:00,7.256721,101.929306,34.4,1002.1708,14.288686,0.0,0.0,0.0,3.35,0.0,0.0, +2024-02-17 19:00:00,7.915807,93.621414,34.5,1002.0744,13.52273,0.0,0.0,0.0,2.65,0.0,0.0, +2024-02-17 20:00:00,7.8,90.0,33.35,1001.9454,14.47087,0.0,0.0,0.0,2.7,0.0,0.0, +2024-02-17 21:00:00,7.8160095,86.33228,33.15,1002.03955,14.530705,0.0,0.0,0.0,2.6,0.0,0.0, +2024-02-17 22:00:00,7.6118326,80.166504,32.85,1002.23004,14.312371,0.0,0.0,0.0,2.15,0.0,0.0, +2024-02-17 23:00:00,8.381527,72.64589,33.8,1002.3538,13.329939,50.0,239.33585,22.0,1.9,0.0,0.0, +2024-02-18 00:00:00,7.8924017,67.65931,36.25,1002.5156,12.017317,254.0,624.88995,67.0,2.35,0.0,0.0, +2024-02-18 01:00:00,8.21523,58.43824,39.6,1002.4015,10.567168,488.0,781.1908,91.0,3.1,0.0,0.0, +2024-02-18 02:00:00,8.438602,49.325157,42.6,1002.2767,9.140417,705.0,876.3821,101.0,3.3,0.0,0.0, +2024-02-18 03:00:00,9.183136,38.367523,45.0,1001.83856,7.8418226,876.0,921.7963,111.0,2.9,0.0,0.0, +2024-02-18 04:00:00,8.184132,26.878069,46.85,1001.0887,6.834411,986.0,935.14935,125.0,2.3,0.0,0.0, +2024-02-18 05:00:00,5.6293874,12.308005,47.9,1000.4187,6.2749066,994.0,805.93176,224.0,1.85,0.0,0.0, +2024-02-18 06:00:00,4.1,12.680387,48.75,999.7437,5.883867,947.0,721.30585,275.0,1.55,0.0,0.0, +2024-02-18 07:00:00,5.9908266,255.49979,39.15,999.8103,20.199783,571.0,390.1303,239.0,12.25,0.0,0.0, +2024-02-18 08:00:00,2.9832869,193.57045,35.8,999.82544,25.796824,355.0,162.73506,238.0,13.2,0.0,0.0, +2024-02-18 09:00:00,2.7,180.0,38.35,1000.18744,17.806,339.0,304.85715,173.0,9.7,0.0,0.0, +2024-02-18 10:00:00,3.1064448,213.17853,36.4,1000.93225,23.224154,193.0,173.76097,134.0,12.1,0.0,0.0, +2024-02-18 11:00:00,3.275668,192.33908,34.0,1001.2678,26.175364,65.0,181.50813,40.0,11.9,0.0,0.0, +2024-02-18 12:00:00,4.3324356,161.14674,31.85,1001.8071,29.637667,0.0,0.0,0.0,11.95,0.0,0.0, +2024-02-18 13:00:00,2.6172504,173.41815,32.9,1001.8345,20.867523,0.0,0.0,0.0,7.6,0.0,0.0, +2024-02-18 14:00:00,2.209072,174.80566,31.35,1001.7943,23.171312,0.0,0.0,0.0,7.85,0.0,0.0, +2024-02-18 15:00:00,3.001666,150.01845,29.45,1001.4467,25.660696,0.0,0.0,0.0,7.75,0.0,0.0, +2024-02-18 16:00:00,1.8357561,209.35765,30.55,1001.37646,25.347586,0.0,0.0,0.0,8.5,0.0,0.0, +2024-02-18 17:00:00,2.2203603,215.83774,27.05,1000.6882,42.571884,0.0,0.0,0.0,13.25,0.0,0.0, +2024-02-18 18:00:00,1.9924859,107.52566,26.25,1000.36896,43.7601,0.0,0.0,0.0,12.95,0.0,0.0, +2024-02-18 19:00:00,2.0024984,92.86235,26.05,999.96686,39.463066,0.0,0.0,0.0,11.2,0.0,0.0, +2024-02-18 20:00:00,2.302173,87.5105,27.4,1000.1025,27.653131,0.0,0.0,0.0,7.1,0.0,0.0, +2024-02-18 21:00:00,4.0249224,63.435013,28.6,1000.33295,20.58044,0.0,0.0,0.0,3.85,0.0,0.0, +2024-02-18 22:00:00,5.4451814,45.74398,32.1,1000.9209,15.037841,0.0,0.0,0.0,2.25,0.0,0.0, +2024-02-18 23:00:00,5.8137765,40.814987,33.65,1001.7549,13.110006,48.0,207.2703,24.0,1.55,0.0,0.0, +2024-02-19 00:00:00,5.728001,45.707233,36.85,1002.53107,10.749589,250.0,602.87085,71.0,1.25,0.0,0.0, +2024-02-19 01:00:00,7.072482,33.465405,40.8,1002.431,8.471664,486.0,774.55286,94.0,0.9,0.0,0.0, +2024-02-19 02:00:00,7.915807,26.24129,43.05,1002.3869,6.897979,692.0,819.16583,129.0,-0.3,0.0,0.0, +2024-02-19 03:00:00,8.132035,16.429382,45.7,1001.8553,5.7550826,870.0,885.14734,137.0,-0.9,0.0,0.0, +2024-02-19 04:00:00,6.6,360.0,47.1,1000.8961,5.377108,986.0,929.30585,132.0,-0.85,0.0,0.0, +2024-02-19 05:00:00,4.365776,290.0953,44.95,1000.15027,7.669346,1033.0,954.23517,123.0,2.55,0.0,0.0, +2024-02-19 06:00:00,6.8308125,252.09546,39.6,999.9208,17.04146,1000.0,929.26587,136.0,10.05,0.0,0.0, +2024-02-19 07:00:00,6.0728908,252.75845,37.2,999.66235,22.52404,880.0,872.84534,139.0,12.3,0.0,0.0, +2024-02-19 08:00:00,3.405877,229.76372,34.75,999.89795,32.963337,749.0,890.2135,111.0,16.1,0.0,0.0, +2024-02-19 09:00:00,1.6643317,212.73521,33.2,999.95734,33.71304,529.0,802.62634,94.0,15.1,0.0,0.0, +2024-02-19 10:00:00,2.720294,197.10281,33.3,1000.1583,34.506588,291.0,629.6223,79.0,15.55,0.0,0.0, +2024-02-19 11:00:00,1.5264337,148.39255,32.65,1001.03455,33.34577,77.0,322.8732,33.0,14.45,0.0,0.0, +2024-02-19 12:00:00,1.5297059,191.30989,30.9,1001.0879,36.117764,0.0,0.0,0.0,14.15,0.0,0.0, +2024-02-19 13:00:00,0.8544004,290.55612,30.95,1001.78394,33.747944,0.0,0.0,0.0,13.15,0.0,0.0, +2024-02-19 14:00:00,1.4142135,278.13,28.25,1001.91064,40.470867,0.0,0.0,0.0,13.55,0.0,0.0, +2024-02-19 15:00:00,1.7262677,259.9921,28.2,1001.61176,41.792614,0.0,0.0,0.0,14.0,0.0,0.0, +2024-02-19 16:00:00,0.56568545,44.999897,27.95,1001.7044,41.58818,0.0,0.0,0.0,13.7,0.0,0.0, +2024-02-19 17:00:00,0.60827625,80.53775,27.7,1001.39984,40.981354,0.0,0.0,0.0,13.25,0.0,0.0, +2024-02-19 18:00:00,0.72801095,105.945465,27.0,1000.8854,42.976322,0.0,0.0,0.0,13.35,0.0,0.0, +2024-02-19 19:00:00,0.98488575,66.037506,26.85,1000.5837,41.418438,0.0,0.0,0.0,12.65,0.0,0.0, +2024-02-19 20:00:00,2.4738634,75.96373,24.25,1000.61224,42.21222,0.0,0.0,0.0,10.6,0.0,0.0, +2024-02-19 21:00:00,2.4738634,75.96373,24.1,1000.50903,39.307976,0.0,0.0,0.0,9.4,0.0,0.0, +2024-02-19 22:00:00,2.408319,85.23644,24.95,1000.5322,33.412422,0.0,0.0,0.0,7.75,0.0,0.0, +2024-02-19 23:00:00,2.1023796,87.27374,27.85,1000.7096,25.6712,47.0,226.88062,21.0,6.4,0.0,0.0, +2024-02-20 00:00:00,1.2041595,228.36655,31.5,1001.4012,21.902834,247.0,611.0305,67.0,7.15,0.0,0.0, +2024-02-20 01:00:00,1.3892444,210.25635,33.65,1001.2588,25.233414,486.0,789.6829,88.0,11.05,0.0,0.0, +2024-02-20 02:00:00,2.4207437,218.2902,35.7,1000.91437,27.502388,702.0,872.53156,104.0,14.1,0.0,0.0, +2024-02-20 03:00:00,3.8183768,224.9999,35.45,1000.70953,33.89756,875.0,922.1851,113.0,17.15,0.0,0.0, +2024-02-20 04:00:00,5.2430906,214.90257,34.75,999.9972,33.706528,988.0,952.9107,114.0,16.45,0.0,0.0, +2024-02-20 05:00:00,5.4120235,207.51192,34.35,999.78845,30.61204,1030.0,960.25726,116.0,14.6,0.0,0.0, +2024-02-20 06:00:00,5.011986,208.61037,33.3,999.56305,36.78032,1002.0,957.0629,114.0,16.55,0.0,0.0, +2024-02-20 07:00:00,6.0083275,198.43504,32.25,999.3376,41.440342,902.0,936.42004,109.0,17.5,0.0,0.0, +2024-02-20 08:00:00,5.6515484,193.29858,31.95,999.2306,38.19993,739.0,888.9259,104.0,15.95,0.0,0.0, +2024-02-20 09:00:00,4.237924,199.29015,30.85,999.2017,44.30782,508.0,708.2393,126.0,17.3,0.0,0.0, +2024-02-20 10:00:00,3.748333,189.21095,30.25,999.48364,41.818676,276.0,533.22485,98.0,15.85,0.0,0.0, +2024-02-20 11:00:00,3.667424,191.0035,28.75,999.6426,45.161976,68.0,192.8915,42.0,15.7,0.0,0.0, +2024-02-20 12:00:00,3.5341196,205.1148,27.05,1000.29144,54.003746,0.0,0.0,0.0,16.95,0.0,0.0, +2024-02-20 13:00:00,2.1023796,205.34613,25.2,1001.7291,64.37387,0.0,0.0,0.0,18.0,0.0,0.0, +2024-02-20 14:00:00,1.9697715,203.9625,24.25,1001.9017,72.53638,0.0,0.0,0.0,19.0,0.0,0.0, +2024-02-20 15:00:00,1.8027756,199.44012,23.65,1001.7859,78.79094,0.0,0.0,0.0,19.75,0.0,0.0, +2024-02-20 16:00:00,1.6492423,194.03627,23.0,1001.47034,83.48176,0.0,0.0,0.0,20.05,0.0,0.0, +2024-02-20 17:00:00,2.0808651,144.78232,21.9,1001.2416,88.97757,0.0,0.0,0.0,20.0,0.0,0.0, +2024-02-20 18:00:00,2.4738634,165.96373,21.5,1001.3297,88.39515,0.0,0.0,0.0,19.5,0.0,0.0, +2024-02-20 19:00:00,1.9849433,130.91429,21.5,1000.53625,86.76054,0.0,0.0,0.0,19.2,0.0,0.0, +2024-02-20 20:00:00,2.2472203,110.854546,21.3,1000.3322,79.19999,0.0,0.0,0.0,17.55,0.0,0.0, +2024-02-20 21:00:00,2.9206164,141.95291,20.9,1000.7177,71.93783,0.0,0.0,0.0,15.65,0.0,0.0, +2024-02-20 22:00:00,2.8017852,182.04536,20.35,1001.4957,78.56466,0.0,0.0,0.0,16.5,0.0,0.0, +2024-02-20 23:00:00,1.3,180.0,23.0,1002.56134,76.27881,45.0,220.43422,20.0,18.6,0.0,0.0, +2024-02-21 00:00:00,1.104536,174.80566,25.75,1003.1329,66.537964,246.0,615.8747,66.0,19.05,0.0,0.0, +2024-02-21 01:00:00,3.275668,211.26367,29.0,1003.31964,42.013218,482.0,787.00525,87.0,14.8,0.0,0.0, +2024-02-21 02:00:00,3.9115214,212.47118,29.5,1003.72955,43.106953,695.0,872.07153,99.0,15.65,0.0,0.0, +2024-02-21 03:00:00,5.2430906,214.90257,29.55,1003.83014,45.812862,864.0,916.95807,108.0,16.65,0.0,0.0, +2024-02-21 04:00:00,5.866856,209.62366,29.5,1003.432,49.879494,973.0,938.40546,114.0,17.95,0.0,0.0, +2024-02-21 05:00:00,6.307139,205.34613,29.3,1003.129,54.73482,1013.0,946.34357,114.0,19.25,0.0,0.0, +2024-02-21 06:00:00,6.462198,201.80147,28.95,1002.6239,59.61202,984.0,940.7444,113.0,20.3,0.0,0.0, +2024-02-21 07:00:00,6.5787535,199.53674,28.4,1002.41077,63.082226,885.0,918.6881,109.0,20.7,0.0,0.0, +2024-02-21 08:00:00,6.2625875,199.59238,27.65,1002.29144,66.71769,725.0,876.4625,101.0,20.9,0.0,0.0, +2024-02-21 09:00:00,6.0440054,196.33612,26.5,1002.459,72.482414,518.0,797.4564,90.0,21.15,0.0,0.0, +2024-02-21 10:00:00,5.772348,194.03627,25.3,1002.92224,79.02322,284.0,637.70233,73.0,21.4,0.0,0.0, +2024-02-21 11:00:00,5.557877,188.2758,24.1,1003.38544,85.94359,71.0,315.1264,29.0,21.6,0.0,0.0, +2024-02-21 12:00:00,5.414795,184.23631,23.75,1004.07,87.50259,0.0,0.0,0.0,21.55,0.0,0.0, +2024-02-21 13:00:00,6.000833,180.95482,23.75,1004.8635,81.28076,0.0,0.0,0.0,20.35,0.0,0.1, +2024-02-21 14:00:00,6.5069194,177.35751,23.65,1005.15826,84.85073,0.0,0.0,0.0,20.95,0.0,0.1, +2024-02-21 15:00:00,6.9231496,169.17703,23.55,1005.2548,81.25533,0.0,0.0,0.0,20.15,0.0,0.0, +2024-02-21 16:00:00,7.3979726,166.71512,23.15,1005.04517,78.71983,0.0,0.0,0.0,19.25,0.0,0.0, +2024-02-21 17:00:00,7.8262377,169.6952,22.8,1004.8373,76.48674,0.0,0.0,0.0,18.45,0.0,0.0, +2024-02-21 18:00:00,8.104937,170.77019,22.45,1004.6292,74.29833,0.0,0.0,0.0,17.65,0.0,0.0, +2024-02-21 19:00:00,7.9246454,169.82455,22.15,1004.5214,72.62204,0.0,0.0,0.0,17.0,0.0,0.0, +2024-02-21 20:00:00,7.3756356,167.4712,21.5,1004.5035,73.668816,0.0,0.0,0.0,16.6,0.0,0.0, +2024-02-21 21:00:00,6.9857,166.75948,21.05,1004.49054,75.48949,0.0,0.0,0.0,16.55,0.0,0.0, +2024-02-21 22:00:00,6.8308125,162.09546,20.8,1004.682,75.4489,0.0,0.0,0.0,16.3,0.0,0.0, +2024-02-21 23:00:00,6.6241984,151.11351,21.15,1005.2868,72.21339,42.0,196.01791,20.0,15.95,0.0,0.0, +2024-02-22 00:00:00,6.0901566,150.4886,22.55,1005.8222,63.799847,238.0,582.83026,69.0,15.35,0.0,0.0, +2024-02-22 01:00:00,5.056679,155.4623,24.6,1005.482,55.845207,479.0,790.3012,84.0,15.2,0.0,0.0, +2024-02-22 02:00:00,4.3324356,161.14674,27.25,1004.85986,47.429314,689.0,865.74963,99.0,15.1,0.0,0.0, +2024-02-22 03:00:00,4.7095647,176.34785,29.55,1004.22687,41.094448,857.0,905.6511,112.0,14.95,0.0,0.0, +2024-02-22 04:00:00,6.3788714,193.60056,29.95,1003.6424,42.545246,968.0,932.63074,116.0,15.85,0.0,0.0, +2024-02-22 05:00:00,7.558439,197.71588,28.9,1003.2175,48.634224,1008.0,936.6338,120.0,17.0,0.0,0.0, +2024-02-22 06:00:00,8.228001,196.23242,28.0,1002.6976,50.12053,974.0,918.99176,125.0,16.65,0.0,0.0, +2024-02-22 07:00:00,7.746612,191.16484,28.1,1002.30347,49.51362,877.0,906.8561,113.0,16.55,0.0,0.0, +2024-02-22 08:00:00,7.7103825,189.70659,28.15,1001.80896,52.266087,718.0,866.80145,103.0,17.45,0.0,0.0, +2024-02-22 09:00:00,7.496666,189.21095,26.7,1001.77,60.212315,508.0,773.4213,95.0,18.35,0.0,0.0, +2024-02-22 10:00:00,6.4070277,182.68372,25.3,1001.63275,65.82479,277.0,616.079,75.0,18.45,0.0,0.0, +2024-02-22 11:00:00,5.234501,186.58185,24.4,1001.80664,71.66341,67.0,288.44238,29.0,18.95,0.0,0.0, +2024-02-22 12:00:00,5.0,180.0,24.05,1001.89606,72.049416,0.0,0.0,0.0,18.7,0.0,0.0, +2024-02-22 13:00:00,4.7010636,178.78116,23.8,1002.1867,73.36917,0.0,0.0,0.0,18.75,0.0,0.0, +2024-02-22 14:00:00,3.0413814,170.53775,23.6,1001.8838,74.4903,0.0,0.0,0.0,18.8,0.0,0.0, +2024-02-22 15:00:00,2.3345237,133.26433,22.6,1001.3602,74.79271,0.0,0.0,0.0,17.9,0.0,0.0, +2024-02-22 16:00:00,2.2022715,140.52757,23.6,1000.59436,61.82177,0.0,0.0,0.0,15.85,0.0,0.0, +2024-02-22 17:00:00,2.6870058,135.0001,25.65,999.9558,43.025196,0.0,0.0,0.0,12.15,0.0,0.0, +2024-02-22 18:00:00,2.7018511,128.991,26.25,999.27783,36.856186,0.0,0.0,0.0,10.35,0.0,0.0, +2024-02-22 19:00:00,2.6172504,133.45189,26.35,998.7847,36.761604,0.0,0.0,0.0,10.4,0.0,0.0, +2024-02-22 20:00:00,2.385372,123.02387,25.95,998.5753,37.515877,0.0,0.0,0.0,10.35,0.0,0.0, +2024-02-22 21:00:00,2.6683328,102.99462,26.65,998.5945,35.164886,0.0,0.0,0.0,10.0,0.0,0.0, +2024-02-22 22:00:00,3.733631,82.30404,29.2,998.76166,29.502357,0.0,0.0,0.0,9.6,0.0,0.0, +2024-02-22 23:00:00,5.4708314,71.89614,31.35,999.21497,26.080318,41.0,162.06853,23.0,9.6,0.0,0.0, +2024-02-23 00:00:00,5.3758717,71.564964,34.0,999.5811,22.918913,227.0,510.99402,80.0,9.9,0.0,0.0, +2024-02-23 01:00:00,3.7854989,77.79955,36.05,999.5341,21.082966,469.0,763.48346,89.0,10.35,0.0,0.0, +2024-02-23 02:00:00,2.624881,72.25524,38.65,999.50006,18.543741,682.0,856.4614,100.0,10.55,0.0,0.0, +2024-02-23 03:00:00,0.28284273,224.9999,40.1,999.04,17.852234,842.0,861.4229,135.0,11.15,0.0,0.0, +2024-02-23 04:00:00,4.4553337,225.90929,39.4,998.3281,23.679766,936.0,830.3461,179.0,14.9,0.0,0.0, +2024-02-23 05:00:00,5.879626,221.55252,37.85,997.59503,27.45218,998.0,929.05206,119.0,15.9,0.0,0.0, +2024-02-23 06:00:00,5.860034,216.67444,35.95,997.05115,30.94646,967.0,927.5865,112.0,16.15,0.0,0.0, +2024-02-23 07:00:00,4.8414874,218.2902,35.3,996.7372,34.50548,856.0,890.2862,108.0,17.3,0.0,0.0, +2024-02-23 08:00:00,2.9546573,246.0375,33.65,997.38947,38.66687,679.0,753.9227,146.0,17.65,0.0,0.0, +2024-02-23 09:00:00,2.5317976,260.9098,32.65,997.6614,39.25449,382.0,483.82605,125.0,17.0,0.0,0.0, +2024-02-23 10:00:00,2.5019991,267.70944,31.35,998.5205,43.472862,257.0,526.49396,86.0,17.45,0.0,0.0, +2024-02-23 11:00:00,2.4839485,319.89914,30.65,999.792,43.83533,61.0,261.22598,27.0,16.95,0.0,0.0, +2024-02-23 12:00:00,2.3,270.0,29.55,1000.06036,50.36491,0.0,0.0,0.0,18.15,0.0,0.0, +2024-02-23 13:00:00,1.3928387,291.03757,27.85,999.61847,55.410645,0.0,0.0,0.0,18.1,0.0,0.0, +2024-02-23 14:00:00,1.0,53.13002,27.55,1000.50336,57.28234,0.0,0.0,0.0,18.35,0.0,0.0, +2024-02-23 15:00:00,1.5264337,238.39255,26.9,1000.3866,62.559223,0.0,0.0,0.0,19.15,0.0,0.0, +2024-02-23 16:00:00,2.7730849,334.35904,26.55,1001.3691,63.266968,0.0,0.0,0.0,19.0,0.0,0.0, +2024-02-23 17:00:00,5.1224995,308.65982,27.8,1001.8987,54.534042,0.0,0.0,0.0,17.8,0.0,0.0, +2024-02-23 18:00:00,4.219004,5.4402504,27.9,1001.2068,52.86626,0.0,0.0,0.0,17.4,0.0,0.0, +2024-02-23 19:00:00,1.118034,10.304792,26.1,1000.6625,76.0564,0.0,0.0,0.0,21.55,0.0,0.5, +2024-02-23 20:00:00,0.3,180.0,25.35,1000.54285,81.980934,0.0,0.0,0.0,22.05,0.0,1.0, +2024-02-23 21:00:00,2.0,180.0,24.6,1000.12573,90.82313,0.0,0.0,0.0,23.0,0.0,1.1, +2024-02-23 22:00:00,2.7856774,201.03758,23.95,1000.8024,92.1699,0.0,0.0,0.0,22.6,0.0,0.4, +2024-02-23 23:00:00,2.4515302,191.76826,23.7,1001.7874,89.9376,20.0,0.0,20.0,21.95,0.0,0.0, +2024-02-24 00:00:00,2.6019223,182.20255,24.25,1002.3976,85.69603,62.0,7.007781,60.0,21.7,0.0,0.0, +2024-02-24 01:00:00,2.0615528,230.90614,24.6,1003.00226,85.46984,145.0,18.158764,136.0,22.0,0.0,0.0, +2024-02-24 02:00:00,2.2022715,219.47243,26.3,1003.44525,74.020775,375.0,153.48805,271.0,21.3,0.0,0.4, +2024-02-24 03:00:00,1.8973665,198.43504,26.4,1003.6465,72.6878,416.0,80.602844,350.0,21.1,0.0,0.7, +2024-02-24 04:00:00,2.9068882,206.56499,26.1,1003.14233,73.30873,398.0,56.05964,347.0,20.95,0.0,0.7, +2024-02-24 05:00:00,3.1384711,210.65059,25.9,1002.8394,74.868286,409.0,62.492443,350.0,21.1,0.0,0.4, +2024-02-24 06:00:00,4.5891175,191.30989,23.85,1002.18823,91.88469,235.0,6.52472,229.0,22.45,0.0,1.7, +2024-02-24 07:00:00,4.86621,170.53775,23.7,1001.6883,92.15578,231.0,9.548818,223.0,22.35,0.0,1.6, +2024-02-24 08:00:00,6.332456,164.4274,23.4,1000.4895,91.299675,159.0,2.8395517,157.0,21.9,0.0,1.3, +2024-02-24 09:00:00,5.59017,153.43501,24.8,1000.82574,80.421486,292.0,189.29616,192.0,21.2,0.0,0.1, +2024-02-24 10:00:00,5.283938,150.5242,24.1,1000.8066,84.379196,61.0,0.0,61.0,21.3,0.0,0.0, +2024-02-24 11:00:00,4.5617976,153.9967,23.95,1001.2984,84.88217,25.0,15.562068,23.0,21.25,0.0,0.0, +2024-02-24 12:00:00,5.4037023,141.009,23.55,1001.089,91.03114,0.0,0.0,0.0,22.0,0.0,0.6, +2024-02-24 13:00:00,4.6690474,133.26433,24.15,1001.1053,91.623924,0.0,0.0,0.0,22.7,0.0,0.1, +2024-02-24 14:00:00,5.7454333,121.47678,24.9,1000.9274,85.7605,0.0,0.0,0.0,22.35,0.0,0.0, +2024-02-24 15:00:00,5.5946403,114.27443,24.85,1000.8269,84.4598,0.0,0.0,0.0,22.05,0.0,0.2, +2024-02-24 16:00:00,4.792703,113.35559,24.35,1000.81323,89.16798,0.0,0.0,0.0,22.45,0.0,0.6, +2024-02-24 17:00:00,3.905125,129.80553,24.1,1000.90576,87.800766,0.0,0.0,0.0,21.95,0.0,1.0, +2024-02-24 18:00:00,3.9597979,135.0001,23.8,1000.5005,87.77497,0.0,0.0,0.0,21.65,0.0,1.2, +2024-02-24 19:00:00,5.517246,136.46873,23.6,999.9,85.10667,0.0,0.0,0.0,20.95,0.0,0.5, +2024-02-24 20:00:00,4.6669044,135.0001,23.55,999.6012,82.52008,0.0,0.0,0.0,20.4,0.0,0.0, +2024-02-24 21:00:00,2.996665,154.2901,23.5,1000.9883,84.05503,0.0,0.0,0.0,20.65,0.0,0.6, +2024-02-24 22:00:00,3.8209944,137.12111,23.35,1000.98425,85.08076,0.0,0.0,0.0,20.7,0.0,0.0, +2024-02-24 23:00:00,4.4418464,121.18491,23.85,1001.09717,82.55593,21.0,0.0,21.0,20.7,0.0,0.0, +2024-02-25 00:00:00,5.6320515,106.50443,25.9,1001.35156,71.2692,126.0,144.80965,85.0,20.3,0.0,0.0, +2024-02-25 01:00:00,4.6572523,104.93147,28.15,1001.0153,69.52589,446.0,719.2952,91.0,22.05,0.0,0.0, +2024-02-25 02:00:00,6.5924196,80.39487,29.6,1001.0537,62.19135,565.0,596.5069,162.0,21.6,0.0,0.0, +2024-02-25 03:00:00,7.106335,76.15928,30.7,1000.5868,57.675842,752.0,694.09235,185.0,21.4,0.0,0.0, +2024-02-25 04:00:00,6.1983867,79.77789,31.7,999.81915,53.325428,900.0,808.56793,166.0,21.05,0.0,0.0, +2024-02-25 05:00:00,5.2392745,76.75947,32.45,999.1442,49.86713,904.0,779.1583,170.0,20.65,0.0,0.1, +2024-02-25 06:00:00,4.401136,68.68202,33.3,998.47174,46.236294,877.0,749.9961,189.0,20.2,0.0,0.1, +2024-02-25 07:00:00,1.9235383,81.02746,32.5,997.8558,48.21543,679.0,518.3545,246.0,20.15,0.0,0.0, +2024-02-25 08:00:00,0.5,90.0,31.05,997.71893,56.882053,396.0,213.79367,246.0,21.5,0.0,0.0, +2024-02-25 09:00:00,1.0440307,106.699326,29.85,997.9849,64.95664,188.0,116.13151,127.0,22.55,0.0,0.0, +2024-02-25 10:00:00,1.603122,86.423744,29.75,998.47845,68.36708,184.0,307.87573,86.0,23.3,0.0,0.2, +2024-02-25 11:00:00,1.9104973,96.00892,28.45,999.23755,71.94431,53.0,228.65015,24.0,22.9,0.0,0.0, +2024-02-25 12:00:00,2.8160257,73.49557,28.1,999.92267,69.09367,0.0,0.0,0.0,21.9,0.0,0.0, +2024-02-25 13:00:00,3.6055512,93.17977,26.5,1001.0703,72.92847,0.0,0.0,0.0,21.25,0.0,0.0, +2024-02-25 14:00:00,3.622154,96.340096,26.05,1001.058,73.979,0.0,0.0,0.0,21.05,0.0,0.0, +2024-02-25 15:00:00,3.5510561,99.72751,25.65,1000.94775,74.82758,0.0,0.0,0.0,20.85,0.0,0.0, +2024-02-25 16:00:00,3.4234486,96.70974,25.45,1000.84326,75.256966,0.0,0.0,0.0,20.75,0.0,0.0, +2024-02-25 17:00:00,3.1256998,97.35229,25.35,1000.7413,75.24087,0.0,0.0,0.0,20.65,0.0,0.0, +2024-02-25 18:00:00,2.745906,100.491425,25.25,1000.6395,74.53191,0.0,0.0,0.0,20.4,0.0,0.0, +2024-02-25 19:00:00,2.3537204,102.26476,25.2,1000.34045,72.92834,0.0,0.0,0.0,20.0,0.0,0.0, +2024-02-25 20:00:00,2.1023796,115.34614,25.3,1000.64087,72.04801,0.0,0.0,0.0,19.9,0.0,0.0, +2024-02-25 21:00:00,1.9313208,111.25058,25.1,1000.6355,72.460464,0.0,0.0,0.0,19.8,0.0,0.0, +2024-02-25 22:00:00,1.5,126.86998,24.55,1001.01715,74.64741,0.0,0.0,0.0,19.75,0.0,0.0, +2024-02-25 23:00:00,2.0,126.86999,25.1,1001.8258,73.36395,32.0,130.11658,18.0,20.0,0.0,0.0, +2024-02-26 00:00:00,1.8248286,99.46225,26.4,1002.2578,68.13223,211.0,480.64407,76.0,20.05,0.0,0.0, +2024-02-26 01:00:00,0.5,126.86999,27.85,1002.4952,63.745403,452.0,746.77673,85.0,20.35,0.0,0.0, +2024-02-26 02:00:00,1.6124516,240.2552,28.95,1002.52466,61.85758,661.0,832.8301,100.0,20.9,0.0,0.0, +2024-02-26 03:00:00,3.130495,243.43501,29.2,1002.2337,63.643723,829.0,887.19446,106.0,21.6,0.0,0.0, +2024-02-26 04:00:00,4.159327,242.81897,29.05,1001.93195,63.806587,934.0,902.0005,117.0,21.5,0.0,0.0, +2024-02-26 05:00:00,4.429447,241.69934,28.55,1001.7204,62.727604,927.0,791.56537,183.0,20.75,0.0,0.0, +2024-02-26 06:00:00,4.8259716,235.9806,28.55,1001.7204,63.69951,954.0,924.5663,108.0,21.0,0.0,0.0, +2024-02-26 07:00:00,5.658622,226.43204,27.35,1001.6883,68.73896,858.0,911.3958,99.0,21.1,0.0,0.0, +2024-02-26 08:00:00,6.0307546,220.29207,26.8,1001.5741,71.21303,691.0,847.1711,99.0,21.15,0.0,0.0, +2024-02-26 09:00:00,5.5946403,208.85556,25.8,1001.94385,75.77681,487.0,766.03735,87.0,21.2,0.0,0.0, +2024-02-26 10:00:00,5.597321,198.75874,24.65,1002.4086,82.14643,259.0,609.6571,67.0,21.4,0.0,0.0, +2024-02-26 11:00:00,5.0990195,191.30989,23.7,1002.9777,87.230774,56.0,247.804,25.0,21.45,0.0,0.0, +2024-02-26 12:00:00,4.8373547,187.12492,23.25,1003.3618,89.356384,0.0,0.0,0.0,21.4,0.0,0.0, +2024-02-26 13:00:00,4.704253,182.4366,22.85,1004.0451,89.05197,0.0,0.0,0.0,20.95,0.0,0.0, +2024-02-26 14:00:00,5.1,180.0,22.65,1004.2378,89.58596,0.0,0.0,0.0,20.85,0.0,0.0, +2024-02-26 15:00:00,5.6008925,178.97699,22.45,1004.1333,90.40211,0.0,0.0,0.0,20.8,0.0,0.0, +2024-02-26 16:00:00,6.512296,176.47862,22.4,1004.1317,88.742676,0.0,0.0,0.0,20.45,0.0,0.0, +2024-02-26 17:00:00,7.244308,173.6599,22.2,1004.1264,87.365204,0.0,0.0,0.0,20.0,0.0,0.0, +2024-02-26 18:00:00,7.5504966,168.54128,22.2,1004.02716,86.02215,0.0,0.0,0.0,19.75,0.0,0.0, +2024-02-26 19:00:00,6.992138,163.37917,22.25,1004.0284,82.87835,0.0,0.0,0.0,19.2,0.0,0.0, +2024-02-26 20:00:00,6.6850576,158.03938,21.9,1003.9195,80.53737,0.0,0.0,0.0,18.4,0.0,0.0, +2024-02-26 21:00:00,5.59017,153.43501,21.2,1004.09827,81.97757,0.0,0.0,0.0,18.0,0.0,0.0, +2024-02-26 22:00:00,4.9648767,152.4028,20.65,1004.3804,82.42767,0.0,0.0,0.0,17.55,0.0,0.0, +2024-02-26 23:00:00,5.3665633,153.43501,21.0,1004.9852,79.65957,34.0,150.30226,18.0,17.35,0.0,0.0, +2024-02-27 00:00:00,8.005623,159.52763,22.45,1005.42267,72.216995,209.0,502.46735,69.0,17.2,0.0,0.0, +2024-02-27 01:00:00,8.127115,161.34201,23.05,1005.3402,71.418365,321.0,265.65808,191.0,17.6,0.0,0.0, +2024-02-27 02:00:00,7.7620873,165.06853,23.7,1005.35815,66.32533,448.0,263.55038,271.0,17.05,0.0,0.0, +2024-02-27 03:00:00,6.8622155,161.30092,25.4,1004.80975,59.722324,693.0,519.10876,271.0,17.0,0.0,0.0, +2024-02-27 04:00:00,5.7870545,161.87805,27.2,1004.1642,55.250366,784.0,418.27805,406.0,17.45,0.0,0.0, +2024-02-27 05:00:00,4.816638,184.76355,29.25,1003.4255,50.44559,814.0,505.4826,340.0,17.9,0.0,0.0, +2024-02-27 06:00:00,8.354639,191.0409,24.2,1003.4872,66.219315,671.0,290.3671,406.0,17.5,0.0,0.0, +2024-02-27 07:00:00,7.6006575,179.24617,25.65,1002.9316,59.780533,849.0,890.189,110.0,17.25,0.0,0.0, +2024-02-27 08:00:00,7.6164293,183.76396,25.4,1002.42914,60.101696,692.0,852.13947,99.0,17.1,0.0,0.0, +2024-02-27 09:00:00,7.5006666,179.23611,24.75,1002.41113,61.493458,483.0,759.1787,89.0,16.85,0.0,0.0, +2024-02-27 10:00:00,7.7162166,176.28479,23.15,1002.4664,67.699524,258.0,610.0167,68.0,16.85,0.0,0.0, +2024-02-27 11:00:00,7.119691,169.47926,21.5,1002.71826,70.90677,55.0,251.3707,24.0,16.0,0.0,0.0, +2024-02-27 12:00:00,6.4132676,169.21574,21.25,1003.1078,73.158394,0.0,0.0,0.0,16.25,0.0,0.0, +2024-02-27 13:00:00,5.824946,168.11136,21.3,1003.1093,74.10436,0.0,0.0,0.0,16.5,0.0,0.0, +2024-02-27 14:00:00,5.7974133,165.00487,21.05,1003.10205,76.454605,0.0,0.0,0.0,16.75,0.0,0.0, +2024-02-27 15:00:00,5.0289164,162.64589,20.75,1002.69714,80.38418,0.0,0.0,0.0,17.25,0.0,0.0, +2024-02-27 16:00:00,4.7434163,161.56496,20.5,1002.2932,82.931305,0.0,0.0,0.0,17.5,0.0,0.0, +2024-02-27 17:00:00,4.031129,156.61476,20.0,1001.7832,82.3484,0.0,0.0,0.0,16.9,0.0,0.0, +2024-02-27 18:00:00,3.448188,150.46132,19.55,1001.6715,78.1976,0.0,0.0,0.0,15.65,0.0,0.0, +2024-02-27 19:00:00,3.0805843,144.24602,19.1,1001.65857,73.25192,0.0,0.0,0.0,14.2,0.0,0.0, +2024-02-27 20:00:00,3.1622775,145.30478,18.85,1001.45337,67.70145,0.0,0.0,0.0,12.75,0.0,0.0, +2024-02-27 21:00:00,3.0413814,136.33215,18.65,1001.4477,59.87812,0.0,0.0,0.0,10.7,0.0,0.0, +2024-02-27 22:00:00,2.8844411,123.690094,18.55,1001.54407,49.402027,0.0,0.0,0.0,7.75,0.0,0.0, +2024-02-27 23:00:00,3.0232434,124.21575,19.6,1002.1689,44.71926,36.0,180.41414,17.0,7.25,0.0,0.0, +2024-02-28 00:00:00,2.8178005,152.52565,22.1,1002.6358,41.466927,230.0,604.231,63.0,8.4,0.0,0.0, +2024-02-28 01:00:00,3.2280025,163.81073,24.65,1001.71436,40.397346,462.0,775.77905,84.0,10.3,0.0,0.0, +2024-02-28 02:00:00,3.8013155,181.5074,26.4,1001.76184,39.561234,677.0,864.7322,98.0,11.55,0.0,0.0, +2024-02-28 03:00:00,4.6872168,191.07016,27.4,1001.7888,41.706978,847.0,913.79614,106.0,13.25,0.0,0.0, +2024-02-28 04:00:00,5.4424257,200.4329,27.85,1001.5032,45.35362,957.0,938.3319,111.0,14.95,0.0,0.0, +2024-02-28 05:00:00,6.407808,202.9638,27.4,1001.29285,48.54688,998.0,944.98236,114.0,15.6,0.0,0.0, +2024-02-28 06:00:00,6.8007355,199.76726,27.0,1001.183,47.058086,966.0,939.3724,111.0,14.75,0.0,0.0, +2024-02-28 07:00:00,7.088018,196.38962,26.45,1000.9694,50.1954,868.0,919.687,107.0,15.25,0.0,0.0, +2024-02-28 08:00:00,7.1589108,192.09474,25.9,1000.7564,50.70004,707.0,877.45544,99.0,14.9,0.0,0.0, +2024-02-28 09:00:00,7.045566,186.5197,25.2,1000.638,56.713478,497.0,796.9553,86.0,16.0,0.0,0.0, +2024-02-28 10:00:00,7.2,180.0,23.85,1000.89874,66.77722,263.0,636.5244,67.0,17.3,0.0,0.0, +2024-02-28 11:00:00,6.618912,175.66777,22.55,1001.35895,76.20821,55.0,255.12553,24.0,18.15,0.0,0.0, +2024-02-28 12:00:00,6.449806,172.87508,22.1,1001.644,76.85988,0.0,0.0,0.0,17.85,0.0,0.0, +2024-02-28 13:00:00,7.071068,171.86998,21.45,1002.02246,80.73102,0.0,0.0,0.0,18.0,0.0,0.0, +2024-02-28 14:00:00,6.8249536,169.0194,21.1,1002.0127,83.525,0.0,0.0,0.0,18.2,0.0,0.0, +2024-02-28 15:00:00,6.332456,164.4274,20.85,1001.8074,84.02285,0.0,0.0,0.0,18.05,0.0,0.0, +2024-02-28 16:00:00,5.7567353,162.824,20.55,1001.60065,83.72527,0.0,0.0,0.0,17.7,0.0,0.0, +2024-02-28 17:00:00,5.345091,162.58194,20.3,1001.29584,80.323746,0.0,0.0,0.0,16.8,0.0,0.0, +2024-02-28 18:00:00,4.9335585,162.29948,20.05,1001.2889,77.52575,0.0,0.0,0.0,16.0,0.0,0.0, +2024-02-28 19:00:00,4.7127485,162.71841,19.9,1001.08655,76.27339,0.0,0.0,0.0,15.6,0.0,0.0, +2024-02-28 20:00:00,4.4922156,163.17851,19.7,1001.0809,77.970024,0.0,0.0,0.0,15.75,0.0,0.0, +2024-02-28 21:00:00,4.3011627,162.40749,19.6,1001.1771,80.742424,0.0,0.0,0.0,16.2,0.0,0.0, +2024-02-28 22:00:00,4.4271884,161.56496,19.6,1001.2763,84.684296,0.0,0.0,0.0,16.95,0.0,0.0, +2024-02-28 23:00:00,4.6840153,163.8865,20.3,1001.79175,83.43304,34.0,163.1798,17.0,17.4,0.0,0.0, +2024-02-29 00:00:00,5.080354,169.79608,22.25,1001.94556,76.64162,223.0,583.6183,63.0,17.95,0.0,0.0, +2024-02-29 01:00:00,5.6142673,175.91446,23.95,1001.8935,70.248276,443.0,706.9998,100.0,18.2,0.0,0.0, +2024-02-29 02:00:00,5.2086463,183.3018,25.6,1001.7402,61.491463,662.0,837.42,103.0,17.65,0.0,0.0, +2024-02-29 03:00:00,5.7280016,196.22026,26.35,1001.3637,58.82137,835.0,901.28845,106.0,17.65,0.0,0.0, +2024-02-29 04:00:00,6.484597,199.83221,26.25,1000.9641,57.512184,944.0,927.2345,110.0,17.2,0.0,0.0, +2024-02-29 05:00:00,6.706713,200.05618,26.5,1000.6735,53.18356,986.0,936.60406,112.0,16.2,0.0,0.0, +2024-02-29 06:00:00,6.9892774,199.21277,26.35,1000.27264,53.485508,956.0,932.0682,110.0,16.15,0.0,0.0, +2024-02-29 07:00:00,7.212489,196.9276,25.9,999.9628,58.529755,856.0,908.2363,107.0,17.15,0.0,0.0, +2024-02-29 08:00:00,7.2532754,195.18588,25.2,999.94366,64.57648,694.0,863.95416,98.0,18.05,0.0,0.0, +2024-02-29 09:00:00,6.6490602,192.15492,24.3,999.9192,71.19911,486.0,778.742,87.0,18.75,0.0,0.0, +2024-02-29 10:00:00,6.067125,188.53069,23.2,1000.38495,77.02822,255.0,621.0921,66.0,18.95,0.0,0.0, +2024-02-29 11:00:00,5.261178,188.74608,22.0,1000.84766,83.62756,51.0,242.36026,22.0,19.1,0.0,0.0, +2024-02-29 12:00:00,5.3600373,188.58354,21.9,1001.1424,82.57865,0.0,0.0,0.0,18.8,0.0,0.0, +2024-02-29 13:00:00,4.924429,192.90741,21.75,1001.9318,82.30277,0.0,0.0,0.0,18.6,0.0,0.0, +2024-02-29 14:00:00,4.9819674,190.40765,21.65,1001.8298,83.06678,0.0,0.0,0.0,18.65,0.0,0.0, +2024-02-29 15:00:00,4.9365983,186.98096,21.55,1001.52936,83.05504,0.0,0.0,0.0,18.55,0.0,0.0, +2024-02-29 16:00:00,5.0039983,182.29056,21.45,1001.1298,82.78354,0.0,0.0,0.0,18.4,0.0,0.0, +2024-02-29 17:00:00,4.9010205,178.83089,21.4,1000.7318,82.777626,0.0,0.0,0.0,18.35,0.0,0.0, +2024-02-29 18:00:00,4.8,180.0,21.2,1000.4286,85.38793,0.0,0.0,0.0,18.65,0.0,0.0, +2024-02-29 19:00:00,4.7,180.0,21.0,1000.1255,88.35367,0.0,0.0,0.0,19.0,0.0,0.0, +2024-02-29 20:00:00,4.6010866,178.75467,20.9,1000.02344,90.85816,0.0,0.0,0.0,19.35,0.0,0.0, +2024-02-29 21:00:00,4.3011627,178.66782,20.9,1000.2218,91.99493,0.0,0.0,0.0,19.55,0.0,0.0, +2024-02-29 22:00:00,3.6055512,176.82024,20.8,1000.41736,92.85047,0.0,0.0,0.0,19.6,0.0,0.0, +2024-02-29 23:00:00,3.3136082,174.80566,21.4,1000.7318,89.77055,26.0,48.519886,21.0,19.65,0.0,0.0, +2024-03-01 00:00:00,3.1016126,178.15244,23.0,1001.1728,80.682304,156.0,143.42218,117.0,19.5,0.0,0.0, +2024-03-01 01:00:00,3.2015622,178.21013,24.55,1001.2156,70.80152,377.0,426.46674,171.0,18.9,0.0,0.0, +2024-03-01 02:00:00,3.7215588,186.17007,26.85,1001.2781,58.938957,644.0,764.88104,135.0,18.15,0.0,0.0, +2024-03-01 03:00:00,4.244997,195.01842,28.3,1000.92,52.801132,831.0,902.38806,103.0,17.75,0.0,0.0, +2024-03-01 04:00:00,5.6462374,202.93213,28.7,1000.43463,52.241722,941.0,927.27527,109.0,17.95,0.0,0.0, +2024-03-01 05:00:00,6.2769423,202.47948,28.55,999.83563,51.06422,983.0,936.83563,111.0,17.45,0.0,0.0, +2024-03-01 06:00:00,6.835203,200.55612,28.1,999.5258,52.584225,952.0,930.31494,110.0,17.5,0.0,0.0, +2024-03-01 07:00:00,7.0213957,197.40279,27.45,999.0126,57.258312,851.0,907.73755,105.0,18.25,0.0,0.0, +2024-03-01 08:00:00,6.9231496,190.82297,26.8,998.79663,62.148254,683.0,832.95056,111.0,18.95,0.0,0.0, +2024-03-01 09:00:00,6.2513995,187.35228,26.0,998.67615,66.38206,481.0,778.0829,85.0,19.25,0.0,0.0, +2024-03-01 10:00:00,5.1,180.0,24.8,998.64355,69.53406,250.0,615.4068,65.0,18.85,0.0,0.0, +2024-03-01 11:00:00,4.4102154,183.90042,23.75,998.8131,72.6753,49.0,237.75343,21.0,18.55,0.0,0.0, +2024-03-01 12:00:00,4.101219,181.39716,23.45,998.9042,72.62258,0.0,0.0,0.0,18.25,0.0,0.0, +2024-03-01 13:00:00,2.433105,189.46225,22.85,999.28424,77.457825,0.0,0.0,0.0,18.7,0.0,0.0, +2024-03-01 14:00:00,1.7,180.0,22.25,998.9701,80.58366,0.0,0.0,0.0,18.75,0.0,0.0, +2024-03-01 15:00:00,2.059126,150.9455,21.5,998.2551,83.83252,0.0,0.0,0.0,18.65,0.0,0.0, +2024-03-01 16:00:00,2.2135942,108.43504,21.05,997.9447,82.73589,0.0,0.0,0.0,18.0,0.0,0.0, +2024-03-01 17:00:00,2.3430748,129.80553,22.15,996.9836,66.42693,0.0,0.0,0.0,15.6,0.0,0.0, +2024-03-01 18:00:00,2.3430748,140.19447,23.05,996.61194,50.443306,0.0,0.0,0.0,12.2,0.0,0.0, +2024-03-01 19:00:00,2.280351,142.12495,22.95,996.4107,47.193768,0.0,0.0,0.0,11.1,0.0,0.0, +2024-03-01 20:00:00,2.2671568,131.42357,22.15,996.0909,50.37063,0.0,0.0,0.0,11.35,0.0,0.0, +2024-03-01 21:00:00,2.3345237,133.26433,21.15,996.36066,55.16249,0.0,0.0,0.0,11.8,0.0,0.0, +2024-03-01 22:00:00,2.1023796,115.34614,20.8,996.5494,58.056755,0.0,0.0,0.0,12.25,0.0,0.0, +2024-03-01 23:00:00,1.3,90.0,22.35,996.89,56.01076,29.0,98.110054,19.0,13.15,0.0,0.0, +2024-03-02 00:00:00,1.0198039,11.3098955,25.25,997.56464,49.396618,176.0,274.37607,102.0,13.9,0.0,0.0, +2024-03-02 01:00:00,0.9055385,263.6599,28.0,997.53925,42.972733,400.0,509.43774,155.0,14.25,0.0,0.0, +2024-03-02 02:00:00,2.0880613,286.6993,29.9,997.8874,40.145218,581.0,530.6167,229.0,14.9,0.0,0.0, +2024-03-02 03:00:00,2.2561028,257.19574,30.8,997.71234,40.78241,759.0,659.9374,228.0,15.95,0.0,0.0, +2024-03-02 04:00:00,3.4539833,247.8905,31.15,997.4238,41.533966,833.0,604.46185,292.0,16.55,0.0,0.0, +2024-03-02 05:00:00,4.2544093,246.44772,30.65,997.1134,42.46556,863.0,604.28375,302.0,16.45,0.0,0.0, +2024-03-02 06:00:00,3.667424,258.9965,28.5,996.9573,48.993088,800.0,681.5031,185.0,16.75,0.0,0.0, +2024-03-02 07:00:00,2.8160255,263.88458,29.8,996.4957,48.10761,725.0,653.3135,190.0,17.65,0.0,0.0, +2024-03-02 08:00:00,2.758623,226.46873,28.65,996.46533,52.22897,547.0,555.95496,167.0,17.9,0.0,0.0, +2024-03-02 09:00:00,1.7029386,220.23628,28.05,996.6478,47.03784,377.0,502.51953,123.0,15.7,0.0,0.0, +2024-03-02 10:00:00,1.118034,169.6952,27.9,997.04047,46.99763,208.0,444.6515,76.0,15.55,0.0,0.0, +2024-03-02 11:00:00,1.7029387,273.3664,27.0,997.4136,51.14973,32.0,112.21257,19.0,16.05,0.0,0.0, +2024-03-02 12:00:00,2.9274564,262.1468,24.8,998.4452,68.02859,0.0,0.0,0.0,18.5,0.0,0.0, +2024-03-02 13:00:00,1.8867962,302.00534,24.25,999.8187,70.52497,0.0,0.0,0.0,18.55,0.0,0.0, +2024-03-02 14:00:00,2.2671568,48.57643,24.4,999.8229,69.675476,0.0,0.0,0.0,18.5,0.0,0.0, +2024-03-02 15:00:00,3.3955853,283.627,24.45,1000.5184,70.12238,0.0,0.0,0.0,18.65,0.0,0.1, +2024-03-02 16:00:00,0.4,270.0,23.45,999.59845,83.79087,0.0,0.0,0.0,20.55,0.0,0.0, +2024-03-02 17:00:00,3.008322,285.4222,22.9,999.97986,92.110306,0.0,0.0,0.0,21.55,0.0,0.0, +2024-03-02 18:00:00,2.0396078,258.6901,22.15,999.5623,95.52211,0.0,0.0,0.0,21.4,0.0,0.0, +2024-03-02 19:00:00,2.2022717,267.3975,21.3,999.53876,99.69391,0.0,0.0,0.0,21.25,0.0,0.0, +2024-03-02 20:00:00,0.7615773,293.1986,20.85,999.22876,99.69285,0.0,0.0,0.0,20.8,0.0,0.0, +2024-03-02 21:00:00,0.41231057,14.036275,20.85,999.3279,99.69285,0.0,0.0,0.0,20.8,0.0,0.0, +2024-03-02 22:00:00,0.5830952,329.03632,20.65,999.8181,99.69241,0.0,0.0,0.0,20.6,0.0,0.0, +2024-03-02 23:00:00,0.82462114,284.03625,20.9,1000.42017,98.47309,23.0,59.52151,17.0,20.65,0.0,0.0, +2024-03-03 00:00:00,1.2206556,235.0079,22.7,1000.86707,91.53602,163.0,239.2657,99.0,21.25,0.0,0.0, +2024-03-03 01:00:00,2.0248458,237.09476,25.0,1000.93024,80.69453,416.0,618.214,120.0,21.45,0.0,0.0, +2024-03-03 02:00:00,3.0610456,231.63248,26.2,1001.1613,74.45929,649.0,824.16534,104.0,21.3,0.0,0.0, +2024-03-03 03:00:00,3.6359317,238.49579,26.9,1001.08093,71.44984,822.0,894.74615,104.0,21.3,0.0,0.0, +2024-03-03 04:00:00,4.8332186,245.55606,26.65,1000.8759,72.06535,932.0,919.656,111.0,21.2,0.0,0.0, +2024-03-03 05:00:00,5.3225937,244.39786,26.5,1000.97107,72.26031,971.0,922.3494,117.0,21.1,0.0,0.0, +2024-03-03 06:00:00,5.7454333,238.52321,26.3,1001.1638,72.447464,899.0,793.59564,185.0,20.95,0.0,0.0, +2024-03-03 07:00:00,5.6222773,231.49931,25.5,1001.04297,75.26501,646.0,365.23367,348.0,20.8,0.0,0.0, +2024-03-03 08:00:00,5.5154333,224.9999,25.1,1000.8339,76.13396,564.0,433.67288,269.0,20.6,0.0,0.0, +2024-03-03 09:00:00,5.3263493,219.6678,24.3,1000.8119,79.12665,370.0,376.5696,181.0,20.45,0.0,0.0, +2024-03-03 10:00:00,5.3535037,212.79953,23.5,1001.18665,82.76917,198.0,327.5872,102.0,20.4,0.0,0.0, +2024-03-03 11:00:00,4.9193497,206.56499,22.85,1001.86304,85.8204,29.0,70.23432,21.0,20.35,0.0,0.0, +2024-03-03 12:00:00,4.88467,202.89058,22.6,1002.4513,86.59497,0.0,0.0,0.0,20.25,0.0,0.0, +2024-03-03 13:00:00,4.701064,203.83875,22.15,1002.9345,88.99723,0.0,0.0,0.0,20.25,0.0,0.0, +2024-03-03 14:00:00,4.8332186,204.44394,22.1,1003.33,87.89899,0.0,0.0,0.0,20.0,0.0,0.0, +2024-03-03 15:00:00,5.440588,197.10281,22.15,1003.33124,86.2845,0.0,0.0,0.0,19.75,0.0,0.0, +2024-03-03 16:00:00,5.3160133,196.38962,22.05,1003.52686,86.811874,0.0,0.0,0.0,19.75,0.0,0.1, +2024-03-03 17:00:00,5.5731497,189.29323,22.1,1003.42926,85.21471,0.0,0.0,0.0,19.5,0.0,0.0, +2024-03-03 18:00:00,5.1478148,187.8152,21.75,1003.6179,88.96573,0.0,0.0,0.0,19.85,0.0,0.0, +2024-03-03 19:00:00,5.200961,181.10168,21.65,1003.61505,88.68234,0.0,0.0,0.0,19.7,0.0,0.0, +2024-03-03 20:00:00,5.0249376,185.7105,21.65,1003.51587,87.31594,0.0,0.0,0.0,19.45,0.0,0.0, +2024-03-03 21:00:00,5.0089917,183.43356,21.4,1003.7072,88.112404,0.0,0.0,0.0,19.35,0.0,0.0, +2024-03-03 22:00:00,5.0039983,182.29056,21.15,1004.09674,90.03165,0.0,0.0,0.0,19.45,0.0,0.0, +2024-03-03 23:00:00,5.414795,184.23631,21.6,1004.6052,85.695625,27.0,120.37804,15.0,19.1,0.0,0.0, +2024-03-04 00:00:00,5.5226803,185.19434,22.95,1005.33734,74.61591,202.0,478.75455,75.0,18.2,0.0,0.0, +2024-03-04 01:00:00,5.7428217,187.00117,23.7,1006.25085,66.53564,412.0,631.46875,111.0,17.1,0.0,0.0, +2024-03-04 02:00:00,5.714018,184.0141,24.75,1006.4779,60.91091,601.0,650.8383,172.0,16.7,0.0,0.0, +2024-03-04 03:00:00,6.2513995,187.35228,25.4,1006.1984,58.041027,760.0,706.0118,195.0,16.55,0.0,0.0, +2024-03-04 04:00:00,6.670832,192.99461,25.55,1005.8057,58.632347,830.0,608.7185,288.0,16.85,0.0,0.0, +2024-03-04 05:00:00,7.5186434,193.85144,25.8,1005.2172,58.50603,963.0,863.1441,166.0,17.05,0.0,0.0, +2024-03-04 06:00:00,7.8262377,190.3048,25.75,1004.9183,59.803776,940.0,889.7024,142.0,17.35,0.0,0.0, +2024-03-04 07:00:00,8.121576,189.92618,25.2,1004.60565,61.98567,850.0,901.746,117.0,17.4,0.0,0.0, +2024-03-04 08:00:00,8.547514,186.04399,24.6,1004.39087,65.26633,683.0,849.4593,108.0,17.65,0.0,0.0, +2024-03-04 09:00:00,8.4053545,182.04536,24.15,1004.08093,64.76021,437.0,632.1664,122.0,17.1,0.0,0.0, +2024-03-04 10:00:00,8.40238,178.63611,22.85,1004.4419,72.516624,207.0,408.03787,89.0,17.65,0.0,0.0, +2024-03-04 11:00:00,8.221922,175.81517,22.0,1005.2117,79.547264,32.0,98.273415,21.0,18.3,0.0,0.0, +2024-03-04 12:00:00,8.041144,169.24908,22.0,1006.1044,78.801994,0.0,0.0,0.0,18.15,0.0,0.0, +2024-03-04 13:00:00,7.6941533,171.02745,21.25,1006.6782,82.24173,0.0,0.0,0.0,18.1,0.0,0.0, +2024-03-04 14:00:00,7.746612,168.83516,21.15,1006.9729,83.00807,0.0,0.0,0.0,18.15,0.0,0.0, +2024-03-04 15:00:00,7.3979726,166.71512,20.9,1006.76764,82.97859,0.0,0.0,0.0,17.9,0.0,0.0, +2024-03-04 16:00:00,6.992138,163.37917,20.45,1006.5567,84.508995,0.0,0.0,0.0,17.75,0.0,0.0, +2024-03-04 17:00:00,5.7939625,158.74942,20.05,1006.0494,84.19906,0.0,0.0,0.0,17.3,0.0,0.0, +2024-03-04 18:00:00,5.636488,154.7989,19.85,1005.647,85.78876,0.0,0.0,0.0,17.4,0.0,0.0, +2024-03-04 19:00:00,5.0089917,153.94656,19.7,1005.54376,86.86435,0.0,0.0,0.0,17.45,0.0,0.0, +2024-03-04 20:00:00,4.3908997,149.9315,19.6,1005.3425,86.85499,0.0,0.0,0.0,17.35,0.0,0.0, +2024-03-04 21:00:00,3.6400552,142.81522,19.35,1005.2361,87.10674,0.0,0.0,0.0,17.15,0.0,0.0, +2024-03-04 22:00:00,3.405877,139.76372,19.15,1005.4287,86.26393,0.0,0.0,0.0,16.8,0.0,0.0, +2024-03-04 23:00:00,3.920459,142.25313,20.05,1005.5535,82.354546,29.0,142.02965,15.0,16.95,0.0,0.0, +2024-03-05 00:00:00,3.535534,151.2603,22.7,1005.7271,72.7191,213.0,577.8139,61.0,17.55,0.0,0.0, +2024-03-05 01:00:00,4.3965893,162.80138,25.25,1005.6983,64.99398,442.0,754.43823,84.0,18.2,0.0,0.0, +2024-03-05 02:00:00,5.1478148,172.1848,27.5,1005.164,60.395836,654.0,847.78815,97.0,19.15,0.0,0.0, +2024-03-05 03:00:00,5.93043,174.19337,29.55,1004.5245,54.966984,823.0,899.6987,105.0,19.55,0.0,0.0, +2024-03-05 04:00:00,7.496666,189.21095,29.2,1003.72174,57.85487,931.0,925.6528,109.0,20.05,0.0,0.0, +2024-03-05 05:00:00,8.29759,192.5288,28.75,1003.51135,57.03489,967.0,927.46545,113.0,19.4,0.0,0.0, +2024-03-05 06:00:00,8.962701,190.93378,27.85,1002.99115,58.07572,902.0,862.3202,131.0,18.85,0.0,0.0, +2024-03-05 07:00:00,8.820431,183.90042,27.6,1002.4885,59.484615,831.0,892.8567,108.0,19.0,0.0,0.0, +2024-03-05 08:00:00,8.714355,183.28917,27.3,1001.9844,61.107468,669.0,850.7685,96.0,19.15,0.0,0.0, +2024-03-05 09:00:00,8.509407,177.30577,25.9,1001.6491,66.56861,463.0,764.22205,85.0,19.2,0.0,0.0, +2024-03-05 10:00:00,8.089499,171.46931,24.35,1001.8051,72.55396,233.0,599.4102,62.0,19.1,0.0,0.0, +2024-03-05 11:00:00,6.5115285,169.3804,23.0,1002.56134,80.682304,40.0,191.0154,19.0,19.5,0.0,0.0, +2024-03-05 12:00:00,7.6902537,167.22876,23.15,1003.2598,79.70549,0.0,0.0,0.0,19.45,0.0,0.0, +2024-03-05 13:00:00,7.242237,162.31552,23.85,1003.7752,73.14884,0.0,0.0,0.0,18.75,0.0,0.0, +2024-03-05 14:00:00,5.964059,145.24402,23.95,1003.97644,71.358215,0.0,0.0,0.0,18.45,0.0,0.0, +2024-03-05 15:00:00,4.909175,146.63362,25.3,1003.7158,64.80093,0.0,0.0,0.0,18.2,0.0,0.0, +2024-03-05 16:00:00,5.2009616,142.02834,26.3,1003.2469,58.99527,0.0,0.0,0.0,17.65,0.0,0.0, +2024-03-05 17:00:00,5.315073,131.18582,26.7,1002.6627,57.620174,0.0,0.0,0.0,17.65,0.0,0.0, +2024-03-05 18:00:00,5.5470715,117.950874,27.05,1002.4737,56.803337,0.0,0.0,0.0,17.75,0.0,0.0, +2024-03-05 19:00:00,6.281719,103.81505,27.3,1002.18274,57.04278,0.0,0.0,0.0,18.05,0.0,0.0, +2024-03-05 20:00:00,6.9354167,95.79271,27.3,1001.9844,57.94511,0.0,0.0,0.0,18.3,0.0,0.0, +2024-03-05 21:00:00,7.125307,94.83033,27.05,1002.2753,59.171036,0.0,0.0,0.0,18.4,0.0,0.0, +2024-03-05 22:00:00,7.5026665,91.52749,26.75,1002.7631,60.602287,0.0,0.0,0.0,18.5,0.0,0.0, +2024-03-05 23:00:00,7.902531,88.54982,27.0,1003.1669,60.092995,27.0,133.39175,14.0,18.6,0.0,0.0, +2024-03-06 00:00:00,8.102469,88.58562,28.6,1003.5073,55.59471,207.0,563.5388,60.0,18.85,0.0,0.0, +2024-03-06 01:00:00,7.4242845,85.364624,30.75,1003.1675,50.8324,433.0,743.055,82.0,19.4,0.0,0.0, +2024-03-06 02:00:00,7.6941533,81.02746,32.85,1003.02374,45.125385,645.0,839.9051,95.0,19.4,0.0,0.0, +2024-03-06 03:00:00,7.531268,79.28693,34.85,1002.6786,39.361355,814.0,893.45496,103.0,19.0,0.0,0.0, +2024-03-06 04:00:00,6.873136,81.6342,36.4,1001.92444,35.1337,921.0,918.01434,108.0,18.55,0.0,0.0, +2024-03-06 05:00:00,5.7,90.0,37.65,1001.36053,30.430069,931.0,888.7336,115.0,17.35,0.0,0.0, +2024-03-06 06:00:00,4.118252,119.05451,37.65,1000.46747,27.7521,897.0,862.866,128.0,15.9,0.0,0.0, +2024-03-06 07:00:00,4.318565,174.68555,36.55,999.6462,31.009857,760.0,795.9353,118.0,16.7,0.0,0.0, +2024-03-06 08:00:00,5.6008925,181.02301,34.95,999.2085,37.939312,606.0,735.7513,113.0,18.5,0.0,0.0, +2024-03-06 09:00:00,5.9413805,173.23392,32.95,999.3555,47.446465,366.0,470.55792,135.0,20.3,0.0,0.0, +2024-03-06 10:00:00,6.0406957,173.34567,32.0,999.62866,49.90507,184.0,412.32538,68.0,20.25,0.0,0.0, +2024-03-06 11:00:00,6.4257298,159.02643,31.2,1000.2029,46.98482,37.0,176.04852,18.0,18.55,0.0,0.0, +2024-03-06 12:00:00,5.3814497,138.01286,31.4,1000.9027,40.947063,0.0,0.0,0.0,16.55,0.0,0.0, +2024-03-06 13:00:00,5.186521,123.996506,31.8,1000.9131,32.68344,0.0,0.0,0.0,13.4,0.0,0.0, +2024-03-06 14:00:00,5.531727,102.5288,31.85,1001.0135,34.10712,0.0,0.0,0.0,14.1,0.0,0.0, +2024-03-06 15:00:00,6.600757,89.131966,31.25,1000.8989,39.749104,0.0,0.0,0.0,15.95,0.0,0.0, +2024-03-06 16:00:00,8.434453,79.755974,30.05,1001.06555,46.53184,0.0,0.0,0.0,17.35,0.0,0.0, +2024-03-06 17:00:00,8.246211,75.96373,29.4,1000.9494,48.612244,0.0,0.0,0.0,17.45,0.0,0.0, +2024-03-06 18:00:00,8.004998,77.00539,28.7,1000.9306,50.781563,0.0,0.0,0.0,17.5,0.0,0.0, +2024-03-06 19:00:00,7.6902537,77.22876,27.9,1001.1076,53.201057,0.0,0.0,0.0,17.5,0.0,0.0, +2024-03-06 20:00:00,7.2780495,77.30042,27.15,1001.286,56.293293,0.0,0.0,0.0,17.7,0.0,0.0, +2024-03-06 21:00:00,6.888396,76.56896,26.5,1001.46704,59.228264,0.0,0.0,0.0,17.9,0.0,0.0, +2024-03-06 22:00:00,6.6219335,75.124275,25.95,1001.65027,61.958584,0.0,0.0,0.0,18.1,0.0,0.0, +2024-03-06 23:00:00,6.5802736,73.21728,26.05,1001.9507,62.371067,27.0,134.92941,14.0,18.3,0.0,0.0, +2024-03-07 00:00:00,6.6098413,72.38734,27.7,1002.09424,57.498013,207.0,568.34814,60.0,18.55,0.0,0.0, +2024-03-07 01:00:00,6.8007355,53.972538,30.85,1001.0866,48.535496,444.0,769.8641,82.0,18.75,0.0,0.0, +2024-03-07 02:00:00,6.3126855,49.497234,32.95,1000.94293,43.22492,657.0,861.10986,95.0,18.8,0.0,0.0, +2024-03-07 03:00:00,4.9497476,44.999897,35.1,1000.6013,37.74331,823.0,908.63666,102.0,18.55,0.0,0.0, +2024-03-07 04:00:00,0.6708204,116.56499,34.95,999.6054,34.409897,927.0,928.4938,107.0,16.95,0.0,0.0, +2024-03-07 05:00:00,5.1312766,213.07068,34.2,998.8917,43.02492,963.0,933.9315,108.0,19.85,0.0,0.0, +2024-03-07 06:00:00,6.7542577,205.42683,32.9,998.56055,48.61854,925.0,919.75287,108.0,20.65,0.0,0.0, +2024-03-07 07:00:00,7.116881,199.70807,31.4,998.02563,52.760952,738.0,687.09296,186.0,20.6,0.0,0.0, +2024-03-07 08:00:00,6.1611686,193.13403,30.9,997.81415,51.34688,608.0,708.1034,136.0,19.7,0.0,0.0, +2024-03-07 09:00:00,4.883646,190.6196,30.55,997.80505,52.060207,427.0,677.40967,97.0,19.6,0.0,0.0, +2024-03-07 10:00:00,4.925444,185.82625,28.95,997.9614,59.244804,225.0,591.3157,61.0,20.2,0.0,0.0, +2024-03-07 11:00:00,5.0358715,173.15732,27.3,998.41327,65.020966,35.0,169.97922,17.0,20.15,0.0,0.0, +2024-03-07 12:00:00,4.9497476,171.86998,26.95,998.70154,63.157265,0.0,0.0,0.0,19.35,0.0,0.0, +2024-03-07 13:00:00,3.9319208,172.69434,26.1,998.7779,64.3648,0.0,0.0,0.0,18.85,0.0,0.0, +2024-03-07 14:00:00,3.5128336,175.101,25.4,998.8583,67.72349,0.0,0.0,0.0,19.0,0.0,0.0, +2024-03-07 15:00:00,3.4,180.0,24.55,998.33905,73.269615,0.0,0.0,0.0,19.45,0.0,0.0, +2024-03-07 16:00:00,2.5961509,164.3577,24.35,998.03595,75.0792,0.0,0.0,0.0,19.65,0.0,0.0, +2024-03-07 17:00:00,0.94868326,161.56496,23.55,997.5183,79.51325,0.0,0.0,0.0,19.8,0.0,0.0, +2024-03-07 18:00:00,2.2135942,71.564964,24.9,996.7615,68.68975,0.0,0.0,0.0,18.75,0.0,0.0, +2024-03-07 19:00:00,4.1773195,47.91091,28.5,996.6597,51.21273,0.0,0.0,0.0,17.45,0.0,0.0, +2024-03-07 20:00:00,4.6861496,39.805527,29.05,996.7735,50.55275,0.0,0.0,0.0,17.75,0.0,0.0, +2024-03-07 21:00:00,4.5793014,31.607454,28.85,997.0658,52.940327,0.0,0.0,0.0,18.3,0.0,0.0, +2024-03-07 22:00:00,1.8027756,340.55988,27.25,997.7177,59.775875,0.0,0.0,0.0,18.75,0.0,0.0, +2024-03-07 23:00:00,2.751363,250.9064,25.75,998.27246,70.80259,25.0,126.00089,13.0,20.05,0.0,0.0, +2024-03-08 00:00:00,2.408319,228.36655,27.0,998.8023,65.76753,199.0,549.8412,58.0,20.05,0.0,0.0, +2024-03-08 01:00:00,1.2206556,325.0079,29.85,998.77856,54.531048,416.0,713.6135,82.0,19.7,0.0,0.0, +2024-03-08 02:00:00,3.5902646,257.125,29.65,999.1704,56.897434,540.0,627.27325,132.0,20.2,0.0,0.0, +2024-03-08 03:00:00,5.234501,226.54811,28.65,999.14374,61.79098,793.0,874.649,101.0,20.6,0.0,0.0, +2024-03-08 04:00:00,6.536819,209.3099,27.45,999.4094,68.54759,828.0,750.5779,167.0,21.15,0.0,0.0, +2024-03-08 05:00:00,7.5186434,193.85144,28.1,999.32745,63.799095,945.0,904.94403,119.0,20.6,0.0,0.0, +2024-03-08 06:00:00,8.174351,187.7335,27.6,999.11584,63.88889,891.0,861.8543,128.0,20.15,0.0,0.0, +2024-03-08 07:00:00,8.386298,188.22664,26.95,998.8008,66.9885,789.0,838.6194,118.0,20.3,0.0,0.0, +2024-03-08 08:00:00,8.809087,182.60251,25.7,999.16394,72.11902,633.0,790.30884,109.0,20.3,0.0,0.0, +2024-03-08 09:00:00,8.9,180.0,24.9,999.63794,74.70493,430.0,688.93274,97.0,20.1,0.0,0.0, +2024-03-08 10:00:00,8.814193,176.74812,23.5,1000.3931,80.00087,195.0,398.77756,86.0,19.85,0.0,0.0, +2024-03-08 11:00:00,8.5,171.20267,22.55,1000.5655,82.39984,29.0,115.54898,17.0,19.4,0.0,0.0, +2024-03-08 12:00:00,8.13941,169.3804,22.1,1001.24725,84.1613,0.0,0.0,0.0,19.3,0.0,0.0, +2024-03-08 13:00:00,8.121576,170.07382,21.6,1002.1257,83.582085,0.0,0.0,0.0,18.7,0.0,0.0, +2024-03-08 14:00:00,8.318653,170.31128,21.45,1002.12164,80.9851,0.0,0.0,0.0,18.05,0.0,0.0, +2024-03-08 15:00:00,8.13941,169.3804,21.1,1002.5086,82.74184,0.0,0.0,0.0,18.05,0.0,0.0, +2024-03-08 16:00:00,8.472308,168.42484,20.8,1002.50006,79.88419,0.0,0.0,0.0,17.2,0.0,0.0, +2024-03-08 17:00:00,8.036168,163.36897,20.65,1002.59515,73.75768,0.0,0.0,0.0,15.8,0.0,0.0, +2024-03-08 18:00:00,7.169379,157.01126,20.25,1002.58386,75.11861,0.0,0.0,0.0,15.7,0.0,0.0, +2024-03-08 19:00:00,6.931811,153.43501,20.05,1002.479,75.81049,0.0,0.0,0.0,15.65,0.0,0.0, +2024-03-08 20:00:00,6.9771056,152.70052,19.3,1002.5569,79.422714,0.0,0.0,0.0,15.65,0.0,0.0, +2024-03-08 21:00:00,7.515318,154.7989,18.7,1003.03564,75.34768,0.0,0.0,0.0,14.25,0.0,0.0, +2024-03-08 22:00:00,6.551336,148.73633,17.7,1003.6021,72.76593,0.0,0.0,0.0,12.75,0.0,0.0, +2024-03-08 23:00:00,6.3134775,150.59291,17.65,1004.0966,71.574234,26.0,138.10724,13.0,12.45,0.0,0.0, +2024-03-09 00:00:00,6.621178,154.98314,19.05,1004.5333,64.06912,210.0,586.081,61.0,12.1,0.0,0.0, +2024-03-09 01:00:00,6.6309876,156.91484,20.8,1004.7812,56.547974,446.0,781.3563,82.0,11.85,0.0,0.0, +2024-03-09 02:00:00,6.3890533,162.69939,22.65,1004.53534,50.837387,659.0,868.5582,96.0,11.95,0.0,0.0, +2024-03-09 03:00:00,6.4132676,169.21574,24.4,1004.08795,45.74737,830.0,920.3609,104.0,11.95,0.0,0.0, +2024-03-09 04:00:00,7.1028166,178.38649,25.45,1003.6206,43.396202,940.0,947.478,108.0,12.1,0.0,0.0, +2024-03-09 05:00:00,8.782369,187.85323,24.8,1003.1071,47.851643,982.0,958.24176,110.0,13.0,0.0,0.0, +2024-03-09 06:00:00,9.762172,186.46973,23.85,1002.8825,52.333683,949.0,953.2185,108.0,13.5,0.0,0.0, +2024-03-09 07:00:00,9.60833,182.3859,23.9,1002.2887,50.99983,846.0,931.2,104.0,13.15,0.0,0.0, +2024-03-09 08:00:00,9.802041,181.16911,23.55,1002.0809,53.98516,681.0,887.09503,96.0,13.7,0.0,0.0, +2024-03-09 09:00:00,9.513149,176.98727,22.55,1002.35077,57.913525,464.0,792.4413,84.0,13.85,0.0,0.0, +2024-03-09 10:00:00,9.254189,173.79665,21.35,1002.71387,64.15567,227.0,616.4103,61.0,14.3,0.0,0.0, +2024-03-09 11:00:00,8.614523,170.6471,20.35,1003.3801,69.33709,34.0,166.99556,17.0,14.55,0.0,0.0, +2024-03-09 12:00:00,8.440379,166.29301,20.1,1004.26544,70.18978,0.0,0.0,0.0,14.5,0.0,0.0, +2024-03-09 13:00:00,7.05195,161.82188,19.65,1004.7488,76.478615,0.0,0.0,0.0,15.4,0.0,0.0, +2024-03-09 14:00:00,6.4257298,159.02643,19.55,1004.6467,75.97347,0.0,0.0,0.0,15.2,0.0,0.0, +2024-03-09 15:00:00,5.456189,153.90463,19.15,1004.23865,73.73612,0.0,0.0,0.0,14.35,0.0,0.0, +2024-03-09 16:00:00,4.8877397,149.23735,18.55,1004.32086,71.0423,0.0,0.0,0.0,13.2,0.0,0.0, +2024-03-09 17:00:00,4.360046,143.39284,17.9,1004.203,69.08117,0.0,0.0,0.0,12.15,0.0,0.0, +2024-03-09 18:00:00,4.0,143.13002,17.55,1003.79626,65.02056,0.0,0.0,0.0,10.9,0.0,0.0, +2024-03-09 19:00:00,3.720215,143.74608,17.45,1003.3965,60.193787,0.0,0.0,0.0,9.65,0.0,0.0, +2024-03-09 20:00:00,3.2802439,142.43134,17.35,1003.0961,55.679398,0.0,0.0,0.0,8.4,0.0,0.0, +2024-03-09 21:00:00,2.9068882,139.18501,17.3,1003.4916,53.62525,0.0,0.0,0.0,7.8,0.0,0.0, +2024-03-09 22:00:00,2.6172504,133.45189,17.45,1003.89233,54.398663,0.0,0.0,0.0,8.15,0.0,0.0, +2024-03-09 23:00:00,3.0805843,125.753975,18.65,1004.6212,53.25396,25.0,129.00092,13.0,8.95,0.0,0.0, +2024-03-10 00:00:00,4.0706263,117.824005,21.5,1004.90027,52.932636,208.0,591.2151,59.0,11.5,0.0,0.0, +2024-03-10 01:00:00,5.554278,103.53587,24.55,1004.2904,48.413544,447.0,787.2125,82.0,12.95,0.0,0.0, +2024-03-10 02:00:00,5.3160133,106.38962,26.95,1004.3557,41.99207,664.0,880.88025,95.0,12.95,0.0,0.0, +2024-03-10 03:00:00,5.0089917,116.05344,28.8,1004.1079,37.32624,833.0,928.2367,103.0,12.8,0.0,0.0, +2024-03-10 04:00:00,4.482187,141.34016,30.0,1003.54443,31.868677,938.0,947.976,108.0,11.45,0.0,0.0, +2024-03-10 05:00:00,4.9335585,162.29948,30.55,1002.66614,29.088642,975.0,954.59,109.0,10.55,0.0,0.0, +2024-03-10 06:00:00,6.207254,182.77016,30.3,1002.16345,32.697113,940.0,946.30756,108.0,12.1,0.0,0.0, +2024-03-10 07:00:00,8.273452,187.64032,28.25,1001.7122,43.460175,831.0,918.7384,102.0,14.65,0.0,0.0, +2024-03-10 08:00:00,9.464143,186.67438,26.55,1001.46826,46.033848,661.0,864.5315,94.0,14.0,0.0,0.0, +2024-03-10 09:00:00,9.3,180.0,25.0,1001.7238,49.813328,449.0,771.52765,82.0,13.8,0.0,0.0, +2024-03-10 10:00:00,8.3600235,173.1301,24.05,1001.89606,58.462105,217.0,591.89307,60.0,15.4,0.0,0.0, +2024-03-10 11:00:00,7.8160095,176.33229,22.5,1002.4485,68.87155,30.0,160.41794,14.0,16.5,0.0,0.0, +2024-03-10 12:00:00,8.570297,168.55899,22.0,1003.1289,69.8788,0.0,0.0,0.0,16.25,0.0,0.0, +2024-03-10 13:00:00,7.3756356,167.4712,21.7,1003.517,71.170395,0.0,0.0,0.0,16.25,0.0,0.0, +2024-03-10 14:00:00,6.8007355,160.23274,21.65,1003.71423,71.616005,0.0,0.0,0.0,16.3,0.0,0.0, +2024-03-10 15:00:00,5.9506307,155.15764,21.4,1003.9056,71.34229,0.0,0.0,0.0,16.0,0.0,0.0, +2024-03-10 16:00:00,5.3235326,151.99092,21.15,1003.79913,71.06852,0.0,0.0,0.0,15.7,0.0,0.0, +2024-03-10 17:00:00,4.8548946,147.61934,21.0,1003.6959,65.33671,0.0,0.0,0.0,14.25,0.0,0.0, +2024-03-10 18:00:00,4.3011627,144.46223,20.9,1003.39557,57.134327,0.0,0.0,0.0,12.1,0.0,0.0, +2024-03-10 19:00:00,3.828838,139.23648,20.75,1003.0939,55.06115,0.0,0.0,0.0,11.4,0.0,0.0, +2024-03-10 20:00:00,3.3941126,135.0001,20.85,1002.8984,54.54259,0.0,0.0,0.0,11.35,0.0,0.0, +2024-03-10 21:00:00,2.9410884,125.311295,21.15,1002.90656,54.6191,0.0,0.0,0.0,11.65,0.0,0.0, +2024-03-10 22:00:00,2.6925824,121.328636,21.25,1003.3061,58.932392,0.0,0.0,0.0,12.9,0.0,0.0, +2024-03-10 23:00:00,3.1384711,120.65059,22.05,1003.7253,61.66791,23.0,119.673065,12.0,14.35,0.0,0.0, +2024-03-11 00:00:00,3.5805027,125.90981,24.45,1004.18835,58.184174,198.0,560.4144,58.0,15.7,0.0,0.0, +2024-03-11 01:00:00,4.3416586,118.92633,26.65,1003.7526,53.22168,428.0,749.8045,82.0,16.35,0.0,0.0, +2024-03-11 02:00:00,4.243819,124.43905,28.65,1003.5085,47.955147,638.0,845.15704,94.0,16.55,0.0,0.0, +2024-03-11 03:00:00,3.940812,144.29323,30.25,1002.95575,44.145443,803.0,894.10565,102.0,16.7,0.0,0.0, +2024-03-11 04:00:00,4.6957426,153.43501,31.65,1002.0006,37.752758,912.0,925.60406,104.0,15.5,0.0,0.0, +2024-03-11 05:00:00,4.9162993,175.33322,32.3,1001.4223,33.901215,896.0,792.83124,179.0,14.4,0.0,0.0, +2024-03-11 06:00:00,7.467262,187.69595,30.0,1000.86597,48.46433,838.0,666.58905,254.0,17.95,0.0,0.0, +2024-03-11 07:00:00,8.714355,183.28917,28.8,1000.63586,49.072,625.0,475.88718,249.0,17.05,0.0,0.0, +2024-03-11 08:00:00,9.102198,181.25902,27.5,1000.60095,50.149418,517.0,501.3735,190.0,16.2,0.0,0.0, +2024-03-11 09:00:00,7.91012,177.10149,26.8,1000.7805,55.32625,313.0,349.71832,148.0,17.1,0.0,0.0, +2024-03-11 10:00:00,7.045566,173.4803,26.1,1001.15845,58.948227,124.0,206.74582,70.0,17.45,0.0,0.0, +2024-03-11 11:00:00,5.770615,171.02745,24.95,1001.92084,63.314426,26.0,122.85443,14.0,17.5,0.0,0.0, +2024-03-11 12:00:00,4.753946,165.37909,24.55,1002.40576,65.461815,0.0,0.0,0.0,17.65,0.0,0.0, +2024-03-11 13:00:00,4.1231055,157.1663,22.85,1002.25977,73.43588,0.0,0.0,0.0,17.85,0.0,0.0, +2024-03-11 14:00:00,3.2202485,154.23073,24.4,1002.1042,66.88952,0.0,0.0,0.0,17.85,0.0,0.0, +2024-03-11 15:00:00,3.0083218,158.5522,25.9,1001.4507,61.173145,0.0,0.0,0.0,17.85,0.0,0.0, +2024-03-11 16:00:00,2.7018511,141.009,25.65,1001.4437,61.116333,0.0,0.0,0.0,17.6,0.0,0.0, +2024-03-11 17:00:00,2.8653097,119.24873,25.45,1001.24005,60.303707,0.0,0.0,0.0,17.2,0.0,0.0, +2024-03-11 18:00:00,4.738143,97.27491,26.0,1001.3544,56.90818,0.0,0.0,0.0,16.8,0.0,0.0, +2024-03-11 19:00:00,4.6389656,97.43131,25.0,1001.12866,60.968113,0.0,0.0,0.0,16.95,0.0,0.0, +2024-03-11 20:00:00,4.5177426,95.07952,24.2,1001.00745,64.56624,0.0,0.0,0.0,17.1,0.0,0.0, +2024-03-11 21:00:00,4.4553337,99.039406,23.7,1001.2915,66.53564,0.0,0.0,0.0,17.1,0.0,0.0, +2024-03-11 22:00:00,4.491102,101.560104,23.25,1001.874,68.14992,0.0,0.0,0.0,17.05,0.0,0.0, +2024-03-11 23:00:00,4.6389656,97.43131,23.4,1002.27484,67.74968,22.0,110.11838,12.0,17.1,0.0,0.0, +2024-03-12 00:00:00,5.408327,93.17977,25.05,1002.6177,61.756443,193.0,549.2627,57.0,17.2,0.0,0.0, +2024-03-12 01:00:00,5.135173,96.70974,28.35,1002.0127,53.819637,404.0,677.21533,93.0,18.1,0.0,0.0, +2024-03-12 02:00:00,4.8507733,98.297066,30.1,1001.9597,48.490612,624.0,824.7991,95.0,18.05,0.0,0.0, +2024-03-12 03:00:00,3.4014702,114.30454,32.0,1001.1168,43.511818,786.0,857.2365,116.0,18.05,0.0,0.0, +2024-03-12 04:00:00,3.310589,154.98314,31.7,1000.5137,43.43067,690.0,530.84894,228.0,17.75,0.0,0.0, +2024-03-12 05:00:00,3.0463092,156.80138,33.0,999.7539,38.733208,838.0,707.7275,200.0,17.1,0.0,0.0, +2024-03-12 06:00:00,4.14367,171.67444,33.65,999.1753,36.066147,816.0,726.2616,182.0,16.55,0.0,0.0, +2024-03-12 07:00:00,6.6068144,182.60251,32.15,998.7396,42.204235,602.0,481.761,223.0,17.7,0.0,0.0, +2024-03-12 08:00:00,8.309633,182.75905,31.0,998.5114,47.971592,617.0,770.9528,117.0,18.7,0.0,0.0, +2024-03-12 09:00:00,9.81835,176.49654,28.2,998.6358,54.80514,429.0,739.4377,83.0,18.25,0.0,0.0, +2024-03-12 10:00:00,8.354639,168.9591,26.25,998.9802,59.356464,206.0,575.59357,58.0,17.7,0.0,0.0, +2024-03-12 11:00:00,6.76757,161.0295,25.0,999.6408,64.53376,26.0,135.96486,13.0,17.85,0.0,0.0, +2024-03-12 12:00:00,8.363014,153.74141,24.55,1000.22363,65.66842,0.0,0.0,0.0,17.7,0.0,0.0, +2024-03-12 13:00:00,6.9462223,157.1263,23.9,1001.09845,69.14386,0.0,0.0,0.0,17.9,0.0,0.0, +2024-03-12 14:00:00,5.3712196,155.82089,23.7,1000.7956,69.760994,0.0,0.0,0.0,17.85,0.0,0.0, +2024-03-12 15:00:00,4.204759,154.65387,23.2,1000.68256,73.03601,0.0,0.0,0.0,18.1,0.0,0.0, +2024-03-12 16:00:00,3.6674242,154.1337,22.7,1000.7679,76.7112,0.0,0.0,0.0,18.4,0.0,0.0, +2024-03-12 17:00:00,3.0528674,148.39255,22.4,1000.462,78.6125,0.0,0.0,0.0,18.5,0.0,0.0, +2024-03-12 18:00:00,2.408319,138.36655,22.45,1000.2651,75.47724,0.0,0.0,0.0,17.9,0.0,0.0, +2024-03-12 19:00:00,1.9849433,130.91429,22.5,999.9689,69.974144,0.0,0.0,0.0,16.75,0.0,0.0, +2024-03-12 20:00:00,2.641969,119.4758,23.55,999.7004,62.20675,0.0,0.0,0.0,15.9,0.0,0.0, +2024-03-12 21:00:00,3.2557642,100.619606,24.55,999.6285,59.713627,0.0,0.0,0.0,16.2,0.0,0.0, +2024-03-12 22:00:00,4.110961,85.81516,24.85,1000.03345,63.09295,0.0,0.0,0.0,17.35,0.0,0.0, +2024-03-12 23:00:00,5.2952805,79.11452,25.5,1000.84454,64.64045,21.0,111.47578,11.0,18.35,0.0,0.0, +2024-03-13 00:00:00,6.258594,77.074,27.6,1001.39734,58.198177,191.0,550.1414,56.0,18.65,0.0,0.0, +2024-03-13 01:00:00,5.2392745,76.75947,30.45,1001.0763,50.125996,404.0,695.8409,86.0,18.9,0.0,0.0, +2024-03-13 02:00:00,3.8327534,97.495766,32.35,1001.02673,43.606365,621.0,826.22876,93.0,18.4,0.0,0.0, +2024-03-13 03:00:00,3.3970575,132.61403,33.35,1000.55634,37.26428,785.0,877.9226,101.0,16.8,0.0,0.0, +2024-03-13 04:00:00,4.0249224,153.43501,34.2,1000.0823,33.879055,890.0,904.76013,105.0,16.05,0.0,0.0, +2024-03-13 05:00:00,5.001,178.85426,34.35,999.59,34.68429,924.0,909.2254,107.0,16.55,0.0,0.0, +2024-03-13 06:00:00,7.0405965,191.4695,32.6,999.2475,45.199184,868.0,861.1236,119.0,19.2,0.0,0.0, +2024-03-13 07:00:00,8.041144,190.75092,31.6,999.0231,48.883286,751.0,801.7732,123.0,19.55,0.0,0.0, +2024-03-13 08:00:00,9.019978,183.814,29.4,998.76697,52.419674,597.0,758.29694,108.0,18.65,0.0,0.0, +2024-03-13 09:00:00,8.238932,174.4279,28.85,999.14905,53.776142,422.0,737.03076,80.0,18.55,0.0,0.0, +2024-03-13 10:00:00,7.808969,170.41713,26.8,999.2926,60.61371,197.0,553.2346,57.0,18.55,0.0,0.0, +2024-03-13 11:00:00,6.1351447,160.9743,25.0,999.74,65.76233,24.0,117.58635,13.0,18.15,0.0,0.0, +2024-03-13 12:00:00,5.3488317,159.19313,24.1,1000.2115,70.71825,0.0,0.0,0.0,18.45,0.0,0.0, +2024-03-13 13:00:00,5.571355,158.96242,23.05,1000.48016,77.00536,0.0,0.0,0.0,18.8,0.0,0.0, +2024-03-13 14:00:00,5.60803,158.00882,23.25,1000.2871,75.60587,0.0,0.0,0.0,18.7,0.0,0.0, +2024-03-13 15:00:00,3.6715121,150.64235,23.85,1000.20447,70.229485,0.0,0.0,0.0,18.1,0.0,0.0, +2024-03-13 16:00:00,3.2015622,141.34016,24.55,1000.12445,62.43069,0.0,0.0,0.0,16.9,0.0,0.0, +2024-03-13 17:00:00,4.527693,120.529625,26.55,999.782,51.03289,0.0,0.0,0.0,15.6,0.0,0.0, +2024-03-13 18:00:00,5.6921,108.43504,26.9,999.39465,53.45461,0.0,0.0,0.0,16.65,0.0,0.0, +2024-03-13 19:00:00,6.0207973,101.49654,26.7,999.29016,55.476887,0.0,0.0,0.0,17.05,0.0,0.0, +2024-03-13 20:00:00,6.1204576,94.68582,26.5,999.48315,57.209793,0.0,0.0,0.0,17.35,0.0,0.0, +2024-03-13 21:00:00,5.903389,91.94145,26.3,1000.1719,59.181465,0.0,0.0,0.0,17.7,0.0,0.0, +2024-03-13 22:00:00,5.9135437,93.87845,26.1,1000.6625,61.604248,0.0,0.0,0.0,18.15,0.0,0.0, +2024-03-13 23:00:00,6.0299253,95.7105,26.2,1001.26056,62.9932,20.0,101.57795,11.0,18.6,0.0,0.0, +2024-03-14 00:00:00,5.7428217,97.001175,28.0,1001.408,58.292755,182.0,501.68213,60.0,19.05,0.0,0.0, +2024-03-14 01:00:00,6.4,90.0,30.4,1000.9758,52.18407,411.0,727.85535,80.0,19.5,0.0,0.0, +2024-03-14 02:00:00,5.60803,93.06642,32.7,1001.135,44.80535,618.0,826.12445,92.0,19.15,0.0,0.0, +2024-03-14 03:00:00,4.3462625,113.02553,34.3,1000.68005,37.171684,781.0,878.1748,99.0,17.6,0.0,0.0, +2024-03-14 04:00:00,3.753665,138.23979,34.85,999.9998,34.71102,886.0,904.1293,104.0,17.0,0.0,0.0, +2024-03-14 05:00:00,3.8078866,166.32867,35.5,999.22253,33.06272,915.0,892.133,116.0,16.8,0.0,0.0, +2024-03-14 06:00:00,6.139218,192.22511,34.5,998.70105,39.759968,886.0,902.4126,104.0,18.85,0.0,0.0, +2024-03-14 07:00:00,7.334848,191.0035,32.7,998.4564,48.866966,779.0,868.2067,102.0,20.55,0.0,0.0, +2024-03-14 08:00:00,7.9075913,189.46225,31.1,998.2163,52.84854,601.0,751.8092,119.0,20.35,0.0,0.0, +2024-03-14 09:00:00,7.802564,178.53123,29.7,998.0803,52.168976,407.0,693.38245,88.0,18.85,0.0,0.0, +2024-03-14 10:00:00,6.8249536,169.0194,28.3,998.2416,54.829914,187.0,514.19904,59.0,18.35,0.0,0.0, +2024-03-14 11:00:00,5.508176,164.19742,27.05,998.7043,60.292755,22.0,120.27861,11.0,18.7,0.0,0.0, +2024-03-14 12:00:00,5.60803,158.00882,26.5,999.1856,63.25606,0.0,0.0,0.0,18.95,0.0,0.0, +2024-03-14 13:00:00,5.239275,156.3706,25.4,999.6518,65.84554,0.0,0.0,0.0,18.55,0.0,0.0, +2024-03-14 14:00:00,4.360046,143.39284,25.55,999.25903,63.845207,0.0,0.0,0.0,18.2,0.0,0.0, +2024-03-14 15:00:00,3.9661064,123.6901,26.9,998.9978,52.779335,0.0,0.0,0.0,16.45,0.0,0.0, +2024-03-14 16:00:00,4.317406,103.39252,28.45,998.94,49.605373,0.0,0.0,0.0,16.9,0.0,0.0, +2024-03-14 17:00:00,5.622277,95.10208,28.4,998.83966,54.17113,0.0,0.0,0.0,18.25,0.0,0.0, +2024-03-14 18:00:00,6.512296,86.47862,27.65,999.0179,57.127064,0.0,0.0,0.0,18.4,0.0,0.0, +2024-03-14 19:00:00,7.1112585,86.77554,27.0,999.0999,59.717995,0.0,0.0,0.0,18.5,0.0,0.0, +2024-03-14 20:00:00,7.542546,83.911575,26.3,998.9815,62.8184,0.0,0.0,0.0,18.65,0.0,0.0, +2024-03-14 21:00:00,7.8638415,82.694336,25.75,999.16516,65.507706,0.0,0.0,0.0,18.8,0.0,0.0, +2024-03-14 22:00:00,7.9630394,82.785835,25.3,999.2522,67.28203,0.0,0.0,0.0,18.8,0.0,0.0, +2024-03-14 23:00:00,8.188407,81.57312,25.4,999.6518,67.092354,19.0,102.852325,10.0,18.85,0.0,0.0, +2024-03-15 00:00:00,7.6118326,80.166504,27.25,1000.19763,60.52723,185.0,539.4622,55.0,18.95,0.0,0.0, +2024-03-15 01:00:00,5.9481087,73.39294,30.75,1000.09204,52.92416,404.0,713.7893,81.0,20.05,0.0,0.0, +2024-03-15 02:00:00,4.964876,71.20003,33.7,1000.1686,45.072315,611.0,818.163,92.0,20.15,0.0,0.0, +2024-03-15 03:00:00,3.0594118,78.6901,35.7,999.6245,38.50137,773.0,870.71606,99.0,19.4,0.0,0.0, +2024-03-15 04:00:00,1.746425,156.3706,35.8,999.1309,34.532948,869.0,886.14636,105.0,17.75,0.0,0.0, +2024-03-15 05:00:00,4.997999,199.88525,35.75,998.832,38.157253,880.0,852.5782,119.0,19.3,0.0,0.0, +2024-03-15 06:00:00,6.8007355,199.76726,34.3,998.59656,45.371243,827.0,801.6024,135.0,20.8,0.0,0.0, +2024-03-15 07:00:00,7.35459,191.76826,33.9,998.1894,46.25221,744.0,791.0332,130.0,20.75,0.0,0.0, +2024-03-15 08:00:00,7.7781744,188.13002,33.15,998.1703,46.627182,603.0,797.112,95.0,20.2,0.0,0.0, +2024-03-15 09:00:00,7.7006493,180.74405,31.7,998.33105,48.15547,396.0,690.74255,81.0,19.4,0.0,0.0, +2024-03-15 10:00:00,7.1021123,170.27249,29.85,998.6794,53.85797,180.0,502.57446,57.0,19.5,0.0,0.0, +2024-03-15 11:00:00,6.676077,163.46509,28.6,999.0433,57.712597,20.0,100.751884,11.0,19.45,0.0,0.0, +2024-03-15 12:00:00,6.053924,157.6713,27.5,999.7081,58.723,0.0,0.0,0.0,18.7,0.0,0.0, +2024-03-15 13:00:00,7.2897186,153.08353,26.9,1000.58496,55.8783,0.0,0.0,0.0,17.35,0.0,0.0, +2024-03-15 14:00:00,4.701064,141.91118,26.9,1000.88257,54.65466,0.0,0.0,0.0,17.0,0.0,0.0, +2024-03-15 15:00:00,2.828427,135.0001,26.9,1001.08093,51.61561,0.0,0.0,0.0,16.1,0.0,0.0, +2024-03-15 16:00:00,2.842534,140.71062,26.65,1001.2727,51.058876,0.0,0.0,0.0,15.7,0.0,0.0, +2024-03-15 17:00:00,3.7696154,158.19853,26.25,1000.9641,52.277813,0.0,0.0,0.0,15.7,0.0,0.0, +2024-03-15 18:00:00,2.8301945,147.99466,25.6,1000.9466,55.204334,0.0,0.0,0.0,15.95,0.0,0.0, +2024-03-15 19:00:00,1.6124516,150.2552,24.65,1000.9208,59.168686,0.0,0.0,0.0,16.15,0.0,0.0, +2024-03-15 20:00:00,1.7492856,149.03632,24.15,1000.7086,62.738873,0.0,0.0,0.0,16.6,0.0,0.0, +2024-03-15 21:00:00,1.8439089,130.60121,24.0,1000.8037,61.91216,0.0,0.0,0.0,16.25,0.0,0.0, +2024-03-15 22:00:00,2.0099752,95.7105,24.35,1000.81323,57.788834,0.0,0.0,0.0,15.5,0.0,0.0, +2024-03-15 23:00:00,2.9154758,67.83361,26.0,1001.0568,52.549206,18.0,92.57855,10.0,15.55,0.0,0.0, +2024-03-16 00:00:00,2.5238857,56.3099,29.8,1001.55505,48.564346,159.0,397.84656,64.0,17.8,0.0,0.0, +2024-03-16 01:00:00,2.158703,193.39252,31.45,1001.89606,41.61601,400.0,715.1397,78.0,16.85,0.0,0.0, +2024-03-16 02:00:00,3.231099,201.80147,32.9,1001.8345,40.32863,604.0,811.7509,91.0,17.65,0.0,0.0, +2024-03-16 03:00:00,4.304649,210.73541,34.05,1001.5667,38.171295,762.0,851.582,105.0,17.8,0.0,0.0, +2024-03-16 04:00:00,5.8523498,213.147,33.55,1001.05774,41.40374,866.0,886.7141,104.0,18.65,0.0,0.0, +2024-03-16 05:00:00,5.8309517,202.1664,33.1,1000.5501,41.9337,894.0,878.0117,113.0,18.45,0.0,0.0, +2024-03-16 06:00:00,5.7870545,189.95056,32.6,1000.1403,42.860966,697.0,581.4558,197.0,18.35,0.0,0.1, +2024-03-16 07:00:00,6.1814237,189.30986,33.15,999.55927,42.608494,772.0,837.472,125.0,18.75,0.0,0.0, +2024-03-16 08:00:00,6.166036,188.39284,31.5,999.81384,48.10302,612.0,822.5294,91.0,19.2,0.0,0.0, +2024-03-16 09:00:00,5.707889,183.01273,29.85,1000.1674,53.35796,392.0,683.7297,83.0,19.35,0.0,0.0, +2024-03-16 10:00:00,4.304649,177.33705,28.45,1000.6264,57.497692,178.0,503.1403,57.0,19.25,0.0,0.0, +2024-03-16 11:00:00,3.3376637,171.38443,27.5,1001.1961,60.773224,18.0,80.29889,11.0,19.25,0.0,0.0, +2024-03-16 12:00:00,3.6878178,167.4712,27.2,1001.4859,59.577713,0.0,0.0,0.0,18.65,0.0,0.0, +2024-03-16 13:00:00,4.2544093,156.44772,26.35,1002.1573,57.718292,0.0,0.0,0.0,17.35,0.0,0.0, +2024-03-16 14:00:00,4.838388,161.93944,25.85,1002.14374,58.517895,0.0,0.0,0.0,17.1,0.0,0.0, +2024-03-16 15:00:00,5.0921507,160.49747,25.35,1001.634,60.471664,0.0,0.0,0.0,17.15,0.0,0.0, +2024-03-16 16:00:00,4.8703184,160.82089,24.9,1001.0266,61.13878,0.0,0.0,0.0,16.9,0.0,0.0, +2024-03-16 17:00:00,4.6872168,168.92984,24.45,1000.61755,62.013523,0.0,0.0,0.0,16.7,0.0,0.0, +2024-03-16 18:00:00,4.6572523,165.06853,24.05,1000.20996,62.916344,0.0,0.0,0.0,16.55,0.0,0.0, +2024-03-16 19:00:00,3.9824615,151.50446,24.05,1000.01154,57.531334,0.0,0.0,0.0,15.15,0.0,0.0, +2024-03-16 20:00:00,3.1400635,142.76509,24.0,1000.01025,51.359806,0.0,0.0,0.0,13.35,0.0,0.0, +2024-03-16 21:00:00,3.11127,135.0001,24.0,999.911,45.48702,0.0,0.0,0.0,11.5,0.0,0.0, +2024-03-16 22:00:00,2.86007,143.53067,23.95,1000.1081,43.699947,0.0,0.0,0.0,10.85,0.0,0.0, +2024-03-16 23:00:00,2.6925824,148.67137,24.3,1000.51434,42.791626,17.0,93.759735,9.0,10.85,0.0,0.0, +2024-03-17 00:00:00,3.1064448,176.30869,26.35,1000.6694,39.02732,168.0,439.56622,64.0,11.3,0.0,0.0, +2024-03-17 01:00:00,4.925444,174.17375,26.8,1001.1773,53.940907,390.0,680.80194,85.0,16.7,0.0,0.0, +2024-03-17 02:00:00,5.6008925,181.02301,27.95,1001.20844,56.842476,562.0,695.7179,124.0,18.6,0.0,0.0, +2024-03-17 03:00:00,6.419502,184.46707,28.9,1000.9359,55.322132,760.0,840.1602,114.0,19.05,0.0,0.0, +2024-03-17 04:00:00,7.496666,189.21095,28.65,1000.6317,57.188583,865.0,882.66315,109.0,19.35,0.0,0.0, +2024-03-17 05:00:00,7.333485,185.47728,28.6,1000.2337,53.043488,896.0,878.85834,117.0,18.1,0.0,0.0, +2024-03-17 06:00:00,7.7929454,188.85788,28.35,999.9295,52.15243,862.0,872.16565,115.0,17.6,0.0,0.0, +2024-03-17 07:00:00,7.6791925,188.23553,27.2,999.79956,59.391644,743.0,795.98224,131.0,18.6,0.0,0.0, +2024-03-17 08:00:00,7.4330344,185.4037,26.3,999.77515,61.456272,439.0,392.40067,192.0,18.3,0.0,0.0, +2024-03-17 09:00:00,7.610519,176.98727,24.3,1000.316,73.68393,320.0,480.15186,105.0,19.3,0.0,0.0, +2024-03-17 10:00:00,6.5924196,170.39487,23.8,1000.6989,73.1402,176.0,503.83838,57.0,18.7,0.0,0.0, +2024-03-17 11:00:00,6.428064,174.64427,22.55,1001.0614,85.26113,15.0,47.060886,11.0,19.95,0.0,0.0, +2024-03-17 12:00:00,6.2968245,169.93938,22.15,1001.64514,86.2845,0.0,0.0,0.0,19.75,0.0,0.0, +2024-03-17 13:00:00,6.6753273,171.38443,21.85,1001.9345,84.65984,0.0,0.0,0.0,19.15,0.0,0.0, +2024-03-17 14:00:00,6.236986,167.96942,21.65,1002.02814,83.84937,0.0,0.0,0.0,18.8,0.0,0.0, +2024-03-17 15:00:00,6.236986,167.96942,21.45,1002.02246,83.564964,0.0,0.0,0.0,18.55,0.0,0.0, +2024-03-17 16:00:00,6.530697,168.51804,21.5,1001.8256,80.23166,0.0,0.0,0.0,17.95,0.0,0.0, +2024-03-17 17:00:00,6.315061,169.04597,21.45,1001.82404,77.73598,0.0,0.0,0.0,17.4,0.0,0.0, +2024-03-17 18:00:00,6.356099,167.27565,21.3,1001.5224,76.97966,0.0,0.0,0.0,17.1,0.0,0.0, +2024-03-17 19:00:00,6.140033,163.92636,21.05,1001.6144,76.9412,0.0,0.0,0.0,16.85,0.0,0.0, +2024-03-17 20:00:00,5.7939625,158.74942,20.95,1001.71106,75.95472,0.0,0.0,0.0,16.55,0.0,0.0, +2024-03-17 21:00:00,5.3851647,148.67137,20.85,1002.00574,75.45703,0.0,0.0,0.0,16.35,0.0,0.0, +2024-03-17 22:00:00,4.8259716,145.9806,20.5,1002.68994,77.10139,0.0,0.0,0.0,16.35,0.0,0.0, +2024-03-17 23:00:00,4.8826222,145.0079,20.6,1002.8911,75.89878,16.0,71.22381,10.0,16.2,0.0,0.0, +2024-03-18 00:00:00,5.6859474,156.13982,21.75,1003.41956,71.406624,138.0,290.08795,70.0,16.35,0.0,0.0, +2024-03-18 01:00:00,6.5000005,165.74994,24.15,1003.48584,60.19414,377.0,596.772,111.0,15.95,0.0,0.0, +2024-03-18 02:00:00,6.736468,174.03561,25.2,1003.6137,57.258823,546.0,609.1136,164.0,16.15,0.0,0.0, +2024-03-18 03:00:00,6.419502,175.53293,26.05,1003.53784,54.095963,611.0,424.137,286.0,16.05,0.0,0.0, +2024-03-18 04:00:00,7.542546,186.08844,25.45,1003.2239,59.35676,563.0,274.13312,329.0,16.95,0.0,0.0, +2024-03-18 05:00:00,7.8771825,188.02715,25.75,1002.5377,59.239395,738.0,542.3515,259.0,17.2,0.0,0.0, +2024-03-18 06:00:00,7.7103825,189.70659,25.8,1002.1422,59.626797,816.0,762.00946,166.0,17.35,0.0,0.0, +2024-03-18 07:00:00,8.372574,187.54933,25.35,1001.9315,63.80189,763.0,856.0991,108.0,18.0,0.0,0.0, +2024-03-18 08:00:00,8.702298,181.31688,24.95,1002.0201,62.125725,605.0,821.8133,91.0,17.2,0.0,0.0, +2024-03-18 09:00:00,9.019978,176.186,24.25,1002.1993,65.19241,400.0,728.19507,77.0,17.3,0.0,0.0, +2024-03-18 10:00:00,8.570881,172.62633,23.0,1002.6606,71.63475,178.0,534.8571,54.0,17.6,0.0,0.0, +2024-03-18 11:00:00,8.121576,170.07382,21.9,1003.22516,79.78341,16.0,84.54666,9.0,18.25,0.0,0.0, +2024-03-18 12:00:00,8.158431,168.69011,21.6,1003.8117,81.51443,0.0,0.0,0.0,18.3,0.0,0.0, +2024-03-18 13:00:00,8.052329,165.61858,21.4,1004.30225,80.21821,0.0,0.0,0.0,17.85,0.0,0.0, +2024-03-18 14:00:00,7.905694,161.56496,21.35,1004.5983,76.501526,0.0,0.0,0.0,17.05,0.0,0.0, +2024-03-18 15:00:00,7.2615423,157.3194,21.45,1004.7003,69.99698,0.0,0.0,0.0,15.75,0.0,0.0, +2024-03-18 16:00:00,6.440497,154.23073,21.3,1004.597,66.2499,0.0,0.0,0.0,14.75,0.0,0.0, +2024-03-18 17:00:00,5.491812,146.88864,21.2,1004.3958,62.480698,0.0,0.0,0.0,13.75,0.0,0.0, +2024-03-18 18:00:00,4.750789,139.26799,21.45,1004.50195,59.754894,0.0,0.0,0.0,13.3,0.0,0.0, +2024-03-18 19:00:00,5.2801514,127.30403,22.35,1004.62634,54.209026,0.0,0.0,0.0,12.65,0.0,0.0, +2024-03-18 20:00:00,6.3953104,116.96564,22.4,1004.9252,54.22178,0.0,0.0,0.0,12.7,0.0,0.0, +2024-03-18 21:00:00,6.8029404,114.30454,22.0,1005.41003,58.347427,0.0,0.0,0.0,13.45,0.0,0.0, +2024-03-18 22:00:00,7.026379,114.376465,21.6,1006.0929,59.985264,0.0,0.0,0.0,13.5,0.0,0.0, +2024-03-18 23:00:00,7.4464755,112.08723,21.35,1006.87946,60.318314,17.0,96.19951,9.0,13.35,0.0,0.0, +2024-03-19 00:00:00,8.065358,109.55834,22.5,1007.40765,55.14121,181.0,546.87354,54.0,13.05,0.0,0.0, +2024-03-19 01:00:00,7.4732857,114.50739,24.05,1008.0457,47.492764,406.0,739.65137,78.0,12.2,0.0,0.0, +2024-03-19 02:00:00,7.66942,112.21764,26.3,1007.8098,41.81156,614.0,837.2103,91.0,12.3,0.0,0.0, +2024-03-19 03:00:00,7.81089,108.66701,28.4,1007.2716,37.953835,781.0,893.1516,99.0,12.7,0.0,0.0, +2024-03-19 04:00:00,7.6537576,107.48808,30.2,1006.42676,35.112904,887.0,921.641,103.0,13.1,0.0,0.0, +2024-03-19 05:00:00,7.7794604,107.96923,31.65,1005.67126,33.0703,922.0,928.4583,105.0,13.45,0.0,0.0, +2024-03-19 06:00:00,7.6243033,106.77131,32.65,1005.1022,31.048712,884.0,919.3955,103.0,13.35,0.0,0.0, +2024-03-19 07:00:00,7.692204,105.843155,33.0,1004.81366,29.852982,779.0,893.2336,99.0,13.05,0.0,0.0, +2024-03-19 08:00:00,6.8308125,107.90454,33.35,1004.624,28.89188,612.0,840.0663,90.0,12.85,0.0,0.0, +2024-03-19 09:00:00,7.4946647,108.676796,32.4,1004.7979,30.478287,402.0,739.8112,77.0,12.85,0.0,0.0, +2024-03-19 10:00:00,7.543209,104.58897,31.35,1005.465,32.241497,176.0,540.7822,53.0,12.8,0.0,0.0, +2024-03-19 11:00:00,5.99333,115.70991,29.65,1006.1146,35.305237,16.0,86.8761,9.0,12.7,0.0,0.0, +2024-03-19 12:00:00,6.2265563,119.858925,28.55,1006.77966,37.01284,0.0,0.0,0.0,12.45,0.0,0.0, +2024-03-19 13:00:00,5.656854,98.13002,27.7,1007.3517,37.263645,0.0,0.0,0.0,11.8,0.0,0.0, +2024-03-19 14:00:00,7.653104,83.24652,26.4,1007.9118,44.232265,0.0,0.0,0.0,13.25,0.0,0.0, +2024-03-19 15:00:00,8.836288,84.805664,25.05,1008.17236,49.023766,0.0,0.0,0.0,13.6,0.0,0.0, +2024-03-19 16:00:00,8.584288,81.96438,23.85,1008.23865,53.018856,0.0,0.0,0.0,13.7,0.0,0.0, +2024-03-19 17:00:00,8.683318,82.056625,22.6,1008.1048,57.55083,0.0,0.0,0.0,13.8,0.0,0.0, +2024-03-19 18:00:00,9.159148,79.303535,21.8,1008.0823,60.423546,0.0,0.0,0.0,13.8,0.0,0.0, +2024-03-19 19:00:00,9.339165,77.00539,21.35,1007.8713,61.90869,0.0,0.0,0.0,13.75,0.0,0.0, +2024-03-19 20:00:00,9.148224,74.14057,20.95,1007.86017,63.036297,0.0,0.0,0.0,13.65,0.0,0.0, +2024-03-19 21:00:00,8.902247,75.027084,20.65,1008.3475,63.794567,0.0,0.0,0.0,13.55,0.0,0.0, +2024-03-19 22:00:00,8.832327,74.23275,20.4,1008.93524,64.1561,0.0,0.0,0.0,13.4,0.0,0.0, +2024-03-19 23:00:00,8.683317,75.32356,20.4,1009.332,63.73939,16.0,85.279434,9.0,13.3,0.0,0.0, +2024-03-20 00:00:00,8.94986,76.42955,21.5,1009.6609,58.992245,176.0,530.32227,54.0,13.15,0.0,0.0, +2024-03-20 01:00:00,7.472616,74.47583,25.05,1009.2634,49.665092,307.0,364.94562,146.0,13.8,0.0,0.0, +2024-03-20 02:00:00,8.065358,70.44166,27.2,1009.02484,43.736443,538.0,597.8562,166.0,13.8,0.0,0.0, +2024-03-20 03:00:00,7.7833157,69.70235,29.35,1008.78485,38.844215,752.0,831.9304,119.0,13.9,0.0,0.0, +2024-03-20 04:00:00,7.116881,70.29193,31.25,1008.2402,35.0618,871.0,906.0122,103.0,14.0,0.0,0.0, +2024-03-20 05:00:00,6.203225,69.22767,32.75,1007.4857,32.626648,902.0,901.141,112.0,14.2,0.0,0.0, +2024-03-20 06:00:00,4.9335585,72.299484,33.85,1007.0181,30.87344,864.0,892.55945,109.0,14.3,0.0,0.0, +2024-03-20 07:00:00,3.535534,81.86999,34.05,1006.329,30.728657,729.0,768.411,147.0,14.4,0.0,0.0, +2024-03-20 08:00:00,2.8160255,96.11541,33.4,1006.01434,31.969303,569.0,720.9237,124.0,14.45,0.0,0.0, +2024-03-20 09:00:00,2.385372,123.02387,32.85,1006.1985,32.97229,345.0,535.6349,112.0,14.45,0.0,0.0, +2024-03-20 10:00:00,3.354102,116.56499,32.1,1006.2782,34.397736,106.0,134.51405,76.0,14.45,0.0,0.0, +2024-03-20 11:00:00,4.86621,99.46225,31.25,1006.9505,35.86541,14.0,76.59085,8.0,14.35,0.0,0.0, +2024-03-20 12:00:00,5.261178,98.74608,30.05,1007.5138,37.91911,0.0,0.0,0.0,14.15,0.0,0.0, +2024-03-20 13:00:00,5.9908266,104.500206,28.4,1007.96594,39.600216,0.0,0.0,0.0,13.35,0.0,0.0, +2024-03-20 14:00:00,6.2289643,95.52745,27.85,1007.85187,39.966297,0.0,0.0,0.0,13.0,0.0,0.0, +2024-03-20 15:00:00,6.3198104,85.46231,27.2,1007.7353,40.842354,0.0,0.0,0.0,12.75,0.0,0.0, +2024-03-20 16:00:00,6.3788714,76.399445,26.55,1007.7175,44.417854,0.0,0.0,0.0,13.45,0.0,0.0, +2024-03-20 17:00:00,6.868042,73.93995,26.0,1007.6035,46.788376,0.0,0.0,0.0,13.75,0.0,0.0, +2024-03-20 18:00:00,7.083784,71.053406,25.35,1007.48627,48.785934,0.0,0.0,0.0,13.8,0.0,0.0, +2024-03-20 19:00:00,7.2449985,69.81411,24.65,1007.3681,50.700233,0.0,0.0,0.0,13.75,0.0,0.0, +2024-03-20 20:00:00,7.4094534,68.62931,24.0,1007.54846,51.863983,0.0,0.0,0.0,13.5,0.0,0.0, +2024-03-20 21:00:00,7.484651,67.203445,23.35,1007.92725,53.06287,0.0,0.0,0.0,13.25,0.0,0.0, +2024-03-20 22:00:00,7.2235723,68.05125,22.65,1008.5027,55.17896,0.0,0.0,0.0,13.2,0.0,0.0, +2024-03-20 23:00:00,7.3539104,67.61982,22.4,1009.19006,55.840736,16.0,86.41342,9.0,13.15,0.0,0.0, +2024-03-21 00:00:00,7.28011,69.075424,23.75,1009.6246,50.960396,176.0,539.7858,53.0,13.0,0.0,0.0, +2024-03-21 01:00:00,5.60803,68.00882,27.3,1009.5233,40.736694,401.0,735.99884,78.0,12.8,0.0,0.0, +2024-03-21 02:00:00,4.4922156,73.17851,29.8,1009.4913,35.347004,609.0,835.84766,91.0,12.85,0.0,0.0, +2024-03-21 03:00:00,2.7856774,111.03758,31.4,1009.2361,32.04488,775.0,891.65607,99.0,12.75,0.0,0.0, +2024-03-21 04:00:00,3.275668,167.66092,31.75,1008.2532,30.802412,882.0,922.28314,103.0,12.45,0.0,0.0, +2024-03-21 05:00:00,5.0990195,191.30989,31.8,1007.4608,32.155003,918.0,932.0617,104.0,13.15,0.0,0.0, +2024-03-21 06:00:00,7.1470275,197.92801,30.5,1006.8314,37.434486,881.0,923.72284,103.0,14.35,0.0,0.0, +2024-03-21 07:00:00,7.930952,193.86105,29.75,1006.2163,38.578884,774.0,897.16205,98.0,14.15,0.0,0.0, +2024-03-21 08:00:00,8.489994,195.01842,28.25,1006.077,44.024082,607.0,844.8813,89.0,14.85,0.0,0.0, +2024-03-21 09:00:00,8.30542,182.06999,26.3,1006.52026,49.196957,397.0,743.05115,77.0,14.8,0.0,0.0, +2024-03-21 10:00:00,6.8883963,170.81123,25.35,1006.89105,52.551044,170.0,539.86066,52.0,14.95,0.0,0.0, +2024-03-21 11:00:00,6.4536815,167.4712,24.55,1007.36523,58.208153,13.0,78.85331,7.0,15.8,0.0,0.0, +2024-03-21 12:00:00,6.6128664,159.64668,23.85,1007.84186,58.040123,0.0,0.0,0.0,15.1,0.0,0.0, +2024-03-21 13:00:00,5.2924476,157.79648,23.05,1008.61334,61.302135,0.0,0.0,0.0,15.2,0.0,0.0, +2024-03-21 14:00:00,3.8832977,145.49142,22.85,1008.5084,60.084057,0.0,0.0,0.0,14.7,0.0,0.0, +2024-03-21 15:00:00,3.0413814,136.33215,22.65,1008.10596,55.53998,0.0,0.0,0.0,13.3,0.0,0.0, +2024-03-21 16:00:00,2.842534,129.28938,22.95,1007.81696,45.348366,0.0,0.0,0.0,10.5,0.0,0.0, +2024-03-21 17:00:00,3.275668,121.26367,23.45,1007.63257,37.950188,0.0,0.0,0.0,8.3,0.0,0.0, +2024-03-21 18:00:00,3.8999999,112.61991,23.55,1007.5361,37.722065,0.0,0.0,0.0,8.3,0.0,0.0, +2024-03-21 19:00:00,4.6872168,101.07016,23.55,1007.43695,37.722065,0.0,0.0,0.0,8.3,0.0,0.0, +2024-03-21 20:00:00,5.7,90.0,23.6,1007.5374,37.86435,0.0,0.0,0.0,8.4,0.0,0.0, +2024-03-21 21:00:00,6.8264194,84.95764,23.75,1008.1367,38.81425,0.0,0.0,0.0,8.9,0.0,0.0, +2024-03-21 22:00:00,7.3824115,81.43095,23.55,1008.7264,42.01608,0.0,0.0,0.0,9.9,0.0,0.0, +2024-03-21 23:00:00,7.368175,82.199905,23.3,1009.5129,44.54691,15.0,87.5765,8.0,10.55,0.0,0.0, +2024-03-22 00:00:00,7.8409185,84.14409,24.65,1010.34375,41.765446,178.0,553.86487,53.0,10.8,0.0,0.0, +2024-03-22 01:00:00,7.595393,80.9098,27.3,1010.0193,33.96066,405.0,751.3564,77.0,10.05,0.0,0.0, +2024-03-22 02:00:00,7.156815,82.77578,29.45,1009.9781,29.670227,616.0,852.2181,90.0,9.9,0.0,0.0, +2024-03-22 03:00:00,6.8007355,90.84251,31.0,1009.5233,26.60554,782.0,905.52155,98.0,9.6,0.0,0.0, +2024-03-22 04:00:00,6.4381676,96.24182,32.25,1008.76245,24.125168,887.0,932.7744,102.0,9.2,0.0,0.0, +2024-03-22 05:00:00,6.067125,98.530685,33.35,1007.9973,22.29762,922.0,940.2785,104.0,8.95,0.0,0.0, +2024-03-22 06:00:00,5.7870545,99.95056,34.05,1007.32117,21.011404,883.0,931.35785,102.0,8.65,0.0,0.0, +2024-03-22 07:00:00,5.6044626,105.52418,34.2,1007.02734,20.41747,774.0,903.2401,97.0,8.35,0.0,0.0, +2024-03-22 08:00:00,5.280152,114.62355,33.7,1006.8159,20.782959,606.0,849.06335,89.0,8.2,0.0,0.0, +2024-03-22 09:00:00,5.060632,119.604355,33.2,1006.8029,21.373465,394.0,748.3245,75.0,8.2,0.0,0.0, +2024-03-22 10:00:00,4.4553337,134.09071,31.8,1007.1632,23.765654,167.0,541.7941,51.0,8.6,0.0,0.0, +2024-03-22 11:00:00,4.9396353,121.75944,30.8,1007.7321,25.072554,12.0,67.71879,7.0,8.55,0.0,0.0, +2024-03-22 12:00:00,5.8309517,120.96369,30.1,1008.6064,26.098095,0.0,0.0,0.0,8.55,0.0,0.0, +2024-03-22 13:00:00,6.6241984,118.88649,28.9,1009.368,27.779444,0.0,0.0,0.0,8.45,0.0,0.0, +2024-03-22 14:00:00,6.7230945,112.751015,28.2,1009.54767,28.157497,0.0,0.0,0.0,8.05,0.0,0.0, +2024-03-22 15:00:00,7.0342026,104.82652,27.7,1009.7325,28.308605,0.0,0.0,0.0,7.7,0.0,0.0, +2024-03-22 16:00:00,7.5538073,96.84268,27.05,1009.6158,29.30726,0.0,0.0,0.0,7.65,0.0,0.0, +2024-03-22 17:00:00,8.20061,90.698685,26.35,1009.7952,30.959116,0.0,0.0,0.0,7.85,0.0,0.0, +2024-03-22 18:00:00,9.002222,88.727,25.5,1010.16864,34.025764,0.0,0.0,0.0,8.5,0.0,0.0, +2024-03-22 19:00:00,9.213577,86.88923,24.5,1010.24054,38.119617,0.0,0.0,0.0,9.3,0.0,0.0, +2024-03-22 20:00:00,9.208692,87.5105,23.55,1010.7101,41.456768,0.0,0.0,0.0,9.7,0.0,0.0, +2024-03-22 21:00:00,9.11976,86.22779,22.7,1011.2814,43.643154,0.0,0.0,0.0,9.7,0.0,0.0, +2024-03-22 22:00:00,9.4429865,84.531,21.95,1012.1529,44.769512,0.0,0.0,0.0,9.4,0.0,0.0, +2024-03-22 23:00:00,9.662815,83.46346,21.45,1013.03156,45.541862,15.0,76.090256,9.0,9.2,0.0,0.0, +2024-03-23 00:00:00,10.394711,82.25975,22.2,1013.54877,43.503296,176.0,550.3277,53.0,9.2,0.0,0.0, +2024-03-23 01:00:00,10.14002,84.90798,24.95,1013.03015,35.03927,404.0,750.77893,78.0,8.45,0.0,0.0, +2024-03-23 02:00:00,9.861542,83.59574,26.85,1012.88385,31.204294,613.0,849.2341,91.0,8.4,0.0,0.0, +2024-03-23 03:00:00,9.353609,83.86284,28.95,1012.544,27.605453,777.0,902.2543,98.0,8.4,0.0,0.0, +2024-03-23 04:00:00,8.63713,84.68555,30.75,1011.7984,25.059324,882.0,930.2664,102.0,8.5,0.0,0.0, +2024-03-23 05:00:00,7.8230433,85.60138,32.25,1011.1435,22.93378,918.0,939.37286,104.0,8.45,0.0,0.0, +2024-03-23 06:00:00,7.2,90.0,33.2,1010.2753,21.446095,880.0,931.9203,102.0,8.25,0.0,0.0, +2024-03-23 07:00:00,6.8264194,95.04236,33.75,1010.09125,20.032146,772.0,905.4061,97.0,7.7,0.0,0.0, +2024-03-23 08:00:00,6.315061,100.95402,33.5,1009.88654,19.565605,604.0,851.6966,89.0,7.15,0.0,0.0, +2024-03-23 09:00:00,6.1684685,106.96623,32.6,1010.16064,20.300644,391.0,749.0109,75.0,6.95,0.0,0.0, +2024-03-23 10:00:00,6.0083275,108.43504,31.4,1010.52576,21.139488,163.0,539.07587,50.0,6.55,0.0,0.0, +2024-03-23 11:00:00,5.59017,116.56499,29.65,1011.17395,22.96802,11.0,55.88765,7.0,6.3,0.0,0.0, +2024-03-23 12:00:00,6.177378,119.05451,28.5,1012.03564,24.211773,0.0,0.0,0.0,6.1,0.0,0.0, +2024-03-23 13:00:00,6.5299315,117.34979,27.15,1012.4951,22.007479,0.0,0.0,0.0,3.6,0.0,0.0, +2024-03-23 14:00:00,6.76757,108.970505,26.4,1012.77234,20.607924,0.0,0.0,0.0,2.05,0.0,0.0, +2024-03-23 15:00:00,7.4330344,100.85637,25.65,1012.8508,20.126617,0.0,0.0,0.0,1.1,0.0,0.0, +2024-03-23 16:00:00,8.309633,92.75905,24.6,1012.82196,23.679937,0.0,0.0,0.0,2.5,0.0,0.0, +2024-03-23 17:00:00,8.736704,84.74629,23.55,1012.79297,27.165583,0.0,0.0,0.0,3.55,0.0,0.0, +2024-03-23 18:00:00,8.459313,83.21112,22.4,1012.5623,31.680147,0.0,0.0,0.0,4.75,0.0,0.0, +2024-03-23 19:00:00,8.28734,81.67444,21.5,1012.3388,36.375935,0.0,0.0,0.0,5.95,0.0,0.0, +2024-03-23 20:00:00,7.9075913,80.53775,20.65,1012.513,39.3973,0.0,0.0,0.0,6.35,0.0,0.0, +2024-03-23 21:00:00,7.496666,80.78905,19.85,1012.78766,42.988316,0.0,0.0,0.0,6.9,0.0,0.0, +2024-03-23 22:00:00,6.8883963,80.81124,19.2,1013.26483,45.53318,0.0,0.0,0.0,7.15,0.0,0.0, +2024-03-23 23:00:00,6.33877,83.659904,18.95,1013.6544,47.206593,15.0,89.9995,8.0,7.45,0.0,0.0, +2024-03-24 00:00:00,6.946222,83.386635,20.3,1014.1889,43.857677,182.0,578.35803,54.0,7.6,0.0,0.0, +2024-03-24 01:00:00,7.2780495,77.30042,22.8,1013.6647,34.30965,418.0,787.2686,78.0,6.25,0.0,0.0, +2024-03-24 02:00:00,6.964194,74.16755,24.85,1013.4241,29.503384,632.0,883.8327,91.0,5.85,0.0,0.0, +2024-03-24 03:00:00,6.2641835,73.300674,26.85,1012.68555,24.878212,799.0,935.01324,98.0,5.1,0.0,0.0, +2024-03-24 04:00:00,5.6044626,74.47583,28.6,1011.6417,21.240448,904.0,958.9058,103.0,4.3,0.0,0.0, +2024-03-24 05:00:00,5.0990195,78.6901,30.05,1010.4899,18.466927,937.0,965.15094,104.0,3.5,0.0,0.0, +2024-03-24 06:00:00,4.4045434,87.3975,31.05,1009.9213,16.597977,896.0,955.3921,102.0,2.8,0.0,0.0, +2024-03-24 07:00:00,3.5735137,107.92801,30.95,1009.1252,15.826166,784.0,926.5176,97.0,2.05,0.0,0.0, +2024-03-24 08:00:00,3.8078864,119.93143,30.9,1008.82605,15.424351,613.0,872.7265,89.0,1.65,0.0,0.0, +2024-03-24 09:00:00,4.294182,117.75845,30.4,1008.91223,15.815056,398.0,771.3026,76.0,1.6,0.0,0.0, +2024-03-24 10:00:00,4.118252,119.05451,29.3,1009.0812,16.668053,165.0,560.6346,50.0,1.45,0.0,0.0, +2024-03-24 11:00:00,3.3421547,128.92755,27.3,1009.5233,18.52463,10.0,57.712894,6.0,1.3,0.0,0.0, +2024-03-24 12:00:00,3.0610456,128.36752,25.8,1009.97845,20.529192,0.0,0.0,0.0,1.5,0.0,0.0, +2024-03-24 13:00:00,3.4669871,146.76828,22.3,1010.179,55.09082,0.0,0.0,0.0,12.85,0.0,0.0, +2024-03-24 14:00:00,3.0870697,114.90474,22.35,1010.1806,36.368767,0.0,0.0,0.0,6.7,0.0,0.0, +2024-03-24 15:00:00,5.0089917,93.43356,23.2,1009.80756,24.244434,0.0,0.0,0.0,1.65,0.0,0.0, +2024-03-24 16:00:00,5.500909,88.9584,23.1,1009.70557,24.654451,0.0,0.0,0.0,1.8,0.0,0.0, +2024-03-24 17:00:00,5.414795,85.76369,22.2,1009.2839,26.601875,0.0,0.0,0.0,2.1,0.0,0.0, +2024-03-24 18:00:00,5.80517,79.07724,21.65,1008.9708,27.706446,0.0,0.0,0.0,2.2,0.0,0.0, +2024-03-24 19:00:00,6.016644,74.57778,21.2,1008.56134,28.991793,0.0,0.0,0.0,2.45,0.0,0.0, +2024-03-24 20:00:00,6.4195013,71.847206,20.8,1008.55005,30.460539,0.0,0.0,0.0,2.8,0.0,0.0, +2024-03-24 21:00:00,6.5787535,70.46326,20.3,1008.8334,32.43034,0.0,0.0,0.0,3.25,0.0,0.0, +2024-03-24 22:00:00,6.4257298,69.026436,19.75,1009.11523,34.756813,0.0,0.0,0.0,3.75,0.0,0.0, +2024-03-24 23:00:00,6.307139,64.65388,19.55,1009.50635,36.320515,14.0,78.22536,8.0,4.2,0.0,0.0, +2024-03-25 00:00:00,6.2177167,62.198643,21.6,1009.5643,33.03258,180.0,584.1407,52.0,4.65,0.0,0.0, +2024-03-25 01:00:00,6.1717095,63.019848,24.65,1009.5503,29.042122,413.0,782.27765,77.0,5.45,0.0,0.0, +2024-03-25 02:00:00,5.5217752,54.58287,27.25,1009.4229,23.468279,628.0,882.6643,90.0,4.6,0.0,0.0, +2024-03-25 03:00:00,2.4839485,49.899166,28.9,1009.1696,18.648218,795.0,934.5868,97.0,2.7,0.0,0.0, +2024-03-25 04:00:00,0.6708204,243.43501,29.75,1008.59717,17.257523,900.0,958.9613,102.0,2.3,0.0,0.0, +2024-03-25 05:00:00,4.244997,226.90913,29.85,1007.8061,17.968666,933.0,965.5838,103.0,2.95,0.0,0.0, +2024-03-25 06:00:00,7.184706,214.7961,28.5,1007.2741,19.358463,893.0,957.359,101.0,2.9,0.0,0.0, +2024-03-25 07:00:00,6.762396,203.53236,27.75,1007.0558,19.727222,782.0,930.2686,96.0,2.55,0.0,0.0, +2024-03-25 08:00:00,6.8007355,197.10281,26.95,1007.1332,25.606041,611.0,877.31384,88.0,5.6,0.0,0.0, +2024-03-25 09:00:00,6.432729,191.65926,26.15,1007.2108,24.092665,394.0,772.3047,75.0,4.05,0.0,0.0, +2024-03-25 10:00:00,5.414795,184.23631,23.8,1007.5428,38.04962,162.0,558.24225,50.0,8.65,0.0,0.0, +2024-03-25 11:00:00,3.9319208,172.69434,22.55,1008.0043,48.032673,9.0,59.662724,5.0,11.0,0.0,0.0, +2024-03-25 12:00:00,3.613862,165.5792,21.8,1008.47894,54.24673,0.0,0.0,0.0,12.15,0.0,0.0, +2024-03-25 13:00:00,3.522783,145.40765,21.05,1009.4495,48.91871,0.0,0.0,0.0,9.9,0.0,0.0, +2024-03-25 14:00:00,3.2802439,142.43134,20.55,1009.7332,46.692326,0.0,0.0,0.0,8.75,0.0,0.0, +2024-03-25 15:00:00,2.842534,140.71062,19.95,1009.91437,45.277927,0.0,0.0,0.0,7.75,0.0,0.0, +2024-03-25 16:00:00,2.828427,135.0001,19.45,1009.7018,44.983913,0.0,0.0,0.0,7.2,0.0,0.0, +2024-03-25 17:00:00,2.607681,122.471176,18.95,1009.1916,43.626366,0.0,0.0,0.0,6.3,0.0,0.0, +2024-03-25 18:00:00,2.4596748,116.56499,18.3,1009.17303,46.067,0.0,0.0,0.0,6.5,0.0,0.0, +2024-03-25 19:00:00,1.9416487,101.88863,17.2,1008.943,49.37176,0.0,0.0,0.0,6.5,0.0,0.0, +2024-03-25 20:00:00,2.209072,84.805664,17.05,1008.9386,47.82259,0.0,0.0,0.0,5.9,0.0,0.0, +2024-03-25 21:00:00,2.5179358,83.15732,17.5,1009.14984,42.466743,0.0,0.0,0.0,4.6,0.0,0.0, +2024-03-25 22:00:00,3.2280025,73.81073,18.4,1009.3742,37.41195,0.0,0.0,0.0,3.6,0.0,0.0, +2024-03-25 23:00:00,4.237924,70.70986,19.45,1009.7018,33.466908,14.0,79.33844,8.0,2.95,0.0,0.0, +2024-03-26 00:00:00,5.4708314,71.89614,22.95,1010.2966,26.619808,176.0,576.22565,51.0,2.75,0.0,0.0, +2024-03-26 01:00:00,3.535534,61.26031,28.05,1010.8332,20.155317,408.0,777.2587,76.0,3.1,0.0,0.0, +2024-03-26 02:00:00,2.3706539,27.645891,31.2,1010.6196,17.23049,620.0,874.9291,89.0,3.45,0.0,0.0, +2024-03-26 03:00:00,0.92195445,257.4712,31.5,1010.3299,15.837416,786.0,926.1293,97.0,2.5,0.0,0.0, +2024-03-26 04:00:00,3.753665,228.23979,31.2,1009.42914,24.424171,889.0,950.61066,101.0,8.5,0.0,0.0, +2024-03-26 05:00:00,5.234501,223.45189,30.6,1008.81805,27.680557,921.0,956.7115,102.0,9.85,0.0,0.0, +2024-03-26 06:00:00,5.5217752,215.41714,29.95,1008.4041,29.907103,879.0,946.0203,100.0,10.45,0.0,0.0, +2024-03-26 07:00:00,5.8600345,205.25313,28.85,1008.5731,31.235544,767.0,916.3645,95.0,10.15,0.0,0.0, +2024-03-26 08:00:00,5.2773094,189.81923,28.55,1008.7636,30.737488,597.0,860.0269,88.0,9.65,0.0,0.0, +2024-03-26 09:00:00,5.2952805,190.88548,27.45,1009.0315,40.645336,383.0,756.2093,74.0,12.9,0.0,0.0, +2024-03-26 10:00:00,4.9,180.0,25.1,1009.3643,43.72963,153.0,540.4293,47.0,11.9,0.0,0.0, +2024-03-26 11:00:00,4.535416,165.96373,24.3,1010.03644,41.80649,8.0,46.305798,5.0,10.5,0.0,0.0, +2024-03-26 12:00:00,4.3863425,155.77226,23.65,1010.41516,44.792362,0.0,0.0,0.0,10.95,0.0,0.0, +2024-03-26 13:00:00,3.8948684,150.80261,23.0,1010.7937,41.861473,0.0,0.0,0.0,9.35,0.0,0.0, +2024-03-26 14:00:00,3.4999998,143.13002,22.4,1010.8762,40.441593,0.0,0.0,0.0,8.3,0.0,0.0, +2024-03-26 15:00:00,2.9068882,130.81499,22.05,1010.9656,35.663208,0.0,0.0,0.0,6.15,0.0,0.0, +2024-03-26 16:00:00,2.4413111,124.992096,21.4,1010.749,31.617105,0.0,0.0,0.0,3.85,0.0,0.0, +2024-03-26 17:00:00,2.3323808,120.96369,20.75,1010.6315,31.542805,0.0,0.0,0.0,3.25,0.0,0.0, +2024-03-26 18:00:00,2.34094,109.98319,19.6,1010.30133,33.867233,0.0,0.0,0.0,3.25,0.0,0.0, +2024-03-26 19:00:00,2.5961509,105.64231,18.65,1010.17487,36.315426,0.0,0.0,0.0,3.4,0.0,0.0, +2024-03-26 20:00:00,2.433105,99.46225,18.15,1009.96204,37.736515,0.0,0.0,0.0,3.5,0.0,0.0, +2024-03-26 21:00:00,2.7018514,92.12105,19.2,1010.09125,35.213783,0.0,0.0,0.0,3.45,0.0,0.0, +2024-03-26 22:00:00,3.3136082,84.805664,20.25,1010.2205,32.30166,0.0,0.0,0.0,3.15,0.0,0.0, +2024-03-26 23:00:00,3.794733,71.564964,21.25,1010.74457,30.37317,13.0,67.07359,8.0,3.15,0.0,0.0, +2024-03-27 00:00:00,3.5846896,59.8587,24.6,1011.3341,25.326855,172.0,563.50964,51.0,3.45,0.0,0.0, +2024-03-27 01:00:00,0.50990194,258.6901,27.8,1011.5209,22.725029,401.0,767.50323,75.0,4.6,0.0,0.0, +2024-03-27 02:00:00,1.118034,296.56497,30.55,1011.49536,20.353437,612.0,865.5053,89.0,5.3,0.0,0.0, +2024-03-27 03:00:00,2.5079873,246.50142,31.45,1011.1224,23.355375,776.0,917.6404,96.0,8.05,0.0,0.0, +2024-03-27 04:00:00,3.8600519,233.42688,31.45,1010.52704,26.54789,879.0,942.22925,101.0,9.95,0.0,0.0, +2024-03-27 05:00:00,4.967897,229.89915,31.4,1009.93054,26.623484,910.0,947.7982,102.0,9.95,0.0,0.0, +2024-03-27 06:00:00,5.4451814,224.25603,31.0,1009.32495,28.44485,868.0,937.0448,100.0,10.6,0.0,0.0, +2024-03-27 07:00:00,5.6400356,217.07317,29.75,1008.99396,30.863543,757.0,907.81287,95.0,10.75,0.0,0.0, +2024-03-27 08:00:00,4.0718546,204.67685,29.0,1008.8749,33.64908,588.0,852.71185,87.0,11.4,0.0,0.0, +2024-03-27 09:00:00,3.9217343,199.35909,28.0,1009.1455,38.97552,375.0,747.18164,73.0,12.75,0.0,0.0, +2024-03-27 10:00:00,3.4014704,181.68465,26.15,1009.2939,39.753395,148.0,532.1838,46.0,11.4,0.0,0.0, +2024-03-27 11:00:00,3.471311,168.3664,25.05,1009.46185,41.051983,7.0,31.980495,5.0,10.9,0.0,0.0, +2024-03-27 12:00:00,3.1953092,159.86362,24.45,1009.7429,43.405384,0.0,0.0,0.0,11.2,0.0,0.0, +2024-03-27 13:00:00,2.9274564,172.14677,23.5,1010.0142,38.482143,0.0,0.0,0.0,8.55,0.0,0.0, +2024-03-27 14:00:00,2.2825425,151.1893,22.35,1009.9822,44.2828,0.0,0.0,0.0,9.6,0.0,0.0, +2024-03-27 15:00:00,2.147091,152.24155,21.3,1009.8536,50.816113,0.0,0.0,0.0,10.7,0.0,0.0, +2024-03-27 16:00:00,2.0615528,140.90616,20.55,1009.2373,55.192936,0.0,0.0,0.0,11.25,0.0,0.0, +2024-03-27 17:00:00,2.3345237,136.73567,19.1,1008.9975,58.025608,0.0,0.0,0.0,10.65,0.0,0.0, +2024-03-27 18:00:00,2.5495098,131.82008,18.45,1008.78076,59.037693,0.0,0.0,0.0,10.3,0.0,0.0, +2024-03-27 19:00:00,2.5495098,101.3099,18.1,1008.47314,52.39452,0.0,0.0,0.0,8.2,0.0,0.0, +2024-03-27 20:00:00,2.4166093,114.44395,18.4,1008.2833,42.872345,0.0,0.0,0.0,5.55,0.0,0.0, +2024-03-27 21:00:00,2.5942245,117.552734,17.35,1008.5505,45.012913,0.0,0.0,0.0,5.3,0.0,0.0, +2024-03-27 22:00:00,2.7166157,96.340096,16.45,1008.92114,47.490623,0.0,0.0,0.0,5.25,0.0,0.0, +2024-03-27 23:00:00,2.236068,100.30479,17.2,1009.2405,45.59981,12.0,68.06119,7.0,5.35,0.0,0.0, +2024-03-28 00:00:00,1.0,90.0,22.0,1009.8732,31.67706,168.0,555.25323,50.0,4.4,0.0,0.0, +2024-03-28 01:00:00,1.1401755,217.87505,24.8,1009.75287,29.796839,395.0,760.0349,74.0,5.95,0.0,0.0, +2024-03-28 02:00:00,2.1931713,223.1524,27.5,1009.62787,27.585947,605.0,859.35614,88.0,7.15,0.0,0.0, +2024-03-28 03:00:00,3.5468295,220.426,28.6,1009.3601,30.23959,768.0,911.8267,95.0,9.45,0.0,0.0, +2024-03-28 04:00:00,4.4204073,217.64769,29.0,1009.0733,31.59163,870.0,937.4609,99.0,10.45,0.0,0.0, +2024-03-28 05:00:00,5.077401,212.12497,28.75,1008.6698,33.468212,902.0,943.5508,101.0,11.1,0.0,0.0, +2024-03-28 06:00:00,5.8523498,199.9832,27.95,1008.2515,38.328205,864.0,936.58936,100.0,12.45,0.0,0.0, +2024-03-28 07:00:00,6.5253353,195.10115,26.75,1008.1196,46.688175,754.0,910.2139,94.0,14.4,0.0,0.0, +2024-03-28 08:00:00,6.9231496,190.82297,25.7,1007.8929,58.29725,583.0,852.154,86.0,16.9,0.0,0.0, +2024-03-28 09:00:00,7.0114193,183.27042,24.2,1007.9506,68.76863,370.0,742.94403,73.0,18.1,0.0,0.0, +2024-03-28 10:00:00,6.4031243,178.21013,23.0,1008.01654,72.08771,144.0,523.49207,46.0,17.7,0.0,0.0, +2024-03-28 11:00:00,5.4571056,166.21838,22.2,1008.29205,66.86375,6.0,33.168587,4.0,15.75,0.0,0.0, +2024-03-28 12:00:00,5.239275,156.3706,21.65,1008.77246,64.84542,0.0,0.0,0.0,14.75,0.0,0.0, +2024-03-28 13:00:00,4.648656,161.1752,21.15,1009.55164,61.062695,0.0,0.0,0.0,13.35,0.0,0.0, +2024-03-28 14:00:00,3.9357338,152.78398,20.75,1009.838,61.973503,0.0,0.0,0.0,13.2,0.0,0.0, +2024-03-28 15:00:00,3.6069376,136.12321,20.35,1009.6283,57.187088,0.0,0.0,0.0,11.6,0.0,0.0, +2024-03-28 16:00:00,3.0232434,145.78424,19.85,1009.2173,53.566338,0.0,0.0,0.0,10.15,0.0,0.0, +2024-03-28 17:00:00,2.842534,140.71062,19.6,1008.81366,48.524414,0.0,0.0,0.0,8.45,0.0,0.0, +2024-03-28 18:00:00,2.2203603,144.16226,18.65,1009.084,46.641983,0.0,0.0,0.0,7.0,0.0,0.0, +2024-03-28 19:00:00,2.5806975,144.46223,18.55,1008.982,45.03998,0.0,0.0,0.0,6.4,0.0,0.0, +2024-03-28 20:00:00,2.842534,140.71062,18.15,1008.8711,47.797916,0.0,0.0,0.0,6.9,0.0,0.0, +2024-03-28 21:00:00,2.5455844,135.0001,17.65,1008.956,47.82389,0.0,0.0,0.0,6.45,0.0,0.0, +2024-03-28 22:00:00,2.3345237,133.26433,17.0,1009.532,47.64366,0.0,0.0,0.0,5.8,0.0,0.0, +2024-03-28 23:00:00,2.5553863,120.57915,17.35,1009.93884,42.72137,11.0,69.083565,6.0,4.55,0.0,0.0, +2024-03-29 00:00:00,2.9206164,128.04709,20.45,1010.22626,35.327023,166.0,551.6001,50.0,4.6,0.0,0.0, +2024-03-29 01:00:00,2.4698179,158.62932,23.55,1010.7101,33.358402,392.0,757.2738,74.0,6.5,0.0,0.0, +2024-03-29 02:00:00,2.8017852,177.95464,26.5,1010.39453,28.956009,600.0,856.52374,87.0,7.0,0.0,0.0, +2024-03-29 03:00:00,3.794733,198.43504,28.0,1009.8399,31.630861,763.0,908.71857,95.0,9.6,0.0,0.0, +2024-03-29 04:00:00,4.830114,207.09547,27.9,1009.5394,43.364185,864.0,933.9045,99.0,14.3,0.0,0.0, +2024-03-29 05:00:00,5.3,211.89075,27.65,1008.9376,48.303345,894.0,939.292,100.0,15.75,0.0,0.0, +2024-03-29 06:00:00,5.507268,209.35765,27.3,1008.63055,42.91929,852.0,928.758,98.0,13.6,0.0,0.0, +2024-03-29 07:00:00,5.2924476,202.20352,26.5,1008.5099,45.57444,744.0,902.94305,93.0,13.8,0.0,0.0, +2024-03-29 08:00:00,5.4120235,196.09088,25.35,1008.6766,54.266205,577.0,849.8569,85.0,15.45,0.0,0.0, +2024-03-29 09:00:00,5.124451,185.59924,24.05,1008.83923,60.17091,365.0,741.1151,72.0,15.85,0.0,0.0, +2024-03-29 10:00:00,5.124451,185.59924,22.4,1009.28925,74.289955,140.0,519.77716,45.0,17.6,0.0,0.0, +2024-03-29 11:00:00,4.8010416,178.80653,21.4,1009.658,82.260086,5.0,34.44024,3.0,18.25,0.0,0.0, +2024-03-29 12:00:00,4.669047,170.13426,20.85,1010.3368,86.15829,0.0,0.0,0.0,18.45,0.0,0.0, +2024-03-29 13:00:00,4.5122056,167.19574,20.1,1010.81116,90.2381,0.0,0.0,0.0,18.45,0.0,0.0, +2024-03-29 14:00:00,3.8483763,155.43285,19.7,1010.9984,89.92673,0.0,0.0,0.0,18.0,0.0,0.0, +2024-03-29 15:00:00,3.1780498,155.85446,19.2,1010.78546,92.47483,0.0,0.0,0.0,17.95,0.0,0.0, +2024-03-29 16:00:00,3.2015622,141.34016,18.85,1010.67645,93.04003,0.0,0.0,0.0,17.7,0.0,0.0, +2024-03-29 17:00:00,3.1827662,136.27295,18.45,1010.56586,91.55983,0.0,0.0,0.0,17.05,0.0,0.0, +2024-03-29 18:00:00,2.302173,124.3804,17.85,1010.4493,87.24633,0.0,0.0,0.0,15.7,0.0,0.0, +2024-03-29 19:00:00,1.8439089,130.60121,16.85,1010.222,84.38378,0.0,0.0,0.0,14.2,0.0,0.0, +2024-03-29 20:00:00,1.8867962,122.00535,16.55,1010.3123,79.031166,0.0,0.0,0.0,12.9,0.0,0.0, +2024-03-29 21:00:00,2.3323808,120.96369,15.5,1010.5791,79.92504,0.0,0.0,0.0,12.05,0.0,0.0, +2024-03-29 22:00:00,2.118962,109.290146,16.3,1011.0983,71.79666,0.0,0.0,0.0,11.2,0.0,0.0, +2024-03-29 23:00:00,2.184033,105.945465,17.4,1011.1304,62.231503,9.0,14.027711,8.0,10.1,0.0,0.0, +2024-03-30 00:00:00,2.4207437,128.2902,20.65,1011.8187,48.320713,125.0,182.63171,87.0,9.35,0.0,0.0, +2024-03-30 01:00:00,1.8357561,150.64235,24.8,1012.3317,37.56823,384.0,720.9773,83.0,9.35,0.0,0.0, +2024-03-30 02:00:00,2.3194828,172.56868,27.35,1012.30237,32.308517,498.0,429.364,242.0,9.35,0.0,0.0, +2024-03-30 03:00:00,3.0675724,199.0257,28.85,1011.94586,32.40227,624.0,454.85596,291.0,10.7,0.0,0.0, +2024-03-30 04:00:00,4.3382025,205.97433,28.95,1011.552,40.533512,799.0,735.45056,199.0,14.2,0.0,0.0, +2024-03-30 05:00:00,5.280152,204.62355,28.15,1011.13367,49.52675,799.0,609.484,286.0,16.6,0.0,0.0, +2024-03-30 06:00:00,6.0728908,197.24155,28.0,1010.5343,47.02443,847.0,928.2906,97.0,15.65,0.0,0.0, +2024-03-30 07:00:00,6.1814237,189.30986,27.75,1010.42847,44.745895,736.0,896.9868,93.0,14.65,0.0,0.0, +2024-03-30 08:00:00,6.129437,185.6175,27.1,1010.4107,47.084988,570.0,844.0317,85.0,14.85,0.0,0.0, +2024-03-30 09:00:00,6.6068144,182.60251,25.55,1010.26935,56.07962,361.0,741.7649,71.0,16.15,0.0,0.0, +2024-03-30 10:00:00,6.239391,173.5585,23.45,1010.4098,72.62258,126.0,381.23114,58.0,18.25,0.0,0.0, +2024-03-30 11:00:00,7.156815,164.6044,22.45,1011.2744,82.387726,4.0,17.900414,3.0,19.3,0.0,0.0, +2024-03-30 12:00:00,7.3389373,160.08351,21.6,1012.04376,90.623405,0.0,0.0,0.0,20.0,0.0,0.0, +2024-03-30 13:00:00,6.1465435,158.02544,21.25,1013.12494,87.55242,0.0,0.0,0.0,19.1,0.0,0.0, +2024-03-30 14:00:00,5.60803,148.86108,20.85,1013.21295,90.01005,0.0,0.0,0.0,19.15,0.0,0.0, +2024-03-30 15:00:00,4.8548946,147.61934,20.45,1013.1024,91.96863,0.0,0.0,0.0,19.1,0.0,0.0, +2024-03-30 16:00:00,4.494441,147.72438,20.3,1012.70123,89.68922,0.0,0.0,0.0,18.55,0.0,0.0, +2024-03-30 17:00:00,4.167733,149.74365,19.7,1012.2877,91.92451,0.0,0.0,0.0,18.35,0.0,0.0, +2024-03-30 18:00:00,3.9446166,149.53453,19.3,1012.276,93.35569,0.0,0.0,0.0,18.2,0.0,0.0, +2024-03-30 19:00:00,3.9661064,146.3099,19.05,1011.9714,93.63732,0.0,0.0,0.0,18.0,0.0,0.0, +2024-03-30 20:00:00,3.5608988,141.84273,18.75,1011.9629,93.3286,0.0,0.0,0.0,17.65,0.0,0.0, +2024-03-30 21:00:00,3.5805027,144.09018,18.4,1012.0519,93.016884,0.0,0.0,0.0,17.25,0.0,0.0, +2024-03-30 22:00:00,3.8209944,137.12111,18.15,1012.6396,91.83216,0.0,0.0,0.0,16.8,0.0,0.0, +2024-03-30 23:00:00,3.482815,140.82635,18.1,1013.035,90.3822,10.0,56.984238,6.0,16.5,0.0,0.0, +2024-03-31 00:00:00,4.2190046,148.57048,20.2,1013.591,77.795975,156.0,510.12607,51.0,16.2,0.0,0.0, +2024-03-31 01:00:00,4.429447,151.69934,22.6,1014.3534,64.6339,372.0,686.6898,87.0,15.6,0.0,0.0, +2024-03-31 02:00:00,4.560702,164.74483,25.4,1014.1338,53.759243,581.0,822.2304,93.0,15.35,0.0,0.0, +2024-03-31 03:00:00,5.4037027,177.87895,27.2,1013.48865,48.962254,740.0,875.0798,102.0,15.55,0.0,0.0, +2024-03-31 04:00:00,6.562012,187.88304,27.35,1012.8975,52.559467,838.0,897.2403,109.0,16.8,0.0,0.0, +2024-03-31 05:00:00,7.4330344,190.85637,27.1,1011.99786,55.75117,868.0,905.66425,109.0,17.5,0.0,0.0, +2024-03-31 06:00:00,7.990619,188.63705,26.5,1011.5849,55.780003,814.0,830.81525,146.0,16.95,0.0,0.0, +2024-03-31 07:00:00,7.8313475,185.1281,26.5,1011.2873,55.251972,717.0,855.88025,107.0,16.8,0.0,0.0, +2024-03-31 08:00:00,7.7058415,182.23112,26.05,1011.2749,58.196186,554.0,806.5383,94.0,17.2,0.0,0.0, +2024-03-31 09:00:00,7.410803,176.906,24.65,1011.3357,63.85123,351.0,724.27057,71.0,17.35,0.0,0.0, +2024-03-31 10:00:00,6.726812,174.88278,23.25,1011.5943,71.905945,129.0,488.48795,44.0,17.9,0.0,0.0, +2024-03-31 11:00:00,6.551336,167.66092,22.0,1011.8569,77.57347,4.0,0.0,4.0,17.9,0.0,0.0, +2024-03-31 12:00:00,6.4536815,167.4712,21.8,1012.1487,78.27943,0.0,0.0,0.0,17.85,0.0,0.0, +2024-03-31 13:00:00,5.8523498,163.11313,20.95,1012.9183,82.984505,0.0,0.0,0.0,17.95,0.0,0.0, +2024-03-31 14:00:00,4.651881,154.5367,20.7,1012.61346,84.00612,0.0,0.0,0.0,17.9,0.0,0.0, +2024-03-31 15:00:00,3.0805843,144.24602,20.3,1012.0071,83.43304,0.0,0.0,0.0,17.4,0.0,0.0, +2024-03-31 16:00:00,2.4758837,133.36346,20.25,1011.5098,76.81753,0.0,0.0,0.0,16.05,0.0,0.0, +2024-03-31 17:00:00,2.408319,131.63345,20.5,1011.0209,62.935547,0.0,0.0,0.0,13.2,0.0,0.0, +2024-03-31 18:00:00,3.0232434,124.21575,21.7,1010.9556,48.28276,0.0,0.0,0.0,10.3,0.0,0.0, +2024-03-31 19:00:00,3.8078866,113.198616,22.15,1010.7699,47.605873,0.0,0.0,0.0,10.5,0.0,0.0, +2024-03-31 20:00:00,4.632494,103.73629,22.4,1010.6778,46.88711,0.0,0.0,0.0,10.5,0.0,0.0, +2024-03-31 21:00:00,5.2392745,103.24053,22.4,1010.8762,46.73112,0.0,0.0,0.0,10.45,0.0,0.0, +2024-03-31 22:00:00,5.3600373,104.03627,22.25,1011.16956,47.316883,0.0,0.0,0.0,10.5,0.0,0.0, +2024-03-31 23:00:00,5.491812,100.491425,22.4,1011.2729,47.673977,9.0,57.890247,5.0,10.75,0.0,0.0, +2024-04-01 00:00:00,4.588028,110.409966,24.45,1011.62756,43.69388,153.0,510.84824,49.0,11.3,0.0,0.0, +2024-04-01 01:00:00,5.2810984,108.77813,26.25,1011.8754,40.443752,372.0,722.3156,74.0,11.75,0.0,0.0, +2024-04-01 02:00:00,5.408327,93.17977,29.1,1011.65497,34.01239,574.0,824.35596,87.0,11.65,0.0,0.0, +2024-04-01 03:00:00,4.509989,93.814,31.6,1011.02716,28.702587,728.0,855.33307,107.0,11.25,0.0,0.0, +2024-04-01 04:00:00,3.0413814,99.46225,33.0,1010.2703,25.653902,794.0,744.0004,192.0,10.75,0.0,0.0, +2024-04-01 05:00:00,1.9646883,165.2564,33.7,1009.2962,23.541414,807.0,679.5207,240.0,10.05,0.0,0.0, +2024-04-01 06:00:00,6.016644,195.42223,31.6,1008.84467,38.594135,766.0,682.39716,220.0,15.8,0.0,0.0, +2024-04-01 07:00:00,7.218033,190.3758,29.65,1008.69385,47.91654,620.0,491.11102,272.0,17.45,0.0,0.0, +2024-04-01 08:00:00,8.260751,186.95287,27.95,1008.74756,53.046085,501.0,600.6259,161.0,17.5,0.0,0.0, +2024-04-01 09:00:00,7.605919,177.73955,26.25,1008.8004,54.49225,309.0,515.3497,112.0,16.35,0.0,0.0, +2024-04-01 10:00:00,6.670832,167.00539,25.15,1009.1672,57.796783,114.0,359.4817,53.0,16.25,0.0,0.0, +2024-04-01 11:00:00,7.0092797,165.96373,24.3,1009.838,60.228977,3.0,19.410324,2.0,16.1,0.0,0.0, +2024-04-01 12:00:00,6.8709536,158.66307,23.7,1010.3175,58.94388,0.0,0.0,0.0,15.2,0.0,0.0, +2024-04-01 13:00:00,6.6730804,160.75038,23.15,1010.8971,59.768257,0.0,0.0,0.0,14.9,0.0,0.0, +2024-04-01 14:00:00,5.0328918,159.04414,22.55,1010.8806,65.45577,0.0,0.0,0.0,15.75,0.0,0.0, +2024-04-01 15:00:00,3.9824615,141.1155,23.0,1010.5954,57.648094,0.0,0.0,0.0,14.2,0.0,0.0, +2024-04-01 16:00:00,5.770615,117.89718,25.5,1010.36694,37.639988,0.0,0.0,0.0,10.0,0.0,0.0, +2024-04-01 17:00:00,6.484597,107.03786,25.7,1010.2735,37.445374,0.0,0.0,0.0,10.1,0.0,0.0, +2024-04-01 18:00:00,7.034913,95.7105,25.6,1010.07227,36.91945,0.0,0.0,0.0,9.8,0.0,0.0, +2024-04-01 19:00:00,7.1175838,85.97182,25.45,1009.96893,37.500145,0.0,0.0,0.0,9.9,0.0,0.0, +2024-04-01 20:00:00,7.119691,79.47927,25.4,1009.7693,38.5023,0.0,0.0,0.0,10.25,0.0,0.0, +2024-04-01 21:00:00,7.180529,77.125,25.05,1010.05695,40.50977,0.0,0.0,0.0,10.7,0.0,0.0, +2024-04-01 22:00:00,7.106335,76.15928,24.55,1010.7377,42.43678,0.0,0.0,0.0,10.95,0.0,0.0, +2024-04-01 23:00:00,6.992138,73.379166,24.25,1011.1262,43.92862,9.0,44.121838,6.0,11.2,0.0,0.0, +2024-04-02 00:00:00,6.706713,69.943825,25.9,1011.6676,40.74799,152.0,516.58374,48.0,11.55,0.0,0.0, +2024-04-02 01:00:00,6.296825,69.55037,28.5,1012.03564,36.276463,369.0,719.38403,74.0,12.1,0.0,0.0, +2024-04-02 02:00:00,5.249762,72.25524,31.3,1012.01135,30.277327,553.0,727.8891,125.0,11.8,0.0,0.0, +2024-04-02 03:00:00,3.905125,92.935616,32.65,1011.74927,24.88759,692.0,705.4226,182.0,10.0,0.0,0.0, +2024-04-02 04:00:00,3.8483763,114.56716,33.45,1010.9765,20.510578,792.0,740.90326,195.0,7.8,0.0,0.0, +2024-04-02 05:00:00,3.623534,140.59937,33.85,1010.3914,19.9205,831.0,773.9928,188.0,7.7,0.0,0.0, +2024-04-02 06:00:00,5.315073,184.31595,32.45,1009.85895,28.087368,805.0,823.8999,149.0,11.65,0.0,0.0, +2024-04-02 07:00:00,6.4938436,189.75235,30.45,1009.608,45.620323,711.0,867.2936,100.0,17.4,0.0,0.0, +2024-04-02 08:00:00,7.0035706,189.86574,29.5,1009.4833,47.57507,527.0,729.75,117.0,17.2,0.0,0.0, +2024-04-02 09:00:00,7.6006575,179.24617,27.65,1009.73126,46.930527,325.0,621.7445,90.0,15.3,0.0,0.0, +2024-04-02 10:00:00,6.8949256,160.51378,26.55,1009.999,45.884827,117.0,441.3109,44.0,13.95,0.0,0.0, +2024-04-02 11:00:00,7.3006845,156.59529,25.8,1010.6728,47.809196,3.0,0.0,3.0,13.9,0.0,0.0, +2024-04-02 12:00:00,6.8029404,155.69547,25.15,1011.2501,49.853024,0.0,0.0,0.0,13.95,0.0,0.0, +2024-04-02 13:00:00,5.770615,152.10281,24.15,1012.016,53.268272,0.0,0.0,0.0,14.05,0.0,0.0, +2024-04-02 14:00:00,4.9406476,144.0578,24.15,1012.11523,48.30604,0.0,0.0,0.0,12.55,0.0,0.0, +2024-04-02 15:00:00,5.1623635,135.78474,24.65,1011.93085,40.26273,0.0,0.0,0.0,10.25,0.0,0.0, +2024-04-02 16:00:00,5.60803,121.13891,25.35,1011.75146,30.15717,0.0,0.0,0.0,6.6,0.0,0.0, +2024-04-02 17:00:00,6.2769423,112.47948,25.25,1011.3522,30.025742,0.0,0.0,0.0,6.45,0.0,0.0, +2024-04-02 18:00:00,6.865857,102.619316,25.0,1011.3452,30.58125,0.0,0.0,0.0,6.5,0.0,0.0, +2024-04-02 19:00:00,7.333485,95.47728,24.85,1011.1427,31.498745,0.0,0.0,0.0,6.8,0.0,0.0, +2024-04-02 20:00:00,7.6164293,86.236046,24.75,1011.13983,32.679386,0.0,0.0,0.0,7.25,0.0,0.0, +2024-04-02 21:00:00,7.35459,78.231735,24.45,1011.62756,34.192024,0.0,0.0,0.0,7.65,0.0,0.0, +2024-04-02 22:00:00,7.156815,74.60439,24.0,1012.01196,35.367435,0.0,0.0,0.0,7.75,0.0,0.0, +2024-04-02 23:00:00,7.18401,73.835434,23.75,1012.4018,35.41696,8.0,14.95077,7.0,7.55,0.0,0.0, +2024-04-03 00:00:00,7.05195,71.821884,25.1,1012.9352,32.223633,133.0,296.4012,74.0,7.35,0.0,0.0, +2024-04-03 01:00:00,7.116881,70.29193,26.8,1013.47754,29.639868,342.0,529.9722,126.0,7.6,0.0,0.0, +2024-04-03 02:00:00,6.648308,68.83867,29.0,1013.53735,25.891655,498.0,475.03674,220.0,7.5,0.0,0.0, +2024-04-03 03:00:00,6.1684685,70.09616,31.1,1012.99805,22.71573,623.0,466.74228,287.0,7.35,0.0,0.0, +2024-04-03 04:00:00,5.4120235,73.90912,32.45,1012.3392,20.333237,700.0,443.68085,344.0,6.85,0.0,0.0, +2024-04-03 05:00:00,4.5177426,84.92049,33.5,1011.3747,17.953806,741.0,490.8876,335.0,5.9,0.0,0.0, +2024-04-03 06:00:00,4.1303754,96.952866,34.3,1010.5023,16.018114,736.0,576.8178,279.0,4.9,0.0,0.0, +2024-04-03 07:00:00,3.2015622,128.65984,33.4,1010.1813,15.872245,633.0,551.1458,247.0,4.05,0.0,0.0, +2024-04-03 08:00:00,3.231099,158.19853,32.65,1010.0627,16.613806,460.0,428.64026,221.0,4.1,0.0,0.0, +2024-04-03 09:00:00,3.51141,160.0168,31.15,1010.12225,19.736315,279.0,339.8815,152.0,5.35,0.0,0.0, +2024-04-03 10:00:00,2.8017852,145.17545,29.6,1010.3788,19.560778,91.0,142.73433,68.0,3.95,0.0,0.0, +2024-04-03 11:00:00,3.1890438,131.18582,28.6,1010.74896,17.670965,2.0,0.0,2.0,1.7,0.0,0.0, +2024-04-03 12:00:00,3.5608988,128.15727,27.7,1011.1212,17.583204,0.0,0.0,0.0,0.9,0.0,0.0, +2024-04-03 13:00:00,3.5846896,112.98875,26.15,1011.2778,20.108267,0.0,0.0,0.0,1.5,0.0,0.0, +2024-04-03 14:00:00,4.318565,95.31445,25.9,1011.37,19.688482,0.0,0.0,0.0,1.0,0.0,0.0, +2024-04-03 15:00:00,4.9,90.0,25.3,1011.25433,19.538477,0.0,0.0,0.0,0.4,0.0,0.0, +2024-04-03 16:00:00,5.5326304,83.77426,24.8,1010.9431,18.788591,0.0,0.0,0.0,-0.55,0.0,0.0, +2024-04-03 17:00:00,6.2169123,78.87085,24.6,1010.63983,19.01448,0.0,0.0,0.0,-0.55,0.0,0.0, +2024-04-03 18:00:00,6.705222,72.64589,24.2,1010.5295,20.123291,0.0,0.0,0.0,-0.1,0.0,0.0, +2024-04-03 19:00:00,6.741662,69.14547,23.6,1010.31464,21.16715,0.0,0.0,0.0,0.1,0.0,0.0, +2024-04-03 20:00:00,6.7230945,67.24899,23.0,1010.2978,22.027773,0.0,0.0,0.0,0.15,0.0,0.0, +2024-04-03 21:00:00,6.670832,66.12472,22.5,1010.4823,22.37903,0.0,0.0,0.0,-0.05,0.0,0.0, +2024-04-03 22:00:00,6.9857,66.37061,21.95,1010.7643,22.890387,0.0,0.0,0.0,-0.2,0.0,0.0, +2024-04-03 23:00:00,7.077429,66.69509,21.65,1010.75604,23.65453,8.0,45.60483,5.0,0.0,0.0,0.0, +2024-04-04 00:00:00,6.7230945,67.24899,23.3,1011.1991,22.427965,155.0,533.582,50.0,0.65,0.0,0.0, +2024-04-04 01:00:00,6.842514,63.060555,25.7,1011.067,21.7875,388.0,780.14844,72.0,2.25,0.0,0.0, +2024-04-04 02:00:00,6.551336,58.736336,28.15,1011.0345,18.798452,598.0,880.82056,85.0,2.2,0.0,0.0, +2024-04-04 03:00:00,5.6035705,55.175446,30.3,1010.695,15.792472,760.0,929.174,94.0,1.5,0.0,0.0, +2024-04-04 04:00:00,4.5221677,54.90411,32.0,1009.748,13.533615,859.0,952.5018,98.0,0.7,0.0,0.0, +2024-04-04 05:00:00,3.720215,53.74608,33.25,1008.6893,11.817495,888.0,959.49316,98.0,-0.2,0.0,0.0, +2024-04-04 06:00:00,1.7029387,86.63361,33.1,1007.69336,11.079146,843.0,947.60315,96.0,-1.2,0.0,0.0, +2024-04-04 07:00:00,2.5179358,186.84268,32.65,1007.1856,12.002861,730.0,917.85,91.0,-0.45,0.0,0.0, +2024-04-04 08:00:00,5.217279,192.17145,30.3,1006.82605,25.453222,558.0,858.5041,83.0,8.35,0.0,0.0, +2024-04-04 09:00:00,5.375872,189.63747,28.9,1006.7888,32.201237,342.0,741.8871,68.0,10.65,0.0,0.0, +2024-04-04 10:00:00,5.4589376,188.42688,26.4,1006.82074,42.950848,118.0,502.27045,39.0,12.8,0.0,0.0, +2024-04-04 11:00:00,5.115662,175.51547,25.3,1007.1875,46.295177,2.0,0.0,1.0,12.95,0.0,0.0, +2024-04-04 12:00:00,3.1780498,155.85446,24.65,1007.4673,41.904476,0.0,0.0,0.0,10.85,0.0,0.0, +2024-04-04 13:00:00,2.6076808,94.39862,23.3,1007.7276,21.553669,0.0,0.0,0.0,0.1,0.0,0.0, +2024-04-04 14:00:00,4.414748,76.908104,24.35,1007.6572,15.183234,0.0,0.0,0.0,-3.8,0.0,0.0, +2024-04-04 15:00:00,5.3600373,75.96373,24.0,1007.3501,15.505404,0.0,0.0,0.0,-3.8,0.0,0.0, +2024-04-04 16:00:00,5.7584724,69.67678,23.6,1006.8431,16.062248,0.0,0.0,0.0,-3.65,0.0,0.0, +2024-04-04 17:00:00,6.35059,63.8385,23.65,1006.4477,16.56071,0.0,0.0,0.0,-3.2,0.0,0.0, +2024-04-04 18:00:00,7.0491138,58.3393,23.8,1006.4517,17.35152,0.0,0.0,0.0,-2.45,0.0,0.0, +2024-04-04 19:00:00,7.323933,55.0079,23.5,1006.146,18.81077,0.0,0.0,0.0,-1.6,0.0,0.0, +2024-04-04 20:00:00,7.6216793,51.92717,23.25,1005.9407,20.028444,0.0,0.0,0.0,-0.95,0.0,0.0, +2024-04-04 21:00:00,7.798718,49.15974,23.0,1006.03284,20.708061,0.0,0.0,0.0,-0.7,0.0,0.0, +2024-04-04 22:00:00,7.451845,49.899166,22.55,1006.3181,21.28078,0.0,0.0,0.0,-0.7,0.0,0.0, +2024-04-04 23:00:00,7.5166483,49.316113,22.35,1006.70917,21.384405,8.0,46.385223,5.0,-0.8,0.0,0.0, +2024-04-05 00:00:00,7.017834,49.044586,24.45,1007.0648,18.97727,153.0,550.1057,46.0,-0.7,0.0,0.0, +2024-04-05 01:00:00,7.359348,42.797382,27.5,1007.2472,16.31087,375.0,755.24243,71.0,-0.3,0.0,0.0, +2024-04-05 02:00:00,7.080254,36.38445,30.7,1007.1344,13.803135,579.0,854.0629,84.0,-0.05,0.0,0.0, +2024-04-05 03:00:00,5.1478148,7.8152027,33.6,1006.8134,12.146671,737.0,905.2444,91.0,0.45,0.0,0.0, +2024-04-05 04:00:00,5.178803,259.9921,31.9,1006.37244,20.477337,834.0,928.99255,95.0,6.5,0.0,0.0, +2024-04-05 05:00:00,5.6859474,246.13982,29.55,1006.0125,26.127743,863.0,935.8289,96.0,8.1,0.0,0.0, +2024-04-05 06:00:00,4.925444,264.17374,29.55,1005.81415,27.21179,818.0,923.1195,94.0,8.7,0.0,0.0, +2024-04-05 07:00:00,5.314132,250.20103,28.35,1005.68304,29.169802,708.0,893.0704,90.0,8.7,0.0,0.0, +2024-04-05 08:00:00,3.6769552,247.61981,27.35,1005.85455,31.238192,539.0,836.1044,80.0,8.85,0.0,0.0, +2024-04-05 09:00:00,3.3600597,233.47105,25.65,1005.8082,43.88165,329.0,717.84735,67.0,12.45,0.0,0.0, +2024-04-05 10:00:00,2.3600848,216.38445,24.0,1006.06067,57.519207,111.0,477.2469,37.0,15.1,0.0,0.0, +2024-04-05 11:00:00,1.6763055,197.35411,22.65,1006.6182,70.002655,2.0,0.0,2.0,16.9,0.0,0.0, +2024-04-05 12:00:00,1.6124516,187.12492,21.9,1006.9941,76.82908,0.0,0.0,0.0,17.65,0.0,0.0, +2024-04-05 13:00:00,1.9235383,171.02745,20.3,1007.3457,90.53488,0.0,0.0,0.0,18.7,0.0,0.0, +2024-04-05 14:00:00,1.8027756,160.55988,19.95,1007.3358,91.65196,0.0,0.0,0.0,18.55,0.0,0.0, +2024-04-05 15:00:00,1.9924859,162.47433,19.75,1007.3301,91.06684,0.0,0.0,0.0,18.25,0.0,0.0, +2024-04-05 16:00:00,1.9416487,191.88864,19.45,1007.1233,93.65607,0.0,0.0,0.0,18.4,0.0,0.0, +2024-04-05 17:00:00,1.8027756,146.3099,19.05,1006.71515,95.41788,0.0,0.0,0.0,18.3,0.0,0.0, +2024-04-05 18:00:00,1.9104972,132.87889,18.3,1006.3962,96.602295,0.0,0.0,0.0,17.75,0.0,0.0, +2024-04-05 19:00:00,1.2369317,104.03627,18.55,1006.00684,95.40074,0.0,0.0,0.0,17.8,0.0,0.0, +2024-04-05 20:00:00,1.104536,84.805664,17.8,1005.7867,96.28454,0.0,0.0,0.0,17.2,0.0,0.0, +2024-04-05 21:00:00,0.22360681,63.435013,19.35,1005.9303,94.240364,0.0,0.0,0.0,18.4,0.0,0.0, +2024-04-05 22:00:00,0.5,53.13002,18.15,1006.1934,97.20924,0.0,0.0,0.0,17.7,0.0,0.0, +2024-04-05 23:00:00,0.64031243,38.65983,18.95,1006.6131,96.01496,5.0,15.730554,4.0,18.3,0.0,0.0, +2024-04-06 00:00:00,0.86023253,35.537766,19.5,1007.0257,97.237465,89.0,161.26572,58.0,19.05,0.0,0.0, +2024-04-06 01:00:00,0.31622776,288.43503,21.4,1007.3769,78.468216,307.0,447.5278,128.0,17.5,0.0,0.0, +2024-04-06 02:00:00,1.9697715,246.0375,23.5,1007.237,70.38482,537.0,702.2315,132.0,17.8,0.0,0.0, +2024-04-06 03:00:00,3.0413814,242.5925,24.55,1007.0677,65.87559,708.0,820.6118,125.0,17.75,0.0,0.0, +2024-04-06 04:00:00,3.4885528,242.7005,25.15,1006.2906,62.56422,807.0,869.9591,118.0,17.5,0.0,0.0, +2024-04-06 05:00:00,4.031129,240.2552,25.45,1005.60443,59.733944,843.0,903.4018,106.0,17.05,0.0,0.0, +2024-04-06 06:00:00,4.243819,235.56094,25.25,1005.3015,61.41225,799.0,889.44794,105.0,17.3,0.0,0.0, +2024-04-06 07:00:00,4.172529,225.97093,25.15,1005.1003,60.809578,688.0,857.8438,98.0,17.05,0.0,0.0, +2024-04-06 08:00:00,3.2557642,222.5104,24.6,1005.0852,60.106907,526.0,811.54443,84.0,16.35,0.0,0.0, +2024-04-06 09:00:00,3.8209944,222.87889,23.5,1004.95575,72.85947,320.0,701.5689,67.0,18.35,0.0,0.0, +2024-04-06 10:00:00,2.5238857,213.6901,21.95,1005.30927,81.81414,105.0,451.5076,36.0,18.7,0.0,0.0, +2024-04-06 11:00:00,2.9206164,218.04709,21.35,1005.88763,91.452934,1.0,0.0,1.0,19.9,0.0,0.0, +2024-04-06 12:00:00,1.3038404,175.60138,20.65,1006.4631,93.711975,0.0,0.0,0.0,19.6,0.0,0.0, +2024-04-06 13:00:00,2.0615528,165.96373,20.15,1007.1432,93.98118,0.0,0.0,0.0,19.15,0.0,0.0, +2024-04-06 14:00:00,2.0,143.13002,19.85,1007.23376,94.55633,0.0,0.0,0.0,18.95,0.0,0.0, +2024-04-06 15:00:00,1.5524175,165.06853,19.25,1006.7208,95.12634,0.0,0.0,0.0,18.45,0.0,0.0, +2024-04-06 16:00:00,1.6124516,150.2552,18.65,1006.20795,96.00604,0.0,0.0,0.0,18.0,0.0,0.0, +2024-04-06 17:00:00,1.5811387,145.30478,18.4,1005.9032,95.69665,0.0,0.0,0.0,17.7,0.0,0.0, +2024-04-06 18:00:00,1.6970563,135.0001,17.85,1005.689,95.98196,0.0,0.0,0.0,17.2,0.0,0.0, +2024-04-06 19:00:00,2.3345237,136.73567,17.05,1005.26935,96.57009,0.0,0.0,0.0,16.5,0.0,0.0, +2024-04-06 20:00:00,1.8439089,130.60121,17.3,1004.78076,96.57658,0.0,0.0,0.0,16.75,0.0,0.0, +2024-04-06 21:00:00,1.5524175,104.93147,16.9,1004.8682,98.426094,0.0,0.0,0.0,16.65,0.0,0.0, +2024-04-06 22:00:00,1.0049876,95.7105,17.85,1005.39154,98.12752,0.0,0.0,0.0,17.55,0.0,0.0, +2024-04-06 23:00:00,1.5297059,101.3099,18.2,1005.69916,98.44161,4.0,0.0,4.0,17.95,0.0,0.0, +2024-04-07 00:00:00,1.431782,114.775116,19.2,1006.12427,97.53551,88.0,152.67538,59.0,18.8,0.0,0.0, +2024-04-07 01:00:00,1.9235383,171.02745,21.2,1006.77606,84.85527,191.0,140.90982,135.0,18.55,0.0,0.0, +2024-04-07 02:00:00,2.34094,199.9832,23.65,1006.8444,71.52763,496.0,578.5357,164.0,18.2,0.0,0.0, +2024-04-07 03:00:00,3.6891732,212.82854,25.0,1006.5841,65.76233,695.0,798.87317,130.0,18.15,0.0,0.0, +2024-04-07 04:00:00,4.022437,214.8754,25.6,1006.10455,63.059097,805.0,891.6017,102.0,18.05,0.0,0.0, +2024-04-07 05:00:00,4.8600416,216.6342,25.7,1005.51227,61.320614,833.0,901.4916,101.0,17.7,0.0,0.0, +2024-04-07 06:00:00,4.909175,213.36638,25.7,1004.9171,60.743458,794.0,903.1238,93.0,17.55,0.0,0.0, +2024-04-07 07:00:00,5.1107726,210.57915,25.35,1004.6097,64.00269,690.0,883.6536,86.0,18.05,0.0,0.0, +2024-04-07 08:00:00,5.0089917,206.05344,24.4,1004.2864,69.45762,521.0,816.22424,80.0,18.45,0.0,0.0, +2024-04-07 09:00:00,5.147815,209.0545,23.35,1004.1582,80.2291,312.0,693.3241,65.0,19.75,0.0,0.0, +2024-04-07 10:00:00,5.1078367,203.05133,21.6,1004.1093,88.67825,100.0,425.0063,36.0,19.65,0.0,0.0, +2024-04-07 11:00:00,2.5961509,195.6423,21.2,1004.99084,90.31535,1.0,0.0,1.0,19.55,0.0,0.0, +2024-04-07 12:00:00,3.4539833,157.8905,21.2,1005.6851,92.01239,0.0,0.0,0.0,19.85,0.0,0.0, +2024-04-07 13:00:00,2.6925824,148.67137,20.6,1005.86646,91.121864,0.0,0.0,0.0,19.1,0.0,0.0, +2024-04-07 14:00:00,2.236068,153.43501,19.9,1006.1445,90.79161,0.0,0.0,0.0,18.35,0.0,0.0, +2024-04-07 15:00:00,2.3323808,149.03632,19.5,1006.03394,91.91266,0.0,0.0,0.0,18.15,0.0,0.0, +2024-04-07 16:00:00,2.3345237,136.73567,19.25,1005.33246,91.034225,0.0,0.0,0.0,17.75,0.0,0.0, +2024-04-07 17:00:00,1.9924859,107.52566,18.55,1004.9159,87.86748,0.0,0.0,0.0,16.5,0.0,0.0, +2024-04-07 18:00:00,2.118962,109.290146,18.3,1004.9086,79.02621,0.0,0.0,0.0,14.6,0.0,0.0, +2024-04-07 19:00:00,2.9274564,97.853226,19.95,1004.658,60.583973,0.0,0.0,0.0,12.1,0.0,0.0, +2024-04-07 20:00:00,5.6293874,77.692,22.8,1004.53973,35.877613,0.0,0.0,0.0,6.9,0.0,0.0, +2024-04-07 21:00:00,7.35459,78.231735,23.95,1005.0675,24.972908,0.0,0.0,0.0,2.7,0.0,0.0, +2024-04-07 22:00:00,7.8447433,78.97659,23.95,1005.76184,22.92557,0.0,0.0,0.0,1.5,0.0,0.0, +2024-04-07 23:00:00,7.5286117,73.009094,24.5,1006.37213,22.023367,6.0,32.601513,4.0,1.4,0.0,0.0, +2024-04-08 00:00:00,7.5272837,70.6021,26.45,1007.41705,19.68455,114.0,207.8252,75.0,1.45,0.0,0.0, +2024-04-08 01:00:00,8.246211,75.96373,28.35,1007.9646,17.993748,282.0,301.38287,163.0,1.75,0.0,0.0, +2024-04-08 02:00:00,8.640023,73.87235,31.35,1008.0444,15.1959305,551.0,793.383,98.0,1.8,0.0,0.0, +2024-04-08 03:00:00,8.728115,71.98014,33.55,1007.8042,13.517676,695.0,796.84906,134.0,1.9,0.0,0.0, +2024-04-08 04:00:00,8.633076,71.77483,34.85,1007.34174,12.438935,786.0,808.99963,151.0,1.75,0.0,0.0, +2024-04-08 05:00:00,7.9075913,76.84245,35.3,1006.7581,11.050577,690.0,470.21298,310.0,0.45,0.0,0.0, +2024-04-08 06:00:00,7.7317524,84.805664,35.5,1006.1678,9.94432,658.0,459.77997,303.0,-0.85,0.0,0.0, +2024-04-08 07:00:00,7.6,90.0,35.35,1005.86633,10.323793,571.0,435.76596,275.0,-0.45,0.0,0.0, +2024-04-08 08:00:00,6.9584484,97.43131,35.1,1006.0582,10.429533,473.0,617.6117,142.0,-0.5,0.0,0.0, +2024-04-08 09:00:00,7.1589108,102.09474,34.15,1006.3315,11.401647,303.0,625.197,83.0,0.0,0.0,0.0, +2024-04-08 10:00:00,5.060632,119.604355,32.25,1006.8775,13.343547,99.0,424.66614,36.0,0.7,0.0,0.0, +2024-04-08 11:00:00,4.382921,124.77791,29.6,1007.2043,16.033201,1.0,0.0,1.0,1.15,0.0,0.0, +2024-04-08 12:00:00,4.7127485,107.281586,28.8,1007.6791,17.157309,0.0,0.0,0.0,1.45,0.0,0.0, +2024-04-08 13:00:00,6.332456,111.297424,28.55,1008.56525,18.170889,0.0,0.0,0.0,2.05,0.0,0.0, +2024-04-08 14:00:00,6.5802736,106.78272,28.2,1009.1509,19.421915,0.0,0.0,0.0,2.7,0.0,0.0, +2024-04-08 15:00:00,5.7870545,108.121956,27.0,1009.11865,21.508387,0.0,0.0,0.0,3.15,0.0,0.0, +2024-04-08 16:00:00,7.116881,109.70808,25.75,1009.0844,25.459862,0.0,0.0,0.0,4.5,0.0,0.0, +2024-04-08 17:00:00,7.227724,104.420815,25.45,1008.87775,28.467741,0.0,0.0,0.0,5.85,0.0,0.0, +2024-04-08 18:00:00,7.0035706,99.865746,24.95,1008.66583,29.327866,0.0,0.0,0.0,5.85,0.0,0.0, +2024-04-08 19:00:00,7.125307,94.83033,24.5,1008.45514,29.507761,0.0,0.0,0.0,5.55,0.0,0.0, +2024-04-08 20:00:00,7.5006666,90.763885,24.2,1008.34735,29.423887,0.0,0.0,0.0,5.25,0.0,0.0, +2024-04-08 21:00:00,8.0025,88.56794,23.9,1008.43835,30.167551,0.0,0.0,0.0,5.35,0.0,0.0, +2024-04-08 22:00:00,8.130191,85.060875,23.5,1008.6256,32.214138,0.0,0.0,0.0,5.95,0.0,0.0, +2024-04-08 23:00:00,8.188407,81.57312,23.35,1009.1175,33.416443,6.0,16.60151,5.0,6.35,0.0,0.0, +2024-04-09 00:00:00,7.7103825,80.29342,24.45,1009.64374,32.150463,134.0,447.76743,51.0,6.75,0.0,0.0, +2024-04-09 01:00:00,8.256513,73.101265,26.65,1009.7043,26.700825,353.0,706.1573,76.0,5.95,0.0,0.0, +2024-04-09 02:00:00,8.065358,70.44166,28.7,1009.75946,23.76763,559.0,837.9321,83.0,6.0,0.0,0.0, +2024-04-09 03:00:00,7.615773,66.80139,30.6,1009.3141,21.011023,714.0,886.1586,93.0,5.8,0.0,0.0, +2024-04-09 04:00:00,6.844706,64.93257,32.1,1008.56,18.69991,809.0,916.3647,93.0,5.35,0.0,0.0, +2024-04-09 05:00:00,5.727128,65.22488,33.2,1007.39825,16.798273,835.0,922.5648,93.0,4.7,0.0,0.0, +2024-04-09 06:00:00,4.661545,67.28555,33.9,1006.7218,15.542978,791.0,910.15155,92.0,4.15,0.0,0.0, +2024-04-09 07:00:00,3.2984846,75.96373,34.25,1006.1357,14.459437,680.0,878.5319,87.0,3.4,0.0,0.0, +2024-04-09 08:00:00,2.2135942,108.43504,32.6,1005.9938,16.370846,452.0,596.3423,135.0,3.85,0.0,0.0, +2024-04-09 09:00:00,3.306055,183.46815,31.2,1006.0561,20.515251,269.0,529.454,85.0,5.95,0.0,0.0, +2024-04-09 10:00:00,4.6173587,175.03035,28.75,1006.289,30.179577,83.0,328.49203,35.0,9.55,0.0,0.0, +2024-04-09 11:00:00,3.7443287,145.88548,28.05,1006.6668,23.596788,0.0,0.0,0.0,5.35,0.0,0.0, +2024-04-09 12:00:00,5.2000003,112.61991,28.1,1007.06494,21.262266,0.0,0.0,0.0,3.9,0.0,0.0, +2024-04-09 13:00:00,4.924429,113.962494,26.3,1007.71063,25.787266,0.0,0.0,0.0,5.15,0.0,0.0, +2024-04-09 14:00:00,5.80517,100.92277,26.0,1007.70276,27.55423,0.0,0.0,0.0,5.85,0.0,0.0, +2024-04-09 15:00:00,7.200694,90.79571,25.85,1007.59937,28.97485,0.0,0.0,0.0,6.45,0.0,0.0, +2024-04-09 16:00:00,8.238932,84.4279,25.45,1007.1915,29.773003,0.0,0.0,0.0,6.5,0.0,0.0, +2024-04-09 17:00:00,8.5,81.202675,24.9,1007.0772,30.976473,0.0,0.0,0.0,6.6,0.0,0.0, +2024-04-09 18:00:00,8.94986,76.42955,24.3,1006.9616,32.329464,0.0,0.0,0.0,6.7,0.0,0.0, +2024-04-09 19:00:00,8.91852,72.37762,23.75,1007.1449,33.415195,0.0,0.0,0.0,6.7,0.0,0.0, +2024-04-09 20:00:00,8.28734,70.253075,23.15,1007.12805,34.885357,0.0,0.0,0.0,6.8,0.0,0.0, +2024-04-09 21:00:00,8.263776,68.71353,22.6,1007.50964,36.816574,0.0,0.0,0.0,7.1,0.0,0.0, +2024-04-09 22:00:00,8.207923,67.80967,22.1,1007.99164,38.60785,0.0,0.0,0.0,7.35,0.0,0.0, +2024-04-09 23:00:00,8.246211,67.16631,21.8,1008.2806,39.99764,6.0,33.82738,4.0,7.6,0.0,0.0, +2024-04-10 00:00:00,7.9479556,68.60013,23.15,1008.8142,37.226242,136.0,513.4725,42.0,7.75,0.0,0.0, +2024-04-10 01:00:00,8.300603,58.799557,25.65,1008.4864,32.48882,351.0,726.25806,68.0,7.95,0.0,0.0, +2024-04-10 02:00:00,7.907591,57.917847,28.2,1008.65485,27.49489,549.0,829.88336,80.0,7.7,0.0,0.0, +2024-04-10 03:00:00,7.017834,57.215733,30.6,1008.6196,23.214424,704.0,883.13904,88.0,7.25,0.0,0.0, +2024-04-10 04:00:00,5.882177,54.688713,32.5,1008.0744,19.999447,798.0,907.7402,92.0,6.65,0.0,0.0, +2024-04-10 05:00:00,4.3011627,54.46224,33.8,1007.31445,17.292189,824.0,914.54706,92.0,5.6,0.0,0.0, +2024-04-10 06:00:00,1.9235383,81.02746,32.9,1006.79504,17.444904,561.0,505.31122,175.0,5.0,0.0,0.0, +2024-04-10 07:00:00,3.026549,187.59456,32.3,1006.48193,19.745308,540.0,590.42,144.0,6.3,0.0,0.0, +2024-04-10 08:00:00,6.152235,187.47147,30.4,1006.53125,30.331182,380.0,487.46854,123.0,11.05,0.0,0.0, +2024-04-10 09:00:00,8.01561,183.57626,27.8,1006.561,43.4772,201.0,338.0174,85.0,14.25,0.0,0.0, +2024-04-10 10:00:00,8.13941,169.3804,26.2,1006.91455,43.889565,49.0,125.08722,31.0,12.95,0.0,0.0, +2024-04-10 11:00:00,7.5610843,159.88733,25.25,1007.28534,46.7375,0.0,0.0,0.0,13.05,0.0,0.0, +2024-04-10 12:00:00,6.809552,150.04648,25.05,1007.478,45.62505,0.0,0.0,0.0,12.5,0.0,0.0, +2024-04-10 13:00:00,4.8754487,115.513824,25.4,1008.08307,35.885,0.0,0.0,0.0,9.2,0.0,0.0, +2024-04-10 14:00:00,6.5115285,100.619606,26.15,1008.20276,26.749456,0.0,0.0,0.0,5.55,0.0,0.0, +2024-04-10 15:00:00,7.1028166,91.6135,25.7,1007.8929,26.71936,0.0,0.0,0.0,5.15,0.0,0.0, +2024-04-10 16:00:00,7.5059977,87.70944,25.25,1007.58295,26.969883,0.0,0.0,0.0,4.9,0.0,0.0, +2024-04-10 17:00:00,7.6164293,86.236046,24.75,1007.4698,27.68933,0.0,0.0,0.0,4.85,0.0,0.0, +2024-04-10 18:00:00,7.7491937,70.39582,24.15,1007.7509,28.802225,0.0,0.0,0.0,4.9,0.0,0.0, +2024-04-10 19:00:00,7.4,71.075264,23.9,1007.744,29.339964,0.0,0.0,0.0,4.95,0.0,0.0, +2024-04-10 20:00:00,6.6098413,72.38734,23.2,1007.62555,30.711067,0.0,0.0,0.0,5.0,0.0,0.0, +2024-04-10 21:00:00,4.438468,67.47939,22.25,1008.0949,32.87379,0.0,0.0,0.0,5.15,0.0,0.0, +2024-04-10 22:00:00,2.9068882,63.435013,21.5,1008.76825,35.016567,0.0,0.0,0.0,5.4,0.0,0.0, +2024-04-10 23:00:00,3.0675724,70.974304,21.1,1009.0545,36.63989,5.0,34.476494,3.0,5.7,0.0,0.0, +2024-04-11 00:00:00,4.2953463,65.22488,23.5,1009.4191,32.88803,134.0,503.41815,43.0,6.25,0.0,0.0, +2024-04-11 01:00:00,3.5608988,38.157276,26.15,1009.59143,33.751064,212.0,279.02524,104.0,8.95,0.0,0.0, +2024-04-11 02:00:00,4.0249224,26.564985,28.9,1009.46716,29.51899,508.0,683.0328,124.0,9.35,0.0,0.0, +2024-04-11 03:00:00,3.4,28.072395,30.45,1009.11194,26.36906,693.0,871.47125,88.0,9.0,0.0,0.0, +2024-04-11 04:00:00,1.2529964,61.389645,31.2,1008.4371,23.770609,788.0,900.34717,91.0,8.1,0.0,0.0, +2024-04-11 05:00:00,2.4186773,187.12492,30.95,1007.9347,23.464584,741.0,750.7863,143.0,7.7,0.0,0.0, +2024-04-11 06:00:00,5.0921507,199.50253,29.15,1007.58905,36.458015,709.0,756.8199,134.0,12.75,0.0,0.0, +2024-04-11 07:00:00,5.6921,198.43504,28.4,1007.56915,39.600216,548.0,627.22656,130.0,13.35,0.0,0.0, +2024-04-11 08:00:00,5.9439044,192.63336,27.85,1007.65344,39.7059,447.0,640.7061,112.0,12.9,0.0,0.0, +2024-04-11 09:00:00,5.4589376,188.42688,26.45,1007.6154,44.6805,252.0,519.4131,76.0,13.45,0.0,0.0, +2024-04-11 10:00:00,5.508176,176.87793,24.9,1007.9699,49.625324,74.0,324.65732,28.0,13.65,0.0,0.0, +2024-04-11 11:00:00,4.554119,160.76924,24.3,1008.0527,47.094315,0.0,0.0,0.0,12.3,0.0,0.0, +2024-04-11 12:00:00,4.6238513,158.42863,23.95,1008.4399,47.936207,0.0,0.0,0.0,12.25,0.0,0.0, +2024-04-11 13:00:00,3.6235344,152.02061,23.2,1008.71655,54.78031,0.0,0.0,0.0,13.6,0.0,0.0, +2024-04-11 14:00:00,2.8071337,85.91447,22.65,1008.8995,50.171417,0.0,0.0,0.0,11.75,0.0,0.0, +2024-04-11 15:00:00,3.0870697,65.09527,22.2,1008.5896,45.44423,0.0,0.0,0.0,9.85,0.0,0.0, +2024-04-11 16:00:00,4.743417,34.69522,22.45,1008.29895,51.289326,0.0,0.0,0.0,11.9,0.0,0.0, +2024-04-11 17:00:00,5.1623635,45.78474,21.65,1008.27655,56.38802,0.0,0.0,0.0,12.6,0.0,0.0, +2024-04-11 18:00:00,5.481788,51.666626,21.2,1008.46216,58.344715,0.0,0.0,0.0,12.7,0.0,0.0, +2024-04-11 19:00:00,5.8137765,49.185013,20.6,1008.5443,61.13476,0.0,0.0,0.0,12.85,0.0,0.0, +2024-04-11 20:00:00,5.544367,50.856018,20.05,1008.5288,64.49903,0.0,0.0,0.0,13.15,0.0,0.0, +2024-04-11 21:00:00,5.220153,53.569054,19.6,1009.012,65.89205,0.0,0.0,0.0,13.05,0.0,0.0, +2024-04-11 22:00:00,4.992995,57.264786,19.25,1009.29944,66.25006,0.0,0.0,0.0,12.8,0.0,0.0, +2024-04-11 23:00:00,4.5617976,63.996716,19.05,1009.5912,65.99125,5.0,35.156513,3.0,12.55,0.0,0.0, +2024-04-12 00:00:00,4.4598203,70.346085,20.85,1009.5434,58.06891,131.0,498.7204,42.0,12.3,0.0,0.0, +2024-04-12 01:00:00,3.2449963,146.3099,22.65,1010.4864,55.90308,333.0,673.7,74.0,13.4,0.0,0.0, +2024-04-12 02:00:00,2.302173,145.6196,24.65,1010.2446,48.91702,522.0,765.3215,94.0,13.2,0.0,0.0, +2024-04-12 03:00:00,2.1931713,136.8476,26.55,1009.4038,42.29478,685.0,858.2649,92.0,12.7,0.0,0.0, +2024-04-12 04:00:00,2.4839485,139.89915,28.15,1008.0585,34.886356,777.0,883.8174,96.0,11.2,0.0,0.0, +2024-04-12 05:00:00,3.0,143.13002,29.05,1006.892,28.775433,805.0,894.536,96.0,9.1,0.0,0.0, +2024-04-12 06:00:00,3.1144822,132.39738,29.2,1006.4002,28.144753,754.0,866.83105,99.0,8.9,0.0,0.0, +2024-04-12 07:00:00,3.6013885,178.40889,28.35,1006.27826,31.096834,550.0,626.7499,135.0,9.65,0.0,0.0, +2024-04-12 08:00:00,5.2201533,196.69933,26.1,1006.3165,49.461967,402.0,568.9274,107.0,14.7,0.0,0.0, +2024-04-12 09:00:00,4.4011364,181.30193,26.55,1006.2296,44.7079,248.0,490.23694,84.0,13.55,0.0,0.0, +2024-04-12 10:00:00,3.443835,154.17906,24.85,1007.2743,49.935642,74.0,322.6071,29.0,13.7,0.0,0.0, +2024-04-12 11:00:00,2.624881,162.25523,24.3,1007.4575,52.450096,0.0,0.0,0.0,13.95,0.0,0.0, +2024-04-12 12:00:00,2.745906,123.11135,23.95,1007.8447,44.875248,0.0,0.0,0.0,11.25,0.0,0.0, +2024-04-12 13:00:00,2.8160255,96.11541,22.15,1008.29034,48.727665,0.0,0.0,0.0,10.85,0.0,0.0, +2024-04-12 14:00:00,3.8470767,81.02746,21.75,1008.2794,51.444252,0.0,0.0,0.0,11.3,0.0,0.0, +2024-04-12 15:00:00,4.0199504,84.2895,20.95,1008.25684,55.476986,0.0,0.0,0.0,11.7,0.0,0.0, +2024-04-12 16:00:00,4.3289723,83.367584,20.1,1008.13336,58.462345,0.0,0.0,0.0,11.7,0.0,0.0, +2024-04-12 17:00:00,4.753946,75.37909,19.5,1007.8191,59.881832,0.0,0.0,0.0,11.5,0.0,0.0, +2024-04-12 18:00:00,5.0447993,76.2392,18.95,1007.8032,61.968445,0.0,0.0,0.0,11.5,0.0,0.0, +2024-04-12 19:00:00,5.0447993,76.2392,18.5,1007.49286,64.79767,0.0,0.0,0.0,11.75,0.0,0.0, +2024-04-12 20:00:00,4.707441,77.735245,18.05,1007.3807,68.20797,0.0,0.0,0.0,12.1,0.0,0.0, +2024-04-12 21:00:00,4.414748,76.908104,17.7,1007.4697,70.418,0.0,0.0,0.0,12.25,0.0,0.0, +2024-04-12 22:00:00,4.317406,76.60749,17.3,1007.55743,72.69415,0.0,0.0,0.0,12.35,0.0,0.0, +2024-04-12 23:00:00,4.244997,74.98159,17.2,1007.65375,73.155205,4.0,17.92859,3.0,12.35,0.0,0.0, +2024-04-13 00:00:00,3.7854989,77.79955,19.2,1008.0086,64.10218,129.0,493.91577,42.0,12.25,0.0,0.0, +2024-04-13 01:00:00,1.555635,135.0001,21.7,1008.37695,58.656437,338.0,707.1457,68.0,13.25,0.0,0.0, +2024-04-13 02:00:00,1.9416487,168.11136,23.8,1008.53467,50.973564,533.0,814.3482,80.0,13.05,0.0,0.0, +2024-04-13 03:00:00,2.9120438,195.94547,25.0,1008.2704,45.164314,658.0,817.31714,96.0,12.3,0.0,0.0, +2024-04-13 04:00:00,4.118252,209.0545,25.3,1007.6835,44.803677,714.0,768.04193,125.0,12.45,0.0,0.1, +2024-04-13 05:00:00,6.046487,214.21576,24.45,1007.2632,53.00107,717.0,760.77045,117.0,14.25,0.0,0.0, +2024-04-13 06:00:00,6.306346,207.37762,24.3,1007.16,52.450096,714.0,801.0715,112.0,13.95,0.0,0.0, +2024-04-13 07:00:00,6.074537,200.22495,24.25,1007.2579,51.76057,632.0,805.6244,102.0,13.7,0.0,0.0, +2024-04-13 08:00:00,5.9665737,193.57045,23.75,1007.244,54.74124,490.0,803.19476,77.0,14.1,0.0,0.0, +2024-04-13 09:00:00,6.1188235,191.30989,22.7,1007.5124,60.82871,286.0,675.2503,63.0,14.75,0.0,0.0, +2024-04-13 10:00:00,5.6008925,181.02301,21.5,1008.1732,68.455284,81.0,378.71536,29.0,15.45,0.0,0.0, +2024-04-13 11:00:00,4.9819674,169.59235,21.0,1008.7541,71.955956,0.0,0.0,0.0,15.75,0.0,0.0, +2024-04-13 12:00:00,4.4271884,161.56496,20.6,1009.2385,73.74906,0.0,0.0,0.0,15.75,0.0,0.0, +2024-04-13 13:00:00,4.4777226,156.29735,20.15,1009.821,75.102165,0.0,0.0,0.0,15.6,0.0,0.0, +2024-04-13 14:00:00,4.609772,155.65892,20.0,1010.0149,78.26386,0.0,0.0,0.0,16.1,0.0,0.0, +2024-04-13 15:00:00,4.3829217,152.8504,19.85,1010.10986,81.54951,0.0,0.0,0.0,16.6,0.0,0.0, +2024-04-13 16:00:00,3.4205263,142.12495,19.3,1009.995,83.84878,0.0,0.0,0.0,16.5,0.0,0.0, +2024-04-13 17:00:00,2.9154758,120.96369,18.6,1009.8757,81.91302,0.0,0.0,0.0,15.45,0.0,0.0, +2024-04-13 18:00:00,2.7658634,102.5288,18.3,1009.86725,72.636055,0.0,0.0,0.0,13.3,0.0,0.0, +2024-04-13 19:00:00,2.8160255,96.11541,18.3,1009.76807,62.85335,0.0,0.0,0.0,11.1,0.0,0.0, +2024-04-13 20:00:00,2.8,90.0,18.05,1010.0583,61.14687,0.0,0.0,0.0,10.45,0.0,0.0, +2024-04-13 21:00:00,3.0,90.0,17.65,1010.146,61.462677,0.0,0.0,0.0,10.15,0.0,0.0, +2024-04-13 22:00:00,3.214032,84.644264,17.25,1010.6301,62.614475,0.0,0.0,0.0,10.05,0.0,0.0, +2024-04-13 23:00:00,3.522783,83.48029,17.2,1011.0255,62.603054,4.0,18.295383,3.0,10.0,0.0,0.0, +2024-04-14 00:00:00,3.7121422,85.364624,19.55,1011.7874,54.390793,130.0,506.2552,42.0,10.1,0.0,0.0, +2024-04-14 01:00:00,2.84605,108.43504,22.5,1012.5652,46.603024,344.0,725.25146,69.0,10.5,0.0,0.0, +2024-04-14 02:00:00,3.3941126,135.0001,25.1,1012.34,36.408615,543.0,836.8095,80.0,9.15,0.0,0.0, +2024-04-14 03:00:00,4.14367,160.25307,26.45,1012.1784,29.847134,697.0,889.9719,88.0,7.4,0.0,0.0, +2024-04-14 04:00:00,4.7095647,176.34785,26.95,1011.597,29.884218,790.0,915.8315,91.0,7.85,0.0,0.0, +2024-04-14 05:00:00,5.903389,190.73885,26.85,1010.8008,35.103706,815.0,921.3057,92.0,10.15,0.0,0.0, +2024-04-14 06:00:00,7.8339005,194.03627,26.15,1010.2858,38.20253,768.0,907.1862,90.0,10.8,0.0,0.0, +2024-04-14 07:00:00,8.276473,191.85298,25.25,1010.3602,43.483814,656.0,873.60034,85.0,11.95,0.0,0.0, +2024-04-14 08:00:00,8.438008,185.44025,24.35,1010.4345,44.68935,488.0,802.1239,79.0,11.55,0.0,0.0, +2024-04-14 09:00:00,7.6164293,176.23604,23.45,1010.4098,51.720596,282.0,674.8523,62.0,12.95,0.0,0.0, +2024-04-14 10:00:00,6.7896976,170.67648,22.6,1010.88196,57.737965,78.0,369.9801,28.0,13.85,0.0,0.0, +2024-04-14 11:00:00,6.360031,163.55954,21.65,1011.54956,62.17811,0.0,0.0,0.0,14.1,0.0,0.0, +2024-04-14 12:00:00,5.99333,154.2901,21.4,1012.0384,61.71934,0.0,0.0,0.0,13.75,0.0,0.0, +2024-04-14 13:00:00,5.6462374,157.06787,20.65,1012.7113,70.29452,0.0,0.0,0.0,15.05,0.0,0.0, +2024-04-14 14:00:00,4.830114,152.90453,20.15,1012.6971,75.34295,0.0,0.0,0.0,15.65,0.0,0.0, +2024-04-14 15:00:00,3.8013155,144.63745,19.45,1012.3796,77.93277,0.0,0.0,0.0,15.5,0.0,0.0, +2024-04-14 16:00:00,3.1144822,137.60262,18.7,1011.66364,75.83663,0.0,0.0,0.0,14.35,0.0,0.0, +2024-04-14 17:00:00,3.1384711,120.65059,18.1,1011.44824,71.190285,0.0,0.0,0.0,12.8,0.0,0.0, +2024-04-14 18:00:00,3.4014702,114.30454,18.4,1011.35767,58.632668,0.0,0.0,0.0,10.15,0.0,0.0, +2024-04-14 19:00:00,3.956008,106.14441,18.8,1010.87317,51.87377,0.0,0.0,0.0,8.7,0.0,0.0, +2024-04-14 20:00:00,4.1773195,101.0409,18.8,1010.97235,52.57923,0.0,0.0,0.0,8.9,0.0,0.0, +2024-04-14 21:00:00,4.2107005,94.08554,18.45,1011.1609,54.841087,0.0,0.0,0.0,9.2,0.0,0.0, +2024-04-14 22:00:00,4.4,90.0,18.15,1011.6479,56.83033,0.0,0.0,0.0,9.45,0.0,0.0, +2024-04-14 23:00:00,4.9162993,85.33323,18.15,1012.2429,57.79207,4.0,18.678919,3.0,9.7,0.0,0.0, +2024-04-15 00:00:00,5.0089917,86.56644,20.35,1012.9012,51.244812,126.0,501.44946,40.0,9.95,0.0,0.0, +2024-04-15 01:00:00,5.3009434,91.0809,23.55,1012.99133,42.01608,338.0,719.7263,67.0,9.9,0.0,0.0, +2024-04-15 02:00:00,5.2153616,94.39862,26.3,1012.86865,35.184097,534.0,826.8207,79.0,9.7,0.0,0.0, +2024-04-15 03:00:00,4.9648767,99.27253,28.15,1012.32404,29.611229,687.0,881.1119,87.0,8.75,0.0,0.0, +2024-04-15 04:00:00,3.9661064,123.6901,28.95,1011.552,27.512077,780.0,907.0663,91.0,8.35,0.0,0.0, +2024-04-15 05:00:00,3.5846896,149.8587,29.2,1010.4674,27.209084,805.0,913.12067,92.0,8.4,0.0,0.0, +2024-04-15 06:00:00,3.794733,161.56496,29.65,1009.88434,25.539822,760.0,902.79474,89.0,7.85,0.0,0.0, +2024-04-15 07:00:00,4.8010416,178.80653,29.45,1009.38293,27.929153,650.0,870.06335,85.0,9.0,0.0,0.0, +2024-04-15 08:00:00,6.4070277,182.68372,27.6,1009.53156,42.447083,483.0,804.94415,76.0,13.7,0.0,0.0, +2024-04-15 09:00:00,7.5,180.0,25.95,1009.68494,52.704956,277.0,671.2537,61.0,15.55,0.0,0.0, +2024-04-15 10:00:00,7.3552704,172.9717,23.15,1010.2028,59.1935,75.0,368.41882,26.0,14.75,0.0,0.0, +2024-04-15 11:00:00,7.3054776,160.82089,22.95,1010.69336,60.495827,0.0,0.0,0.0,14.9,0.0,0.0, +2024-04-15 12:00:00,6.356886,160.70985,22.8,1010.68915,62.83946,0.0,0.0,0.0,15.35,0.0,0.0, +2024-04-15 13:00:00,4.750789,149.65683,22.25,1011.0704,62.918983,0.0,0.0,0.0,14.85,0.0,0.0, +2024-04-15 14:00:00,3.4713109,131.49637,21.85,1010.96,56.994083,0.0,0.0,0.0,12.95,0.0,0.0, +2024-04-15 15:00:00,3.4669871,123.23173,22.05,1010.76715,41.734608,0.0,0.0,0.0,8.45,0.0,0.0, +2024-04-15 16:00:00,4.1231055,112.833694,22.25,1010.27686,39.048065,0.0,0.0,0.0,7.65,0.0,0.0, +2024-04-15 17:00:00,4.3324356,108.85326,21.75,1010.1639,40.94814,0.0,0.0,0.0,7.9,0.0,0.0, +2024-04-15 18:00:00,4.464303,105.59287,21.35,1010.2515,41.962708,0.0,0.0,0.0,7.9,0.0,0.0, +2024-04-15 19:00:00,4.5891175,101.3099,20.95,1010.0421,42.71393,0.0,0.0,0.0,7.8,0.0,0.0, +2024-04-15 20:00:00,4.8093657,93.57626,20.65,1010.2319,43.80689,0.0,0.0,0.0,7.9,0.0,0.0, +2024-04-15 21:00:00,5.3009434,91.0809,20.55,1010.3283,45.599586,0.0,0.0,0.0,8.4,0.0,0.0, +2024-04-15 22:00:00,6.0074954,87.13766,20.5,1010.7233,47.955727,0.0,0.0,0.0,9.1,0.0,0.0, +2024-04-15 23:00:00,6.8264194,84.95764,20.5,1010.8225,49.429367,4.0,19.079853,3.0,9.55,0.0,0.0, +2024-04-16 00:00:00,6.6272163,84.805664,22.3,1011.17084,44.86684,125.0,502.43826,40.0,9.75,0.0,0.0, +2024-04-16 01:00:00,6.902898,88.33975,25.2,1011.05304,37.555244,333.0,716.8126,65.0,9.7,0.0,0.0, +2024-04-16 02:00:00,6.2,90.0,27.85,1011.0262,32.016113,528.0,822.2171,78.0,9.65,0.0,0.0, +2024-04-16 03:00:00,5.115662,94.48453,30.3,1010.3974,27.414639,678.0,875.125,85.0,9.45,0.0,0.0, +2024-04-16 04:00:00,3.4176016,110.55613,32.15,1009.4542,24.099112,768.0,898.2186,89.0,9.1,0.0,0.0, +2024-04-16 05:00:00,2.4166093,155.55606,32.7,1008.179,21.908499,791.0,900.9854,91.0,8.15,0.0,0.0, +2024-04-16 06:00:00,5.059644,198.43504,32.3,1007.57324,27.678234,746.0,887.5137,90.0,11.3,0.0,0.0, +2024-04-16 07:00:00,6.315061,190.95403,30.7,1007.432,36.06228,577.0,702.14777,124.0,13.95,0.0,0.0, +2024-04-16 08:00:00,6.926038,184.96965,29.45,1007.49805,40.020763,373.0,524.5428,110.0,14.45,0.0,0.0, +2024-04-16 09:00:00,7.7162166,183.71521,27.4,1007.443,46.863335,198.0,371.51468,80.0,15.05,0.0,0.0, +2024-04-16 10:00:00,7.1847057,171.19328,25.9,1007.9975,50.050884,47.0,198.6486,21.0,14.7,0.0,0.0, +2024-04-16 11:00:00,6.706713,159.94382,26.2,1008.3033,42.75511,0.0,0.0,0.0,12.55,0.0,0.0, +2024-04-16 12:00:00,4.8600416,143.3658,26.35,1008.60486,42.796654,0.0,0.0,0.0,12.7,0.0,0.0, +2024-04-16 13:00:00,5.5803227,126.25393,27.25,1009.22455,29.86589,0.0,0.0,0.0,8.1,0.0,0.0, +2024-04-16 14:00:00,6.0835843,115.301346,27.45,1009.3291,26.826302,0.0,0.0,0.0,6.7,0.0,0.0, +2024-04-16 15:00:00,6.7446275,105.4787,27.35,1009.3265,26.61547,0.0,0.0,0.0,6.5,0.0,0.0, +2024-04-16 16:00:00,7.106335,92.41946,27.1,1009.3195,27.101597,0.0,0.0,0.0,6.55,0.0,0.0, +2024-04-16 17:00:00,7.1175838,85.97182,26.75,1009.31,28.63061,0.0,0.0,0.0,7.05,0.0,0.0, +2024-04-16 18:00:00,7.21734,86.02759,26.3,1009.4961,30.630568,0.0,0.0,0.0,7.65,0.0,0.0, +2024-04-16 19:00:00,7.665507,82.50424,25.9,1009.58453,33.228012,0.0,0.0,0.0,8.5,0.0,0.0, +2024-04-16 20:00:00,7.7781744,81.86999,25.35,1009.8668,35.991825,0.0,0.0,0.0,9.2,0.0,0.0, +2024-04-16 21:00:00,7.9762144,82.073166,24.85,1009.8532,37.582375,0.0,0.0,0.0,9.4,0.0,0.0, +2024-04-16 22:00:00,8.2,77.319626,24.7,1010.2459,37.920563,0.0,0.0,0.0,9.4,0.0,0.0, +2024-04-16 23:00:00,7.9831076,77.70475,24.3,1010.6316,38.97,3.0,19.500233,2.0,9.45,0.0,0.0, +2024-04-17 00:00:00,7.8262377,79.69521,25.6,1011.06415,36.06251,115.0,449.5276,40.0,9.45,0.0,0.0, +2024-04-17 01:00:00,8.1024685,77.16439,28.65,1011.1469,30.559566,324.0,697.70703,65.0,9.65,0.0,0.0, +2024-04-17 02:00:00,7.7491937,70.39582,30.95,1011.2085,27.406343,516.0,806.5493,77.0,10.0,0.0,0.0, +2024-04-17 03:00:00,7.169379,59.8587,33.05,1010.86694,24.99252,660.0,842.3869,92.0,10.4,0.0,0.0, +2024-04-17 04:00:00,6.0207973,48.366554,35.1,1010.1261,22.893602,754.0,883.9653,89.0,10.8,0.0,0.0, +2024-04-17 05:00:00,4.022437,55.1246,36.25,1008.9649,20.302536,719.0,799.45636,101.0,9.95,0.0,0.0, +2024-04-17 06:00:00,3.794733,71.564964,36.45,1008.1765,19.418783,630.0,643.4858,157.0,9.45,0.0,0.0, +2024-04-17 07:00:00,4.2720017,69.44387,36.6,1008.1803,18.372492,524.0,550.721,171.0,8.75,0.0,0.0, +2024-04-17 08:00:00,4.8332186,24.443953,34.2,1008.714,23.046875,350.0,500.8113,101.0,10.15,0.0,0.0, +2024-04-17 09:00:00,3.8639357,10.437421,32.85,1008.9764,23.638346,196.0,385.96194,75.0,9.4,0.0,0.0, +2024-04-17 10:00:00,2.385372,56.976128,29.95,1009.19775,27.504627,62.0,295.04126,24.0,9.2,0.0,0.0, +2024-04-17 11:00:00,1.4560219,105.945465,28.15,1009.7449,30.01377,0.0,0.0,0.0,8.95,0.0,0.0, +2024-04-17 12:00:00,1.8248286,80.53775,27.5,1010.2231,30.138693,0.0,0.0,0.0,8.45,0.0,0.0, +2024-04-17 13:00:00,2.184033,74.054535,26.4,1010.78845,31.503801,0.0,0.0,0.0,8.15,0.0,0.0, +2024-04-17 14:00:00,3.7,71.075264,27.2,1011.20715,28.951534,0.0,0.0,0.0,7.6,0.0,0.0, +2024-04-17 15:00:00,5.5461698,64.35905,27.6,1011.1187,29.861567,0.0,0.0,0.0,8.4,0.0,0.0, +2024-04-17 16:00:00,5.3,58.10924,27.45,1011.21387,31.371677,0.0,0.0,0.0,9.0,0.0,0.0, +2024-04-17 17:00:00,5.161395,54.46224,26.65,1011.09296,32.991608,0.0,0.0,0.0,9.05,0.0,0.0, +2024-04-17 18:00:00,5.0447993,50.630707,26.15,1011.1786,33.865078,0.0,0.0,0.0,9.0,0.0,0.0, +2024-04-17 19:00:00,4.661545,54.605125,25.45,1011.25836,35.06227,0.0,0.0,0.0,8.9,0.0,0.0, +2024-04-17 20:00:00,5.0921507,70.49747,24.35,1011.92236,37.063416,0.0,0.0,0.0,8.75,0.0,0.0, +2024-04-17 21:00:00,5.283938,60.524208,24.0,1012.2103,37.46796,0.0,0.0,0.0,8.6,0.0,0.0, +2024-04-17 22:00:00,5.9464273,70.346085,23.5,1012.5931,38.612553,0.0,0.0,0.0,8.6,0.0,0.0, +2024-04-17 23:00:00,6.462198,68.19853,23.4,1013.0861,39.242107,3.0,19.934774,2.0,8.75,0.0,0.0, +2024-04-18 00:00:00,6.5,67.3801,25.2,1013.43365,35.34808,118.0,486.307,38.0,8.8,0.0,0.0, +2024-04-18 01:00:00,7.1021123,57.652576,28.45,1013.6215,26.549034,326.0,708.18506,65.0,7.4,0.0,0.0, +2024-04-18 02:00:00,6.8883963,50.300972,31.05,1013.7904,20.336678,520.0,816.5785,78.0,5.7,0.0,0.0, +2024-04-18 03:00:00,6.438167,43.111843,33.25,1013.1538,16.86847,671.0,873.41455,85.0,4.8,0.0,0.0, +2024-04-18 04:00:00,5.3814497,41.98713,34.6,1012.3953,16.085367,763.0,900.2887,89.0,5.2,0.0,0.0, +2024-04-18 05:00:00,4.2801867,52.594578,35.45,1011.5243,15.560107,789.0,908.80963,90.0,5.4,0.0,0.0, +2024-04-18 06:00:00,3.3615472,67.24899,35.8,1010.7395,14.8958025,744.0,897.40295,88.0,5.05,0.0,0.0, +2024-04-18 07:00:00,2.1213202,135.0001,34.5,1010.4085,15.56698,634.0,865.22534,83.0,4.65,0.0,0.0, +2024-04-18 08:00:00,4.604346,182.4895,32.75,1010.46204,23.93206,469.0,801.1464,74.0,9.5,0.0,0.0, +2024-04-18 09:00:00,5.4332314,186.3401,30.75,1010.4095,31.139168,266.0,665.7131,60.0,11.75,0.0,0.0, +2024-04-18 10:00:00,5.2153616,184.39862,28.15,1010.63763,39.91944,67.0,339.2839,24.0,13.25,0.0,0.0, +2024-04-18 11:00:00,4.464303,164.40714,27.5,1011.3142,39.09184,0.0,0.0,0.0,12.35,0.0,0.0, +2024-04-18 12:00:00,4.8877397,149.23735,27.2,1011.7031,35.2021,0.0,0.0,0.0,10.5,0.0,0.0, +2024-04-18 13:00:00,3.9824615,118.495544,26.9,1012.29004,23.788694,0.0,0.0,0.0,4.5,0.0,0.0, +2024-04-18 14:00:00,5.3150725,101.94416,26.95,1012.2914,23.14479,0.0,0.0,0.0,4.15,0.0,0.0, +2024-04-18 15:00:00,5.9,90.0,26.45,1012.07916,23.669632,0.0,0.0,0.0,4.05,0.0,0.0, +2024-04-18 16:00:00,6.363961,81.86999,25.9,1011.86597,24.366055,0.0,0.0,0.0,4.0,0.0,0.0, +2024-04-18 17:00:00,6.6940274,76.171326,25.35,1011.9499,25.086264,0.0,0.0,0.0,3.95,0.0,0.0, +2024-04-18 18:00:00,7.083784,71.053406,24.7,1012.0313,25.894823,0.0,0.0,0.0,3.85,0.0,0.0, +2024-04-18 19:00:00,7.291776,64.84074,23.9,1011.81067,25.95053,0.0,0.0,0.0,3.2,0.0,0.0, +2024-04-18 20:00:00,7.111962,62.354122,23.1,1012.1852,24.654451,0.0,0.0,0.0,1.8,0.0,0.0, +2024-04-18 21:00:00,7.0830784,59.45251,22.35,1012.4618,23.671524,0.0,0.0,0.0,0.6,0.0,0.0, +2024-04-18 22:00:00,6.774216,58.89126,21.65,1012.7397,24.174143,0.0,0.0,0.0,0.3,0.0,0.0, +2024-04-18 23:00:00,6.6241984,61.113514,21.1,1013.12085,25.275236,3.0,20.394978,2.0,0.45,0.0,0.0, +2024-04-19 00:00:00,6.5299315,62.65021,22.45,1013.5557,24.042313,123.0,517.99603,39.0,0.9,0.0,0.0, +2024-04-19 01:00:00,7.4060783,55.451576,24.55,1013.3166,24.695204,335.0,737.95764,65.0,3.05,0.0,0.0, +2024-04-19 02:00:00,7.140028,52.969524,26.8,1013.2791,21.230288,535.0,847.1613,79.0,2.8,0.0,0.0, +2024-04-19 03:00:00,6.438167,46.888172,28.6,1013.0305,17.295427,691.0,906.24805,86.0,1.4,0.0,0.0, +2024-04-19 04:00:00,5.1662364,47.353336,29.95,1012.37225,14.672955,787.0,935.5518,90.0,0.2,0.0,0.0, +2024-04-19 05:00:00,4.060788,52.001225,30.95,1011.4069,13.169586,814.0,944.76575,91.0,-0.5,0.0,0.0, +2024-04-19 06:00:00,3.0870697,65.09527,31.5,1010.6275,12.306226,767.0,934.0172,88.0,-1.0,0.0,0.0, +2024-04-19 07:00:00,2.1213202,135.0001,30.75,1010.4095,12.796727,653.0,899.2934,84.0,-1.05,0.0,0.0, +2024-04-19 08:00:00,4.609772,183.73132,29.25,1010.36957,21.183073,481.0,830.3583,75.0,4.8,0.0,0.0, +2024-04-19 09:00:00,5.414795,184.23631,27.05,1010.80615,34.34735,271.0,694.0701,59.0,10.0,0.0,0.0, +2024-04-19 10:00:00,5.0039983,182.29056,24.75,1011.04065,51.722786,66.0,344.7901,23.0,14.15,0.0,0.0, +2024-04-19 11:00:00,4.2201896,166.29301,24.2,1011.52136,48.79662,0.0,0.0,0.0,12.75,0.0,0.0, +2024-04-19 12:00:00,4.0718546,155.32315,23.55,1011.8011,37.213543,0.0,0.0,0.0,8.1,0.0,0.0, +2024-04-19 13:00:00,2.7802877,127.694305,21.8,1012.5454,33.553947,0.0,0.0,0.0,5.05,0.0,0.0, +2024-04-19 14:00:00,3.0,90.0,21.2,1012.72687,23.193008,0.0,0.0,0.0,-0.65,0.0,0.0, +2024-04-19 15:00:00,4.295346,77.90526,21.65,1012.5414,22.39857,0.0,0.0,0.0,-0.75,0.0,0.0, +2024-04-19 16:00:00,4.341659,82.056625,21.45,1012.23804,22.674347,0.0,0.0,0.0,-0.75,0.0,0.0, +2024-04-19 17:00:00,4.539824,82.40546,21.0,1012.02704,23.394102,0.0,0.0,0.0,-0.7,0.0,0.0, +2024-04-19 18:00:00,4.883646,79.380394,20.55,1012.1135,24.138947,0.0,0.0,0.0,-0.65,0.0,0.0, +2024-04-19 19:00:00,5.440588,72.89719,20.3,1012.1062,24.87402,0.0,0.0,0.0,-0.45,0.0,0.0, +2024-04-19 20:00:00,5.8309517,67.83361,20.15,1012.102,26.223598,0.0,0.0,0.0,0.15,0.0,0.0, +2024-04-19 21:00:00,6.0008335,66.425285,19.95,1012.2946,28.43376,0.0,0.0,0.0,1.1,0.0,0.0, +2024-04-19 22:00:00,6.0008335,66.425285,19.7,1012.4861,30.255106,0.0,0.0,0.0,1.75,0.0,0.0, +2024-04-19 23:00:00,6.1326995,65.94266,19.55,1012.8783,31.199362,3.0,20.875206,2.0,2.05,0.0,0.0, +2024-04-20 00:00:00,6.397656,65.03724,21.5,1013.42975,27.862434,121.0,519.34143,38.0,2.15,0.0,0.0, +2024-04-20 01:00:00,6.5,59.48984,24.55,1013.6142,24.090496,333.0,737.89136,65.0,2.7,0.0,0.0, +2024-04-20 02:00:00,6.481512,51.89238,27.3,1013.4912,20.253574,532.0,848.1982,78.0,2.55,0.0,0.0, +2024-04-20 03:00:00,6.0108232,44.326046,29.8,1013.0626,17.269264,684.0,901.7692,85.0,2.35,0.0,0.0, +2024-04-20 04:00:00,4.7201695,36.38445,31.4,1012.1131,14.831011,777.0,927.9816,89.0,1.5,0.0,0.0, +2024-04-20 05:00:00,2.4698176,31.75944,32.1,1011.23865,13.603474,801.0,933.77747,90.0,0.85,0.0,0.0, +2024-04-20 06:00:00,0.70710677,98.13002,32.15,1010.3471,13.274772,755.0,922.58203,88.0,0.55,0.0,0.0, +2024-04-20 07:00:00,2.5019991,182.29056,31.55,1010.0339,14.1357565,642.0,889.19824,83.0,0.95,0.0,0.0, +2024-04-20 08:00:00,5.346027,187.52373,29.9,1009.9902,23.755396,473.0,820.77844,75.0,7.0,0.0,0.0, +2024-04-20 09:00:00,6.200806,180.92403,28.05,1010.3372,27.174374,265.0,683.21765,59.0,7.4,0.0,0.0, +2024-04-20 10:00:00,6.530697,168.51804,25.8,1010.9704,29.973196,63.0,325.92834,23.0,6.9,0.0,0.0, +2024-04-20 11:00:00,5.420332,150.1241,25.2,1011.64825,27.429575,0.0,0.0,0.0,5.1,0.0,0.0, +2024-04-20 12:00:00,4.90408,140.79282,24.45,1012.1235,28.190561,0.0,0.0,0.0,4.85,0.0,0.0, +2024-04-20 13:00:00,5.4037023,141.009,23.3,1011.8934,32.046333,0.0,0.0,0.0,5.7,0.0,0.0, +2024-04-20 14:00:00,4.604346,124.3804,22.35,1011.66833,32.22273,0.0,0.0,0.0,4.95,0.0,0.0, +2024-04-20 15:00:00,3.1320918,106.699326,20.75,1011.42487,30.880793,0.0,0.0,0.0,2.95,0.0,0.0, +2024-04-20 16:00:00,3.1064448,86.308685,20.1,1011.2078,24.281572,0.0,0.0,0.0,-0.95,0.0,0.0, +2024-04-20 17:00:00,3.9217343,70.640915,21.05,1011.1356,20.206993,0.0,0.0,0.0,-2.65,0.0,0.0, +2024-04-20 18:00:00,4.4777226,66.29735,21.0,1010.83685,20.571634,0.0,0.0,0.0,-2.45,0.0,0.0, +2024-04-20 19:00:00,4.4777226,66.29735,20.65,1010.43024,21.570147,0.0,0.0,0.0,-2.1,0.0,0.0, +2024-04-20 20:00:00,4.588028,69.59004,19.85,1010.4074,23.169888,0.0,0.0,0.0,-1.8,0.0,0.0, +2024-04-20 21:00:00,4.661545,67.28555,19.35,1010.59155,24.343998,0.0,0.0,0.0,-1.55,0.0,0.0, +2024-04-20 22:00:00,4.9193497,63.435013,19.15,1010.68494,25.105392,0.0,0.0,0.0,-1.3,0.0,0.0, +2024-04-20 23:00:00,5.3235326,61.99092,19.1,1010.98096,25.742975,2.0,21.38983,1.0,-1.0,0.0,0.0, +2024-04-21 00:00:00,5.866856,60.376347,21.4,1011.7408,23.077967,119.0,514.39026,38.0,-0.55,0.0,0.0, +2024-04-21 01:00:00,5.3,58.10924,25.0,1011.54364,20.770092,330.0,735.05566,65.0,1.0,0.0,0.0, +2024-04-21 02:00:00,5.517246,43.53127,28.3,1011.73267,17.41126,526.0,843.6086,77.0,1.25,0.0,0.0, +2024-04-21 03:00:00,5.011986,28.610369,30.4,1011.39233,14.878434,676.0,895.72125,84.0,0.75,0.0,0.0, +2024-04-21 04:00:00,2.7073975,355.76367,31.55,1010.4307,12.866983,767.0,920.3162,88.0,-0.35,0.0,0.0, +2024-04-21 05:00:00,3.4539833,247.8905,30.55,1009.70966,17.445461,790.0,926.6036,88.0,3.1,0.0,0.0, +2024-04-21 06:00:00,6.0605283,232.3737,28.85,1009.0691,26.839134,743.0,912.3599,87.0,7.9,0.0,0.0, +2024-04-21 07:00:00,5.879626,228.44748,27.9,1009.04346,28.751698,630.0,877.2982,82.0,8.1,0.0,0.0, +2024-04-21 08:00:00,4.8414874,218.2902,26.9,1009.215,31.536839,462.0,808.85205,73.0,8.6,0.0,0.0, +2024-04-21 09:00:00,4.215448,202.30626,25.2,1009.466,44.191433,258.0,671.9119,58.0,12.15,0.0,0.0, +2024-04-21 10:00:00,3.6055512,183.17976,23.35,1009.81177,54.28627,60.0,314.6267,22.0,13.6,0.0,0.0, +2024-04-21 11:00:00,3.640055,164.05453,22.35,1010.1806,57.865013,0.0,0.0,0.0,13.65,0.0,0.0, +2024-04-21 12:00:00,3.640055,164.05453,21.9,1010.5647,57.755676,0.0,0.0,0.0,13.2,0.0,0.0, +2024-04-21 13:00:00,3.4132097,148.17259,21.1,1010.74054,60.259686,0.0,0.0,0.0,13.1,0.0,0.0, +2024-04-21 14:00:00,3.0,143.13002,20.3,1010.8169,64.13417,0.0,0.0,0.0,13.3,0.0,0.0, +2024-04-21 15:00:00,3.0413814,133.66785,19.9,1010.6074,60.373184,0.0,0.0,0.0,12.0,0.0,0.0, +2024-04-21 16:00:00,2.5806975,144.46223,19.25,1010.4895,54.313606,0.0,0.0,0.0,9.8,0.0,0.0, +2024-04-21 17:00:00,2.745906,146.88864,18.8,1010.4765,51.003708,0.0,0.0,0.0,8.45,0.0,0.0, +2024-04-21 18:00:00,2.7018511,141.009,18.35,1010.36426,51.578934,0.0,0.0,0.0,8.2,0.0,0.0, +2024-04-21 19:00:00,2.4839485,130.10085,17.65,1010.2452,51.042282,0.0,0.0,0.0,7.4,0.0,0.0, +2024-04-21 20:00:00,2.6627054,145.71307,17.35,1010.13715,51.311504,0.0,0.0,0.0,7.2,0.0,0.0, +2024-04-21 21:00:00,3.2202482,143.84172,17.4,1010.2379,56.451057,0.0,0.0,0.0,8.65,0.0,0.0, +2024-04-21 22:00:00,3.7013512,141.58191,17.2,1010.728,62.39395,0.0,0.0,0.0,9.95,0.0,0.0, +2024-04-21 23:00:00,4.404543,140.52757,17.1,1011.22076,63.848362,2.0,21.926222,1.0,10.2,0.0,0.0, +2024-04-22 00:00:00,4.661545,144.60512,18.8,1011.9641,56.61268,113.0,489.95917,37.0,10.0,0.0,0.0, +2024-04-22 01:00:00,6.5795135,155.77226,21.0,1012.72125,59.259262,316.0,698.64655,66.0,12.75,0.0,0.0, +2024-04-22 02:00:00,6.926038,162.3498,23.35,1012.6882,50.027737,506.0,799.28107,83.0,12.35,0.0,0.0, +2024-04-22 03:00:00,7.7278714,169.56258,25.3,1012.2462,39.383232,661.0,875.9124,85.0,10.5,0.0,0.0, +2024-04-22 04:00:00,8.21523,176.51074,26.0,1011.37286,40.10765,752.0,904.37823,88.0,11.4,0.0,0.0, +2024-04-22 05:00:00,8.600582,179.33382,26.2,1010.3863,43.603493,773.0,908.7057,88.0,12.85,0.0,0.0, +2024-04-22 06:00:00,9.002222,181.273,25.75,1009.8779,49.051006,725.0,892.1812,87.0,14.25,0.0,0.0, +2024-04-22 07:00:00,9.104944,178.11185,25.05,1009.6602,52.64336,612.0,853.8889,82.0,14.7,0.0,0.0, +2024-04-22 08:00:00,9.008884,177.45525,24.15,1009.9331,60.002193,447.0,777.7477,76.0,15.9,0.0,0.0, +2024-04-22 09:00:00,8.945389,174.22577,22.7,1010.19037,67.39415,232.0,507.01498,83.0,16.35,0.0,0.0, +2024-04-22 10:00:00,8.492938,167.7639,21.2,1010.545,77.69864,47.0,126.18876,32.0,17.15,0.0,0.0, +2024-04-22 11:00:00,8.381527,162.64589,20.8,1011.0295,78.629776,0.0,0.0,0.0,16.95,0.0,0.0, +2024-04-22 12:00:00,8.000625,161.79143,20.9,1011.62744,75.225365,0.0,0.0,0.0,16.35,0.0,0.0, +2024-04-22 13:00:00,7.3006845,156.59529,20.6,1012.6106,70.73845,0.0,0.0,0.0,15.1,0.0,0.0, +2024-04-22 14:00:00,6.2769423,149.34941,20.7,1012.71265,61.962086,0.0,0.0,0.0,13.15,0.0,0.0, +2024-04-22 15:00:00,7.093659,139.574,21.15,1012.72534,46.54356,0.0,0.0,0.0,9.25,0.0,0.0, +2024-04-22 16:00:00,7.0724816,133.85432,20.25,1012.79913,51.218254,0.0,0.0,0.0,9.85,0.0,0.0, +2024-04-22 17:00:00,6.981404,128.019,19.4,1013.1714,53.449497,0.0,0.0,0.0,9.7,0.0,0.0, +2024-04-22 18:00:00,6.742403,125.340195,18.85,1013.1558,54.210453,0.0,0.0,0.0,9.4,0.0,0.0, +2024-04-22 19:00:00,6.87968,122.53506,18.35,1013.14105,55.00036,0.0,0.0,0.0,9.15,0.0,0.0, +2024-04-22 20:00:00,7.071068,118.7397,17.65,1013.2203,56.32364,0.0,0.0,0.0,8.85,0.0,0.0, +2024-04-22 21:00:00,7.03278,119.84584,17.15,1013.89984,56.963604,0.0,0.0,0.0,8.55,0.0,0.0, +2024-04-22 22:00:00,6.860029,120.67721,16.75,1014.384,57.444878,0.0,0.0,0.0,8.3,0.0,0.0, +2024-04-22 23:00:00,6.708204,116.56499,16.5,1014.77325,57.96995,2.0,0.0,2.0,8.2,0.0,0.0, +2024-04-23 00:00:00,6.7535176,117.323814,17.3,1014.9951,54.544827,76.0,98.196625,61.0,8.05,0.0,0.0, +2024-04-23 01:00:00,8.440379,103.706985,18.45,1014.5328,48.044724,246.0,278.75964,147.0,7.25,0.0,0.0, +2024-04-23 02:00:00,8.1024685,102.83562,20.55,1014.49384,40.606655,443.0,522.6083,168.0,6.7,0.0,0.0, +2024-04-23 03:00:00,7.7278714,100.43742,22.45,1013.8533,35.046265,544.0,446.294,252.0,6.25,0.0,0.0, +2024-04-23 04:00:00,7.3979726,99.33492,24.1,1013.1059,31.179583,579.0,340.80453,330.0,6.0,0.0,0.0, +2024-04-23 05:00:00,6.9720874,98.24623,25.75,1012.15936,28.062147,617.0,405.31113,313.0,5.9,0.0,0.0, +2024-04-23 06:00:00,6.576473,98.74608,26.55,1011.18933,26.306942,510.0,305.1165,293.0,5.65,0.0,0.0, +2024-04-23 07:00:00,6.530697,101.48196,27.05,1010.80615,24.931755,422.0,246.45027,270.0,5.3,0.0,0.0, +2024-04-23 08:00:00,6.2361846,105.81926,26.65,1010.7954,25.172771,234.0,63.406384,204.0,5.1,0.0,0.0, +2024-04-23 09:00:00,5.9464273,109.653915,26.05,1010.9773,25.719608,104.0,10.34005,101.0,4.9,0.0,0.0, +2024-04-23 10:00:00,5.4708314,120.78408,25.1,1011.3481,27.022814,21.0,8.548321,20.0,4.8,0.0,0.0, +2024-04-23 11:00:00,5.6824293,118.36895,24.65,1012.1292,27.37357,0.0,0.0,0.0,4.6,0.0,0.0, +2024-04-23 12:00:00,6.3890533,107.30062,24.4,1012.41986,27.496336,0.0,0.0,0.0,4.45,0.0,0.0, +2024-04-23 13:00:00,6.6219335,104.87573,23.55,1012.39624,29.54979,0.0,0.0,0.0,4.75,0.0,0.0, +2024-04-23 14:00:00,7.5538073,96.84268,23.2,1012.18805,30.180603,0.0,0.0,0.0,4.75,0.0,0.0, +2024-04-23 15:00:00,7.902531,88.54982,22.3,1012.06354,31.984764,0.0,0.0,0.0,4.8,0.0,0.0, +2024-04-23 16:00:00,8.139411,84.35954,21.85,1011.8527,32.64554,0.0,0.0,0.0,4.7,0.0,0.0, +2024-04-23 17:00:00,7.8230433,85.60138,21.15,1011.9319,34.19381,0.0,0.0,0.0,4.75,0.0,0.0, +2024-04-23 18:00:00,8.009994,87.13766,20.5,1011.7151,35.837994,0.0,0.0,0.0,4.85,0.0,0.0, +2024-04-23 19:00:00,7.940403,84.217705,19.9,1011.5992,37.32202,0.0,0.0,0.0,4.9,0.0,0.0, +2024-04-23 20:00:00,7.9762144,82.073166,19.35,1011.68243,38.618496,0.0,0.0,0.0,4.9,0.0,0.0, +2024-04-23 21:00:00,7.891768,81.25392,19.05,1011.8722,39.760098,0.0,0.0,0.0,5.05,0.0,0.0, +2024-04-23 22:00:00,7.8262377,79.69521,19.0,1012.069,40.44287,0.0,0.0,0.0,5.25,0.0,0.0, +2024-04-23 23:00:00,7.7103825,80.29342,18.75,1012.4588,41.653564,2.0,0.0,2.0,5.45,0.0,0.0, +2024-04-24 00:00:00,7.7103825,80.29342,20.0,1012.99023,39.075394,106.0,449.07257,38.0,5.65,0.0,0.0, +2024-04-24 01:00:00,9.848858,77.09259,22.0,1012.2536,36.393723,273.0,513.5596,92.0,6.4,0.0,0.0, +2024-04-24 02:00:00,9.876234,74.134224,24.05,1012.3108,32.705463,496.0,806.6128,74.0,6.65,0.0,0.0, +2024-04-24 03:00:00,9.646243,72.50415,25.9,1011.9652,29.694138,641.0,855.6811,84.0,6.85,0.0,0.0, +2024-04-24 04:00:00,9.075792,71.365326,27.6,1011.2179,26.959364,729.0,883.0385,87.0,6.9,0.0,0.0, +2024-04-24 05:00:00,8.25409,70.90642,28.9,1010.1616,24.738873,752.0,889.7687,88.0,6.75,0.0,0.0, +2024-04-24 06:00:00,7.5286117,73.009094,29.75,1009.2916,23.073225,704.0,868.07556,90.0,6.45,0.0,0.0, +2024-04-24 07:00:00,6.7911706,76.37299,30.05,1009.00183,22.291409,595.0,833.8251,84.0,6.2,0.0,0.0, +2024-04-24 08:00:00,6.3788714,80.98076,29.65,1008.7931,22.420008,433.0,765.0005,74.0,5.95,0.0,0.0, +2024-04-24 09:00:00,5.9135437,86.12155,28.65,1008.66693,23.428232,237.0,631.9375,56.0,5.75,0.0,0.0, +2024-04-24 10:00:00,4.491102,101.560104,26.85,1009.2137,25.667913,50.0,269.30368,19.0,5.55,0.0,0.0, +2024-04-24 11:00:00,4.7423625,114.94388,25.4,1010.1661,27.199596,0.0,0.0,0.0,5.15,0.0,0.0, +2024-04-24 12:00:00,5.3310413,113.198616,24.5,1010.7365,28.401571,0.0,0.0,0.0,5.0,0.0,0.0, +2024-04-24 13:00:00,5.8189344,109.0578,24.45,1010.6357,29.188408,0.0,0.0,0.0,5.35,0.0,0.0, +2024-04-24 14:00:00,7.045566,96.519714,23.9,1010.6205,30.801718,0.0,0.0,0.0,5.65,0.0,0.0, +2024-04-24 15:00:00,8.20975,87.20736,23.45,1010.509,32.311417,0.0,0.0,0.0,5.95,0.0,0.0, +2024-04-24 16:00:00,8.729835,80.10615,22.65,1010.3872,34.62319,0.0,0.0,0.0,6.25,0.0,0.0, +2024-04-24 17:00:00,9.241753,76.865974,22.1,1010.57043,35.80071,0.0,0.0,0.0,6.25,0.0,0.0, +2024-04-24 18:00:00,8.94986,76.42955,21.75,1010.6598,36.953323,0.0,0.0,0.0,6.4,0.0,0.0, +2024-04-24 19:00:00,8.926926,77.05349,21.2,1010.44574,38.615284,0.0,0.0,0.0,6.55,0.0,0.0, +2024-04-24 20:00:00,8.6977005,72.60659,20.75,1010.5323,40.247345,0.0,0.0,0.0,6.75,0.0,0.0, +2024-04-24 21:00:00,8.041144,68.86011,19.75,1011.2971,45.376476,0.0,0.0,0.0,7.6,0.0,0.2, +2024-04-24 22:00:00,7.3375745,72.55273,19.75,1011.793,42.373917,0.0,0.0,0.0,6.6,0.0,0.1, +2024-04-24 23:00:00,7.5610843,69.88733,19.4,1012.1796,41.695126,1.0,0.0,1.0,6.05,0.0,0.0, +2024-04-25 00:00:00,8.1024685,65.96571,19.35,1012.37665,41.825005,30.0,0.0,30.0,6.05,0.0,0.0, +2024-04-25 01:00:00,8.229217,64.05776,19.45,1011.88367,42.288597,92.0,0.0,92.0,6.3,0.0,0.1, +2024-04-25 02:00:00,8.045496,57.692696,21.7,1011.84827,35.68614,215.0,26.916134,201.0,5.85,0.0,0.0, +2024-04-25 03:00:00,6.87968,57.46495,23.9,1011.41394,31.339153,339.0,186.84325,218.0,5.9,0.0,0.0, +2024-04-25 04:00:00,4.701064,51.911175,24.4,1011.13043,30.623774,207.0,24.881048,189.0,6.0,0.0,0.0, +2024-04-25 05:00:00,3.0805843,54.246033,26.45,1010.1945,27.487686,355.0,111.78692,272.0,6.2,0.0,0.0, +2024-04-25 06:00:00,0.1,270.0,27.35,1009.3265,26.707155,475.0,322.70496,248.0,6.55,0.0,0.0, +2024-04-25 07:00:00,4.404543,219.47243,25.85,1009.18646,34.355625,415.0,328.4411,215.0,8.95,0.0,0.0, +2024-04-25 08:00:00,5.9464273,199.65392,23.35,1009.41504,49.700127,320.0,317.9725,172.0,12.25,0.0,0.0, +2024-04-25 09:00:00,5.4451814,172.61404,22.4,1009.4876,54.936142,108.0,53.05192,93.0,12.9,0.0,0.0, +2024-04-25 10:00:00,5.3851643,164.93146,21.3,1009.65515,58.17819,15.0,26.487787,12.0,12.75,0.0,0.0, +2024-04-25 11:00:00,4.9658837,154.98314,21.0,1009.9442,60.829144,0.0,0.0,0.0,13.15,0.0,0.0, +2024-04-25 12:00:00,5.2430906,145.09743,20.85,1010.1384,60.993156,0.0,0.0,0.0,13.05,0.0,0.0, +2024-04-25 13:00:00,4.3863425,133.1524,20.3,1010.7177,60.865276,0.0,0.0,0.0,12.5,0.0,0.0, +2024-04-25 14:00:00,5.8137765,130.81499,20.95,1010.33966,56.58524,0.0,0.0,0.0,12.0,0.0,0.0, +2024-04-25 15:00:00,5.6044626,105.52418,20.35,1010.52094,55.142193,0.0,0.0,0.0,11.05,0.0,0.0, +2024-04-25 16:00:00,4.482187,128.65984,18.4,1009.5726,65.85309,0.0,0.0,0.0,11.9,0.0,0.0, +2024-04-25 17:00:00,2.5,126.86999,18.1,1009.36566,66.44383,0.0,0.0,0.0,11.75,0.0,0.0, +2024-04-25 18:00:00,2.3600848,126.384445,17.85,1009.2592,64.655685,0.0,0.0,0.0,11.1,0.0,0.0, +2024-04-25 19:00:00,2.3537204,102.26476,17.65,1008.7576,61.668327,0.0,0.0,0.0,10.2,0.0,0.0, +2024-04-25 20:00:00,2.408319,94.76356,17.25,1008.4484,63.245346,0.0,0.0,0.0,10.2,0.0,0.0, +2024-04-25 21:00:00,2.5079873,94.57384,17.25,1008.4484,65.60679,0.0,0.0,0.0,10.75,0.0,0.0, +2024-04-25 22:00:00,3.0413814,80.53775,17.55,1008.1597,67.43468,0.0,0.0,0.0,11.45,0.0,0.0, +2024-04-25 23:00:00,3.6687872,72.55273,17.65,1008.2618,67.902405,1.0,0.0,1.0,11.65,0.0,0.0, +2024-04-26 00:00:00,4.0853395,68.45896,19.6,1008.6153,60.10375,102.0,457.1377,34.0,11.65,0.0,0.0, +2024-04-26 01:00:00,5.664804,69.3255,22.65,1008.80023,45.72096,303.0,694.5058,62.0,10.35,0.0,0.0, +2024-04-26 02:00:00,4.5617976,63.996716,25.95,1008.693,35.799496,493.0,808.3778,75.0,9.65,0.0,0.0, +2024-04-26 03:00:00,2.4596748,63.435013,28.15,1008.2569,28.625654,640.0,866.1164,82.0,8.25,0.0,0.0, +2024-04-26 04:00:00,0.9055385,173.6599,28.95,1007.5839,26.144447,728.0,891.8537,86.0,7.6,0.0,0.0, +2024-04-26 05:00:00,3.1064448,213.17853,29.0,1006.69244,26.426544,751.0,898.86127,87.0,7.8,0.0,0.0, +2024-04-26 06:00:00,5.700877,217.87505,28.0,1006.3679,32.927402,706.0,887.7015,85.0,10.2,0.0,0.0, +2024-04-26 07:00:00,5.8591805,207.43964,27.05,1006.24316,36.229607,596.0,854.46375,79.0,10.8,0.0,0.0, +2024-04-26 08:00:00,5.531727,192.5288,25.85,1006.40906,41.004097,433.0,784.1491,71.0,11.6,0.0,0.0, +2024-04-26 09:00:00,4.609772,183.73132,24.65,1006.4754,46.421837,234.0,641.3452,55.0,12.4,0.0,0.0, +2024-04-26 10:00:00,4.00125,178.56793,22.7,1006.52057,60.243076,48.0,260.25522,19.0,14.6,0.0,0.0, +2024-04-26 11:00:00,3.5171013,165.17348,21.85,1007.092,64.47197,0.0,0.0,0.0,14.85,0.0,0.0, +2024-04-26 12:00:00,3.1016126,159.22766,21.25,1007.8684,63.92654,0.0,0.0,0.0,14.15,0.0,0.0, +2024-04-26 13:00:00,3.224903,150.2552,20.0,1008.5273,68.821625,0.0,0.0,0.0,14.1,0.0,0.0, +2024-04-26 14:00:00,2.8999999,136.39711,19.2,1008.60364,70.47397,0.0,0.0,0.0,13.7,0.0,0.0, +2024-04-26 15:00:00,2.8999999,136.39711,18.55,1008.48615,71.0423,0.0,0.0,0.0,13.2,0.0,0.0, +2024-04-26 16:00:00,2.9732137,137.72638,18.05,1008.0749,69.56623,0.0,0.0,0.0,12.4,0.0,0.0, +2024-04-26 17:00:00,3.2202482,143.84172,17.75,1007.7688,69.05143,0.0,0.0,0.0,12.0,0.0,0.0, +2024-04-26 18:00:00,2.3086793,94.96966,16.95,1008.04315,73.59329,0.0,0.0,0.0,12.2,0.0,0.0, +2024-04-26 19:00:00,2.376973,104.62092,16.4,1008.0271,76.71174,0.0,0.0,0.0,12.3,0.0,0.0, +2024-04-26 20:00:00,2.7313,113.749504,16.35,1007.92664,77.71798,0.0,0.0,0.0,12.45,0.0,0.0, +2024-04-26 21:00:00,2.4738634,104.03627,16.05,1007.8186,79.47869,0.0,0.0,0.0,12.5,0.0,0.0, +2024-04-26 22:00:00,2.433105,99.46225,15.75,1007.71063,79.95987,0.0,0.0,0.0,12.3,0.0,0.0, +2024-04-26 23:00:00,2.6076808,85.60138,15.6,1007.9046,78.63391,1.0,0.0,1.0,11.9,0.0,0.0, +2024-04-27 00:00:00,3.224903,82.875084,18.4,1008.4817,63.084644,101.0,454.5158,34.0,11.25,0.0,0.0, +2024-04-27 01:00:00,1.9849433,130.91429,22.05,1009.577,48.53894,302.0,697.1019,62.0,10.7,0.0,0.0, +2024-04-27 02:00:00,2.5,163.73972,25.25,1009.76514,39.36915,489.0,799.5627,78.0,10.45,0.0,0.0, +2024-04-27 03:00:00,2.9614186,168.31065,27.4,1009.1294,32.4313,637.0,865.96075,82.0,9.45,0.0,0.0, +2024-04-27 04:00:00,3.306055,183.46815,28.65,1008.4685,27.711348,725.0,893.53174,85.0,8.2,0.0,0.0, +2024-04-27 05:00:00,5.2201533,196.69933,28.65,1007.57574,32.562805,747.0,899.3802,86.0,10.6,0.0,0.0, +2024-04-27 06:00:00,6.5253353,195.10115,27.8,1007.1561,40.2143,698.0,879.68005,86.0,13.05,0.0,0.0, +2024-04-27 07:00:00,7.0859013,188.93051,26.95,1007.1332,42.683254,586.0,838.3183,82.0,13.2,0.0,0.0, +2024-04-27 08:00:00,7.1112585,183.22446,25.7,1007.49615,44.474667,389.0,613.69934,108.0,12.7,0.0,0.0, +2024-04-27 09:00:00,6.166036,171.60716,24.45,1007.85834,51.81259,197.0,435.57022,77.0,13.9,0.0,0.0, +2024-04-27 10:00:00,6.2361846,164.18074,23.0,1008.2149,56.905975,36.0,145.95837,20.0,14.0,0.0,0.0, +2024-04-27 11:00:00,6.1741395,155.09526,22.6,1008.799,52.35135,0.0,0.0,0.0,12.35,0.0,0.0, +2024-04-27 12:00:00,5.95399,150.85202,21.75,1009.3704,52.475212,0.0,0.0,0.0,11.6,0.0,0.0, +2024-04-27 13:00:00,5.6035705,145.17545,21.55,1010.25726,49.712,0.0,0.0,0.0,10.6,0.0,0.0, +2024-04-27 14:00:00,4.8010416,144.3235,20.9,1010.33813,48.878082,0.0,0.0,0.0,9.75,0.0,0.0, +2024-04-27 15:00:00,4.384062,135.0001,20.6,1010.3295,46.391605,0.0,0.0,0.0,8.7,0.0,0.0, +2024-04-27 16:00:00,3.9597979,135.0001,20.3,1010.1227,44.610966,0.0,0.0,0.0,7.85,0.0,0.0, +2024-04-27 17:00:00,3.676955,135.0001,19.85,1009.8124,43.58144,0.0,0.0,0.0,7.1,0.0,0.0, +2024-04-27 18:00:00,3.847077,117.89718,19.55,1010.1014,40.88235,0.0,0.0,0.0,5.9,0.0,0.0, +2024-04-27 19:00:00,4.1231055,112.833694,19.6,1010.30133,38.15569,0.0,0.0,0.0,4.95,0.0,0.0, +2024-04-27 20:00:00,4.031129,113.38525,19.3,1010.2925,38.33581,0.0,0.0,0.0,4.75,0.0,0.0, +2024-04-27 21:00:00,4.0853395,111.541046,19.0,1010.38306,39.46983,0.0,0.0,0.0,4.9,0.0,0.0, +2024-04-27 22:00:00,4.2059484,108.00426,19.3,1010.58997,38.87402,0.0,0.0,0.0,4.95,0.0,0.0, +2024-04-27 23:00:00,4.3011627,107.592514,19.7,1010.9984,38.05184,1.0,0.0,1.0,5.0,0.0,0.0, +2024-04-28 00:00:00,4.1785164,111.03758,20.75,1011.5241,35.90994,66.0,136.92516,46.0,5.1,0.0,0.0, +2024-04-28 01:00:00,5.0695167,112.01134,22.7,1012.4716,31.32591,240.0,374.7596,112.0,4.85,0.0,0.0, +2024-04-28 02:00:00,5.4230986,112.78245,25.2,1012.3425,27.144655,450.0,683.0083,101.0,4.95,0.0,0.0, +2024-04-28 03:00:00,5.9093146,113.962494,27.75,1011.7181,23.4362,619.0,817.17926,98.0,5.0,0.0,0.0, +2024-04-28 04:00:00,5.186521,123.996506,29.3,1010.86676,20.756563,706.0,839.092,108.0,4.55,0.0,0.0, +2024-04-28 05:00:00,4.545327,140.35587,29.9,1009.7918,20.333107,724.0,824.6693,121.0,4.75,0.0,0.0, +2024-04-28 06:00:00,4.5188494,155.13632,30.15,1009.10394,21.189825,686.0,857.08905,93.0,5.55,0.0,0.0, +2024-04-28 07:00:00,6.6068144,177.39749,28.6,1008.76495,29.73537,574.0,803.5098,94.0,9.2,0.0,0.0, +2024-04-28 08:00:00,7.3,180.0,26.4,1008.90375,44.521557,416.0,753.0573,74.0,13.35,0.0,0.0, +2024-04-28 09:00:00,7.8409185,174.14407,24.1,1009.0392,51.05233,222.0,617.769,54.0,13.35,0.0,0.0, +2024-04-28 10:00:00,7.2111025,160.55988,22.3,1009.48474,57.47772,42.0,231.83324,17.0,13.5,0.0,0.0, +2024-04-28 11:00:00,6.854196,156.80139,21.85,1009.96826,61.6222,0.0,0.0,0.0,14.15,0.0,0.0, +2024-04-28 12:00:00,6.306346,152.62238,21.5,1010.5536,63.774876,0.0,0.0,0.0,14.35,0.0,0.0, +2024-04-28 13:00:00,5.4708314,149.21593,20.45,1011.4164,71.3958,0.0,0.0,0.0,15.1,0.0,0.0, +2024-04-28 14:00:00,4.545327,140.35587,20.25,1011.31146,66.892586,0.0,0.0,0.0,13.9,0.0,0.0, +2024-04-28 15:00:00,3.753665,131.76021,20.4,1011.2163,48.415333,0.0,0.0,0.0,9.15,0.0,0.0, +2024-04-28 16:00:00,4.031129,119.74479,20.85,1010.63434,35.68964,0.0,0.0,0.0,5.1,0.0,0.0, +2024-04-28 17:00:00,5.0,106.26028,21.1,1010.54224,36.01054,0.0,0.0,0.0,5.45,0.0,0.0, +2024-04-28 18:00:00,5.921149,94.84392,21.2,1010.3466,37.050846,0.0,0.0,0.0,5.95,0.0,0.0, +2024-04-28 19:00:00,6.503076,91.76235,21.25,1010.24866,37.84026,0.0,0.0,0.0,6.3,0.0,0.0, +2024-04-28 20:00:00,6.9,90.0,21.25,1010.05035,38.233128,0.0,0.0,0.0,6.45,0.0,0.0, +2024-04-28 21:00:00,7.006426,87.54603,21.05,1010.1438,38.705315,0.0,0.0,0.0,6.45,0.0,0.0, +2024-04-28 22:00:00,7.106335,87.58054,20.8,1010.33527,39.440235,0.0,0.0,0.0,6.5,0.0,0.0, +2024-04-28 23:00:00,6.906519,87.5105,20.5,1010.4258,41.012638,1.0,0.0,1.0,6.8,0.0,0.0, +2024-04-29 00:00:00,6.5276337,84.7262,21.75,1010.85815,38.905468,93.0,414.5966,33.0,7.15,0.0,0.0, +2024-04-29 01:00:00,6.661081,82.234924,24.25,1010.92786,33.32821,200.0,250.87022,115.0,7.1,0.0,0.0, +2024-04-29 02:00:00,6.9857,76.75947,27.05,1010.40936,31.366014,384.0,431.171,165.0,8.65,0.0,0.0, +2024-04-29 03:00:00,6.296825,69.55037,29.75,1009.88684,32.116978,563.0,690.6161,125.0,11.35,0.0,0.0, +2024-04-29 04:00:00,4.924429,66.03751,31.4,1009.1369,31.317959,581.0,604.9905,152.0,12.4,0.0,0.0, +2024-04-29 05:00:00,3.6619666,55.0079,32.85,1007.88513,27.280445,696.0,805.5303,110.0,11.55,0.0,0.0, +2024-04-29 06:00:00,3.324154,68.83867,31.85,1007.1644,27.557177,517.0,540.6416,145.0,10.85,0.0,0.0, +2024-04-29 07:00:00,4.104875,87.20736,32.5,1006.58624,26.124483,515.0,641.8597,134.0,10.6,0.0,0.0, +2024-04-29 08:00:00,4.838388,71.93944,32.15,1006.67633,26.646172,344.0,463.9707,135.0,10.6,0.0,0.0, +2024-04-29 09:00:00,4.9477267,75.96373,31.5,1006.6592,26.828993,132.0,145.2836,93.0,10.15,0.0,0.0, +2024-04-29 10:00:00,6.0827627,99.46225,29.9,1006.9149,30.904934,30.0,65.98853,23.0,10.9,0.0,0.0, +2024-04-29 11:00:00,6.2513995,97.35229,28.9,1007.2848,32.63241,0.0,0.0,0.0,10.85,0.0,0.0, +2024-04-29 12:00:00,6.7896976,80.67649,28.1,1007.8585,34.641838,0.0,0.0,0.0,11.05,0.0,0.0, +2024-04-29 13:00:00,6.6219335,75.124275,27.25,1007.5382,38.765892,0.0,0.0,0.0,12.0,0.0,0.0, +2024-04-29 14:00:00,5.948109,63.00425,26.9,1007.62787,39.963314,0.0,0.0,0.0,12.15,0.0,0.0, +2024-04-29 15:00:00,5.5973206,48.621593,26.1,1007.70526,41.618706,0.0,0.0,0.0,12.05,0.0,0.0, +2024-04-29 16:00:00,4.596738,44.118694,25.35,1007.28784,43.654934,0.0,0.0,0.0,12.1,0.0,0.0, +2024-04-29 17:00:00,4.816638,41.63345,25.1,1007.4797,45.938843,0.0,0.0,0.0,12.65,0.0,0.0, +2024-04-29 18:00:00,3.764306,39.61066,24.15,1007.8501,49.58778,0.0,0.0,0.0,12.95,0.0,0.0, +2024-04-29 19:00:00,3.8275318,33.27491,23.8,1008.0387,51.811916,0.0,0.0,0.0,13.3,0.0,0.0, +2024-04-29 20:00:00,4.701064,38.088825,23.95,1007.944,53.38998,0.0,0.0,0.0,13.9,0.0,0.0, +2024-04-29 21:00:00,5.544367,39.143982,24.05,1008.24414,54.463455,0.0,0.0,0.0,14.3,0.0,0.0, +2024-04-29 22:00:00,6.0,36.86998,24.0,1008.7388,55.51692,0.0,0.0,0.0,14.55,0.0,0.0, +2024-04-29 23:00:00,6.6850576,34.641014,23.8,1008.9314,56.18844,1.0,0.0,1.0,14.55,0.0,0.0, +2024-04-30 00:00:00,6.7675695,34.159744,24.7,1009.254,52.553284,72.0,132.52232,53.0,14.35,0.0,0.0, +2024-04-30 01:00:00,7.566373,29.275164,26.7,1009.3088,44.17064,256.0,464.16217,100.0,13.5,0.0,0.0, +2024-04-30 02:00:00,6.1269894,26.146788,28.65,1009.1629,37.16239,451.0,703.1557,96.0,12.6,0.0,0.0, +2024-04-30 03:00:00,4.7518415,8.471065,30.55,1009.41205,32.12633,610.0,838.5093,81.0,12.05,0.0,0.0, +2024-04-30 04:00:00,3.679674,317.2026,31.65,1008.7467,29.778938,688.0,853.2439,86.0,11.85,0.0,0.0, +2024-04-30 05:00:00,5.824946,258.11136,29.45,1008.0933,42.13694,697.0,826.2393,99.0,15.25,0.0,0.0, +2024-04-30 06:00:00,5.7974133,255.00487,27.9,1007.9522,43.928383,605.0,678.0699,141.0,14.5,0.0,0.0, +2024-04-30 07:00:00,3.1575305,280.954,27.7,1008.5421,42.890175,522.0,723.9324,95.0,13.95,0.0,0.0, +2024-04-30 08:00:00,2.2022717,272.6025,26.8,1009.1129,51.097855,339.0,550.5622,93.0,15.85,0.0,0.0, +2024-04-30 09:00:00,2.433105,260.53775,25.15,1009.5639,67.0418,165.0,366.05557,68.0,18.6,0.0,0.0, +2024-04-30 10:00:00,1.2206556,235.0079,23.8,1009.82404,80.28911,25.0,95.83218,15.0,20.2,0.0,0.0, +2024-04-30 11:00:00,1.0816654,236.3099,22.55,1010.7814,88.48157,0.0,0.0,0.0,20.55,0.0,0.8, +2024-04-30 12:00:00,1.7804494,38.157276,22.7,1010.8847,83.7067,0.0,0.0,0.0,19.8,0.0,0.0, +2024-04-30 13:00:00,4.9406476,54.057793,22.25,1010.17773,66.02369,0.0,0.0,0.0,15.6,0.0,0.0, +2024-04-30 14:00:00,6.3820057,54.5666,22.7,1009.5953,59.85541,0.0,0.0,0.0,14.5,0.0,0.0, +2024-04-30 15:00:00,6.794115,42.614033,22.95,1009.5031,57.26377,0.0,0.0,0.0,14.05,0.0,0.0, +2024-04-30 16:00:00,6.6843095,38.92756,22.6,1008.99744,55.346653,0.0,0.0,0.0,13.2,0.0,0.0, +2024-04-30 17:00:00,6.789698,43.806595,22.7,1008.80176,52.37737,0.0,0.0,0.0,12.45,0.0,0.0, +2024-04-30 18:00:00,6.576473,45.615982,22.7,1008.901,50.850597,0.0,0.0,0.0,12.0,0.0,0.0, +2024-04-30 19:00:00,5.4405885,53.972538,22.4,1008.79333,51.27617,0.0,0.0,0.0,11.85,0.0,0.0, +2024-04-30 20:00:00,6.6603303,48.65233,22.4,1008.595,50.603924,0.0,0.0,0.0,11.65,0.0,0.0, +2024-04-30 21:00:00,7.0092793,42.108665,22.15,1008.78625,50.705017,0.0,0.0,0.0,11.45,0.0,0.0, +2024-04-30 22:00:00,6.536819,29.309916,21.8,1009.37164,51.28738,0.0,0.0,0.0,11.3,0.0,0.0, +2024-04-30 23:00:00,6.8818603,35.537766,21.75,1009.4696,51.444252,1.0,0.0,1.0,11.3,0.0,0.0, +2024-05-01 00:00:00,6.902898,38.530205,22.1,1009.8761,53.61437,41.0,105.614426,26.0,12.25,0.0,0.3, +2024-05-01 01:00:00,7.998125,42.46639,23.2,1009.11334,51.65525,65.0,59.994892,45.0,12.7,0.0,0.1, +2024-05-01 02:00:00,6.983552,29.134203,25.95,1009.8833,43.53448,240.0,195.289,142.0,12.6,0.0,0.0, +2024-05-01 03:00:00,6.9339743,33.231728,27.9,1009.73785,37.442738,419.0,345.78513,202.0,12.05,0.0,0.0, +2024-05-01 04:00:00,6.046487,34.215755,28.5,1009.35724,35.33261,389.0,286.32437,188.0,11.7,0.0,0.0, +2024-05-01 05:00:00,6.2169123,11.129155,30.35,1008.5138,27.798779,404.0,159.70515,289.0,9.7,0.0,0.0, +2024-05-01 06:00:00,4.997999,340.11475,31.55,1007.95056,24.765394,570.0,515.75714,219.0,9.0,0.0,0.0, +2024-05-01 07:00:00,6.4031243,231.34016,27.45,1008.5355,47.48287,530.0,704.63086,117.0,15.3,0.0,0.0, +2024-05-01 08:00:00,5.2801514,217.30403,25.35,1009.37085,61.048,368.0,586.6138,108.0,17.3,0.0,0.0, +2024-05-01 09:00:00,4.0804415,197.10281,24.65,1009.947,60.88801,134.0,183.4935,86.0,16.6,0.0,0.0, +2024-05-01 10:00:00,3.577709,153.43501,23.55,1010.41254,66.50476,14.0,9.741813,13.0,16.95,0.0,0.0, +2024-05-01 11:00:00,3.4234486,173.29025,23.3,1011.2982,64.78416,0.0,0.0,0.0,16.3,0.0,0.0, +2024-05-01 12:00:00,4.5177426,152.30061,23.4,1011.8959,64.59964,0.0,0.0,0.0,16.35,0.0,0.0, +2024-05-01 13:00:00,2.9614186,101.68935,22.55,1012.6659,78.8803,0.0,0.0,0.0,18.7,0.0,0.1, +2024-05-01 14:00:00,4.5177426,84.92049,22.45,1012.663,76.913635,0.0,0.0,0.0,18.2,0.0,0.0, +2024-05-01 15:00:00,5.1923018,74.3577,22.3,1012.75775,74.039154,0.0,0.0,0.0,17.45,0.0,0.0, +2024-05-01 16:00:00,6.109828,68.89509,22.2,1012.3586,69.03237,0.0,0.0,0.0,16.25,0.0,0.0, +2024-05-01 17:00:00,6.0440054,73.66389,22.25,1011.963,65.60209,0.0,0.0,0.0,15.5,0.0,0.0, +2024-05-01 18:00:00,6.105735,58.392544,21.9,1012.3499,67.23151,0.0,0.0,0.0,15.55,0.0,0.0, +2024-05-01 19:00:00,5.2478566,59.03632,21.5,1011.8429,69.78305,0.0,0.0,0.0,15.75,0.0,0.0, +2024-05-01 20:00:00,5.215362,57.528828,21.35,1011.73926,68.42549,0.0,0.0,0.0,15.3,0.0,0.0, +2024-05-01 21:00:00,5.6859474,55.750916,21.1,1012.0299,68.15623,0.0,0.0,0.0,15.0,0.0,0.0, +2024-05-01 22:00:00,6.529931,49.969803,21.55,1012.34015,62.966015,0.0,0.0,0.0,14.2,0.0,0.0, +2024-05-01 23:00:00,6.576473,44.384018,21.65,1012.8389,59.220802,0.0,0.0,0.0,13.35,0.0,0.0, +2024-05-02 00:00:00,6.9310894,43.83095,22.4,1013.45496,54.577927,48.0,92.407326,35.0,12.8,0.0,0.0, +2024-05-02 01:00:00,7.3824115,28.30066,24.4,1013.90765,54.72793,193.0,214.73564,122.0,14.7,0.0,0.0, +2024-05-02 02:00:00,6.9065185,34.3804,26.05,1013.9531,46.197548,351.0,318.77585,192.0,13.6,0.0,0.0, +2024-05-02 03:00:00,6.5459914,34.418434,27.6,1013.20184,40.820126,532.0,655.1881,123.0,13.1,0.0,0.0, +2024-05-02 04:00:00,6.0415235,28.68606,29.4,1012.15924,35.235577,672.0,831.80505,91.0,12.45,0.0,0.0, +2024-05-02 05:00:00,5.9464273,19.653913,30.5,1011.1964,30.459425,704.0,864.01587,85.0,11.2,0.0,0.0, +2024-05-02 06:00:00,5.096077,15.945463,31.0,1010.6146,27.145987,658.0,846.5708,85.0,9.9,0.0,0.0, +2024-05-02 07:00:00,3.4132097,5.0423646,31.2,1010.7188,25.692465,555.0,820.6611,77.0,9.25,0.0,0.0, +2024-05-02 08:00:00,1.9697715,336.0375,30.75,1010.9055,26.183722,391.0,720.97577,74.0,9.15,0.0,0.0, +2024-05-02 09:00:00,1.56205,309.8055,29.5,1011.07056,29.09322,204.0,588.57135,52.0,9.65,0.0,0.0, +2024-05-02 10:00:00,1.6492423,345.9637,26.75,1011.4923,35.193024,34.0,198.05373,14.0,10.1,0.0,0.0, +2024-05-02 11:00:00,0.9055385,353.6599,26.15,1012.17053,35.97619,0.0,0.0,0.0,9.9,0.0,0.0, +2024-05-02 12:00:00,1.8357561,150.64235,22.75,1012.57214,47.769142,0.0,0.0,0.0,11.1,0.0,0.0, +2024-05-02 13:00:00,2.3537204,167.73524,22.65,1013.16437,61.804554,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-02 14:00:00,2.7784889,149.74365,22.45,1013.0598,59.603436,0.0,0.0,0.0,14.2,0.0,0.0, +2024-05-02 15:00:00,3.405877,139.76372,21.9,1012.64746,63.862698,0.0,0.0,0.0,14.75,0.0,0.0, +2024-05-02 16:00:00,3.4999998,126.86999,21.2,1012.3302,70.39874,0.0,0.0,0.0,15.6,0.0,0.0, +2024-05-02 17:00:00,3.4999998,126.86999,20.85,1012.3204,75.69755,0.0,0.0,0.0,16.4,0.0,0.0, +2024-05-02 18:00:00,3.1384711,120.65059,20.6,1012.31305,78.103355,0.0,0.0,0.0,16.65,0.0,0.0, +2024-05-02 19:00:00,2.8792362,110.32322,20.15,1012.00287,79.7949,0.0,0.0,0.0,16.55,0.0,0.0, +2024-05-02 20:00:00,2.5495098,115.55992,19.7,1012.08936,81.7901,0.0,0.0,0.0,16.5,0.0,0.0, +2024-05-02 21:00:00,2.2847319,113.198616,19.25,1012.27466,82.51894,0.0,0.0,0.0,16.2,0.0,0.0, +2024-05-02 22:00:00,1.9313208,111.25058,18.75,1012.5579,82.45797,0.0,0.0,0.0,15.7,0.0,0.0, +2024-05-02 23:00:00,1.868154,105.52418,18.4,1013.0436,83.47865,0.0,0.0,0.0,15.55,0.0,0.0, +2024-05-03 00:00:00,2.6925824,111.801476,20.8,1013.509,72.61367,86.0,394.71753,31.0,15.7,0.0,0.0, +2024-05-03 01:00:00,2.7658632,130.60121,23.95,1013.9944,63.094517,265.0,603.7981,67.0,16.5,0.0,0.0, +2024-05-03 02:00:00,3.1064448,146.82147,26.55,1013.7684,49.58083,455.0,770.5376,73.0,15.15,0.0,0.0, +2024-05-03 03:00:00,3.0413814,170.53775,28.05,1013.3132,42.022945,595.0,827.7552,81.0,13.95,0.0,0.0, +2024-05-03 04:00:00,4.7434163,198.43504,27.95,1012.41785,48.075092,677.0,847.499,88.0,15.95,0.0,0.0, +2024-05-03 05:00:00,6.942622,191.6336,25.55,1012.05475,65.26135,684.0,815.095,103.0,18.55,0.0,0.0, +2024-05-03 06:00:00,6.264982,188.25935,26.15,1011.77374,59.896626,564.0,619.4428,147.0,17.75,0.0,0.0, +2024-05-03 07:00:00,6.207254,182.77016,25.6,1012.0561,59.768887,508.0,713.4934,95.0,17.2,0.0,0.0, +2024-05-03 08:00:00,6.7186303,184.2678,24.35,1012.1207,66.66907,387.0,726.7318,70.0,17.75,0.0,0.0, +2024-05-03 09:00:00,6.500769,179.11862,22.95,1012.47864,75.085526,200.0,580.44,52.0,18.3,0.0,0.0, +2024-05-03 10:00:00,6.1983867,169.7779,21.55,1012.9352,83.05504,32.0,181.17961,14.0,18.55,0.0,0.0, +2024-05-03 11:00:00,6.0728908,162.75845,20.75,1013.40845,84.8075,0.0,0.0,0.0,18.1,0.0,0.0, +2024-05-03 12:00:00,5.8821764,162.18102,20.3,1013.4947,83.43304,0.0,0.0,0.0,17.4,0.0,0.0, +2024-05-03 13:00:00,5.8821764,162.18102,20.1,1013.58813,80.808464,0.0,0.0,0.0,16.7,0.0,0.0, +2024-05-03 14:00:00,5.3851647,158.19853,19.75,1013.5782,80.50553,0.0,0.0,0.0,16.3,0.0,0.0, +2024-05-03 15:00:00,5.1107726,149.42085,19.35,1013.46765,79.68421,0.0,0.0,0.0,15.75,0.0,0.0, +2024-05-03 16:00:00,4.6400433,142.88306,18.85,1013.3542,76.35219,0.0,0.0,0.0,14.6,0.0,0.0, +2024-05-03 17:00:00,4.4598207,137.72638,18.45,1013.1443,72.19117,0.0,0.0,0.0,13.35,0.0,0.0, +2024-05-03 18:00:00,4.750789,139.26799,18.15,1013.13544,70.27345,0.0,0.0,0.0,12.65,0.0,0.0, +2024-05-03 19:00:00,5.020956,134.19316,17.9,1012.8309,69.30869,0.0,0.0,0.0,12.2,0.0,0.0, +2024-05-03 20:00:00,4.6861496,129.80553,17.4,1012.91547,71.292984,0.0,0.0,0.0,12.15,0.0,0.0, +2024-05-03 21:00:00,4.4102154,122.969406,16.75,1013.0947,74.53269,0.0,0.0,0.0,12.2,0.0,0.0, +2024-05-03 22:00:00,3.9357338,117.216034,16.3,1013.28,76.44416,0.0,0.0,0.0,12.15,0.0,0.0, +2024-05-03 23:00:00,3.6769552,112.38018,15.85,1013.5642,78.154686,0.0,0.0,0.0,12.05,0.0,0.0, +2024-05-04 00:00:00,3.9560082,110.72565,17.2,1013.9014,71.02113,86.0,405.7897,30.0,11.9,0.0,0.0, +2024-05-04 01:00:00,4.565085,118.8107,19.6,1014.1691,57.572136,280.0,673.39215,61.0,11.0,0.0,0.0, +2024-05-04 02:00:00,5.1739736,138.91835,21.85,1014.0347,46.11434,464.0,791.4803,74.0,9.75,0.0,0.0, +2024-05-04 03:00:00,5.1923018,164.3577,23.15,1013.6743,39.704742,607.0,849.9458,82.0,8.7,0.0,0.0, +2024-05-04 04:00:00,5.4037027,177.87895,23.9,1012.80255,36.68595,693.0,877.77625,86.0,8.2,0.0,0.0, +2024-05-04 05:00:00,6.0074954,182.86235,24.1,1011.7173,37.496346,716.0,886.8943,87.0,8.7,0.0,0.0, +2024-05-04 06:00:00,6.726812,185.11722,23.8,1010.91516,41.666233,675.0,881.1635,85.0,10.0,0.0,0.0, +2024-05-04 07:00:00,7.4330344,185.4037,22.95,1010.69336,50.749516,567.0,850.01874,78.0,12.2,0.0,0.0, +2024-05-04 08:00:00,7.3109508,183.13629,22.2,1010.47406,57.26644,403.0,771.7571,69.0,13.35,0.0,0.0, +2024-05-04 09:00:00,7.206247,177.6141,20.9,1010.7348,64.68362,206.0,611.66254,52.0,14.0,0.0,0.0, +2024-05-04 10:00:00,5.9228373,168.31065,20.25,1010.91473,68.64867,33.0,194.37323,14.0,14.3,0.0,0.0, +2024-05-04 11:00:00,5.1923018,164.3577,20.0,1011.4033,69.71842,0.0,0.0,0.0,14.3,0.0,0.0, +2024-05-04 12:00:00,5.0289164,162.64589,19.65,1011.5919,73.585014,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-04 13:00:00,4.1231055,140.90616,18.65,1011.76166,78.06421,0.0,0.0,0.0,14.75,0.0,0.0, +2024-05-04 14:00:00,3.3421547,141.07245,18.0,1011.84204,77.46347,0.0,0.0,0.0,14.0,0.0,0.0, +2024-05-04 15:00:00,3.4205263,142.12495,17.4,1011.6262,71.527794,0.0,0.0,0.0,12.2,0.0,0.0, +2024-05-04 16:00:00,4.2801867,142.59457,16.95,1011.6132,65.32401,0.0,0.0,0.0,10.4,0.0,0.0, +2024-05-04 17:00:00,4.172529,135.97093,16.3,1011.3959,65.84107,0.0,0.0,0.0,9.9,0.0,0.0, +2024-05-04 18:00:00,4.244997,136.90913,15.8,1011.3813,70.75526,0.0,0.0,0.0,10.5,0.0,0.0, +2024-05-04 19:00:00,4.384062,135.0001,15.25,1011.3652,75.52018,0.0,0.0,0.0,10.95,0.0,0.0, +2024-05-04 20:00:00,4.318565,132.18437,15.0,1011.35785,77.768555,0.0,0.0,0.0,11.15,0.0,0.0, +2024-05-04 21:00:00,4.356604,121.865944,14.7,1011.64636,79.28584,0.0,0.0,0.0,11.15,0.0,0.0, +2024-05-04 22:00:00,4.0853395,111.541046,14.3,1011.73346,80.55518,0.0,0.0,0.0,11.0,0.0,0.0, +2024-05-04 23:00:00,4.0261645,104.38144,13.9,1011.92004,82.94471,0.0,0.0,0.0,11.05,0.0,0.0, +2024-05-05 00:00:00,4.295346,102.09474,15.55,1012.36566,75.07063,87.0,417.0631,30.0,11.15,0.0,0.0, +2024-05-05 01:00:00,3.6235344,117.979385,18.05,1012.6367,63.847595,283.0,691.4149,60.0,11.1,0.0,0.0, +2024-05-05 02:00:00,4.110961,138.94528,20.4,1012.704,48.252537,470.0,810.6091,73.0,9.1,0.0,0.0, +2024-05-05 03:00:00,3.7735925,147.99466,21.75,1012.1475,41.649757,614.0,867.45447,81.0,8.15,0.0,0.0, +2024-05-05 04:00:00,2.8792362,159.67677,22.75,1011.08435,38.530167,701.0,896.6881,84.0,7.9,0.0,0.0, +2024-05-05 05:00:00,3.306055,183.46815,23.35,1009.911,37.283184,723.0,904.09973,85.0,7.95,0.0,0.0, +2024-05-05 06:00:00,4.5891175,191.30989,23.3,1009.3145,40.016396,676.0,891.8869,82.0,8.95,0.0,0.0, +2024-05-05 07:00:00,6.9123073,194.23732,22.1,1009.0827,52.913662,565.0,851.7274,78.0,12.05,0.0,0.0, +2024-05-05 08:00:00,7.7414465,185.93143,20.95,1009.24866,56.77183,400.0,770.8006,69.0,12.05,0.0,0.0, +2024-05-05 09:00:00,7.2,180.0,19.8,1009.81116,59.36246,203.0,611.33167,51.0,11.65,0.0,0.0, +2024-05-05 10:00:00,6.1611686,166.86597,19.05,1010.48376,61.991432,32.0,187.13284,14.0,11.6,0.0,0.0, +2024-05-05 11:00:00,5.6320515,163.49556,18.6,1011.1649,65.89566,0.0,0.0,0.0,12.1,0.0,0.0, +2024-05-05 12:00:00,5.5542774,156.66594,18.35,1011.5543,67.59918,0.0,0.0,0.0,12.25,0.0,0.0, +2024-05-05 13:00:00,5.2325897,153.9247,17.5,1012.12494,72.0178,0.0,0.0,0.0,12.4,0.0,0.0, +2024-05-05 14:00:00,5.147815,150.9455,17.35,1012.31885,71.049416,0.0,0.0,0.0,12.05,0.0,0.0, +2024-05-05 15:00:00,4.1868844,139.84407,16.45,1012.49115,71.350395,0.0,0.0,0.0,11.25,0.0,0.0, +2024-05-05 16:00:00,3.482815,129.17365,15.6,1012.4661,70.48135,0.0,0.0,0.0,10.25,0.0,0.0, +2024-05-05 17:00:00,2.9120438,105.945465,14.75,1011.9452,70.08098,0.0,0.0,0.0,9.35,0.0,0.0, +2024-05-05 18:00:00,2.828427,98.13002,14.15,1011.8282,69.02363,0.0,0.0,0.0,8.55,0.0,0.0, +2024-05-05 19:00:00,2.5317976,99.090195,13.7,1011.6166,67.77122,0.0,0.0,0.0,7.85,0.0,0.0, +2024-05-05 20:00:00,2.5317976,99.090195,13.2,1011.6017,69.53889,0.0,0.0,0.0,7.75,0.0,0.0, +2024-05-05 21:00:00,2.7018514,92.12105,13.05,1011.5972,70.22314,0.0,0.0,0.0,7.75,0.0,0.0, +2024-05-05 22:00:00,2.5,90.0,12.75,1011.985,71.61437,0.0,0.0,0.0,7.75,0.0,0.0, +2024-05-05 23:00:00,2.6476402,79.11452,12.75,1012.1833,71.37087,0.0,0.0,0.0,7.7,0.0,0.0, +2024-05-06 00:00:00,3.1256998,82.64771,15.3,1012.75464,60.703186,85.0,413.76245,29.0,7.75,0.0,0.0, +2024-05-06 01:00:00,2.3194828,97.43131,19.05,1013.16144,49.537853,277.0,681.5697,59.0,8.25,0.0,0.0, +2024-05-06 02:00:00,2.86007,143.53067,21.4,1013.0302,44.616234,459.0,792.96075,73.0,8.85,0.0,0.0, +2024-05-06 03:00:00,3.8639357,169.56258,22.75,1012.6713,46.67156,599.0,844.207,83.0,10.75,0.0,0.0, +2024-05-06 04:00:00,5.1923018,195.6423,23.3,1011.99255,45.596195,643.0,747.7816,131.0,10.9,0.0,0.0, +2024-05-06 05:00:00,5.936329,212.61923,22.35,1011.3708,53.32745,624.0,670.7698,153.0,12.4,0.0,0.0, +2024-05-06 06:00:00,6.484597,206.56499,21.35,1011.1442,60.122063,539.0,538.87384,182.0,13.3,0.0,0.0, +2024-05-06 07:00:00,6.3788714,193.60056,21.8,1011.25604,58.680458,544.0,816.4122,80.0,13.35,0.0,0.0, +2024-05-06 08:00:00,5.440588,197.10281,21.05,1011.23474,64.090096,383.0,725.117,74.0,14.0,0.0,0.0, +2024-05-06 09:00:00,4.6840153,196.1135,20.15,1011.60614,68.18584,193.0,578.2296,51.0,14.1,0.0,0.0, +2024-05-06 10:00:00,3.748333,189.21095,19.0,1011.8706,76.13016,29.0,169.01402,13.0,14.7,0.0,0.0, +2024-05-06 11:00:00,3.945884,171.25392,18.55,1012.2547,81.38293,0.0,0.0,0.0,15.3,0.0,0.0, +2024-05-06 12:00:00,3.8897302,162.03076,18.35,1012.4469,80.57591,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-06 13:00:00,3.8999999,157.3801,17.5,1012.72003,82.30424,0.0,0.0,0.0,14.45,0.0,0.0, +2024-05-06 14:00:00,3.7735925,147.99466,17.25,1012.8118,80.4277,0.0,0.0,0.0,13.85,0.0,0.0, +2024-05-06 15:00:00,3.405877,139.76372,16.85,1012.80035,81.956955,0.0,0.0,0.0,13.75,0.0,0.0, +2024-05-06 16:00:00,3.2015622,128.65984,16.25,1012.5843,82.148544,0.0,0.0,0.0,13.2,0.0,0.0, +2024-05-06 17:00:00,2.7294688,118.442825,15.4,1012.262,80.439095,0.0,0.0,0.0,12.05,0.0,0.0, +2024-05-06 18:00:00,2.624881,107.74477,14.65,1012.23975,81.13788,0.0,0.0,0.0,11.45,0.0,0.0, +2024-05-06 19:00:00,2.280351,105.25517,14.0,1012.2204,80.246796,0.0,0.0,0.0,10.65,0.0,0.0, +2024-05-06 20:00:00,2.3537204,102.26476,13.75,1012.51056,78.09744,0.0,0.0,0.0,10.0,0.0,0.0, +2024-05-06 21:00:00,2.745906,100.491425,13.6,1012.80365,75.7525,0.0,0.0,0.0,9.4,0.0,0.0, +2024-05-06 22:00:00,3.3136082,95.19434,13.5,1012.70123,73.47365,0.0,0.0,0.0,8.85,0.0,0.0, +2024-05-06 23:00:00,3.4014704,91.68465,13.55,1012.90125,71.5224,0.0,0.0,0.0,8.5,0.0,0.0, +2024-05-07 00:00:00,4.501111,91.273,15.35,1013.25214,63.240322,82.0,395.44943,29.0,8.4,0.0,0.0, +2024-05-07 01:00:00,3.0083218,111.44781,17.9,1013.5251,54.88492,275.0,677.8269,60.0,8.7,0.0,0.0, +2024-05-07 02:00:00,2.6627054,145.71307,20.5,1013.5995,45.431404,460.0,801.9252,72.0,8.3,0.0,0.0, +2024-05-07 03:00:00,3.4,151.92761,22.6,1012.8656,36.94279,603.0,860.1413,80.0,7.15,0.0,0.0, +2024-05-07 04:00:00,4.0804415,162.89719,24.1,1012.01483,30.964893,689.0,889.42737,83.0,5.9,0.0,0.0, +2024-05-07 05:00:00,4.570558,169.91946,24.9,1010.74725,27.538284,710.0,897.3388,83.0,4.9,0.0,0.0, +2024-05-07 06:00:00,5.1088157,176.6336,25.2,1009.86273,28.695013,666.0,887.65295,81.0,5.75,0.0,0.0, +2024-05-07 07:00:00,5.813777,176.05489,24.3,1009.7389,43.076824,557.0,849.60425,77.0,10.95,0.0,0.0, +2024-05-07 08:00:00,5.5145264,175.84044,23.9,1009.7278,46.523094,392.0,766.0896,68.0,11.75,0.0,0.0, +2024-05-07 09:00:00,5.7428217,187.00117,22.55,1010.08716,59.820168,197.0,605.9462,50.0,14.35,0.0,0.0, +2024-05-07 10:00:00,5.8034477,181.97488,20.45,1010.623,72.31891,29.0,171.70059,13.0,15.3,0.0,0.0, +2024-05-07 11:00:00,4.8373547,172.87508,20.05,1010.8099,76.05346,0.0,0.0,0.0,15.7,0.0,0.0, +2024-05-07 12:00:00,3.104835,165.06853,19.35,1010.9883,80.96737,0.0,0.0,0.0,16.0,0.0,0.0, +2024-05-07 13:00:00,2.280351,127.875046,17.95,1011.54297,80.00384,0.0,0.0,0.0,14.45,0.0,0.0, +2024-05-07 14:00:00,2.8231187,112.93214,17.9,1011.6408,57.536674,0.0,0.0,0.0,9.4,0.0,0.0, +2024-05-07 15:00:00,3.324154,111.16133,17.95,1011.44385,49.070236,0.0,0.0,0.0,7.1,0.0,0.0, +2024-05-07 16:00:00,3.436568,98.3658,17.7,1011.2382,48.002506,0.0,0.0,0.0,6.55,0.0,0.0, +2024-05-07 17:00:00,4.4045434,92.60251,17.65,1011.0385,46.20312,0.0,0.0,0.0,5.95,0.0,0.0, +2024-05-07 18:00:00,5.0089917,93.43356,17.85,1010.6476,44.842644,0.0,0.0,0.0,5.7,0.0,0.0, +2024-05-07 19:00:00,5.3037724,92.16103,17.6,1010.54114,45.083538,0.0,0.0,0.0,5.55,0.0,0.0, +2024-05-07 20:00:00,6.0074954,87.13766,17.65,1010.0468,44.786133,0.0,0.0,0.0,5.5,0.0,0.0, +2024-05-07 21:00:00,6.207254,87.22985,17.65,1010.0468,45.41109,0.0,0.0,0.0,5.7,0.0,0.0, +2024-05-07 22:00:00,6.203225,88.15243,17.35,1010.03796,47.576374,0.0,0.0,0.0,6.1,0.0,0.0, +2024-05-07 23:00:00,6.0074954,87.13766,17.0,1010.42456,50.000763,0.0,0.0,0.0,6.5,0.0,0.0, +2024-05-08 00:00:00,6.1131005,86.24835,18.3,1011.0573,48.167973,81.0,399.35272,28.0,7.15,0.0,0.0, +2024-05-08 01:00:00,6.3505907,82.763176,21.5,1010.95026,40.323254,273.0,683.51556,58.0,7.45,0.0,0.0, +2024-05-08 02:00:00,6.609841,79.540146,23.6,1010.61224,34.893997,457.0,802.6372,71.0,7.2,0.0,0.0, +2024-05-08 03:00:00,6.360031,73.55955,25.7,1009.8767,29.334383,600.0,862.9659,78.0,6.5,0.0,0.0, +2024-05-08 04:00:00,5.8872743,69.10216,27.5,1009.0327,25.313438,686.0,892.2941,81.0,5.9,0.0,0.0, +2024-05-08 05:00:00,5.4626,66.2505,29.05,1007.9832,21.058714,706.0,897.40045,82.0,4.55,0.0,0.0, +2024-05-08 06:00:00,5.7245083,62.98742,30.2,1007.0219,17.4867,658.0,876.9874,83.0,2.85,0.0,0.0, +2024-05-08 07:00:00,6.400781,61.03244,30.5,1006.13696,15.724739,538.0,779.8183,100.0,1.6,0.0,0.0, +2024-05-08 08:00:00,5.7982755,57.680416,29.95,1006.02325,15.657116,281.0,250.12282,176.0,1.1,0.0,0.0, +2024-05-08 09:00:00,3.2649658,62.65021,28.95,1005.8975,17.131126,121.0,91.782845,99.0,1.55,0.0,0.0, +2024-05-08 10:00:00,2.1023796,87.27374,24.55,1005.7782,22.514702,27.0,130.79292,15.0,1.75,0.0,0.0, +2024-05-08 11:00:00,2.8,90.0,23.15,1006.037,25.022627,0.0,0.0,0.0,2.05,0.0,0.0, +2024-05-08 12:00:00,3.5,90.0,22.35,1006.0149,26.26636,0.0,0.0,0.0,2.05,0.0,0.0, +2024-05-08 13:00:00,3.9293766,75.25639,20.8,1006.86395,29.713156,0.0,0.0,0.0,2.45,0.0,0.0, +2024-05-08 14:00:00,4.7169905,68.87521,20.8,1006.7648,28.673634,0.0,0.0,0.0,1.95,0.0,0.0, +2024-05-08 15:00:00,5.636488,64.79892,21.2,1006.4785,26.801943,0.0,0.0,0.0,1.35,0.0,0.0, +2024-05-08 16:00:00,5.940539,53.901627,21.6,1006.29126,25.503962,0.0,0.0,0.0,1.0,0.0,0.0, +2024-05-08 17:00:00,6.155485,46.97493,21.95,1006.20197,22.559978,0.0,0.0,0.0,-0.4,0.0,0.0, +2024-05-08 18:00:00,6.0307546,49.70793,22.1,1006.1072,20.70353,0.0,0.0,0.0,-1.45,0.0,0.0, +2024-05-08 19:00:00,6.5802736,53.65245,21.6,1005.9937,23.300238,0.0,0.0,0.0,-0.25,0.0,0.0, +2024-05-08 20:00:00,6.762396,51.6048,21.3,1006.1839,25.976807,0.0,0.0,0.0,1.0,0.0,0.0, +2024-05-08 21:00:00,6.7357254,49.214275,21.4,1006.5835,28.334612,0.0,0.0,0.0,2.3,0.0,0.0, +2024-05-08 22:00:00,6.9310894,46.169064,21.2,1007.1728,30.0385,0.0,0.0,0.0,2.95,0.0,0.0, +2024-05-08 23:00:00,7.1421285,44.432816,21.1,1007.8643,30.871344,0.0,0.0,0.0,3.25,0.0,0.0, +2024-05-09 00:00:00,7.017834,40.955414,22.05,1008.2876,29.64662,60.0,114.1429,45.0,3.5,0.0,0.0, +2024-05-09 01:00:00,5.9033885,38.81139,24.35,1008.3515,27.290836,219.0,352.6404,109.0,4.3,0.0,0.0, +2024-05-09 02:00:00,6.140033,30.32353,26.8,1008.7162,23.679247,350.0,328.4351,193.0,4.35,0.0,0.0, +2024-05-09 03:00:00,5.9439044,12.633354,28.75,1008.5706,20.402103,414.0,242.61327,268.0,3.85,0.0,0.0, +2024-05-09 04:00:00,5.6293874,347.692,29.6,1007.5019,20.471798,494.0,306.77252,287.0,4.6,0.0,0.0, +2024-05-09 05:00:00,4.992995,302.7352,29.15,1006.89465,22.917421,532.0,332.36533,302.0,5.85,0.0,0.0, +2024-05-09 06:00:00,6.041523,282.42593,27.4,1006.947,35.7302,534.0,449.15628,241.0,10.9,0.0,0.0, +2024-05-09 07:00:00,6.551336,282.33908,26.25,1007.2133,43.90333,494.0,626.73956,144.0,13.0,0.0,0.0, +2024-05-09 08:00:00,5.9135437,288.74142,25.1,1007.6781,52.48673,328.0,467.91434,133.0,14.7,0.0,0.0, +2024-05-09 09:00:00,5.3225937,295.60214,24.1,1008.0473,59.038734,142.0,177.30283,100.0,15.6,0.0,0.0, +2024-05-09 10:00:00,4.0496917,302.90524,23.05,1008.51416,65.352806,16.0,11.067593,15.0,16.2,0.0,0.0, +2024-05-09 11:00:00,2.8999999,316.3971,22.5,1009.09375,69.31074,0.0,0.0,0.0,16.6,0.0,0.0, +2024-05-09 12:00:00,2.3323808,329.03632,21.95,1009.07825,71.67067,0.0,0.0,0.0,16.6,0.0,0.0, +2024-05-09 13:00:00,1.7,360.0,20.9,1009.94135,71.02206,0.0,0.0,0.0,15.45,0.0,0.0, +2024-05-09 14:00:00,1.4560219,15.945477,20.4,1009.7287,70.473625,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-09 15:00:00,1.7262677,10.007925,19.75,1009.61115,72.19273,0.0,0.0,0.0,14.6,0.0,0.0, +2024-05-09 16:00:00,1.746425,23.629398,20.4,1009.43115,69.12342,0.0,0.0,0.0,14.55,0.0,0.0, +2024-05-09 17:00:00,1.6278821,10.61961,20.0,1009.4198,72.00558,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-09 18:00:00,1.6155494,21.801476,19.8,1009.5137,73.61101,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-09 19:00:00,2.3259406,25.463305,19.95,1009.5177,74.11165,0.0,0.0,0.0,15.2,0.0,0.0, +2024-05-09 20:00:00,2.6832817,26.564985,20.3,1009.03174,72.7578,0.0,0.0,0.0,15.25,0.0,0.0, +2024-05-09 21:00:00,2.2472203,20.854538,20.15,1008.92834,71.34038,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-09 22:00:00,2.1023796,25.346138,20.0,1009.4198,69.94423,0.0,0.0,0.0,14.35,0.0,0.0, +2024-05-09 23:00:00,2.302173,34.3804,19.25,1009.99365,72.10213,0.0,0.0,0.0,14.1,0.0,0.0, +2024-05-10 00:00:00,3.1016126,20.772345,20.9,1010.5365,64.265434,66.0,307.39594,26.0,13.9,0.0,0.0, +2024-05-10 01:00:00,3.640055,20.924576,25.1,1010.6538,44.018673,237.0,491.36914,85.0,12.0,0.0,0.0, +2024-05-10 02:00:00,4.0199504,354.2895,27.85,1010.72864,35.975285,402.0,639.7752,98.0,11.4,0.0,0.0, +2024-05-10 03:00:00,4.031129,330.25522,29.2,1010.86426,34.15274,525.0,654.73694,133.0,11.8,0.0,0.0, +2024-05-10 04:00:00,4.3462625,293.0255,29.5,1009.8801,34.236324,631.0,789.2074,101.0,12.1,0.0,0.0, +2024-05-10 05:00:00,4.7265205,276.07236,29.15,1009.1763,36.458015,639.0,788.3951,96.0,12.75,0.0,0.0, +2024-05-10 06:00:00,5.3600373,255.96373,27.3,1009.5233,49.46107,580.0,742.58093,98.0,15.8,0.0,0.0, +2024-05-10 07:00:00,4.7675986,260.34018,26.3,1009.8928,54.504772,439.0,511.433,155.0,16.4,0.0,0.0, +2024-05-10 08:00:00,4.652956,261.34753,25.8,1010.4744,60.194202,347.0,633.18945,85.0,17.5,0.0,0.0, +2024-05-10 09:00:00,2.2472205,237.72438,24.6,1010.44147,66.72021,138.0,269.04773,75.0,18.0,0.0,0.0, +2024-05-10 10:00:00,1.2041595,221.63345,22.95,1010.9909,76.74973,22.0,112.35106,12.0,18.65,0.0,0.0, +2024-05-10 11:00:00,1.2529964,208.61037,23.25,1011.7926,77.03583,0.0,0.0,0.0,19.0,0.0,0.0, +2024-05-10 12:00:00,1.7720045,196.38962,23.05,1011.5889,79.94005,0.0,0.0,0.0,19.4,0.0,0.0, +2024-05-10 13:00:00,2.3537204,192.26476,20.65,1011.8187,88.3245,0.0,0.0,0.0,18.65,0.0,0.0, +2024-05-10 14:00:00,2.0615528,202.8337,21.35,1012.136,89.76689,0.0,0.0,0.0,19.6,0.0,0.0, +2024-05-10 15:00:00,2.7658634,192.5288,21.35,1012.33435,92.02112,0.0,0.0,0.0,20.0,0.0,0.0, +2024-05-10 16:00:00,2.4020824,177.6141,21.3,1012.0355,89.76321,0.0,0.0,0.0,19.55,0.0,0.0, +2024-05-10 17:00:00,2.0615528,112.833694,20.85,1012.122,90.85482,0.0,0.0,0.0,19.3,0.0,0.0, +2024-05-10 18:00:00,1.7492856,120.963684,20.65,1012.2154,91.40942,0.0,0.0,0.0,19.2,0.0,0.0, +2024-05-10 19:00:00,2.4738634,75.96373,20.6,1012.1147,90.83823,0.0,0.0,0.0,19.05,0.0,0.0, +2024-05-10 20:00:00,2.9546573,66.03751,20.5,1012.40936,89.70409,0.0,0.0,0.0,18.75,0.0,0.0, +2024-05-10 21:00:00,2.624881,72.25524,20.15,1012.39954,89.678055,0.0,0.0,0.0,18.4,0.0,0.0, +2024-05-10 22:00:00,2.280351,74.74483,20.5,1012.8061,86.93885,0.0,0.0,0.0,18.25,0.0,0.0, +2024-05-10 23:00:00,2.5079873,66.50142,20.5,1013.302,86.12401,0.0,0.0,0.0,18.1,0.0,0.0, +2024-05-11 00:00:00,2.8160257,73.49557,21.55,1013.53033,80.23839,48.0,108.6552,34.0,18.0,0.0,0.0, +2024-05-11 01:00:00,2.624881,72.25524,23.25,1013.97473,71.23022,179.0,244.47928,104.0,17.75,0.0,0.0, +2024-05-11 02:00:00,2.5632012,69.44388,26.85,1014.27264,50.46141,423.0,736.7476,75.0,15.7,0.0,0.0, +2024-05-11 03:00:00,1.3000001,67.3801,28.5,1013.62286,39.62802,566.0,815.8558,80.0,13.45,0.0,0.0, +2024-05-11 04:00:00,0.36055514,236.3099,28.95,1012.74243,34.99458,629.0,803.3993,92.0,11.95,0.0,0.0, +2024-05-11 05:00:00,3.6124785,221.63345,28.05,1011.9243,50.292984,614.0,751.2329,99.0,16.75,0.0,0.0, +2024-05-11 06:00:00,5.011986,208.61037,26.9,1011.6949,59.694817,564.0,701.3279,111.0,18.4,0.0,0.0, +2024-05-11 07:00:00,5.7271285,192.09474,25.9,1011.6676,60.598045,431.0,583.0752,109.0,17.7,0.0,0.0, +2024-05-11 08:00:00,4.8259716,185.94676,25.8,1011.66473,55.607365,340.0,644.91907,75.0,16.25,0.0,0.0, +2024-05-11 09:00:00,4.110961,175.81517,24.85,1011.6387,61.907036,181.0,570.1227,49.0,17.05,0.0,0.0, +2024-05-11 10:00:00,3.9115217,175.60138,23.15,1011.59143,71.43662,24.0,148.21931,11.0,17.7,0.0,0.0, +2024-05-11 11:00:00,4.031129,156.61476,22.35,1011.66833,72.42792,0.0,0.0,0.0,17.15,0.0,0.0, +2024-05-11 12:00:00,3.8078864,150.06857,21.7,1011.5508,72.77313,0.0,0.0,0.0,16.6,0.0,0.0, +2024-05-11 13:00:00,3.6055512,146.3099,21.5,1012.04126,70.45537,0.0,0.0,0.0,15.9,0.0,0.0, +2024-05-11 14:00:00,3.3301651,138.65233,20.9,1011.8258,71.93783,0.0,0.0,0.0,15.65,0.0,0.0, +2024-05-11 15:00:00,3.482815,129.17365,20.6,1011.61884,70.5114,0.0,0.0,0.0,15.05,0.0,0.0, +2024-05-11 16:00:00,2.8653097,119.24873,20.3,1011.3128,70.68207,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-11 17:00:00,2.2472203,110.854546,19.75,1010.8013,73.8396,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-11 18:00:00,1.9313208,111.25058,19.7,1010.89923,73.357,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-11 19:00:00,2.376973,104.62092,19.5,1010.1992,71.21978,0.0,0.0,0.0,14.15,0.0,0.0, +2024-05-11 20:00:00,3.224903,82.875084,19.7,1009.8083,60.127407,0.0,0.0,0.0,11.75,0.0,0.0, +2024-05-11 21:00:00,4.1231055,67.16631,20.15,1009.72174,47.377014,0.0,0.0,0.0,8.6,0.0,0.0, +2024-05-11 22:00:00,5.0249376,58.840755,20.95,1009.6454,37.23587,0.0,0.0,0.0,5.8,0.0,0.0, +2024-05-11 23:00:00,6.021628,54.46224,21.75,1009.9655,31.605892,0.0,0.0,0.0,4.15,0.0,0.0, +2024-05-12 00:00:00,6.8249545,50.94686,22.35,1009.7838,28.399754,35.0,31.351734,31.0,3.15,0.0,0.0, +2024-05-12 01:00:00,6.0811186,44.999897,24.15,1009.43713,27.427275,168.0,105.18064,136.0,4.2,0.0,0.0, +2024-05-12 02:00:00,6.670832,40.135426,26.5,1009.3034,21.91696,278.0,161.85199,202.0,3.0,0.0,0.0, +2024-05-12 03:00:00,7.0213957,35.727493,28.4,1008.95795,17.813663,398.0,202.45528,278.0,1.65,0.0,0.0, +2024-05-12 04:00:00,7.602631,26.564985,30.45,1007.52466,14.623388,497.0,317.14044,286.0,0.55,0.0,0.0, +2024-05-12 05:00:00,7.826238,26.564985,31.25,1006.25604,14.9046545,544.0,400.0527,271.0,1.45,0.0,0.0, +2024-05-12 06:00:00,6.3953104,26.965645,31.5,1005.86554,14.64163,465.0,289.34637,279.0,1.4,0.0,0.0, +2024-05-12 07:00:00,5.636488,25.201094,31.6,1005.27313,14.197414,416.0,375.04056,210.0,1.05,0.0,0.0, +2024-05-12 08:00:00,5.5036354,24.702408,31.15,1004.9635,14.203069,257.0,191.11896,179.0,0.7,0.0,0.0, +2024-05-12 09:00:00,4.0718546,24.67685,30.15,1004.6398,15.312223,117.0,78.60439,99.0,0.95,0.0,0.0, +2024-05-12 10:00:00,2.5806975,35.537766,26.1,1004.7295,20.605341,18.0,34.699104,15.0,1.8,0.0,0.0, +2024-05-12 11:00:00,2.1931713,294.22772,22.5,1005.52313,33.988266,0.0,0.0,0.0,5.85,0.0,0.0, +2024-05-12 12:00:00,3.238827,261.11942,22.65,1006.0231,61.40793,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-12 13:00:00,2.2203603,125.837746,21.0,1005.5804,71.955956,0.0,0.0,0.0,15.75,0.0,0.0, +2024-05-12 14:00:00,1.3000001,67.3801,19.85,1005.15106,65.51633,0.0,0.0,0.0,13.2,0.0,0.0, +2024-05-12 15:00:00,1.5811387,34.69522,19.25,1004.4398,61.021706,0.0,0.0,0.0,11.55,0.0,0.0, +2024-05-12 16:00:00,2.0615528,22.833694,18.35,1004.11646,61.83031,0.0,0.0,0.0,10.9,0.0,0.0, +2024-05-12 17:00:00,1.9697715,336.0375,17.8,1004.6958,69.97589,0.0,0.0,0.0,12.25,0.0,0.0, +2024-05-12 18:00:00,0.6324555,18.435053,19.95,1004.1622,72.22886,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-12 19:00:00,2.0024984,87.13766,17.3,1003.39233,86.08151,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-12 20:00:00,1.5652475,63.435013,17.6,1003.8967,80.47503,0.0,0.0,0.0,14.2,0.0,0.0, +2024-05-12 21:00:00,1.4764823,61.69934,18.25,1004.0146,70.75414,0.0,0.0,0.0,12.85,0.0,0.0, +2024-05-12 22:00:00,4.924429,77.09259,19.5,1003.85205,65.4415,0.0,0.0,0.0,12.85,0.0,0.0, +2024-05-12 23:00:00,3.2015622,75.52967,19.65,1004.05457,62.128807,0.0,0.0,0.0,12.2,0.0,0.4, +2024-05-13 00:00:00,4.219004,84.55976,20.25,1004.3691,61.455223,23.0,23.747927,20.0,12.6,0.0,0.0, +2024-05-13 01:00:00,1.2806249,231.34016,20.65,1005.37213,77.616196,92.0,36.457977,81.0,16.6,0.0,0.4, +2024-05-13 02:00:00,2.2825425,208.8107,21.95,1005.11096,71.21653,238.0,152.0978,167.0,16.5,0.0,0.0, +2024-05-13 03:00:00,3.544009,253.61038,23.1,1005.5398,63.716087,484.0,573.0916,146.0,15.85,0.0,0.0, +2024-05-13 04:00:00,2.863564,245.22488,23.05,1004.3483,59.74477,483.0,416.74747,207.0,14.8,0.0,0.0, +2024-05-13 05:00:00,1.9697715,246.0375,22.85,1003.25165,63.661324,448.0,315.01614,234.0,15.6,0.0,0.0, +2024-05-13 06:00:00,1.3601471,233.97253,23.9,1002.98303,59.75231,554.0,623.6338,155.0,15.6,0.0,0.0, +2024-05-13 07:00:00,3.2649655,220.0302,23.45,1003.1692,65.02268,369.0,430.11066,134.0,16.5,0.0,0.0, +2024-05-13 08:00:00,3.9597979,224.9999,22.15,1003.5296,74.71833,313.0,537.71985,95.0,17.45,0.0,0.0, +2024-05-13 09:00:00,3.3615475,210.37904,20.9,1003.49475,79.64576,139.0,326.6563,65.0,17.25,0.0,0.0, +2024-05-13 10:00:00,1.5132746,187.59456,20.2,1003.6733,82.63392,19.0,93.84376,11.0,17.15,0.0,0.0, +2024-05-13 11:00:00,0.8544004,69.44387,19.7,1004.2544,84.69505,0.0,0.0,0.0,17.05,0.0,0.0, +2024-05-13 12:00:00,1.7691805,312.70938,18.6,1004.22284,89.84602,0.0,0.0,0.0,16.9,0.0,2.1, +2024-05-13 13:00:00,2.1260293,41.185837,19.0,1005.52356,89.87547,0.0,0.0,0.0,17.3,0.0,0.0, +2024-05-13 14:00:00,3.9357338,62.783974,19.15,1005.72626,63.253216,0.0,0.0,0.0,12.0,0.0,0.0, +2024-05-13 15:00:00,4.3908997,59.93151,18.95,1005.42303,61.968445,0.0,0.0,0.0,11.5,0.0,0.0, +2024-05-13 16:00:00,3.8418746,51.34017,18.8,1004.8236,63.17467,0.0,0.0,0.0,11.65,0.0,0.0, +2024-05-13 17:00:00,3.758989,61.389645,18.5,1004.41846,66.309456,0.0,0.0,0.0,12.1,0.0,0.0, +2024-05-13 18:00:00,3.920459,52.253136,18.4,1004.8123,68.27865,0.0,0.0,0.0,12.45,0.0,0.0, +2024-05-13 19:00:00,3.5608988,51.842735,17.65,1004.0966,72.99559,0.0,0.0,0.0,12.75,0.0,0.0, +2024-05-13 20:00:00,3.0528674,58.392544,17.2,1004.4804,75.84007,0.0,0.0,0.0,12.9,0.0,0.0, +2024-05-13 21:00:00,1.6278821,42.510403,16.05,1004.9429,81.5884,0.0,0.0,0.0,12.9,0.0,0.0, +2024-05-13 22:00:00,1.746425,66.37061,16.15,1005.4415,81.06961,0.0,0.0,0.0,12.9,0.0,0.0, +2024-05-13 23:00:00,3.679674,47.20262,16.35,1006.43915,82.16107,0.0,0.0,0.0,13.3,0.0,0.1, +2024-05-14 00:00:00,3.7215588,59.300358,17.4,1006.5686,80.97108,46.0,175.90312,24.0,14.1,0.0,0.1, +2024-05-14 01:00:00,3.436568,98.3658,19.8,1006.7367,66.36565,216.0,504.68332,65.0,13.35,0.0,0.0, +2024-05-14 02:00:00,4.0447497,81.46932,21.35,1007.0778,60.122063,339.0,506.40527,104.0,13.3,0.0,0.0, +2024-05-14 03:00:00,4.1231055,67.16631,22.75,1006.8194,55.56499,521.0,684.9974,119.0,13.4,0.0,0.0, +2024-05-14 04:00:00,3.49285,66.37061,23.4,1005.4488,53.59698,541.0,602.1968,144.0,13.45,0.0,0.0, +2024-05-14 05:00:00,2.8178005,62.525658,24.0,1005.0688,49.873043,562.0,638.7772,130.0,12.9,0.0,0.0, +2024-05-14 06:00:00,2.7018514,87.87895,24.5,1004.9835,48.40011,540.0,662.6671,118.0,12.9,0.0,0.0, +2024-05-14 07:00:00,3.1256998,82.64771,24.35,1005.37585,48.996693,467.0,686.2553,94.0,12.95,0.0,0.0, +2024-05-14 08:00:00,4.7759814,70.42679,23.6,1005.95044,52.098675,331.0,635.58734,75.0,13.2,0.0,0.4, +2024-05-14 09:00:00,2.9120438,74.054535,21.15,1006.477,65.15776,109.0,289.9779,44.0,14.35,0.0,0.5, +2024-05-14 10:00:00,1.9646883,75.25639,20.25,1007.0469,68.42696,19.0,107.04601,10.0,14.25,0.0,0.0, +2024-05-14 11:00:00,1.8248286,99.46225,18.9,1007.70245,74.894905,0.0,0.0,0.0,14.35,0.0,0.0, +2024-05-14 12:00:00,1.6124516,150.2552,18.4,1007.98584,78.026955,0.0,0.0,0.0,14.5,0.0,0.0, +2024-05-14 13:00:00,3.49285,66.37061,18.8,1008.8897,71.32092,0.0,0.0,0.0,13.5,0.0,0.0, +2024-05-14 14:00:00,2.5961509,74.3577,18.15,1009.4661,74.28449,0.0,0.0,0.0,13.5,0.0,0.0, +2024-05-14 15:00:00,2.2022717,92.60251,17.4,1009.6428,76.86903,0.0,0.0,0.0,13.3,0.0,0.0, +2024-05-14 16:00:00,2.3,90.0,16.9,1009.3308,78.311325,0.0,0.0,0.0,13.1,0.0,0.0, +2024-05-14 17:00:00,2.7658634,77.4712,16.7,1009.0276,79.05279,0.0,0.0,0.0,13.05,0.0,0.0, +2024-05-14 18:00:00,3.1953092,69.86362,16.45,1009.2186,79.795746,0.0,0.0,0.0,12.95,0.0,0.0, +2024-05-14 19:00:00,3.0,90.0,16.05,1009.50446,80.527466,0.0,0.0,0.0,12.7,0.0,0.0, +2024-05-14 20:00:00,2.7166157,83.659904,15.5,1009.7858,82.59421,0.0,0.0,0.0,12.55,0.0,0.0, +2024-05-14 21:00:00,2.2022717,87.3975,14.95,1010.16626,85.00426,0.0,0.0,0.0,12.45,0.0,0.0, +2024-05-14 22:00:00,2.6019223,87.79745,14.75,1011.0527,86.10633,0.0,0.0,0.0,12.45,0.0,0.0, +2024-05-14 23:00:00,3.1575305,79.04598,14.7,1011.44806,86.384346,0.0,0.0,0.0,12.45,0.0,0.0, +2024-05-15 00:00:00,3.8118236,85.4861,16.4,1011.59705,77.7256,65.0,339.2245,23.0,12.5,0.0,0.0, +2024-05-15 01:00:00,3.5014284,91.63654,19.25,1011.67957,66.033585,244.0,633.67303,56.0,12.75,0.0,0.0, +2024-05-15 02:00:00,4.004997,92.86235,22.0,1011.95605,55.01509,420.0,758.69403,70.0,12.55,0.0,0.0, +2024-05-15 03:00:00,4.295346,102.09474,23.8,1011.7086,47.42498,556.0,820.252,77.0,11.95,0.0,0.0, +2024-05-15 04:00:00,4.9648767,117.597206,25.4,1010.7612,40.74289,638.0,853.30914,78.0,11.1,0.0,0.0, +2024-05-15 05:00:00,4.327817,130.31403,25.7,1009.8767,38.715534,528.0,548.0481,159.0,10.6,0.0,0.0, +2024-05-15 06:00:00,3.5510561,147.65259,25.25,1009.9635,40.29722,322.0,130.93607,239.0,10.8,0.0,0.0, +2024-05-15 07:00:00,3.482815,140.82635,25.85,1009.7816,37.991238,355.0,334.71954,174.0,10.45,0.0,0.0, +2024-05-15 08:00:00,3.9698865,130.91429,25.75,1009.77875,36.838295,269.0,429.77603,97.0,9.9,0.0,0.0, +2024-05-15 09:00:00,3.7735925,122.00535,24.9,1010.2513,38.8785,131.0,324.5494,59.0,9.95,0.0,0.0, +2024-05-15 10:00:00,2.2627418,135.0001,23.15,1010.7979,44.95247,17.0,96.45041,9.0,10.55,0.0,0.0, +2024-05-15 11:00:00,2.5079873,156.50142,21.4,1011.4433,56.325855,0.0,0.0,0.0,12.35,0.0,0.0, +2024-05-15 12:00:00,3.088689,150.9455,20.35,1011.4135,71.37734,0.0,0.0,0.0,15.0,0.0,0.0, +2024-05-15 13:00:00,3.1827662,133.72705,19.8,1012.0922,71.73735,0.0,0.0,0.0,14.55,0.0,0.0, +2024-05-15 14:00:00,2.5553863,120.57915,18.9,1012.26447,75.38054,0.0,0.0,0.0,14.45,0.0,0.0, +2024-05-15 15:00:00,2.2472203,110.854546,18.1,1011.94415,75.985725,0.0,0.0,0.0,13.8,0.0,0.0, +2024-05-15 16:00:00,2.1213202,98.13002,17.45,1011.5284,73.922325,0.0,0.0,0.0,12.75,0.0,0.0, +2024-05-15 17:00:00,2.5179358,96.84268,17.3,1011.42505,69.64865,0.0,0.0,0.0,11.7,0.0,0.0, +2024-05-15 18:00:00,3.0066593,93.814,17.55,1011.4324,63.736145,0.0,0.0,0.0,10.6,0.0,0.0, +2024-05-15 19:00:00,3.4058774,86.63361,17.4,1011.32874,62.231503,0.0,0.0,0.0,10.1,0.0,0.0, +2024-05-15 20:00:00,4.4553337,80.960594,17.2,1011.52136,62.812775,0.0,0.0,0.0,10.05,0.0,0.0, +2024-05-15 21:00:00,4.554119,81.15827,16.95,1011.51404,66.20043,0.0,0.0,0.0,10.6,0.0,0.0, +2024-05-15 22:00:00,4.8259716,84.05324,16.8,1012.1046,70.47783,0.0,0.0,0.0,11.4,0.0,0.0, +2024-05-15 23:00:00,5.0249376,84.2895,17.0,1012.6062,72.16331,0.0,0.0,0.0,11.95,0.0,0.0, +2024-05-16 00:00:00,5.414795,85.76369,18.5,1013.1456,66.96682,65.0,342.6943,23.0,12.25,0.0,0.0, +2024-05-16 01:00:00,4.90408,92.33726,21.15,1013.2212,56.078735,245.0,645.86707,55.0,12.05,0.0,0.0, +2024-05-16 02:00:00,5.308484,93.23964,23.8,1013.39484,45.281815,423.0,771.9138,69.0,11.25,0.0,0.0, +2024-05-16 03:00:00,6.1032777,88.12216,26.1,1013.06165,35.841824,561.0,834.62787,76.0,9.8,0.0,0.0, +2024-05-16 04:00:00,6.61211,86.531845,27.2,1012.2983,33.1459,644.0,863.28076,80.0,9.6,0.0,0.0, +2024-05-16 05:00:00,6.5,90.0,27.95,1011.62427,31.616941,662.0,868.2,80.0,9.55,0.0,0.0, +2024-05-16 06:00:00,6.61211,93.46816,28.3,1011.13745,29.853342,617.0,852.5729,79.0,9.0,0.0,0.0, +2024-05-16 07:00:00,6.736468,95.96439,28.15,1010.93524,29.611229,512.0,814.0696,74.0,8.75,0.0,0.0, +2024-05-16 08:00:00,6.6272163,95.19434,27.6,1011.2179,30.268646,356.0,734.2018,64.0,8.6,0.0,0.0, +2024-05-16 09:00:00,5.7035074,92.009514,26.65,1011.6882,32.43977,170.0,564.6309,46.0,8.8,0.0,0.0, +2024-05-16 10:00:00,4.4011364,88.69808,24.85,1012.13464,36.707314,20.0,122.17504,10.0,9.05,0.0,0.0, +2024-05-16 11:00:00,3.0066593,86.186005,23.3,1012.6869,41.109123,0.0,0.0,0.0,9.35,0.0,0.0, +2024-05-16 12:00:00,2.7294688,98.42689,21.85,1013.1421,45.499752,0.0,0.0,0.0,9.55,0.0,0.0, +2024-05-16 13:00:00,3.7854989,102.200455,21.3,1013.3249,44.437904,0.0,0.0,0.0,8.7,0.0,0.0, +2024-05-16 14:00:00,3.9319208,97.30567,20.65,1013.3064,46.09284,0.0,0.0,0.0,8.65,0.0,0.0, +2024-05-16 15:00:00,4.1231055,104.03627,19.95,1013.2864,48.45596,0.0,0.0,0.0,8.75,0.0,0.0, +2024-05-16 16:00:00,4.3737855,100.53913,19.25,1013.06805,50.438046,0.0,0.0,0.0,8.7,0.0,0.0, +2024-05-16 17:00:00,4.6389656,97.43131,18.85,1012.9575,51.53749,0.0,0.0,0.0,8.65,0.0,0.0, +2024-05-16 18:00:00,5.124451,95.59925,18.75,1012.95465,51.8605,0.0,0.0,0.0,8.65,0.0,0.0, +2024-05-16 19:00:00,5.6035705,92.045364,18.75,1012.7563,51.336826,0.0,0.0,0.0,8.5,0.0,0.0, +2024-05-16 20:00:00,5.5036354,87.91749,18.55,1012.75055,52.336086,0.0,0.0,0.0,8.6,0.0,0.0, +2024-05-16 21:00:00,5.813777,86.05489,18.25,1012.64246,54.789738,0.0,0.0,0.0,9.0,0.0,0.0, +2024-05-16 22:00:00,6.2201285,85.38944,18.1,1012.8366,57.200867,0.0,0.0,0.0,9.5,0.0,0.0, +2024-05-16 23:00:00,6.618912,85.66777,17.95,1013.5264,59.51136,0.0,0.0,0.0,9.95,0.0,0.0, +2024-05-17 00:00:00,7.045566,83.48029,19.0,1013.9533,56.85221,63.0,337.97943,22.0,10.25,0.0,0.0, +2024-05-17 01:00:00,7.752419,83.333435,22.05,1014.33777,46.169514,243.0,644.5283,55.0,9.95,0.0,0.0, +2024-05-17 02:00:00,7.9429216,79.11452,24.4,1014.4036,42.25418,420.0,769.9006,69.0,10.75,0.0,0.0, +2024-05-17 03:00:00,8.509407,70.07433,26.4,1013.9627,40.485703,557.0,830.07825,77.0,11.9,0.0,0.0, +2024-05-17 04:00:00,8.723532,64.90378,27.9,1013.2098,37.074615,638.0,859.4511,79.0,11.9,0.0,0.0, +2024-05-17 05:00:00,8.364807,62.209652,28.9,1012.5424,34.181866,657.0,864.47534,80.0,11.55,0.0,0.0, +2024-05-17 06:00:00,7.829432,61.798473,29.35,1012.35614,32.86618,612.0,848.42334,79.0,11.35,0.0,0.0, +2024-05-17 07:00:00,7.379024,63.435013,29.55,1012.1631,30.705881,506.0,808.75433,73.0,10.5,0.0,0.0, +2024-05-17 08:00:00,7.111259,64.15567,29.05,1012.3481,31.18676,351.0,726.0576,64.0,10.3,0.0,0.0, +2024-05-17 09:00:00,6.2769423,67.52052,28.05,1012.71796,33.27276,167.0,556.43854,46.0,10.4,0.0,0.0, +2024-05-17 10:00:00,5.0921507,70.49747,26.35,1013.0686,36.639202,19.0,123.76973,9.0,10.35,0.0,0.0, +2024-05-17 11:00:00,4.808326,73.07241,25.25,1013.53436,39.10747,0.0,0.0,0.0,10.35,0.0,0.0, +2024-05-17 12:00:00,4.7296934,76.55138,24.4,1013.90765,40.86953,0.0,0.0,0.0,10.25,0.0,0.0, +2024-05-17 13:00:00,5.2086463,86.698204,23.45,1013.7821,43.41568,0.0,0.0,0.0,10.3,0.0,0.0, +2024-05-17 14:00:00,6.576473,81.25392,23.3,1013.97626,41.525635,0.0,0.0,0.0,9.5,0.0,0.0, +2024-05-17 15:00:00,7.324616,75.77401,23.2,1014.07263,39.58492,0.0,0.0,0.0,8.7,0.0,0.0, +2024-05-17 16:00:00,7.937884,70.88018,23.05,1013.77094,39.54239,0.0,0.0,0.0,8.55,0.0,0.0, +2024-05-17 17:00:00,8.207923,67.80967,22.8,1013.8631,39.471428,0.0,0.0,0.0,8.3,0.0,0.0, +2024-05-17 18:00:00,8.1939,66.2505,22.4,1013.8517,39.626255,0.0,0.0,0.0,8.0,0.0,0.0, +2024-05-17 19:00:00,8.234683,65.61364,21.85,1013.7371,40.422802,0.0,0.0,0.0,7.8,0.0,0.0, +2024-05-17 20:00:00,8.234683,65.61364,21.15,1013.7171,41.90608,0.0,0.0,0.0,7.7,0.0,0.0, +2024-05-17 21:00:00,8.185964,64.68715,20.55,1013.9979,42.166374,0.0,0.0,0.0,7.25,0.0,0.0, +2024-05-17 22:00:00,8.5,64.94241,20.0,1014.37866,42.44492,0.0,0.0,0.0,6.85,0.0,0.0, +2024-05-17 23:00:00,8.676405,64.025665,19.55,1014.8618,43.050953,0.0,0.0,0.0,6.65,0.0,0.0, +2024-05-18 00:00:00,9.078547,63.15279,20.2,1015.4754,41.068058,64.0,341.47565,23.0,6.55,0.0,0.0, +2024-05-18 01:00:00,8.868484,60.255207,22.3,1015.8324,35.73474,246.0,660.41656,55.0,6.4,0.0,0.0, +2024-05-18 02:00:00,8.935883,58.26653,24.5,1015.8943,30.336014,426.0,789.8841,68.0,5.95,0.0,0.0, +2024-05-18 03:00:00,8.800568,53.781075,26.55,1015.35547,26.673586,566.0,853.2388,75.0,5.85,0.0,0.0, +2024-05-18 04:00:00,8.221922,48.94529,28.2,1014.6068,24.21607,649.0,881.781,78.0,5.85,0.0,0.0, +2024-05-18 05:00:00,7.2862887,46.668293,29.2,1013.84033,22.85127,669.0,886.22723,80.0,5.85,0.0,0.0, +2024-05-18 06:00:00,6.224147,46.301884,29.7,1013.3576,21.745163,623.0,871.33185,78.0,5.55,0.0,0.0, +2024-05-18 07:00:00,5.456189,48.715385,29.7,1013.1592,21.37121,515.0,831.4349,72.0,5.3,0.0,0.0, +2024-05-18 08:00:00,4.9406476,54.057793,29.1,1013.34143,22.04748,358.0,748.2163,64.0,5.25,0.0,0.0, +2024-05-18 09:00:00,3.8078864,60.068577,27.8,1013.5048,24.026728,170.0,575.74677,46.0,5.4,0.0,0.0, +2024-05-18 10:00:00,3.1622777,71.564964,25.15,1013.82904,27.703348,19.0,125.344864,9.0,5.2,0.0,0.0, +2024-05-18 11:00:00,4.060788,80.07382,23.6,1014.2821,29.770615,0.0,0.0,0.0,4.9,0.0,0.0, +2024-05-18 12:00:00,4.535416,75.96373,22.75,1014.65497,30.583942,0.0,0.0,0.0,4.55,0.0,0.0, +2024-05-18 13:00:00,3.7696154,68.19853,21.75,1014.8254,31.605892,0.0,0.0,0.0,4.15,0.0,0.0, +2024-05-18 14:00:00,3.51141,70.01681,20.7,1014.8946,33.35562,0.0,0.0,0.0,4.0,0.0,0.0, +2024-05-18 15:00:00,4.472136,79.69521,19.9,1014.7728,35.168507,0.0,0.0,0.0,4.05,0.0,0.0, +2024-05-18 16:00:00,5.8189344,70.94221,19.95,1014.5757,34.692482,0.0,0.0,0.0,3.9,0.0,0.0, +2024-05-18 17:00:00,6.2649817,65.48038,19.9,1014.277,33.83434,0.0,0.0,0.0,3.5,0.0,0.0, +2024-05-18 18:00:00,6.5299315,62.65021,19.65,1014.26965,34.242104,0.0,0.0,0.0,3.45,0.0,0.0, +2024-05-18 19:00:00,6.847627,61.189304,19.3,1014.1603,34.87204,0.0,0.0,0.0,3.4,0.0,0.0, +2024-05-18 20:00:00,7.03278,60.15416,19.05,1014.054,35.294716,0.0,0.0,0.0,3.35,0.0,0.0, +2024-05-18 21:00:00,7.0491138,58.3393,18.6,1014.2393,36.4292,0.0,0.0,0.0,3.4,0.0,0.0, +2024-05-18 22:00:00,7.324616,57.828808,18.15,1014.42474,37.869698,0.0,0.0,0.0,3.55,0.0,0.0, +2024-05-18 23:00:00,7.6550636,56.725105,17.75,1014.8099,38.561653,0.0,0.0,0.0,3.45,0.0,0.0, +2024-05-19 00:00:00,8.266196,55.348618,18.5,1015.0299,36.52888,64.0,353.432,22.0,3.35,0.0,0.0, +2024-05-19 01:00:00,7.7801027,52.83545,20.95,1015.1003,32.048298,250.0,680.01904,55.0,3.65,0.0,0.0, +2024-05-19 02:00:00,8.221922,48.94529,23.3,1014.96814,26.154924,432.0,807.8339,68.0,2.8,0.0,0.0, +2024-05-19 03:00:00,8.202439,44.999897,25.4,1014.3321,21.401909,572.0,867.8364,75.0,1.75,0.0,0.0, +2024-05-19 04:00:00,7.7336926,40.279785,26.9,1013.4804,18.295086,657.0,898.03827,78.0,0.8,0.0,0.0, +2024-05-19 05:00:00,6.466065,39.35174,28.05,1012.6188,15.968313,675.0,888.4457,87.0,-0.15,0.0,0.0, +2024-05-19 06:00:00,5.0447993,39.36931,28.75,1012.241,14.463535,631.0,884.7152,80.0,-0.95,0.0,0.0, +2024-05-19 07:00:00,4.244997,43.09086,28.9,1012.04645,13.62119,516.0,807.07916,88.0,-1.65,0.0,0.0, +2024-05-19 08:00:00,3.04795,48.99101,28.45,1012.4311,13.575699,358.0,721.8585,76.0,-2.05,0.0,0.0, +2024-05-19 09:00:00,1.5,90.0,26.15,1012.96405,17.594769,159.0,435.86703,66.0,-0.35,0.0,0.0, +2024-05-19 10:00:00,2.3323808,120.96369,22.05,1013.5443,21.306276,16.0,50.75899,12.0,-1.1,0.0,0.0, +2024-05-19 11:00:00,2.236068,100.30479,21.55,1013.72864,21.80668,0.0,0.0,0.0,-1.2,0.0,0.0, +2024-05-19 12:00:00,3.5171013,75.17348,21.5,1013.92566,21.873508,0.0,0.0,0.0,-1.2,0.0,0.0, +2024-05-19 13:00:00,4.244997,74.98159,20.5,1013.9962,23.259617,0.0,0.0,0.0,-1.2,0.0,0.0, +2024-05-19 14:00:00,3.8626416,68.74943,20.0,1013.88275,24.077465,0.0,0.0,0.0,-1.15,0.0,0.0, +2024-05-19 15:00:00,3.8626416,68.74943,19.15,1013.56104,25.197554,0.0,0.0,0.0,-1.25,0.0,0.0, +2024-05-19 16:00:00,4.0804415,72.89719,18.9,1013.35535,25.313618,0.0,0.0,0.0,-1.4,0.0,0.0, +2024-05-19 17:00:00,4.1785164,68.96242,18.4,1013.3411,26.406637,0.0,0.0,0.0,-1.25,0.0,0.0, +2024-05-19 18:00:00,4.204759,64.65388,18.1,1013.4317,27.80869,0.0,0.0,0.0,-0.8,0.0,0.0, +2024-05-19 19:00:00,4.5177426,62.30063,17.9,1013.3267,29.74025,0.0,0.0,0.0,-0.05,0.0,0.0, +2024-05-19 20:00:00,5.3,58.10924,18.0,1013.1313,31.654026,0.0,0.0,0.0,0.9,0.0,0.0, +2024-05-19 21:00:00,6.1220913,51.632477,18.4,1013.24194,32.927464,0.0,0.0,0.0,1.8,0.0,0.0, +2024-05-19 22:00:00,6.3031735,48.215576,18.25,1013.53503,34.938515,0.0,0.0,0.0,2.5,0.0,0.0, +2024-05-19 23:00:00,6.4443774,48.14505,17.7,1014.2133,37.47311,0.0,0.0,0.0,3.0,0.0,0.0, +2024-05-20 00:00:00,7.076722,47.290634,18.45,1014.7311,36.772938,50.0,136.04005,34.0,3.4,0.0,0.0, +2024-05-20 01:00:00,6.6843095,51.072456,20.3,1014.38727,33.240715,162.0,98.478386,134.0,3.6,0.0,0.0, +2024-05-20 02:00:00,6.9310894,43.83095,22.95,1014.66077,28.367308,354.0,408.50253,171.0,3.65,0.0,0.0, +2024-05-20 03:00:00,6.762396,38.395203,25.1,1014.42303,23.897495,496.0,515.8217,202.0,3.05,0.0,0.0, +2024-05-20 04:00:00,5.8830266,31.798878,26.0,1013.85266,21.556538,474.0,260.1345,307.0,2.35,0.0,0.0, +2024-05-20 05:00:00,4.792703,23.355589,27.25,1013.1924,18.645763,587.0,538.6095,232.0,1.35,0.0,0.0, +2024-05-20 06:00:00,3.5341196,25.114815,27.9,1012.41614,16.824095,573.0,640.1304,176.0,0.45,0.0,0.0, +2024-05-20 07:00:00,2.34094,19.983198,28.0,1012.3198,16.248991,502.0,753.9685,104.0,0.05,0.0,0.0, +2024-05-20 08:00:00,1.2041595,48.366554,27.4,1012.40283,16.586426,358.0,746.54065,68.0,-0.15,0.0,0.0, +2024-05-20 09:00:00,1.5811387,124.69522,24.9,1012.7311,25.767801,145.0,326.33286,76.0,3.95,0.0,0.0, +2024-05-20 10:00:00,2.2472205,122.27562,22.0,1012.9479,24.799116,14.0,12.842386,13.0,0.95,0.0,0.0, +2024-05-20 11:00:00,2.1,90.0,21.3,1013.3249,25.605495,0.0,0.0,0.0,0.8,0.0,0.0, +2024-05-20 12:00:00,2.640076,65.37646,20.75,1013.90436,26.580963,0.0,0.0,0.0,0.85,0.0,0.0, +2024-05-20 13:00:00,3.6674242,64.133705,19.1,1014.6504,31.18165,0.0,0.0,0.0,1.65,0.0,0.0, +2024-05-20 14:00:00,3.5341196,64.8852,18.65,1014.836,32.76518,0.0,0.0,0.0,1.95,0.0,0.0, +2024-05-20 15:00:00,3.4539833,67.8905,17.65,1014.41034,35.38965,0.0,0.0,0.0,2.15,0.0,0.0, +2024-05-20 16:00:00,3.2695565,66.5713,17.0,1014.0937,36.87346,0.0,0.0,0.0,2.15,0.0,0.0, +2024-05-20 17:00:00,3.6687872,72.55273,16.9,1013.8926,36.84431,0.0,0.0,0.0,2.05,0.0,0.0, +2024-05-20 18:00:00,4.1231055,75.96373,16.6,1013.7847,36.234566,0.0,0.0,0.0,1.55,0.0,0.0, +2024-05-20 19:00:00,4.0521603,74.248764,16.6,1013.48724,34.9577,0.0,0.0,0.0,1.05,0.0,0.0, +2024-05-20 20:00:00,4.3965893,72.80138,16.6,1013.38806,34.707165,0.0,0.0,0.0,0.95,0.0,0.0, +2024-05-20 21:00:00,4.808326,73.07241,16.5,1013.38495,35.180622,0.0,0.0,0.0,1.05,0.0,0.0, +2024-05-20 22:00:00,5.186521,70.866264,16.45,1013.4828,35.675117,0.0,0.0,0.0,1.2,0.0,0.0, +2024-05-20 23:00:00,5.515433,67.61982,16.6,1013.7847,35.975933,0.0,0.0,0.0,1.45,0.0,0.0, +2024-05-21 00:00:00,5.948109,63.00425,17.7,1014.2133,34.40817,41.0,34.36326,37.0,1.8,0.0,0.0, +2024-05-21 01:00:00,5.5461698,64.35905,19.8,1014.6708,31.831758,155.0,102.864655,126.0,2.55,0.0,0.0, +2024-05-21 02:00:00,5.4589376,61.55718,22.25,1014.8393,27.579014,268.0,123.483406,213.0,2.65,0.0,0.0, +2024-05-21 03:00:00,5.4644303,55.43741,24.25,1014.3994,24.181448,396.0,250.31451,254.0,2.5,0.0,0.0, +2024-05-21 04:00:00,4.8270073,50.04252,25.95,1013.55347,21.163364,485.0,294.08682,297.0,2.05,0.0,0.0, +2024-05-21 05:00:00,3.676955,44.999897,27.5,1012.5046,17.598894,594.0,610.8689,193.0,0.75,0.0,0.0, +2024-05-21 06:00:00,2.5942245,62.447273,27.9,1011.821,16.702929,546.0,586.0991,184.0,0.35,0.0,0.0, +2024-05-21 07:00:00,2.302173,92.4895,27.9,1011.4242,16.462912,479.0,664.11035,130.0,0.15,0.0,0.0, +2024-05-21 08:00:00,2.3259406,115.46331,27.2,1011.50476,16.66054,332.0,605.6895,98.0,-0.25,0.0,0.0, +2024-05-21 09:00:00,1.3601471,143.97253,25.2,1011.64825,20.230705,150.0,410.32083,64.0,0.8,0.0,0.0, +2024-05-21 10:00:00,1.9849433,139.08571,21.6,1011.64703,24.424137,15.0,64.95936,10.0,0.4,0.0,0.0, +2024-05-21 11:00:00,2.6925821,105.06854,21.6,1012.2421,22.303743,0.0,0.0,0.0,-0.85,0.0,0.0, +2024-05-21 12:00:00,3.3136082,84.805664,21.4,1012.5343,20.523016,0.0,0.0,0.0,-2.15,0.0,0.0, +2024-05-21 13:00:00,3.324154,83.08887,19.55,1012.7792,24.758875,0.0,0.0,0.0,-1.15,0.0,0.0, +2024-05-21 14:00:00,3.5128336,85.101,18.55,1012.8497,26.838245,0.0,0.0,0.0,-0.9,0.0,0.0, +2024-05-21 15:00:00,3.8052595,86.98728,18.0,1012.7346,28.395197,0.0,0.0,0.0,-0.6,0.0,0.0, +2024-05-21 16:00:00,4.0112343,85.71093,17.75,1012.3306,28.635866,0.0,0.0,0.0,-0.7,0.0,0.0, +2024-05-21 17:00:00,3.9204593,84.14409,17.85,1011.83765,27.434996,0.0,0.0,0.0,-1.2,0.0,0.0, +2024-05-21 18:00:00,4.110961,85.81516,17.75,1011.4381,27.106846,0.0,0.0,0.0,-1.45,0.0,0.0, +2024-05-21 19:00:00,4.527693,83.659904,17.6,1011.037,27.364302,0.0,0.0,0.0,-1.45,0.0,0.0, +2024-05-21 20:00:00,4.9365983,83.019035,17.3,1010.83,28.195995,0.0,0.0,0.0,-1.3,0.0,0.0, +2024-05-21 21:00:00,5.2392745,76.75947,16.6,1010.90894,29.69168,0.0,0.0,0.0,-1.2,0.0,0.0, +2024-05-21 22:00:00,5.8189344,70.94221,16.4,1011.0021,28.98821,0.0,0.0,0.0,-1.7,0.0,0.0, +2024-05-21 23:00:00,5.9615436,67.306175,16.25,1011.29517,27.28392,0.0,0.0,0.0,-2.65,0.0,0.0, +2024-05-22 00:00:00,5.948109,63.00425,17.25,1011.721,24.307577,53.0,199.63693,30.0,-3.35,0.0,0.0, +2024-05-22 01:00:00,5.4120235,62.48809,19.55,1011.9858,20.27291,200.0,314.78763,112.0,-3.85,0.0,0.0, +2024-05-22 02:00:00,4.8877397,59.23736,22.65,1011.87494,16.202991,395.0,616.4332,122.0,-4.3,0.0,0.0, +2024-05-22 03:00:00,4.62277,51.146618,25.05,1011.24725,13.60928,546.0,757.9818,118.0,-4.7,0.0,0.0, +2024-05-22 04:00:00,4.5343137,48.57643,26.55,1010.09814,11.36914,618.0,749.27374,141.0,-5.9,0.0,0.0, +2024-05-22 05:00:00,3.720215,53.74608,27.2,1009.22327,10.695295,613.0,642.35364,193.0,-6.2,0.0,0.0, +2024-05-22 06:00:00,2.8653097,60.75127,27.45,1008.6347,10.34023,546.0,562.44415,200.0,-6.45,0.0,0.0, +2024-05-22 07:00:00,1.3038405,122.471176,27.0,1008.2259,10.217355,422.0,407.08432,209.0,-6.95,0.0,0.0, +2024-05-22 08:00:00,3.275668,192.33908,25.6,1008.1876,20.625826,307.0,452.77908,133.0,1.4,0.0,0.0, +2024-05-22 09:00:00,4.295346,192.09474,23.05,1008.415,45.67901,158.0,476.3682,59.0,10.7,0.0,0.0, +2024-05-22 10:00:00,4.5,180.0,20.8,1008.55005,60.584236,17.0,118.241135,8.0,12.9,0.0,0.0, +2024-05-22 11:00:00,4.0706263,152.176,20.05,1008.9255,52.55444,0.0,0.0,0.0,10.05,0.0,0.0, +2024-05-22 12:00:00,4.318565,132.18437,19.4,1009.1052,36.532486,0.0,0.0,0.0,4.15,0.0,0.0, +2024-05-22 13:00:00,3.710795,104.03627,17.2,1009.43884,33.291767,0.0,0.0,0.0,0.9,0.0,0.0, +2024-05-22 14:00:00,4.14367,81.67444,16.65,1009.52185,21.889671,0.0,0.0,0.0,-5.25,0.0,0.0, +2024-05-22 15:00:00,4.570558,79.919464,16.9,1009.3308,20.507156,0.0,0.0,0.0,-5.9,0.0,0.0, +2024-05-22 16:00:00,4.707441,77.735245,16.6,1009.12384,20.821896,0.0,0.0,0.0,-5.95,0.0,0.0, +2024-05-22 17:00:00,4.753946,75.37909,15.95,1008.8074,21.951487,0.0,0.0,0.0,-5.8,0.0,0.0, +2024-05-22 18:00:00,4.9477267,75.96373,15.55,1008.20074,22.606188,0.0,0.0,0.0,-5.75,0.0,0.0, +2024-05-22 19:00:00,5.0289164,72.64589,15.4,1007.998,22.394138,0.0,0.0,0.0,-6.0,0.0,0.0, +2024-05-22 20:00:00,5.2201533,69.82927,15.3,1007.6973,22.112339,0.0,0.0,0.0,-6.25,0.0,0.0, +2024-05-22 21:00:00,5.4781384,68.58697,15.3,1007.49896,22.281847,0.0,0.0,0.0,-6.15,0.0,0.0, +2024-05-22 22:00:00,5.6859474,66.139824,15.1,1007.1958,23.00432,0.0,0.0,0.0,-5.9,0.0,0.0, +2024-05-22 23:00:00,5.6797886,63.886147,14.9,1007.28894,23.659637,0.0,0.0,0.0,-5.7,0.0,0.0, +2024-05-23 00:00:00,5.994164,62.152523,16.0,1007.6187,23.075266,59.0,342.01016,20.0,-5.1,0.0,0.0, +2024-05-23 01:00:00,5.235456,61.47699,18.9,1008.00006,20.718515,245.0,692.5947,53.0,-4.1,0.0,0.0, +2024-05-23 02:00:00,4.6647615,59.03632,22.6,1007.50964,17.385138,427.0,812.9325,69.0,-3.4,0.0,0.0, +2024-05-23 03:00:00,4.4553337,45.909298,25.35,1007.387,14.73741,561.0,834.39844,92.0,-3.4,0.0,0.0, +2024-05-23 04:00:00,4.248529,26.564985,26.95,1006.8356,12.486678,629.0,796.49506,124.0,-4.35,0.0,0.0, +2024-05-23 05:00:00,3.4525354,10.007925,27.75,1005.76624,10.923399,666.0,882.8254,91.0,-5.5,0.0,0.0, +2024-05-23 06:00:00,2.158703,346.60748,27.9,1004.97626,10.424008,626.0,897.55475,76.0,-6.0,0.0,0.0, +2024-05-23 07:00:00,1.1401755,322.12494,27.35,1004.26746,10.929932,513.0,827.2077,82.0,-5.8,0.0,0.0, +2024-05-23 08:00:00,3.008322,254.57777,25.75,1004.52155,26.089575,328.0,591.1103,102.0,4.85,0.0,0.0, +2024-05-23 09:00:00,3.757659,244.7989,22.65,1005.1305,48.059795,153.0,446.31506,61.0,11.1,0.0,0.0, +2024-05-23 10:00:00,2.158703,193.39252,20.05,1005.2559,61.207787,11.0,0.0,11.0,12.35,0.0,0.0, +2024-05-23 11:00:00,2.3345234,189.86574,19.2,1005.6284,69.11175,0.0,0.0,0.0,13.4,0.0,0.0, +2024-05-23 12:00:00,2.1095023,148.57048,18.8,1006.11285,72.25468,0.0,0.0,0.0,13.7,0.0,0.0, +2024-05-23 13:00:00,1.9104973,96.00892,16.95,1006.3573,65.542145,0.0,0.0,0.0,10.45,0.0,0.0, +2024-05-23 14:00:00,1.5132746,82.40546,17.1,1006.2623,53.208683,0.0,0.0,0.0,7.5,0.0,0.0, +2024-05-23 15:00:00,1.7720045,73.61038,17.15,1005.768,44.489376,0.0,0.0,0.0,4.95,0.0,0.0, +2024-05-23 16:00:00,1.6552945,64.98315,16.5,1005.15405,43.078983,0.0,0.0,0.0,3.9,0.0,0.0, +2024-05-23 17:00:00,1.9209373,51.34017,15.95,1004.64246,41.28371,0.0,0.0,0.0,2.8,0.0,0.0, +2024-05-23 18:00:00,2.0124612,63.435013,14.1,1004.0925,42.997746,0.0,0.0,0.0,1.7,0.0,0.0, +2024-05-23 19:00:00,1.9416488,55.491425,14.3,1003.99896,39.503635,0.0,0.0,0.0,0.7,0.0,0.0, +2024-05-23 20:00:00,2.3600848,53.61555,14.6,1003.7104,35.38956,0.0,0.0,0.0,-0.55,0.0,0.0, +2024-05-23 21:00:00,2.7018511,38.990997,15.55,1003.7384,30.830751,0.0,0.0,0.0,-1.6,0.0,0.0, +2024-05-23 22:00:00,2.607681,32.471172,14.7,1003.9118,31.500822,0.0,0.0,0.0,-2.05,0.0,0.0, +2024-05-23 23:00:00,2.2825425,28.810698,14.7,1004.7051,30.810598,0.0,0.0,0.0,-2.35,0.0,0.0, +2024-05-24 00:00:00,2.4738634,14.036275,16.25,1005.64264,28.52163,37.0,44.297947,32.0,-2.05,0.0,0.0, +2024-05-24 01:00:00,2.6925824,21.801476,19.7,1006.0396,24.261301,172.0,181.86954,122.0,-1.3,0.0,0.0, +2024-05-24 02:00:00,2.3194828,7.4313188,22.95,1006.23004,28.467304,370.0,541.1701,133.0,3.7,0.0,0.0, +2024-05-24 03:00:00,2.3706539,332.3541,24.5,1005.9754,35.149727,507.0,629.06244,155.0,8.1,0.0,0.0, +2024-05-24 04:00:00,2.996665,295.7099,25.45,1005.40607,31.667496,611.0,790.177,112.0,7.4,0.0,0.0, +2024-05-24 05:00:00,4.318565,275.31445,25.55,1005.1113,36.90533,646.0,863.04865,86.0,9.75,0.0,0.0, +2024-05-24 06:00:00,4.4102154,273.90042,25.2,1004.804,41.91917,599.0,858.37256,75.0,11.35,0.0,0.0, +2024-05-24 07:00:00,4.925444,275.82623,24.65,1004.88837,45.51546,493.0,813.2474,71.0,12.1,0.0,0.0, +2024-05-24 08:00:00,4.9648767,279.27252,23.65,1005.25745,52.967407,337.0,722.826,62.0,13.5,0.0,0.0, +2024-05-24 09:00:00,3.9849718,287.52567,22.65,1005.8247,58.314587,155.0,547.61444,43.0,14.05,0.0,0.0, +2024-05-24 10:00:00,2.505993,298.61035,20.95,1005.7774,67.03695,15.0,107.34594,7.0,14.6,0.0,0.0, +2024-05-24 11:00:00,1.9104972,312.8789,19.7,1006.2379,75.02781,0.0,0.0,0.0,15.15,0.0,0.0, +2024-05-24 12:00:00,2.0,323.13,18.95,1006.81146,79.62853,0.0,0.0,0.0,15.35,0.0,0.0, +2024-05-24 13:00:00,1.9313208,338.74942,18.4,1007.2916,79.29573,0.0,0.0,0.0,14.75,0.0,0.0, +2024-05-24 14:00:00,2.0615528,345.9637,18.1,1007.4814,80.542366,0.0,0.0,0.0,14.7,0.0,0.0, +2024-05-24 15:00:00,2.0615528,345.9637,17.9,1007.7732,81.5614,0.0,0.0,0.0,14.7,0.0,0.0, +2024-05-24 16:00:00,2.158703,346.60748,17.75,1007.66956,82.86757,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-24 17:00:00,2.2022717,357.3975,17.65,1007.66675,84.20077,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-24 18:00:00,2.3345234,9.865748,17.5,1007.5632,84.18398,0.0,0.0,0.0,14.8,0.0,0.0, +2024-05-24 19:00:00,2.745906,10.491434,17.25,1007.655,85.79983,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-24 20:00:00,2.3345234,9.865748,17.15,1007.7514,86.344246,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-24 21:00:00,2.5495098,11.3098955,17.1,1007.9482,86.61789,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-24 22:00:00,2.3537204,12.26477,17.2,1008.2488,86.62748,0.0,0.0,0.0,14.95,0.0,0.0, +2024-05-24 23:00:00,2.404163,16.927603,17.1,1008.9399,87.73998,0.0,0.0,0.0,15.05,0.0,0.0, +2024-05-25 00:00:00,2.8,360.0,18.8,1009.5839,80.3779,45.0,232.69609,19.0,15.35,0.0,0.0, +2024-05-25 01:00:00,2.9546573,293.9625,21.1,1010.2446,77.43808,175.0,399.75244,66.0,17.0,0.0,0.0, +2024-05-25 02:00:00,4.016217,288.88617,21.7,1010.85645,74.64359,306.0,424.7498,121.0,17.0,0.0,0.3, +2024-05-25 03:00:00,3.981206,281.59213,22.25,1010.9712,72.86992,412.0,499.0087,134.0,17.15,0.0,0.3, +2024-05-25 04:00:00,3.9204593,264.14407,22.6,1010.88196,71.56203,518.0,592.95874,145.0,17.2,0.0,0.2, +2024-05-25 05:00:00,3.5468295,248.4985,22.9,1010.59265,68.73144,556.0,672.872,121.0,16.85,0.0,0.1, +2024-05-25 06:00:00,3.6715121,240.64233,23.0,1010.0995,67.45483,544.0,726.7115,102.0,16.65,0.0,0.2, +2024-05-25 07:00:00,3.6891732,237.17146,22.8,1010.3916,67.414406,445.0,684.89435,91.0,16.45,0.0,0.0, +2024-05-25 08:00:00,3.3421547,231.07245,22.65,1010.68475,66.107285,293.0,586.2866,71.0,16.0,0.0,0.0, +2024-05-25 09:00:00,2.9832866,219.55963,21.9,1011.3581,67.66341,125.0,369.46548,50.0,15.65,0.0,0.0, +2024-05-25 10:00:00,1.7,208.07239,20.55,1011.7168,73.26999,13.0,81.3105,7.0,15.6,0.0,0.0, +2024-05-25 11:00:00,2.1377556,190.78426,18.7,1012.15955,82.18836,0.0,0.0,0.0,15.6,0.0,0.0, +2024-05-25 12:00:00,2.2825425,151.1893,17.8,1012.3319,86.131165,0.0,0.0,0.0,15.45,0.0,0.0, +2024-05-25 13:00:00,2.1931713,136.8476,16.85,1012.9987,89.42787,0.0,0.0,0.0,15.1,0.0,0.0, +2024-05-25 14:00:00,1.5811388,108.43504,16.75,1012.9956,88.56091,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-25 15:00:00,2.109502,95.44024,16.4,1012.8863,89.97136,0.0,0.0,0.0,14.75,0.0,0.0, +2024-05-25 16:00:00,2.5019991,87.70944,16.25,1012.5843,90.542496,0.0,0.0,0.0,14.7,0.0,0.0, +2024-05-25 17:00:00,2.0099752,84.2895,15.65,1012.46765,91.38385,0.0,0.0,0.0,14.25,0.0,0.0, +2024-05-25 18:00:00,2.184033,74.054535,15.3,1012.5563,91.65828,0.0,0.0,0.0,13.95,0.0,0.0, +2024-05-25 19:00:00,2.5553863,59.420856,15.1,1012.6497,91.943954,0.0,0.0,0.0,13.8,0.0,0.0, +2024-05-25 20:00:00,2.6925824,68.19853,15.05,1012.7473,91.345406,0.0,0.0,0.0,13.65,0.0,0.0, +2024-05-25 21:00:00,2.84605,71.564964,14.9,1012.9412,91.33578,0.0,0.0,0.0,13.5,0.0,0.0, +2024-05-25 22:00:00,2.6683328,77.00539,14.65,1013.13226,92.21682,0.0,0.0,0.0,13.4,0.0,0.0, +2024-05-25 23:00:00,2.8160257,73.49557,14.55,1013.6252,92.211,0.0,0.0,0.0,13.3,0.0,0.0, +2024-05-26 00:00:00,3.6055512,70.559875,15.7,1013.85754,88.47313,51.0,289.28568,19.0,13.8,0.0,0.0, +2024-05-26 01:00:00,3.0413814,80.53775,19.4,1014.4607,77.179115,215.0,573.093,60.0,15.3,0.0,0.0, +2024-05-26 02:00:00,2.3086793,85.03035,22.4,1014.3476,61.74769,389.0,731.73584,72.0,14.7,0.0,0.0, +2024-05-26 03:00:00,1.1,90.0,24.35,1013.9061,54.71534,527.0,814.8393,75.0,14.65,0.0,0.0, +2024-05-26 04:00:00,0.8062258,240.2552,25.55,1013.0467,48.997826,609.0,847.3416,78.0,14.05,0.0,0.0, +2024-05-26 05:00:00,3.1241,230.19447,25.65,1012.0573,52.123352,628.0,849.1402,81.0,15.1,0.0,0.0, +2024-05-26 06:00:00,5.060632,217.77574,24.5,1011.52997,59.133293,579.0,818.3958,83.0,16.0,0.0,0.0, +2024-05-26 07:00:00,5.1312766,213.07068,23.9,1011.31476,59.37076,479.0,780.713,77.0,15.5,0.0,0.0, +2024-05-26 08:00:00,4.3829217,207.1496,23.2,1011.59296,59.779984,319.0,655.27277,72.0,14.95,0.0,0.0, +2024-05-26 09:00:00,3.992493,202.06795,22.25,1011.963,64.55845,151.0,530.88324,44.0,15.25,0.0,0.0, +2024-05-26 10:00:00,3.4014704,178.31535,20.75,1012.3175,73.77483,14.0,95.75954,7.0,15.9,0.0,0.0, +2024-05-26 11:00:00,3.613862,165.5792,20.15,1012.6971,77.540855,0.0,0.0,0.0,16.1,0.0,0.0, +2024-05-26 12:00:00,3.1384711,157.52052,19.65,1013.0795,79.72582,0.0,0.0,0.0,16.05,0.0,0.0, +2024-05-26 13:00:00,2.6172504,133.45189,18.3,1013.2391,85.631744,0.0,0.0,0.0,15.85,0.0,0.0, +2024-05-26 14:00:00,2.2671568,131.42357,17.75,1013.12396,88.92724,0.0,0.0,0.0,15.9,0.0,0.0, +2024-05-26 15:00:00,2.640076,114.62355,17.65,1012.8236,90.35053,0.0,0.0,0.0,16.05,0.0,0.0, +2024-05-26 16:00:00,2.3537204,102.26476,17.15,1012.5115,92.06557,0.0,0.0,0.0,15.85,0.0,0.0, +2024-05-26 17:00:00,2.8160255,96.11541,16.95,1012.109,91.75961,0.0,0.0,0.0,15.6,0.0,0.0, +2024-05-26 18:00:00,2.630589,98.74608,16.6,1011.8014,91.15088,0.0,0.0,0.0,15.15,0.0,0.0, +2024-05-26 19:00:00,2.5179358,96.84268,16.15,1011.4906,91.12146,0.0,0.0,0.0,14.7,0.0,0.0, +2024-05-26 20:00:00,2.5,90.0,15.7,1011.3784,91.683014,0.0,0.0,0.0,14.35,0.0,0.0, +2024-05-26 21:00:00,2.6172504,83.41815,15.4,1011.17126,91.664474,0.0,0.0,0.0,14.05,0.0,0.0, +2024-05-26 22:00:00,2.7018514,87.87895,15.15,1011.16394,91.05556,0.0,0.0,0.0,13.7,0.0,0.0, +2024-05-26 23:00:00,2.7073975,85.76369,14.9,1011.5529,90.743,0.0,0.0,0.0,13.4,0.0,0.0, +2024-05-27 00:00:00,3.535534,81.86999,15.9,1011.68164,86.22108,49.0,283.03937,18.0,13.6,0.0,0.0, +2024-05-27 01:00:00,2.745906,79.50858,18.45,1012.2518,77.53204,220.0,622.4259,53.0,14.45,0.0,0.0, +2024-05-27 02:00:00,2.0099752,95.7105,21.4,1012.0384,62.9325,393.0,756.48224,67.0,14.05,0.0,0.0, +2024-05-27 03:00:00,1.3453624,138.01286,23.5,1011.40283,50.894615,524.0,796.5465,84.0,12.75,0.0,0.0, +2024-05-27 04:00:00,1.3000001,202.6199,24.6,1010.24304,46.560814,587.0,739.96,125.0,12.4,0.0,0.0, +2024-05-27 05:00:00,2.8999999,223.60289,24.85,1009.25806,48.970413,609.0,757.05566,123.0,13.4,0.0,0.0, +2024-05-27 06:00:00,4.5,216.86998,23.95,1008.7374,55.504463,568.0,753.31866,113.0,14.5,0.0,0.0, +2024-05-27 07:00:00,4.1340055,212.15227,23.45,1008.5252,54.665585,464.0,699.7419,105.0,13.8,0.0,0.0, +2024-05-27 08:00:00,3.4,208.07239,22.85,1008.31,55.77117,324.0,663.4409,75.0,13.55,0.0,0.0, +2024-05-27 09:00:00,3.275668,192.33908,21.5,1008.3716,62.95483,146.0,464.5638,53.0,14.15,0.0,0.0, +2024-05-27 10:00:00,2.3,180.0,19.65,1008.4183,75.01955,13.0,69.01342,8.0,15.1,0.0,0.0, +2024-05-27 11:00:00,2.0615528,165.96373,19.0,1008.5979,80.66277,0.0,0.0,0.0,15.6,0.0,0.0, +2024-05-27 12:00:00,2.147091,152.24155,18.55,1008.7836,83.49603,0.0,0.0,0.0,15.7,0.0,0.0, +2024-05-27 13:00:00,1.9209373,141.34016,18.25,1008.87396,85.08068,0.0,0.0,0.0,15.7,0.0,0.0, +2024-05-27 14:00:00,2.0518284,133.02507,17.9,1008.7649,85.59081,0.0,0.0,0.0,15.45,0.0,0.0, +2024-05-27 15:00:00,2.2825425,118.8107,17.65,1008.2618,85.017075,0.0,0.0,0.0,15.1,0.0,0.0, +2024-05-27 16:00:00,2.1023796,115.34614,17.4,1007.6595,85.81504,0.0,0.0,0.0,15.0,0.0,0.0, +2024-05-27 17:00:00,1.9235384,117.89718,17.15,1007.0572,88.59409,0.0,0.0,0.0,15.25,0.0,0.0, +2024-05-27 18:00:00,2.0124612,116.56499,16.95,1006.6548,90.30095,0.0,0.0,0.0,15.35,0.0,0.0, +2024-05-27 19:00:00,2.5079873,85.42616,16.8,1006.3529,90.871895,0.0,0.0,0.0,15.3,0.0,0.0, +2024-05-27 20:00:00,1.9924859,72.47434,16.15,1006.334,92.00661,0.0,0.0,0.0,14.85,0.0,0.0, +2024-05-27 21:00:00,1.8384776,67.61982,15.8,1006.22473,92.28324,0.0,0.0,0.0,14.55,0.0,0.0, +2024-05-27 22:00:00,2.1931713,65.77226,15.7,1005.8252,92.27751,0.0,0.0,0.0,14.45,0.0,0.0, +2024-05-27 23:00:00,2.4596748,63.435013,15.7,1005.9244,91.091896,0.0,0.0,0.0,14.25,0.0,0.0, +2024-05-28 00:00:00,3.0528674,58.392544,17.05,1006.0627,84.95304,43.0,212.06125,20.0,14.5,0.0,0.0, +2024-05-28 01:00:00,1.6278821,42.510403,19.75,1006.4375,74.55546,147.0,214.12282,90.0,15.1,0.0,0.0, +2024-05-28 02:00:00,1.2206556,325.0079,20.9,1006.17255,70.79471,253.0,251.9064,145.0,15.4,0.0,0.0, +2024-05-28 03:00:00,2.9,270.0,21.85,1005.50507,66.791725,465.0,647.1198,109.0,15.4,0.0,0.2, +2024-05-28 04:00:00,3.8052595,266.98727,21.9,1004.7129,67.01648,523.0,641.3452,124.0,15.5,0.0,0.2, +2024-05-28 05:00:00,4.539824,262.40546,21.9,1003.82025,66.374985,502.0,587.66064,126.0,15.35,0.0,0.1, +2024-05-28 06:00:00,5.936329,237.38077,19.05,1003.9383,76.38389,476.0,563.11163,137.0,14.8,0.0,2.9, +2024-05-28 07:00:00,5.860034,233.32556,18.55,1003.62665,77.54727,183.0,133.00266,115.0,14.55,0.0,0.1, +2024-05-28 08:00:00,4.527693,226.78989,17.75,1003.9011,85.301155,104.0,24.07847,95.0,15.25,0.0,0.4, +2024-05-28 09:00:00,2.8999999,226.39711,17.55,1003.9946,84.46109,46.0,70.38395,32.0,14.9,0.0,0.1, +2024-05-28 10:00:00,3.88973,223.95847,16.7,1004.4659,88.84246,9.0,27.83947,7.0,14.85,0.0,0.1, +2024-05-28 11:00:00,3.2572994,197.87878,16.35,1004.6541,90.25815,0.0,0.0,0.0,14.75,0.0,0.4, +2024-05-28 12:00:00,1.9104973,173.99109,15.6,1004.9297,94.38078,0.0,0.0,0.0,14.7,0.0,0.1, +2024-05-28 13:00:00,3.2015622,231.34016,17.7,1004.5938,75.92114,0.0,0.0,0.0,13.4,0.0,0.1, +2024-05-28 14:00:00,5.5758405,237.45,17.9,1004.50055,69.995255,0.0,0.0,0.0,12.35,0.0,0.1, +2024-05-28 15:00:00,5.59017,243.43501,18.05,1004.20715,61.966927,0.0,0.0,0.0,10.65,0.0,0.1, +2024-05-28 16:00:00,5.905929,241.69934,17.8,1003.9024,63.369244,0.0,0.0,0.0,10.75,0.0,0.0, +2024-05-28 17:00:00,6.306346,242.62238,17.85,1003.60645,62.54269,0.0,0.0,0.0,10.6,0.0,0.0, +2024-05-28 18:00:00,6.9778223,244.5367,17.75,1003.60364,62.728474,0.0,0.0,0.0,10.55,0.0,0.0, +2024-05-28 19:00:00,8.348653,235.73885,16.6,1004.06635,67.014114,0.0,0.0,0.0,10.45,0.0,0.1, +2024-05-28 20:00:00,9.433981,237.99466,18.2,1004.01324,55.707584,0.0,0.0,0.0,9.2,0.0,0.0, +2024-05-28 21:00:00,8.845903,227.29063,15.9,1004.54175,70.53909,0.0,0.0,0.0,10.55,0.0,0.0, +2024-05-28 22:00:00,9.479451,226.70978,16.95,1004.67145,57.689606,0.0,0.0,0.0,8.55,0.0,0.1, +2024-05-28 23:00:00,9.484725,222.43619,16.7,1005.5567,55.89256,0.0,0.0,0.0,7.85,0.0,0.0, +2024-05-29 00:00:00,9.284934,221.06972,16.85,1006.4537,53.874035,43.0,242.03754,17.0,7.45,0.0,0.0, +2024-05-29 01:00:00,8.602325,215.53777,17.45,1006.86743,59.191685,165.0,393.70572,61.0,9.4,0.0,0.1, +2024-05-29 02:00:00,9.602083,215.6765,18.25,1007.5847,54.23801,345.0,630.58856,76.0,8.85,0.0,0.0, +2024-05-29 03:00:00,8.640023,217.00261,18.75,1007.7976,47.963364,468.0,669.76794,101.0,7.5,0.0,0.0, +2024-05-29 04:00:00,8.947066,207.99706,18.75,1007.59924,48.787834,568.0,745.1808,106.0,7.75,0.0,0.0, +2024-05-29 05:00:00,8.276473,205.01686,19.25,1007.01843,46.01664,586.0,744.7742,111.0,7.35,0.0,0.0, +2024-05-29 06:00:00,8.348653,198.8691,18.75,1006.905,48.45656,454.0,511.5637,147.0,7.65,0.0,0.0, +2024-05-29 07:00:00,8.041144,201.1399,19.0,1007.1103,46.10441,393.0,543.5839,116.0,7.15,0.0,0.0, +2024-05-29 08:00:00,7.884795,195.44638,18.25,1007.4856,49.65803,245.0,402.8703,95.0,7.55,0.0,0.0, +2024-05-29 09:00:00,6.905071,190.00792,17.95,1007.87366,50.94891,99.0,222.54242,55.0,7.65,0.0,0.0, +2024-05-29 10:00:00,5.508176,183.12207,17.1,1008.24567,54.49304,11.0,70.15079,6.0,7.85,0.0,0.0, +2024-05-29 11:00:00,5.200961,178.89832,17.1,1008.64233,54.49304,0.0,0.0,0.0,7.85,0.0,0.0, +2024-05-29 12:00:00,4.110961,175.81517,16.6,1008.82635,55.867077,0.0,0.0,0.0,7.75,0.0,0.0, +2024-05-29 13:00:00,2.6172504,173.41815,15.7,1009.6926,65.491104,0.0,0.0,0.0,9.25,0.0,0.0, +2024-05-29 14:00:00,2.6172504,173.41815,15.4,1009.98126,68.58056,0.0,0.0,0.0,9.65,0.0,0.0, +2024-05-29 15:00:00,1.9646883,165.2564,14.7,1009.8615,74.42871,0.0,0.0,0.0,10.2,0.0,0.1, +2024-05-29 16:00:00,1.56205,140.19447,13.75,1009.73413,80.21217,0.0,0.0,0.0,10.4,0.0,0.1, +2024-05-29 17:00:00,1.9235383,98.97255,13.35,1009.9204,83.431625,0.0,0.0,0.0,10.6,0.0,0.1, +2024-05-29 18:00:00,2.8160255,83.88459,12.9,1010.0063,84.21759,0.0,0.0,0.0,10.3,0.0,0.1, +2024-05-29 19:00:00,2.0124612,63.435013,13.0,1009.81085,83.11208,0.0,0.0,0.0,10.2,0.0,0.1, +2024-05-29 20:00:00,1.4866068,47.72637,12.55,1009.4009,86.45802,0.0,0.0,0.0,10.35,0.0,0.1, +2024-05-29 21:00:00,1.17047,70.01681,11.7,1009.1769,89.9169,0.0,0.0,0.0,10.1,0.0,0.0, +2024-05-29 22:00:00,1.56205,39.805527,11.95,1009.6803,88.74271,0.0,0.0,0.0,10.15,0.0,0.0, +2024-05-29 23:00:00,2.570992,13.495748,11.85,1010.2724,86.38855,0.0,0.0,0.0,9.65,0.0,0.0, +2024-05-30 00:00:00,2.9529645,28.30066,13.05,1010.90314,80.38379,36.0,169.15181,18.0,9.75,0.0,0.0, +2024-05-30 01:00:00,4.2,360.0,15.9,1011.18585,70.77437,209.0,572.1438,59.0,10.6,0.0,0.0, +2024-05-30 02:00:00,3.6496572,350.53775,18.2,1011.4511,60.371933,354.0,595.97925,101.0,10.4,0.0,0.0, +2024-05-30 03:00:00,3.679674,312.7974,19.45,1011.487,52.396862,458.0,586.2408,138.0,9.45,0.0,0.0, +2024-05-30 04:00:00,4.3011627,287.5925,19.7,1011.1967,52.992653,524.0,623.0542,139.0,9.85,0.0,0.1, +2024-05-30 05:00:00,3.7,270.0,19.6,1010.4997,54.04117,489.0,501.71426,170.0,10.05,0.0,0.3, +2024-05-30 06:00:00,3.748333,260.78903,19.35,1010.4924,53.9766,352.0,307.52646,168.0,9.8,0.0,0.0, +2024-05-30 07:00:00,3.5902646,257.125,19.3,1010.3916,54.69144,371.0,444.89346,145.0,9.95,0.0,0.0, +2024-05-30 08:00:00,2.720294,252.89719,18.55,1010.66785,58.278736,198.0,210.26001,120.0,10.2,0.0,0.0, +2024-05-30 09:00:00,1.7804494,231.84273,17.75,1010.843,63.35799,107.0,249.22903,58.0,10.7,0.0,0.0, +2024-05-30 10:00:00,1.6124516,209.7448,15.95,1011.28656,73.417274,12.0,70.669846,7.0,11.2,0.0,0.0, +2024-05-30 11:00:00,1.9924859,162.47433,14.9,1011.4538,80.37073,0.0,0.0,0.0,11.55,0.0,0.0, +2024-05-30 12:00:00,1.5297059,101.3099,13.75,1011.7173,86.29024,0.0,0.0,0.0,11.5,0.0,0.0, +2024-05-30 13:00:00,1.8384776,67.61982,14.45,1011.83716,78.46366,0.0,0.0,0.0,10.75,0.0,0.0, +2024-05-30 14:00:00,2.2135942,71.564964,13.35,1011.90356,82.32709,0.0,0.0,0.0,10.4,0.0,0.0, +2024-05-30 15:00:00,2.2825425,61.189304,13.0,1011.794,83.39007,0.0,0.0,0.0,10.25,0.0,0.0, +2024-05-30 16:00:00,1.9416488,55.491425,12.7,1011.58673,83.354324,0.0,0.0,0.0,9.95,0.0,0.0, +2024-05-30 17:00:00,1.5811387,55.304783,12.6,1011.3855,82.78581,0.0,0.0,0.0,9.75,0.0,0.0, +2024-05-30 18:00:00,1.3892444,59.743652,12.55,1011.28485,81.675964,0.0,0.0,0.0,9.5,0.0,0.0, +2024-05-30 19:00:00,1.3038405,57.528828,12.25,1011.1768,82.188126,0.0,0.0,0.0,9.3,0.0,0.0, +2024-05-30 20:00:00,2.7202942,53.972538,12.55,1010.9873,80.58528,0.0,0.0,0.0,9.3,0.0,0.0, +2024-05-30 21:00:00,4.110961,48.94529,12.15,1010.8761,82.45245,0.0,0.0,0.0,9.25,0.0,0.0, +2024-05-30 22:00:00,4.1773195,47.91091,12.25,1010.97845,81.91209,0.0,0.0,0.0,9.25,0.0,0.0, +2024-05-30 23:00:00,3.9623227,47.045418,12.25,1011.3751,81.63687,0.0,0.0,0.0,9.2,0.0,0.0, +2024-05-31 00:00:00,4.4598207,47.72637,13.35,1011.8044,75.71113,45.0,256.077,18.0,9.15,0.0,0.0, +2024-05-31 01:00:00,3.679674,47.20262,16.75,1012.5989,62.71014,213.0,622.4745,51.0,9.6,0.0,0.0, +2024-05-31 02:00:00,4.404543,39.47243,19.65,1012.6828,50.03684,388.0,762.10986,66.0,8.95,0.0,0.0, +2024-05-31 03:00:00,5.0289164,17.354122,21.4,1012.2367,36.853016,525.0,831.1365,73.0,6.05,0.0,0.0, +2024-05-31 04:00:00,4.3289723,6.6324186,22.25,1011.66547,34.389763,609.0,863.7018,77.0,5.8,0.0,0.0, +2024-05-31 05:00:00,3.6124783,355.23645,22.8,1010.68915,33.145046,630.0,870.72174,78.0,5.75,0.0,0.0, +2024-05-31 06:00:00,3.2015622,345.52966,23.25,1010.00726,31.481726,586.0,856.4912,75.0,5.4,0.0,0.0, +2024-05-31 07:00:00,2.9832869,346.42953,23.45,1009.5171,29.624947,484.0,817.39355,70.0,4.7,0.0,0.0, +2024-05-31 08:00:00,3.3,360.0,23.3,1009.3145,28.166721,333.0,733.0223,62.0,3.85,0.0,0.0, +2024-05-31 09:00:00,1.8027756,340.55988,21.25,1009.3561,35.066525,152.0,557.30634,43.0,5.2,0.0,0.0, +2024-05-31 10:00:00,2.109502,275.44025,17.45,1009.3467,54.769077,13.0,99.61437,6.0,8.25,0.0,0.0, +2024-05-31 11:00:00,3.026549,262.40546,15.6,1009.6895,70.2464,0.0,0.0,0.0,10.2,0.0,0.0, +2024-05-31 12:00:00,1.5264337,301.60745,19.35,1010.3932,54.339348,0.0,0.0,0.0,9.9,0.0,0.0, +2024-05-31 13:00:00,1.2083046,65.55606,15.55,1011.0765,68.15253,0.0,0.0,0.0,9.7,0.0,0.0, +2024-05-31 14:00:00,1.4422206,56.309914,14.1,1010.8354,71.384895,0.0,0.0,0.0,9.0,0.0,0.0, +2024-05-31 15:00:00,1.6124516,60.255207,13.0,1010.50494,75.908905,0.0,0.0,0.0,8.85,0.0,0.0, +2024-05-31 16:00:00,1.9723083,59.53454,11.75,1009.8725,80.20325,0.0,0.0,0.0,8.45,0.0,0.0, +2024-05-31 17:00:00,2.5553863,59.420856,10.95,1009.1545,79.00569,0.0,0.0,0.0,7.45,0.0,0.0, +2024-05-31 18:00:00,3.3241541,46.2188,12.55,1008.9051,52.920506,0.0,0.0,0.0,3.2,0.0,0.0, +2024-05-31 19:00:00,3.7735925,32.005356,14.15,1008.3576,40.613808,0.0,0.0,0.0,0.95,0.0,0.0, +2024-05-31 20:00:00,3.9661064,33.6901,14.35,1008.06616,41.557182,0.0,0.0,0.0,1.45,0.0,0.0, +2024-05-31 21:00:00,4.560702,37.875053,14.4,1007.6711,42.17111,0.0,0.0,0.0,1.7,0.0,0.0, +2024-05-31 22:00:00,4.90408,39.207188,14.5,1007.7731,40.279896,0.0,0.0,0.0,1.15,0.0,0.0, +2024-05-31 23:00:00,5.517246,43.53127,14.3,1007.767,36.082188,0.0,0.0,0.0,-0.55,0.0,0.0, +2024-06-01 00:00:00,6.3031735,41.784435,15.35,1008.1948,35.2251,45.0,248.81868,19.0,0.05,0.0,0.0, +2024-06-01 01:00:00,6.7357254,40.785725,17.8,1008.4643,36.068665,213.0,611.4562,55.0,2.55,0.0,0.0, +2024-06-01 02:00:00,5.685068,39.289394,20.75,1008.4495,32.104042,382.0,727.5513,76.0,3.5,0.0,0.0, +2024-06-01 03:00:00,6.0373836,26.564985,23.45,1007.73175,27.329865,512.0,773.2023,93.0,3.55,0.0,0.0, +2024-06-01 04:00:00,6.806614,10.154214,25.65,1006.30414,24.643188,585.0,767.00757,114.0,3.95,0.0,0.0, +2024-06-01 05:00:00,8.318653,350.31128,26.85,1004.7499,24.964886,607.0,775.0827,117.0,5.15,0.0,0.0, +2024-06-01 06:00:00,8.185964,334.68716,27.25,1003.76874,23.798162,586.0,860.4809,74.0,4.8,0.0,0.0, +2024-06-01 07:00:00,7.5166483,326.94415,27.1,1003.3678,24.092352,482.0,817.6821,69.0,4.85,0.0,0.0, +2024-06-01 08:00:00,7.0035706,316.73566,26.15,1003.3423,29.05803,330.0,732.64276,60.0,6.75,0.0,0.0, +2024-06-01 09:00:00,6.747592,309.5881,23.85,1003.676,42.5239,149.0,549.7069,42.0,10.35,0.0,0.0, +2024-06-01 10:00:00,6.2128897,326.82147,22.3,1003.7321,47.016205,12.0,71.59848,7.0,10.45,0.0,0.0, +2024-06-01 11:00:00,4.3104525,356.00916,21.25,1003.50446,47.999348,0.0,0.0,0.0,9.8,0.0,0.0, +2024-06-01 12:00:00,4.8507733,351.70294,21.45,1003.31177,41.002472,0.0,0.0,0.0,7.65,0.0,0.0, +2024-06-01 13:00:00,6.2513995,352.6477,22.3,1002.1452,31.103483,0.0,0.0,0.0,4.4,0.0,0.0, +2024-06-01 14:00:00,6.5253353,344.89883,20.6,1002.296,45.15217,0.0,0.0,0.0,8.3,0.0,0.0, +2024-06-01 15:00:00,8.065358,342.68826,20.5,1001.8965,56.473286,0.0,0.0,0.0,11.55,0.0,0.0, +2024-06-01 16:00:00,8.22253,346.63977,19.35,1001.2691,79.93941,0.0,0.0,0.0,15.8,0.0,0.8, +2024-06-01 17:00:00,7.762087,338.06146,18.65,1000.3568,88.436134,0.0,0.0,0.0,16.7,0.0,3.3, +2024-06-01 18:00:00,8.381527,342.64587,18.65,999.26587,88.9992,0.0,0.0,0.0,16.8,0.0,3.7, +2024-06-01 19:00:00,8.868484,299.74478,19.0,999.67224,91.59381,0.0,0.0,0.0,17.6,0.0,4.3, +2024-06-01 20:00:00,7.8447433,258.9766,18.45,1000.2519,88.98326,0.0,0.0,0.0,16.6,0.0,3.0, +2024-06-01 21:00:00,5.1312766,236.92932,18.65,1000.7535,88.15575,0.0,0.0,0.0,16.65,0.0,0.5, +2024-06-01 22:00:00,7.224957,221.63345,18.3,1001.33844,85.631744,0.0,0.0,0.0,15.85,0.0,5.0, +2024-06-01 23:00:00,6.5604877,232.43134,17.35,1002.50116,84.43905,0.0,0.0,0.0,14.7,0.0,3.1, +2024-06-02 00:00:00,6.4404964,233.84172,18.45,1003.3263,72.89984,28.0,115.8603,16.0,13.5,0.0,0.4, +2024-06-02 01:00:00,7.692204,243.76811,16.2,1004.35223,80.54776,130.0,268.90814,61.0,12.85,0.0,1.7, +2024-06-02 02:00:00,6.438167,226.88817,19.0,1004.631,67.73204,188.0,162.39867,120.0,12.9,0.0,0.1, +2024-06-02 03:00:00,7.35391,224.9999,19.75,1004.75146,54.98959,453.0,611.069,123.0,10.45,0.0,0.1, +2024-06-02 04:00:00,7.0035706,223.26433,19.95,1004.7572,52.003204,513.0,654.93677,112.0,9.8,0.0,0.0, +2024-06-02 05:00:00,7.2862887,226.66829,20.15,1004.66376,50.340122,583.0,781.9085,90.0,9.5,0.0,0.0, +2024-06-02 06:00:00,7.5690155,226.60596,19.85,1004.75433,51.802795,548.0,768.3188,92.0,9.65,0.0,0.0, +2024-06-02 07:00:00,7.993122,223.47928,19.55,1005.53937,51.89756,434.0,680.85236,91.0,9.4,0.0,0.0, +2024-06-02 08:00:00,7.441102,221.18584,19.05,1006.4176,53.35837,283.0,571.5014,73.0,9.35,0.0,0.0, +2024-06-02 09:00:00,5.841233,218.04709,18.55,1006.8002,55.609352,134.0,469.5293,43.0,9.5,0.0,0.0, +2024-06-02 10:00:00,4.9406476,215.9422,18.05,1007.3807,58.15623,11.0,71.9973,6.0,9.7,0.0,0.0, +2024-06-02 11:00:00,4.8826222,214.9921,18.1,1008.0764,59.74674,0.0,0.0,0.0,10.15,0.0,0.0, +2024-06-02 12:00:00,5.077401,212.12497,18.25,1008.5765,59.782623,0.0,0.0,0.0,10.3,0.0,0.0, +2024-06-02 13:00:00,4.9648767,214.33028,18.75,1009.18604,56.98008,0.0,0.0,0.0,10.05,0.0,0.0, +2024-06-02 14:00:00,4.9396353,211.75943,18.65,1009.4807,58.1089,0.0,0.0,0.0,10.25,0.0,0.0, +2024-06-02 15:00:00,4.382921,214.77791,18.35,1009.7693,58.816704,0.0,0.0,0.0,10.15,0.0,0.0, +2024-06-02 16:00:00,3.6359317,211.50421,18.25,1009.86566,67.13545,0.0,0.0,0.0,12.05,0.0,0.0, +2024-06-02 17:00:00,2.607681,212.47118,17.35,1009.5422,68.74447,0.0,0.0,0.0,11.55,0.0,0.0, +2024-06-02 18:00:00,2.5612497,218.65984,17.15,1009.73474,66.68461,0.0,0.0,0.0,10.9,0.0,0.0, +2024-06-02 19:00:00,4.031129,209.7448,17.95,1009.9563,70.23503,0.0,0.0,0.0,12.45,0.0,0.0, +2024-06-02 20:00:00,3.1384711,202.47948,17.5,1010.6374,73.20836,0.0,0.0,0.0,12.65,0.0,0.0, +2024-06-02 21:00:00,2.7730849,205.64096,17.35,1010.93054,73.18179,0.0,0.0,0.0,12.5,0.0,0.0, +2024-06-02 22:00:00,2.641969,209.4758,17.1,1011.22076,71.236755,0.0,0.0,0.0,11.85,0.0,0.0, +2024-06-02 23:00:00,2.505993,208.61037,16.8,1011.70795,70.01286,0.0,0.0,0.0,11.3,0.0,0.0, +2024-06-03 00:00:00,2.6400757,217.30403,18.5,1012.2531,65.44182,32.0,136.36632,18.0,11.9,0.0,0.0, +2024-06-03 01:00:00,2.624881,197.74477,19.15,1013.1643,64.51381,149.0,286.48178,76.0,12.3,0.0,0.0, +2024-06-03 02:00:00,3.0066593,183.814,19.2,1013.85986,65.80711,182.0,91.14955,144.0,12.65,0.0,0.0, +2024-06-03 03:00:00,2.8635643,192.09474,19.65,1013.97217,65.68783,272.0,146.77823,193.0,13.05,0.0,0.0, +2024-06-03 04:00:00,2.996665,205.7099,20.25,1013.4934,62.674194,354.0,271.8911,188.0,12.9,0.0,0.0, +2024-06-03 05:00:00,3.443835,205.82094,20.35,1013.09955,62.084885,373.0,232.14926,227.0,12.85,0.0,0.0, +2024-06-03 06:00:00,3.8626416,201.25058,20.45,1012.5074,61.904984,376.0,293.87955,202.0,12.9,0.0,0.0, +2024-06-03 07:00:00,3.9849718,197.52567,20.15,1012.4988,63.892376,309.0,350.20062,133.0,13.1,0.0,0.0, +2024-06-03 08:00:00,3.8078866,193.67133,19.85,1012.6884,65.09013,217.0,330.17252,96.0,13.1,0.0,0.0, +2024-06-03 09:00:00,3.026549,187.59456,19.3,1012.9702,67.352104,120.0,372.9221,48.0,13.1,0.0,0.0, +2024-06-03 10:00:00,2.1213202,171.86998,17.85,1013.3252,74.47572,11.0,57.88058,7.0,13.25,0.0,0.0, +2024-06-03 11:00:00,1.7492856,149.03632,16.7,1013.7876,80.09142,0.0,0.0,0.0,13.25,0.0,0.0, +2024-06-03 12:00:00,1.7888545,116.56499,15.95,1013.964,83.46295,0.0,0.0,0.0,13.15,0.0,0.0, +2024-06-03 13:00:00,1.8027756,86.82024,15.0,1014.2336,85.00963,0.0,0.0,0.0,12.5,0.0,0.0, +2024-06-03 14:00:00,1.360147,72.89719,14.95,1014.43024,84.44804,0.0,0.0,0.0,12.35,0.0,0.0, +2024-06-03 15:00:00,1.746425,66.37061,14.7,1014.22455,85.53769,0.0,0.0,0.0,12.3,0.0,0.0, +2024-06-03 16:00:00,2.1023796,64.65388,14.45,1014.217,86.076164,0.0,0.0,0.0,12.15,0.0,0.0, +2024-06-03 17:00:00,2.34094,70.01681,14.25,1014.21124,85.49071,0.0,0.0,0.0,11.85,0.0,0.0, +2024-06-03 18:00:00,2.720294,72.89719,14.0,1014.4019,86.03074,0.0,0.0,0.0,11.7,0.0,0.0, +2024-06-03 19:00:00,2.8160257,73.49557,13.85,1014.4966,87.1591,0.0,0.0,0.0,11.75,0.0,0.0, +2024-06-03 20:00:00,2.6925821,74.931465,13.7,1014.6905,88.30319,0.0,0.0,0.0,11.8,0.0,0.0, +2024-06-03 21:00:00,2.720294,72.89719,13.6,1014.6876,89.172676,0.0,0.0,0.0,11.85,0.0,0.0, +2024-06-03 22:00:00,2.751363,70.90642,13.35,1014.9774,90.03997,0.0,0.0,0.0,11.75,0.0,0.0, +2024-06-03 23:00:00,2.7294688,61.55718,13.15,1015.4674,90.62188,0.0,0.0,0.0,11.65,0.0,0.0, +2024-06-04 00:00:00,3.3286633,57.264786,14.1,1015.7934,86.610016,38.0,206.34718,17.0,11.9,0.0,0.0, +2024-06-04 01:00:00,3.9962482,58.29862,17.45,1015.8919,74.40769,132.0,173.86545,88.0,12.85,0.0,0.0, +2024-06-04 02:00:00,3.764306,50.389355,19.45,1016.3466,67.38289,263.0,233.66907,166.0,13.25,0.0,0.0, +2024-06-04 03:00:00,3.522783,34.592358,21.45,1016.1061,54.695423,490.0,728.8324,99.0,11.95,0.0,0.0, +2024-06-04 04:00:00,2.2671568,41.42357,22.4,1015.4386,49.119698,591.0,840.8968,79.0,11.2,0.0,0.0, +2024-06-04 05:00:00,1.6492423,75.96373,22.8,1014.5574,46.68527,551.0,677.4168,126.0,10.8,0.0,0.0, +2024-06-04 06:00:00,1.3152945,98.74608,23.2,1013.9734,44.370987,526.0,682.19147,123.0,10.4,0.0,0.0, +2024-06-04 07:00:00,1.0770329,158.19853,23.05,1013.77094,42.87103,387.0,528.4662,122.0,9.75,0.0,0.0, +2024-06-04 08:00:00,2.6925824,201.80147,22.1,1013.7442,49.03895,272.0,467.73404,101.0,10.9,0.0,0.0, +2024-06-04 09:00:00,3.5846896,202.98874,20.25,1014.08844,67.10991,123.0,327.4051,60.0,13.95,0.0,0.0, +2024-06-04 10:00:00,2.6076808,184.39862,18.5,1014.3357,77.539665,12.0,72.65554,7.0,14.5,0.0,0.0, +2024-06-04 11:00:00,1.9104972,132.87889,17.35,1014.7981,79.66196,0.0,0.0,0.0,13.8,0.0,0.0, +2024-06-04 12:00:00,2.0223749,98.530685,16.5,1015.17,73.51429,0.0,0.0,0.0,11.75,0.0,0.0, +2024-06-04 13:00:00,3.443835,64.17907,16.05,1015.15686,65.566956,0.0,0.0,0.0,9.6,0.0,0.0, +2024-06-04 14:00:00,3.6235344,62.02062,15.85,1015.64667,67.08126,0.0,0.0,0.0,9.75,0.0,0.0, +2024-06-04 15:00:00,3.8013155,63.435013,15.35,1015.53284,69.49628,0.0,0.0,0.0,9.8,0.0,0.0, +2024-06-04 16:00:00,4.0249224,63.435013,14.95,1015.1243,71.30572,0.0,0.0,0.0,9.8,0.0,0.0, +2024-06-04 17:00:00,4.294182,62.24156,14.7,1015.0178,72.706535,0.0,0.0,0.0,9.85,0.0,0.0, +2024-06-04 18:00:00,4.1880784,56.689358,14.25,1014.9054,74.10228,0.0,0.0,0.0,9.7,0.0,0.0, +2024-06-04 19:00:00,4.3011627,54.46224,13.9,1014.49817,74.79138,0.0,0.0,0.0,9.5,0.0,0.0, +2024-06-04 20:00:00,4.4407206,54.16227,13.8,1014.3962,73.77501,0.0,0.0,0.0,9.2,0.0,0.0, +2024-06-04 21:00:00,4.5221677,54.90411,13.7,1014.2939,72.52414,0.0,0.0,0.0,8.85,0.0,0.0, +2024-06-04 22:00:00,4.7201695,53.61555,13.55,1014.3886,72.49663,0.0,0.0,0.0,8.7,0.0,0.0, +2024-06-04 23:00:00,4.8414874,51.709793,13.4,1014.48315,72.71467,0.0,0.0,0.0,8.6,0.0,0.0, +2024-06-05 00:00:00,5.315073,48.814175,14.15,1014.6047,70.200165,42.0,247.78575,17.0,8.8,0.0,0.0, +2024-06-05 01:00:00,4.6861496,50.194473,16.9,1014.8842,62.534416,210.0,636.5381,50.0,9.7,0.0,0.0, +2024-06-05 02:00:00,4.6669044,44.999897,19.55,1015.25854,54.75545,385.0,774.0964,65.0,10.2,0.0,0.0, +2024-06-05 03:00:00,4.6872168,33.6901,21.6,1014.7216,47.934216,523.0,841.4641,73.0,10.1,0.0,0.0, +2024-06-05 04:00:00,4.6572523,14.931467,23.0,1013.96765,42.143814,606.0,872.7432,76.0,9.45,0.0,0.0, +2024-06-05 05:00:00,4.418144,354.80566,24.0,1013.2022,37.722176,628.0,880.2736,77.0,8.7,0.0,0.0, +2024-06-05 06:00:00,4.3081317,338.19852,24.3,1012.61536,36.551365,585.0,865.1465,75.0,8.5,0.0,0.0, +2024-06-05 07:00:00,3.828838,319.23648,24.2,1012.6125,39.20435,483.0,825.29614,70.0,9.45,0.0,0.0, +2024-06-05 08:00:00,4.0804415,287.1028,23.1,1012.7803,43.17323,329.0,734.6417,61.0,9.9,0.0,0.0, +2024-06-05 09:00:00,3.8118236,274.5139,20.9,1013.2143,54.736107,148.0,552.4652,42.0,11.45,0.0,0.0, +2024-06-05 10:00:00,2.624881,287.74475,19.0,1013.5566,61.368195,12.0,87.49712,6.0,11.4,0.0,0.0, +2024-06-05 11:00:00,2.8017852,304.82455,17.0,1013.99457,75.80753,0.0,0.0,0.0,12.7,0.0,0.0, +2024-06-05 12:00:00,2.0,360.0,16.8,1014.18713,76.27345,0.0,0.0,0.0,12.6,0.0,0.0, +2024-06-05 13:00:00,1.3453624,41.98713,16.1,1014.2657,71.284645,0.0,0.0,0.0,10.9,0.0,0.0, +2024-06-05 14:00:00,1.6970563,44.999897,15.2,1014.04083,72.55463,0.0,0.0,0.0,10.3,0.0,0.0, +2024-06-05 15:00:00,2.4207437,51.709793,14.35,1014.0158,74.867966,0.0,0.0,0.0,9.95,0.0,0.0, +2024-06-05 16:00:00,2.9832866,50.440376,14.4,1013.7199,73.386925,0.0,0.0,0.0,9.7,0.0,0.0, +2024-06-05 17:00:00,3.1827662,46.27295,14.4,1013.12494,71.44154,0.0,0.0,0.0,9.3,0.0,0.0, +2024-06-05 18:00:00,3.6124785,41.63345,14.7,1012.43964,68.90147,0.0,0.0,0.0,9.05,0.0,0.0, +2024-06-05 19:00:00,3.8418746,38.65983,14.75,1012.2426,67.98839,0.0,0.0,0.0,8.9,0.0,0.0, +2024-06-05 20:00:00,4.1617303,35.217674,14.75,1012.0443,67.303215,0.0,0.0,0.0,8.75,0.0,0.0, +2024-06-05 21:00:00,4.5,36.86999,14.65,1011.74396,67.282295,0.0,0.0,0.0,8.65,0.0,0.0, +2024-06-05 22:00:00,4.7201695,36.38445,14.55,1011.8403,67.947174,0.0,0.0,0.0,8.7,0.0,0.0, +2024-06-05 23:00:00,4.743417,34.69522,14.4,1012.13336,68.37723,0.0,0.0,0.0,8.65,0.0,0.0, +2024-06-06 00:00:00,5.215362,32.471172,15.3,1012.5563,65.18371,39.0,239.91776,15.0,8.8,0.0,0.0, +2024-06-06 01:00:00,6.040695,19.334904,19.1,1012.46857,55.37703,203.0,612.7606,50.0,9.95,0.0,0.0, +2024-06-06 02:00:00,5.4083266,19.440128,21.7,1012.04663,49.422314,375.0,757.8242,63.0,10.65,0.0,0.0, +2024-06-06 03:00:00,5.731492,6.0089183,24.2,1011.6206,40.270615,510.0,817.7756,74.0,9.85,0.0,0.0, +2024-06-06 04:00:00,6.281719,346.18494,25.3,1010.75836,33.969265,594.0,856.7731,75.0,8.3,0.0,0.0, +2024-06-06 05:00:00,6.306346,332.62238,25.7,1009.97595,32.83577,613.0,851.7688,81.0,8.15,0.0,0.0, +2024-06-06 06:00:00,6.296825,316.93057,25.55,1009.3766,32.682236,568.0,829.4576,80.0,7.95,0.0,0.0, +2024-06-06 07:00:00,6.788225,315.0001,25.0,1009.36145,31.866718,465.0,782.7927,74.0,7.1,0.0,0.0, +2024-06-06 08:00:00,6.0827627,313.66785,24.05,1009.33514,35.744602,318.0,700.3446,63.0,7.95,0.0,0.0, +2024-06-06 09:00:00,5.7384667,311.46762,22.2,1009.7798,45.749508,141.0,517.2385,42.0,9.95,0.0,0.0, +2024-06-06 10:00:00,5.0447993,320.63068,20.75,1010.0364,59.58901,11.0,73.127174,6.0,12.6,0.0,0.0, +2024-06-06 11:00:00,4.560702,344.7448,20.1,1010.21606,70.416756,0.0,0.0,0.0,14.55,0.0,0.0, +2024-06-06 12:00:00,4.604346,357.5105,20.1,1010.01776,71.79223,0.0,0.0,0.0,14.85,0.0,0.0, +2024-06-06 13:00:00,4.4045434,357.3975,21.0,1010.24176,64.70524,0.0,0.0,0.0,14.1,0.0,0.0, +2024-06-06 14:00:00,4.2296567,353.21112,21.0,1010.1426,65.12562,0.0,0.0,0.0,14.2,0.0,0.0, +2024-06-06 15:00:00,5.1429563,333.43503,20.65,1010.5294,66.97519,0.0,0.0,0.0,14.3,0.0,0.0, +2024-06-06 16:00:00,4.3908997,329.9315,20.1,1010.21606,74.61421,0.0,0.0,0.0,15.45,0.0,0.1, +2024-06-06 17:00:00,3.9824615,331.50446,19.8,1009.712,75.28563,0.0,0.0,0.0,15.3,0.0,0.2, +2024-06-06 18:00:00,4.548626,326.65927,19.0,1009.3913,86.79865,0.0,0.0,0.0,16.75,0.0,2.9, +2024-06-06 19:00:00,2.2671568,318.57642,19.0,1009.09375,91.30543,0.0,0.0,0.0,17.55,0.0,3.7, +2024-06-06 20:00:00,2.0099752,185.7105,19.1,1008.89825,93.345856,0.0,0.0,0.0,18.0,0.0,7.1, +2024-06-06 21:00:00,2.8653097,150.75127,19.05,1008.5003,95.11909,0.0,0.0,0.0,18.25,0.0,5.2, +2024-06-06 22:00:00,1.8601075,126.25393,18.95,1008.69574,93.63255,0.0,0.0,0.0,17.9,0.0,5.4, +2024-06-06 23:00:00,1.6278821,132.5104,18.8,1009.1872,93.33109,0.0,0.0,0.0,17.7,0.0,4.7, +2024-06-07 00:00:00,1.8601075,143.74608,18.7,1009.48193,93.91625,6.0,0.0,6.0,17.7,0.0,1.3, +2024-06-07 01:00:00,3.482815,140.82635,18.2,1009.4677,93.89362,19.0,0.0,19.0,17.2,0.0,5.5, +2024-06-07 02:00:00,3.0364454,162.75845,18.55,1009.8745,93.024605,79.0,2.4385486,78.0,17.4,0.0,2.2, +2024-06-07 03:00:00,3.3615472,157.249,18.4,1009.3742,93.60661,82.0,0.0,82.0,17.35,0.0,1.2, +2024-06-07 04:00:00,2.6000001,157.3801,18.6,1008.98315,92.73393,105.0,1.6547587,104.0,17.4,0.0,3.1, +2024-06-07 05:00:00,1.5264337,121.60746,19.3,1007.7139,88.21098,189.0,17.6478,178.0,17.3,0.0,0.4, +2024-06-07 06:00:00,0.5830952,149.03632,19.45,1007.4208,89.90846,156.0,18.730862,145.0,17.75,0.0,0.6, +2024-06-07 07:00:00,2.2,180.0,19.15,1006.9163,91.891914,68.0,0.0,68.0,17.8,0.0,0.7, +2024-06-07 08:00:00,1.9235383,171.02745,19.0,1006.8128,93.04773,47.0,0.0,47.0,17.85,0.0,0.4, +2024-06-07 09:00:00,2.109502,174.55975,18.85,1007.2054,94.218956,15.0,0.0,15.0,17.9,0.0,0.5, +2024-06-07 10:00:00,2.0248458,147.09476,18.55,1007.09766,94.2061,1.0,0.0,1.0,17.6,0.0,2.7, +2024-06-07 11:00:00,2.1400933,142.59457,18.35,1007.88495,93.90043,0.0,0.0,0.0,17.35,0.0,1.9, +2024-06-07 12:00:00,2.059126,150.9455,18.1,1007.87805,94.48505,0.0,0.0,0.0,17.2,0.0,2.6, +2024-06-07 13:00:00,3.8275316,109.85531,17.45,1008.55334,90.625465,0.0,0.0,0.0,15.9,0.0,0.7, +2024-06-07 14:00:00,4.539824,97.59455,17.3,1007.8549,87.19581,0.0,0.0,0.0,15.15,0.0,0.1, +2024-06-07 15:00:00,4.418144,84.805664,17.35,1007.16205,86.92073,0.0,0.0,0.0,15.15,0.0,1.4, +2024-06-07 16:00:00,4.7169905,94.864426,17.15,1006.7597,88.878914,0.0,0.0,0.0,15.3,0.0,3.6, +2024-06-07 17:00:00,5.1478148,82.1848,16.6,1006.0497,87.69559,0.0,0.0,0.0,14.55,0.0,3.8, +2024-06-07 18:00:00,5.0635953,80.909805,16.3,1005.54504,87.668846,0.0,0.0,0.0,14.25,0.0,5.8, +2024-06-07 19:00:00,5.536244,69.92838,16.4,1004.7546,89.39307,0.0,0.0,0.0,14.65,0.0,4.5, +2024-06-07 20:00:00,4.2520585,41.185837,17.45,1004.28906,92.083115,0.0,0.0,0.0,16.15,0.0,5.6, +2024-06-07 21:00:00,6.2649817,335.48038,19.7,1003.75854,91.63672,0.0,0.0,0.0,18.3,0.0,5.8, +2024-06-07 22:00:00,6.6730804,340.75037,19.85,1003.4651,93.09112,0.0,0.0,0.0,18.7,0.0,2.6, +2024-06-07 23:00:00,7.602631,333.43503,20.35,1003.4793,90.53829,0.0,0.0,0.0,18.75,0.0,0.3, +2024-06-08 00:00:00,7.5802374,323.58353,20.45,1004.0773,91.68236,15.0,20.329113,13.0,19.05,0.0,0.8, +2024-06-08 01:00:00,8.348653,325.73883,20.65,1003.98364,91.40942,57.0,85.1979,36.0,19.2,0.0,0.8, +2024-06-08 02:00:00,7.451845,319.89914,20.9,1004.4865,91.70958,154.0,78.332726,122.0,19.5,0.0,0.6, +2024-06-08 03:00:00,7.093659,310.426,21.0,1004.09265,92.8609,166.0,22.637362,154.0,19.8,0.0,1.6, +2024-06-08 04:00:00,7.144928,316.70132,22.45,1003.43896,83.16008,293.0,139.31458,209.0,19.45,0.0,0.2, +2024-06-08 05:00:00,7.8517513,316.5481,22.15,1002.73615,83.64459,186.0,83.5857,134.0,19.25,0.0,0.1, +2024-06-08 06:00:00,7.1028166,305.25644,22.45,1002.1496,83.93878,301.0,172.2713,200.0,19.6,0.0,0.2, +2024-06-08 07:00:00,7.156116,303.02386,22.15,1001.9427,83.905334,208.0,128.54,144.0,19.3,0.0,0.1, +2024-06-08 08:00:00,7.2945185,303.25436,21.4,1002.4179,87.56569,113.0,71.62856,87.0,19.25,0.0,0.4, +2024-06-08 09:00:00,5.8830266,301.79886,20.65,1002.6943,91.1251,29.0,0.0,29.0,19.15,0.0,1.5, +2024-06-08 10:00:00,5.3413477,308.15726,20.2,1002.8799,93.69108,2.0,0.0,2.0,19.15,0.0,1.2, +2024-06-08 11:00:00,4.3863425,316.8476,20.0,1002.8742,95.15344,0.0,0.0,0.0,19.2,0.0,0.7, +2024-06-08 12:00:00,3.676955,315.0001,20.05,1003.0741,95.15527,0.0,0.0,0.0,19.25,0.0,4.0, +2024-06-08 13:00:00,5.269725,326.61145,20.75,1002.4988,92.55984,0.0,0.0,0.0,19.5,0.0,1.7, +2024-06-08 14:00:00,8.028075,320.55997,20.9,1002.30457,92.8557,0.0,0.0,0.0,19.7,0.0,4.8, +2024-06-08 15:00:00,8.820431,327.03058,20.9,1002.007,91.99493,0.0,0.0,0.0,19.55,0.0,0.9, +2024-06-08 16:00:00,9.035485,332.30063,21.05,1001.51514,90.86807,0.0,0.0,0.0,19.5,0.0,0.7, +2024-06-08 17:00:00,8.905055,325.0606,20.8,1001.21075,91.70353,0.0,0.0,0.0,19.4,0.0,0.9, +2024-06-08 18:00:00,9.167879,320.75458,20.55,1001.10474,93.707344,0.0,0.0,0.0,19.5,0.0,4.3, +2024-06-08 19:00:00,9.831073,316.23633,20.8,1001.11163,92.27544,0.0,0.0,0.0,19.5,0.0,3.6, +2024-06-08 20:00:00,9.055386,300.52963,20.55,1001.4023,92.54895,0.0,0.0,0.0,19.3,0.0,7.3, +2024-06-08 21:00:00,7.4686007,296.2219,21.15,1001.31964,85.116035,0.0,0.0,0.0,18.55,0.0,1.2, +2024-06-08 22:00:00,7.156815,277.2242,20.75,1002.1021,84.27625,0.0,0.0,0.0,18.0,0.0,0.2, +2024-06-08 23:00:00,6.3007936,269.09064,20.4,1002.78625,84.237724,0.0,0.0,0.0,17.65,0.0,0.1, +2024-06-09 00:00:00,5.9076223,267.08923,20.4,1003.778,84.237724,15.0,10.247035,14.0,17.65,0.0,0.0, +2024-06-09 01:00:00,6.8183575,265.7947,20.6,1004.1804,85.05849,92.0,44.905666,81.0,18.0,0.0,0.1, +2024-06-09 02:00:00,6.6,270.0,20.35,1004.66943,83.17579,212.0,135.13193,157.0,17.4,0.0,0.9, +2024-06-09 03:00:00,6.4381676,263.75818,19.8,1004.85236,84.43823,245.0,75.66087,205.0,17.1,0.0,2.3, +2024-06-09 04:00:00,5.821512,265.07297,20.15,1004.96124,85.011154,293.0,141.2744,208.0,17.55,0.0,0.1, +2024-06-09 05:00:00,6.356886,250.70985,20.6,1004.57715,77.11671,377.0,207.72598,248.0,16.45,0.0,0.4, +2024-06-09 06:00:00,5.656854,261.87,20.4,1004.3731,73.24378,213.0,0.0,213.0,15.45,0.0,0.1, +2024-06-09 07:00:00,5.7,270.0,20.7,1004.87756,69.62897,292.0,203.12238,191.0,14.95,0.0,0.0, +2024-06-09 08:00:00,5.921149,274.8439,20.4,1005.0674,69.57092,188.0,201.34964,115.0,14.65,0.0,0.0, +2024-06-09 09:00:00,5.115662,265.51547,19.7,1005.54376,73.12101,85.0,162.71571,54.0,14.75,0.0,0.0, +2024-06-09 10:00:00,4.652956,261.34753,18.95,1006.21643,77.109856,8.0,14.698644,7.0,14.85,0.0,0.0, +2024-06-09 11:00:00,4.101219,268.60284,19.05,1006.51685,73.71882,0.0,0.0,0.0,14.25,0.0,0.0, +2024-06-09 12:00:00,3.736308,285.52417,18.8,1006.90625,70.397804,0.0,0.0,0.0,13.3,0.0,0.0, +2024-06-09 13:00:00,4.110961,288.43503,19.2,1007.21515,70.93326,0.0,0.0,0.0,13.8,0.0,0.0, +2024-06-09 14:00:00,4.753946,284.6209,18.7,1007.39923,70.37871,0.0,0.0,0.0,13.2,0.0,0.0, +2024-06-09 15:00:00,5.096077,285.94547,19.05,1007.50854,67.52115,0.0,0.0,0.0,12.9,0.0,0.0, +2024-06-09 16:00:00,5.0921507,289.50253,18.6,1007.5947,70.13025,0.0,0.0,0.0,13.05,0.0,0.0, +2024-06-09 17:00:00,5.3150725,281.94415,18.55,1007.59357,71.0423,0.0,0.0,0.0,13.2,0.0,0.0, +2024-06-09 18:00:00,4.632494,283.7363,18.35,1007.68665,73.83699,0.0,0.0,0.0,13.6,0.0,0.0, +2024-06-09 19:00:00,4.472136,280.30478,18.25,1007.5847,74.786156,0.0,0.0,0.0,13.7,0.0,0.1, +2024-06-09 20:00:00,3.8626416,291.25058,18.25,1007.38635,75.273544,0.0,0.0,0.0,13.8,0.0,0.1, +2024-06-09 21:00:00,3.6769552,292.3802,18.25,1007.28723,73.34058,0.0,0.0,0.0,13.4,0.0,0.0, +2024-06-09 22:00:00,3.6687872,287.44727,18.3,1007.6854,70.763626,0.0,0.0,0.0,12.9,0.0,0.0, +2024-06-09 23:00:00,3.736308,285.52417,18.25,1008.5765,70.06284,0.0,0.0,0.0,12.7,0.0,0.0, +2024-06-10 00:00:00,2.996665,295.7099,18.5,1008.9804,71.96545,25.0,113.60648,14.0,13.35,0.0,0.0, +2024-06-10 01:00:00,3.1780498,294.14554,19.55,1009.70465,72.15654,155.0,390.1661,60.0,14.4,0.0,0.0, +2024-06-10 02:00:00,4.5,270.0,20.3,1010.5194,66.47026,281.0,424.09418,109.0,13.85,0.0,0.0, +2024-06-10 03:00:00,5.0159745,274.57382,21.4,1010.5507,59.54856,439.0,614.4195,115.0,13.2,0.0,0.0, +2024-06-10 04:00:00,5.4424257,249.56708,20.55,1010.12994,67.38923,504.0,619.5237,132.0,14.3,0.0,0.0, +2024-06-10 05:00:00,4.6400433,232.88306,19.7,1009.9075,75.51129,527.0,641.9441,129.0,15.25,0.0,0.1, +2024-06-10 06:00:00,4.0496917,237.09476,20.1,1009.62103,71.79223,505.0,687.66376,103.0,14.85,0.0,0.0, +2024-06-10 07:00:00,3.1064448,236.82147,20.05,1009.61975,70.63496,391.0,537.5874,124.0,14.55,0.0,0.0, +2024-06-10 08:00:00,2.280351,232.12495,19.65,1009.7075,71.47845,214.0,218.1062,135.0,14.35,0.0,0.0, +2024-06-10 09:00:00,1.7691805,222.70937,19.2,1009.8929,72.79689,109.0,204.84822,70.0,14.2,0.0,0.0, +2024-06-10 10:00:00,1.7888545,206.56499,17.75,1010.4464,79.71789,10.0,44.117134,7.0,14.2,0.0,0.0, +2024-06-10 11:00:00,2.118962,199.29015,17.35,1011.12885,82.81941,0.0,0.0,0.0,14.4,0.0,0.0, +2024-06-10 12:00:00,1.3,180.0,16.8,1011.60876,86.86892,0.0,0.0,0.0,14.6,0.0,0.0, +2024-06-10 13:00:00,1.9209373,128.65984,15.25,1011.86096,92.25158,0.0,0.0,0.0,14.0,0.0,0.0, +2024-06-10 14:00:00,1.2369317,75.96373,15.1,1011.85645,91.943954,0.0,0.0,0.0,13.8,0.0,0.0, +2024-06-10 15:00:00,1.3928387,68.96242,15.0,1011.7545,91.93796,0.0,0.0,0.0,13.7,0.0,0.0, +2024-06-10 16:00:00,1.7,61.92762,14.55,1011.64197,91.91087,0.0,0.0,0.0,13.25,0.0,0.0, +2024-06-10 17:00:00,1.7,61.92762,14.45,1011.5397,91.605354,0.0,0.0,0.0,13.1,0.0,0.0, +2024-06-10 18:00:00,2.3323808,59.03632,14.8,1011.3518,89.5599,0.0,0.0,0.0,13.1,0.0,0.0, +2024-06-10 19:00:00,2.5942245,62.447273,15.5,1011.4716,85.90058,0.0,0.0,0.0,13.15,0.0,0.0, +2024-06-10 20:00:00,2.6627054,55.713078,15.9,1011.18585,83.457115,0.0,0.0,0.0,13.1,0.0,0.1, +2024-06-10 21:00:00,1.8357561,60.64234,15.9,1011.18585,83.18506,0.0,0.0,0.0,13.05,0.0,0.0, +2024-06-10 22:00:00,2.184033,74.054535,15.9,1011.18585,83.18506,0.0,0.0,0.0,13.05,0.0,0.0, +2024-06-10 23:00:00,1.9104973,83.99109,15.95,1011.58405,83.19099,0.0,0.0,0.0,13.1,0.0,0.1, +2024-06-11 00:00:00,1.4,90.0,15.9,1012.2766,88.48994,6.0,0.0,6.0,14.0,0.0,0.9, +2024-06-11 01:00:00,1.4866068,70.346085,16.85,1012.9987,88.000824,20.0,0.0,20.0,14.85,0.0,0.4, +2024-06-11 02:00:00,2.0099752,84.2895,17.05,1013.00446,88.585815,65.0,0.0,65.0,15.15,0.0,0.5, +2024-06-11 03:00:00,1.3152945,81.25392,17.75,1013.0248,85.02768,147.0,15.207493,139.0,15.2,0.0,0.3, +2024-06-11 04:00:00,0.8544004,159.44388,18.0,1012.53625,84.51048,152.0,13.348006,144.0,15.35,0.0,0.4, +2024-06-11 05:00:00,1.2727922,135.0001,18.0,1011.7429,84.23976,134.0,3.2307038,132.0,15.3,0.0,0.4, +2024-06-11 06:00:00,2.059126,119.05451,18.0,1011.0487,85.87561,136.0,6.850798,132.0,15.6,0.0,0.6, +2024-06-11 07:00:00,1.9697715,113.962494,17.8,1010.84436,89.21565,72.0,0.0,72.0,16.0,0.0,1.0, +2024-06-11 08:00:00,1.8027756,123.6901,17.45,1010.9334,91.78996,27.0,0.0,27.0,16.1,0.0,1.0, +2024-06-11 09:00:00,2.751363,109.09359,17.1,1010.82404,92.06262,16.0,0.0,16.0,15.8,0.0,1.4, +2024-06-11 10:00:00,1.2041595,131.63345,16.85,1011.2137,92.04792,2.0,0.0,2.0,15.55,0.0,1.1, +2024-06-11 11:00:00,1.5,126.86998,16.85,1011.41205,92.04792,0.0,0.0,0.0,15.55,0.0,0.7, +2024-06-11 12:00:00,2.236068,153.43501,16.65,1011.8027,93.22382,0.0,0.0,0.0,15.55,0.0,0.3, +2024-06-11 13:00:00,2.641969,119.4758,15.85,1012.37427,91.988754,0.0,0.0,0.0,14.55,0.0,0.1, +2024-06-11 14:00:00,2.6627054,124.286934,15.6,1012.16864,92.27174,0.0,0.0,0.0,14.35,0.0,0.1, +2024-06-11 15:00:00,2.2203603,125.837746,15.8,1011.97626,91.98579,0.0,0.0,0.0,14.5,0.0,0.3, +2024-06-11 16:00:00,2.418677,119.74479,15.8,1011.48047,91.98579,0.0,0.0,0.0,14.5,0.0,0.8, +2024-06-11 17:00:00,2.3259406,115.46331,15.75,1011.2806,92.28038,0.0,0.0,0.0,14.5,0.0,0.6, +2024-06-11 18:00:00,1.7029387,86.63361,15.7,1011.4776,92.576035,0.0,0.0,0.0,14.5,0.0,0.5, +2024-06-11 19:00:00,3.1256998,82.64771,15.75,1010.48724,92.28038,0.0,0.0,0.0,14.5,0.0,0.7, +2024-06-11 20:00:00,3.1016126,69.22767,15.8,1010.19135,90.511116,0.0,0.0,0.0,14.25,0.0,0.1, +2024-06-11 21:00:00,2.376973,67.75093,15.7,1010.08923,90.79759,0.0,0.0,0.0,14.2,0.0,0.1, +2024-06-11 22:00:00,1.3928387,68.96242,15.35,1010.4755,92.55661,0.0,0.0,0.0,14.15,0.0,0.0, +2024-06-11 23:00:00,0.2,180.0,16.3,1011.0983,86.82153,0.0,0.0,0.0,14.1,0.0,0.0, +2024-06-12 00:00:00,0.56568545,135.0001,16.2,1011.1947,89.66669,16.0,20.967417,14.0,14.5,0.0,0.0, +2024-06-12 01:00:00,0.72801095,285.94547,17.5,1012.12494,88.057106,157.0,407.10498,59.0,15.5,0.0,0.0, +2024-06-12 02:00:00,3.3120992,208.88649,18.8,1012.45996,80.63611,307.0,543.55554,88.0,15.4,0.0,0.1, +2024-06-12 03:00:00,3.7854989,192.20045,19.1,1012.171,78.131035,354.0,421.06024,133.0,15.2,0.0,0.1, +2024-06-12 04:00:00,3.905125,193.32454,19.8,1011.6955,74.324646,500.0,620.08514,129.0,15.1,0.0,0.0, +2024-06-12 05:00:00,4.4271884,198.43504,19.55,1011.1923,72.62425,550.0,714.9586,108.0,14.5,0.0,0.1, +2024-06-12 06:00:00,4.2059484,198.00426,19.6,1010.7972,71.70067,499.0,663.5259,112.0,14.35,0.0,0.1, +2024-06-12 07:00:00,3.9849718,197.52567,19.5,1010.4968,71.68232,420.0,661.58514,92.0,14.25,0.0,0.0, +2024-06-12 08:00:00,4.295346,192.09474,18.85,1010.7757,73.92326,288.0,610.88513,67.0,14.1,0.0,0.0, +2024-06-12 09:00:00,3.622154,186.3401,18.1,1011.24994,76.48056,129.0,441.28793,45.0,13.9,0.0,0.0, +2024-06-12 10:00:00,2.7166157,173.6599,17.05,1011.6161,80.924774,11.0,58.779217,7.0,13.75,0.0,0.0, +2024-06-12 11:00:00,2.236068,153.43501,16.15,1012.1848,85.687614,0.0,0.0,0.0,13.75,0.0,0.0, +2024-06-12 12:00:00,1.7,118.072395,15.35,1012.4588,89.02119,0.0,0.0,0.0,13.55,0.0,0.0, +2024-06-12 13:00:00,2.2671568,138.57643,13.8,1013.1071,91.56456,0.0,0.0,0.0,12.45,0.0,0.1, +2024-06-12 14:00:00,1.3152945,98.74608,14.0,1013.11285,91.87757,0.0,0.0,0.0,12.7,0.0,0.0, +2024-06-12 15:00:00,1.6124516,60.255207,14.05,1012.9161,91.880615,0.0,0.0,0.0,12.75,0.0,0.0, +2024-06-12 16:00:00,1.7204651,54.46224,13.35,1012.59766,92.140686,0.0,0.0,0.0,12.1,0.0,0.0, +2024-06-12 17:00:00,1.56205,50.194473,12.8,1012.28406,91.80423,0.0,0.0,0.0,11.5,0.0,0.0, +2024-06-12 18:00:00,1.1661904,59.03632,12.5,1012.17566,90.877335,0.0,0.0,0.0,11.05,0.0,0.0, +2024-06-12 19:00:00,1.0770329,68.19853,12.2,1011.8692,89.6554,0.0,0.0,0.0,10.55,0.0,0.0, +2024-06-12 20:00:00,1.1401755,74.74483,12.1,1011.6678,88.75521,0.0,0.0,0.0,10.3,0.0,0.0, +2024-06-12 21:00:00,1.7492856,59.03632,12.3,1011.57465,88.182045,0.0,0.0,0.0,10.4,0.0,0.0, +2024-06-12 22:00:00,2.641969,60.524208,12.05,1011.5673,89.047775,0.0,0.0,0.0,10.3,0.0,0.0, +2024-06-12 23:00:00,2.9068882,63.435013,11.9,1011.6618,89.33347,0.0,0.0,0.0,10.2,0.0,0.0, +2024-06-13 00:00:00,3.6235344,62.02062,11.95,1012.1591,90.53747,32.0,179.48654,15.0,10.45,0.0,0.0, +2024-06-13 01:00:00,3.1622775,55.304783,15.5,1012.8599,82.054184,181.0,522.0488,56.0,12.45,0.0,0.0, +2024-06-13 02:00:00,2.4207437,51.709793,18.25,1013.1383,71.45145,345.0,672.1766,75.0,13.0,0.0,0.0, +2024-06-13 03:00:00,0.9055385,83.659904,19.4,1012.67554,62.481766,464.0,710.25244,92.0,12.05,0.0,0.0, +2024-06-13 04:00:00,1.3,180.0,20.15,1011.9036,59.642143,555.0,754.9929,104.0,12.05,0.0,0.0, +2024-06-13 05:00:00,1.746425,203.6294,20.1,1011.1087,60.61912,483.0,545.7801,146.0,12.25,0.0,0.0, +2024-06-13 06:00:00,1.8357561,209.35765,20.0,1010.7091,62.208637,487.0,619.5175,126.0,12.55,0.0,0.2, +2024-06-13 07:00:00,2.1954498,210.0685,19.55,1010.4981,65.23851,311.0,381.45898,122.0,12.85,0.0,0.1, +2024-06-13 08:00:00,2.9546573,203.9625,19.15,1010.68494,68.87709,243.0,453.44922,79.0,13.3,0.0,0.0, +2024-06-13 09:00:00,3.1622777,198.43504,18.25,1010.85736,75.273544,109.0,304.54846,51.0,13.8,0.0,0.0, +2024-06-13 10:00:00,2.8071337,184.08554,17.2,1011.0255,78.86762,10.0,44.034157,7.0,13.5,0.0,0.0, +2024-06-13 11:00:00,2.607681,147.52882,16.4,1011.4979,82.43544,0.0,0.0,0.0,13.4,0.0,0.0, +2024-06-13 12:00:00,2.3086793,107.650215,15.2,1011.56177,85.30998,0.0,0.0,0.0,12.75,0.0,0.0, +2024-06-13 13:00:00,2.209072,84.805664,14.0,1011.328,82.135475,0.0,0.0,0.0,11.0,0.0,0.0, +2024-06-13 14:00:00,2.6925824,68.19853,13.7,1011.1208,72.76931,0.0,0.0,0.0,8.9,0.0,0.0, +2024-06-13 15:00:00,3.5341196,64.8852,14.1,1011.1329,69.71755,0.0,0.0,0.0,8.65,0.0,0.0, +2024-06-13 16:00:00,3.5846896,67.01126,14.1,1010.8354,70.66606,0.0,0.0,0.0,8.85,0.0,0.0, +2024-06-13 17:00:00,3.3241541,74.2913,13.35,1010.317,76.22258,0.0,0.0,0.0,9.25,0.0,0.0, +2024-06-13 18:00:00,4.2201896,76.29302,13.2,1009.32104,78.013916,0.0,0.0,0.0,9.45,0.0,0.0, +2024-06-13 19:00:00,4.4384685,75.650635,12.85,1009.11224,78.75197,0.0,0.0,0.0,9.25,0.0,0.0, +2024-06-13 20:00:00,4.883646,79.380394,13.6,1008.5398,74.74013,0.0,0.0,0.0,9.2,0.0,0.0, +2024-06-13 21:00:00,4.6840153,73.88651,12.85,1009.31055,78.75197,0.0,0.0,0.0,9.25,0.0,0.0, +2024-06-13 22:00:00,5.481788,75.2032,13.8,1008.64496,74.52338,0.0,0.0,0.0,9.35,0.0,0.0, +2024-06-13 23:00:00,5.6044626,74.47583,13.95,1008.45105,73.80144,0.0,0.0,0.0,9.35,0.0,0.0, +2024-06-14 00:00:00,5.772348,75.96373,14.15,1008.5559,73.58912,17.0,21.258991,15.0,9.5,0.0,0.0, +2024-06-14 01:00:00,5.4744864,80.53775,16.3,1008.6192,67.85135,168.0,415.5664,69.0,10.35,0.0,0.0, +2024-06-14 02:00:00,5.178803,79.99209,16.9,1008.7358,67.30016,187.0,102.36273,146.0,10.8,0.0,0.0, +2024-06-14 03:00:00,5.2630787,75.69969,18.6,1007.5947,60.265827,462.0,612.1656,142.0,10.75,0.0,0.0, +2024-06-14 04:00:00,5.001,78.46541,18.8,1007.00543,59.715084,386.0,197.82138,268.0,10.8,0.0,0.0, +2024-06-14 05:00:00,4.3829217,62.850407,19.5,1006.13306,60.2789,423.0,348.57196,208.0,11.6,0.0,0.0, +2024-06-14 06:00:00,3.6715121,60.64234,19.15,1005.3296,63.045235,229.0,49.805534,200.0,11.95,0.0,0.0, +2024-06-14 07:00:00,1.7691805,42.709366,20.2,1005.3593,61.84776,466.0,809.7102,65.0,12.65,0.0,0.0, +2024-06-14 08:00:00,1.421267,39.289394,19.65,1005.3439,65.04702,160.0,63.59672,137.0,12.9,0.0,0.0, +2024-06-14 09:00:00,1.5811388,341.56494,18.15,1006.3918,81.59341,90.0,204.60526,51.0,14.95,0.0,0.0, +2024-06-14 10:00:00,1.6401219,52.431335,16.4,1005.9446,83.515564,8.0,0.0,8.0,13.6,0.0,0.0, +2024-06-14 11:00:00,1.56205,39.805527,16.1,1006.7291,83.2088,0.0,0.0,0.0,13.25,0.0,0.0, +2024-06-14 12:00:00,2.9206164,38.047092,16.05,1006.6286,80.79155,0.0,0.0,0.0,12.75,0.0,0.0, +2024-06-14 13:00:00,1.8384776,22.380184,16.4,1006.7379,80.57481,0.0,0.0,0.0,13.05,0.0,0.0, +2024-06-14 14:00:00,1.5811388,18.435053,15.25,1006.80365,85.8752,0.0,0.0,0.0,12.9,0.0,0.0, +2024-06-14 15:00:00,2.158703,13.392516,16.3,1007.1317,80.561295,0.0,0.0,0.0,12.95,0.0,0.0, +2024-06-14 16:00:00,2.059126,29.054508,16.05,1006.72784,81.855545,0.0,0.0,0.0,12.95,0.0,0.0, +2024-06-14 17:00:00,2.607681,32.471172,16.2,1006.3355,81.34158,0.0,0.0,0.0,13.0,0.0,0.0, +2024-06-14 18:00:00,2.1400933,52.594578,15.8,1005.82806,84.81833,0.0,0.0,0.0,13.25,0.0,0.7, +2024-06-14 19:00:00,1.6278821,47.489597,15.5,1005.6209,87.59705,0.0,0.0,0.0,13.45,0.0,0.0, +2024-06-14 20:00:00,1.4866068,47.72637,15.3,1005.5157,88.15182,0.0,0.0,0.0,13.35,0.0,0.0, +2024-06-14 21:00:00,1.5,36.86998,15.4,1005.5189,87.018936,0.0,0.0,0.0,13.25,0.0,0.0, +2024-06-14 22:00:00,1.7204651,35.537766,14.35,1005.78546,89.23235,0.0,0.0,0.0,12.6,0.0,0.0, +2024-06-14 23:00:00,1.6155494,21.801476,14.45,1006.4825,87.50194,0.0,0.0,0.0,12.4,0.0,0.0, +2024-06-15 00:00:00,2.1954498,30.068504,15.65,1006.9145,82.07312,27.0,128.37169,15.0,12.6,0.0,0.0, +2024-06-15 01:00:00,3.1144822,42.397392,18.2,1006.69086,77.74516,139.0,223.5427,86.0,14.25,0.0,0.0, +2024-06-15 02:00:00,3.0610456,51.632477,19.0,1006.51526,78.11621,118.0,22.529566,109.0,15.1,0.0,0.0, +2024-06-15 03:00:00,2.0248458,57.094753,20.1,1005.9515,74.13721,163.0,21.080908,152.0,15.35,0.0,0.0, +2024-06-15 04:00:00,1.104536,5.19435,22.25,1005.31775,62.11305,430.0,344.11563,225.0,14.65,0.0,0.0, +2024-06-15 05:00:00,1.2041595,311.63345,23.0,1004.6443,58.022327,447.0,464.1114,161.0,14.3,0.0,0.0, +2024-06-15 06:00:00,2.3706539,297.64587,23.05,1004.3483,57.28819,400.0,340.26047,202.0,14.15,0.0,0.0, +2024-06-15 07:00:00,2.7073975,274.23633,21.75,1004.5105,68.724304,160.0,40.396214,140.0,15.75,0.0,0.0, +2024-06-15 08:00:00,3.5693135,258.6901,21.0,1005.18365,72.18639,193.0,146.52525,140.0,15.8,0.0,0.0, +2024-06-15 09:00:00,2.0024984,272.86234,20.05,1005.65265,75.81049,126.0,382.51157,53.0,15.65,0.0,0.0, +2024-06-15 10:00:00,2.280351,254.74483,17.7,1005.7838,87.51239,10.0,58.4872,6.0,15.6,0.0,0.0, +2024-06-15 11:00:00,1.6492423,255.96373,18.35,1006.2982,87.01422,0.0,0.0,0.0,16.15,0.0,0.2, +2024-06-15 12:00:00,2.1260293,311.18582,17.3,1006.26825,90.61519,0.0,0.0,0.0,15.75,0.0,0.0, +2024-06-15 13:00:00,2.6476402,349.11453,18.1,1006.4897,90.66997,0.0,0.0,0.0,16.55,0.0,0.0, +2024-06-15 14:00:00,2.7073975,355.76367,17.4,1006.5686,90.91203,0.0,0.0,0.0,15.9,0.0,0.0, +2024-06-15 15:00:00,2.915476,354.09393,17.15,1006.7597,90.89534,0.0,0.0,0.0,15.65,0.0,0.0, +2024-06-15 16:00:00,2.433105,350.53775,17.1,1006.4607,91.18341,0.0,0.0,0.0,15.65,0.0,0.0, +2024-06-15 17:00:00,1.9697715,336.0375,16.9,1006.2566,91.17044,0.0,0.0,0.0,15.45,0.0,0.0, +2024-06-15 18:00:00,2.2022715,309.47244,16.3,1006.23926,90.546,0.0,0.0,0.0,14.75,0.0,0.0, +2024-06-15 19:00:00,2.7313,293.7495,15.65,1006.12115,89.62492,0.0,0.0,0.0,13.95,0.0,0.0, +2024-06-15 20:00:00,2.6172504,276.58185,16.0,1006.4288,86.79295,0.0,0.0,0.0,13.8,0.0,0.0, +2024-06-15 21:00:00,1.9,270.0,18.05,1006.5873,81.056656,0.0,0.0,0.0,14.75,0.0,0.0, +2024-06-15 22:00:00,1.8601075,233.74606,18.6,1007.0989,80.09307,0.0,0.0,0.0,15.1,0.0,0.0, +2024-06-15 23:00:00,2.2135942,198.43504,16.55,1007.8331,85.72855,0.0,0.0,0.0,14.15,0.0,0.0, +2024-06-16 00:00:00,1.5524175,194.93147,17.2,1008.44714,88.3143,27.0,139.90977,14.0,15.25,0.0,0.0, +2024-06-16 01:00:00,0.1,360.0,19.0,1009.4905,80.92138,174.0,512.6452,53.0,15.65,0.0,0.0, +2024-06-16 02:00:00,1.3038405,237.52882,20.0,1010.0149,76.04546,317.0,557.0909,95.0,15.65,0.0,0.0, +2024-06-16 03:00:00,1.7888545,243.43501,20.6,1009.8336,72.11425,452.0,656.4872,110.0,15.4,0.0,0.0, +2024-06-16 04:00:00,2.385372,236.97612,20.95,1009.447,68.787155,502.0,640.2765,121.0,15.0,0.0,0.0, +2024-06-16 05:00:00,2.5942245,242.44727,21.05,1008.6561,67.27402,548.0,678.843,130.0,14.75,0.0,0.0, +2024-06-16 06:00:00,3.2557642,227.4896,20.5,1008.54144,69.36631,497.0,670.5188,107.0,14.7,0.0,0.0, +2024-06-16 07:00:00,3.4885528,207.29948,20.25,1008.53455,71.129486,409.0,632.2763,96.0,14.85,0.0,0.0, +2024-06-16 08:00:00,3.2280025,196.18927,20.1,1008.82764,68.397026,220.0,196.21558,149.0,14.1,0.0,0.0, +2024-06-16 09:00:00,2.915476,185.90605,19.5,1009.4058,70.75989,97.0,136.02347,71.0,14.05,0.0,0.0, +2024-06-16 10:00:00,2.236068,169.6952,18.15,1009.6644,76.24079,10.0,29.167545,8.0,13.9,0.0,0.0, +2024-06-16 11:00:00,2.2825425,151.1893,17.3,1010.23505,80.17391,0.0,0.0,0.0,13.85,0.0,0.0, +2024-06-16 12:00:00,2.3430748,129.80553,16.75,1010.7147,82.21106,0.0,0.0,0.0,13.7,0.0,0.0, +2024-06-16 13:00:00,1.8788295,115.20109,16.95,1010.91907,79.865456,0.0,0.0,0.0,13.45,0.0,0.0, +2024-06-16 14:00:00,1.9235383,98.97255,16.1,1010.9932,81.86189,0.0,0.0,0.0,13.0,0.0,0.0, +2024-06-16 15:00:00,2.302173,92.4895,15.95,1011.0882,82.379745,0.0,0.0,0.0,12.95,0.0,0.0, +2024-06-16 16:00:00,2.5079873,94.57384,15.65,1010.68274,83.15527,0.0,0.0,0.0,12.8,0.0,0.0, +2024-06-16 17:00:00,2.5019991,92.29056,16.05,1010.2977,80.001564,0.0,0.0,0.0,12.6,0.0,0.0, +2024-06-16 18:00:00,2.236068,100.30479,15.2,1010.1735,83.37477,0.0,0.0,0.0,12.4,0.0,0.0, +2024-06-16 19:00:00,2.2203605,97.76508,14.4,1009.9518,86.63915,0.0,0.0,0.0,12.2,0.0,0.0, +2024-06-16 20:00:00,2.1213202,98.13002,13.95,1010.1368,87.74488,0.0,0.0,0.0,11.95,0.0,0.0, +2024-06-16 21:00:00,2.0615528,104.03627,13.55,1010.1248,88.58224,0.0,0.0,0.0,11.7,0.0,0.0, +2024-06-16 22:00:00,2.408319,94.76356,13.45,1010.02277,88.57384,0.0,0.0,0.0,11.6,0.0,0.0, +2024-06-16 23:00:00,2.8017852,92.045364,13.4,1010.4177,89.15668,0.0,0.0,0.0,11.65,0.0,0.0, +2024-06-17 00:00:00,2.9068885,93.945114,14.2,1011.13574,87.19183,31.0,194.81035,13.0,12.1,0.0,0.0, +2024-06-17 01:00:00,3.0594118,101.3099,16.65,1011.2077,81.66553,183.0,544.5596,55.0,13.5,0.0,0.0, +2024-06-17 02:00:00,2.7294688,118.442825,18.8,1011.17065,74.39506,338.0,646.3602,81.0,14.15,0.0,0.0, +2024-06-17 03:00:00,3.0413814,136.33215,20.25,1011.1131,63.9144,466.0,672.81396,116.0,13.2,0.0,0.0, +2024-06-17 04:00:00,2.9154758,157.8336,20.95,1010.43884,58.8604,533.0,672.8619,133.0,12.6,0.0,0.0, +2024-06-17 05:00:00,2.4186773,172.87508,21.4,1010.0548,56.88315,581.0,801.1449,88.0,12.5,0.0,0.0, +2024-06-17 06:00:00,3.4525354,190.00792,21.05,1009.54877,59.855564,428.0,371.4782,212.0,12.95,0.0,0.0, +2024-06-17 07:00:00,4.197618,192.38075,20.4,1009.6295,67.79603,366.0,363.59183,186.0,14.25,0.0,0.0, +2024-06-17 08:00:00,4.9365983,186.98096,19.6,1009.8054,73.10339,284.0,596.59326,68.0,14.65,0.0,0.0, +2024-06-17 09:00:00,4.7010636,178.78116,18.6,1009.5782,76.80731,138.0,496.0663,43.0,14.45,0.0,0.0, +2024-06-17 10:00:00,3.383785,161.0295,17.45,1010.14,79.675964,12.0,87.23271,6.0,13.9,0.0,0.0, +2024-06-17 11:00:00,3.8013155,153.43501,16.9,1010.91754,81.16833,0.0,0.0,0.0,13.65,0.0,0.0, +2024-06-17 12:00:00,3.9824615,151.50446,16.75,1011.40894,80.62196,0.0,0.0,0.0,13.4,0.0,0.0, +2024-06-17 13:00:00,4.016217,161.11382,16.85,1011.41205,80.89822,0.0,0.0,0.0,13.55,0.0,0.0, +2024-06-17 14:00:00,4.197618,167.61925,16.75,1011.7064,81.9443,0.0,0.0,0.0,13.65,0.0,0.0, +2024-06-17 15:00:00,4.016217,161.11382,16.4,1011.7954,82.16735,0.0,0.0,0.0,13.35,0.0,0.0, +2024-06-17 16:00:00,3.3970575,137.38599,15.7,1011.7751,84.53114,0.0,0.0,0.0,13.1,0.0,0.0, +2024-06-17 17:00:00,3.6249137,114.44395,14.75,1011.25104,87.81627,0.0,0.0,0.0,12.75,0.0,0.0, +2024-06-17 18:00:00,3.448188,119.53869,14.3,1011.0393,86.62945,0.0,0.0,0.0,12.1,0.0,0.0, +2024-06-17 19:00:00,3.3837848,124.159744,14.15,1011.4315,83.52607,0.0,0.0,0.0,11.4,0.0,0.0, +2024-06-17 20:00:00,3.3600597,126.528946,13.95,1011.82245,82.6761,0.0,0.0,0.0,11.05,0.0,0.0, +2024-06-17 21:00:00,3.3241541,133.7812,13.8,1011.81805,82.383484,0.0,0.0,0.0,10.85,0.0,0.0, +2024-06-17 22:00:00,3.2449963,123.690094,13.65,1012.3094,82.091125,0.0,0.0,0.0,10.65,0.0,0.0, +2024-06-17 23:00:00,3.176476,118.1785,12.9,1012.88184,84.49904,0.0,0.0,0.0,10.35,0.0,0.0, +2024-06-18 00:00:00,3.757659,115.20109,13.4,1013.29333,81.78612,25.0,141.42592,12.0,10.35,0.0,0.0, +2024-06-18 01:00:00,3.4176016,110.55613,16.0,1014.06445,72.941124,155.0,414.2481,58.0,11.15,0.0,0.0, +2024-06-18 02:00:00,3.4,118.072395,17.25,1014.39856,68.72444,253.0,312.48734,129.0,11.45,0.0,0.0, +2024-06-18 03:00:00,4.318565,137.81563,18.7,1014.44055,60.691326,412.0,477.33823,164.0,10.95,0.0,0.0, +2024-06-18 04:00:00,5.500909,152.96922,19.6,1013.9708,55.134987,539.0,739.0661,100.0,10.35,0.0,0.0, +2024-06-18 05:00:00,5.8523498,160.0168,19.85,1013.1843,53.566338,533.0,621.0579,151.0,10.15,0.0,0.0, +2024-06-18 06:00:00,6.332456,164.4274,19.75,1012.7848,53.183407,469.0,553.86224,147.0,9.95,0.0,0.0, +2024-06-18 07:00:00,5.571355,158.96242,19.5,1012.77783,51.536465,388.0,553.349,114.0,9.25,0.0,0.0, +2024-06-18 08:00:00,5.8940644,165.2564,19.0,1012.9616,53.16616,316.0,695.48663,64.0,9.25,0.0,0.0, +2024-06-18 09:00:00,5.021952,167.34744,17.95,1013.5264,60.111454,133.0,453.2877,46.0,10.1,0.0,0.0, +2024-06-18 10:00:00,3.6769552,157.61983,16.7,1013.7876,66.5898,12.0,86.92977,6.0,10.45,0.0,0.0, +2024-06-18 11:00:00,3.538361,137.29063,15.9,1014.35913,65.75497,0.0,0.0,0.0,9.5,0.0,0.0, +2024-06-18 12:00:00,2.863564,114.775116,15.2,1014.735,65.60359,0.0,0.0,0.0,8.8,0.0,0.0, +2024-06-18 13:00:00,2.7730849,115.64096,14.3,1015.4024,65.63043,0.0,0.0,0.0,7.95,0.0,0.0, +2024-06-18 14:00:00,4.1340055,122.15227,14.5,1015.8052,64.12967,0.0,0.0,0.0,7.8,0.0,0.0, +2024-06-18 15:00:00,4.3266616,123.6901,14.1,1016.2892,71.14457,0.0,0.0,0.0,8.95,0.0,0.0, +2024-06-18 16:00:00,4.1880784,123.310646,13.4,1016.26807,78.83319,0.0,0.0,0.0,9.8,0.0,0.0, +2024-06-18 17:00:00,4.3908997,120.0685,12.95,1016.05634,83.942726,0.0,0.0,0.0,10.3,0.0,0.0, +2024-06-18 18:00:00,4.6957426,116.56499,12.75,1016.05035,83.3603,0.0,0.0,0.0,10.0,0.0,0.0, +2024-06-18 19:00:00,4.753946,112.24908,12.6,1016.0458,77.39774,0.0,0.0,0.0,8.75,0.0,0.0, +2024-06-18 20:00:00,4.535416,104.03627,12.25,1016.03534,73.75057,0.0,0.0,0.0,7.7,0.0,0.0, +2024-06-18 21:00:00,4.4384685,104.349365,11.95,1016.02606,70.73135,0.0,0.0,0.0,6.8,0.0,0.0, +2024-06-18 22:00:00,4.4384685,104.349365,11.75,1016.51575,68.064224,0.0,0.0,0.0,6.05,0.0,0.0, +2024-06-18 23:00:00,4.648656,108.8248,11.6,1017.20544,64.36158,0.0,0.0,0.0,5.1,0.0,0.0, +2024-06-19 00:00:00,5.0990195,101.3099,11.95,1017.8109,63.111618,31.0,185.81537,14.0,5.15,0.0,0.0, +2024-06-19 01:00:00,5.5145264,94.15957,12.55,1018.5231,70.84749,189.0,599.9418,49.0,7.4,0.0,0.0, +2024-06-19 02:00:00,5.4332314,96.340096,14.4,1018.7771,67.91623,362.0,752.30426,64.0,8.55,0.0,0.0, +2024-06-19 03:00:00,5.554278,103.53587,16.15,1018.33307,59.477875,500.0,824.6775,72.0,8.25,0.0,0.0, +2024-06-19 04:00:00,5.8189344,109.0578,17.2,1017.5706,50.227306,586.0,860.83716,75.0,6.75,0.0,0.0, +2024-06-19 05:00:00,5.5036354,114.70241,17.65,1016.59204,47.495773,612.0,871.707,76.0,6.35,0.0,0.0, +2024-06-19 06:00:00,5.0537114,117.072,17.95,1015.7081,45.026314,574.0,858.3133,75.0,5.85,0.0,0.0, +2024-06-19 07:00:00,4.830114,117.095474,17.85,1015.6061,44.99811,476.0,821.63556,69.0,5.75,0.0,0.0, +2024-06-19 08:00:00,4.606517,117.12123,17.35,1015.78986,46.761776,329.0,738.9263,61.0,5.85,0.0,0.0, +2024-06-19 09:00:00,3.8078864,119.93143,16.05,1015.8511,52.387592,150.0,561.2871,42.0,6.3,0.0,0.0, +2024-06-19 10:00:00,3.720215,126.25393,14.35,1016.09814,56.449574,13.0,101.02627,6.0,5.8,0.0,0.0, +2024-06-19 11:00:00,3.8013155,125.36255,13.45,1016.6664,58.613556,0.0,0.0,0.0,5.5,0.0,0.0, +2024-06-19 12:00:00,4.0496917,122.90524,12.7,1017.0402,60.077713,0.0,0.0,0.0,5.15,0.0,0.0, +2024-06-19 13:00:00,4.2953463,114.775116,12.05,1017.12,59.919327,0.0,0.0,0.0,4.5,0.0,0.0, +2024-06-19 14:00:00,3.8626416,111.25058,11.55,1017.4021,61.496803,0.0,0.0,0.0,4.4,0.0,0.0, +2024-06-19 15:00:00,3.4885528,117.29949,11.0,1017.58386,64.45068,0.0,0.0,0.0,4.55,0.0,0.0, +2024-06-19 16:00:00,3.2449963,123.690094,10.4,1017.86273,68.018776,0.0,0.0,0.0,4.75,0.0,0.0, +2024-06-19 17:00:00,3.8275316,109.85531,10.05,1017.6537,70.35936,0.0,0.0,0.0,4.9,0.0,0.0, +2024-06-19 18:00:00,3.8078866,103.671326,10.05,1017.3562,71.09817,0.0,0.0,0.0,5.05,0.0,0.0, +2024-06-19 19:00:00,3.8078866,103.671326,10.05,1017.0588,71.59452,0.0,0.0,0.0,5.15,0.0,0.0, +2024-06-19 20:00:00,3.8832974,101.88863,9.9,1016.955,71.56586,0.0,0.0,0.0,5.0,0.0,0.0, +2024-06-19 21:00:00,4.0199504,95.7105,9.7,1016.75073,71.777374,0.0,0.0,0.0,4.85,0.0,0.0, +2024-06-19 22:00:00,4.304649,92.66295,9.7,1016.75073,70.78282,0.0,0.0,0.0,4.65,0.0,0.0, +2024-06-19 23:00:00,4.1,90.0,9.6,1017.2432,70.516396,0.0,0.0,0.0,4.5,0.0,0.0, +2024-06-20 00:00:00,4.7010636,88.78116,10.15,1017.85504,69.16346,32.0,208.55475,13.0,4.75,0.0,0.0, +2024-06-20 01:00:00,4.501111,88.727,12.25,1018.41504,64.95567,193.0,623.26733,48.0,5.85,0.0,0.0, +2024-06-20 02:00:00,4.8093657,86.423744,14.3,1018.5755,58.82372,368.0,771.1469,63.0,6.35,0.0,0.0, +2024-06-20 03:00:00,5.8940644,75.25639,16.1,1018.1331,50.448853,508.0,842.75946,71.0,5.8,0.0,0.0, +2024-06-20 04:00:00,5.8523498,73.11313,17.1,1016.9725,45.730198,594.0,874.7325,75.0,5.3,0.0,0.0, +2024-06-20 05:00:00,5.3758717,71.564964,17.75,1016.1982,46.07177,619.0,883.23157,76.0,6.0,0.0,0.0, +2024-06-20 06:00:00,5.0921507,70.49747,18.15,1015.2181,46.50268,579.0,868.4986,74.0,6.5,0.0,0.0, +2024-06-20 07:00:00,5.0289164,72.64589,18.25,1014.8243,46.690723,479.0,825.22705,70.0,6.65,0.0,0.0, +2024-06-20 08:00:00,4.244997,74.98159,17.9,1015.01263,48.721607,330.0,740.8241,61.0,6.95,0.0,0.0, +2024-06-20 09:00:00,3.1256998,82.64771,16.55,1015.0723,54.722927,151.0,564.89624,42.0,7.4,0.0,0.0, +2024-06-20 10:00:00,2.5179358,96.84268,14.2,1014.8047,60.856647,13.0,100.59658,6.0,6.75,0.0,0.0, +2024-06-20 11:00:00,2.8071337,94.08554,13.3,1014.8771,63.640144,0.0,0.0,0.0,6.55,0.0,0.0, +2024-06-20 12:00:00,2.7,90.0,12.6,1015.05426,65.93577,0.0,0.0,0.0,6.4,0.0,0.0, +2024-06-20 13:00:00,3.6013885,88.4089,12.3,1014.54926,66.32641,0.0,0.0,0.0,6.2,0.0,0.0, +2024-06-20 14:00:00,4.0447497,81.46932,12.4,1014.3542,64.76493,0.0,0.0,0.0,5.95,0.0,0.0, +2024-06-20 15:00:00,4.560702,74.74483,12.65,1014.3615,63.05438,0.0,0.0,0.0,5.8,0.0,0.0, +2024-06-20 16:00:00,4.7169905,68.87521,12.7,1014.16473,61.76954,0.0,0.0,0.0,5.55,0.0,0.0, +2024-06-20 17:00:00,4.8754487,64.48618,12.35,1013.8569,62.767067,0.0,0.0,0.0,5.45,0.0,0.0, +2024-06-20 18:00:00,5.635601,62.525658,12.1,1013.4526,63.586174,0.0,0.0,0.0,5.4,0.0,0.0, +2024-06-20 19:00:00,6.2433968,58.091934,11.95,1013.0515,63.772976,0.0,0.0,0.0,5.3,0.0,0.0, +2024-06-20 20:00:00,6.8818603,54.46224,11.75,1012.748,63.949356,0.0,0.0,0.0,5.15,0.0,0.0, +2024-06-20 21:00:00,7.3878274,50.49235,11.6,1012.1486,63.915207,0.0,0.0,0.0,5.0,0.0,0.0, +2024-06-20 22:00:00,7.66942,50.290127,11.45,1012.24335,63.658726,0.0,0.0,0.0,4.8,0.0,0.0, +2024-06-20 23:00:00,8.156592,49.474983,11.3,1012.3377,63.402576,0.0,0.0,0.0,4.6,0.0,0.0, +2024-06-21 00:00:00,8.495881,47.862484,11.65,1012.64594,62.168713,32.0,209.32808,13.0,4.65,0.0,0.0, +2024-06-21 01:00:00,7.5663733,45.535397,13.35,1012.99426,58.385742,193.0,603.3673,53.0,5.35,0.0,0.0, +2024-06-21 02:00:00,7.2138753,43.876797,15.15,1013.3456,54.73536,374.0,787.31195,63.0,6.1,0.0,0.0, +2024-06-21 03:00:00,6.6068144,39.47243,17.1,1012.9066,51.42026,513.0,854.91095,70.0,7.0,0.0,0.0, +2024-06-21 04:00:00,6.1032777,34.9921,18.8,1012.06323,48.967876,596.0,880.05835,74.0,7.85,0.0,0.0, +2024-06-21 05:00:00,5.818075,28.767557,20.1,1011.0095,47.203228,617.0,881.60516,75.0,8.5,0.0,0.0, +2024-06-21 06:00:00,5.4083266,19.440128,20.95,1009.94293,46.96049,576.0,863.071,74.0,9.2,0.0,0.0, +2024-06-21 07:00:00,4.8373547,7.12493,21.35,1009.5573,47.866062,476.0,820.6157,69.0,9.85,0.0,0.0, +2024-06-21 08:00:00,3.981206,348.40787,21.15,1009.65076,51.972256,326.0,731.5737,60.0,10.9,0.0,0.0, +2024-06-21 09:00:00,2.059126,330.9455,19.45,1009.7018,62.08308,148.0,547.649,42.0,12.0,0.0,0.0, +2024-06-21 10:00:00,2.1931713,313.1524,17.1,1010.1299,73.13745,13.0,85.82743,7.0,12.25,0.0,0.0, +2024-06-21 11:00:00,2.745906,303.11136,17.8,1011.0427,76.43301,0.0,0.0,0.0,13.6,0.0,0.0, +2024-06-21 12:00:00,1.8384776,337.6198,16.35,1011.1991,85.430534,0.0,0.0,0.0,13.9,0.0,0.0, +2024-06-21 13:00:00,1.8384776,22.380184,15.8,1010.78625,84.26677,0.0,0.0,0.0,13.15,0.0,0.0, +2024-06-21 14:00:00,2.147091,27.758451,16.4,1010.90295,78.49372,0.0,0.0,0.0,12.65,0.0,0.0, +2024-06-21 15:00:00,2.529822,18.435053,16.7,1010.71344,79.5706,0.0,0.0,0.0,13.15,0.0,0.0, +2024-06-21 16:00:00,3.0,360.0,16.75,1010.31805,82.47858,0.0,0.0,0.0,13.75,0.0,0.0, +2024-06-21 17:00:00,3.0870697,335.09525,16.6,1010.2147,89.12103,0.0,0.0,0.0,14.8,0.0,0.0, +2024-06-21 18:00:00,3.577709,333.43503,16.25,1010.30347,90.542496,0.0,0.0,0.0,14.7,0.0,0.1, +2024-06-21 19:00:00,3.0083218,338.5522,16.5,1010.1124,93.216225,0.0,0.0,0.0,15.4,0.0,0.3, +2024-06-21 20:00:00,3.2557642,10.61961,15.9,1009.99585,93.48646,0.0,0.0,0.0,14.85,0.0,0.0, +2024-06-21 21:00:00,3.1780496,12.7243595,15.65,1009.9886,93.77627,0.0,0.0,0.0,14.65,0.0,0.0, +2024-06-21 22:00:00,3.0149627,5.7105074,15.65,1010.38525,92.573265,0.0,0.0,0.0,14.45,0.0,0.0, +2024-06-21 23:00:00,2.1213202,8.130019,15.8,1011.08374,90.511116,0.0,0.0,0.0,14.25,0.0,0.0, +2024-06-22 00:00:00,1.6763055,252.64589,16.25,1011.8902,91.42202,24.0,121.58698,13.0,14.85,0.0,0.1, +2024-06-22 01:00:00,1.7691805,317.29062,17.6,1013.0204,86.665794,58.0,51.836674,46.0,15.35,0.0,0.4, +2024-06-22 02:00:00,2.7018514,357.87894,18.2,1012.9387,86.44642,109.0,63.35496,84.0,15.9,0.0,0.0, +2024-06-22 03:00:00,2.9274564,352.14676,19.3,1012.6726,77.91038,241.0,214.31757,130.0,15.35,0.0,0.0, +2024-06-22 04:00:00,4.313931,224.0609,19.5,1012.77783,71.68232,456.0,563.183,122.0,14.25,0.0,0.4, +2024-06-22 05:00:00,4.004997,182.86235,18.25,1012.44415,83.46123,299.0,117.09463,227.0,15.4,0.0,0.4, +2024-06-22 06:00:00,4.669047,170.13426,18.6,1011.85913,82.17596,319.0,99.66934,261.0,15.5,0.0,0.5, +2024-06-22 07:00:00,6.0926185,156.80138,17.75,1012.23145,84.21191,249.0,231.6614,134.0,15.05,0.0,1.3, +2024-06-22 08:00:00,5.1107726,149.42085,17.65,1012.42694,82.057556,97.0,54.917477,77.0,14.55,0.0,0.0, +2024-06-22 09:00:00,4.9739323,149.82657,17.75,1013.12396,75.436264,65.0,25.741465,60.0,13.35,0.0,0.0, +2024-06-22 10:00:00,4.080441,143.97253,16.85,1013.4945,74.549706,8.0,14.230142,7.0,12.3,0.0,0.0, +2024-06-22 11:00:00,4.2190046,148.57048,16.35,1014.1741,72.52255,0.0,0.0,0.0,11.4,0.0,0.0, +2024-06-22 12:00:00,4.743417,145.30478,15.3,1014.53955,71.37172,0.0,0.0,0.0,10.15,0.0,0.0, +2024-06-22 13:00:00,4.920366,142.43134,15.55,1015.1422,65.458534,0.0,0.0,0.0,9.1,0.0,0.0, +2024-06-22 14:00:00,5.0249376,137.41954,15.1,1015.6246,61.697754,0.0,0.0,0.0,7.8,0.0,0.0, +2024-06-22 15:00:00,4.6400433,127.11694,14.7,1015.71204,60.975666,0.0,0.0,0.0,7.25,0.0,0.0, +2024-06-22 16:00:00,4.382921,124.77791,14.05,1015.99,61.87396,0.0,0.0,0.0,6.85,0.0,0.0, +2024-06-22 17:00:00,4.429447,118.30067,13.3,1015.76953,63.20386,0.0,0.0,0.0,6.45,0.0,0.0, +2024-06-22 18:00:00,4.438468,112.52061,12.55,1015.94507,65.69821,0.0,0.0,0.0,6.3,0.0,0.0, +2024-06-22 19:00:00,4.7801676,105.78082,12.15,1015.7347,67.214966,0.0,0.0,0.0,6.25,0.0,0.0, +2024-06-22 20:00:00,4.86621,99.46225,11.8,1015.6251,68.30987,0.0,0.0,0.0,6.15,0.0,0.0, +2024-06-22 21:00:00,5.0358715,96.84268,11.5,1015.5166,69.19746,0.0,0.0,0.0,6.05,0.0,0.0, +2024-06-22 22:00:00,5.124451,95.59925,11.2,1015.90424,69.85765,0.0,0.0,0.0,5.9,0.0,0.0, +2024-06-22 23:00:00,5.4037027,92.12105,10.95,1016.68994,70.53637,0.0,0.0,0.0,5.8,0.0,0.0, +2024-06-23 00:00:00,5.9,90.0,11.4,1017.39764,69.17721,30.0,188.46141,13.0,5.95,0.0,0.0, +2024-06-23 01:00:00,5.500909,88.9584,13.4,1018.1521,67.478226,189.0,610.32526,48.0,7.5,0.0,0.0, +2024-06-23 02:00:00,5.4,90.0,15.6,1018.61426,59.749928,363.0,760.91174,63.0,7.8,0.0,0.0, +2024-06-23 03:00:00,5.707013,101.113,17.1,1018.3609,52.846676,503.0,834.3811,71.0,7.4,0.0,0.0, +2024-06-23 04:00:00,5.700877,111.61484,17.9,1017.6902,49.056572,588.0,863.3092,76.0,7.05,0.0,0.0, +2024-06-23 05:00:00,5.4120235,117.51192,18.35,1017.0088,47.52651,612.0,871.4227,76.0,7.0,0.0,0.0, +2024-06-23 06:00:00,4.6647615,120.96369,18.6,1016.32196,46.948635,574.0,856.93726,75.0,7.05,0.0,0.0, +2024-06-23 07:00:00,4.5,126.86999,18.5,1016.02167,47.405476,476.0,816.96625,70.0,7.1,0.0,0.0, +2024-06-23 08:00:00,4.560702,127.875046,18.05,1016.00854,49.60366,328.0,731.7818,61.0,7.35,0.0,0.0, +2024-06-23 09:00:00,3.4409301,125.537766,16.85,1016.172,54.614075,151.0,553.8069,43.0,7.65,0.0,0.0, +2024-06-23 10:00:00,2.4698179,111.3707,14.7,1016.2078,60.767506,14.0,99.03177,7.0,7.2,0.0,0.0, +2024-06-23 11:00:00,2.404163,106.9276,13.55,1016.57,63.69694,0.0,0.0,0.0,6.8,0.0,0.0, +2024-06-23 12:00:00,2.6476402,100.88548,12.65,1016.9395,67.55205,0.0,0.0,0.0,6.8,0.0,0.0, +2024-06-23 13:00:00,2.8017852,92.045364,11.85,1017.31226,70.469475,0.0,0.0,0.0,6.65,0.0,0.0, +2024-06-23 14:00:00,3.2015622,91.78987,11.65,1017.5044,70.43033,0.0,0.0,0.0,6.45,0.0,0.0, +2024-06-23 15:00:00,3.5014284,91.63654,11.45,1017.5976,70.39112,0.0,0.0,0.0,6.25,0.0,0.0, +2024-06-23 16:00:00,3.6013885,91.59111,11.2,1017.1933,71.07409,0.0,0.0,0.0,6.15,0.0,0.0, +2024-06-23 17:00:00,3.7121422,94.635376,10.85,1016.7858,72.74422,0.0,0.0,0.0,6.15,0.0,0.0, +2024-06-23 18:00:00,4.101219,91.39715,10.7,1016.68225,73.4734,0.0,0.0,0.0,6.15,0.0,0.0, +2024-06-23 19:00:00,4.4102154,86.09958,10.45,1016.3771,73.4283,0.0,0.0,0.0,5.9,0.0,0.0, +2024-06-23 20:00:00,4.428318,83.51703,10.2,1016.072,73.89292,0.0,0.0,0.0,5.75,0.0,0.0, +2024-06-23 21:00:00,4.3737855,79.46087,10.0,1015.7685,74.62873,0.0,0.0,0.0,5.7,0.0,0.0, +2024-06-23 22:00:00,4.4553337,80.960594,9.8,1015.663,75.11274,0.0,0.0,0.0,5.6,0.0,0.0, +2024-06-23 23:00:00,4.527693,83.659904,9.65,1015.95593,74.82695,0.0,0.0,0.0,5.4,0.0,0.0, +2024-06-24 00:00:00,4.6173587,85.03035,10.15,1016.3678,72.36345,29.0,188.95343,12.0,5.4,0.0,0.0, +2024-06-24 01:00:00,4.7010636,88.78116,12.0,1016.92004,67.64825,186.0,602.7284,47.0,6.2,0.0,0.0, +2024-06-24 02:00:00,4.501111,91.273,14.2,1016.7879,61.27572,360.0,753.80365,63.0,6.85,0.0,0.0, +2024-06-24 03:00:00,5.323533,95.38922,15.85,1016.3409,52.33423,500.0,828.7279,71.0,6.1,0.0,0.0, +2024-06-24 04:00:00,5.124451,95.59925,16.75,1015.1773,49.24849,587.0,864.84607,74.0,6.05,0.0,0.0, +2024-06-24 05:00:00,4.7169905,94.864426,17.45,1014.3051,47.768505,613.0,872.62756,76.0,6.25,0.0,0.0, +2024-06-24 06:00:00,4.2107005,94.08554,17.8,1013.522,46.72603,574.0,857.94495,74.0,6.25,0.0,0.0, +2024-06-24 07:00:00,4.0199504,95.7105,17.75,1013.0248,46.873375,476.0,817.91766,69.0,6.25,0.0,0.0, +2024-06-24 08:00:00,3.522783,96.519714,17.35,1012.91394,48.07113,329.0,735.70233,60.0,6.25,0.0,0.0, +2024-06-24 09:00:00,2.2561028,102.80426,15.95,1012.97235,56.08345,152.0,561.58167,42.0,7.2,0.0,0.0, +2024-06-24 10:00:00,1.9416487,101.88863,13.35,1013.09344,64.75362,14.0,98.3981,7.0,6.85,0.0,0.0, +2024-06-24 11:00:00,2.2561028,102.80426,12.35,1013.26196,67.95473,0.0,0.0,0.0,6.6,0.0,0.0, +2024-06-24 12:00:00,2.915476,95.906044,11.85,1013.247,69.26817,0.0,0.0,0.0,6.4,0.0,0.0, +2024-06-24 13:00:00,3.238827,98.88058,11.25,1012.5345,68.43256,0.0,0.0,0.0,5.65,0.0,0.0, +2024-06-24 14:00:00,3.436568,98.3658,11.05,1012.3301,68.86714,0.0,0.0,0.0,5.55,0.0,0.0, +2024-06-24 15:00:00,3.306055,93.46816,10.8,1012.0251,70.26317,0.0,0.0,0.0,5.6,0.0,0.0, +2024-06-24 16:00:00,3.3015149,88.264336,10.3,1011.6135,72.391426,0.0,0.0,0.0,5.55,0.0,0.0, +2024-06-24 17:00:00,3.535534,81.86999,9.8,1010.90393,74.852905,0.0,0.0,0.0,5.55,0.0,0.0, +2024-06-24 18:00:00,3.748333,80.78905,9.55,1010.3014,76.11864,0.0,0.0,0.0,5.55,0.0,0.0, +2024-06-24 19:00:00,3.9204593,84.14409,9.35,1009.5023,76.88148,0.0,0.0,0.0,5.5,0.0,0.0, +2024-06-24 20:00:00,4.1,77.319626,9.2,1009.1009,76.857254,0.0,0.0,0.0,5.35,0.0,0.0, +2024-06-24 21:00:00,4.4384685,75.650635,9.05,1008.60077,76.56635,0.0,0.0,0.0,5.15,0.0,0.0, +2024-06-24 22:00:00,4.9729266,74.84589,8.7,1008.3916,77.85325,0.0,0.0,0.0,5.05,0.0,0.0, +2024-06-24 23:00:00,5.2201533,73.300674,8.45,1008.5824,79.181335,0.0,0.0,0.0,5.05,0.0,0.0, +2024-06-25 00:00:00,5.565968,72.21602,9.0,1008.5991,77.89996,30.0,189.37808,13.0,5.35,0.0,0.0, +2024-06-25 01:00:00,5.6797886,63.886147,11.7,1008.18536,70.19821,161.0,360.43277,78.0,6.45,0.0,0.0, +2024-06-25 02:00:00,4.9396353,58.240574,14.35,1007.96704,63.22749,338.0,609.41876,98.0,7.45,0.0,0.0, +2024-06-25 03:00:00,4.967897,49.899166,16.45,1007.43365,53.769394,497.0,801.68604,82.0,7.05,0.0,0.0, +2024-06-25 04:00:00,4.675468,41.531677,17.7,1006.478,47.021244,590.0,871.3027,73.0,6.25,0.0,0.0, +2024-06-25 05:00:00,3.6055512,33.6901,18.55,1005.6101,43.814644,616.0,880.18976,74.0,6.0,0.0,0.0, +2024-06-25 06:00:00,2.1931713,24.227736,18.95,1004.828,41.71077,578.0,867.3779,72.0,5.65,0.0,0.0, +2024-06-25 07:00:00,1.3416408,26.564985,19.0,1004.23425,40.44287,480.0,826.7372,68.0,5.25,0.0,0.0, +2024-06-25 08:00:00,1.2041595,48.366554,18.75,1003.8307,41.509304,332.0,739.42365,61.0,5.4,0.0,0.0, +2024-06-25 09:00:00,1.2165525,99.46225,17.3,1003.4916,55.478294,155.0,574.13116,42.0,8.3,0.0,0.0, +2024-06-25 10:00:00,2.3086793,85.03035,12.95,1003.5627,66.923676,15.0,111.67912,7.0,6.95,0.0,0.0, +2024-06-25 11:00:00,2.0880613,73.300674,12.25,1003.5419,67.93393,0.0,0.0,0.0,6.5,0.0,0.0, +2024-06-25 12:00:00,2.505993,61.389645,11.25,1003.70996,70.35183,0.0,0.0,0.0,6.05,0.0,0.0, +2024-06-25 13:00:00,3.001666,60.018444,10.9,1003.2038,68.12315,0.0,0.0,0.0,5.25,0.0,0.0, +2024-06-25 14:00:00,3.4999998,53.13002,10.95,1002.61053,65.803406,0.0,0.0,0.0,4.8,0.0,0.0, +2024-06-25 15:00:00,3.6400552,37.184795,11.45,1002.1298,61.688507,0.0,0.0,0.0,4.35,0.0,0.0, +2024-06-25 16:00:00,3.8910153,25.90646,11.25,1001.8261,62.94946,0.0,0.0,0.0,4.45,0.0,0.0, +2024-06-25 17:00:00,4.3324356,18.853252,11.3,1001.3319,63.18149,0.0,0.0,0.0,4.55,0.0,0.0, +2024-06-25 18:00:00,4.4553337,9.039405,11.5,1001.2388,63.007484,0.0,0.0,0.0,4.7,0.0,0.0, +2024-06-25 19:00:00,4.9365983,6.980963,11.8,1000.95044,65.533676,0.0,0.0,0.0,5.55,0.0,0.0, +2024-06-25 20:00:00,5.3,360.0,12.7,1000.48126,69.20196,0.0,0.0,0.0,7.2,0.0,0.0, +2024-06-25 21:00:00,5.4744864,9.462248,13.5,999.81067,70.0729,0.0,0.0,0.0,8.15,0.0,0.0, +2024-06-25 22:00:00,5.346027,352.47626,14.1,1000.52277,72.11016,0.0,0.0,0.0,9.15,0.0,0.2, +2024-06-25 23:00:00,5.5226803,354.80566,13.4,1000.6011,86.54169,0.0,0.0,0.0,11.2,0.0,1.2, +2024-06-26 00:00:00,4.652956,331.78275,14.0,1001.51117,88.91182,15.0,22.321476,13.0,12.2,0.0,1.2, +2024-06-26 01:00:00,4.6,360.0,14.8,1001.8322,88.1085,95.0,108.69185,70.0,12.85,0.0,0.2, +2024-06-26 02:00:00,4.002499,12.99463,15.75,1002.1574,89.34249,174.0,180.33467,103.0,14.0,0.0,0.2, +2024-06-26 03:00:00,3.3837848,325.84024,16.9,1001.99243,86.31973,339.0,438.44083,112.0,14.6,0.0,0.3, +2024-06-26 04:00:00,2.1260293,318.81415,16.8,1001.5929,87.43109,156.0,6.7379537,152.0,14.7,0.0,0.2, +2024-06-26 05:00:00,1.9313208,338.74942,17.0,1000.6069,88.86677,153.0,0.0,153.0,15.15,0.0,0.4, +2024-06-26 06:00:00,2.2022715,309.47244,16.95,1000.20886,86.883064,119.0,3.4244118,117.0,14.75,0.0,0.7, +2024-06-26 07:00:00,2.7856774,338.9624,16.6,1000.1988,90.858444,92.0,12.019786,86.0,15.1,0.0,0.8, +2024-06-26 08:00:00,2.418677,330.25522,16.55,1000.19727,92.03026,72.0,0.0,72.0,15.25,0.0,0.4, +2024-06-26 09:00:00,2.2472203,339.14545,16.25,999.89105,91.128,45.0,80.87258,29.0,14.8,0.0,0.4, +2024-06-26 10:00:00,2.4020824,357.6141,15.6,999.97144,90.79078,10.0,41.569305,7.0,14.1,0.0,0.0, +2024-06-26 11:00:00,3.0232434,325.78424,15.3,1000.1609,90.77035,0.0,0.0,0.0,13.8,0.0,0.3, +2024-06-26 12:00:00,3.4205263,322.12497,15.55,1000.36676,90.20067,0.0,0.0,0.0,13.95,0.0,0.3, +2024-06-26 13:00:00,4.0360875,311.98712,15.25,999.9614,89.59439,0.0,0.0,0.0,13.55,0.0,2.1, +2024-06-26 14:00:00,3.2802439,307.56866,15.95,999.98175,87.6375,0.0,0.0,0.0,13.9,0.0,0.1, +2024-06-26 15:00:00,4.5,323.13,15.45,999.967,87.87824,0.0,0.0,0.0,13.45,0.0,0.2, +2024-06-26 16:00:00,3.3241541,344.2913,14.95,999.4567,89.8639,0.0,0.0,0.0,13.3,0.0,0.0, +2024-06-26 17:00:00,3.176476,331.8215,14.7,998.95374,89.55221,0.0,0.0,0.0,13.0,0.0,0.1, +2024-06-26 18:00:00,3.6619666,304.9921,15.35,998.7743,85.32578,0.0,0.0,0.0,12.9,0.0,0.1, +2024-06-26 19:00:00,4.5,306.86996,15.5,998.5803,83.683655,0.0,0.0,0.0,12.75,0.0,0.1, +2024-06-26 20:00:00,4.750789,310.73203,15.7,998.1895,81.54319,0.0,0.0,0.0,12.55,0.0,0.1, +2024-06-26 21:00:00,5.2630787,321.17017,15.65,997.593,81.53671,0.0,0.0,0.0,12.5,0.0,0.0, +2024-06-26 22:00:00,5.8600345,295.2531,15.5,997.787,79.66235,0.0,0.0,0.0,12.0,0.0,0.0, +2024-06-26 23:00:00,6.1717095,296.98016,14.05,998.5379,89.79635,0.0,0.0,0.0,12.4,0.0,2.7, +2024-06-27 00:00:00,4.924429,330.8325,14.5,998.3528,89.53679,13.0,33.5322,10.0,12.8,0.0,0.1, +2024-06-27 01:00:00,4.850773,345.67725,16.25,998.1061,83.49804,144.0,356.81836,62.0,13.45,0.0,0.0, +2024-06-27 02:00:00,4.7885275,331.29416,18.05,997.8602,71.18093,327.0,647.7226,72.0,12.75,0.0,0.4, +2024-06-27 03:00:00,7.201389,295.4975,18.45,997.7726,61.648403,375.0,482.70392,125.0,10.95,0.0,0.3, +2024-06-27 04:00:00,8.825531,289.87225,18.25,996.9733,63.05079,492.0,604.34546,133.0,11.1,0.0,0.3, +2024-06-27 05:00:00,8.023092,292.72977,17.7,996.56104,69.49768,433.0,507.41885,120.0,12.05,0.0,0.1, +2024-06-27 06:00:00,7.694154,297.8972,18.1,995.68,72.12747,351.0,355.67154,143.0,13.0,0.0,0.4, +2024-06-27 07:00:00,6.795587,302.98853,17.25,995.65564,73.88768,291.0,291.94217,145.0,12.55,0.0,0.3, +2024-06-27 08:00:00,6.8,298.0724,17.1,995.8496,77.07335,201.0,306.65942,88.0,13.05,0.0,0.9, +2024-06-27 09:00:00,7.3824115,294.8293,17.25,995.9531,71.73556,75.0,160.85263,43.0,12.1,0.0,0.1, +2024-06-27 10:00:00,7.3817344,305.628,16.05,996.1171,79.21839,9.0,54.99102,5.0,12.45,0.0,0.1, +2024-06-27 11:00:00,7.071068,298.7397,17.0,996.24347,76.05614,0.0,0.0,0.0,12.75,0.0,0.0, +2024-06-27 12:00:00,7.4625735,302.4123,16.75,996.5338,73.80078,0.0,0.0,0.0,12.05,0.0,0.7, +2024-06-27 13:00:00,7.7878113,294.2613,17.5,996.55536,67.871765,0.0,0.0,0.0,11.5,0.0,0.0, +2024-06-27 14:00:00,7.632169,301.60745,16.15,996.6157,73.94004,0.0,0.0,0.0,11.5,0.0,0.0, +2024-06-27 15:00:00,7.0092793,312.10864,16.75,995.9388,71.87986,0.0,0.0,0.0,11.65,0.0,0.0, +2024-06-27 16:00:00,7.7155685,317.62646,16.35,995.43164,76.70383,0.0,0.0,0.0,12.25,0.0,0.9, +2024-06-27 17:00:00,8.940358,306.3573,16.45,994.9386,74.72737,0.0,0.0,0.0,11.95,0.0,0.4, +2024-06-27 18:00:00,7.7175126,301.21835,14.7,995.48303,84.97732,0.0,0.0,0.0,12.2,0.0,3.8, +2024-06-27 19:00:00,7.993122,313.47928,14.75,994.88934,87.52922,0.0,0.0,0.0,12.7,0.0,0.6, +2024-06-27 20:00:00,7.50733,318.23978,14.55,994.78455,88.08675,0.0,0.0,0.0,12.6,0.0,0.2, +2024-06-27 21:00:00,7.605919,320.8696,14.1,994.3749,90.98554,0.0,0.0,0.0,12.65,0.0,0.4, +2024-06-27 22:00:00,6.2769423,329.3494,14.45,994.484,89.82645,0.0,0.0,0.0,12.8,0.0,0.2, +2024-06-27 23:00:00,5.3263493,309.66782,15.3,994.5086,87.29387,0.0,0.0,0.0,13.2,0.0,3.8, +2024-06-28 00:00:00,3.8275316,289.85532,16.2,995.1298,81.87462,18.0,89.515854,10.0,13.1,0.0,0.3, +2024-06-28 01:00:00,5.731492,263.9911,16.8,995.8412,82.484726,55.0,60.953777,41.0,13.8,0.0,0.5, +2024-06-28 02:00:00,5.8940644,255.2564,18.0,996.3714,75.72311,244.0,340.32385,110.0,13.65,0.0,0.3, +2024-06-28 03:00:00,5.940539,233.90163,17.85,996.96204,77.94464,352.0,434.21558,127.0,13.95,0.0,0.4, +2024-06-28 04:00:00,6.300793,215.9606,18.0,996.86725,76.96267,466.0,543.31177,143.0,13.9,0.0,0.2, +2024-06-28 05:00:00,6.5863495,210.0685,18.65,997.0841,76.07415,474.0,523.0578,151.0,14.35,0.0,0.2, +2024-06-28 06:00:00,7.068239,205.1148,18.45,997.4751,76.78386,500.0,652.24725,118.0,14.3,0.0,0.1, +2024-06-28 07:00:00,7.1589108,192.09474,18.1,998.35767,75.73939,433.0,686.4802,89.0,13.75,0.0,0.2, +2024-06-28 08:00:00,6.987131,189.05782,17.8,999.34064,74.22467,298.0,622.293,68.0,13.15,0.0,0.0, +2024-06-28 09:00:00,6.0033326,181.9091,17.45,1000.4214,72.95996,144.0,494.7318,45.0,12.55,0.0,0.0, +2024-06-28 10:00:00,5.8549128,172.14677,17.15,1001.20624,70.08072,14.0,95.43888,7.0,11.65,0.0,0.0, +2024-06-28 11:00:00,5.565968,162.21602,16.7,1001.9867,70.69225,0.0,0.0,0.0,11.35,0.0,0.0, +2024-06-28 12:00:00,4.8754487,154.48618,16.15,1003.0615,73.45262,0.0,0.0,0.0,11.4,0.0,0.0, +2024-06-28 13:00:00,4.2720017,147.42595,15.6,1004.43384,73.59937,0.0,0.0,0.0,10.9,0.0,0.0, +2024-06-28 14:00:00,4.243819,145.56096,15.05,1004.9135,75.23638,0.0,0.0,0.0,10.7,0.0,0.0, +2024-06-28 15:00:00,4.360046,143.39284,14.45,1005.3917,77.16861,0.0,0.0,0.0,10.5,0.0,0.0, +2024-06-28 16:00:00,4.0459857,140.01317,13.7,1005.76624,79.40613,0.0,0.0,0.0,10.2,0.0,0.0, +2024-06-28 17:00:00,3.6069376,136.12321,13.05,1006.1436,81.19563,0.0,0.0,0.0,9.9,0.0,0.0, +2024-06-28 18:00:00,3.2202482,126.15828,12.45,1006.81976,83.324455,0.0,0.0,0.0,9.7,0.0,0.0, +2024-06-28 19:00:00,2.7784889,120.256355,11.8,1007.0979,85.23093,0.0,0.0,0.0,9.4,0.0,0.0, +2024-06-28 20:00:00,2.2847319,113.198616,11.15,1007.47485,86.90261,0.0,0.0,0.0,9.05,0.0,0.0, +2024-06-28 21:00:00,2.0124612,116.56499,10.6,1007.8547,88.03243,0.0,0.0,0.0,8.7,0.0,0.0, +2024-06-28 22:00:00,2.3600848,126.384445,10.45,1008.64343,87.721725,0.0,0.0,0.0,8.5,0.0,0.0, +2024-06-28 23:00:00,2.5942245,117.552734,10.15,1009.4274,88.29127,0.0,0.0,0.0,8.3,0.0,0.0, +2024-06-29 00:00:00,3.2649658,117.34979,10.7,1010.2375,86.85912,28.0,179.15306,12.0,8.6,0.0,0.0, +2024-06-29 01:00:00,3.7802117,127.47626,12.5,1011.6799,82.21985,184.0,596.6111,47.0,9.55,0.0,0.0, +2024-06-29 02:00:00,3.3600597,143.47105,14.15,1012.2248,78.680695,356.0,741.3404,64.0,10.5,0.0,0.0, +2024-06-29 03:00:00,3.6769552,157.61983,15.2,1012.6526,76.77512,494.0,808.06445,75.0,11.15,0.0,0.0, +2024-06-29 04:00:00,4.1629314,155.89777,16.1,1012.3816,73.93134,572.0,798.2334,97.0,11.45,0.0,0.0, +2024-06-29 05:00:00,4.304649,149.26459,16.95,1012.0099,69.81067,607.0,842.6484,86.0,11.4,0.0,0.0, +2024-06-29 06:00:00,3.9824615,151.50446,17.6,1011.7312,66.3383,574.0,843.8251,79.0,11.25,0.0,0.0, +2024-06-29 07:00:00,3.9217343,160.64091,17.85,1011.83765,64.44159,482.0,816.4108,72.0,11.05,0.0,0.0, +2024-06-29 08:00:00,3.905125,166.67546,17.55,1012.4241,64.80492,335.0,733.5678,63.0,10.85,0.0,0.0, +2024-06-29 09:00:00,3.3376637,171.38443,16.45,1013.0861,71.1144,157.0,561.22723,44.0,11.2,0.0,0.0, +2024-06-29 10:00:00,3.1780496,167.27565,14.9,1013.8337,75.21128,16.0,108.12996,8.0,10.55,0.0,0.0, +2024-06-29 11:00:00,2.863564,155.22488,14.2,1014.50714,76.10551,0.0,0.0,0.0,10.05,0.0,0.0, +2024-06-29 12:00:00,2.3430748,129.80553,13.2,1015.17126,79.334145,0.0,0.0,0.0,9.7,0.0,0.0, +2024-06-29 13:00:00,2.9154758,120.96369,12.65,1015.8488,77.66735,0.0,0.0,0.0,8.85,0.0,0.0, +2024-06-29 14:00:00,3.1622777,108.43504,12.2,1016.3312,78.92185,0.0,0.0,0.0,8.65,0.0,0.0, +2024-06-29 15:00:00,3.104835,104.93147,11.7,1016.6134,81.01496,0.0,0.0,0.0,8.55,0.0,0.0, +2024-06-29 16:00:00,2.8160257,106.50443,11.2,1016.5984,83.45602,0.0,0.0,0.0,8.5,0.0,0.0, +2024-06-29 17:00:00,2.657066,109.798965,10.85,1016.48834,85.12839,0.0,0.0,0.0,8.45,0.0,0.0, +2024-06-29 18:00:00,2.9120438,105.945465,10.75,1016.68384,85.11753,0.0,0.0,0.0,8.35,0.0,0.0, +2024-06-29 19:00:00,3.026549,97.59455,10.6,1016.2824,85.39042,0.0,0.0,0.0,8.25,0.0,0.0, +2024-06-29 20:00:00,3.1064448,93.691315,10.3,1016.2735,86.23287,0.0,0.0,0.0,8.1,0.0,0.0, +2024-06-29 21:00:00,3.1064448,93.691315,9.95,1016.46094,87.67609,0.0,0.0,0.0,8.0,0.0,0.0, +2024-06-29 22:00:00,3.6055512,93.17977,9.85,1016.65607,87.965546,0.0,0.0,0.0,7.95,0.0,0.0, +2024-06-29 23:00:00,3.7013512,91.54813,9.75,1017.34717,87.95659,0.0,0.0,0.0,7.85,0.0,0.0, +2024-06-30 00:00:00,4.101219,91.39715,10.35,1017.8612,85.94565,28.0,179.19757,12.0,8.1,0.0,0.0, +2024-06-30 01:00:00,4.4045434,92.60251,12.4,1018.6179,81.108955,184.0,592.1922,48.0,9.25,0.0,0.0, +2024-06-30 02:00:00,4.031129,97.12492,14.6,1018.882,76.17053,357.0,743.45984,64.0,10.45,0.0,0.0, +2024-06-30 03:00:00,4.14367,98.32557,16.45,1018.4411,70.64451,496.0,818.9472,71.0,11.1,0.0,0.0, +2024-06-30 04:00:00,3.905125,103.32455,17.75,1017.78503,65.06404,584.0,852.755,76.0,11.1,0.0,0.0, +2024-06-30 05:00:00,3.794733,108.43504,18.6,1016.8179,60.667805,611.0,862.47974,77.0,10.85,0.0,0.0, +2024-06-30 06:00:00,4.0521603,105.75124,18.95,1016.3322,58.76622,576.0,854.2531,74.0,10.7,0.0,0.0, +2024-06-30 07:00:00,4.244997,105.01841,19.05,1016.13666,57.24533,454.0,731.0726,86.0,10.4,0.0,0.0, +2024-06-30 08:00:00,4.110961,108.43504,18.6,1016.32196,57.902893,312.0,637.0051,75.0,10.15,0.0,0.0, +2024-06-30 09:00:00,3.733631,110.37652,17.2,1016.6781,64.51293,145.0,468.80325,50.0,10.45,0.0,0.0, +2024-06-30 10:00:00,3.6687872,107.44727,15.2,1017.01575,70.40417,16.0,107.16067,8.0,9.85,0.0,0.0, +2024-06-30 11:00:00,3.535534,98.13002,13.8,1017.47003,75.27843,0.0,0.0,0.0,9.5,0.0,0.0, +2024-06-30 12:00:00,2.915476,95.906044,12.7,1017.63525,78.99536,0.0,0.0,0.0,9.15,0.0,0.0, +2024-06-30 13:00:00,3.0413814,99.46225,12.1,1017.61707,81.61727,0.0,0.0,0.0,9.05,0.0,0.0, +2024-06-30 14:00:00,2.828427,98.13002,11.6,1017.60205,84.06887,0.0,0.0,0.0,9.0,0.0,0.0, +2024-06-30 15:00:00,2.9274564,97.853226,11.3,1017.4935,85.177086,0.0,0.0,0.0,8.9,0.0,0.0, +2024-06-30 16:00:00,3.1400635,99.16227,11.15,1017.29083,85.16088,0.0,0.0,0.0,8.75,0.0,0.0, +2024-06-30 17:00:00,3.4132097,95.04236,11.0,1016.5924,84.284546,0.0,0.0,0.0,8.45,0.0,0.0, +2024-06-30 18:00:00,3.6013885,91.59111,10.85,1016.3892,83.69772,0.0,0.0,0.0,8.2,0.0,0.0, +2024-06-30 19:00:00,3.6055512,86.82024,10.85,1015.89343,82.56853,0.0,0.0,0.0,8.0,0.0,0.0, +2024-06-30 20:00:00,4.1593266,80.31129,10.95,1015.5993,81.74352,0.0,0.0,0.0,7.95,0.0,0.0, +2024-06-30 21:00:00,4.9040794,73.41259,11.05,1015.10626,82.03473,0.0,0.0,0.0,8.1,0.0,0.0, +2024-06-30 22:00:00,5.60803,68.00882,11.2,1015.1111,82.33274,0.0,0.0,0.0,8.3,0.0,0.0, +2024-06-30 23:00:00,5.99333,64.2901,11.2,1015.4085,83.173935,0.0,0.0,0.0,8.45,0.0,0.0, +2024-07-01 00:00:00,6.177378,60.94549,11.75,1015.8217,81.29616,29.0,190.35976,12.0,8.65,0.0,0.0, +2024-07-01 01:00:00,5.8523498,56.852993,13.7,1016.1779,77.05076,186.0,604.98236,47.0,9.75,0.0,0.0, +2024-07-01 02:00:00,5.661272,54.344578,15.75,1016.338,71.69449,361.0,755.55884,63.0,10.65,0.0,0.0, +2024-07-01 03:00:00,5.456189,48.715385,17.45,1015.7927,67.414024,500.0,825.8201,71.0,11.35,0.0,0.0, +2024-07-01 04:00:00,4.8795495,44.169785,18.85,1015.0401,64.44814,587.0,858.4006,75.0,12.0,0.0,0.0, +2024-07-01 05:00:00,4.4407206,35.837746,19.8,1013.8774,61.755974,613.0,866.00464,76.0,12.25,0.0,0.0, +2024-07-01 06:00:00,3.9357338,27.216026,20.45,1012.90405,57.97149,576.0,850.93317,75.0,11.9,0.0,0.0, +2024-07-01 07:00:00,3.2572994,17.87879,20.75,1012.61505,52.737473,479.0,810.51056,70.0,10.75,0.0,0.0, +2024-07-01 08:00:00,2.3194828,7.4313188,20.35,1013.00037,56.249454,317.0,661.51544,70.0,11.35,0.0,0.0, +2024-07-01 09:00:00,1.8384776,22.380184,18.25,1013.0392,75.02951,143.0,455.87872,50.0,13.75,0.0,0.0, +2024-07-01 10:00:00,2.0124612,63.435013,15.55,1013.3573,75.07063,15.0,79.62571,9.0,11.15,0.0,0.0, +2024-07-01 11:00:00,2.624881,72.25524,15.55,1013.9523,71.65721,0.0,0.0,0.0,10.45,0.0,0.0, +2024-07-01 12:00:00,3.5846896,67.01126,15.9,1014.25995,68.91137,0.0,0.0,0.0,10.2,0.0,0.0, +2024-07-01 13:00:00,2.6925824,58.671368,14.05,1015.1967,77.88245,0.0,0.0,0.0,10.25,0.0,0.0, +2024-07-01 14:00:00,2.863564,65.22488,14.7,1015.31537,75.680756,0.0,0.0,0.0,10.45,0.0,0.0, +2024-07-01 15:00:00,3.49285,66.37061,14.2,1015.3996,77.90532,0.0,0.0,0.0,10.4,0.0,0.0, +2024-07-01 16:00:00,4.0706263,62.17599,14.15,1015.2988,77.121574,0.0,0.0,0.0,10.2,0.0,0.0, +2024-07-01 17:00:00,4.1629314,65.897766,13.75,1014.8904,77.05864,0.0,0.0,0.0,9.8,0.0,0.0, +2024-07-01 18:00:00,4.365776,69.904686,13.1,1015.0693,78.26131,0.0,0.0,0.0,9.4,0.0,0.0, +2024-07-01 19:00:00,4.1785164,68.96242,12.8,1015.0604,77.95287,0.0,0.0,0.0,9.05,0.0,0.0, +2024-07-01 20:00:00,4.3081317,68.19853,12.65,1015.2539,77.40556,0.0,0.0,0.0,8.8,0.0,0.0, +2024-07-01 21:00:00,4.606517,62.878777,12.4,1015.34576,76.844444,0.0,0.0,0.0,8.45,0.0,0.0, +2024-07-01 22:00:00,4.614109,60.1012,12.25,1015.4404,75.271706,0.0,0.0,0.0,8.0,0.0,0.0, +2024-07-01 23:00:00,3.8910153,64.09355,12.05,1016.0292,74.2196,0.0,0.0,0.0,7.6,0.0,0.0, +2024-07-02 00:00:00,4.2190046,58.570484,12.45,1016.43774,73.535446,28.0,179.04607,12.0,7.85,0.0,0.0, +2024-07-02 01:00:00,3.9824615,61.504463,15.6,1017.226,69.08198,150.0,382.70447,62.0,9.95,0.0,0.0, +2024-07-02 02:00:00,2.641969,60.524208,18.25,1017.8986,66.4754,343.0,683.88574,73.0,11.9,0.0,0.0, +2024-07-02 03:00:00,2.376973,67.75093,20.05,1017.7522,49.808254,489.0,790.237,78.0,9.25,0.0,0.0, +2024-07-02 04:00:00,1.9697715,113.962494,20.6,1017.3712,46.391605,575.0,817.0239,87.0,8.7,0.0,0.0, +2024-07-02 05:00:00,2.5553863,149.42085,20.9,1016.68555,46.788876,606.0,848.4666,79.0,9.1,0.0,0.0, +2024-07-02 06:00:00,3.757659,154.7989,21.05,1016.1937,48.42959,570.0,827.1681,82.0,9.75,0.0,0.0, +2024-07-02 07:00:00,4.707441,167.73524,20.15,1016.2674,56.01339,446.0,675.96405,104.0,11.1,0.0,0.0, +2024-07-02 08:00:00,5.4744864,170.53775,18.8,1016.72437,68.80764,276.0,456.26474,105.0,12.95,0.0,0.0, +2024-07-02 09:00:00,4.9040794,163.41258,17.7,1017.585,72.76593,154.0,525.7643,46.0,12.75,0.0,0.0, +2024-07-02 10:00:00,4.8764744,151.85849,16.55,1018.2457,72.798836,17.0,105.15609,9.0,11.65,0.0,0.0, +2024-07-02 11:00:00,5.140039,142.90709,15.85,1019.01825,73.88781,0.0,0.0,0.0,11.2,0.0,0.0, +2024-07-02 12:00:00,5.0447993,129.3693,15.1,1019.59106,75.49533,0.0,0.0,0.0,10.8,0.0,0.0, +2024-07-02 13:00:00,4.909175,123.36639,14.25,1020.2601,79.22098,0.0,0.0,0.0,10.7,0.0,0.0, +2024-07-02 14:00:00,5.1,118.072395,13.75,1020.3441,79.67882,0.0,0.0,0.0,10.3,0.0,0.0, +2024-07-02 15:00:00,5.3225937,115.60214,13.5,1020.6339,78.05953,0.0,0.0,0.0,9.75,0.0,0.0, +2024-07-02 16:00:00,5.3310413,113.198616,13.25,1020.92395,77.49903,0.0,0.0,0.0,9.4,0.0,0.0, +2024-07-02 17:00:00,5.2201533,106.699326,12.8,1020.81146,78.47987,0.0,0.0,0.0,9.15,0.0,0.0, +2024-07-02 18:00:00,5.2392745,103.24053,12.35,1020.79767,77.8839,0.0,0.0,0.0,8.6,0.0,0.0, +2024-07-02 19:00:00,5.346027,97.52373,11.9,1021.0814,77.02577,0.0,0.0,0.0,8.0,0.0,0.0, +2024-07-02 20:00:00,5.400926,91.06089,11.5,1021.36664,76.96207,0.0,0.0,0.0,7.6,0.0,0.0, +2024-07-02 21:00:00,5.7008767,88.99494,11.15,1021.5544,76.381836,0.0,0.0,0.0,7.15,0.0,0.0, +2024-07-02 22:00:00,6.1008196,89.06083,10.9,1021.84406,75.30035,0.0,0.0,0.0,6.7,0.0,0.0, +2024-07-02 23:00:00,6.400781,89.10485,10.6,1022.1322,74.21955,0.0,0.0,0.0,6.2,0.0,0.0, +2024-07-03 00:00:00,6.8,90.0,10.85,1022.834,72.74422,29.0,190.02657,12.0,6.15,0.0,0.0, +2024-07-03 01:00:00,6.200806,90.92403,12.25,1023.2736,71.03218,188.0,608.14166,48.0,7.15,0.0,0.0, +2024-07-03 02:00:00,6.0133185,93.814,13.9,1023.4225,65.99173,365.0,761.4799,64.0,7.65,0.0,0.0, +2024-07-03 03:00:00,5.6142673,94.08554,15.6,1023.07666,62.44617,507.0,835.253,72.0,8.45,0.0,0.0, +2024-07-03 04:00:00,5.707889,93.012726,17.05,1022.3263,58.6974,596.0,869.2601,76.0,8.9,0.0,0.0, +2024-07-03 05:00:00,6.307139,87.27374,17.95,1021.4601,53.97732,623.0,877.4791,77.0,8.5,0.0,0.0, +2024-07-03 06:00:00,6.0033326,88.09089,18.35,1020.8765,51.754208,586.0,864.2807,75.0,8.25,0.0,0.0, +2024-07-03 07:00:00,5.813777,93.945114,18.35,1020.8765,51.578934,490.0,825.8766,71.0,8.2,0.0,0.0, +2024-07-03 08:00:00,5.6885853,100.12462,17.85,1021.1596,53.95133,342.0,744.20233,62.0,8.4,0.0,0.0, +2024-07-03 09:00:00,4.8270073,103.17256,16.75,1021.524,58.03179,164.0,575.2111,45.0,8.45,0.0,0.0, +2024-07-03 10:00:00,4.237924,109.290146,15.3,1021.9768,59.88129,18.0,117.14828,9.0,7.55,0.0,0.0, +2024-07-03 11:00:00,4.2720017,110.55613,14.4,1022.7435,61.533356,0.0,0.0,0.0,7.1,0.0,0.0, +2024-07-03 12:00:00,4.554119,109.23077,13.8,1023.2213,62.028065,0.0,0.0,0.0,6.65,0.0,0.0, +2024-07-03 13:00:00,4.4598203,109.653915,13.45,1022.91327,60.0515,0.0,0.0,0.0,5.85,0.0,0.0, +2024-07-03 14:00:00,4.3965893,107.19863,13.0,1023.197,61.840267,0.0,0.0,0.0,5.85,0.0,0.0, +2024-07-03 15:00:00,4.5122056,102.80426,12.75,1023.48706,63.734447,0.0,0.0,0.0,6.05,0.0,0.0, +2024-07-03 16:00:00,4.909175,93.50346,12.5,1023.1819,64.78723,0.0,0.0,0.0,6.05,0.0,0.0, +2024-07-03 17:00:00,5.7035074,87.99049,12.4,1022.6832,64.096756,0.0,0.0,0.0,5.8,0.0,0.0, +2024-07-03 18:00:00,6.3505907,82.763176,12.2,1022.3795,63.60904,0.0,0.0,0.0,5.5,0.0,0.0, +2024-07-03 19:00:00,6.8249536,79.019394,12.0,1022.0761,63.123154,0.0,0.0,0.0,5.2,0.0,0.0, +2024-07-03 20:00:00,6.7911706,76.37299,11.7,1022.16595,63.05381,0.0,0.0,0.0,4.9,0.0,0.0, +2024-07-03 21:00:00,6.865857,77.38069,11.35,1022.15533,62.753006,0.0,0.0,0.0,4.5,0.0,0.0, +2024-07-03 22:00:00,7.138627,78.6901,11.1,1022.2468,61.60524,0.0,0.0,0.0,4.0,0.0,0.0, +2024-07-03 23:00:00,7.3979726,76.715126,10.8,1022.3367,61.31754,0.0,0.0,0.0,3.65,0.0,0.0, +2024-07-04 00:00:00,8.104321,74.248764,10.9,1022.4389,61.77428,30.0,200.88495,12.0,3.85,0.0,0.0, +2024-07-04 01:00:00,8.228001,73.76758,12.1,1022.2773,62.927273,192.0,628.90186,47.0,5.25,0.0,0.0, +2024-07-04 02:00:00,8.5440035,73.68607,13.7,1022.2266,59.698475,371.0,778.06854,63.0,6.0,0.0,0.0, +2024-07-04 03:00:00,8.228001,73.76758,15.3,1021.7785,56.10996,513.0,847.40375,71.0,6.6,0.0,0.0, +2024-07-04 04:00:00,7.5286117,73.009094,16.6,1021.0239,52.174633,601.0,877.80994,75.0,6.75,0.0,0.0, +2024-07-04 05:00:00,6.5253353,74.89885,17.5,1020.05853,49.62369,627.0,885.4134,75.0,6.85,0.0,0.0, +2024-07-04 06:00:00,6.041523,77.57407,18.0,1019.3791,48.085308,590.0,870.7401,74.0,6.85,0.0,0.0, +2024-07-04 07:00:00,5.6435804,82.875084,18.05,1018.9837,47.770287,492.0,829.39655,70.0,6.8,0.0,0.0, +2024-07-04 08:00:00,5.3,90.0,17.55,1018.96924,50.667747,344.0,749.1541,61.0,7.2,0.0,0.0, +2024-07-04 09:00:00,5.0635953,99.090195,16.3,1018.9325,55.221783,165.0,580.6331,44.0,7.3,0.0,0.0, +2024-07-04 10:00:00,4.5122056,102.80426,14.85,1019.0879,59.977367,18.0,128.86702,8.0,7.15,0.0,0.0, +2024-07-04 11:00:00,4.3416586,104.67644,13.95,1019.4577,62.704914,0.0,0.0,0.0,6.95,0.0,0.0, +2024-07-04 12:00:00,4.7801676,105.78082,13.4,1019.63947,62.362522,0.0,0.0,0.0,6.35,0.0,0.0, +2024-07-04 13:00:00,6.0016665,100.56097,12.7,1019.32086,66.18472,0.0,0.0,0.0,6.55,0.0,0.0, +2024-07-04 14:00:00,5.4,90.0,12.05,1019.2022,66.50166,0.0,0.0,0.0,6.0,0.0,0.0, +2024-07-04 15:00:00,5.0249376,84.2895,12.15,1018.7093,63.37735,0.0,0.0,0.0,5.4,0.0,0.0, +2024-07-04 16:00:00,4.20119,88.6361,11.7,1018.3981,65.284775,0.0,0.0,0.0,5.4,0.0,0.0, +2024-07-04 17:00:00,4.0112343,85.71093,11.15,1017.98486,68.17517,0.0,0.0,0.0,5.5,0.0,0.0, +2024-07-04 18:00:00,4.0447497,81.46932,11.0,1017.3855,68.61854,0.0,0.0,0.0,5.45,0.0,0.0, +2024-07-04 19:00:00,4.031129,82.875084,10.7,1017.178,71.47056,0.0,0.0,0.0,5.75,0.0,0.0, +2024-07-04 20:00:00,3.8209946,83.99109,10.3,1017.16583,74.93918,0.0,0.0,0.0,6.05,0.0,0.0, +2024-07-04 21:00:00,4.1303754,83.047134,9.9,1016.6576,77.50303,0.0,0.0,0.0,6.15,0.0,0.0, +2024-07-04 22:00:00,4.491102,78.4399,9.7,1016.5525,79.09217,0.0,0.0,0.0,6.25,0.0,0.0, +2024-07-04 23:00:00,5.141984,76.50425,9.65,1016.84827,79.084785,0.0,0.0,0.0,6.2,0.0,0.0, +2024-07-05 00:00:00,5.661272,72.52514,10.1,1016.862,77.80187,29.0,189.33325,12.0,6.4,0.0,0.0, +2024-07-05 01:00:00,5.661272,72.52514,11.95,1016.81934,72.945656,189.0,614.72406,47.0,7.25,0.0,0.0, +2024-07-05 02:00:00,6.1351447,70.974304,13.75,1016.57605,67.55141,367.0,766.6894,63.0,7.85,0.0,0.0, +2024-07-05 03:00:00,6.307139,64.65388,15.3,1016.12616,63.44356,509.0,838.31476,71.0,8.4,0.0,0.0, +2024-07-05 04:00:00,6.6850576,55.358997,16.5,1015.07074,56.99379,597.0,869.54376,75.0,7.95,0.0,0.0, +2024-07-05 05:00:00,6.453681,49.3988,17.45,1014.0076,49.101704,607.0,813.1634,99.0,6.65,0.0,0.0, +2024-07-05 06:00:00,5.869412,44.309803,17.75,1013.0248,45.75454,559.0,760.9039,107.0,5.9,0.0,0.0, +2024-07-05 07:00:00,5.60803,50.063675,17.9,1012.43427,43.17783,462.0,715.2187,97.0,5.2,0.0,0.0, +2024-07-05 08:00:00,5.1312766,56.929314,17.6,1012.1278,45.083538,343.0,738.141,63.0,5.55,0.0,0.0, +2024-07-05 09:00:00,3.847077,62.10283,16.4,1012.1921,48.644276,167.0,581.0929,45.0,5.55,0.0,0.0, +2024-07-05 10:00:00,3.0083218,68.5522,14.25,1012.1289,52.086582,19.0,127.564,9.0,4.55,0.0,0.0, +2024-07-05 11:00:00,3.1622777,71.564964,13.1,1012.2929,55.738186,0.0,0.0,0.0,4.45,0.0,0.0, +2024-07-05 12:00:00,3.544009,73.61038,12.35,1012.1712,58.54393,0.0,0.0,0.0,4.45,0.0,0.0, +2024-07-05 13:00:00,3.9849718,72.47434,11.65,1011.95184,62.168713,0.0,0.0,0.0,4.65,0.0,0.0, +2024-07-05 14:00:00,4.438468,67.47939,11.65,1011.7536,62.168713,0.0,0.0,0.0,4.65,0.0,0.0, +2024-07-05 15:00:00,4.606517,62.878777,11.7,1011.4574,60.465836,0.0,0.0,0.0,4.3,0.0,0.0, +2024-07-05 16:00:00,4.9648767,62.402794,11.45,1010.7561,60.1936,0.0,0.0,0.0,4.0,0.0,0.0, +2024-07-05 17:00:00,5.8309517,59.03632,11.25,1010.05566,60.56897,0.0,0.0,0.0,3.9,0.0,0.0, +2024-07-05 18:00:00,6.6030297,54.865723,11.35,1009.46387,58.70587,0.0,0.0,0.0,3.55,0.0,0.0, +2024-07-05 19:00:00,7.247068,50.59937,11.15,1008.863,57.833286,0.0,0.0,0.0,3.15,0.0,0.0, +2024-07-05 20:00:00,7.7833157,47.082573,11.05,1008.2649,56.995266,0.0,0.0,0.0,2.85,0.0,0.0, +2024-07-05 21:00:00,7.8517513,43.451904,10.9,1007.6655,56.956787,0.0,0.0,0.0,2.7,0.0,0.0, +2024-07-05 22:00:00,7.7336926,40.279785,10.75,1007.85944,57.120693,0.0,0.0,0.0,2.6,0.0,0.0, +2024-07-05 23:00:00,7.8600254,36.724194,10.65,1008.3521,56.690674,0.0,0.0,0.0,2.4,0.0,0.0, +2024-07-06 00:00:00,8.080223,36.44454,10.85,1008.6555,57.14631,29.0,188.84839,12.0,2.7,0.0,0.0, +2024-07-06 01:00:00,8.140025,37.01076,12.6,1007.9151,54.832428,181.0,539.9006,56.0,3.75,0.0,0.0, +2024-07-06 02:00:00,7.940403,36.292717,14.1,1007.3648,52.594906,342.0,639.38043,88.0,4.55,0.0,0.0, +2024-07-06 03:00:00,7.9924965,31.701384,15.25,1007.10114,50.21709,322.0,210.14401,212.0,4.95,0.0,0.0, +2024-07-06 04:00:00,7.915807,26.24129,16.4,1005.9446,47.311943,296.0,106.400894,232.0,5.15,0.0,0.0, +2024-07-06 05:00:00,8.469357,22.93213,17.4,1004.08936,44.715393,296.0,83.0558,244.0,5.25,0.0,0.0, +2024-07-06 06:00:00,8.507056,17.79609,19.1,1002.8487,40.612297,545.0,722.04126,115.0,5.4,0.0,0.0, +2024-07-06 07:00:00,7.495332,13.109214,18.9,1003.0414,42.131844,216.0,46.881863,192.0,5.75,0.0,0.0, +2024-07-06 08:00:00,6.987131,9.057818,18.6,1002.9336,42.9293,52.0,2.624985,51.0,5.75,0.0,0.0, +2024-07-06 09:00:00,7.200694,359.20428,17.2,1003.38947,54.518936,83.0,70.90686,68.0,7.95,0.0,0.6, +2024-07-06 10:00:00,7.531268,10.713074,16.45,1003.16943,57.95757,3.0,0.0,3.0,8.15,0.0,0.7, +2024-07-06 11:00:00,8.845902,10.42066,16.05,1003.257,63.399063,0.0,0.0,0.0,9.1,0.0,0.1, +2024-07-06 12:00:00,8.188407,8.426887,14.9,1003.2233,78.53052,0.0,0.0,0.0,11.2,0.0,1.2, +2024-07-06 13:00:00,7.6844,18.19926,13.8,1004.0836,81.83762,0.0,0.0,0.0,10.75,0.0,0.6, +2024-07-06 14:00:00,9.604687,14.470333,13.95,1003.59216,78.38903,0.0,0.0,0.0,10.25,0.0,0.5, +2024-07-06 15:00:00,9.217917,15.091635,13.9,1003.3924,81.85047,0.0,0.0,0.0,10.85,0.0,1.4, +2024-07-06 16:00:00,9.677293,13.74908,14.2,1002.90546,83.80858,0.0,0.0,0.0,11.5,0.0,1.0, +2024-07-06 17:00:00,8.620905,3.9908433,14.8,1003.51794,84.15417,0.0,0.0,0.0,12.15,0.0,1.0, +2024-07-06 18:00:00,8.30542,2.0699892,15.2,1003.4305,85.30998,0.0,0.0,0.0,12.75,0.0,0.5, +2024-07-06 19:00:00,9.000556,0.63657844,15.5,1003.1418,83.957985,0.0,0.0,0.0,12.8,0.0,0.3, +2024-07-06 20:00:00,6.7029843,1.7097787,15.25,1003.33295,84.758514,0.0,0.0,0.0,12.7,0.0,0.2, +2024-07-06 21:00:00,5.0447993,346.2392,14.75,1003.61554,88.10415,0.0,0.0,0.0,12.8,0.0,1.1, +2024-07-06 22:00:00,5.656854,351.87,14.95,1004.3157,86.692314,0.0,0.0,0.0,12.75,0.0,0.1, +2024-07-06 23:00:00,5.0249376,354.2895,14.55,1004.7007,88.08675,0.0,0.0,0.0,12.6,0.0,0.4, +2024-07-07 00:00:00,4.652956,351.34753,14.7,1005.1017,89.845215,10.0,0.0,10.0,13.05,0.0,0.3, +2024-07-07 01:00:00,2.5079873,4.5738406,16.55,1005.8498,92.03026,152.0,366.15768,67.0,15.25,0.0,0.0, +2024-07-07 02:00:00,2.4596748,333.43503,18.15,1006.59015,86.44161,312.0,595.3252,75.0,15.85,0.0,0.0, +2024-07-07 03:00:00,4.5891175,258.6901,19.35,1006.82294,73.770676,431.0,646.3106,92.0,14.55,0.0,0.1, +2024-07-07 04:00:00,5.4708314,251.89613,19.1,1006.6173,74.928215,526.0,700.10254,104.0,14.55,0.0,0.2, +2024-07-07 05:00:00,5.2201533,249.82925,19.05,1006.51685,73.480644,486.0,576.8658,124.0,14.2,0.0,0.2, +2024-07-07 06:00:00,4.3462625,246.97447,18.7,1006.40753,75.10425,448.0,494.04837,153.0,14.2,0.0,0.1, +2024-07-07 07:00:00,3.8275318,236.7251,17.85,1006.77997,78.197784,314.0,387.47906,115.0,14.0,0.0,0.7, +2024-07-07 08:00:00,3.1827662,226.27295,18.0,1007.18097,76.21682,229.0,256.12527,131.0,13.75,0.0,0.1, +2024-07-07 09:00:00,2.0124612,206.56499,17.6,1007.56604,78.160614,148.0,459.71417,50.0,13.75,0.0,0.0, +2024-07-07 10:00:00,2.1023796,182.72626,15.4,1007.5022,87.018936,17.0,87.46654,10.0,13.25,0.0,0.0, +2024-07-07 11:00:00,2.34094,160.0168,14.7,1007.9774,87.81183,0.0,0.0,0.0,12.7,0.0,0.0, +2024-07-07 12:00:00,2.1260293,131.18582,13.85,1008.44794,86.01554,0.0,0.0,0.0,11.55,0.0,0.0, +2024-07-07 13:00:00,1.5811388,71.564964,13.55,1009.13324,90.05474,0.0,0.0,0.0,11.95,0.0,0.0, +2024-07-07 14:00:00,1.8867962,57.99466,12.85,1009.31055,92.41582,0.0,0.0,0.0,11.65,0.0,0.0, +2024-07-07 15:00:00,1.8867962,57.99466,12.55,1009.1034,92.7049,0.0,0.0,0.0,11.4,0.0,0.0, +2024-07-07 16:00:00,2.1095023,58.570484,12.55,1009.0042,91.78883,0.0,0.0,0.0,11.25,0.0,0.0, +2024-07-07 17:00:00,2.385372,56.976128,12.75,1008.9112,91.80116,0.0,0.0,0.0,11.45,0.0,0.0, +2024-07-07 18:00:00,2.5942245,62.447273,13.45,1009.0312,91.24171,0.0,0.0,0.0,12.05,0.0,0.0, +2024-07-07 19:00:00,2.640076,65.37646,13.65,1008.938,91.85629,0.0,0.0,0.0,12.35,0.0,0.0, +2024-07-07 20:00:00,2.9154758,67.83361,13.4,1008.73206,92.7515,0.0,0.0,0.0,12.25,0.0,0.0, +2024-07-07 21:00:00,3.224903,60.255207,12.45,1008.5053,94.24523,0.0,0.0,0.0,11.55,0.0,0.0, +2024-07-07 22:00:00,3.847077,62.10283,11.75,1008.58356,96.428345,0.0,0.0,0.0,11.2,0.0,0.0, +2024-07-07 23:00:00,4.9648767,55.66973,11.15,1008.9621,97.05559,0.0,0.0,0.0,10.7,0.0,0.0, +2024-07-08 00:00:00,5.315073,48.814175,11.9,1009.4804,98.364235,16.0,11.03517,15.0,11.65,0.0,0.0, +2024-07-08 01:00:00,5.6035705,55.175446,13.45,1009.62616,93.05937,97.0,51.535454,85.0,12.35,0.0,0.0, +2024-07-08 02:00:00,5.879626,48.44749,16.05,1009.70276,83.20288,294.0,343.32654,157.0,13.2,0.0,0.0, +2024-07-08 03:00:00,5.9548297,40.9143,17.85,1009.16,76.689766,492.0,764.7355,90.0,13.7,0.0,0.0, +2024-07-08 04:00:00,5.4644303,34.56259,19.25,1008.1093,69.346954,582.0,814.4008,90.0,13.5,0.0,0.0, +2024-07-08 05:00:00,4.3863425,24.227736,20.45,1006.85425,62.924328,611.0,833.00085,87.0,13.15,0.0,0.0, +2024-07-08 06:00:00,4.7095647,356.34784,21.25,1006.1823,56.846085,584.0,850.10516,75.0,12.35,0.0,0.0, +2024-07-08 07:00:00,5.0289164,342.64587,21.15,1006.0803,56.63489,385.0,533.6866,110.0,12.2,0.0,0.0, +2024-07-08 08:00:00,3.828838,319.23648,20.7,1005.77014,61.760185,279.0,463.13202,101.0,13.1,0.0,0.0, +2024-07-08 09:00:00,1.8973665,288.43503,19.25,1005.8283,74.471214,134.0,349.0992,59.0,14.6,0.0,0.0, +2024-07-08 10:00:00,2.0124612,296.56497,17.1,1005.8656,85.5084,18.0,111.287834,9.0,14.65,0.0,0.0, +2024-07-08 11:00:00,2.2022717,357.3975,16.8,1006.0554,86.86892,0.0,0.0,0.0,14.6,0.0,0.0, +2024-07-08 12:00:00,3.3615472,22.751022,16.55,1006.04816,81.12235,0.0,0.0,0.0,13.3,0.0,0.0, +2024-07-08 13:00:00,3.6249137,24.443953,15.65,1005.92285,86.759544,0.0,0.0,0.0,13.45,0.0,0.0, +2024-07-08 14:00:00,3.4481878,16.858482,15.7,1005.62683,81.54319,0.0,0.0,0.0,12.55,0.0,0.0, +2024-07-08 15:00:00,4.3965893,17.198626,15.8,1005.3322,76.112366,0.0,0.0,0.0,11.6,0.0,0.0, +2024-07-08 16:00:00,5.3600373,14.036275,16.25,1005.24603,75.68496,0.0,0.0,0.0,11.95,0.0,0.0, +2024-07-08 17:00:00,5.2086463,356.6982,16.6,1005.05804,72.807816,0.0,0.0,0.0,11.7,0.0,0.0, +2024-07-08 18:00:00,5.0990195,348.6901,16.5,1004.9558,74.000786,0.0,0.0,0.0,11.85,0.0,0.0, +2024-07-08 19:00:00,5.5785303,345.4655,16.4,1004.85376,80.050026,0.0,0.0,0.0,12.95,0.0,0.0, +2024-07-08 20:00:00,5.99333,334.2901,16.5,1004.65826,87.68667,0.0,0.0,0.0,14.45,0.0,0.1, +2024-07-08 21:00:00,4.9517674,313.36346,17.25,1004.97754,85.79983,0.0,0.0,0.0,14.85,0.0,0.4, +2024-07-08 22:00:00,5.315073,311.18582,18.0,1005.29675,75.72311,0.0,0.0,0.0,13.65,0.0,0.0, +2024-07-08 23:00:00,5.360038,323.34378,17.75,1005.7854,77.174126,0.0,0.0,0.0,13.7,0.0,0.0, +2024-07-09 00:00:00,6.3126855,310.50278,18.05,1006.48816,80.53566,24.0,98.910675,15.0,14.65,0.0,0.0, +2024-07-09 01:00:00,6.670832,319.86456,19.4,1006.8242,77.179115,153.0,406.5861,58.0,15.3,0.0,0.0, +2024-07-09 02:00:00,7.746612,309.23734,20.15,1007.2423,77.04762,273.0,427.42816,102.0,16.0,0.0,0.0, +2024-07-09 03:00:00,8.521151,305.9286,20.85,1007.36145,74.73945,365.0,461.17056,122.0,16.2,0.0,0.2, +2024-07-09 04:00:00,7.9924965,301.7014,20.95,1007.0668,75.47326,476.0,577.9701,126.0,16.45,0.0,0.2, +2024-07-09 05:00:00,7.657676,310.76352,21.65,1006.2929,72.99591,544.0,681.83636,114.0,16.6,0.0,0.1, +2024-07-09 06:00:00,7.657676,310.76352,21.85,1005.9018,72.10939,547.0,746.0985,99.0,16.6,0.0,0.0, +2024-07-09 07:00:00,8.130191,301.93063,21.1,1005.9799,76.22021,451.0,715.6063,81.0,16.75,0.0,0.7, +2024-07-09 08:00:00,6.0,306.86996,20.25,1006.4518,83.955795,210.0,271.95462,105.0,17.45,0.0,0.3, +2024-07-09 09:00:00,5.700877,322.12494,19.6,1006.73096,85.49265,77.0,120.07644,51.0,17.1,0.0,0.0, +2024-07-09 10:00:00,4.9648767,332.4028,19.1,1006.5181,87.63734,6.0,0.0,6.0,17.0,0.0,0.2, +2024-07-09 11:00:00,4.661545,324.6051,19.0,1006.8128,91.59381,0.0,0.0,0.0,17.6,0.0,0.6, +2024-07-09 12:00:00,3.8910153,334.09354,18.85,1006.9079,92.74731,0.0,0.0,0.0,17.65,0.0,0.6, +2024-07-09 13:00:00,4.060788,322.00122,18.9,1006.71075,93.92526,0.0,0.0,0.0,17.9,0.0,2.5, +2024-07-09 14:00:00,4.494441,302.27563,19.0,1006.8128,95.416176,0.0,0.0,0.0,18.25,0.0,3.5, +2024-07-09 15:00:00,4.0521603,285.75125,19.0,1006.8128,95.416176,0.0,0.0,0.0,18.25,0.0,2.9, +2024-07-09 16:00:00,3.748333,279.21094,19.0,1006.51526,94.52187,0.0,0.0,0.0,18.1,0.0,4.5, +2024-07-09 17:00:00,4.5122056,282.80426,18.9,1006.4132,96.01353,0.0,0.0,0.0,18.25,0.0,2.0, +2024-07-09 18:00:00,4.527693,263.6599,18.9,1006.4132,95.71273,0.0,0.0,0.0,18.2,0.0,0.6, +2024-07-09 19:00:00,3.8013155,243.43501,18.75,1006.50836,92.15858,0.0,0.0,0.0,17.45,0.0,0.1, +2024-07-09 20:00:00,3.4176016,249.44386,18.95,1006.6131,88.18128,0.0,0.0,0.0,16.95,0.0,0.1, +2024-07-09 21:00:00,3.7643058,253.0091,18.85,1006.70953,87.06059,0.0,0.0,0.0,16.65,0.0,0.0, +2024-07-09 22:00:00,4.6238513,248.42863,17.7,1007.1722,89.77932,0.0,0.0,0.0,16.0,0.0,0.1, +2024-07-09 23:00:00,4.7296934,256.55136,17.5,1007.9599,90.33992,0.0,0.0,0.0,15.9,0.0,0.0, +2024-07-10 00:00:00,4.606517,242.87877,17.3,1009.045,88.6065,18.0,65.63657,12.0,15.4,0.0,0.3, +2024-07-10 01:00:00,6.551336,238.73633,17.8,1010.3485,87.52136,111.0,204.64493,63.0,15.7,0.0,0.3, +2024-07-10 02:00:00,4.7853947,243.97047,18.7,1011.06866,82.45186,136.0,84.7471,102.0,15.65,0.0,0.1, +2024-07-10 03:00:00,7.169379,239.85869,19.4,1011.08875,70.74104,372.0,480.82318,118.0,13.95,0.0,0.0, +2024-07-10 04:00:00,7.7233415,228.6746,19.15,1010.68494,70.00768,415.0,434.85788,151.0,13.55,0.0,0.1, +2024-07-10 05:00:00,7.50733,221.76021,19.0,1010.58136,69.7512,493.0,596.21356,116.0,13.35,0.0,0.0, +2024-07-10 06:00:00,7.242237,215.4458,18.7,1010.47363,67.22854,452.0,514.75586,142.0,12.5,0.0,0.0, +2024-07-10 07:00:00,6.6887965,211.55133,18.25,1010.75824,67.80126,266.0,150.33124,188.0,12.2,0.0,0.0, +2024-07-10 08:00:00,6.1269894,206.14677,17.9,1011.2442,68.17761,291.0,520.77325,89.0,11.95,0.0,0.0, +2024-07-10 09:00:00,5.0328918,200.95586,17.15,1012.1148,69.84967,148.0,467.37152,46.0,11.6,0.0,0.0, +2024-07-10 10:00:00,4.588028,196.4601,16.45,1012.49115,69.251175,19.0,108.97502,10.0,10.8,0.0,0.0, +2024-07-10 11:00:00,4.197618,192.38075,16.0,1013.0728,69.85694,0.0,0.0,0.0,10.5,0.0,0.0, +2024-07-10 12:00:00,3.7215588,186.17007,15.55,1013.6548,71.65721,0.0,0.0,0.0,10.45,0.0,0.0, +2024-07-10 13:00:00,2.6019223,182.20255,15.1,1014.13715,73.75662,0.0,0.0,0.0,10.45,0.0,0.0, +2024-07-10 14:00:00,2.302173,177.5105,14.65,1014.4213,75.672516,0.0,0.0,0.0,10.4,0.0,0.0, +2024-07-10 15:00:00,2.1213202,171.86998,14.3,1014.70825,76.88815,0.0,0.0,0.0,10.3,0.0,0.0, +2024-07-10 16:00:00,1.8027756,160.55988,13.85,1014.89325,79.16309,0.0,0.0,0.0,10.3,0.0,0.0, +2024-07-10 17:00:00,1.9209373,141.34016,13.3,1014.5796,82.3208,0.0,0.0,0.0,10.35,0.0,0.0, +2024-07-10 18:00:00,1.8867962,122.00535,12.9,1014.8649,80.63314,0.0,0.0,0.0,9.65,0.0,0.0, +2024-07-10 19:00:00,2.0,126.86999,13.2,1014.87384,79.60053,0.0,0.0,0.0,9.75,0.0,0.0, +2024-07-10 20:00:00,2.4186773,97.12492,13.1,1014.9701,78.26131,0.0,0.0,0.0,9.4,0.0,0.0, +2024-07-10 21:00:00,1.9646883,75.25639,12.25,1014.94464,80.27297,0.0,0.0,0.0,8.95,0.0,0.0, +2024-07-10 22:00:00,2.376973,75.37909,12.15,1015.23895,80.259056,0.0,0.0,0.0,8.85,0.0,0.0, +2024-07-10 23:00:00,2.5,73.73973,11.7,1015.52264,81.84104,0.0,0.0,0.0,8.7,0.0,0.0, +2024-07-11 00:00:00,2.8178005,62.525658,12.3,1016.2349,80.82288,24.0,87.065254,16.0,9.1,0.0,0.0, +2024-07-11 01:00:00,2.863564,65.22488,13.75,1016.8736,79.41331,101.0,50.94424,89.0,10.25,0.0,0.0, +2024-07-11 02:00:00,2.5632012,69.44388,15.5,1017.52057,72.36777,280.0,370.2619,131.0,10.55,0.0,0.0, +2024-07-11 03:00:00,2.4186773,82.875084,16.5,1017.2525,66.32572,400.0,404.00684,186.0,10.2,0.0,0.0, +2024-07-11 04:00:00,2.6172504,96.581856,16.95,1016.5716,63.38936,401.0,195.49641,282.0,9.95,0.0,0.0, +2024-07-11 05:00:00,2.7018511,128.991,17.75,1015.5041,59.86303,615.0,823.2504,93.0,9.85,0.0,0.0, +2024-07-11 06:00:00,3.1064448,146.82147,17.95,1015.014,57.549053,508.0,635.6991,124.0,9.45,0.0,0.0, +2024-07-11 07:00:00,3.352611,162.64589,17.75,1015.00824,56.539207,318.0,316.87323,153.0,9.0,0.0,0.0, +2024-07-11 08:00:00,4.2107005,175.91446,17.05,1015.5828,62.989086,270.0,446.48483,96.0,9.95,0.0,0.0, +2024-07-11 09:00:00,3.5510561,170.27249,16.2,1015.5579,69.66386,140.0,359.12723,61.0,10.65,0.0,0.0, +2024-07-11 10:00:00,4.2720017,163.68607,14.85,1015.7165,73.46686,19.0,59.90828,14.0,10.15,0.0,0.0, +2024-07-11 11:00:00,3.4,151.92761,14.2,1016.2921,76.10551,0.0,0.0,0.0,10.05,0.0,0.0, +2024-07-11 12:00:00,3.5608988,128.15727,13.8,1016.2802,77.58424,0.0,0.0,0.0,9.95,0.0,0.0, +2024-07-11 13:00:00,3.2649655,130.0302,14.05,1016.6842,77.105865,0.0,0.0,0.0,10.1,0.0,0.0, +2024-07-11 14:00:00,2.7784889,120.256355,13.25,1016.6603,80.411354,0.0,0.0,0.0,9.95,0.0,0.0, +2024-07-11 15:00:00,3.4481878,106.85848,12.8,1015.85364,82.257805,0.0,0.0,0.0,9.85,0.0,0.0, +2024-07-11 16:00:00,3.7013512,91.54813,12.9,1015.7574,80.63314,0.0,0.0,0.0,9.65,0.0,0.0, +2024-07-11 17:00:00,2.9068885,86.05489,12.8,1015.457,78.21598,0.0,0.0,0.0,9.1,0.0,0.0, +2024-07-11 18:00:00,3.2015622,75.52967,11.7,1015.2252,79.92498,0.0,0.0,0.0,8.35,0.0,0.0, +2024-07-11 19:00:00,2.7658634,77.4712,11.9,1015.52875,76.76439,0.0,0.0,0.0,7.95,0.0,0.0, +2024-07-11 20:00:00,3.1780496,77.27565,11.45,1015.3171,77.21695,0.0,0.0,0.0,7.6,0.0,0.0, +2024-07-11 21:00:00,3.4525354,79.99209,11.0,1014.90674,77.67518,0.0,0.0,0.0,7.25,0.0,0.0, +2024-07-11 22:00:00,3.6878178,77.4712,10.65,1014.9951,78.154465,0.0,0.0,0.0,7.0,0.0,0.0, +2024-07-11 23:00:00,4.0521603,74.248764,10.45,1014.88983,77.856186,0.0,0.0,0.0,6.75,0.0,0.0, +2024-07-12 00:00:00,4.6572523,75.068535,10.95,1015.1035,75.05071,30.0,183.97002,13.0,6.7,0.0,0.0, +2024-07-12 01:00:00,4.14367,81.67444,13.65,1015.58154,68.22354,151.0,253.54391,91.0,7.9,0.0,0.0, +2024-07-12 02:00:00,4.2201896,76.29302,15.4,1016.1294,62.188694,331.0,557.29004,106.0,8.2,0.0,0.0, +2024-07-12 03:00:00,4.808326,73.07241,16.35,1015.8599,55.99397,370.0,278.60184,222.0,7.55,0.0,0.0, +2024-07-12 04:00:00,4.738143,82.72509,16.4,1014.7704,55.059128,270.0,73.72057,225.0,7.35,0.0,0.0, +2024-07-12 05:00:00,5.1478148,82.1848,17.55,1013.2174,51.71701,586.0,710.79346,134.0,7.5,0.0,0.0, +2024-07-12 06:00:00,5.0159745,85.42616,17.9,1012.43427,50.589214,571.0,775.6112,101.0,7.5,0.0,0.0, +2024-07-12 07:00:00,4.20119,91.3639,17.4,1012.32043,52.208958,278.0,107.147285,222.0,7.5,0.0,0.0, +2024-07-12 08:00:00,3.9623227,100.17545,17.35,1012.2197,51.311504,312.0,508.17142,113.0,7.2,0.0,0.0, +2024-07-12 09:00:00,3.2893767,109.53674,16.35,1011.99243,55.04623,58.0,18.036898,54.0,7.3,0.0,0.0, +2024-07-12 10:00:00,3.0594118,101.3099,15.85,1012.0767,55.105732,6.0,0.0,6.0,6.85,0.0,0.0, +2024-07-12 11:00:00,2.4738634,104.03627,15.3,1012.358,56.886005,0.0,0.0,0.0,6.8,0.0,0.0, +2024-07-12 12:00:00,2.607681,122.471176,14.95,1012.5461,59.592464,0.0,0.0,0.0,7.15,0.0,0.0, +2024-07-12 13:00:00,3.0675724,109.025696,13.7,1012.509,66.626854,0.0,0.0,0.0,7.6,0.0,0.0, +2024-07-12 14:00:00,3.0675724,109.025696,14.05,1012.4203,63.59244,0.0,0.0,0.0,7.25,0.0,0.0, +2024-07-12 15:00:00,2.6925824,111.801476,13.8,1012.31384,64.41155,0.0,0.0,0.0,7.2,0.0,0.0, +2024-07-12 16:00:00,3.352611,107.35411,13.75,1011.519,65.064445,0.0,0.0,0.0,7.3,0.0,0.0, +2024-07-12 17:00:00,3.471311,101.63361,13.7,1010.82336,64.60993,0.0,0.0,0.0,7.15,0.0,0.0, +2024-07-12 18:00:00,4.2755113,100.784256,13.7,1010.4267,63.73096,0.0,0.0,0.0,6.95,0.0,0.0, +2024-07-12 19:00:00,4.8093657,86.423744,13.9,1009.6394,61.20461,0.0,0.0,0.0,6.55,0.0,0.0, +2024-07-12 20:00:00,4.504442,87.45525,13.55,1009.43066,60.492096,0.0,0.0,0.0,6.05,0.0,0.0, +2024-07-12 21:00:00,3.5,90.0,12.4,1009.99133,64.096756,0.0,0.0,0.0,5.8,0.0,0.0, +2024-07-12 22:00:00,4.110961,85.81516,13.1,1009.9131,60.803318,0.0,0.0,0.0,5.7,0.0,0.0, +2024-07-12 23:00:00,4.554119,81.15827,12.5,1009.9942,62.584625,0.0,0.0,0.0,5.55,0.0,0.0, +2024-07-13 00:00:00,5.3851643,74.931465,12.5,1010.29175,65.011215,29.0,161.3362,14.0,6.1,0.0,0.0, +2024-07-13 01:00:00,6.293648,72.42865,13.75,1010.2299,63.306877,93.0,79.88847,74.0,6.9,0.0,0.0, +2024-07-13 02:00:00,5.2886667,74.64981,15.2,1010.5701,63.63625,271.0,264.09506,164.0,8.35,0.0,0.0, +2024-07-13 03:00:00,4.976947,67.557205,16.65,1010.0177,59.397705,381.0,315.2841,213.0,8.7,0.0,0.0, +2024-07-13 04:00:00,3.7121422,62.744755,17.0,1008.937,58.68517,258.0,75.13675,212.0,8.85,0.0,0.0, +2024-07-13 05:00:00,2.624881,49.635548,18.15,1007.9786,57.598576,370.0,164.61797,265.0,9.65,0.0,0.0, +2024-07-13 06:00:00,1.6970563,44.999897,19.15,1007.6106,55.204735,594.0,845.4279,80.0,9.95,0.0,0.0, +2024-07-13 07:00:00,1.5264337,58.392544,19.3,1007.5156,54.326492,464.0,693.786,100.0,9.85,0.0,0.0, +2024-07-13 08:00:00,1.3038405,57.528828,19.15,1007.80896,54.470146,355.0,752.10913,59.0,9.75,0.0,0.0, +2024-07-13 09:00:00,1.2041595,85.23644,17.9,1008.0707,72.564156,171.0,550.04816,48.0,12.9,0.0,0.0, +2024-07-13 10:00:00,1.2369317,104.03627,17.05,1008.2444,64.05081,23.0,152.4239,10.0,10.2,0.0,0.0, +2024-07-13 11:00:00,1.9104973,83.99109,13.35,1008.63135,80.694435,0.0,0.0,0.0,10.1,0.0,0.0, +2024-07-13 12:00:00,1.8384776,67.61982,14.35,1008.9586,74.11968,0.0,0.0,0.0,9.8,0.0,0.0, +2024-07-13 13:00:00,2.4166093,65.55606,11.9,1009.183,82.9785,0.0,0.0,0.0,9.1,0.0,0.0, +2024-07-13 14:00:00,2.5495098,64.440094,11.55,1009.3708,82.93568,0.0,0.0,0.0,8.75,0.0,0.0, +2024-07-13 15:00:00,2.7730849,64.35905,11.2,1009.06287,82.612305,0.0,0.0,0.0,8.35,0.0,0.0, +2024-07-13 16:00:00,3.2202485,64.23073,11.0,1008.56116,82.868065,0.0,0.0,0.0,8.2,0.0,0.0, +2024-07-13 17:00:00,3.275668,58.736336,10.95,1008.26215,82.30104,0.0,0.0,0.0,8.05,0.0,0.0, +2024-07-13 18:00:00,3.001666,60.018444,10.7,1008.2545,82.83103,0.0,0.0,0.0,7.9,0.0,0.0, +2024-07-13 19:00:00,3.0528674,58.392544,10.15,1008.13855,84.76298,0.0,0.0,0.0,7.7,0.0,0.0, +2024-07-13 20:00:00,2.9154758,59.03632,9.6,1008.0226,86.45638,0.0,0.0,0.0,7.45,0.0,0.0, +2024-07-13 21:00:00,2.4698176,58.240574,9.2,1008.0103,87.00993,0.0,0.0,0.0,7.15,0.0,0.0, +2024-07-13 22:00:00,2.2022715,50.52757,9.1,1008.30493,86.11056,0.0,0.0,0.0,6.9,0.0,0.0, +2024-07-13 23:00:00,1.7804494,51.842735,8.9,1008.6952,85.50054,0.0,0.0,0.0,6.6,0.0,0.0, +2024-07-14 00:00:00,1.5811387,55.304783,9.75,1009.3163,82.71295,32.0,203.02022,13.0,6.95,0.0,0.0, +2024-07-14 01:00:00,1.3601471,36.027473,14.65,1010.3557,74.420105,193.0,606.4202,48.0,10.15,0.0,0.0, +2024-07-14 02:00:00,0.44721362,26.564985,17.2,1010.82715,63.234066,370.0,754.9126,63.0,10.15,0.0,0.0, +2024-07-14 03:00:00,1.3416408,206.56499,18.65,1010.5716,63.980724,505.0,806.24384,74.0,11.7,0.0,0.0, +2024-07-14 04:00:00,2.758623,226.46873,19.1,1010.0884,69.09206,592.0,833.71893,80.0,13.3,0.0,0.0, +2024-07-14 05:00:00,3.1241,230.19447,19.2,1009.19867,67.11188,610.0,800.1716,98.0,12.95,0.0,0.0, +2024-07-14 06:00:00,4.5803933,216.11943,19.25,1009.1011,65.602516,582.0,826.144,78.0,12.65,0.0,0.0, +2024-07-14 07:00:00,5.1429563,206.56499,18.45,1009.475,70.791985,404.0,525.8707,127.0,13.05,0.0,0.1, +2024-07-14 08:00:00,5.2201533,200.17073,17.9,1009.95496,73.51868,283.0,480.29938,93.0,13.1,0.0,0.2, +2024-07-14 09:00:00,4.3416586,194.67644,17.75,1010.14886,74.45873,133.0,350.29892,54.0,13.15,0.0,0.1, +2024-07-14 10:00:00,4.197618,192.38075,16.7,1010.5151,77.011,22.0,127.54551,11.0,12.65,0.0,0.0, +2024-07-14 11:00:00,3.8327534,187.49576,16.15,1010.6973,77.17838,0.0,0.0,0.0,12.15,0.0,0.0, +2024-07-14 12:00:00,3.306055,183.46815,15.5,1010.97577,78.878845,0.0,0.0,0.0,11.85,0.0,0.0, +2024-07-14 13:00:00,2.4515302,168.23174,14.9,1011.85046,82.52026,0.0,0.0,0.0,11.95,0.0,0.0, +2024-07-14 14:00:00,2.2135942,161.56496,14.5,1012.037,83.29182,0.0,0.0,0.0,11.7,0.0,0.0, +2024-07-14 15:00:00,2.408319,138.36655,14.5,1012.23535,83.84324,0.0,0.0,0.0,11.8,0.0,0.0, +2024-07-14 16:00:00,1.8867962,122.00535,13.6,1011.9112,88.294586,0.0,0.0,0.0,11.7,0.0,0.0, +2024-07-14 17:00:00,1.4142135,98.13002,13.1,1011.69794,88.83804,0.0,0.0,0.0,11.3,0.0,0.0, +2024-07-14 18:00:00,2.8999999,136.39711,12.0,1011.6649,88.74687,0.0,0.0,0.0,10.2,0.0,0.0, +2024-07-14 19:00:00,2.8442926,169.8754,14.6,1011.64325,84.68738,0.0,0.0,0.0,12.05,0.0,0.0, +2024-07-14 20:00:00,1.8788295,115.20109,13.3,1011.30743,88.5612,0.0,0.0,0.0,11.45,0.0,0.0, +2024-07-14 21:00:00,2.2203603,125.837746,12.75,1011.1917,87.92849,0.0,0.0,0.0,10.8,0.0,0.0, +2024-07-14 22:00:00,2.1095023,148.57048,14.35,1011.3385,84.1031,0.0,0.0,0.0,11.7,0.0,0.0, +2024-07-14 23:00:00,2.1633308,146.3099,14.3,1011.73346,84.65439,0.0,0.0,0.0,11.75,0.0,0.0, +2024-07-15 00:00:00,2.6907248,138.01286,14.9,1012.14795,84.72028,30.0,169.77138,14.0,12.35,0.0,0.0, +2024-07-15 01:00:00,2.8231187,112.93214,16.45,1013.0861,84.33935,186.0,548.9176,54.0,13.8,0.0,0.0, +2024-07-15 02:00:00,3.3600597,126.528946,17.65,1013.8153,77.158676,362.0,707.85626,73.0,13.6,0.0,0.0, +2024-07-15 03:00:00,4.4598203,160.34608,18.55,1013.74225,71.50711,500.0,775.54596,84.0,13.3,0.0,0.0, +2024-07-15 04:00:00,4.7675986,170.34018,18.85,1013.05664,67.03946,598.0,829.4023,87.0,12.6,0.0,0.0, +2024-07-15 05:00:00,4.7095647,176.34785,19.0,1012.26733,65.549065,636.0,869.196,78.0,12.4,0.0,0.0, +2024-07-15 06:00:00,3.8013155,178.4926,19.35,1011.68243,65.409355,601.0,852.61914,79.0,12.7,0.0,0.0, +2024-07-15 07:00:00,3.2015622,181.78987,19.65,1011.39355,62.538506,442.0,582.3333,134.0,12.3,0.0,0.0, +2024-07-15 08:00:00,3.1064448,183.69131,19.4,1011.5846,63.517532,314.0,515.49493,109.0,12.3,0.0,0.0, +2024-07-15 09:00:00,2.3,180.0,18.25,1011.65076,74.060265,180.0,584.6657,47.0,13.55,0.0,0.0, +2024-07-15 10:00:00,1.8601075,143.74608,15.6,1011.9703,81.79813,25.0,160.5073,11.0,12.5,0.0,0.0, +2024-07-15 11:00:00,2.209072,95.19434,14.4,1012.7283,78.456215,0.0,0.0,0.0,10.7,0.0,0.0, +2024-07-15 12:00:00,2.4351592,70.8209,13.6,1013.10114,80.459465,0.0,0.0,0.0,10.3,0.0,0.0, +2024-07-15 13:00:00,2.3194828,82.56869,12.7,1013.8673,85.04281,0.0,0.0,0.0,10.25,0.0,0.0, +2024-07-15 14:00:00,2.8071337,85.91447,12.55,1014.06116,84.45985,0.0,0.0,0.0,10.0,0.0,0.0, +2024-07-15 15:00:00,3.206244,86.423744,12.35,1014.0552,83.312485,0.0,0.0,0.0,9.6,0.0,0.0, +2024-07-15 16:00:00,3.3136082,84.805664,12.2,1013.7532,82.736496,0.0,0.0,0.0,9.35,0.0,0.0, +2024-07-15 17:00:00,3.238827,81.11942,11.85,1013.54443,83.815056,0.0,0.0,0.0,9.2,0.0,0.0, +2024-07-15 18:00:00,3.2557642,79.380394,11.5,1013.43445,84.34141,0.0,0.0,0.0,8.95,0.0,0.0, +2024-07-15 19:00:00,3.4525354,79.99209,11.25,1013.12933,84.313,0.0,0.0,0.0,8.7,0.0,0.0, +2024-07-15 20:00:00,3.9623227,79.824554,11.25,1012.7328,83.179985,0.0,0.0,0.0,8.5,0.0,0.0, +2024-07-15 21:00:00,4.5891175,78.6901,11.3,1012.536,81.78913,0.0,0.0,0.0,8.3,0.0,0.0, +2024-07-15 22:00:00,4.9335585,72.299484,11.15,1012.43243,80.39214,0.0,0.0,0.0,7.9,0.0,0.0, +2024-07-15 23:00:00,5.502726,70.90642,11.05,1012.6275,77.68296,0.0,0.0,0.0,7.3,0.0,0.0, +2024-07-16 00:00:00,6.053924,67.6713,11.75,1013.0454,73.41004,34.0,210.64333,14.0,7.15,0.0,0.0, +2024-07-16 01:00:00,6.352952,61.821507,14.6,1013.6265,65.25128,200.0,628.2889,48.0,8.15,0.0,0.0, +2024-07-16 02:00:00,5.905929,61.69934,16.8,1013.69135,61.058266,382.0,780.5432,62.0,9.25,0.0,0.0, +2024-07-16 03:00:00,6.1032777,55.0079,18.75,1013.4505,54.00264,528.0,850.8174,70.0,9.25,0.0,0.0, +2024-07-16 04:00:00,5.8137765,49.185013,20.25,1012.79913,50.876205,620.0,883.2293,74.0,9.75,0.0,0.0, +2024-07-16 05:00:00,5.5865912,45.72514,21.45,1011.9405,49.51985,648.0,889.5213,75.0,10.45,0.0,0.0, +2024-07-16 06:00:00,4.920366,37.568665,22.25,1011.2687,48.27118,611.0,875.5423,73.0,10.8,0.0,0.0, +2024-07-16 07:00:00,4.356604,31.865936,22.7,1011.08307,47.597366,514.0,837.8263,69.0,11.0,0.0,0.0, +2024-07-16 08:00:00,3.4885528,27.29949,22.35,1011.07324,52.804585,366.0,760.33307,62.0,12.25,0.0,0.0, +2024-07-16 09:00:00,2.5,36.86999,20.5,1011.12006,58.945637,185.0,605.6961,46.0,12.2,0.0,0.0, +2024-07-16 10:00:00,2.7313,66.2505,17.6,1010.8386,62.903683,27.0,181.34804,11.0,10.45,0.0,0.0, +2024-07-16 11:00:00,3.8910153,64.09355,16.75,1011.0122,59.02175,0.0,0.0,0.0,8.7,0.0,0.0, +2024-07-16 12:00:00,4.0,53.13002,16.55,1010.80817,54.722927,0.0,0.0,0.0,7.4,0.0,0.0, +2024-07-16 13:00:00,3.7013512,38.418083,16.05,1011.3886,54.780743,0.0,0.0,0.0,6.95,0.0,0.0, +2024-07-16 14:00:00,3.7161808,23.805958,15.3,1011.4655,55.534077,0.0,0.0,0.0,6.45,0.0,0.0, +2024-07-16 15:00:00,4.770744,33.023872,14.95,1010.95953,55.252865,0.0,0.0,0.0,6.05,0.0,0.0, +2024-07-16 16:00:00,5.5317264,40.601215,14.95,1010.36456,53.931923,0.0,0.0,0.0,5.7,0.0,0.0, +2024-07-16 17:00:00,5.879626,41.552525,14.95,1009.7696,52.63897,0.0,0.0,0.0,5.35,0.0,0.0, +2024-07-16 18:00:00,6.453681,40.601215,15.0,1009.0771,51.030476,0.0,0.0,0.0,4.95,0.0,0.0, +2024-07-16 19:00:00,6.4070277,34.18618,14.95,1009.07544,49.612343,0.0,0.0,0.0,4.5,0.0,0.0, +2024-07-16 20:00:00,6.6370173,30.815645,14.7,1008.8699,48.85368,0.0,0.0,0.0,4.05,0.0,0.0, +2024-07-16 21:00:00,6.0373836,26.564985,14.45,1008.7632,48.44237,0.0,0.0,0.0,3.7,0.0,0.0, +2024-07-16 22:00:00,6.2169123,25.740664,14.65,1008.7691,46.164528,0.0,0.0,0.0,3.2,0.0,0.0, +2024-07-16 23:00:00,6.621178,25.016869,14.35,1008.8595,45.592236,0.0,0.0,0.0,2.75,0.0,0.0, +2024-07-17 00:00:00,6.2241464,23.6821,14.35,1009.3553,48.585213,34.0,209.00038,14.0,3.65,0.0,0.0, +2024-07-17 01:00:00,6.332456,21.297422,16.75,1009.62384,50.97468,196.0,591.4572,52.0,6.55,0.0,0.0, +2024-07-17 02:00:00,5.8180757,24.362455,18.35,1009.67004,54.815422,353.0,597.44055,107.0,9.1,0.0,0.0, +2024-07-17 03:00:00,5.565968,17.783985,20.25,1009.32794,51.046974,507.0,740.3228,107.0,9.8,0.0,0.0, +2024-07-17 04:00:00,5.500909,1.0416087,21.85,1008.38135,49.298454,615.0,873.69775,73.0,10.75,0.0,0.0, +2024-07-17 05:00:00,5.6320515,343.49554,23.0,1007.42145,47.67891,641.0,869.3744,79.0,11.3,0.0,0.0, +2024-07-17 06:00:00,5.742821,324.92618,23.15,1006.7313,48.354572,604.0,851.17346,79.0,11.65,0.0,0.0, +2024-07-17 07:00:00,5.5605755,322.3057,22.9,1006.32764,50.40354,501.0,781.73083,84.0,12.05,0.0,0.0, +2024-07-17 08:00:00,4.7201695,323.61554,22.35,1006.31244,57.30315,354.0,703.9291,71.0,13.5,0.0,0.0, +2024-07-17 09:00:00,4.360046,323.39282,21.05,1006.6725,62.24406,167.0,466.439,59.0,13.55,0.0,0.0, +2024-07-17 10:00:00,4.3931766,318.69147,20.4,1006.9517,65.20836,9.0,0.0,9.0,13.65,0.0,0.0, +2024-07-17 11:00:00,4.4407206,324.16226,20.1,1007.2408,69.96344,0.0,0.0,0.0,14.45,0.0,0.0, +2024-07-17 12:00:00,4.8600416,323.36578,19.6,1007.42523,76.96274,0.0,0.0,0.0,15.45,0.0,0.0, +2024-07-17 13:00:00,3.8639357,349.5626,19.3,1007.1189,83.58254,0.0,0.0,0.0,16.45,0.0,0.2, +2024-07-17 14:00:00,6.888396,346.56894,20.2,1006.25183,56.77315,0.0,0.0,0.0,11.35,0.0,0.0, +2024-07-17 15:00:00,7.4632435,342.0505,20.0,1005.8495,47.496258,0.0,0.0,0.0,8.5,0.0,0.1, +2024-07-17 16:00:00,7.8549347,338.33395,19.9,1005.45026,45.884487,0.0,0.0,0.0,7.9,0.0,0.0, +2024-07-17 17:00:00,8.127115,341.342,19.75,1004.65234,58.184452,0.0,0.0,0.0,11.3,0.0,0.0, +2024-07-17 18:00:00,7.5,323.13,19.15,1004.23865,79.147575,0.0,0.0,0.0,15.45,0.0,0.7, +2024-07-17 19:00:00,8.207314,313.0251,18.7,1003.92816,90.99815,0.0,0.0,0.0,17.2,0.0,5.4, +2024-07-17 20:00:00,7.1421285,224.4328,17.5,1004.3897,92.37993,0.0,0.0,0.0,16.25,0.0,9.2, +2024-07-17 21:00:00,4.031129,223.99501,17.1,1004.97314,93.24648,0.0,0.0,0.0,16.0,0.0,2.7, +2024-07-17 22:00:00,5.2009616,217.97166,16.9,1005.56244,90.2974,0.0,0.0,0.0,15.3,0.0,1.0, +2024-07-17 23:00:00,4.5254836,224.9999,16.55,1005.94904,91.441,0.0,0.0,0.0,15.15,0.0,2.0, +2024-07-18 00:00:00,4.701064,231.91118,16.5,1006.8399,89.40081,4.0,0.0,4.0,14.75,0.0,2.3, +2024-07-18 01:00:00,4.104875,235.92276,16.65,1007.5385,88.5526,32.0,0.0,32.0,14.75,0.0,1.2, +2024-07-18 02:00:00,5.140039,232.90707,16.55,1008.329,88.54426,53.0,7.2528677,50.0,14.65,0.0,0.7, +2024-07-18 03:00:00,5.672742,229.28925,16.25,1008.71686,88.519226,88.0,1.843691,87.0,14.35,0.0,1.1, +2024-07-18 04:00:00,6.5053825,224.9999,16.3,1008.5201,81.35463,136.0,11.2431555,129.0,13.1,0.0,0.7, +2024-07-18 05:00:00,6.9526978,220.33307,16.45,1008.12775,74.48158,220.0,114.05764,146.0,11.9,0.0,0.0, +2024-07-18 06:00:00,7.0092793,222.10866,16.6,1007.9339,69.2809,169.0,43.605698,142.0,10.95,0.0,0.1, +2024-07-18 07:00:00,7.7077885,224.47443,16.6,1008.5289,65.90545,251.0,130.6486,181.0,10.2,0.0,0.0, +2024-07-18 08:00:00,7.224957,221.63345,16.3,1008.7184,65.40154,257.0,351.2371,115.0,9.8,0.0,0.0, +2024-07-18 09:00:00,6.5115285,222.5104,16.05,1009.3061,64.04269,162.0,440.8535,59.0,9.25,0.0,0.0, +2024-07-18 10:00:00,6.363961,224.9999,15.7,1009.891,60.798283,22.0,110.74044,12.0,8.15,0.0,0.0, +2024-07-18 11:00:00,6.5795135,226.8476,15.55,1011.0765,59.737846,0.0,0.0,0.0,7.75,0.0,0.0, +2024-07-18 12:00:00,6.4443774,228.14505,15.45,1011.6683,54.06317,0.0,0.0,0.0,6.2,0.0,0.0, +2024-07-18 13:00:00,7.8600254,233.2758,16.0,1012.0812,53.28367,0.0,0.0,0.0,6.5,0.0,0.0, +2024-07-18 14:00:00,7.940403,233.70728,15.35,1012.7563,54.598896,0.0,0.0,0.0,6.25,0.0,0.0, +2024-07-18 15:00:00,7.3,228.888,15.55,1012.96063,52.616673,0.0,0.0,0.0,5.9,0.0,0.0, +2024-07-18 16:00:00,8.01561,220.44615,15.55,1013.15894,55.407722,0.0,0.0,0.0,6.65,0.0,0.0, +2024-07-18 17:00:00,7.877182,213.08485,15.6,1012.8628,57.549316,0.0,0.0,0.0,7.25,0.0,0.1, +2024-07-18 18:00:00,6.9778223,205.4633,15.2,1013.0492,62.99214,0.0,0.0,0.0,8.2,0.0,0.1, +2024-07-18 19:00:00,6.2641835,196.69933,15.15,1012.94885,61.709457,0.0,0.0,0.0,7.85,0.0,0.1, +2024-07-18 20:00:00,5.9076223,182.91078,14.6,1013.0315,64.58978,0.0,0.0,0.0,8.0,0.0,0.0, +2024-07-18 21:00:00,5.5731497,170.70677,14.3,1013.2208,66.98136,0.0,0.0,0.0,8.25,0.0,0.0, +2024-07-18 22:00:00,4.609772,155.65892,13.7,1013.7981,69.40248,0.0,0.0,0.0,8.2,0.0,0.0, +2024-07-18 23:00:00,3.3241541,133.7812,12.75,1014.46387,73.33953,0.0,0.0,0.0,8.1,0.0,0.0, +2024-07-19 00:00:00,3.3136082,95.19434,12.3,1015.24335,76.050835,33.0,184.95955,15.0,8.2,0.0,0.0, +2024-07-19 01:00:00,3.6013885,88.4089,14.2,1016.39124,74.5921,203.0,623.9771,49.0,9.75,0.0,0.0, +2024-07-19 02:00:00,3.5341196,115.11481,16.25,1017.3443,64.087296,386.0,772.39905,65.0,9.45,0.0,0.0, +2024-07-19 03:00:00,3.9623227,132.95459,17.2,1017.66974,57.169132,530.0,835.53656,75.0,8.65,0.0,0.0, +2024-07-19 04:00:00,4.0249224,153.43501,17.7,1016.79175,52.824963,606.0,827.29193,89.0,7.95,0.0,0.0, +2024-07-19 05:00:00,3.6878178,167.4712,17.85,1016.1019,51.095978,608.0,757.03864,115.0,7.6,0.0,0.0, +2024-07-19 06:00:00,3.7121422,175.36462,17.75,1015.70233,50.54873,500.0,476.1588,204.0,7.35,0.0,0.0, +2024-07-19 07:00:00,3.522783,173.4803,17.45,1015.6935,49.44009,398.0,436.6387,163.0,6.75,0.0,0.0, +2024-07-19 08:00:00,3.3376637,171.38443,17.0,1015.8788,52.820248,274.0,376.30032,121.0,7.3,0.0,0.0, +2024-07-19 09:00:00,2.570992,166.50426,16.1,1016.4473,61.306393,161.0,398.69022,67.0,8.65,0.0,0.0, +2024-07-19 10:00:00,2.3600848,143.61555,14.25,1016.8886,65.84307,28.0,153.23122,14.0,7.95,0.0,0.0, +2024-07-19 11:00:00,2.505993,118.61037,13.35,1017.35724,66.32488,0.0,0.0,0.0,7.2,0.0,0.0, +2024-07-19 12:00:00,2.408319,94.76356,12.3,1017.52386,69.121254,0.0,0.0,0.0,6.8,0.0,0.0, +2024-07-19 13:00:00,2.1023796,115.34614,10.4,1017.4661,74.69824,0.0,0.0,0.0,6.1,0.0,0.0, +2024-07-19 14:00:00,2.0024984,92.86235,10.4,1017.56537,70.18406,0.0,0.0,0.0,5.2,0.0,0.0, +2024-07-19 15:00:00,2.3345234,80.13426,9.95,1017.4524,67.687004,0.0,0.0,0.0,4.25,0.0,0.0, +2024-07-19 16:00:00,2.7892652,75.46551,9.55,1017.0434,69.283325,0.0,0.0,0.0,4.2,0.0,0.0, +2024-07-19 17:00:00,2.9120438,74.054535,9.35,1017.0374,71.46043,0.0,0.0,0.0,4.45,0.0,0.0, +2024-07-19 18:00:00,3.1016126,69.22767,9.25,1016.8358,73.21037,0.0,0.0,0.0,4.7,0.0,0.0, +2024-07-19 19:00:00,3.354102,63.435013,9.0,1016.6299,73.42089,0.0,0.0,0.0,4.5,0.0,0.0, +2024-07-19 20:00:00,3.7215588,59.300358,8.75,1016.72144,70.101074,0.0,0.0,0.0,3.6,0.0,0.0, +2024-07-19 21:00:00,3.8832977,55.491425,8.75,1016.72144,67.194046,0.0,0.0,0.0,3.0,0.0,0.0, +2024-07-19 22:00:00,4.060788,52.001225,9.0,1017.22473,65.14047,0.0,0.0,0.0,2.8,0.0,0.0, +2024-07-19 23:00:00,4.263801,50.710617,9.15,1017.6261,64.71418,0.0,0.0,0.0,2.85,0.0,0.0, +2024-07-20 00:00:00,4.6690474,46.73567,9.75,1018.1404,65.07852,37.0,224.0441,15.0,3.5,0.0,0.0, +2024-07-20 01:00:00,5.307542,42.709366,12.0,1018.90314,68.35116,207.0,631.542,50.0,6.35,0.0,0.0, +2024-07-20 02:00:00,4.743417,34.69522,14.65,1019.3794,63.29591,390.0,778.1992,65.0,7.75,0.0,0.0, +2024-07-20 03:00:00,4.8548946,32.38066,16.0,1019.32025,52.736355,537.0,848.5553,73.0,6.35,0.0,0.0, +2024-07-20 04:00:00,4.022437,34.8754,16.8,1018.5505,51.16368,629.0,879.90845,77.0,6.65,0.0,0.0, +2024-07-20 05:00:00,2.842534,39.289394,17.4,1017.7748,50.975033,659.0,887.22925,79.0,7.15,0.0,0.0, +2024-07-20 06:00:00,1.56205,39.805527,17.55,1016.6883,51.015396,624.0,876.3768,77.0,7.3,0.0,0.0, +2024-07-20 07:00:00,0.5,36.86999,17.6,1016.7889,50.508213,527.0,841.5472,72.0,7.2,0.0,0.0, +2024-07-20 08:00:00,0.3,180.0,17.4,1016.88226,50.800877,378.0,767.84064,64.0,7.1,0.0,0.0, +2024-07-20 09:00:00,0.94868326,198.43504,16.15,1017.0439,74.92346,194.0,609.3918,49.0,11.7,0.0,0.0, +2024-07-20 10:00:00,2.109502,174.55975,13.25,1017.0568,71.70856,30.0,183.892,13.0,8.25,0.0,0.0, +2024-07-20 11:00:00,2.408319,138.36655,11.75,1017.50726,78.32183,0.0,0.0,0.0,8.1,0.0,0.0, +2024-07-20 12:00:00,2.0248456,110.22495,11.05,1017.6842,79.832664,0.0,0.0,0.0,7.7,0.0,0.0, +2024-07-20 13:00:00,1.7,90.0,9.8,1017.646,80.75645,0.0,0.0,0.0,6.65,0.0,0.0, +2024-07-20 14:00:00,1.8384776,67.61982,9.4,1017.63385,79.59561,0.0,0.0,0.0,6.05,0.0,0.0, +2024-07-20 15:00:00,2.059126,60.94549,8.7,1017.7112,82.01202,0.0,0.0,0.0,5.8,0.0,0.0, +2024-07-20 16:00:00,2.4698176,58.240574,8.15,1017.29736,83.66423,0.0,0.0,0.0,5.55,0.0,0.0, +2024-07-20 17:00:00,2.9410884,54.688713,8.5,1016.71375,80.85678,0.0,0.0,0.0,5.4,0.0,0.0, +2024-07-20 18:00:00,2.9154758,59.03632,8.65,1016.4207,79.21091,0.0,0.0,0.0,5.25,0.0,0.0, +2024-07-20 19:00:00,3.3615475,59.620956,8.85,1016.1297,77.87662,0.0,0.0,0.0,5.2,0.0,0.0, +2024-07-20 20:00:00,3.4985712,59.03632,9.0,1015.73755,77.36077,0.0,0.0,0.0,5.25,0.0,0.0, +2024-07-20 21:00:00,3.7215588,59.300358,9.1,1015.64166,76.84107,0.0,0.0,0.0,5.25,0.0,0.0, +2024-07-20 22:00:00,4.031129,60.255207,9.15,1015.6432,75.52494,0.0,0.0,0.0,5.05,0.0,0.0, +2024-07-20 23:00:00,4.3266616,56.3099,9.05,1015.8383,72.410065,0.0,0.0,0.0,4.35,0.0,0.0, +2024-07-21 00:00:00,4.7201695,53.61555,9.8,1016.05963,69.09208,38.0,232.05714,15.0,4.4,0.0,0.0, +2024-07-21 01:00:00,4.90408,50.792812,12.5,1016.83594,70.59621,211.0,642.77985,50.0,7.3,0.0,0.0, +2024-07-21 02:00:00,4.0459857,50.013176,15.0,1017.10925,63.80722,397.0,790.9368,65.0,8.2,0.0,0.0, +2024-07-21 03:00:00,4.1617303,54.782326,16.6,1016.85895,53.076935,544.0,859.52106,72.0,7.0,0.0,0.0, +2024-07-21 04:00:00,3.8078864,60.068577,17.55,1015.79584,45.225933,639.0,892.3188,77.0,5.55,0.0,0.0, +2024-07-21 05:00:00,3.4885528,62.70051,18.05,1014.8185,39.471718,673.0,908.13916,77.0,4.05,0.0,0.0, +2024-07-21 06:00:00,2.863564,65.22488,18.35,1013.9345,40.115547,642.0,904.6818,75.0,4.55,0.0,0.0, +2024-07-21 07:00:00,2.3706539,62.354122,18.4,1013.5395,43.470356,544.0,870.78253,71.0,5.75,0.0,0.0, +2024-07-21 08:00:00,1.8601075,53.74608,18.15,1013.433,46.662872,390.0,792.5531,64.0,6.55,0.0,0.0, +2024-07-21 09:00:00,1.5652475,63.435013,16.6,1013.58636,70.9076,202.0,637.11945,49.0,11.3,0.0,0.0, +2024-07-21 10:00:00,1.603122,93.57626,14.3,1013.7167,63.649124,32.0,203.11708,13.0,7.5,0.0,0.0, +2024-07-21 11:00:00,1.7029387,93.366394,11.9,1014.1406,72.19153,0.0,0.0,0.0,7.05,0.0,0.0, +2024-07-21 12:00:00,2.1377556,79.21575,10.6,1014.20026,75.76902,0.0,0.0,0.0,6.5,0.0,0.0, +2024-07-21 13:00:00,2.7658634,77.4712,10.4,1014.1943,71.41314,0.0,0.0,0.0,5.45,0.0,0.0, +2024-07-21 14:00:00,3.0364454,72.75845,9.95,1013.8831,70.83165,0.0,0.0,0.0,4.9,0.0,0.0, +2024-07-21 15:00:00,3.231099,68.19853,9.6,1013.67395,70.76326,0.0,0.0,0.0,4.55,0.0,0.0, +2024-07-21 16:00:00,3.354102,63.435013,9.45,1012.87634,70.73389,0.0,0.0,0.0,4.4,0.0,0.0, +2024-07-21 17:00:00,3.3015149,54.865723,9.6,1012.18677,68.32871,0.0,0.0,0.0,4.05,0.0,0.0, +2024-07-21 18:00:00,3.6069376,46.12322,10.3,1011.7127,63.61759,0.0,0.0,0.0,3.7,0.0,0.0, +2024-07-21 19:00:00,3.7802117,37.476254,11.0,1011.13904,60.5083,0.0,0.0,0.0,3.65,0.0,0.0, +2024-07-21 20:00:00,3.7215588,30.699654,11.25,1010.8489,59.30437,0.0,0.0,0.0,3.6,0.0,0.0, +2024-07-21 21:00:00,3.8078864,29.931421,11.2,1010.4509,59.50117,0.0,0.0,0.0,3.6,0.0,0.0, +2024-07-21 22:00:00,3.9357338,27.216026,11.3,1010.6521,60.157013,0.0,0.0,0.0,3.85,0.0,0.0, +2024-07-21 23:00:00,4.2190046,31.429514,11.45,1010.55774,61.04386,0.0,0.0,0.0,4.2,0.0,0.0, +2024-07-22 00:00:00,4.031129,29.744795,12.35,1010.7831,63.423233,36.0,199.85246,16.0,5.6,0.0,0.0, +2024-07-22 01:00:00,3.577709,26.564985,14.65,1011.64484,65.929565,201.0,570.44885,57.0,8.35,0.0,0.0, +2024-07-22 02:00:00,2.9120438,15.945477,17.35,1011.7239,67.170456,379.0,720.44556,75.0,11.2,0.0,0.0, +2024-07-22 03:00:00,3.008322,344.57776,19.4,1011.18787,58.099022,531.0,828.57117,74.0,10.95,0.0,0.0, +2024-07-22 04:00:00,2.9732137,317.72638,20.4,1010.4229,52.646072,622.0,861.8323,77.0,10.4,0.0,0.0, +2024-07-22 05:00:00,3.0413814,316.33215,20.85,1009.1466,53.115204,651.0,869.6074,78.0,10.95,0.0,0.0, +2024-07-22 06:00:00,3.8832977,304.50858,21.1,1007.9635,52.479317,616.0,857.9946,76.0,11.0,0.0,0.0, +2024-07-22 07:00:00,4.304649,300.7354,20.7,1007.65454,53.07624,522.0,824.54584,72.0,10.8,0.0,0.0, +2024-07-22 08:00:00,4.327817,310.31403,20.05,1007.3387,56.54815,374.0,749.2341,64.0,11.15,0.0,0.0, +2024-07-22 09:00:00,5.0990195,318.1799,18.65,1007.49725,65.04428,192.0,590.00037,49.0,11.95,0.0,0.0, +2024-07-22 10:00:00,4.2201896,323.67307,17.45,1007.46246,77.88452,30.0,169.04504,14.0,13.55,0.0,0.0, +2024-07-22 11:00:00,3.8013155,333.43503,16.8,1007.6421,80.105225,0.0,0.0,0.0,13.35,0.0,0.0, +2024-07-22 12:00:00,3.640055,344.05453,15.95,1007.7166,81.30893,0.0,0.0,0.0,12.75,0.0,0.0, +2024-07-22 13:00:00,4.7518415,351.52893,16.25,1006.7335,80.55452,0.0,0.0,0.0,12.9,0.0,0.0, +2024-07-22 14:00:00,4.9040794,343.41257,15.75,1006.6198,87.33524,0.0,0.0,0.0,13.65,0.0,0.0, +2024-07-22 15:00:00,5.280152,335.37646,16.25,1006.1385,90.250984,0.0,0.0,0.0,14.65,0.0,0.0, +2024-07-22 16:00:00,5.020956,315.80682,16.7,1005.8542,86.30005,0.0,0.0,0.0,14.4,0.0,0.1, +2024-07-22 17:00:00,6.551336,301.26367,16.65,1005.45605,87.135704,0.0,0.0,0.0,14.5,0.0,0.2, +2024-07-22 18:00:00,6.3953104,296.96564,16.15,1005.144,91.71071,0.0,0.0,0.0,14.8,0.0,0.5, +2024-07-22 19:00:00,4.6840153,286.1135,16.7,1004.86255,89.99337,0.0,0.0,0.0,15.05,0.0,0.2, +2024-07-22 20:00:00,5.2810984,288.77814,16.25,1004.7502,90.83483,0.0,0.0,0.0,14.75,0.0,0.4, +2024-07-22 21:00:00,3.8275316,289.85532,15.75,1004.33905,90.21508,0.0,0.0,0.0,14.15,0.0,0.2, +2024-07-22 22:00:00,3.0594118,281.3099,15.75,1004.63654,90.507614,0.0,0.0,0.0,14.2,0.0,0.6, +2024-07-22 23:00:00,3.5510561,302.3474,15.25,1004.8204,90.76694,0.0,0.0,0.0,13.75,0.0,0.2, +2024-07-23 00:00:00,3.0232434,304.21576,16.1,1004.845,87.36732,28.0,118.722046,16.0,14.0,0.0,0.1, +2024-07-23 01:00:00,5.1,241.92761,15.85,1005.33356,90.807755,117.0,243.64232,55.0,14.35,0.0,0.6, +2024-07-23 02:00:00,3.6496572,260.53775,16.0,1005.1396,91.997665,42.0,2.357128,41.0,14.7,0.0,1.9, +2024-07-23 03:00:00,5.162364,238.46526,15.95,1005.2375,85.946144,172.0,37.903706,151.0,13.6,0.0,4.0, +2024-07-23 04:00:00,5.6222773,218.50067,15.7,1005.03186,88.76081,164.0,15.748112,154.0,13.85,0.0,1.1, +2024-07-23 05:00:00,5.4424257,200.4329,16.3,1004.35504,83.23253,212.0,33.252193,190.0,13.45,0.0,0.3, +2024-07-23 06:00:00,5.7775426,203.45905,15.3,1004.2266,83.66047,173.0,64.86705,132.0,12.55,0.0,0.7, +2024-07-23 07:00:00,6.484597,197.03786,15.6,1004.2355,83.69524,246.0,151.35966,163.0,12.85,0.0,0.3, +2024-07-23 08:00:00,6.5115285,190.6196,14.9,1004.51245,83.0655,175.0,100.90907,133.0,12.05,0.0,0.3, +2024-07-23 09:00:00,6.802941,178.31535,14.25,1005.38605,90.106186,33.0,16.35143,29.0,12.65,0.0,1.4, +2024-07-23 10:00:00,5.346027,172.47627,13.95,1006.7653,87.16849,15.0,31.325293,12.0,11.85,0.0,0.6, +2024-07-23 11:00:00,3.544009,163.61038,13.15,1007.1383,88.25582,0.0,0.0,0.0,11.25,0.0,0.1, +2024-07-23 12:00:00,4.4011364,181.30193,12.3,1008.6,89.66309,0.0,0.0,0.0,10.65,0.0,0.4, +2024-07-23 13:00:00,4.6010866,178.75467,13.4,1008.63293,80.16357,0.0,0.0,0.0,10.05,0.0,0.1, +2024-07-23 14:00:00,4.1231055,140.90616,13.0,1008.91846,82.28304,0.0,0.0,0.0,10.05,0.0,0.1, +2024-07-23 15:00:00,3.3421547,128.92755,11.7,1009.27606,89.61681,0.0,0.0,0.0,10.05,0.0,0.0, +2024-07-23 16:00:00,1.8867962,122.00535,10.9,1009.35114,88.95372,0.0,0.0,0.0,9.15,0.0,0.0, +2024-07-23 17:00:00,2.641969,119.4758,10.8,1009.44714,86.28337,0.0,0.0,0.0,8.6,0.0,0.0, +2024-07-23 18:00:00,3.3600597,126.528946,10.7,1009.8409,84.25029,0.0,0.0,0.0,8.15,0.0,0.0, +2024-07-23 19:00:00,3.0413814,117.40749,10.35,1009.92926,85.074,0.0,0.0,0.0,7.95,0.0,0.0, +2024-07-23 20:00:00,2.7784889,120.256355,10.05,1010.2176,85.914635,0.0,0.0,0.0,7.8,0.0,0.0, +2024-07-23 21:00:00,2.5,106.26028,9.35,1010.3946,87.920654,0.0,0.0,0.0,7.45,0.0,0.0, +2024-07-23 22:00:00,2.1213202,98.13002,9.05,1010.9803,89.10387,0.0,0.0,0.0,7.35,0.0,0.0, +2024-07-23 23:00:00,2.1213202,98.13002,8.75,1011.5659,88.7747,0.0,0.0,0.0,7.0,0.0,0.0, +2024-07-24 00:00:00,2.9068885,93.945114,9.55,1012.28436,85.86273,37.0,205.64252,16.0,7.3,0.0,0.0, +2024-07-24 01:00:00,2.6076808,94.39862,11.55,1013.0394,81.26954,202.0,569.00494,56.0,8.45,0.0,0.0, +2024-07-24 02:00:00,2.34094,109.98319,13.5,1013.49445,72.97907,386.0,721.9761,78.0,8.75,0.0,0.0, +2024-07-24 03:00:00,2.8301945,122.00535,15.0,1013.3411,62.09579,540.0,830.0514,78.0,7.8,0.0,0.0, +2024-07-24 04:00:00,3.3837848,145.84026,15.8,1012.9679,60.001755,634.0,873.4707,77.0,8.05,0.0,0.0, +2024-07-24 05:00:00,4.414748,166.9081,16.5,1012.19495,56.607403,664.0,883.5557,77.0,7.85,0.0,0.0, +2024-07-24 06:00:00,3.8013155,178.4926,16.3,1011.69336,58.712524,547.0,637.9982,142.0,8.2,0.0,0.0, +2024-07-24 07:00:00,3.7013512,181.54813,16.35,1011.69495,58.129898,497.0,707.79126,107.0,8.1,0.0,0.0, +2024-07-24 08:00:00,3.9,180.0,15.7,1011.7751,61.212276,373.0,706.93933,77.0,8.25,0.0,0.0, +2024-07-24 09:00:00,3.3376637,171.38443,14.65,1012.23975,67.967804,201.0,611.5791,50.0,8.8,0.0,0.0, +2024-07-24 10:00:00,2.280351,142.12495,11.8,1012.45215,80.48215,33.0,196.08257,14.0,8.55,0.0,0.0, +2024-07-24 11:00:00,1.5033296,93.814,11.55,1012.742,77.76056,0.0,0.0,0.0,7.8,0.0,0.0, +2024-07-24 12:00:00,1.5132746,82.40546,10.3,1012.9024,81.6584,0.0,0.0,0.0,7.3,0.0,0.0, +2024-07-24 13:00:00,1.6124516,82.875084,10.05,1012.9937,81.90544,0.0,0.0,0.0,7.1,0.0,0.0, +2024-07-24 14:00:00,1.3000001,67.3801,10.45,1013.10516,79.47436,0.0,0.0,0.0,7.05,0.0,0.0, +2024-07-24 15:00:00,1.0,53.13002,10.65,1013.11127,77.62061,0.0,0.0,0.0,6.9,0.0,0.0, +2024-07-24 16:00:00,1.1313709,44.999897,10.7,1013.11285,76.046585,0.0,0.0,0.0,6.65,0.0,0.0, +2024-07-24 17:00:00,1.56205,39.805527,10.4,1012.70703,77.31539,0.0,0.0,0.0,6.6,0.0,0.0, +2024-07-24 18:00:00,1.3601471,36.027473,10.05,1012.3988,79.68946,0.0,0.0,0.0,6.7,0.0,0.0, +2024-07-24 19:00:00,1.2806249,38.65983,10.05,1012.0022,80.79074,0.0,0.0,0.0,6.9,0.0,0.0, +2024-07-24 20:00:00,1.6124516,29.744795,10.1,1011.9046,81.35308,0.0,0.0,0.0,7.05,0.0,0.0, +2024-07-24 21:00:00,2.1540658,21.801476,10.0,1011.7035,83.02757,0.0,0.0,0.0,7.25,0.0,0.0, +2024-07-24 22:00:00,2.147091,27.758451,9.9,1011.7994,84.15839,0.0,0.0,0.0,7.35,0.0,0.0, +2024-07-24 23:00:00,1.7492856,30.963696,9.75,1012.1916,85.88352,0.0,0.0,0.0,7.5,0.0,0.1, +2024-07-25 00:00:00,2.2472203,20.854538,11.15,1012.7299,83.73306,30.0,145.34552,15.0,8.5,0.0,0.1, +2024-07-25 01:00:00,1.6970563,44.999897,12.9,1013.17926,87.94178,124.0,235.71815,63.0,10.95,0.0,0.3, +2024-07-25 02:00:00,2.996665,334.2901,14.8,1013.43414,82.78028,303.0,456.82983,107.0,11.9,0.0,0.0, +2024-07-25 03:00:00,3.748333,313.91916,15.8,1013.2654,79.18246,354.0,384.4648,139.0,12.2,0.0,0.1, +2024-07-25 04:00:00,4.1629314,294.10223,16.85,1012.70123,74.30516,529.0,568.36066,165.0,12.25,0.0,0.0, +2024-07-25 05:00:00,4.104875,272.79263,17.15,1011.9165,68.93213,562.0,640.0204,135.0,11.4,0.0,0.0, +2024-07-25 06:00:00,4.1231055,255.96373,17.3,1011.42505,63.89299,542.0,622.66766,145.0,10.4,0.0,0.1, +2024-07-25 07:00:00,4.4944406,249.14546,17.4,1011.2296,61.19913,469.0,641.15,114.0,9.85,0.0,0.0, +2024-07-25 08:00:00,4.648656,251.1752,17.2,1011.12463,60.13418,328.0,555.5266,94.0,9.4,0.0,0.1, +2024-07-25 09:00:00,3.9849718,252.47433,16.45,1011.49945,65.873276,158.0,381.22867,63.0,10.05,0.0,0.0, +2024-07-25 10:00:00,3.3734255,258.0239,15.7,1011.6759,65.93317,26.0,122.407104,14.0,9.35,0.0,0.0, +2024-07-25 11:00:00,3.0066593,266.186,15.45,1012.16406,66.10163,0.0,0.0,0.0,9.15,0.0,0.0, +2024-07-25 12:00:00,2.570992,256.50424,15.0,1012.3495,67.12871,0.0,0.0,0.0,8.95,0.0,0.0, +2024-07-25 13:00:00,2.6476402,259.1145,14.95,1012.34784,65.327835,0.0,0.0,0.0,8.5,0.0,0.0, +2024-07-25 14:00:00,3.4669871,236.76828,15.2,1012.3551,65.82546,0.0,0.0,0.0,8.85,0.0,0.0, +2024-07-25 15:00:00,3.3600597,233.47105,14.95,1012.44696,70.120026,0.0,0.0,0.0,9.55,0.0,0.0, +2024-07-25 16:00:00,2.6400757,232.69597,14.5,1012.33453,72.9143,0.0,0.0,0.0,9.7,0.0,0.0, +2024-07-25 17:00:00,2.0518284,226.97493,14.1,1012.1245,76.0892,0.0,0.0,0.0,9.95,0.0,0.0, +2024-07-25 18:00:00,2.7202942,233.97253,12.7,1012.0825,82.521225,0.0,0.0,0.0,9.8,0.0,0.1, +2024-07-25 19:00:00,3.0870697,245.09526,11.85,1011.7597,82.69317,0.0,0.0,0.0,9.0,0.0,0.0, +2024-07-25 20:00:00,2.6925821,254.93146,12.65,1011.68427,80.87027,0.0,0.0,0.0,9.45,0.0,0.0, +2024-07-25 21:00:00,2.6925824,248.19853,12.35,1011.6754,81.102264,0.0,0.0,0.0,9.2,0.0,0.0, +2024-07-25 22:00:00,2.5553863,239.42085,12.8,1011.8874,80.61949,0.0,0.0,0.0,9.55,0.0,0.0, +2024-07-25 23:00:00,1.3000001,202.6199,15.45,1012.3624,67.22295,0.0,0.0,0.0,9.4,0.0,0.1, +2024-07-26 00:00:00,1.104536,84.805664,13.8,1013.00793,84.040375,29.0,134.19444,15.0,11.15,0.0,0.1, +2024-07-26 01:00:00,2.9068885,3.9451082,15.6,1013.5569,78.63391,172.0,386.88995,71.0,11.9,0.0,0.0, +2024-07-26 02:00:00,2.7856774,338.9624,17.15,1013.89984,73.38698,238.0,201.59676,151.0,12.35,0.0,0.0, +2024-07-26 03:00:00,3.4713109,228.50363,17.65,1014.0136,64.611855,273.0,110.337105,211.0,10.9,0.0,0.2, +2024-07-26 04:00:00,4.263801,230.7106,17.9,1013.8226,65.312546,545.0,659.15094,121.0,11.3,0.0,0.1, +2024-07-26 05:00:00,4.0249224,243.43501,18.0,1013.42883,64.68852,598.0,707.438,124.0,11.25,0.0,0.1, +2024-07-26 06:00:00,3.8948684,240.80261,17.95,1013.2289,65.107445,522.0,588.69226,145.0,11.3,0.0,0.4, +2024-07-26 07:00:00,3.8832977,235.49141,17.8,1013.3236,66.38057,439.0,576.9159,118.0,11.45,0.0,0.2, +2024-07-26 08:00:00,3.5468295,229.574,17.2,1013.6039,68.487434,305.0,505.00327,91.0,11.35,0.0,0.1, +2024-07-26 09:00:00,2.408319,221.63345,16.5,1013.9799,75.22945,161.0,393.6377,62.0,12.1,0.0,0.0, +2024-07-26 10:00:00,2.1540658,201.80147,14.05,1014.20514,87.465416,31.0,161.3299,15.0,12.0,0.0,0.0, +2024-07-26 11:00:00,1.811077,173.6599,14.45,1014.7128,82.46448,0.0,0.0,0.0,11.5,0.0,0.0, +2024-07-26 12:00:00,1.56205,129.80553,14.05,1014.8993,82.9629,0.0,0.0,0.0,11.2,0.0,0.0, +2024-07-26 13:00:00,1.5811388,71.564964,11.7,1014.92773,90.519745,0.0,0.0,0.0,10.2,0.0,0.0, +2024-07-26 14:00:00,1.2206556,55.0079,12.35,1015.04675,89.072105,0.0,0.0,0.0,10.6,0.0,0.0, +2024-07-26 15:00:00,1.7804494,51.842735,11.35,1014.9172,91.7143,0.0,0.0,0.0,10.05,0.0,0.0, +2024-07-26 16:00:00,2.0808651,54.782326,10.95,1014.9052,91.997246,0.0,0.0,0.0,9.7,0.0,0.0, +2024-07-26 17:00:00,2.2472205,57.724377,10.8,1014.9004,92.2974,0.0,0.0,0.0,9.6,0.0,0.0, +2024-07-26 18:00:00,2.1931713,65.77226,10.6,1015.1918,91.976006,0.0,0.0,0.0,9.35,0.0,0.0, +2024-07-26 19:00:00,2.6000001,67.3801,10.7,1015.0958,91.36587,0.0,0.0,0.0,9.35,0.0,0.0, +2024-07-26 20:00:00,3.1384711,67.52052,10.65,1015.09424,91.3626,0.0,0.0,0.0,9.3,0.0,0.0, +2024-07-26 21:00:00,3.6235344,62.02062,10.45,1015.08813,91.96687,0.0,0.0,0.0,9.2,0.0,0.0, +2024-07-26 22:00:00,4.2190046,58.570484,10.6,1015.39,92.285706,0.0,0.0,0.0,9.4,0.0,0.0, +2024-07-26 23:00:00,4.429447,61.69934,10.75,1015.39484,92.29448,0.0,0.0,0.0,9.55,0.0,0.0, +2024-07-27 00:00:00,4.8764744,61.858498,11.2,1015.6069,92.320724,40.0,189.59238,20.0,10.0,0.0,0.0, +2024-07-27 01:00:00,5.536244,69.92838,12.15,1015.7347,95.804085,148.0,163.24698,105.0,11.5,0.0,0.0, +2024-07-27 02:00:00,4.651881,64.5367,15.15,1015.72546,91.94698,325.0,347.81616,174.0,13.85,0.0,0.0, +2024-07-27 03:00:00,3.4713109,48.503635,17.55,1015.5975,80.468285,526.0,687.1204,138.0,14.15,0.0,0.0, +2024-07-27 04:00:00,3.7215588,30.699654,18.85,1014.8418,69.042725,643.0,863.6124,85.0,13.05,0.0,0.0, +2024-07-27 05:00:00,4.1231055,22.833694,19.75,1013.8757,57.992092,673.0,881.22296,80.0,11.25,0.0,0.0, +2024-07-27 06:00:00,4.1773195,11.04091,20.1,1013.0922,52.56753,639.0,872.11523,78.0,10.1,0.0,0.0, +2024-07-27 07:00:00,3.905125,2.93562,20.25,1012.60077,49.030716,537.0,824.4672,76.0,9.2,0.0,0.0, +2024-07-27 08:00:00,3.4234486,353.29025,19.95,1012.493,54.675266,328.0,494.93814,117.0,10.55,0.0,0.0, +2024-07-27 09:00:00,1.56205,320.1945,18.7,1012.5563,65.484764,146.0,216.69194,91.0,12.1,0.0,0.0, +2024-07-27 10:00:00,2.184033,254.05453,15.25,1012.6543,83.65464,33.0,169.45567,16.0,12.5,0.0,0.0, +2024-07-27 11:00:00,2.8844411,236.3099,14.05,1013.21356,87.75384,0.0,0.0,0.0,12.05,0.0,0.0, +2024-07-27 12:00:00,1.0630146,131.18582,16.85,1013.2962,74.549706,0.0,0.0,0.0,12.3,0.0,0.0, +2024-07-27 13:00:00,1.7720045,73.61038,12.95,1012.98254,85.63838,0.0,0.0,0.0,10.6,0.0,0.0, +2024-07-27 14:00:00,1.5811387,55.304783,13.4,1012.69836,82.05935,0.0,0.0,0.0,10.4,0.0,0.0, +2024-07-27 15:00:00,2.0518284,46.97493,11.05,1012.1317,86.600296,0.0,0.0,0.0,8.9,0.0,0.0, +2024-07-27 16:00:00,2.6907248,41.98713,10.35,1011.714,86.23793,0.0,0.0,0.0,8.15,0.0,0.0, +2024-07-27 17:00:00,3.4409301,35.537766,11.3,1011.04877,75.36808,0.0,0.0,0.0,7.1,0.0,0.0, +2024-07-27 18:00:00,3.0413814,27.40749,11.75,1010.6657,71.91653,0.0,0.0,0.0,6.85,0.0,0.0, +2024-07-27 19:00:00,3.2449963,33.6901,11.4,1010.3579,73.347015,0.0,0.0,0.0,6.8,0.0,0.0, +2024-07-27 20:00:00,3.8587563,31.218353,11.35,1009.9596,72.83604,0.0,0.0,0.0,6.65,0.0,0.0, +2024-07-27 21:00:00,4.1785164,21.037588,11.7,1009.67267,68.05382,0.0,0.0,0.0,6.0,0.0,0.0, +2024-07-27 22:00:00,4.2720017,16.313938,11.95,1009.6803,65.11412,0.0,0.0,0.0,5.6,0.0,0.0, +2024-07-27 23:00:00,4.148494,15.376317,11.8,1009.8742,65.761154,0.0,0.0,0.0,5.6,0.0,0.0, +2024-07-28 00:00:00,4.7127485,17.281584,12.6,1010.0965,67.773766,45.0,262.43726,17.0,6.8,0.0,0.0, +2024-07-28 01:00:00,5.3366656,12.99463,15.4,1009.88214,73.319786,208.0,583.0845,53.0,10.65,0.0,0.0, +2024-07-28 02:00:00,4.90408,357.66275,17.8,1009.7535,68.60803,378.0,686.82825,78.0,11.95,0.0,0.0, +2024-07-28 03:00:00,5.95399,330.85202,19.05,1009.69037,65.55978,482.0,662.55444,106.0,12.45,0.0,0.0, +2024-07-28 04:00:00,7.7781744,315.0001,18.85,1009.18884,66.82007,515.0,577.76807,140.0,12.55,0.0,0.5, +2024-07-28 05:00:00,7.0007143,315.57864,18.3,1008.6771,75.037834,419.0,361.0115,175.0,13.8,0.0,0.2, +2024-07-28 06:00:00,7.0007143,314.42133,19.05,1008.00446,71.367386,512.0,575.7091,140.0,13.75,0.0,0.0, +2024-07-28 07:00:00,7.224957,318.36655,18.8,1007.9972,71.55336,491.0,701.1734,97.0,13.55,0.0,0.0, +2024-07-28 08:00:00,7.242237,305.4458,18.75,1008.2935,66.36213,329.0,582.9047,79.0,12.35,0.0,0.1, +2024-07-28 09:00:00,6.88767,295.82092,17.55,1008.75476,72.26365,122.0,242.05592,60.0,12.5,0.0,0.1, +2024-07-28 10:00:00,4.6669044,315.0001,17.05,1009.0377,76.814156,25.0,118.26337,13.0,12.95,0.0,0.0, +2024-07-28 11:00:00,3.940812,324.2932,16.65,1009.1252,76.49994,0.0,0.0,0.0,12.5,0.0,0.0, +2024-07-28 12:00:00,3.4669871,326.76828,16.1,1009.20825,77.93562,0.0,0.0,0.0,12.25,0.0,0.0, +2024-07-28 13:00:00,4.002499,347.00537,15.95,1009.4024,80.513885,0.0,0.0,0.0,12.6,0.0,0.0, +2024-07-28 14:00:00,4.4011364,1.3019345,15.35,1009.2856,83.66626,0.0,0.0,0.0,12.6,0.0,0.0, +2024-07-28 15:00:00,4.816638,4.763556,14.95,1009.07544,84.17113,0.0,0.0,0.0,12.3,0.0,0.0, +2024-07-28 16:00:00,4.704253,357.5634,15.05,1008.68164,83.90651,0.0,0.0,0.0,12.35,0.0,0.0, +2024-07-28 17:00:00,5.001,1.1457417,15.0,1008.383,84.73121,0.0,0.0,0.0,12.45,0.0,0.0, +2024-07-28 18:00:00,4.20119,1.3638979,14.9,1008.2806,85.55851,0.0,0.0,0.0,12.5,0.0,0.0, +2024-07-28 19:00:00,4.104875,357.20734,15.4,1008.09717,83.39835,0.0,0.0,0.0,12.6,0.0,0.0, +2024-07-28 20:00:00,2.915476,354.09393,14.8,1008.1786,86.11134,0.0,0.0,0.0,12.5,0.0,0.0, +2024-07-28 21:00:00,3.6055512,356.82022,15.05,1007.98755,83.90651,0.0,0.0,0.0,12.35,0.0,0.0, +2024-07-28 22:00:00,3.1780496,347.27563,14.9,1008.18146,84.72028,0.0,0.0,0.0,12.35,0.0,0.0, +2024-07-28 23:00:00,3.3,360.0,14.55,1008.56793,85.24118,0.0,0.0,0.0,12.1,0.0,0.0, +2024-07-29 00:00:00,3.535534,351.87,14.9,1008.8756,86.40404,30.0,111.180046,18.0,12.65,0.0,0.3, +2024-07-29 01:00:00,4.3737855,349.46088,16.35,1008.9183,87.39014,129.0,219.88283,70.0,14.25,0.0,0.7, +2024-07-29 02:00:00,3.6769552,337.6198,17.05,1009.0377,84.40592,186.0,170.64354,111.0,14.4,0.0,0.7, +2024-07-29 03:00:00,5.7801385,322.73352,18.0,1008.6686,83.9698,359.0,371.67752,147.0,15.25,0.0,0.4, +2024-07-29 04:00:00,3.8948684,330.8026,18.05,1008.3724,85.05954,352.0,246.92192,191.0,15.5,0.0,0.5, +2024-07-29 05:00:00,5.0537114,297.072,17.7,1007.4697,86.12124,275.0,73.65167,225.0,15.35,0.0,0.4, +2024-07-29 06:00:00,6.155485,313.0251,18.05,1007.1823,82.10755,274.0,158.68452,171.0,14.95,0.0,1.0, +2024-07-29 07:00:00,5.2009616,307.97165,18.15,1007.4827,85.34287,343.0,258.54337,197.0,15.65,0.0,0.2, +2024-07-29 08:00:00,6.726812,311.98712,17.4,1008.05615,85.26451,222.0,159.9191,153.0,14.9,0.0,0.2, +2024-07-29 09:00:00,4.8104053,313.31537,16.9,1008.3391,89.43173,124.0,147.02203,86.0,15.15,0.0,1.7, +2024-07-29 10:00:00,5.920304,322.54935,16.05,1009.0086,93.49376,12.0,0.0,12.0,15.0,0.0,0.4, +2024-07-29 11:00:00,4.2801867,322.59457,15.7,1009.6926,94.9949,0.0,0.0,0.0,14.9,0.0,7.1, +2024-07-29 12:00:00,4.5793014,328.39255,15.95,1010.19574,93.790245,0.0,0.0,0.0,14.95,0.0,12.1, +2024-07-29 13:00:00,3.2695565,293.4287,16.55,1009.9157,91.441,0.0,0.0,0.0,15.15,0.0,12.0, +2024-07-29 14:00:00,2.1377556,280.78424,16.35,1010.20746,93.8088,0.0,0.0,0.0,15.35,0.0,0.1, +2024-07-29 15:00:00,1.5033296,266.186,16.15,1010.6973,93.79954,0.0,0.0,0.0,15.15,0.0,1.0, +2024-07-29 16:00:00,1.2727922,315.0001,15.95,1010.6916,95.61654,0.0,0.0,0.0,15.25,0.0,0.2, +2024-07-29 17:00:00,1.0,323.13,15.75,1010.6856,95.60989,0.0,0.0,0.0,15.05,0.0,0.2, +2024-07-29 18:00:00,1.264911,18.435053,15.0,1010.66376,95.276184,0.0,0.0,0.0,14.25,0.0,0.1, +2024-07-29 19:00:00,1.8788295,25.201094,14.5,1010.3513,94.94928,0.0,0.0,0.0,13.7,0.0,0.0, +2024-07-29 20:00:00,1.9209373,38.65983,14.2,1010.2433,94.62903,0.0,0.0,0.0,13.35,0.0,0.0, +2024-07-29 21:00:00,1.9849433,40.9143,13.9,1010.4327,94.616806,0.0,0.0,0.0,13.05,0.0,0.0, +2024-07-29 22:00:00,2.1931713,43.152412,13.45,1010.9152,95.22023,0.0,0.0,0.0,12.7,0.0,0.0, +2024-07-29 23:00:00,2.2627418,44.999897,13.15,1011.30286,95.83614,0.0,0.0,0.0,12.5,0.0,0.0, +2024-07-30 00:00:00,2.8999999,46.39711,13.4,1011.80597,96.789406,38.0,119.033485,25.0,12.9,0.0,0.0, +2024-07-30 01:00:00,2.4839485,40.10085,15.4,1012.06366,98.724525,166.0,214.10504,108.0,15.2,0.0,0.0, +2024-07-30 02:00:00,2.2203603,35.837746,17.85,1012.2343,96.89639,311.0,287.1341,184.0,17.35,0.0,0.0, +2024-07-30 03:00:00,1.2369317,14.036275,19.65,1011.98865,77.96258,504.0,673.2565,118.0,15.7,0.0,0.0, +2024-07-30 04:00:00,1.421267,309.28937,20.75,1011.5241,68.08605,611.0,780.0858,100.0,14.65,0.0,0.0, +2024-07-30 05:00:00,2.109502,264.55975,21.05,1010.8381,66.41166,634.0,747.90753,124.0,14.55,0.0,0.1, +2024-07-30 06:00:00,2.6925824,248.19853,20.3,1010.2218,75.60874,562.0,696.2753,108.0,15.85,0.0,0.0, +2024-07-30 07:00:00,2.1540658,248.19853,19.8,1010.30707,76.99366,457.0,597.3511,118.0,15.65,0.0,0.0, +2024-07-30 08:00:00,1.9416488,214.50858,19.45,1010.69354,74.986374,315.0,513.7582,92.0,14.9,0.0,0.0, +2024-07-30 09:00:00,1.8601075,216.25392,18.65,1011.06744,81.395805,187.0,486.9822,60.0,15.4,0.0,0.0, +2024-07-30 10:00:00,1.6492423,194.03627,16.85,1011.61035,89.14084,36.0,183.11362,17.0,15.05,0.0,0.0, +2024-07-30 11:00:00,0.8062258,82.875084,17.65,1012.2286,85.565125,0.0,0.0,0.0,15.2,0.0,0.0, +2024-07-30 12:00:00,1.7029387,86.63361,14.9,1012.34625,93.13461,0.0,0.0,0.0,13.8,0.0,0.0, +2024-07-30 13:00:00,1.4866068,42.27363,15.3,1012.45715,90.476074,0.0,0.0,0.0,13.75,0.0,0.0, +2024-07-30 14:00:00,1.0630146,48.814175,14.85,1012.2457,92.829956,0.0,0.0,0.0,13.7,0.0,0.0, +2024-07-30 15:00:00,0.86023253,54.46224,14.25,1012.0297,93.10102,0.0,0.0,0.0,13.15,0.0,0.0, +2024-07-30 16:00:00,1.0,53.13002,13.8,1011.7189,92.46978,0.0,0.0,0.0,12.6,0.0,0.0, +2024-07-30 17:00:00,1.029563,60.94549,13.4,1010.9135,92.14365,0.0,0.0,0.0,12.15,0.0,0.0, +2024-07-30 18:00:00,1.3892444,59.743652,13.05,1010.5065,92.42723,0.0,0.0,0.0,11.85,0.0,0.0, +2024-07-30 19:00:00,2.0248458,57.094753,12.75,1010.1011,93.02261,0.0,0.0,0.0,11.65,0.0,0.0, +2024-07-30 20:00:00,2.302173,55.6196,13.2,1010.01514,92.43577,0.0,0.0,0.0,12.0,0.0,0.0, +2024-07-30 21:00:00,2.280351,52.124958,13.0,1010.00916,93.65073,0.0,0.0,0.0,12.0,0.0,0.0, +2024-07-30 22:00:00,2.5455844,44.999897,12.65,1009.8995,94.87774,0.0,0.0,0.0,11.85,0.0,0.0, +2024-07-30 23:00:00,3.4409301,35.537766,12.8,1009.9043,96.14057,0.0,0.0,0.0,12.2,0.0,0.0, +2024-07-31 00:00:00,4.104875,34.07725,13.4,1010.02106,97.74293,38.0,108.567085,26.0,13.05,0.0,0.0, +2024-07-31 01:00:00,5.140039,37.092915,15.75,1009.8923,96.53608,172.0,223.00441,111.0,15.2,0.0,0.0, +2024-07-31 02:00:00,4.2059484,18.00426,17.85,1010.05255,93.284004,347.0,422.32272,159.0,16.75,0.0,0.0, +2024-07-31 03:00:00,4.90408,2.3372545,19.95,1009.716,81.56224,546.0,794.6758,88.0,16.7,0.0,0.0, +2024-07-31 04:00:00,5.8189344,340.9422,21.05,1008.8545,71.50619,634.0,808.3489,102.0,15.7,0.0,0.0, +2024-07-31 05:00:00,6.0901566,330.4886,21.7,1007.18677,63.613117,613.0,722.6595,118.0,14.5,0.0,0.0, +2024-07-31 06:00:00,6.4070277,325.8138,22.1,1006.30554,60.297832,639.0,851.882,81.0,14.05,0.0,0.0, +2024-07-31 07:00:00,6.6287255,326.07016,21.9,1006.00226,58.513615,547.0,829.354,74.0,13.4,0.0,0.0, +2024-07-31 08:00:00,6.3655324,313.72705,21.25,1006.47986,62.898937,391.0,728.27094,73.0,13.9,0.0,0.0, +2024-07-31 09:00:00,6.989278,303.91745,19.55,1007.12616,76.46287,167.0,418.0726,57.0,15.3,0.0,0.0, +2024-07-31 10:00:00,6.5,306.86996,18.85,1007.40375,79.61459,30.0,123.92323,17.0,15.25,0.0,0.0, +2024-07-31 11:00:00,6.741661,302.2756,17.55,1007.76306,85.00643,0.0,0.0,0.0,15.0,0.0,1.0, +2024-07-31 12:00:00,7.6216793,308.0728,17.0,1008.54034,91.762634,0.0,0.0,0.0,15.65,0.0,0.5, +2024-07-31 13:00:00,8.13941,296.25018,16.65,1008.2327,91.154144,0.0,0.0,0.0,15.2,0.0,0.8, +2024-07-31 14:00:00,6.021628,305.53775,17.4,1008.2545,89.18426,0.0,0.0,0.0,15.6,0.0,0.2, +2024-07-31 15:00:00,6.3906183,290.13638,16.7,1008.53174,88.84246,0.0,0.0,0.0,14.85,0.0,0.4, +2024-07-31 16:00:00,6.3007936,269.09064,16.45,1008.82196,89.10911,0.0,0.0,0.0,14.65,0.0,0.2, +2024-07-31 17:00:00,6.041523,245.55606,16.2,1009.013,89.956635,0.0,0.0,0.0,14.55,0.0,0.1, +2024-07-31 18:00:00,7.738863,237.13132,16.2,1009.50885,83.4922,0.0,0.0,0.0,13.4,0.0,0.5, +2024-07-31 19:00:00,7.496666,223.91916,15.45,1010.0816,86.17632,0.0,0.0,0.0,13.15,0.0,1.2, +2024-07-31 20:00:00,7.840918,217.74687,15.45,1010.57745,81.51078,0.0,0.0,0.0,12.3,0.0,0.6, +2024-07-31 21:00:00,7.545197,214.74324,15.5,1011.17413,71.88713,0.0,0.0,0.0,10.45,0.0,0.1, +2024-07-31 22:00:00,6.6370173,210.81564,15.45,1011.8666,66.77243,0.0,0.0,0.0,9.3,0.0,0.0, +2024-07-31 23:00:00,6.0373836,206.56499,14.95,1012.24866,60.827045,0.0,0.0,0.0,7.45,0.0,0.0, +2024-08-01 00:00:00,5.571355,201.03758,14.8,1012.93835,61.20812,48.0,241.30112,21.0,7.4,0.0,0.0, +2024-08-01 01:00:00,6.0373836,206.56499,16.15,1013.3748,58.675755,224.0,590.0126,61.0,8.05,0.0,0.0, +2024-08-01 02:00:00,6.1684685,199.90384,16.8,1013.98883,50.988182,422.0,787.7788,69.0,6.6,0.0,0.0, +2024-08-01 03:00:00,6.113101,195.17297,17.2,1014.09973,50.399986,535.0,731.7722,111.0,6.8,0.0,0.0, +2024-08-01 04:00:00,5.824946,191.88864,17.1,1013.8983,52.666477,462.0,391.6675,203.0,7.35,0.0,0.0, +2024-08-01 05:00:00,5.0635953,189.0902,17.25,1013.20856,53.066917,555.0,514.46326,201.0,7.6,0.0,0.0, +2024-08-01 06:00:00,4.7518415,188.47105,17.5,1012.72003,51.001934,608.0,747.66583,116.0,7.25,0.0,0.0, +2024-08-01 07:00:00,5.10392,177.7543,17.15,1013.2057,49.52818,494.0,612.3745,143.0,6.5,0.0,0.0, +2024-08-01 08:00:00,4.707441,167.73524,16.65,1013.4885,51.653202,363.0,607.82465,96.0,6.65,0.0,0.0, +2024-08-01 09:00:00,3.8626416,158.74942,15.7,1013.85754,59.368702,201.0,531.1676,60.0,7.8,0.0,0.0, +2024-08-01 10:00:00,3.5846896,149.8587,14.5,1014.21857,62.61758,36.0,169.7238,18.0,7.45,0.0,0.0, +2024-08-01 11:00:00,3.3421547,141.07245,13.85,1014.5958,65.086494,0.0,0.0,0.0,7.4,0.0,0.0, +2024-08-01 12:00:00,3.3301651,131.34769,13.2,1014.97296,67.89863,0.0,0.0,0.0,7.4,0.0,0.0, +2024-08-01 13:00:00,3.275668,121.26367,12.2,1015.5379,69.10103,0.0,0.0,0.0,6.7,0.0,0.0, +2024-08-01 14:00:00,3.5846896,112.98875,11.8,1015.6251,68.78253,0.0,0.0,0.0,6.25,0.0,0.0, +2024-08-01 15:00:00,3.9560082,110.72565,11.4,1015.613,68.938576,0.0,0.0,0.0,5.9,0.0,0.0, +2024-08-01 16:00:00,3.956008,106.14441,10.85,1015.2986,69.78781,0.0,0.0,0.0,5.55,0.0,0.0, +2024-08-01 17:00:00,3.981206,101.59215,10.3,1015.0837,71.1465,0.0,0.0,0.0,5.3,0.0,0.0, +2024-08-01 18:00:00,4.110961,94.18484,9.65,1014.86536,73.28329,0.0,0.0,0.0,5.1,0.0,0.0, +2024-08-01 19:00:00,4.4011364,91.301926,9.35,1014.6579,73.998184,0.0,0.0,0.0,4.95,0.0,0.0, +2024-08-01 20:00:00,4.6010866,88.75467,9.35,1014.4596,72.71952,0.0,0.0,0.0,4.7,0.0,0.0, +2024-08-01 21:00:00,4.925444,84.17376,9.15,1014.5526,72.93688,0.0,0.0,0.0,4.55,0.0,0.0, +2024-08-01 22:00:00,5.0159745,85.42616,8.95,1014.7445,72.899994,0.0,0.0,0.0,4.35,0.0,0.0, +2024-08-01 23:00:00,5.234501,83.41815,8.65,1015.0327,73.357216,0.0,0.0,0.0,4.15,0.0,0.0, +2024-08-02 00:00:00,5.5226803,84.805664,9.3,1015.64764,73.98929,54.0,300.07132,20.0,4.9,0.0,0.0, +2024-08-02 01:00:00,5.414795,94.23632,11.4,1016.307,72.84519,238.0,652.11896,56.0,6.7,0.0,0.0, +2024-08-02 02:00:00,5.261178,98.74608,13.65,1016.474,67.530525,425.0,784.70416,71.0,7.75,0.0,0.0, +2024-08-02 03:00:00,5.4129477,101.72509,15.4,1015.832,57.49929,576.0,849.6687,81.0,7.05,0.0,0.0, +2024-08-02 04:00:00,4.295346,102.09474,16.3,1014.8667,49.12489,672.0,886.38696,83.0,5.6,0.0,0.0, +2024-08-02 05:00:00,3.939543,113.962494,16.75,1013.78894,49.41875,709.0,911.3432,79.0,6.1,0.0,0.0, +2024-08-02 06:00:00,3.7735925,122.00535,17.05,1013.1036,46.51639,624.0,723.0052,146.0,5.5,0.0,0.0, +2024-08-02 07:00:00,3.9824615,128.8845,16.9,1012.8017,47.28723,517.0,666.5784,133.0,5.6,0.0,0.0, +2024-08-02 08:00:00,4.263801,129.2894,16.5,1012.5916,48.50358,400.0,699.21515,91.0,5.6,0.0,0.0, +2024-08-02 09:00:00,3.679674,137.20262,15.45,1012.9574,56.923878,201.0,425.66425,87.0,6.95,0.0,0.0, +2024-08-02 10:00:00,3.5510561,147.65259,13.85,1013.4059,59.119694,39.0,130.5777,25.0,6.0,0.0,0.0, +2024-08-02 11:00:00,3.8275318,146.7251,13.1,1013.9785,59.345634,0.0,0.0,0.0,5.35,0.0,0.0, +2024-08-02 12:00:00,4.104875,145.92276,12.4,1014.25507,62.12866,0.0,0.0,0.0,5.35,0.0,0.0, +2024-08-02 13:00:00,4.2520585,131.18582,11.25,1014.31915,62.94946,0.0,0.0,0.0,4.45,0.0,0.0, +2024-08-02 14:00:00,4.3416586,128.45374,10.95,1014.2112,60.283493,0.0,0.0,0.0,3.55,0.0,0.0, +2024-08-02 15:00:00,4.1617303,125.21768,10.8,1014.30554,59.192814,0.0,0.0,0.0,3.15,0.0,0.0, +2024-08-02 16:00:00,4.1340055,122.15227,10.45,1014.295,60.374424,0.0,0.0,0.0,3.1,0.0,0.0, +2024-08-02 17:00:00,4.2953463,114.775116,10.0,1014.1822,62.657593,0.0,0.0,0.0,3.2,0.0,0.0, +2024-08-02 18:00:00,4.2544093,113.55228,9.85,1013.97906,63.289906,0.0,0.0,0.0,3.2,0.0,0.0, +2024-08-02 19:00:00,4.3081317,111.801476,9.7,1013.7763,63.929363,0.0,0.0,0.0,3.2,0.0,0.0, +2024-08-02 20:00:00,4.365776,110.09532,9.55,1013.37494,63.89494,0.0,0.0,0.0,3.05,0.0,0.0, +2024-08-02 21:00:00,4.7127485,107.281586,9.4,1013.17224,64.08697,0.0,0.0,0.0,2.95,0.0,0.0, +2024-08-02 22:00:00,4.6572523,104.93147,9.15,1013.46204,65.17411,0.0,0.0,0.0,2.95,0.0,0.0, +2024-08-02 23:00:00,4.3965893,107.19863,8.8,1013.8478,66.967476,0.0,0.0,0.0,3.0,0.0,0.0, +2024-08-03 00:00:00,4.464303,105.59287,9.4,1014.4611,69.25278,54.0,296.24957,20.0,4.05,0.0,0.0, +2024-08-03 01:00:00,4.197618,102.38075,11.6,1014.23083,68.03301,241.0,659.55695,55.0,5.9,0.0,0.0, +2024-08-03 02:00:00,3.3241541,105.7087,13.75,1014.4937,65.73455,429.0,794.7275,68.0,7.45,0.0,0.0, +2024-08-03 03:00:00,2.6000001,112.61991,15.7,1014.3534,62.893253,578.0,856.9096,76.0,8.65,0.0,0.0, +2024-08-03 04:00:00,1.9104972,132.87889,17.25,1013.9027,61.163963,673.0,886.5098,81.0,9.7,0.0,0.0, +2024-08-03 05:00:00,2.1540658,158.19853,18.25,1013.1383,60.1828,702.0,894.1163,81.0,10.4,0.0,0.0, +2024-08-03 06:00:00,2.5495098,168.69011,18.8,1012.45996,59.715084,665.0,880.67694,80.0,10.8,0.0,0.0, +2024-08-03 07:00:00,3.026549,172.40544,18.95,1012.1668,59.355286,566.0,846.267,76.0,10.85,0.0,0.0, +2024-08-03 08:00:00,3.436568,171.6342,18.7,1012.3579,59.69117,402.0,733.23413,76.0,10.7,0.0,0.0, +2024-08-03 09:00:00,3.8052595,183.01273,17.6,1012.7229,69.70726,216.0,569.9482,62.0,12.0,0.0,0.0, +2024-08-03 10:00:00,4.318565,174.68555,15.9,1013.06995,74.881325,45.0,249.11182,18.0,11.45,0.0,0.0, +2024-08-03 11:00:00,3.9812057,154.72232,14.95,1013.7361,74.96959,0.0,0.0,0.0,10.55,0.0,0.0, +2024-08-03 12:00:00,3.2015622,128.65984,13.55,1013.8928,74.731575,0.0,0.0,0.0,9.15,0.0,0.0, +2024-08-03 13:00:00,3.2893767,109.53674,12.3,1014.54926,72.76077,0.0,0.0,0.0,7.55,0.0,0.0, +2024-08-03 14:00:00,3.354102,100.30479,11.8,1014.63354,71.92592,0.0,0.0,0.0,6.9,0.0,0.0, +2024-08-03 15:00:00,3.7013512,91.54813,11.5,1014.92175,68.721176,0.0,0.0,0.0,5.95,0.0,0.0, +2024-08-03 16:00:00,4.204759,87.27374,11.35,1014.81805,66.12044,0.0,0.0,0.0,5.25,0.0,0.0, +2024-08-03 17:00:00,4.609772,86.26868,11.2,1014.5162,64.94715,0.0,0.0,0.0,4.85,0.0,0.0, +2024-08-03 18:00:00,5.0159745,85.42616,10.95,1014.4094,65.345924,0.0,0.0,0.0,4.7,0.0,0.0, +2024-08-03 19:00:00,5.0358715,83.15732,10.5,1014.2965,66.39744,0.0,0.0,0.0,4.5,0.0,0.0, +2024-08-03 20:00:00,5.1623635,81.08515,10.2,1014.1882,66.10018,0.0,0.0,0.0,4.15,0.0,0.0, +2024-08-03 21:00:00,5.217279,77.82856,10.0,1014.083,65.13445,0.0,0.0,0.0,3.75,0.0,0.0, +2024-08-03 22:00:00,4.9040794,73.41259,9.7,1014.2721,65.06732,0.0,0.0,0.0,3.45,0.0,0.0, +2024-08-03 23:00:00,4.9335585,72.299484,9.25,1014.8529,66.82833,0.0,0.0,0.0,3.4,0.0,0.0, +2024-08-04 00:00:00,5.249762,72.25524,9.85,1015.26794,68.86102,57.0,318.2092,20.0,4.4,0.0,0.0, +2024-08-04 01:00:00,4.9396358,68.62931,12.55,1015.25104,70.12496,246.0,673.65125,54.0,7.25,0.0,0.0, +2024-08-04 02:00:00,4.14367,70.253075,15.4,1015.0386,68.12184,437.0,806.6522,68.0,9.55,0.0,0.0, +2024-08-04 03:00:00,3.5341196,64.8852,17.75,1014.7107,58.474083,589.0,870.74695,76.0,9.5,0.0,0.0, +2024-08-04 04:00:00,2.8844411,56.309914,19.05,1014.35156,46.276337,684.0,901.4415,79.0,7.25,0.0,0.0, +2024-08-04 05:00:00,1.3038405,32.471172,19.45,1013.768,45.447582,715.0,908.50305,81.0,7.35,0.0,0.0, +2024-08-04 06:00:00,0.5830952,300.96368,19.65,1013.0795,45.971214,677.0,895.9604,79.0,7.7,0.0,0.0, +2024-08-04 07:00:00,1.2529964,241.38963,19.6,1012.97906,47.38612,576.0,860.8449,75.0,8.1,0.0,0.0, +2024-08-04 08:00:00,3.5846896,210.1413,18.4,1013.14276,58.43706,422.0,791.39166,68.0,10.1,0.0,0.0, +2024-08-04 09:00:00,3.7,198.92474,16.8,1013.493,65.948296,230.0,649.3004,53.0,10.4,0.0,0.0, +2024-08-04 10:00:00,2.0223749,171.46931,14.6,1013.8248,69.34737,48.0,264.69016,19.0,9.05,0.0,0.0, +2024-08-04 11:00:00,2.1931713,155.77226,13.6,1013.9935,73.98869,0.0,0.0,0.0,9.05,0.0,0.0, +2024-08-04 12:00:00,2.0,126.86999,12.6,1014.36017,77.39774,0.0,0.0,0.0,8.75,0.0,0.0, +2024-08-04 13:00:00,2.118962,109.290146,11.75,1014.2353,79.3921,0.0,0.0,0.0,8.3,0.0,0.0, +2024-08-04 14:00:00,2.6076808,94.39862,11.25,1014.22003,78.24597,0.0,0.0,0.0,7.6,0.0,0.0, +2024-08-04 15:00:00,2.5,90.0,10.95,1013.9137,78.73643,0.0,0.0,0.0,7.4,0.0,0.0, +2024-08-04 16:00:00,2.5,90.0,10.8,1013.71063,78.714005,0.0,0.0,0.0,7.25,0.0,0.0, +2024-08-04 17:00:00,2.3,90.0,10.45,1013.4026,79.47436,0.0,0.0,0.0,7.05,0.0,0.0, +2024-08-04 18:00:00,2.7294688,81.57312,10.15,1013.1951,79.43078,0.0,0.0,0.0,6.75,0.0,0.0, +2024-08-04 19:00:00,2.8635643,77.90526,9.7,1012.58655,80.18917,0.0,0.0,0.0,6.45,0.0,0.0, +2024-08-04 20:00:00,2.886174,75.96373,9.2,1012.27356,82.07683,0.0,0.0,0.0,6.3,0.0,0.0, +2024-08-04 21:00:00,2.6683328,77.00539,9.0,1012.16833,82.61891,0.0,0.0,0.0,6.2,0.0,0.0, +2024-08-04 22:00:00,2.7658634,77.4712,9.1,1012.3698,81.21894,0.0,0.0,0.0,6.05,0.0,0.0, +2024-08-04 23:00:00,3.1320918,73.300674,9.0,1012.66406,81.20545,0.0,0.0,0.0,5.95,0.0,0.0, +2024-08-05 00:00:00,3.640055,69.075424,10.1,1012.79694,79.15118,58.0,314.01672,21.0,6.65,0.0,0.0, +2024-08-05 01:00:00,3.354102,63.435013,13.7,1013.3023,74.00622,246.0,662.9537,55.0,9.15,0.0,0.0, +2024-08-05 02:00:00,2.2472205,57.724377,16.5,1013.48413,66.77005,436.0,796.5654,69.0,10.3,0.0,0.0, +2024-08-05 03:00:00,1.4764823,28.30066,18.2,1013.137,58.780273,587.0,864.07007,75.0,10.0,0.0,0.0, +2024-08-05 04:00:00,1.2806249,308.65982,19.1,1012.56775,56.498787,681.0,892.41943,79.0,10.25,0.0,0.0, +2024-08-05 05:00:00,2.1377556,259.21576,19.3,1011.4826,56.548836,711.0,897.0142,82.0,10.45,0.0,0.0, +2024-08-05 06:00:00,3.2557642,227.4896,18.85,1010.7757,61.1305,674.0,885.6926,80.0,11.2,0.0,0.0, +2024-08-05 07:00:00,3.828838,220.76352,18.25,1010.5599,58.989296,572.0,846.16583,77.0,10.1,0.0,0.0, +2024-08-05 08:00:00,2.9832866,219.55963,17.65,1010.9394,58.253475,413.0,744.37054,78.0,9.35,0.0,0.0, +2024-08-05 09:00:00,1.6763055,197.35411,17.1,1011.1215,66.67409,230.0,639.9565,54.0,10.85,0.0,0.0, +2024-08-05 10:00:00,2.1377556,169.21574,14.1,1011.1329,77.371735,48.0,270.88947,18.0,10.2,0.0,0.0, +2024-08-05 11:00:00,1.9104972,132.87889,13.5,1011.61053,77.019196,0.0,0.0,0.0,9.55,0.0,0.0, +2024-08-05 12:00:00,1.9646883,104.743614,12.8,1011.78827,76.13283,0.0,0.0,0.0,8.7,0.0,0.0, +2024-08-05 13:00:00,1.9026297,86.98728,11.7,1012.1515,80.74125,0.0,0.0,0.0,8.5,0.0,0.0, +2024-08-05 14:00:00,1.6124516,82.875084,11.05,1011.9334,82.31372,0.0,0.0,0.0,8.15,0.0,0.0, +2024-08-05 15:00:00,2.118962,70.70986,10.7,1011.3281,82.54971,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-05 16:00:00,2.3259406,64.5367,10.3,1010.91943,82.49941,0.0,0.0,0.0,7.45,0.0,0.0, +2024-08-05 17:00:00,2.9546573,66.03751,10.4,1010.4266,80.01322,0.0,0.0,0.0,7.1,0.0,0.0, +2024-08-05 18:00:00,3.176476,61.821507,10.0,1010.01794,80.78389,0.0,0.0,0.0,6.85,0.0,0.0, +2024-08-05 19:00:00,3.2449963,56.309914,9.75,1009.7129,81.02751,0.0,0.0,0.0,6.65,0.0,0.0, +2024-08-05 20:00:00,3.2202482,53.84173,9.6,1009.3115,81.00713,0.0,0.0,0.0,6.5,0.0,0.0, +2024-08-05 21:00:00,3.1144822,47.602623,9.75,1009.21716,79.64622,0.0,0.0,0.0,6.4,0.0,0.0, +2024-08-05 22:00:00,2.9832866,39.55964,9.95,1009.4215,78.85732,0.0,0.0,0.0,6.45,0.0,0.0, +2024-08-05 23:00:00,2.9068882,26.564985,10.1,1009.7234,77.80187,0.0,0.0,0.0,6.4,0.0,0.0, +2024-08-06 00:00:00,3.49285,13.240531,12.05,1010.3775,72.46685,61.0,326.56754,22.0,7.25,0.0,0.0, +2024-08-06 01:00:00,3.0,360.0,15.35,1011.1697,72.34034,217.0,521.84045,65.0,10.4,0.0,0.0, +2024-08-06 02:00:00,2.9546573,336.0375,17.55,1011.234,65.88946,406.0,685.21857,88.0,11.1,0.0,0.0, +2024-08-06 03:00:00,3.8418746,321.34018,18.55,1010.8662,63.11844,524.0,664.4205,128.0,11.4,0.0,0.0, +2024-08-06 04:00:00,5.0931325,313.4089,19.45,1010.39606,62.699028,624.0,718.2331,137.0,12.15,0.0,0.0, +2024-08-06 05:00:00,5.9464273,312.27362,19.6,1009.9046,63.56204,587.0,587.5439,173.0,12.5,0.0,0.0, +2024-08-06 06:00:00,5.8898215,310.17917,19.95,1009.31934,60.186466,599.0,655.8624,157.0,12.0,0.0,0.0, +2024-08-06 07:00:00,6.0,306.86996,20.0,1009.02313,59.410282,551.0,790.7809,86.0,11.85,0.0,0.0, +2024-08-06 08:00:00,5.8898215,310.17917,19.45,1009.20593,64.57929,387.0,666.96716,85.0,12.6,0.0,0.0, +2024-08-06 09:00:00,5.3037724,314.23618,18.9,1009.3884,67.93355,211.0,537.03485,62.0,12.85,0.0,0.0, +2024-08-06 10:00:00,4.7885275,331.29416,17.55,1009.84564,76.39327,41.0,205.47562,18.0,13.35,0.0,0.0, +2024-08-06 11:00:00,4.6840153,343.8865,16.8,1009.923,80.105225,0.0,0.0,0.0,13.35,0.0,0.0, +2024-08-06 12:00:00,4.704253,357.5634,16.25,1010.10516,83.49804,0.0,0.0,0.0,13.45,0.0,0.0, +2024-08-06 13:00:00,5.1088157,356.6336,16.35,1009.4141,83.78177,0.0,0.0,0.0,13.6,0.0,0.0, +2024-08-06 14:00:00,4.816638,355.23645,16.05,1009.207,84.84542,0.0,0.0,0.0,13.5,0.0,0.0, +2024-08-06 15:00:00,4.4,360.0,15.6,1008.99536,86.4726,0.0,0.0,0.0,13.35,0.0,0.0, +2024-08-06 16:00:00,4.504442,2.5447557,15.45,1008.3959,84.5035,0.0,0.0,0.0,12.85,0.0,0.0, +2024-08-06 17:00:00,4.8010416,1.1934711,15.45,1007.9992,83.404236,0.0,0.0,0.0,12.65,0.0,0.0, +2024-08-06 18:00:00,5.0039983,2.2905633,15.2,1007.89276,86.43349,0.0,0.0,0.0,12.95,0.0,0.0, +2024-08-06 19:00:00,5.3037724,2.1610355,15.25,1007.4978,87.004814,0.0,0.0,0.0,13.1,0.0,0.0, +2024-08-06 20:00:00,5.731492,353.9911,15.95,1007.31995,85.11128,0.0,0.0,0.0,13.45,0.0,0.0, +2024-08-06 21:00:00,5.656854,351.87,16.15,1007.02814,85.13255,0.0,0.0,0.0,13.65,0.0,0.0, +2024-08-06 22:00:00,5.27731,332.9495,16.65,1007.241,83.54469,0.0,0.0,0.0,13.85,0.0,0.0, +2024-08-06 23:00:00,6.723095,300.37906,17.3,1008.0533,88.03983,0.0,0.0,0.0,15.3,0.0,1.2, +2024-08-07 00:00:00,6.76757,288.9705,17.4,1008.6511,92.66922,17.0,24.781088,14.0,16.2,0.0,0.5, +2024-08-07 01:00:00,5.124451,264.40076,19.1,1009.1958,85.9857,160.0,241.06516,89.0,16.7,0.0,0.0, +2024-08-07 02:00:00,6.1684685,253.03377,19.5,1009.90173,80.215675,379.0,579.6612,108.0,16.0,0.0,0.0, +2024-08-07 03:00:00,6.9079666,247.8905,19.6,1010.698,75.25278,485.0,598.79706,126.0,15.1,0.0,0.1, +2024-08-07 04:00:00,6.1326995,245.94266,19.7,1010.4033,72.18369,629.0,765.85645,107.0,14.55,0.0,0.0, +2024-08-07 05:00:00,5.8694124,246.92957,19.6,1010.2021,71.932785,632.0,731.5496,114.0,14.4,0.0,0.0, +2024-08-07 06:00:00,5.507268,240.64233,19.6,1010.0038,71.23838,598.0,673.344,142.0,14.25,0.0,0.0, +2024-08-07 07:00:00,4.924429,240.83249,19.35,1009.8973,70.9614,506.0,598.89716,152.0,13.95,0.0,0.0, +2024-08-07 08:00:00,4.8010416,234.3235,18.9,1010.1818,70.187874,343.0,384.13834,168.0,13.35,0.0,0.0, +2024-08-07 09:00:00,3.6619666,235.0079,18.35,1010.4635,72.40866,150.0,117.90277,117.0,13.3,0.0,0.0, +2024-08-07 10:00:00,2.7294688,241.55717,17.55,1010.73816,71.32104,28.0,0.0,28.0,12.3,0.0,0.0, +2024-08-07 11:00:00,1.8973665,251.56496,16.6,1011.2064,74.0181,0.0,0.0,0.0,11.95,0.0,0.0, +2024-08-07 12:00:00,1.8384776,247.61981,16.3,1011.5942,74.70199,0.0,0.0,0.0,11.8,0.0,0.0, +2024-08-07 13:00:00,1.9723083,239.53453,16.0,1012.2795,76.39619,0.0,0.0,0.0,11.85,0.0,0.0, +2024-08-07 14:00:00,2.9120438,254.05453,14.45,1012.23376,81.11136,0.0,0.0,0.0,11.25,0.0,0.0, +2024-08-07 15:00:00,2.570992,283.49576,14.65,1012.23975,75.420555,0.0,0.0,0.0,10.35,0.0,0.0, +2024-08-07 16:00:00,2.6172504,313.4519,14.0,1012.1213,80.51423,0.0,0.0,0.0,10.7,0.0,0.0, +2024-08-07 17:00:00,2.3086793,265.03033,15.45,1012.16406,75.55325,0.0,0.0,0.0,11.15,0.0,0.0, +2024-08-07 18:00:00,2.2203605,172.23492,14.55,1012.3361,85.80372,0.0,0.0,0.0,12.2,0.0,0.2, +2024-08-07 19:00:00,0.5,53.13002,15.05,1012.2515,83.083496,0.0,0.0,0.0,12.2,0.0,0.1, +2024-08-07 20:00:00,1.2727922,44.999897,13.35,1012.39935,88.5654,0.0,0.0,0.0,11.5,0.0,0.2, +2024-08-07 21:00:00,2.0518284,46.97493,13.0,1012.2898,92.12,0.0,0.0,0.0,11.75,0.0,0.1, +2024-08-07 22:00:00,1.9849433,49.085716,12.6,1012.77374,92.707664,0.0,0.0,0.0,11.45,0.0,0.0, +2024-08-07 23:00:00,1.8439089,49.398785,12.45,1013.26483,91.78265,0.0,0.0,0.0,11.15,0.0,0.0, +2024-08-08 00:00:00,2.7658632,49.398785,13.95,1013.80566,89.49427,56.0,244.42816,26.0,12.25,0.0,0.0, +2024-08-08 01:00:00,2.385372,33.023872,16.65,1014.7777,85.738785,225.0,517.04175,71.0,14.25,0.0,0.0, +2024-08-08 02:00:00,1.104536,354.80566,18.4,1015.2254,75.542854,382.0,568.98914,114.0,14.0,0.0,0.0, +2024-08-08 03:00:00,2.0024984,267.13766,19.2,1015.4467,69.337166,548.0,711.29913,119.0,13.45,0.0,0.0, +2024-08-08 04:00:00,2.8635643,257.90524,19.4,1015.1549,68.92657,615.0,704.9271,132.0,13.55,0.0,0.0, +2024-08-08 05:00:00,3.1384711,247.52052,19.55,1014.66345,66.52997,696.0,836.16223,101.0,13.15,0.0,0.0, +2024-08-08 06:00:00,3.310589,244.98314,19.65,1014.36884,64.62288,678.0,868.424,87.0,12.8,0.0,0.0, +2024-08-08 07:00:00,3.1906114,237.80429,19.55,1014.46515,63.342712,561.0,791.0208,91.0,12.4,0.0,0.0, +2024-08-08 08:00:00,2.9068882,229.18501,19.15,1014.4536,63.045235,413.0,728.70197,79.0,11.95,0.0,0.0, +2024-08-08 09:00:00,1.555635,224.9999,18.35,1014.5295,69.39712,231.0,609.1876,59.0,12.65,0.0,0.0, +2024-08-08 10:00:00,1.5,216.86998,18.1,1014.7209,65.57206,52.0,279.90063,20.0,11.55,0.0,0.0, +2024-08-08 11:00:00,1.8027756,183.17976,16.9,1015.38007,68.88223,0.0,0.0,0.0,11.15,0.0,0.0, +2024-08-08 12:00:00,1.7804494,141.84273,15.4,1015.63354,72.590996,0.0,0.0,0.0,10.5,0.0,0.0, +2024-08-08 13:00:00,1.7029387,93.366394,12.4,1015.64325,86.44318,0.0,0.0,0.0,10.2,0.0,0.0, +2024-08-08 14:00:00,1.4317821,77.90526,12.55,1015.6477,87.03653,0.0,0.0,0.0,10.45,0.0,0.0, +2024-08-08 15:00:00,2.0615528,67.16631,11.65,1015.91797,90.214226,0.0,0.0,0.0,10.1,0.0,0.0, +2024-08-08 16:00:00,2.1023796,64.65388,11.45,1015.61456,88.99885,0.0,0.0,0.0,9.7,0.0,0.0, +2024-08-08 17:00:00,2.4351592,70.8209,11.35,1015.31384,88.09878,0.0,0.0,0.0,9.45,0.0,0.0, +2024-08-08 18:00:00,3.231099,68.19853,11.45,1015.1187,88.10758,0.0,0.0,0.0,9.55,0.0,0.0, +2024-08-08 19:00:00,3.4014702,65.695465,11.4,1014.5223,88.99475,0.0,0.0,0.0,9.65,0.0,0.0, +2024-08-08 20:00:00,3.4014702,65.695465,11.35,1014.22314,89.58967,0.0,0.0,0.0,9.7,0.0,0.0, +2024-08-08 21:00:00,3.5846896,67.01126,11.25,1014.12085,90.18488,0.0,0.0,0.0,9.7,0.0,0.0, +2024-08-08 22:00:00,3.7161808,66.19405,11.2,1014.3179,90.181206,0.0,0.0,0.0,9.65,0.0,0.0, +2024-08-08 23:00:00,3.7161808,66.19405,11.3,1014.71735,88.98657,0.0,0.0,0.0,9.55,0.0,0.0, +2024-08-09 00:00:00,4.1146083,64.05776,12.75,1014.95966,84.76483,67.0,353.5632,23.0,10.25,0.0,0.0, +2024-08-09 01:00:00,3.5846896,67.01126,15.35,1015.53284,82.84721,257.0,660.6027,58.0,12.45,0.0,0.0, +2024-08-09 02:00:00,3.5846896,67.01126,17.9,1015.60767,76.44889,446.0,788.08154,72.0,13.7,0.0,0.0, +2024-08-09 03:00:00,3.577709,63.435013,19.5,1015.05884,64.8021,597.0,853.71,79.0,12.7,0.0,0.0, +2024-08-09 04:00:00,3.0610456,51.632477,20.4,1014.19165,58.535015,690.0,879.77747,84.0,12.0,0.0,0.0, +2024-08-09 05:00:00,2.8017852,55.175446,20.9,1013.3135,56.572826,691.0,809.6547,112.0,11.95,0.0,0.0, +2024-08-09 06:00:00,2.0124612,63.435013,21.35,1012.136,55.0315,676.0,845.1568,98.0,11.95,0.0,0.0, +2024-08-09 07:00:00,0.86023253,125.537766,21.3,1011.7379,53.940445,578.0,822.073,87.0,11.6,0.0,0.0, +2024-08-09 08:00:00,2.280351,195.25517,20.55,1011.51843,61.725815,427.0,761.1476,76.0,12.95,0.0,0.0, +2024-08-09 09:00:00,3.640055,200.92458,18.95,1011.2743,75.388725,239.0,642.55194,56.0,14.5,0.0,0.0, +2024-08-09 10:00:00,3.8078866,193.67133,17.0,1011.4162,81.710304,54.0,294.3038,20.0,13.85,0.0,0.0, +2024-08-09 11:00:00,3.224903,172.87508,15.95,1011.6832,84.83458,0.0,0.0,0.0,13.4,0.0,0.0, +2024-08-09 12:00:00,2.4413111,145.0079,14.95,1011.7528,87.26153,0.0,0.0,0.0,12.85,0.0,0.0, +2024-08-09 13:00:00,2.236068,116.56499,13.65,1011.9128,88.590645,0.0,0.0,0.0,11.8,0.0,0.0, +2024-08-09 14:00:00,1.8973665,108.43504,12.45,1011.7775,89.37697,0.0,0.0,0.0,10.75,0.0,0.0, +2024-08-09 15:00:00,1.8439089,102.5288,11.85,1011.56134,89.031494,0.0,0.0,0.0,10.1,0.0,0.0, +2024-08-09 16:00:00,2.5079873,85.42616,11.85,1011.2639,86.96981,0.0,0.0,0.0,9.75,0.0,0.0, +2024-08-09 17:00:00,2.6925821,74.931465,11.5,1010.3608,85.48612,0.0,0.0,0.0,9.15,0.0,0.0, +2024-08-09 18:00:00,3.2893767,70.46326,11.45,1009.66534,82.086075,0.0,0.0,0.0,8.5,0.0,0.0, +2024-08-09 19:00:00,3.7,71.075264,12.0,1008.7895,74.97363,0.0,0.0,0.0,7.7,0.0,0.0, +2024-08-09 20:00:00,3.8626416,68.74943,12.35,1008.4033,70.325935,0.0,0.0,0.0,7.1,0.0,0.0, +2024-08-09 21:00:00,3.577709,63.435013,12.55,1007.9135,66.838524,0.0,0.0,0.0,6.55,0.0,0.0, +2024-08-09 22:00:00,3.1622775,55.304783,12.7,1007.91797,63.723064,0.0,0.0,0.0,6.0,0.0,0.0, +2024-08-09 23:00:00,3.405877,49.76371,13.0,1008.026,60.77934,0.0,0.0,0.0,5.6,0.0,0.0, +2024-08-10 00:00:00,4.1868844,40.15594,14.5,1008.07056,60.71978,69.0,364.51727,23.0,7.0,0.0,0.0, +2024-08-10 01:00:00,5.872819,42.92997,17.25,1008.1509,63.245346,259.0,669.517,55.0,10.2,0.0,0.0, +2024-08-10 02:00:00,4.110961,41.054726,19.8,1007.82764,65.07937,447.0,792.57526,68.0,13.05,0.0,0.0, +2024-08-10 03:00:00,4.7010636,29.29127,22.0,1007.3937,60.27445,597.0,853.46094,76.0,13.95,0.0,0.0, +2024-08-10 04:00:00,4.1761227,16.699326,23.7,1006.35004,56.527596,690.0,880.88434,80.0,14.55,0.0,0.0, +2024-08-10 05:00:00,3.9115217,355.60138,24.8,1005.2893,52.749138,718.0,886.3382,81.0,14.5,0.0,0.0, +2024-08-10 06:00:00,3.6069376,313.87677,24.65,1004.5908,57.125366,680.0,874.46875,79.0,15.6,0.0,0.0, +2024-08-10 07:00:00,4.00125,268.56793,22.45,1004.03406,74.29833,579.0,839.4571,75.0,17.65,0.0,0.0, +2024-08-10 08:00:00,3.7121422,274.63538,21.05,1003.79626,76.69755,426.0,771.63257,68.0,16.8,0.0,0.0, +2024-08-10 09:00:00,4.7010636,299.29126,20.05,1003.8675,75.81049,238.0,640.5219,54.0,15.65,0.0,0.0, +2024-08-10 10:00:00,4.992995,302.7352,18.8,1004.5261,77.5852,54.0,299.84192,19.0,14.8,0.0,0.0, +2024-08-10 11:00:00,3.940812,305.7068,17.95,1005.2952,85.87056,0.0,0.0,0.0,15.55,0.0,0.0, +2024-08-10 12:00:00,3.0610456,321.63248,17.35,1005.47626,90.90871,0.0,0.0,0.0,15.85,0.0,0.0, +2024-08-10 13:00:00,2.4351592,340.8209,16.6,1005.5539,92.625565,0.0,0.0,0.0,15.4,0.0,0.0, +2024-08-10 14:00:00,3.1400635,350.8377,16.45,1005.25195,92.9151,0.0,0.0,0.0,15.3,0.0,0.0, +2024-08-10 15:00:00,3.5510561,350.2725,16.3,1004.9501,93.5059,0.0,0.0,0.0,15.25,0.0,0.0, +2024-08-10 16:00:00,4.3324356,341.14676,16.4,1004.6554,92.02139,0.0,0.0,0.0,15.1,0.0,0.0, +2024-08-10 17:00:00,4.651881,334.53668,16.35,1004.25745,91.13454,0.0,0.0,0.0,14.9,0.0,0.0, +2024-08-10 18:00:00,4.837354,330.25522,16.35,1004.15826,90.25815,0.0,0.0,0.0,14.75,0.0,0.0, +2024-08-10 19:00:00,5.0159745,336.5014,16.45,1003.76447,89.97503,0.0,0.0,0.0,14.8,0.0,0.0, +2024-08-10 20:00:00,5.011986,331.38962,16.8,1003.67535,89.1369,0.0,0.0,0.0,15.0,0.0,0.0, +2024-08-10 21:00:00,5.700877,322.12494,17.5,1003.69556,86.93482,0.0,0.0,0.0,15.3,0.0,0.0, +2024-08-10 22:00:00,6.0141497,317.02136,17.7,1003.70123,91.22222,0.0,0.0,0.0,16.25,0.0,2.5, +2024-08-10 23:00:00,7.2006946,297.27667,18.1,1004.20874,92.70706,0.0,0.0,0.0,16.9,0.0,3.1, +2024-08-11 00:00:00,3.7161808,246.19405,18.3,1004.8095,92.4248,15.0,15.62811,13.0,17.05,0.0,2.3, +2024-08-11 01:00:00,4.68188,250.0168,18.75,1005.9133,91.28951,67.0,61.644966,48.0,17.3,0.0,0.5, +2024-08-11 02:00:00,4.604346,235.6196,18.75,1006.1117,90.71416,130.0,31.129332,115.0,17.2,0.0,0.4, +2024-08-11 03:00:00,4.248529,243.43501,19.6,1006.4335,82.299385,366.0,271.90085,199.0,16.5,0.0,0.1, +2024-08-11 04:00:00,4.924429,240.83249,19.7,1006.5355,78.721214,427.0,278.65613,233.0,15.9,0.0,0.2, +2024-08-11 05:00:00,4.360046,233.39284,18.85,1006.0154,79.870544,223.0,6.922488,218.0,15.3,0.0,0.2, +2024-08-11 06:00:00,3.764306,230.38934,18.75,1005.81415,79.34524,176.0,10.135058,169.0,15.1,0.0,0.1, +2024-08-11 07:00:00,3.2802439,232.43134,18.85,1005.61865,77.34324,223.0,96.10307,165.0,14.8,0.0,0.0, +2024-08-11 08:00:00,3.4132097,238.17259,18.75,1006.0125,76.83072,255.0,237.80739,144.0,14.6,0.0,0.1, +2024-08-11 09:00:00,3.1384711,239.34941,18.4,1006.39905,77.274284,205.0,479.75345,66.0,14.35,0.0,0.0, +2024-08-11 10:00:00,2.5495098,244.44008,17.1,1006.9565,82.25463,46.0,211.98946,21.0,14.05,0.0,0.0, +2024-08-11 11:00:00,1.8973665,251.56496,16.25,1007.4277,87.09849,0.0,0.0,0.0,14.1,0.0,0.1, +2024-08-11 12:00:00,2.2,270.0,14.95,1007.7863,90.45139,0.0,0.0,0.0,13.4,0.0,0.0, +2024-08-11 13:00:00,1.7888545,296.56497,15.65,1007.7078,90.50063,0.0,0.0,0.0,14.1,0.0,0.1, +2024-08-11 14:00:00,2.1260293,311.18582,14.7,1007.38245,91.02565,0.0,0.0,0.0,13.25,0.0,0.1, +2024-08-11 15:00:00,1.56205,320.1945,15.3,1007.49896,90.18262,0.0,0.0,0.0,13.7,0.0,0.1, +2024-08-11 16:00:00,1.7492856,329.03632,15.05,1007.69006,90.753265,0.0,0.0,0.0,13.55,0.0,0.1, +2024-08-11 17:00:00,1.7888545,333.43503,14.95,1007.7863,90.74641,0.0,0.0,0.0,13.45,0.0,0.0, +2024-08-11 18:00:00,1.746425,336.3706,14.6,1007.57764,91.31642,0.0,0.0,0.0,13.2,0.0,0.0, +2024-08-11 19:00:00,2.280351,344.7448,14.85,1007.58514,89.856415,0.0,0.0,0.0,13.2,0.0,0.0, +2024-08-11 20:00:00,1.8027756,340.55988,14.65,1007.48004,89.54836,0.0,0.0,0.0,12.95,0.0,0.0, +2024-08-11 21:00:00,1.746425,346.75946,14.15,1007.46515,87.76279,0.0,0.0,0.0,12.15,0.0,0.0, +2024-08-11 22:00:00,2.5942245,297.55273,13.65,1007.6489,85.99528,0.0,0.0,0.0,11.35,0.0,0.0, +2024-08-11 23:00:00,2.8635643,282.09473,13.6,1008.34155,80.19135,0.0,0.0,0.0,10.25,0.0,0.0, +2024-08-12 00:00:00,1.2806249,321.34018,15.85,1009.0026,75.36971,69.0,323.6097,27.0,11.5,0.0,0.0, +2024-08-12 01:00:00,2.0615528,345.9637,17.45,1009.545,79.93482,207.0,346.38416,99.0,13.95,0.0,0.0, +2024-08-12 02:00:00,1.2083046,294.44394,19.0,1009.9864,72.76126,360.0,415.99405,158.0,14.0,0.0,0.0, +2024-08-12 03:00:00,4.002499,257.00537,19.95,1009.716,61.58789,579.0,758.9296,110.0,12.35,0.0,0.0, +2024-08-12 04:00:00,4.3908997,239.9315,19.15,1009.69324,75.909225,601.0,617.19135,169.0,14.8,0.0,0.1, +2024-08-12 05:00:00,4.1231055,247.1663,19.35,1009.5007,74.96978,656.0,709.4597,141.0,14.8,0.0,0.1, +2024-08-12 06:00:00,3.9446166,239.53453,19.4,1009.3036,73.77931,624.0,665.6235,162.0,14.6,0.0,0.0, +2024-08-12 07:00:00,4.263801,230.7106,19.25,1009.2002,72.336,540.0,680.779,127.0,14.15,0.0,0.0, +2024-08-12 08:00:00,4.5,233.13002,18.95,1009.4892,69.062454,411.0,666.5519,98.0,13.15,0.0,0.0, +2024-08-12 09:00:00,3.538361,227.29063,18.2,1009.7652,69.140495,223.0,520.1913,71.0,12.45,0.0,0.0, +2024-08-12 10:00:00,2.2627418,224.9999,16.7,1010.1184,70.92655,56.0,285.39893,22.0,11.4,0.0,0.0, +2024-08-12 11:00:00,2.9206164,218.04709,14.6,1010.7508,79.00886,0.0,0.0,0.0,11.0,0.0,0.0, +2024-08-12 12:00:00,2.505993,241.38963,16.0,1011.0895,68.7017,0.0,0.0,0.0,10.25,0.0,0.0, +2024-08-12 13:00:00,2.280351,254.74483,16.55,1011.4032,64.5854,0.0,0.0,0.0,9.85,0.0,0.0, +2024-08-12 14:00:00,1.0049876,275.7105,17.75,1011.14056,59.463245,0.0,0.0,0.0,9.75,0.0,0.0, +2024-08-12 15:00:00,0.42426407,44.999897,17.0,1010.9204,62.13937,0.0,0.0,0.0,9.7,0.0,0.0, +2024-08-12 16:00:00,1.5,53.13002,12.35,1010.5848,80.55786,0.0,0.0,0.0,9.1,0.0,0.0, +2024-08-12 17:00:00,1.5264337,58.392544,12.5,1010.49,80.84998,0.0,0.0,0.0,9.3,0.0,0.0, +2024-08-12 18:00:00,1.5652475,63.435013,11.8,1010.36993,84.09188,0.0,0.0,0.0,9.2,0.0,0.0, +2024-08-12 19:00:00,1.431782,65.22488,11.3,1009.95807,86.04319,0.0,0.0,0.0,9.05,0.0,0.0, +2024-08-12 20:00:00,1.4764823,61.69934,10.1,1009.6242,90.09981,0.0,0.0,0.0,8.55,0.0,0.0, +2024-08-12 21:00:00,1.7492856,59.03632,9.35,1009.60144,91.587845,0.0,0.0,0.0,8.05,0.0,0.0, +2024-08-12 22:00:00,1.8867962,57.99466,9.2,1009.89404,91.26723,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-12 23:00:00,1.8867962,57.99466,9.35,1010.2955,89.73771,0.0,0.0,0.0,7.75,0.0,0.0, +2024-08-13 00:00:00,2.6907248,48.01287,11.85,1010.8673,84.38103,75.0,364.6686,27.0,9.3,0.0,0.0, +2024-08-13 01:00:00,3.3286633,32.73523,16.2,1011.2938,78.20708,256.0,577.0024,74.0,12.4,0.0,0.0, +2024-08-13 02:00:00,3.008322,15.42223,18.25,1011.2541,66.914795,424.0,655.9673,103.0,12.0,0.0,0.0, +2024-08-13 03:00:00,2.9529645,331.69934,19.2,1010.88464,60.208,576.0,747.83514,111.0,11.3,0.0,0.0, +2024-08-13 04:00:00,3.5341196,295.1148,19.4,1010.29535,60.454765,563.0,531.4611,189.0,11.55,0.0,0.0, +2024-08-13 05:00:00,4.0804415,287.1028,19.6,1009.8054,60.302486,592.0,555.13965,187.0,11.7,0.0,0.0, +2024-08-13 06:00:00,5.2773094,279.81924,18.75,1009.4836,68.79769,558.0,530.45605,188.0,12.9,0.0,0.1, +2024-08-13 07:00:00,4.588028,290.40997,18.25,1009.2707,73.81968,444.0,452.60446,168.0,13.5,0.0,0.1, +2024-08-13 08:00:00,4.9335585,287.7005,18.2,1009.26935,72.38154,411.0,694.32764,83.0,13.15,0.0,0.5, +2024-08-13 09:00:00,4.9030604,281.76825,17.55,1009.5481,72.73905,210.0,468.325,72.0,12.6,0.0,0.5, +2024-08-13 10:00:00,4.0792155,281.3099,16.85,1009.7262,75.287605,43.0,182.82759,21.0,12.45,0.0,0.0, +2024-08-13 11:00:00,3.8832974,281.88864,16.35,1010.1082,76.70383,0.0,0.0,0.0,12.25,0.0,0.0, +2024-08-13 12:00:00,3.945884,278.74606,16.1,1010.59656,77.67987,0.0,0.0,0.0,12.2,0.0,0.0, +2024-08-13 13:00:00,4.90408,272.33725,16.8,1010.51794,74.78654,0.0,0.0,0.0,12.3,0.0,0.0, +2024-08-13 14:00:00,5.4744864,260.53775,16.85,1010.32117,76.531715,0.0,0.0,0.0,12.7,0.0,0.0, +2024-08-13 15:00:00,5.2038445,267.79745,16.9,1009.92584,76.289474,0.0,0.0,0.0,12.7,0.0,0.0, +2024-08-13 16:00:00,5.0,270.0,16.85,1009.4287,75.53499,0.0,0.0,0.0,12.5,0.0,0.0, +2024-08-13 17:00:00,5.1,270.0,16.9,1009.0333,72.622086,0.0,0.0,0.0,11.95,0.0,0.0, +2024-08-13 18:00:00,4.509989,273.814,17.05,1008.83936,70.525734,0.0,0.0,0.0,11.65,0.0,0.0, +2024-08-13 19:00:00,6.281719,256.18494,17.0,1008.63947,79.35402,0.0,0.0,0.0,13.4,0.0,0.0, +2024-08-13 20:00:00,5.059644,251.56496,15.9,1008.6075,85.66193,0.0,0.0,0.0,13.5,0.0,0.0, +2024-08-13 21:00:00,5.314132,250.20103,16.6,1008.42975,80.33933,0.0,0.0,0.0,13.2,0.0,0.1, +2024-08-13 22:00:00,5.3712196,245.82089,16.95,1008.73737,77.049995,0.0,0.0,0.0,12.9,0.0,0.0, +2024-08-13 23:00:00,4.7413077,242.35411,16.45,1009.11945,81.37414,0.0,0.0,0.0,13.25,0.0,0.0, +2024-08-14 00:00:00,4.924429,246.0375,16.9,1009.43,81.96326,64.0,269.67343,28.0,13.8,0.0,0.1, +2024-08-14 01:00:00,6.3953104,243.03436,17.7,1010.04816,80.48852,216.0,435.59537,77.0,14.3,0.0,0.2, +2024-08-14 02:00:00,7.119691,240.55466,18.25,1010.2624,76.00988,370.0,519.09503,114.0,13.95,0.0,0.4, +2024-08-14 03:00:00,6.723095,239.62096,18.5,1009.97217,75.071075,474.0,473.1094,178.0,14.0,0.0,0.6, +2024-08-14 04:00:00,5.9615436,247.30617,18.95,1009.6875,71.58105,510.0,453.6967,189.0,13.7,0.0,0.2, +2024-08-14 05:00:00,5.7775426,246.54095,19.1,1009.1958,69.99805,652.0,671.02673,160.0,13.5,0.0,0.1, +2024-08-14 06:00:00,5.9615436,247.30617,18.55,1008.58527,73.155106,545.0,530.7089,173.0,13.65,0.0,0.8, +2024-08-14 07:00:00,5.7775426,246.54095,18.3,1008.6771,73.34938,390.0,311.606,199.0,13.45,0.0,0.7, +2024-08-14 08:00:00,4.9335585,252.29948,18.5,1008.7821,68.97348,386.0,603.93475,99.0,12.7,0.0,0.0, +2024-08-14 09:00:00,4.0521603,254.24875,17.95,1008.9646,69.31852,222.0,508.19406,71.0,12.25,0.0,0.0, +2024-08-14 10:00:00,3.613862,255.5792,17.6,1009.1527,69.249535,31.0,74.05557,22.0,11.9,0.0,0.0, +2024-08-14 11:00:00,3.3955853,256.373,17.15,1009.3381,71.0117,0.0,0.0,0.0,11.85,0.0,0.0, +2024-08-14 12:00:00,3.6687872,252.55272,17.0,1009.73035,71.92595,0.0,0.0,0.0,11.9,0.0,0.0, +2024-08-14 13:00:00,4.661545,247.28555,17.5,1010.14154,69.91771,0.0,0.0,0.0,11.95,0.0,0.0, +2024-08-14 14:00:00,4.1231055,255.96373,17.5,1009.94324,70.611664,0.0,0.0,0.0,12.1,0.0,0.0, +2024-08-14 15:00:00,4.317406,256.60748,17.15,1009.63556,73.14633,0.0,0.0,0.0,12.3,0.0,0.0, +2024-08-14 16:00:00,4.8270073,256.82745,17.45,1009.2475,74.16466,0.0,0.0,0.0,12.8,0.0,0.0, +2024-08-14 17:00:00,5.2554736,248.80588,16.8,1009.32794,80.366585,0.0,0.0,0.0,13.4,0.0,0.2, +2024-08-14 18:00:00,3.956008,253.85559,16.3,1009.11505,82.961945,0.0,0.0,0.0,13.4,0.0,0.1, +2024-08-14 19:00:00,4.204759,244.65387,16.55,1008.72565,79.031166,0.0,0.0,0.0,12.9,0.0,0.0, +2024-08-14 20:00:00,5.1623635,225.78473,15.85,1008.60596,86.49697,0.0,0.0,0.0,13.6,0.0,0.1, +2024-08-14 21:00:00,3.748333,223.91916,15.45,1008.5942,89.31904,0.0,0.0,0.0,13.7,0.0,0.5, +2024-08-14 22:00:00,2.5553863,210.57915,15.65,1008.69946,85.63618,0.0,0.0,0.0,13.25,0.0,0.4, +2024-08-14 23:00:00,3.231099,201.80147,16.35,1009.21576,78.74392,0.0,0.0,0.0,12.65,0.0,0.1, +2024-08-15 00:00:00,3.0463092,203.19862,16.6,1009.6197,78.26672,33.0,66.47587,24.0,12.8,0.0,0.0, +2024-08-15 01:00:00,2.3259406,205.4633,17.6,1010.1444,75.65792,142.0,195.14888,79.0,13.25,0.0,0.0, +2024-08-15 02:00:00,2.8017852,214.82455,18.65,1010.4724,64.1922,455.0,752.4902,81.0,11.75,0.0,0.0, +2024-08-15 03:00:00,2.7658632,220.60121,19.35,1010.3932,60.84377,603.0,810.1266,93.0,11.6,0.0,0.0, +2024-08-15 04:00:00,3.1144822,222.39738,19.55,1009.70465,60.290707,651.0,725.3883,135.0,11.65,0.0,0.0, +2024-08-15 05:00:00,3.3970575,222.61401,19.35,1009.20306,60.24347,554.0,405.76685,255.0,11.45,0.0,0.0, +2024-08-15 06:00:00,3.3421547,218.92755,19.0,1008.6971,63.011463,435.0,254.12012,256.0,11.8,0.0,0.0, +2024-08-15 07:00:00,3.2802439,217.56866,18.95,1008.39825,64.682465,531.0,608.66473,156.0,12.15,0.0,0.0, +2024-08-15 08:00:00,3.130495,206.56499,18.2,1008.67426,71.442154,344.0,422.56702,142.0,12.95,0.0,0.0, +2024-08-15 09:00:00,2.6832817,206.56499,17.6,1008.7561,73.94827,215.0,463.9679,76.0,12.9,0.0,0.0, +2024-08-15 10:00:00,1.811077,186.3401,15.9,1008.7067,83.18506,57.0,285.1906,22.0,13.05,0.0,0.0, +2024-08-15 11:00:00,1.9313208,158.74942,14.35,1009.05774,88.94034,0.0,0.0,0.0,12.55,0.0,0.0, +2024-08-15 12:00:00,1.6970563,135.0001,14.05,1009.4455,88.91592,0.0,0.0,0.0,12.25,0.0,0.0, +2024-08-15 13:00:00,1.5231546,113.19862,13.15,1009.518,89.13663,0.0,0.0,0.0,11.4,0.0,0.0, +2024-08-15 14:00:00,2.2,90.0,12.9,1009.4114,90.60438,0.0,0.0,0.0,11.4,0.0,0.0, +2024-08-15 15:00:00,2.0396078,78.6901,12.3,1009.4924,92.078415,0.0,0.0,0.0,11.05,0.0,0.0, +2024-08-15 16:00:00,1.9924859,72.47434,11.95,1009.0854,92.05747,0.0,0.0,0.0,10.7,0.0,0.0, +2024-08-15 17:00:00,2.2472203,69.14546,11.7,1008.78033,91.73615,0.0,0.0,0.0,10.4,0.0,0.0, +2024-08-15 18:00:00,2.5495098,64.440094,11.6,1008.4799,91.11948,0.0,0.0,0.0,10.2,0.0,0.0, +2024-08-15 19:00:00,2.5942245,62.447273,11.35,1007.97656,91.7143,0.0,0.0,0.0,10.05,0.0,0.0, +2024-08-15 20:00:00,2.9154758,59.03632,11.0,1007.37134,92.30908,0.0,0.0,0.0,9.8,0.0,0.0, +2024-08-15 21:00:00,3.001666,60.018444,10.65,1007.1623,92.91059,0.0,0.0,0.0,9.55,0.0,0.0, +2024-08-15 22:00:00,3.2449963,56.309914,10.45,1007.4537,92.89978,0.0,0.0,0.0,9.35,0.0,0.0, +2024-08-15 23:00:00,3.4205263,52.124958,10.45,1007.8503,92.276924,0.0,0.0,0.0,9.25,0.0,0.0, +2024-08-16 00:00:00,4.031129,46.005,12.2,1008.2997,88.467995,83.0,393.28577,29.0,10.35,0.0,0.0, +2024-08-16 01:00:00,4.1012197,44.999897,15.7,1008.6018,84.53114,268.0,606.2475,70.0,13.1,0.0,0.0, +2024-08-16 02:00:00,3.3615472,22.751022,18.25,1008.6756,70.52305,439.0,652.823,112.0,12.8,0.0,0.0, +2024-08-16 03:00:00,2.828427,351.87,19.5,1008.21576,63.958138,613.0,811.4419,99.0,12.5,0.0,0.0, +2024-08-16 04:00:00,3.4655447,313.83093,20.25,1007.44354,61.859207,714.0,875.30115,88.0,12.7,0.0,0.0, +2024-08-16 05:00:00,3.4234486,276.70975,19.8,1006.43915,65.07937,469.0,260.6145,276.0,13.05,0.0,0.0, +2024-08-16 06:00:00,3.7854989,257.79956,19.7,1005.84125,65.698456,604.0,519.8945,236.0,13.1,0.0,0.0, +2024-08-16 07:00:00,4.0199504,275.7105,19.5,1005.8356,67.17379,598.0,833.266,82.0,13.25,0.0,0.0, +2024-08-16 08:00:00,4.060788,279.92618,19.3,1005.7304,69.35674,447.0,777.80634,73.0,13.55,0.0,0.0, +2024-08-16 09:00:00,2.7073975,274.23633,18.45,1005.70636,74.81967,245.0,602.56726,63.0,13.9,0.0,0.0, +2024-08-16 10:00:00,1.7,298.0724,16.25,1005.841,87.09849,61.0,306.65994,23.0,14.1,0.0,0.0, +2024-08-16 11:00:00,1.8601075,323.74606,15.35,1006.1123,88.73201,0.0,0.0,0.0,13.5,0.0,0.0, +2024-08-16 12:00:00,1.7117243,353.29025,15.05,1006.1034,89.579094,0.0,0.0,0.0,13.35,0.0,0.0, +2024-08-16 13:00:00,1.6492423,14.036275,14.45,1005.7883,87.78957,0.0,0.0,0.0,12.45,0.0,0.0, +2024-08-16 14:00:00,2.4166093,24.443953,14.15,1005.2836,88.632484,0.0,0.0,0.0,12.3,0.0,0.0, +2024-08-16 15:00:00,3.0083218,21.44781,13.9,1004.7806,89.49039,0.0,0.0,0.0,12.2,0.0,0.0, +2024-08-16 16:00:00,3.3955853,13.627024,13.9,1004.0864,88.90368,0.0,0.0,0.0,12.1,0.0,0.0, +2024-08-16 17:00:00,3.667424,11.003508,13.85,1003.5891,88.60739,0.0,0.0,0.0,12.0,0.0,0.0, +2024-08-16 18:00:00,3.667424,11.003508,13.8,1002.99286,88.60321,0.0,0.0,0.0,11.95,0.0,0.0, +2024-08-16 19:00:00,3.981206,11.592147,13.65,1001.9969,89.176674,0.0,0.0,0.0,11.9,0.0,0.0, +2024-08-16 20:00:00,4.539824,7.59456,13.7,1001.60156,88.88732,0.0,0.0,0.0,11.9,0.0,0.0, +2024-08-16 21:00:00,5.2773094,9.819235,13.8,1001.3072,89.48263,0.0,0.0,0.0,12.1,0.0,0.0, +2024-08-16 22:00:00,5.846366,12.8477125,14.1,1000.7211,88.337456,0.0,0.0,0.0,12.2,0.0,0.0, +2024-08-16 23:00:00,5.842089,6.8816385,14.35,1000.82745,86.91963,0.0,0.0,0.0,12.2,0.0,0.0, +2024-08-17 00:00:00,6.963476,12.439554,15.1,1000.5519,85.02038,73.0,308.81198,30.0,12.6,0.0,0.0, +2024-08-17 01:00:00,6.603787,327.99466,17.95,1000.3367,76.20882,250.0,547.81006,69.0,13.7,0.0,0.2, +2024-08-17 02:00:00,9.762172,316.66025,16.0,1000.6771,88.78536,208.0,95.083984,160.0,14.15,0.0,8.0, +2024-08-17 03:00:00,8.105554,308.991,16.15,999.9874,89.952965,86.0,7.844725,81.0,14.5,0.0,2.5, +2024-08-17 04:00:00,8.207923,247.80966,15.4,1000.5607,87.58806,158.0,4.1722584,155.0,13.35,0.0,3.6, +2024-08-17 05:00:00,8.45281,244.04129,15.05,999.9554,83.90651,122.0,0.0,122.0,12.35,0.0,0.5, +2024-08-17 06:00:00,7.227724,255.5792,15.1,1000.4527,77.0143,103.0,8.435495,97.0,11.1,0.0,0.8, +2024-08-17 07:00:00,7.1175838,245.95578,15.45,1000.76025,73.08508,115.0,70.69505,71.0,10.65,0.0,0.1, +2024-08-17 08:00:00,7.4999995,253.73972,16.05,1001.37286,67.799965,286.0,355.63684,114.0,10.1,0.0,0.4, +2024-08-17 09:00:00,7.0213957,252.5972,14.75,1002.3265,67.75932,212.0,440.0883,78.0,8.85,0.0,1.8, +2024-08-17 10:00:00,6.1684685,253.03377,14.2,1003.10376,70.447266,55.0,263.7853,22.0,8.9,0.0,1.0, +2024-08-17 11:00:00,5.9135437,251.25856,13.9,1003.789,74.04121,0.0,0.0,0.0,9.35,0.0,0.5, +2024-08-17 12:00:00,6.3560996,245.85446,13.65,1004.1784,74.497536,0.0,0.0,0.0,9.2,0.0,0.2, +2024-08-17 13:00:00,6.5924196,247.71436,14.15,1003.99457,72.851006,0.0,0.0,0.0,9.35,0.0,0.0, +2024-08-17 14:00:00,6.76757,251.0295,14.45,1004.0035,72.661095,0.0,0.0,0.0,9.6,0.0,0.1, +2024-08-17 15:00:00,6.369458,247.86446,14.7,1004.11005,69.134026,0.0,0.0,0.0,9.1,0.0,0.0, +2024-08-17 16:00:00,7.392564,246.90315,14.55,1004.10565,61.148922,0.0,0.0,0.0,7.15,0.0,0.2, +2024-08-17 17:00:00,7.3409805,245.87901,14.85,1003.9162,63.126385,0.0,0.0,0.0,7.9,0.0,0.0, +2024-08-17 18:00:00,6.844706,244.93256,14.85,1004.0153,68.46893,0.0,0.0,0.0,9.1,0.0,0.0, +2024-08-17 19:00:00,6.88767,244.17906,14.6,1003.8095,68.88131,0.0,0.0,0.0,8.95,0.0,0.2, +2024-08-17 20:00:00,7.392564,239.9668,14.6,1003.8095,71.23952,0.0,0.0,0.0,9.45,0.0,0.1, +2024-08-17 21:00:00,7.267049,235.65384,15.0,1004.11896,63.37551,0.0,0.0,0.0,8.1,0.0,0.1, +2024-08-17 22:00:00,6.8014703,228.57643,14.8,1004.6087,64.8538,0.0,0.0,0.0,8.25,0.0,0.1, +2024-08-17 23:00:00,6.506919,226.24529,14.75,1005.2022,62.462044,0.0,0.0,0.0,7.65,0.0,0.0, +2024-08-18 00:00:00,6.5115285,227.4896,15.45,1005.81757,60.532597,80.0,347.0233,31.0,7.85,0.0,0.0, +2024-08-18 01:00:00,6.8883963,230.30096,15.8,1006.5222,72.66353,202.0,350.03873,85.0,10.9,0.0,0.4, +2024-08-18 02:00:00,6.762396,231.6048,16.4,1007.0354,69.93505,382.0,542.4971,106.0,10.9,0.0,0.1, +2024-08-18 03:00:00,7.5,233.13002,16.6,1007.1405,62.88673,522.0,589.41,144.0,9.5,0.0,0.0, +2024-08-18 04:00:00,7.905694,235.30478,16.8,1006.7496,61.884995,577.0,578.2287,159.0,9.45,0.0,0.1, +2024-08-18 05:00:00,7.800641,233.86453,16.6,1006.54553,63.52312,536.0,457.26044,194.0,9.65,0.0,0.3, +2024-08-18 06:00:00,8.105554,231.009,16.65,1006.4477,63.53439,469.0,334.3968,230.0,9.7,0.0,0.3, +2024-08-18 07:00:00,8.495881,227.86247,16.75,1006.5497,63.344242,509.0,605.8915,130.0,9.75,0.0,0.1, +2024-08-18 08:00:00,7.9208584,226.02293,16.2,1006.93054,65.59937,408.0,637.298,98.0,9.75,0.0,0.0, +2024-08-18 09:00:00,6.576473,224.38402,16.25,1007.2294,64.30292,214.0,456.14954,74.0,9.5,0.0,0.0, +2024-08-18 10:00:00,7.1028166,215.25644,16.1,1007.6216,62.772575,47.0,197.96898,22.0,9.0,0.0,0.0, +2024-08-18 11:00:00,6.87968,212.53505,15.9,1008.1117,62.51528,0.0,0.0,0.0,8.75,0.0,0.0, +2024-08-18 12:00:00,6.4140472,210.96368,15.7,1008.5026,63.748917,0.0,0.0,0.0,8.85,0.0,0.0, +2024-08-18 13:00:00,6.140033,210.32352,15.45,1008.8917,65.4368,0.0,0.0,0.0,9.0,0.0,0.0, +2024-08-18 14:00:00,6.0827627,207.40749,15.5,1008.8934,62.847485,0.0,0.0,0.0,8.45,0.0,0.0, +2024-08-18 15:00:00,6.0926185,203.19862,15.25,1008.8861,64.51518,0.0,0.0,0.0,8.6,0.0,0.0, +2024-08-18 16:00:00,5.3488317,200.80687,14.85,1008.5767,61.84968,0.0,0.0,0.0,7.6,0.0,0.0, +2024-08-18 17:00:00,4.8332186,204.44394,15.15,1008.2882,60.04973,0.0,0.0,0.0,7.45,0.0,0.0, +2024-08-18 18:00:00,4.976947,202.4428,15.8,1008.208,60.616016,0.0,0.0,0.0,8.2,0.0,0.0, +2024-08-18 19:00:00,4.88467,202.89058,15.45,1008.0983,62.411568,0.0,0.0,0.0,8.3,0.0,0.0, +2024-08-18 20:00:00,4.3011627,197.59251,15.45,1007.9992,62.411568,0.0,0.0,0.0,8.3,0.0,0.0, +2024-08-18 21:00:00,3.9293766,194.7436,15.7,1008.00684,61.212276,0.0,0.0,0.0,8.25,0.0,0.0, +2024-08-18 22:00:00,3.5902646,192.875,15.85,1008.50684,62.50376,0.0,0.0,0.0,8.7,0.0,0.0, +2024-08-18 23:00:00,3.49285,193.24052,15.05,1009.1775,67.36591,0.0,0.0,0.0,9.05,0.0,0.0, +2024-08-19 00:00:00,3.6687872,197.44728,15.75,1009.8923,69.575294,65.0,202.54723,36.0,10.2,0.0,0.0, +2024-08-19 01:00:00,3.9560082,200.72563,16.55,1010.6098,62.875347,168.0,94.640366,136.0,9.45,0.0,0.0, +2024-08-19 02:00:00,4.5221677,198.03438,16.7,1011.0109,64.4026,277.0,214.54083,167.0,9.95,0.0,0.0, +2024-08-19 03:00:00,4.4598203,199.65392,17.15,1011.0239,63.646652,457.0,348.68484,232.0,10.2,0.0,0.0, +2024-08-19 04:00:00,3.9812057,205.27768,17.05,1010.92194,62.778614,358.0,140.34795,256.0,9.9,0.0,0.0, +2024-08-19 05:00:00,4.0249224,206.56499,17.35,1010.4347,61.805126,447.0,168.96844,320.0,9.95,0.0,0.0, +2024-08-19 06:00:00,4.159327,207.18103,17.55,1010.1431,60.825787,500.0,313.304,275.0,9.9,0.0,0.0, +2024-08-19 07:00:00,4.472136,206.56499,17.55,1009.84564,59.815147,448.0,381.7726,208.0,9.65,0.0,0.0, +2024-08-19 08:00:00,4.3829217,207.1496,17.3,1009.93756,60.970966,353.0,449.70892,133.0,9.7,0.0,0.0, +2024-08-19 09:00:00,3.7643058,196.9909,16.65,1009.81934,67.24823,172.0,261.8503,91.0,10.55,0.0,0.0, +2024-08-19 10:00:00,2.5079873,184.57384,15.8,1010.0921,70.05113,48.0,156.9168,28.0,10.35,0.0,0.0, +2024-08-19 11:00:00,1.8384776,157.61983,14.85,1010.3617,74.703224,0.0,0.0,0.0,10.4,0.0,0.0, +2024-08-19 12:00:00,1.5652475,116.56499,13.6,1010.7213,80.459465,0.0,0.0,0.0,10.3,0.0,0.0, +2024-08-19 13:00:00,2.2022717,87.3975,12.7,1011.09094,79.52901,0.0,0.0,0.0,9.25,0.0,0.0, +2024-08-19 14:00:00,2.6925821,74.931465,12.15,1011.07446,81.07548,0.0,0.0,0.0,9.0,0.0,0.0, +2024-08-19 15:00:00,3.0083218,68.5522,11.85,1011.0656,81.86046,0.0,0.0,0.0,8.85,0.0,0.0, +2024-08-19 16:00:00,3.1016126,69.22767,11.3,1010.7513,83.46793,0.0,0.0,0.0,8.6,0.0,0.0, +2024-08-19 17:00:00,2.863564,65.22488,10.9,1010.4417,83.98795,0.0,0.0,0.0,8.3,0.0,0.0, +2024-08-19 18:00:00,3.088689,60.94549,10.45,1010.62646,85.37439,0.0,0.0,0.0,8.1,0.0,0.0, +2024-08-19 19:00:00,3.3615475,59.620956,10.3,1010.02716,85.940475,0.0,0.0,0.0,8.05,0.0,0.0, +2024-08-19 20:00:00,3.088689,60.94549,10.5,1009.93396,85.090355,0.0,0.0,0.0,8.1,0.0,0.0, +2024-08-19 21:00:00,3.1384711,59.349415,11.1,1009.9521,82.5998,0.0,0.0,0.0,8.25,0.0,0.0, +2024-08-19 22:00:00,3.4669871,56.768288,11.45,1010.16113,80.98124,0.0,0.0,0.0,8.3,0.0,0.0, +2024-08-19 23:00:00,3.1906114,57.804302,10.65,1010.7317,84.24457,1.0,0.0,1.0,8.1,0.0,0.0, +2024-08-20 00:00:00,3.4985712,59.03632,12.2,1011.2743,81.082184,75.0,192.87941,47.0,9.05,0.0,0.0, +2024-08-20 01:00:00,3.623534,50.59937,15.05,1011.65656,75.73843,198.0,213.43661,125.0,10.8,0.0,0.0, +2024-08-20 02:00:00,3.04795,41.00899,16.85,1011.61035,67.06634,311.0,187.72765,214.0,10.7,0.0,0.0, +2024-08-20 03:00:00,1.6643317,32.73523,18.3,1011.0573,59.19883,605.0,717.746,139.0,10.2,0.0,0.0, +2024-08-20 04:00:00,0.4,270.0,19.05,1010.58295,58.206787,664.0,666.5431,177.0,10.65,0.0,0.0, +2024-08-20 05:00:00,1.7,241.92761,19.25,1009.99365,58.449455,618.0,501.78577,239.0,10.9,0.0,0.0, +2024-08-20 06:00:00,2.9206164,231.95291,18.8,1009.48474,61.525238,507.0,426.8435,199.0,11.25,0.0,0.0, +2024-08-20 07:00:00,3.3970575,222.61401,18.5,1009.3771,63.73649,521.0,539.76575,180.0,11.5,0.0,0.0, +2024-08-20 08:00:00,3.720215,216.25392,17.95,1009.6587,64.250206,373.0,479.70627,137.0,11.1,0.0,0.0, +2024-08-20 09:00:00,2.996665,205.7099,17.25,1009.6384,68.271225,119.0,41.70089,106.0,11.35,0.0,0.0, +2024-08-20 10:00:00,2.1540658,201.80147,16.65,1009.81934,71.15214,26.0,46.648045,20.0,11.4,0.0,0.0, +2024-08-20 11:00:00,1.5033296,183.814,15.6,1010.0861,79.15366,0.0,0.0,0.0,12.0,0.0,0.0, +2024-08-20 12:00:00,1.3453624,131.98714,15.7,1010.2876,80.47995,0.0,0.0,0.0,12.35,0.0,0.0, +2024-08-20 13:00:00,1.3601471,126.027466,15.05,1010.36743,84.45917,0.0,0.0,0.0,12.45,0.0,0.0, +2024-08-20 14:00:00,1.4,90.0,13.5,1009.9248,88.285995,0.0,0.0,0.0,11.6,0.0,0.0, +2024-08-20 15:00:00,0.92195445,77.4712,13.6,1009.63055,86.27531,0.0,0.0,0.0,11.35,0.0,0.0, +2024-08-20 16:00:00,0.92195445,77.4712,13.4,1009.72363,85.40134,0.0,0.0,0.0,11.0,0.0,0.0, +2024-08-20 17:00:00,1.118034,79.69521,12.65,1009.40375,88.212494,0.0,0.0,0.0,10.75,0.0,0.0, +2024-08-20 18:00:00,1.360147,72.89719,12.35,1009.5932,89.072105,0.0,0.0,0.0,10.6,0.0,0.0, +2024-08-20 19:00:00,1.3892444,59.743652,12.25,1009.2929,90.25798,0.0,0.0,0.0,10.7,0.0,0.0, +2024-08-20 20:00:00,1.7,61.92762,12.15,1008.7939,90.55162,0.0,0.0,0.0,10.65,0.0,0.0, +2024-08-20 21:00:00,2.2561028,77.19574,12.05,1008.4935,90.24342,0.0,0.0,0.0,10.5,0.0,0.0, +2024-08-20 22:00:00,2.5079873,85.42616,12.25,1008.7971,88.767685,0.0,0.0,0.0,10.45,0.0,0.0, +2024-08-20 23:00:00,2.8442926,79.87539,12.15,1009.2897,88.75937,1.0,0.0,1.0,10.35,0.0,0.0, +2024-08-21 00:00:00,3.5171013,75.17348,13.8,1009.73566,85.16123,88.0,366.87686,34.0,11.35,0.0,0.0, +2024-08-21 01:00:00,3.008322,74.57778,16.1,1010.1007,81.594826,277.0,578.074,77.0,12.95,0.0,0.0, +2024-08-21 02:00:00,2.3086793,85.03035,17.85,1010.2509,73.99142,428.0,553.06396,140.0,13.15,0.0,0.0, +2024-08-21 03:00:00,1.8384776,112.38018,19.0,1010.0855,67.95382,623.0,812.8402,92.0,12.95,0.0,0.0, +2024-08-21 04:00:00,1.8788295,115.20109,19.6,1009.4087,63.353867,640.0,668.4512,149.0,12.45,0.0,0.0, +2024-08-21 05:00:00,1.603122,93.57626,20.1,1007.8359,58.655582,603.0,498.02136,225.0,11.75,0.0,0.0, +2024-08-21 06:00:00,0.9055385,83.659904,20.3,1007.14734,56.986095,474.0,302.06567,255.0,11.5,0.0,0.0, +2024-08-21 07:00:00,0.64031243,128.65984,20.4,1006.55505,56.82281,397.0,234.69504,248.0,11.55,0.0,0.0, +2024-08-21 08:00:00,1.0770329,158.19853,20.15,1006.15137,58.474472,249.0,157.66312,171.0,11.75,0.0,0.0, +2024-08-21 09:00:00,2.209072,174.80566,19.45,1005.5365,68.48938,195.0,321.5098,94.0,13.5,0.0,0.0, +2024-08-21 10:00:00,2.624881,162.25523,17.55,1005.18463,77.89959,66.0,315.90982,25.0,13.65,0.0,0.0, +2024-08-21 11:00:00,2.624881,139.63554,16.2,1005.0464,79.499954,0.0,0.0,0.0,12.65,0.0,0.0, +2024-08-21 12:00:00,2.5317976,99.090195,15.3,1005.119,75.52846,0.0,0.0,0.0,11.0,0.0,0.0, +2024-08-21 13:00:00,4.5122056,77.19574,15.95,1004.44415,69.15181,0.0,0.0,0.0,10.3,0.0,0.0, +2024-08-21 14:00:00,3.8626416,68.74943,15.7,1003.8419,68.87125,0.0,0.0,0.0,10.0,0.0,0.0, +2024-08-21 15:00:00,4.472136,63.435013,15.65,1003.04706,68.172966,0.0,0.0,0.0,9.8,0.0,0.0, +2024-08-21 16:00:00,5.060632,52.22426,15.8,1002.0598,67.74845,0.0,0.0,0.0,9.85,0.0,0.0, +2024-08-21 17:00:00,5.882177,35.311302,16.4,1000.98627,65.86255,0.0,0.0,0.0,10.0,0.0,0.0, +2024-08-21 18:00:00,5.748913,13.069325,16.5,1000.98914,64.14296,0.0,0.0,0.0,9.7,0.0,0.0, +2024-08-21 19:00:00,3.8209946,353.9911,16.1,1000.87836,70.57748,0.0,0.0,0.0,10.75,0.0,0.3, +2024-08-21 20:00:00,5.0695167,345.14133,16.25,1000.0894,82.4169,0.0,0.0,0.0,13.25,0.0,0.0, +2024-08-21 21:00:00,6.484597,342.96216,17.15,999.61957,80.67569,0.0,0.0,0.0,13.8,0.0,0.0, +2024-08-21 22:00:00,7.9699435,342.47433,17.65,999.4356,80.4818,0.0,0.0,0.0,14.25,0.0,0.1, +2024-08-21 23:00:00,8.228001,339.36237,17.85,999.63965,82.61317,0.0,0.0,0.0,14.85,0.0,0.1, +2024-08-22 00:00:00,7.725283,338.74942,18.55,999.8581,85.65726,61.0,107.20328,45.0,16.1,0.0,0.0, +2024-08-22 01:00:00,7.9195957,315.0001,19.4,1000.0803,85.74345,153.0,185.71117,88.0,16.95,0.0,0.0, +2024-08-22 02:00:00,8.940358,306.3573,20.5,1000.508,79.08696,416.0,543.03436,131.0,16.75,0.0,0.0, +2024-08-22 03:00:00,10.444616,300.4933,20.6,1000.2133,77.85567,563.0,622.21686,154.0,16.6,0.0,0.2, +2024-08-22 04:00:00,10.375452,296.31802,20.9,1000.1227,75.46515,659.0,738.01166,114.0,16.4,0.0,0.3, +2024-08-22 05:00:00,10.511898,297.78384,20.85,999.923,75.69755,678.0,715.849,132.0,16.4,0.0,0.3, +2024-08-22 06:00:00,10.111874,298.33902,20.7,999.8194,74.714455,617.0,672.65674,127.0,16.05,0.0,0.2, +2024-08-22 07:00:00,9.752949,298.1415,20.85,999.923,72.62257,542.0,650.4891,127.0,15.75,0.0,0.1, +2024-08-22 08:00:00,9.128527,294.59976,20.1,1000.00085,77.53327,402.0,629.1689,89.0,16.05,0.0,0.6, +2024-08-22 09:00:00,7.8294315,294.92844,19.2,1000.3722,81.206696,237.0,546.542,64.0,15.9,0.0,0.2, +2024-08-22 10:00:00,7.209022,293.7204,18.45,1000.847,82.68593,60.0,259.65756,26.0,15.45,0.0,0.1, +2024-08-22 11:00:00,6.9771056,297.2995,18.2,1001.43475,83.72352,0.0,0.0,0.0,15.4,0.0,0.1, +2024-08-22 12:00:00,6.242595,305.21768,17.95,1002.0226,84.77657,0.0,0.0,0.0,15.35,0.0,0.0, +2024-08-22 13:00:00,6.1326995,294.05734,17.9,1002.2196,85.86556,0.0,0.0,0.0,15.5,0.0,0.1, +2024-08-22 14:00:00,6.109828,291.10492,18.0,1002.1233,84.23976,0.0,0.0,0.0,15.3,0.0,0.1, +2024-08-22 15:00:00,5.4571056,283.78162,17.5,1002.3072,85.549675,0.0,0.0,0.0,15.05,0.0,0.0, +2024-08-22 16:00:00,4.341659,277.9434,17.4,1002.4035,86.64666,0.0,0.0,0.0,15.15,0.0,0.1, +2024-08-22 17:00:00,3.7643058,286.9909,16.75,1002.38464,90.286705,0.0,0.0,0.0,15.15,0.0,0.2, +2024-08-22 18:00:00,3.6055512,289.44012,16.45,1002.1778,92.9151,0.0,0.0,0.0,15.3,0.0,0.3, +2024-08-22 19:00:00,3.6055512,303.6901,16.5,1002.07996,92.32327,0.0,0.0,0.0,15.25,0.0,0.3, +2024-08-22 20:00:00,3.7802117,307.47626,16.55,1002.1806,92.326126,0.0,0.0,0.0,15.3,0.0,0.1, +2024-08-22 21:00:00,3.753665,318.23978,16.2,1002.3689,93.20104,0.0,0.0,0.0,15.1,0.0,0.1, +2024-08-22 22:00:00,3.5608988,321.8427,15.95,1002.95667,91.9947,0.0,0.0,0.0,14.65,0.0,0.2, +2024-08-22 23:00:00,3.9824615,308.8845,16.1,1003.5558,89.36976,1.0,0.0,1.0,14.35,0.0,0.1, +2024-08-23 00:00:00,4.20119,308.23386,17.45,1003.9915,85.26975,89.0,330.36334,39.0,14.95,0.0,0.0, +2024-08-23 01:00:00,6.9462223,292.8737,19.2,1004.1408,76.16208,257.0,480.08502,87.0,14.9,0.0,0.0, +2024-08-23 02:00:00,7.1589108,294.77512,19.95,1004.5589,69.25896,460.0,676.77325,102.0,14.15,0.0,0.0, +2024-08-23 03:00:00,8.062258,299.74478,20.15,1004.4654,68.62884,581.0,692.43365,123.0,14.2,0.0,0.1, +2024-08-23 04:00:00,7.5,306.86996,20.55,1004.0801,67.82636,658.0,703.08575,136.0,14.4,0.0,0.0, +2024-08-23 05:00:00,9.097252,303.34073,20.4,1003.778,66.061104,666.0,686.25446,140.0,13.85,0.0,0.2, +2024-08-23 06:00:00,8.881441,305.83774,20.2,1003.5741,69.98264,677.0,743.2584,133.0,14.55,0.0,0.2, +2024-08-23 07:00:00,8.635392,298.34558,20.2,1003.37573,67.099625,567.0,717.5177,107.0,13.9,0.0,0.1, +2024-08-23 08:00:00,8.335466,300.25635,19.5,1003.55457,70.53092,413.0,641.7008,92.0,14.0,0.0,0.1, +2024-08-23 09:00:00,8.143709,294.67685,18.1,1003.9112,78.74256,200.0,391.94675,75.0,14.35,0.0,0.3, +2024-08-23 10:00:00,7.045566,304.59235,17.1,1004.17975,84.958374,37.0,98.41485,24.0,14.55,0.0,0.4, +2024-08-23 11:00:00,5.860034,306.67444,16.75,1004.4672,87.708916,0.0,0.0,0.0,14.7,0.0,0.3, +2024-08-23 12:00:00,5.8523498,303.147,16.5,1005.15405,87.970345,0.0,0.0,0.0,14.5,0.0,0.5, +2024-08-23 13:00:00,5.3823786,305.1665,16.5,1004.85657,89.11308,0.0,0.0,0.0,14.7,0.0,1.4, +2024-08-23 14:00:00,5.5758405,302.55,16.1,1004.845,90.53205,0.0,0.0,0.0,14.55,0.0,0.4, +2024-08-23 15:00:00,5.59017,312.82523,16.25,1004.651,89.670456,0.0,0.0,0.0,14.55,0.0,0.1, +2024-08-23 16:00:00,5.8249464,304.50858,16.2,1004.7489,88.22919,0.0,0.0,0.0,14.25,0.0,0.2, +2024-08-23 17:00:00,6.9999995,306.86996,16.1,1004.3491,88.79356,0.0,0.0,0.0,14.25,0.0,0.9, +2024-08-23 18:00:00,6.466065,309.3517,16.3,1003.85925,87.10315,0.0,0.0,0.0,14.15,0.0,0.2, +2024-08-23 19:00:00,7.291776,295.15927,17.1,1003.7831,80.40735,0.0,0.0,0.0,13.7,0.0,0.1, +2024-08-23 20:00:00,7.8294315,294.92844,17.05,1003.4843,76.313484,0.0,0.0,0.0,12.85,0.0,0.1, +2024-08-23 21:00:00,7.9924965,301.7014,17.25,1003.49,78.618645,0.0,0.0,0.0,13.5,0.0,0.1, +2024-08-23 22:00:00,9.304837,290.77234,17.6,1003.9959,68.34201,0.0,0.0,0.0,11.7,0.0,0.0, +2024-08-23 23:00:00,9.687621,277.7118,17.15,1005.173,72.906395,1.0,0.0,1.0,12.25,0.0,0.3, +2024-08-24 00:00:00,8.800569,270.65103,16.85,1006.2553,81.161766,39.0,91.215805,25.0,13.6,0.0,1.2, +2024-08-24 01:00:00,8.249242,263.7366,18.15,1007.681,72.609116,146.0,153.517,91.0,13.15,0.0,0.0, +2024-08-24 02:00:00,9.590098,258.57294,19.0,1008.39954,63.637608,444.0,650.8058,97.0,11.95,0.0,0.1, +2024-08-24 03:00:00,9.080197,258.56635,19.4,1008.6094,61.460907,587.0,704.6438,118.0,11.8,0.0,0.0, +2024-08-24 04:00:00,8.811923,260.85843,19.65,1009.01337,59.91747,695.0,755.5853,131.0,11.65,0.0,0.0, +2024-08-24 05:00:00,8.532877,259.8754,19.5,1008.8108,60.478294,709.0,738.7253,140.0,11.65,0.0,0.0, +2024-08-24 06:00:00,8.374366,258.28757,19.35,1008.7072,58.863033,683.0,731.59705,145.0,11.1,0.0,0.0, +2024-08-24 07:00:00,7.615773,256.32867,18.9,1008.7934,61.548393,531.0,592.96875,149.0,11.35,0.0,0.0, +2024-08-24 08:00:00,7.093659,248.4985,18.5,1009.27795,63.73649,378.0,506.9793,123.0,11.5,0.0,0.1, +2024-08-24 09:00:00,6.2649817,245.48038,18.05,1009.3641,64.913994,248.0,550.88934,71.0,11.35,0.0,0.0, +2024-08-24 10:00:00,6.074537,237.09476,16.75,1010.02057,70.00314,66.0,285.19647,28.0,11.25,0.0,0.0, +2024-08-24 11:00:00,4.356604,238.13406,17.05,1010.82275,68.45719,0.0,0.0,0.0,11.2,0.0,0.0, +2024-08-24 12:00:00,4.4407206,234.16226,16.75,1011.2106,64.62944,0.0,0.0,0.0,10.05,0.0,0.0, +2024-08-24 13:00:00,4.3011627,234.46223,17.25,1012.21686,61.98915,0.0,0.0,0.0,9.9,0.0,0.0, +2024-08-24 14:00:00,4.560702,232.12495,16.7,1012.3001,61.24056,0.0,0.0,0.0,9.2,0.0,0.0, +2024-08-24 15:00:00,3.9824615,231.1155,17.0,1012.4079,59.683075,0.0,0.0,0.0,9.1,0.0,0.0, +2024-08-24 16:00:00,3.2202482,233.84172,16.95,1012.3074,58.277847,0.0,0.0,0.0,8.7,0.0,0.0, +2024-08-24 17:00:00,3.3600597,233.47105,16.65,1012.2985,59.19726,0.0,0.0,0.0,8.65,0.0,0.0, +2024-08-24 18:00:00,2.86007,233.53067,16.7,1012.2009,60.62485,0.0,0.0,0.0,9.05,0.0,0.0, +2024-08-24 19:00:00,2.2671568,228.57643,15.3,1012.0605,65.62527,0.0,0.0,0.0,8.9,0.0,0.0, +2024-08-24 20:00:00,2.6907248,221.98714,16.35,1012.1908,62.198273,0.0,0.0,0.0,9.1,0.0,0.0, +2024-08-24 21:00:00,2.5,216.86998,16.15,1012.4823,63.421654,0.0,0.0,0.0,9.2,0.0,0.0, +2024-08-24 22:00:00,2.1954498,210.0685,15.8,1013.0671,65.07355,0.0,0.0,0.0,9.25,0.0,0.0, +2024-08-24 23:00:00,1.6155494,201.80147,16.05,1013.47107,68.941414,1.0,0.0,1.0,10.35,0.0,0.0, +2024-08-25 00:00:00,1.6278821,190.6196,17.25,1014.101,69.63885,68.0,146.64684,45.0,11.65,0.0,0.0, +2024-08-25 01:00:00,1.8,90.0,17.4,1014.89886,70.82539,251.0,339.3236,128.0,12.05,0.0,0.0, +2024-08-25 02:00:00,1.360147,162.89719,18.15,1015.41644,65.366486,363.0,275.3812,215.0,11.55,0.0,0.0, +2024-08-25 03:00:00,1.603122,183.57626,18.5,1015.32745,62.89861,405.0,168.71484,292.0,11.3,0.0,0.0, +2024-08-25 04:00:00,1.5297059,191.30989,18.9,1014.84296,60.93995,449.0,155.90335,332.0,11.2,0.0,0.0, +2024-08-25 05:00:00,1.4866068,199.65392,19.2,1014.15735,59.61258,475.0,147.282,361.0,11.15,0.0,0.0, +2024-08-25 06:00:00,2.7802877,217.6943,19.2,1013.6615,59.81047,446.0,209.7863,291.0,11.2,0.0,0.0, +2024-08-25 07:00:00,4.060788,217.99878,18.65,1013.64594,62.724705,510.0,458.80725,213.0,11.4,0.0,0.0, +2024-08-25 08:00:00,3.3615472,202.751,18.15,1013.6313,64.08177,331.0,288.69846,185.0,11.25,0.0,0.0, +2024-08-25 09:00:00,2.9068885,183.94511,17.85,1013.9202,65.95346,252.0,506.6919,88.0,11.4,0.0,0.0, +2024-08-25 10:00:00,2.2,180.0,16.25,1014.17096,73.95742,75.0,334.8611,30.0,11.6,0.0,0.0, +2024-08-25 11:00:00,1.9924859,162.47433,15.1,1014.2363,78.04184,0.0,0.0,0.0,11.3,0.0,0.0, +2024-08-25 12:00:00,1.8384775,135.0001,14.0,1014.10443,82.68225,0.0,0.0,0.0,11.1,0.0,0.0, +2024-08-25 13:00:00,1.6552945,115.01687,13.05,1014.2745,83.39602,0.0,0.0,0.0,10.3,0.0,0.0, +2024-08-25 14:00:00,1.9104973,96.00892,12.7,1014.4622,83.075806,0.0,0.0,0.0,9.9,0.0,0.0, +2024-08-25 15:00:00,1.9104973,96.00892,12.2,1014.1498,84.70411,0.0,0.0,0.0,9.7,0.0,0.0, +2024-08-25 16:00:00,2.302173,92.4895,12.05,1013.947,84.687485,0.0,0.0,0.0,9.55,0.0,0.0, +2024-08-25 17:00:00,2.7073975,85.76369,11.95,1013.349,84.39232,0.0,0.0,0.0,9.4,0.0,0.0, +2024-08-25 18:00:00,2.942788,80.21766,11.65,1012.84424,85.21481,0.0,0.0,0.0,9.25,0.0,0.0, +2024-08-25 19:00:00,2.8231187,67.06787,11.15,1012.43243,86.90261,0.0,0.0,0.0,9.05,0.0,0.0, +2024-08-25 20:00:00,3.5846896,67.01126,11.1,1011.7368,86.605225,0.0,0.0,0.0,8.95,0.0,0.0, +2024-08-25 21:00:00,3.5468295,68.498505,11.05,1011.0411,87.186485,0.0,0.0,0.0,9.0,0.0,0.0, +2024-08-25 22:00:00,3.757659,64.79892,11.0,1011.0399,87.47626,0.0,0.0,0.0,9.0,0.0,0.0, +2024-08-25 23:00:00,3.8948684,60.802605,11.15,1011.4409,86.02785,3.0,20.803118,2.0,8.9,0.0,0.0, +2024-08-26 00:00:00,4.743417,55.304783,13.1,1011.4996,81.20228,118.0,503.1306,37.0,9.95,0.0,0.0, +2024-08-26 01:00:00,2.418677,60.255207,16.4,1012.39044,78.23694,328.0,719.8211,64.0,12.6,0.0,0.0, +2024-08-26 02:00:00,1.2041595,41.63345,18.85,1012.5608,70.86745,524.0,826.98,76.0,13.45,0.0,0.0, +2024-08-26 03:00:00,1.118034,296.56497,20.1,1012.0013,66.64469,676.0,878.3588,84.0,13.7,0.0,0.0, +2024-08-26 04:00:00,2.8792362,249.67677,20.25,1011.31146,68.64867,770.0,903.90045,88.0,14.3,0.0,0.0, +2024-08-26 05:00:00,3.940812,234.29321,19.4,1010.692,69.151115,795.0,908.9572,88.0,13.6,0.0,0.0, +2024-08-26 06:00:00,3.8013155,243.43501,19.35,1010.294,66.92398,754.0,898.53766,87.0,13.05,0.0,0.0, +2024-08-26 07:00:00,3.6235344,242.02061,19.2,1009.8929,67.77277,647.0,868.64325,82.0,13.1,0.0,0.0, +2024-08-26 08:00:00,2.7856774,248.96242,18.75,1009.5827,68.12576,482.0,796.5409,77.0,12.75,0.0,0.0, +2024-08-26 09:00:00,2.7892652,255.4655,18.2,1009.7652,71.91051,283.0,683.99054,60.0,13.05,0.0,0.0, +2024-08-26 10:00:00,2.376973,247.75093,16.7,1010.3167,81.40661,80.0,383.70303,28.0,13.5,0.0,0.0, +2024-08-26 11:00:00,2.9154758,247.8336,16.35,1010.9016,82.698204,0.0,0.0,0.0,13.4,0.0,0.0, +2024-08-26 12:00:00,3.6769552,247.61981,16.5,1011.5008,80.58828,0.0,0.0,0.0,13.15,0.0,0.0, +2024-08-26 13:00:00,3.7696154,248.19853,16.8,1012.1046,73.56701,0.0,0.0,0.0,12.05,0.0,0.0, +2024-08-26 14:00:00,3.5171013,255.17348,17.2,1012.11633,68.71443,0.0,0.0,0.0,11.4,0.0,0.0, +2024-08-26 15:00:00,4.3011627,252.40749,17.55,1011.72986,69.01174,0.0,0.0,0.0,11.8,0.0,0.0, +2024-08-26 16:00:00,4.792703,246.64441,17.35,1011.4264,71.99029,0.0,0.0,0.0,12.25,0.0,0.0, +2024-08-26 17:00:00,4.560702,254.74483,18.05,1011.34753,66.21436,0.0,0.0,0.0,11.65,0.0,0.0, +2024-08-26 18:00:00,4.4777226,246.29735,17.95,1011.0471,68.864235,0.0,0.0,0.0,12.15,0.0,0.0, +2024-08-26 19:00:00,4.368066,254.05453,17.8,1010.84436,68.60803,0.0,0.0,0.0,11.95,0.0,0.0, +2024-08-26 20:00:00,3.3015149,268.26434,16.5,1010.5091,72.78984,0.0,0.0,0.0,11.6,0.0,0.0, +2024-08-26 21:00:00,3.1400635,260.83774,16.35,1010.60406,70.625374,0.0,0.0,0.0,11.0,0.0,0.0, +2024-08-26 22:00:00,3.2984846,255.96373,17.5,1011.0341,69.68774,0.0,0.0,0.0,11.9,0.0,0.0, +2024-08-26 23:00:00,3.6878178,257.4712,17.3,1011.32587,73.89636,2.0,0.0,2.0,12.6,0.0,0.0, +2024-08-27 00:00:00,4.031129,262.8751,18.2,1011.74866,74.051674,99.0,326.87473,45.0,13.5,0.0,0.0, +2024-08-27 01:00:00,4.8259716,264.05322,19.8,1012.2906,66.582184,311.0,644.07306,72.0,13.4,0.0,0.0, +2024-08-27 02:00:00,5.5785303,255.4655,20.35,1012.5045,62.901886,524.0,814.93,79.0,13.05,0.0,0.0, +2024-08-27 03:00:00,5.2554736,248.80588,20.55,1012.411,62.13047,572.0,634.00867,142.0,13.05,0.0,0.0, +2024-08-27 04:00:00,4.964876,251.20001,20.4,1012.2081,65.633514,497.0,293.97595,274.0,13.75,0.0,0.1, +2024-08-27 05:00:00,4.876474,254.53873,20.6,1011.8172,66.964874,585.0,464.42688,222.0,14.25,0.0,0.1, +2024-08-27 06:00:00,4.570558,259.91946,20.75,1011.3257,65.92091,590.0,540.37,187.0,14.15,0.0,0.0, +2024-08-27 07:00:00,4.1593266,260.31128,20.25,1011.014,67.327866,312.0,146.89203,216.0,14.0,0.0,0.0, +2024-08-27 08:00:00,3.905125,256.67545,20.15,1011.3086,68.40701,231.0,62.60164,199.0,14.15,0.0,0.0, +2024-08-27 09:00:00,3.640055,249.07542,19.8,1011.39795,71.50612,132.0,57.86006,113.0,14.5,0.0,0.0, +2024-08-27 10:00:00,2.6925824,238.67136,18.8,1011.76575,78.84384,44.0,139.03818,25.0,15.05,0.0,0.0, +2024-08-27 11:00:00,2.4413111,235.0079,18.55,1012.05634,81.38293,0.0,0.0,0.0,15.3,0.0,0.0, +2024-08-27 12:00:00,2.5612497,218.65984,18.15,1012.4413,84.52692,0.0,0.0,0.0,15.5,0.0,0.0, +2024-08-27 13:00:00,3.1144822,227.60262,17.55,1012.5232,90.0554,0.0,0.0,0.0,15.9,0.0,0.1, +2024-08-27 14:00:00,2.7856774,201.03758,17.4,1012.7171,92.37429,0.0,0.0,0.0,16.15,0.0,0.1, +2024-08-27 15:00:00,2.7892652,165.4655,17.4,1012.5188,91.202866,0.0,0.0,0.0,15.95,0.0,0.0, +2024-08-27 16:00:00,2.3345237,136.73567,17.35,1012.2197,89.75319,0.0,0.0,0.0,15.65,0.0,0.0, +2024-08-27 17:00:00,1.8,90.0,16.45,1011.59863,93.513145,0.0,0.0,0.0,15.4,0.0,0.0, +2024-08-27 18:00:00,1.6492423,75.96373,15.1,1011.1623,94.359604,0.0,0.0,0.0,14.2,0.0,0.0, +2024-08-27 19:00:00,2.2135942,71.564964,14.8,1010.5584,93.7364,0.0,0.0,0.0,13.8,0.0,0.0, +2024-08-27 20:00:00,2.4596748,63.435013,14.5,1010.3513,93.41766,0.0,0.0,0.0,13.45,0.0,0.0, +2024-08-27 21:00:00,2.0124612,63.435013,14.15,1010.24164,93.70566,0.0,0.0,0.0,13.15,0.0,0.0, +2024-08-27 22:00:00,1.9723083,59.53454,13.8,1010.52893,93.38289,0.0,0.0,0.0,12.75,0.0,0.0, +2024-08-27 23:00:00,2.5612497,51.34017,13.9,1010.7301,93.082855,3.0,19.124931,2.0,12.8,0.0,0.0, +2024-08-28 00:00:00,3.2649655,40.030197,15.15,1011.2631,91.64897,115.0,413.0767,45.0,13.8,0.0,0.0, +2024-08-28 01:00:00,2.4041631,44.999897,17.8,1011.73694,90.361115,316.0,591.31305,94.0,16.2,0.0,0.0, +2024-08-28 02:00:00,1.6492423,14.036275,19.9,1011.79755,74.82045,530.0,828.461,74.0,15.3,0.0,0.0, +2024-08-28 03:00:00,1.56205,309.8055,20.8,1010.8311,70.32298,657.0,778.03986,126.0,15.2,0.0,0.1, +2024-08-28 04:00:00,2.720294,252.89719,20.25,1010.2205,78.05164,450.0,258.3156,253.0,16.3,0.0,0.0, +2024-08-28 05:00:00,2.8301945,237.99466,20.15,1009.2259,80.30354,548.0,323.40036,294.0,16.65,0.0,0.0, +2024-08-28 06:00:00,2.3430748,219.80553,20.05,1008.0329,78.52112,484.0,293.62762,264.0,16.2,0.0,0.0, +2024-08-28 07:00:00,2.1540658,248.19853,20.65,1007.3557,74.23057,625.0,779.73474,113.0,15.9,0.0,0.0, +2024-08-28 08:00:00,2.8160255,263.88458,19.9,1007.1362,76.51793,431.0,585.74207,130.0,15.65,0.0,0.0, +2024-08-28 09:00:00,3.5,270.0,19.3,1007.0197,80.960815,284.0,668.2416,63.0,15.95,0.0,0.0, +2024-08-28 10:00:00,2.5019991,272.29056,18.05,1007.3807,88.385956,82.0,384.6724,29.0,16.1,0.0,0.0, +2024-08-28 11:00:00,2.6925824,291.80148,17.5,1007.76154,89.76441,0.0,0.0,0.0,15.8,0.0,0.0, +2024-08-28 12:00:00,3.224903,299.74478,17.7,1008.06476,88.92324,0.0,0.0,0.0,15.85,0.0,0.0, +2024-08-28 13:00:00,3.4,298.0724,17.85,1007.77167,90.65289,0.0,0.0,0.0,16.3,0.0,0.0, +2024-08-28 14:00:00,4.0706263,297.824,17.65,1007.56757,92.094826,0.0,0.0,0.0,16.35,0.0,0.0, +2024-08-28 15:00:00,4.846648,291.80145,17.7,1007.27136,92.68547,0.0,0.0,0.0,16.5,0.0,0.1, +2024-08-28 16:00:00,5.2810984,288.77814,17.85,1006.9783,92.399605,0.0,0.0,0.0,16.6,0.0,0.3, +2024-08-28 17:00:00,5.8549128,277.8532,18.2,1006.49255,87.55721,0.0,0.0,0.0,16.1,0.0,0.1, +2024-08-28 18:00:00,6.1,280.3888,18.75,1006.31,76.33632,0.0,0.0,0.0,14.5,0.0,0.0, +2024-08-28 19:00:00,6.2968245,280.06064,19.0,1005.82104,72.29086,0.0,0.0,0.0,13.9,0.0,0.0, +2024-08-28 20:00:00,6.5490456,277.01642,19.1,1005.92303,72.30894,0.0,0.0,0.0,14.0,0.0,0.0, +2024-08-28 21:00:00,5.6044626,285.52417,18.9,1006.3141,77.10215,0.0,0.0,0.0,14.8,0.0,0.0, +2024-08-28 22:00:00,4.9658837,295.01685,18.65,1006.80304,78.316154,0.0,0.0,0.0,14.8,0.0,0.0, +2024-08-28 23:00:00,5.9481087,286.60706,19.1,1007.41064,78.131035,3.0,0.0,3.0,15.2,0.0,0.0, +2024-08-29 00:00:00,6.2393913,291.63095,19.7,1007.92395,78.47013,49.0,28.774662,44.0,15.85,0.0,0.0, +2024-08-29 01:00:00,6.484597,289.8322,20.25,1008.1378,80.062485,114.0,78.98278,84.0,16.7,0.0,0.0, +2024-08-29 02:00:00,8.475848,250.70985,18.9,1008.6942,89.86815,167.0,66.6904,130.0,17.2,0.0,1.3, +2024-08-29 03:00:00,7.247068,219.40063,18.85,1009.0897,87.06059,220.0,87.36691,160.0,16.65,0.0,0.1, +2024-08-29 04:00:00,7.1610055,215.90982,18.9,1009.19006,81.167755,316.0,50.866962,277.0,15.6,0.0,0.0, +2024-08-29 05:00:00,6.6030297,215.13428,18.9,1009.09094,75.86894,311.0,89.964836,240.0,14.55,0.0,0.0, +2024-08-29 06:00:00,6.92026,217.36674,18.45,1008.6816,67.176865,311.0,54.47036,270.0,12.25,0.0,0.0, +2024-08-29 07:00:00,5.4405885,216.02747,18.35,1008.7775,62.449104,336.0,174.31789,221.0,11.05,0.0,0.0, +2024-08-29 08:00:00,5.60803,219.93633,18.75,1008.8885,58.52237,494.0,795.62463,83.0,10.45,0.0,0.0, +2024-08-29 09:00:00,5.3009434,215.78906,18.1,1009.0681,63.01691,268.0,585.4995,73.0,10.95,0.0,0.0, +2024-08-29 10:00:00,5.239275,203.6294,16.95,1009.4315,73.1108,56.0,158.38618,34.0,12.1,0.0,0.0, +2024-08-29 11:00:00,4.614109,209.8988,16.55,1010.01483,67.22742,0.0,0.0,0.0,10.45,0.0,0.0, +2024-08-29 12:00:00,4.429447,208.30066,16.35,1010.8024,60.95217,0.0,0.0,0.0,8.8,0.0,0.0, +2024-08-29 13:00:00,3.9812057,205.27768,16.15,1011.09393,61.11122,0.0,0.0,0.0,8.65,0.0,0.0, +2024-08-29 14:00:00,2.3323808,210.96368,15.3,1011.06885,62.80166,0.0,0.0,0.0,8.25,0.0,0.0, +2024-08-29 15:00:00,2.2022715,219.47243,13.9,1010.5318,67.35338,0.0,0.0,0.0,7.95,0.0,0.0, +2024-08-29 16:00:00,3.6359317,211.50421,16.2,1010.40137,57.69897,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-29 17:00:00,3.8832977,214.50858,15.8,1010.19135,59.191273,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-29 18:00:00,3.8948684,228.12221,16.35,1010.20746,56.377087,0.0,0.0,0.0,7.65,0.0,0.0, +2024-08-29 19:00:00,4.675468,228.46832,16.4,1009.91125,56.968674,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-29 20:00:00,4.750789,220.73201,16.45,1010.01196,56.40242,0.0,0.0,0.0,7.75,0.0,0.0, +2024-08-29 21:00:00,5.1739736,221.08165,16.55,1010.4115,54.35031,0.0,0.0,0.0,7.3,0.0,0.0, +2024-08-29 22:00:00,4.545327,219.64413,16.35,1011.00073,57.15026,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-29 23:00:00,4.4407206,215.83774,16.0,1011.1887,60.869404,3.0,17.66672,2.0,8.45,0.0,0.0, +2024-08-30 00:00:00,5.7870545,198.12195,15.4,1012.1629,77.316666,64.0,78.604004,50.0,11.45,0.0,0.0, +2024-08-30 01:00:00,5.3712196,204.17911,16.75,1012.79724,68.852234,193.0,106.70026,152.0,11.0,0.0,0.3, +2024-08-30 02:00:00,6.670832,203.87529,17.75,1012.8265,59.264244,362.0,395.20282,141.0,9.7,0.0,0.0, +2024-08-30 03:00:00,6.4884515,204.5901,18.15,1013.13544,59.559425,621.0,658.42505,166.0,10.15,0.0,0.0, +2024-08-30 04:00:00,5.99333,205.7099,18.4,1012.94446,58.43706,750.0,803.08276,131.0,10.1,0.0,0.0, +2024-08-30 05:00:00,6.053924,202.3287,18.05,1012.4384,59.336636,638.0,518.2952,227.0,10.0,0.0,0.0, +2024-08-30 06:00:00,6.040695,199.3349,17.8,1012.0344,61.49759,628.0,583.22034,187.0,10.3,0.0,0.0, +2024-08-30 07:00:00,6.016644,195.42223,17.5,1011.92664,61.839874,535.0,552.2184,169.0,10.1,0.0,0.0, +2024-08-30 08:00:00,6.2169123,191.12915,17.1,1012.0141,62.58019,413.0,529.6012,138.0,9.9,0.0,0.0, +2024-08-30 09:00:00,5.813777,183.94511,16.55,1012.19653,63.08689,248.0,491.99646,83.0,9.5,0.0,0.0, +2024-08-30 10:00:00,4.501111,178.727,15.6,1012.56525,66.57998,79.0,335.67526,32.0,9.4,0.0,0.0, +2024-08-30 11:00:00,3.765634,169.28693,14.9,1012.9412,68.47911,0.0,0.0,0.0,9.15,0.0,0.0, +2024-08-30 12:00:00,3.51141,160.0168,14.55,1013.4268,70.51502,0.0,0.0,0.0,9.25,0.0,0.0, +2024-08-30 13:00:00,2.7202942,143.97253,13.65,1013.7968,75.76079,0.0,0.0,0.0,9.45,0.0,0.0, +2024-08-30 14:00:00,2.408319,131.63345,13.1,1013.8794,78.26131,0.0,0.0,0.0,9.4,0.0,0.0, +2024-08-30 15:00:00,2.2825425,118.8107,12.65,1013.6674,79.52183,0.0,0.0,0.0,9.2,0.0,0.0, +2024-08-30 16:00:00,2.6076808,85.60138,12.1,1013.4526,79.174484,0.0,0.0,0.0,8.6,0.0,0.0, +2024-08-30 17:00:00,2.9410882,72.18102,11.3,1013.1309,80.412964,0.0,0.0,0.0,8.05,0.0,0.0, +2024-08-30 18:00:00,2.6683328,77.00539,11.35,1012.93414,78.79601,0.0,0.0,0.0,7.8,0.0,0.0, +2024-08-30 19:00:00,2.6683328,77.00539,12.0,1012.7556,74.97363,0.0,0.0,0.0,7.7,0.0,0.0, +2024-08-30 20:00:00,2.720294,72.89719,12.25,1012.2675,73.24959,0.0,0.0,0.0,7.6,0.0,0.0, +2024-08-30 21:00:00,2.6925821,74.931465,11.1,1012.3317,77.95655,0.0,0.0,0.0,7.4,0.0,0.0, +2024-08-30 22:00:00,2.84605,71.564964,10.85,1012.6215,78.45285,0.0,0.0,0.0,7.25,0.0,0.0, +2024-08-30 23:00:00,2.7730849,64.35905,10.3,1012.8033,81.10193,5.0,34.02077,3.0,7.2,0.0,0.0, +2024-08-31 00:00:00,2.7892652,75.46551,12.45,1013.16565,77.374275,134.0,476.75125,47.0,8.6,0.0,0.0, +2024-08-31 01:00:00,2.2,90.0,15.35,1014.0454,69.49628,220.0,138.92406,166.0,9.8,0.0,0.0, +2024-08-31 02:00:00,2.1633308,146.3099,16.6,1013.9831,67.237816,429.0,471.94577,163.0,10.5,0.0,0.0, +2024-08-31 03:00:00,2.3086793,175.03035,17.4,1014.00635,66.29597,602.0,605.46625,181.0,11.05,0.0,0.0, +2024-08-31 04:00:00,3.324154,186.91113,17.8,1013.522,63.79192,576.0,428.47,244.0,10.85,0.0,0.1, +2024-08-31 05:00:00,3.8327537,195.12405,17.95,1012.73303,62.15046,526.0,271.09744,310.0,10.6,0.0,0.1, +2024-08-31 06:00:00,3.9560082,200.72563,18.35,1011.85187,57.648014,595.0,418.65454,277.0,9.85,0.0,0.0, +2024-08-31 07:00:00,3.8078866,203.19861,18.25,1011.65076,61.193592,650.0,820.0259,104.0,10.65,0.0,0.0, +2024-08-31 08:00:00,4.472136,206.56499,17.75,1011.53723,65.280106,429.0,561.381,136.0,11.15,0.0,0.0, +2024-08-31 09:00:00,4.9729266,195.15411,16.5,1011.6991,76.97976,184.0,213.2223,112.0,12.45,0.0,0.0, +2024-08-31 10:00:00,4.101219,181.39716,16.0,1012.18036,77.409454,65.0,226.74753,33.0,12.05,0.0,0.0, +2024-08-31 11:00:00,3.710795,165.96373,15.05,1012.4498,82.26762,0.0,0.0,0.0,12.05,0.0,0.0, +2024-08-31 12:00:00,2.6400757,142.69597,14.8,1012.74,83.87779,0.0,0.0,0.0,12.1,0.0,0.0, +2024-08-31 13:00:00,2.624881,139.63554,14.15,1012.91895,81.88252,0.0,0.0,0.0,11.1,0.0,0.0, +2024-08-31 14:00:00,2.1540658,111.801476,13.55,1013.00037,84.85253,0.0,0.0,0.0,11.05,0.0,0.0, +2024-08-31 15:00:00,2.0615528,104.03627,12.7,1012.7766,87.63209,0.0,0.0,0.0,10.7,0.0,0.0, +2024-08-31 16:00:00,1.746425,103.24053,12.05,1012.5589,87.28046,0.0,0.0,0.0,10.0,0.0,0.0, +2024-08-31 17:00:00,1.5,90.0,11.3,1012.4368,85.75363,0.0,0.0,0.0,9.0,0.0,0.0, +2024-08-31 18:00:00,1.9104973,96.00892,10.6,1012.019,85.68049,0.0,0.0,0.0,8.3,0.0,0.0, +2024-08-31 19:00:00,1.603122,93.57626,11.15,1011.7384,82.88655,0.0,0.0,0.0,8.35,0.0,0.0, +2024-08-31 20:00:00,2.5317976,80.909805,11.2,1011.64075,81.499054,0.0,0.0,0.0,8.15,0.0,0.0, +2024-08-31 21:00:00,2.570992,76.50425,11.0,1011.93225,80.920296,0.0,0.0,0.0,7.85,0.0,0.0, +2024-08-31 22:00:00,2.720294,72.89719,11.3,1012.3377,78.520676,0.0,0.0,0.0,7.7,0.0,0.0, +2024-08-31 23:00:00,2.8792362,69.67678,11.35,1012.4384,78.79601,6.0,16.395874,5.0,7.8,0.0,0.0, +2024-09-01 00:00:00,3.2572994,72.12121,13.6,1013.0019,74.74013,133.0,428.05743,53.0,9.2,0.0,0.0, +2024-09-01 01:00:00,2.6683328,77.00539,16.3,1014.07336,67.62535,345.0,663.8381,84.0,10.3,0.0,0.0, +2024-09-01 02:00:00,2.9732137,137.72638,17.8,1014.2162,60.681507,541.0,765.77673,106.0,10.1,0.0,0.0, +2024-09-01 03:00:00,3.6674242,154.1337,18.35,1014.3312,58.22977,551.0,423.08627,255.0,10.0,0.0,0.0, +2024-09-01 04:00:00,3.6249137,155.55606,18.85,1013.9492,57.77131,532.0,322.24393,281.0,10.35,0.0,0.0, +2024-09-01 05:00:00,3.7643058,163.0091,19.4,1012.9731,57.141586,682.0,492.17667,288.0,10.7,0.0,0.0, +2024-09-01 06:00:00,4.2579336,170.53775,19.85,1012.19257,57.443005,750.0,770.6533,162.0,11.2,0.0,0.0, +2024-09-01 07:00:00,4.7675986,170.34018,19.7,1011.4943,60.127407,653.0,778.92914,132.0,11.75,0.0,0.0, +2024-09-01 08:00:00,5.5,180.0,18.95,1011.3735,63.000187,475.0,684.3561,116.0,11.75,0.0,0.0, +2024-09-01 09:00:00,5.7008767,178.99493,17.95,1011.34467,66.85223,297.0,673.58295,68.0,11.7,0.0,0.0, +2024-09-01 10:00:00,5.1923018,164.3577,16.65,1011.8027,72.57691,89.0,393.7273,33.0,11.7,0.0,0.0, +2024-09-01 11:00:00,4.3382025,154.02567,15.7,1012.0726,76.34809,0.0,0.0,0.0,11.55,0.0,0.0, +2024-09-01 12:00:00,4.0496917,147.09476,15.05,1012.7473,77.77619,0.0,0.0,0.0,11.2,0.0,0.0, +2024-09-01 13:00:00,3.3301651,131.34769,13.9,1012.9116,82.94471,0.0,0.0,0.0,11.05,0.0,0.0, +2024-09-01 14:00:00,3.1906114,122.1957,13.3,1013.0922,85.39077,0.0,0.0,0.0,10.9,0.0,0.0, +2024-09-01 15:00:00,3.0463092,113.19862,12.65,1013.0725,87.62755,0.0,0.0,0.0,10.65,0.0,0.0, +2024-09-01 16:00:00,3.008322,105.42222,12.2,1012.9599,88.173325,0.0,0.0,0.0,10.3,0.0,0.0, +2024-09-01 17:00:00,3.1780496,102.72436,11.8,1012.2539,88.13831,0.0,0.0,0.0,9.9,0.0,0.0, +2024-09-01 18:00:00,3.49285,103.24053,11.7,1011.3583,86.373604,0.0,0.0,0.0,9.5,0.0,0.0, +2024-09-01 19:00:00,3.981206,101.59215,11.8,1010.6674,83.80922,0.0,0.0,0.0,9.15,0.0,0.0, +2024-09-01 20:00:00,4.341659,97.94338,11.9,1010.1745,81.86692,0.0,0.0,0.0,8.9,0.0,0.0, +2024-09-01 21:00:00,4.4,90.0,12.0,1010.2768,79.96738,0.0,0.0,0.0,8.65,0.0,0.0, +2024-09-01 22:00:00,4.7518415,81.528946,12.3,1010.4839,76.82847,0.0,0.0,0.0,8.35,0.0,0.0, +2024-09-01 23:00:00,5.6320515,73.49557,12.85,1010.50037,74.10757,7.0,47.46136,4.0,8.35,0.0,0.0, +2024-09-02 00:00:00,6.706713,69.943825,14.85,1010.6592,68.46893,148.0,548.82263,43.0,9.1,0.0,0.0, +2024-09-02 01:00:00,6.2297673,71.27412,17.6,1010.3428,65.46451,366.0,754.4377,66.0,11.05,0.0,0.0, +2024-09-02 02:00:00,6.041523,65.55606,20.65,1009.73596,56.697437,564.0,850.68384,77.0,11.75,0.0,0.0, +2024-09-02 03:00:00,5.189412,64.91644,23.35,1009.2167,48.889362,716.0,897.8493,84.0,12.0,0.0,0.0, +2024-09-02 04:00:00,4.661545,54.605125,25.7,1008.48804,42.197422,806.0,918.3055,87.0,11.9,0.0,0.0, +2024-09-02 05:00:00,1.4142135,8.130019,26.6,1007.7189,39.356594,828.0,920.0858,88.0,11.65,0.0,0.0, +2024-09-02 06:00:00,3.1827662,223.72705,24.9,1007.17645,63.10395,782.0,908.1624,86.0,17.4,0.0,0.0, +2024-09-02 07:00:00,4.614109,209.8988,22.8,1006.8209,73.65875,670.0,876.6422,81.0,17.85,0.0,0.0, +2024-09-02 08:00:00,3.4014702,204.30453,21.85,1006.79443,73.72885,503.0,813.7065,74.0,16.95,0.0,0.0, +2024-09-02 09:00:00,3.0675724,199.0257,20.9,1007.16437,74.50999,299.0,695.3816,61.0,16.2,0.0,0.0, +2024-09-02 10:00:00,1.7117243,186.70975,18.55,1007.59357,83.49603,91.0,418.61667,31.0,15.7,0.0,0.0, +2024-09-02 11:00:00,2.5495098,168.69011,16.75,1008.23553,87.14496,0.0,0.0,0.0,14.6,0.0,0.0, +2024-09-02 12:00:00,1.8027756,109.440125,17.2,1008.84375,83.338646,0.0,0.0,0.0,14.35,0.0,0.0, +2024-09-02 13:00:00,1.3000001,67.3801,16.15,1008.91235,84.58068,0.0,0.0,0.0,13.55,0.0,0.0, +2024-09-02 14:00:00,1.5264337,58.392544,14.25,1008.6583,88.93221,0.0,0.0,0.0,12.45,0.0,0.0, +2024-09-02 15:00:00,1.2041595,48.366554,14.05,1008.35474,88.0431,0.0,0.0,0.0,12.1,0.0,0.0, +2024-09-02 16:00:00,0.7211103,33.6901,14.9,1007.884,81.17095,0.0,0.0,0.0,11.7,0.0,0.0, +2024-09-02 17:00:00,1.8027756,326.3099,15.5,1007.90173,76.82257,0.0,0.0,0.0,11.45,0.0,0.0, +2024-09-02 18:00:00,2.8635643,282.09473,13.9,1007.35876,91.570854,0.0,0.0,0.0,12.55,0.0,0.0, +2024-09-02 19:00:00,2.3259406,295.46332,15.2,1007.0003,92.548294,0.0,0.0,0.0,14.0,0.0,0.0, +2024-09-02 20:00:00,2.8653097,240.75127,14.45,1006.6808,95.25645,0.0,0.0,0.0,13.7,0.0,0.0, +2024-09-02 21:00:00,2.2022715,219.47243,16.2,1007.12885,90.24742,0.0,0.0,0.0,14.6,0.0,0.0, +2024-09-02 22:00:00,2.2022717,177.39749,15.1,1007.7907,90.75668,0.0,0.0,0.0,13.6,0.0,0.0, +2024-09-02 23:00:00,2.1260293,131.18582,14.3,1008.1637,92.80035,8.0,45.84484,5.0,13.15,0.0,0.0, +2024-09-03 00:00:00,1.8027756,109.440125,17.45,1008.65247,89.47401,141.0,454.62924,52.0,15.7,0.0,0.0, +2024-09-03 01:00:00,3.0805843,166.86597,19.2,1009.5954,78.14585,324.0,552.0549,102.0,15.3,0.0,0.1, +2024-09-03 02:00:00,2.828427,188.13002,20.0,1009.71735,73.173706,475.0,611.8818,122.0,15.05,0.0,0.0, +2024-09-03 03:00:00,2.7784889,210.25635,20.6,1009.5361,70.28501,601.0,595.89496,179.0,15.0,0.0,0.0, +2024-09-03 04:00:00,3.3970575,222.61401,20.75,1009.2429,70.08791,731.0,721.7291,163.0,15.1,0.0,0.0, +2024-09-03 05:00:00,3.9623227,222.95459,20.55,1008.74146,70.04969,801.0,853.9604,111.0,14.9,0.0,0.0, +2024-09-03 06:00:00,4.5,216.86998,20.15,1008.03577,69.97306,765.0,869.1075,96.0,14.5,0.0,0.0, +2024-09-03 07:00:00,4.2720017,212.57405,19.85,1007.5313,69.239395,659.0,847.5629,87.0,14.05,0.0,0.0, +2024-09-03 08:00:00,4.304649,210.73541,19.4,1007.41925,69.82863,495.0,788.9215,77.0,13.75,0.0,0.0, +2024-09-03 09:00:00,3.8587563,211.21834,18.8,1007.5013,70.85804,293.0,664.66925,64.0,13.4,0.0,0.0, +2024-09-03 10:00:00,2.8178005,207.47435,17.75,1007.8679,74.45873,89.0,394.6755,32.0,13.15,0.0,0.0, +2024-09-03 11:00:00,2.3259406,205.4633,16.85,1008.13947,77.54001,0.0,0.0,0.0,12.9,0.0,0.0, +2024-09-03 12:00:00,2.3259406,205.4633,16.5,1008.7241,78.50845,0.0,0.0,0.0,12.75,0.0,0.0, +2024-09-03 13:00:00,2.4698176,211.75943,16.05,1008.9095,79.21839,0.0,0.0,0.0,12.45,0.0,0.0, +2024-09-03 14:00:00,2.3600848,216.38445,15.9,1008.50836,79.71869,0.0,0.0,0.0,12.4,0.0,0.0, +2024-09-03 15:00:00,2.2627418,224.9999,15.7,1008.20514,79.95292,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-03 16:00:00,2.2203603,234.16226,15.8,1007.81134,78.922516,0.0,0.0,0.0,12.15,0.0,0.0, +2024-09-03 17:00:00,2.2825425,241.1893,15.95,1007.4191,78.68535,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-03 18:00:00,2.404163,253.0724,16.0,1006.9246,78.43455,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-03 19:00:00,3.224903,262.8751,16.35,1006.6374,76.45211,0.0,0.0,0.0,12.2,0.0,0.0, +2024-09-03 20:00:00,4.317406,256.60748,16.65,1006.4477,74.761215,0.0,0.0,0.0,12.15,0.0,0.0, +2024-09-03 21:00:00,4.6572523,255.06853,16.15,1006.53235,84.03196,0.0,0.0,0.0,13.45,0.0,0.1, +2024-09-03 22:00:00,3.3,270.0,16.05,1006.5295,82.66163,0.0,0.0,0.0,13.1,0.0,0.0, +2024-09-03 23:00:00,3.7013512,271.54813,16.3,1006.73505,80.0362,8.0,44.330486,5.0,12.85,0.0,0.0, +2024-09-04 00:00:00,4.509989,273.814,17.85,1007.07745,74.23322,124.0,359.60324,52.0,13.2,0.0,0.0, +2024-09-04 01:00:00,5.124451,287.0206,19.0,1007.01117,69.978775,330.0,582.85046,93.0,13.4,0.0,0.0, +2024-09-04 02:00:00,5.885576,279.78235,19.55,1006.8286,66.74739,519.0,684.6369,121.0,13.2,0.0,0.1, +2024-09-04 03:00:00,6.0827627,279.46225,19.45,1006.72656,68.26681,525.0,473.02356,188.0,13.45,0.0,0.3, +2024-09-04 04:00:00,6.432729,281.65927,19.45,1006.13153,68.71259,592.0,504.41608,193.0,13.55,0.0,0.8, +2024-09-04 05:00:00,6.902898,271.66025,19.3,1005.6312,70.264435,661.0,522.35785,237.0,13.75,0.0,0.1, +2024-09-04 06:00:00,6.419502,274.46707,18.9,1004.9256,72.27278,675.0,645.45044,176.0,13.8,0.0,0.0, +2024-09-04 07:00:00,6.1073728,267.1845,18.55,1004.42,73.155106,557.0,622.55817,135.0,13.65,0.0,0.1, +2024-09-04 08:00:00,6.1188235,258.6901,17.9,1004.203,74.971176,349.0,392.53333,140.0,13.4,0.0,0.1, +2024-09-04 09:00:00,5.4708314,251.89613,17.3,1004.08655,77.10443,220.0,328.72537,106.0,13.25,0.0,0.1, +2024-09-04 10:00:00,4.588028,249.59003,16.65,1004.1668,78.78771,80.0,295.51224,37.0,12.95,0.0,0.2, +2024-09-04 11:00:00,4.3081317,248.19853,16.4,1004.5563,78.23694,0.0,0.0,0.0,12.6,0.0,0.1, +2024-09-04 12:00:00,3.8897302,252.03076,16.1,1004.94415,79.22554,0.0,0.0,0.0,12.5,0.0,0.0, +2024-09-04 13:00:00,4.9497476,261.87,16.3,1004.7518,75.94278,0.0,0.0,0.0,12.05,0.0,0.0, +2024-09-04 14:00:00,5.2773094,260.18076,16.05,1004.54614,78.18466,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-04 15:00:00,5.731492,263.9911,15.1,1004.2209,80.66375,0.0,0.0,0.0,11.8,0.0,0.1, +2024-09-04 16:00:00,4.8507733,278.29706,15.25,1003.9279,83.92942,0.0,0.0,0.0,12.55,0.0,0.2, +2024-09-04 17:00:00,5.4451814,277.38596,15.8,1003.6464,75.611,0.0,0.0,0.0,11.5,0.0,0.1, +2024-09-04 18:00:00,7.3979726,256.71512,14.8,1003.8154,76.71165,0.0,0.0,0.0,10.75,0.0,0.0, +2024-09-04 19:00:00,7.8185678,249.01503,15.25,1003.53125,75.52018,0.0,0.0,0.0,10.95,0.0,0.1, +2024-09-04 20:00:00,7.3389373,250.0835,15.65,1003.4437,68.4017,0.0,0.0,0.0,9.85,0.0,0.0, +2024-09-04 21:00:00,7.9120164,249.27435,15.1,1003.7251,72.779015,0.0,0.0,0.0,10.25,0.0,0.5, +2024-09-04 22:00:00,8.39345,248.32529,14.8,1004.41046,65.29506,0.0,0.0,0.0,8.35,0.0,0.1, +2024-09-04 23:00:00,7.7878113,245.73871,13.4,1005.3607,82.05935,6.0,28.607141,4.0,10.4,0.0,0.9, +2024-09-05 00:00:00,7.6850505,237.75755,13.8,1006.26514,79.155846,73.0,131.91124,46.0,10.25,0.0,0.3, +2024-09-05 01:00:00,8.746428,239.0363,14.75,1006.88794,71.267914,113.0,72.97366,83.0,9.6,0.0,0.1, +2024-09-05 02:00:00,8.881441,234.16226,15.4,1007.7997,70.20761,372.0,351.69238,166.0,10.0,0.0,0.2, +2024-09-05 03:00:00,9.840732,232.43134,15.85,1008.40765,54.728863,650.0,680.91864,162.0,6.75,0.0,0.1, +2024-09-05 04:00:00,9.263369,225.43732,16.0,1008.61035,51.12411,759.0,797.47955,125.0,5.9,0.0,0.0, +2024-09-05 05:00:00,8.8729925,219.97087,16.0,1008.7096,49.90042,782.0,819.2483,114.0,5.55,0.0,0.0, +2024-09-05 06:00:00,8.160882,216.02747,15.8,1008.803,51.247097,772.0,850.04944,112.0,5.75,0.0,0.0, +2024-09-05 07:00:00,7.5802374,210.96368,15.4,1009.0888,52.213955,593.0,672.74084,135.0,5.65,0.0,0.0, +2024-09-05 08:00:00,7.3824115,208.30066,15.15,1009.6765,52.692326,453.0,639.2263,111.0,5.55,0.0,0.0, +2024-09-05 09:00:00,7.077429,203.30492,14.75,1010.0611,55.201096,267.0,521.42334,85.0,5.85,0.0,0.0, +2024-09-05 10:00:00,6.484597,199.83221,14.2,1011.03656,56.411293,91.0,382.0097,35.0,5.65,0.0,0.0, +2024-09-05 11:00:00,5.9774575,197.52565,13.8,1011.81805,57.49363,0.0,0.0,0.0,5.55,0.0,0.0, +2024-09-05 12:00:00,5.531727,192.5288,13.75,1012.8081,57.680634,0.0,0.0,0.0,5.55,0.0,0.0, +2024-09-05 13:00:00,4.2426405,188.13002,13.5,1013.49445,59.856346,0.0,0.0,0.0,5.85,0.0,0.0, +2024-09-05 14:00:00,3.306055,176.53185,13.1,1013.5819,62.29256,0.0,0.0,0.0,6.05,0.0,0.0, +2024-09-05 15:00:00,2.5,163.73972,12.3,1013.55774,66.78516,0.0,0.0,0.0,6.3,0.0,0.0, +2024-09-05 16:00:00,2.376973,157.75093,11.9,1013.5458,69.04024,0.0,0.0,0.0,6.4,0.0,0.0, +2024-09-05 17:00:00,2.1633308,146.3099,11.35,1013.62823,70.61458,0.0,0.0,0.0,6.2,0.0,0.0, +2024-09-05 18:00:00,1.8601075,126.25393,10.25,1013.6941,74.93057,0.0,0.0,0.0,6.0,0.0,0.0, +2024-09-05 19:00:00,1.9646883,104.743614,10.65,1013.607,72.20653,0.0,0.0,0.0,5.85,0.0,0.0, +2024-09-05 20:00:00,2.0099752,84.2895,10.4,1013.79767,71.41314,0.0,0.0,0.0,5.45,0.0,0.0, +2024-09-05 21:00:00,2.5632012,69.44388,11.2,1014.21875,65.173874,0.0,0.0,0.0,4.9,0.0,0.0, +2024-09-05 22:00:00,2.9206164,51.952908,11.05,1014.80884,65.82535,0.0,0.0,0.0,4.9,0.0,0.0, +2024-09-05 23:00:00,3.535534,44.999897,10.15,1015.5747,71.11752,9.0,41.577938,6.0,5.15,0.0,0.0, +2024-09-06 00:00:00,3.2526913,44.999897,12.25,1016.3328,68.63811,106.0,191.25366,66.0,6.65,0.0,0.0, +2024-09-06 01:00:00,2.7892652,75.46551,14.8,1017.3015,60.791344,343.0,591.93896,97.0,7.3,0.0,0.0, +2024-09-06 02:00:00,2.7018511,128.991,16.35,1017.4466,55.613155,540.0,710.0116,121.0,7.45,0.0,0.0, +2024-09-06 03:00:00,3.5693135,168.69011,17.1,1017.2701,51.95113,653.0,688.0324,157.0,7.15,0.0,0.0, +2024-09-06 04:00:00,3.0149627,185.7105,17.3,1016.9785,51.122837,554.0,381.74228,249.0,7.1,0.0,0.0, +2024-09-06 05:00:00,3.7,198.92474,17.6,1016.59045,49.311653,617.0,472.51007,230.0,6.85,0.0,0.0, +2024-09-06 06:00:00,4.159327,207.18103,17.05,1016.3762,52.653255,412.0,152.6191,293.0,7.3,0.0,0.0, +2024-09-06 07:00:00,3.748333,189.21095,17.85,1016.1019,50.92203,584.0,520.6805,228.0,7.55,0.0,0.0, +2024-09-06 08:00:00,3.901282,178.53123,17.05,1016.27704,55.60287,254.0,132.07193,183.0,8.1,0.0,0.0, +2024-09-06 09:00:00,4.004997,182.86235,16.55,1016.4607,57.78597,234.0,321.6776,121.0,8.2,0.0,0.0, +2024-09-06 10:00:00,3.4014704,181.68465,15.3,1017.31616,63.228962,87.0,338.59143,37.0,8.35,0.0,0.0, +2024-09-06 11:00:00,2.6925821,164.93146,14.25,1017.9793,66.9708,1.0,0.0,1.0,8.2,0.0,0.0, +2024-09-06 12:00:00,2.2627418,135.0001,13.35,1018.6463,70.52095,0.0,0.0,0.0,8.1,0.0,0.0, +2024-09-06 13:00:00,2.4515302,101.768265,12.4,1019.0144,70.81851,0.0,0.0,0.0,7.25,0.0,0.0, +2024-09-06 14:00:00,2.4738634,104.03627,12.15,1019.2051,68.85391,0.0,0.0,0.0,6.6,0.0,0.0, +2024-09-06 15:00:00,3.224903,119.74479,12.4,1019.4111,67.26785,0.0,0.0,0.0,6.5,0.0,0.0, +2024-09-06 16:00:00,3.0364454,107.241554,11.85,1019.09705,74.69274,0.0,0.0,0.0,7.5,0.0,0.0, +2024-09-06 17:00:00,3.0413814,99.46225,11.4,1019.0833,80.42683,0.0,0.0,0.0,8.15,0.0,0.0, +2024-09-06 18:00:00,3.1780496,102.72436,11.45,1019.184,80.98124,0.0,0.0,0.0,8.3,0.0,0.0, +2024-09-06 19:00:00,3.2015622,104.47034,11.15,1019.0756,82.3264,0.0,0.0,0.0,8.25,0.0,0.0, +2024-09-06 20:00:00,3.206244,93.57626,10.85,1019.06635,82.56853,0.0,0.0,0.0,8.0,0.0,0.0, +2024-09-06 21:00:00,3.306055,86.531845,10.4,1019.0526,83.929794,0.0,0.0,0.0,7.8,0.0,0.0, +2024-09-06 22:00:00,3.5014284,88.363464,10.15,1019.3423,84.76298,0.0,0.0,0.0,7.7,0.0,0.0, +2024-09-06 23:00:00,3.905125,87.064384,10.55,1019.7514,82.53088,12.0,67.20661,7.0,7.7,0.0,0.0, +2024-09-07 00:00:00,4.3,90.0,12.75,1020.5123,78.20842,164.0,529.0153,51.0,9.05,0.0,0.0, +2024-09-07 01:00:00,3.9293766,104.743614,15.4,1021.3851,70.4428,387.0,749.92017,72.0,10.05,0.0,0.0, +2024-09-07 02:00:00,4.248529,116.56499,17.25,1021.2413,62.40542,585.0,842.7234,84.0,10.0,0.0,0.0, +2024-09-07 03:00:00,3.7802117,127.47626,18.5,1020.782,56.91776,738.0,892.30835,91.0,9.8,0.0,0.0, +2024-09-07 04:00:00,3.5805027,144.09018,19.6,1020.51636,51.045208,831.0,916.6764,95.0,9.2,0.0,0.0, +2024-09-07 05:00:00,4.049691,159.77505,20.25,1019.64233,46.6094,810.0,810.7979,143.0,8.45,0.0,0.0, +2024-09-07 06:00:00,5.2153616,175.60138,19.9,1018.9383,48.606285,676.0,593.8831,211.0,8.75,0.0,0.0, +2024-09-07 07:00:00,6.519202,184.39862,19.0,1018.81287,63.847538,649.0,709.27313,162.0,12.0,0.0,0.0, +2024-09-07 08:00:00,6.9,180.0,18.3,1018.4952,65.183266,513.0,784.99634,89.0,11.65,0.0,0.0, +2024-09-07 09:00:00,6.9584484,172.56868,17.55,1018.4734,66.98996,310.0,690.219,66.0,11.35,0.0,0.0, +2024-09-07 10:00:00,6.4031243,165.52966,16.5,1019.1366,72.54975,98.0,423.54675,35.0,11.55,0.0,0.0, +2024-09-07 11:00:00,6.2297673,161.27412,15.8,1019.7112,74.61701,1.0,0.0,1.0,11.3,0.0,0.0, +2024-09-07 12:00:00,5.727128,155.22488,15.45,1020.29553,74.55731,0.0,0.0,0.0,10.95,0.0,0.0, +2024-09-07 13:00:00,5.420332,150.1241,14.75,1020.3739,76.95923,0.0,0.0,0.0,10.75,0.0,0.0, +2024-09-07 14:00:00,5.2801514,142.69597,14.3,1020.45953,76.63194,0.0,0.0,0.0,10.25,0.0,0.0, +2024-09-07 15:00:00,5.0931325,133.4089,13.65,1020.24207,73.006195,0.0,0.0,0.0,8.9,0.0,0.0, +2024-09-07 16:00:00,4.5,126.86999,13.0,1020.2223,70.934166,0.0,0.0,0.0,7.85,0.0,0.0, +2024-09-07 17:00:00,4.0496917,122.90524,12.3,1020.102,73.009315,0.0,0.0,0.0,7.6,0.0,0.0, +2024-09-07 18:00:00,3.9357338,117.216034,11.7,1019.78625,76.211235,0.0,0.0,0.0,7.65,0.0,0.0, +2024-09-07 19:00:00,4.0249224,116.56499,11.3,1019.2783,78.520676,0.0,0.0,0.0,7.7,0.0,0.0, +2024-09-07 20:00:00,4.2953463,114.775116,10.9,1018.67126,80.63163,0.0,0.0,0.0,7.7,0.0,0.0, +2024-09-07 21:00:00,4.531004,112.036285,10.75,1018.5677,81.43954,0.0,0.0,0.0,7.7,0.0,0.0, +2024-09-07 22:00:00,4.6840153,106.11349,10.6,1018.8602,81.41964,0.0,0.0,0.0,7.55,0.0,0.0, +2024-09-07 23:00:00,5.141984,103.49575,10.85,1019.16547,79.53225,14.0,91.34367,7.0,7.45,0.0,0.0, +2024-09-08 00:00:00,5.2886667,105.3502,12.8,1019.4232,74.09881,175.0,573.26,50.0,8.3,0.0,0.0, +2024-09-08 01:00:00,4.7801676,105.78082,15.4,1019.69934,67.89349,398.0,767.9854,72.0,9.5,0.0,0.0, +2024-09-08 02:00:00,4.2720017,110.55613,17.95,1019.3775,59.910835,599.0,861.6597,83.0,10.05,0.0,0.0, +2024-09-08 03:00:00,4.5188494,114.86367,20.05,1018.6448,50.48266,753.0,909.16205,90.0,9.45,0.0,0.0, +2024-09-08 04:00:00,4.294182,117.75845,21.35,1017.49176,44.753117,846.0,932.0798,94.0,8.85,0.0,0.0, +2024-09-08 05:00:00,3.7215588,120.699646,22.35,1016.5283,40.70247,869.0,937.9981,94.0,8.35,0.0,0.0, +2024-09-08 06:00:00,3.3970575,137.38599,22.7,1015.34796,39.57705,820.0,925.95734,92.0,8.25,0.0,0.0, +2024-09-08 07:00:00,4.159327,152.81897,22.7,1014.6537,39.30938,703.0,893.4159,87.0,8.15,0.0,0.0, +2024-09-08 08:00:00,5.5108986,168.4862,21.8,1014.1323,45.63888,530.0,831.10034,79.0,9.55,0.0,0.0, +2024-09-08 09:00:00,6.419502,175.53293,19.75,1013.6773,62.561153,280.0,449.7829,120.0,12.4,0.0,0.0, +2024-09-08 10:00:00,7.170077,171.983,17.8,1013.81946,69.28899,79.0,166.87581,54.0,12.1,0.0,0.0, +2024-09-08 11:00:00,6.706713,159.94382,16.9,1013.9917,71.199196,1.0,0.0,1.0,11.65,0.0,0.0, +2024-09-08 12:00:00,6.369458,157.86446,16.75,1014.0864,76.51582,0.0,0.0,0.0,12.6,0.0,0.0, +2024-09-08 13:00:00,5.269725,146.61147,15.95,1014.16235,83.19099,0.0,0.0,0.0,13.1,0.0,0.0, +2024-09-08 14:00:00,4.313931,135.9391,15.45,1013.7507,85.33631,0.0,0.0,0.0,13.0,0.0,0.0, +2024-09-08 15:00:00,3.3301651,131.34769,14.95,1013.3395,81.17754,0.0,0.0,0.0,11.75,0.0,0.0, +2024-09-08 16:00:00,3.3286633,122.73522,14.6,1012.6349,70.05166,0.0,0.0,0.0,9.2,0.0,0.0, +2024-09-08 17:00:00,3.3837848,124.159744,14.55,1011.93945,63.705692,0.0,0.0,0.0,7.75,0.0,0.0, +2024-09-08 18:00:00,3.2015622,128.65984,14.3,1011.33685,63.432274,0.0,0.0,0.0,7.45,0.0,0.0, +2024-09-08 19:00:00,2.758623,133.53127,13.65,1010.72284,65.04238,0.0,0.0,0.0,7.2,0.0,0.0, +2024-09-08 20:00:00,2.4758837,133.36346,13.05,1010.40735,67.17451,0.0,0.0,0.0,7.1,0.0,0.0, +2024-09-08 21:00:00,2.2022715,129.47243,12.7,1010.1985,67.56254,0.0,0.0,0.0,6.85,0.0,0.0, +2024-09-08 22:00:00,1.9849433,139.08571,12.45,1010.29016,67.51007,0.0,0.0,0.0,6.6,0.0,0.0, +2024-09-08 23:00:00,1.9723083,149.53453,12.65,1010.4944,68.25059,13.0,38.040257,10.0,6.95,0.0,0.0, +2024-09-09 00:00:00,2.745906,169.50858,14.75,1011.0527,67.303215,140.0,224.73677,90.0,8.75,0.0,0.0, +2024-09-09 01:00:00,2.8,180.0,17.85,1010.9451,50.403343,365.0,540.9129,133.0,7.4,0.0,0.0, +2024-09-09 02:00:00,2.9614186,168.31065,19.7,1010.3042,48.551716,586.0,764.31226,125.0,8.55,0.0,0.0, +2024-09-09 03:00:00,2.6925821,164.93146,21.6,1009.5643,46.20017,757.0,914.9612,86.0,9.55,0.0,0.0, +2024-09-09 04:00:00,3.4058774,183.3664,22.55,1008.5994,47.556545,830.0,872.1312,123.0,10.85,0.0,0.0, +2024-09-09 05:00:00,5.0695167,194.85866,22.25,1007.7973,54.006138,811.0,818.29663,132.0,12.5,0.0,0.0, +2024-09-09 06:00:00,5.885576,189.78233,21.75,1006.7917,55.31395,759.0,766.3943,154.0,12.4,0.0,0.0, +2024-09-09 07:00:00,5.842089,186.88162,21.7,1006.4925,49.752228,698.0,882.5256,87.0,10.75,0.0,0.0, +2024-09-09 08:00:00,6.239391,186.4415,20.75,1006.6643,51.350876,524.0,808.93976,83.0,10.35,0.0,0.0, +2024-09-09 09:00:00,7.006426,182.45398,19.1,1006.9148,65.355705,317.0,701.25,66.0,12.45,0.0,0.0, +2024-09-09 10:00:00,6.8264194,174.95764,17.9,1007.37646,73.279015,103.0,457.33014,34.0,13.05,0.0,0.0, +2024-09-09 11:00:00,6.9857,166.75948,17.2,1007.7529,83.338646,1.0,0.0,1.0,14.35,0.0,0.0, +2024-09-09 12:00:00,6.9857,166.75948,16.8,1008.1379,88.28039,0.0,0.0,0.0,14.85,0.0,0.0, +2024-09-09 13:00:00,6.6098413,162.38733,16.2,1009.013,90.83146,0.0,0.0,0.0,14.7,0.0,0.0, +2024-09-09 14:00:00,6.705222,162.64589,16.05,1008.9095,91.40932,0.0,0.0,0.0,14.65,0.0,0.0, +2024-09-09 15:00:00,6.1351447,160.9743,15.7,1008.89935,90.2115,0.0,0.0,0.0,14.1,0.0,0.0, +2024-09-09 16:00:00,5.7384667,157.4569,15.25,1008.9852,87.28924,0.0,0.0,0.0,13.15,0.0,0.0, +2024-09-09 17:00:00,5.4589376,151.55717,14.6,1009.16425,85.808846,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-09 18:00:00,5.5470715,152.04913,14.15,1009.0517,85.19862,0.0,0.0,0.0,11.7,0.0,0.0, +2024-09-09 19:00:00,5.635601,152.52565,13.85,1008.64624,84.60469,0.0,0.0,0.0,11.3,0.0,0.0, +2024-09-09 20:00:00,5.95399,150.85202,13.65,1008.5413,83.19032,0.0,0.0,0.0,10.85,0.0,0.0, +2024-09-09 21:00:00,5.6302752,146.59216,13.4,1009.0295,81.5137,0.0,0.0,0.0,10.3,0.0,0.0, +2024-09-09 22:00:00,5.6035705,145.17545,13.05,1009.71326,80.924225,0.0,0.0,0.0,9.85,0.0,0.0, +2024-09-09 23:00:00,5.9076223,146.04091,13.25,1010.4133,79.341354,16.0,86.30916,9.0,9.75,0.0,0.0, +2024-09-10 00:00:00,5.215362,147.52882,14.8,1011.05426,75.44551,177.0,555.2381,51.0,10.5,0.0,0.0, +2024-09-10 01:00:00,5.994164,152.15251,16.85,1011.2137,70.48741,390.0,717.6967,79.0,11.45,0.0,0.0, +2024-09-10 02:00:00,6.296825,159.55037,18.85,1011.0732,62.77002,600.0,852.71844,82.0,11.6,0.0,0.0, +2024-09-10 03:00:00,6.726812,168.85715,20.05,1010.909,58.06537,751.0,897.6517,89.0,11.55,0.0,0.0, +2024-09-10 04:00:00,6.902898,178.33975,20.5,1010.62415,58.174957,843.0,919.577,94.0,12.0,0.0,0.0, +2024-09-10 05:00:00,7.006426,182.45398,20.65,1010.43024,63.587334,865.0,924.0375,95.0,13.5,0.0,0.0, +2024-09-10 06:00:00,7.4242845,184.63538,20.5,1009.7315,68.25598,815.0,910.94,93.0,14.45,0.0,0.0, +2024-09-10 07:00:00,7.602631,181.5074,20.15,1009.9201,70.88201,698.0,877.5058,88.0,14.7,0.0,0.0, +2024-09-10 08:00:00,7.7058415,177.76888,19.8,1010.1087,69.90576,524.0,799.7933,86.0,14.15,0.0,0.0, +2024-09-10 09:00:00,7.4330344,174.5963,19.0,1010.7797,72.76126,317.0,691.43463,68.0,14.0,0.0,0.0, +2024-09-10 10:00:00,6.315061,169.04597,17.9,1011.6408,77.69982,103.0,440.99173,36.0,13.95,0.0,0.0, +2024-09-10 11:00:00,5.6320515,163.49556,17.2,1012.11633,81.73582,1.0,0.0,1.0,14.05,0.0,0.0, +2024-09-10 12:00:00,5.536244,159.92839,16.85,1012.50287,83.29749,0.0,0.0,0.0,14.0,0.0,0.0, +2024-09-10 13:00:00,5.0159745,156.50142,15.85,1013.1676,90.514595,0.0,0.0,0.0,14.3,0.0,0.0, +2024-09-10 14:00:00,4.9739323,149.82657,15.5,1013.1574,88.16906,0.0,0.0,0.0,13.55,0.0,0.0, +2024-09-10 15:00:00,5.140039,142.90709,15.4,1012.9562,73.80923,0.0,0.0,0.0,10.75,0.0,0.0, +2024-09-10 16:00:00,5.060632,142.22426,14.85,1013.13824,70.57292,0.0,0.0,0.0,9.55,0.0,0.0, +2024-09-10 17:00:00,4.90408,129.2072,14.3,1013.4192,71.1826,0.0,0.0,0.0,9.15,0.0,0.0, +2024-09-10 18:00:00,4.5221677,125.095894,14.3,1013.0225,68.12583,0.0,0.0,0.0,8.5,0.0,0.0, +2024-09-10 19:00:00,4.1773195,132.0891,14.2,1012.7223,66.28142,0.0,0.0,0.0,8.0,0.0,0.0, +2024-09-10 20:00:00,3.8183768,135.0001,13.8,1012.6113,67.56186,0.0,0.0,0.0,7.9,0.0,0.0, +2024-09-10 21:00:00,4.0459857,129.98683,13.7,1012.8065,68.23381,0.0,0.0,0.0,7.95,0.0,0.0, +2024-09-10 22:00:00,4.20119,128.23387,14.0,1013.212,67.60356,0.0,0.0,0.0,8.1,0.0,0.0, +2024-09-10 23:00:00,4.909175,123.36639,14.7,1013.5304,66.61352,18.0,107.95562,9.0,8.55,0.0,0.0, +2024-09-11 00:00:00,4.88467,112.89059,16.9,1013.8926,62.7444,183.0,574.704,50.0,9.75,0.0,0.0, +2024-09-11 01:00:00,7.623647,94.5139,19.5,1013.96796,54.196377,407.0,762.92126,73.0,10.0,0.0,0.0, +2024-09-11 02:00:00,8.01561,93.57626,21.6,1013.6307,48.25559,604.0,846.67706,86.0,10.2,0.0,0.0, +2024-09-11 03:00:00,8.5,90.0,23.35,1013.08496,45.307983,759.0,903.4467,89.0,10.85,0.0,0.0, +2024-09-11 04:00:00,8.746428,84.093956,25.35,1012.7434,39.135643,850.0,926.25336,92.0,10.45,0.0,0.0, +2024-09-11 05:00:00,8.30542,87.930016,27.25,1012.1012,27.897274,870.0,928.51965,93.0,7.1,0.0,0.0, +2024-09-11 06:00:00,7.5802374,98.34381,27.45,1011.70984,26.551191,822.0,918.63293,91.0,6.55,0.0,0.0, +2024-09-11 07:00:00,7.376313,105.73207,27.2,1011.60394,26.666399,698.0,871.11975,90.0,6.4,0.0,0.0, +2024-09-11 08:00:00,6.8963757,106.85848,26.45,1011.8808,28.547812,530.0,818.0265,80.0,6.75,0.0,0.0, +2024-09-11 09:00:00,5.7271285,102.09474,25.4,1012.34827,30.904451,321.0,703.85297,66.0,7.0,0.0,0.0, +2024-09-11 10:00:00,2.9120438,105.945465,22.85,1013.0709,36.138638,105.0,457.58997,35.0,7.05,0.0,0.0, +2024-09-11 11:00:00,2.8160255,96.11541,20.95,1013.71173,40.166496,1.0,0.0,1.0,6.9,0.0,0.0, +2024-09-11 12:00:00,4.0816665,120.963684,21.45,1014.2216,32.41756,0.0,0.0,0.0,4.25,0.0,0.0, +2024-09-11 13:00:00,3.5468295,111.501495,18.15,1015.2181,45.86677,0.0,0.0,0.0,6.3,0.0,0.0, +2024-09-11 14:00:00,4.4384685,104.349365,18.0,1015.21387,43.0565,0.0,0.0,0.0,5.25,0.0,0.0, +2024-09-11 15:00:00,5.0089917,116.05344,17.8,1015.2079,42.109913,0.0,0.0,0.0,4.75,0.0,0.0, +2024-09-11 16:00:00,4.753946,104.62092,17.25,1015.1919,42.992226,0.0,0.0,0.0,4.55,0.0,0.0, +2024-09-11 17:00:00,4.8052053,102.01146,16.9,1015.1817,42.89204,0.0,0.0,0.0,4.2,0.0,0.0, +2024-09-11 18:00:00,5.3600373,98.58354,17.1,1015.1875,39.33533,0.0,0.0,0.0,3.15,0.0,0.0, +2024-09-11 19:00:00,5.9539905,97.72173,17.55,1014.9033,35.234665,0.0,0.0,0.0,2.0,0.0,0.0, +2024-09-11 20:00:00,6.8183575,94.205284,18.0,1014.718,33.166195,0.0,0.0,0.0,1.55,0.0,0.0, +2024-09-11 21:00:00,7.302739,91.56932,18.1,1014.82007,34.03568,0.0,0.0,0.0,2.0,0.0,0.0, +2024-09-11 22:00:00,7.6006575,89.24617,18.0,1015.31305,36.64234,0.0,0.0,0.0,2.95,0.0,0.0, +2024-09-11 23:00:00,7.723341,85.54449,17.9,1015.9052,41.265446,19.0,116.7468,9.0,4.55,0.0,0.0, +2024-09-12 00:00:00,7.951101,83.50075,19.2,1016.4384,43.998528,187.0,576.37427,51.0,6.65,0.0,0.0, +2024-09-12 01:00:00,8.0062475,80.6554,21.45,1016.4037,45.695396,405.0,752.9184,72.0,9.25,0.0,0.0, +2024-09-12 02:00:00,7.5133214,80.03627,23.6,1016.1666,42.596024,603.0,843.9452,83.0,10.15,0.0,0.0, +2024-09-12 03:00:00,6.926038,85.03035,25.55,1015.7249,39.453575,755.0,891.7398,90.0,10.75,0.0,0.0, +2024-09-12 04:00:00,6.802941,88.31535,27.15,1015.0742,35.778816,846.0,915.84656,93.0,10.7,0.0,0.0, +2024-09-12 05:00:00,6.6068144,92.60251,28.3,1014.11346,32.14156,868.0,921.07996,94.0,10.1,0.0,0.0, +2024-09-12 06:00:00,6.8117547,93.366394,28.95,1013.2384,28.458546,818.0,908.76355,92.0,8.85,0.0,0.0, +2024-09-12 07:00:00,6.648308,96.91113,29.05,1012.74493,27.82029,705.0,881.9368,87.0,8.6,0.0,0.0, +2024-09-12 08:00:00,5.9464273,109.653915,28.65,1012.4365,30.457214,533.0,821.651,79.0,9.6,0.0,0.0, +2024-09-12 09:00:00,5.4405885,126.027466,27.4,1012.40283,33.537144,322.0,705.1817,65.0,9.95,0.0,0.0, +2024-09-12 10:00:00,5.315073,131.18582,25.4,1012.6459,34.81223,106.0,461.00043,35.0,8.75,0.0,0.0, +2024-09-12 11:00:00,5.021952,125.27251,23.85,1013.0988,35.20454,1.0,0.0,1.0,7.55,0.0,0.0, +2024-09-12 12:00:00,4.5617976,116.00329,22.5,1013.7554,36.788013,0.0,0.0,0.0,7.0,0.0,0.0, +2024-09-12 13:00:00,4.4777226,113.70266,20.45,1014.4909,40.717777,0.0,0.0,0.0,6.65,0.0,0.0, +2024-09-12 14:00:00,4.6173587,107.650215,19.6,1014.06995,42.040836,0.0,0.0,0.0,6.35,0.0,0.0, +2024-09-12 15:00:00,5.001,101.53459,19.3,1013.962,41.37956,0.0,0.0,0.0,5.85,0.0,0.0, +2024-09-12 16:00:00,5.333854,96.458725,19.5,1013.8687,39.339592,0.0,0.0,0.0,5.3,0.0,0.0, +2024-09-12 17:00:00,5.9008474,90.971,19.4,1013.66724,38.632904,0.0,0.0,0.0,4.95,0.0,0.0, +2024-09-12 18:00:00,6.6272163,84.805664,19.5,1013.1745,37.730038,0.0,0.0,0.0,4.7,0.0,0.0, +2024-09-12 19:00:00,7.2691126,82.09293,19.55,1012.97754,36.320515,0.0,0.0,0.0,4.2,0.0,0.0, +2024-09-12 20:00:00,7.5133214,80.03627,19.35,1012.7734,35.13322,0.0,0.0,0.0,3.55,0.0,0.0, +2024-09-12 21:00:00,6.987131,80.94219,18.9,1013.05786,35.126965,0.0,0.0,0.0,3.15,0.0,0.0, +2024-09-12 22:00:00,6.7742157,81.51115,18.55,1013.74225,35.651066,0.0,0.0,0.0,3.05,0.0,0.0, +2024-09-12 23:00:00,7.236712,78.84538,18.35,1014.3312,38.735413,21.0,125.05407,10.0,4.05,0.0,0.0, +2024-09-13 00:00:00,7.3756356,77.4712,19.7,1014.96545,41.20866,191.0,577.9027,52.0,6.15,0.0,0.0, +2024-09-13 01:00:00,6.5520988,74.054535,22.45,1014.6467,43.573273,414.0,765.4617,72.0,9.45,0.0,0.0, +2024-09-13 02:00:00,6.4257298,69.026436,25.0,1014.2218,39.29872,613.0,855.74243,82.0,10.2,0.0,0.0, +2024-09-13 03:00:00,5.7775426,66.54096,27.1,1013.7834,36.728184,766.0,902.8343,89.0,11.05,0.0,0.0, +2024-09-13 04:00:00,5.0159745,66.50142,28.65,1013.1309,34.112072,855.0,924.91833,91.0,11.3,0.0,0.0, +2024-09-13 05:00:00,3.733631,82.30404,29.6,1012.462,28.54017,877.0,929.1275,93.0,9.45,0.0,0.0, +2024-09-13 06:00:00,2.8653097,119.24873,29.85,1011.77423,28.132318,826.0,915.20557,92.0,9.45,0.0,0.0, +2024-09-13 07:00:00,3.4176016,159.44388,28.9,1011.4512,34.750748,708.0,882.7476,87.0,11.8,0.0,0.0, +2024-09-13 08:00:00,5.508176,176.87793,26.95,1011.20026,50.326366,530.0,807.2561,82.0,15.75,0.0,0.0, +2024-09-13 09:00:00,6.7067127,177.43628,25.2,1011.549,60.821033,313.0,649.2412,75.0,17.1,0.0,0.0, +2024-09-13 10:00:00,7.2780495,167.30042,24.05,1012.01324,46.410824,106.0,445.04337,37.0,11.85,0.0,0.0, +2024-09-13 11:00:00,6.7535176,152.6762,22.4,1012.85986,47.20047,1.0,0.0,1.0,10.6,0.0,0.0, +2024-09-13 12:00:00,6.9065185,145.6196,21.8,1013.33887,45.946198,0.0,0.0,0.0,9.65,0.0,0.0, +2024-09-13 13:00:00,6.4404964,143.84172,20.9,1013.51184,50.37224,0.0,0.0,0.0,10.2,0.0,0.0, +2024-09-13 14:00:00,5.60803,129.93633,19.95,1013.088,54.857628,0.0,0.0,0.0,10.6,0.0,0.0, +2024-09-13 15:00:00,5.6462374,112.93214,19.9,1012.8885,46.829346,0.0,0.0,0.0,8.2,0.0,0.0, +2024-09-13 16:00:00,6.484597,107.03786,20.4,1012.3073,38.25327,0.0,0.0,0.0,5.7,0.0,0.0, +2024-09-13 17:00:00,6.926038,107.650215,20.6,1011.8172,34.87971,0.0,0.0,0.0,4.55,0.0,0.0, +2024-09-13 18:00:00,6.708204,100.30479,20.4,1011.31555,34.33772,0.0,0.0,0.0,4.15,0.0,0.0, +2024-09-13 19:00:00,6.726812,95.117226,19.95,1011.1045,34.814518,0.0,0.0,0.0,3.95,0.0,0.0, +2024-09-13 20:00:00,7.2111025,86.82024,19.55,1011.09314,35.689125,0.0,0.0,0.0,3.95,0.0,0.0, +2024-09-13 21:00:00,6.8183575,85.79472,18.85,1011.3707,37.279663,0.0,0.0,0.0,3.95,0.0,0.0, +2024-09-13 22:00:00,6.419502,85.53293,18.3,1011.9499,38.046757,0.0,0.0,0.0,3.75,0.0,0.0, +2024-09-13 23:00:00,7.119691,79.47927,18.3,1012.2474,39.543934,23.0,132.91467,11.0,4.3,0.0,0.0, +2024-09-14 00:00:00,8.008121,74.054535,20.05,1012.99176,39.497574,198.0,595.6282,52.0,5.85,0.0,0.0, +2024-09-14 01:00:00,5.115662,85.51548,22.3,1013.25366,43.385105,420.0,771.081,72.0,9.25,0.0,0.0, +2024-09-14 02:00:00,5.5108986,78.486206,25.15,1013.0356,36.422775,620.0,859.3688,83.0,9.2,0.0,0.0, +2024-09-14 03:00:00,4.3416586,75.32356,27.5,1012.8022,33.453102,772.0,905.8574,89.0,10.0,0.0,0.0, +2024-09-14 04:00:00,2.8017852,92.045364,28.7,1012.0411,29.8632,863.0,927.89764,93.0,9.35,0.0,0.0, +2024-09-14 05:00:00,2.4351592,160.82089,28.3,1011.6335,34.697823,884.0,932.41113,94.0,11.25,0.0,0.0, +2024-09-14 06:00:00,4.414748,193.0919,27.05,1011.203,51.81909,834.0,922.8675,91.0,16.3,0.0,0.0, +2024-09-14 07:00:00,5.6293874,192.308,25.85,1010.9719,60.586563,716.0,890.66235,87.0,17.65,0.0,0.0, +2024-09-14 08:00:00,6.4536815,192.5288,24.5,1011.1333,66.49024,540.0,827.1068,79.0,17.85,0.0,0.0, +2024-09-14 09:00:00,6.449806,187.12492,22.8,1011.3835,66.561455,326.0,705.17566,66.0,16.25,0.0,0.0, +2024-09-14 10:00:00,5.67186,170.8699,21.6,1011.7462,60.573425,109.0,467.76212,36.0,13.65,0.0,0.0, +2024-09-14 11:00:00,5.7939625,158.74942,20.9,1012.1233,60.40987,2.0,0.0,2.0,12.95,0.0,0.0, +2024-09-14 12:00:00,5.818075,151.23245,20.3,1012.70123,61.466774,0.0,0.0,0.0,12.65,0.0,0.0, +2024-09-14 13:00:00,5.4378304,147.77127,19.3,1013.3669,63.495247,0.0,0.0,0.0,12.2,0.0,0.0, +2024-09-14 14:00:00,4.675468,131.53168,18.8,1013.1541,59.516884,0.0,0.0,0.0,10.75,0.0,0.0, +2024-09-14 15:00:00,5.314132,109.798965,19.35,1012.97174,35.631313,0.0,0.0,0.0,3.75,0.0,0.0, +2024-09-14 16:00:00,6.537584,96.14653,20.05,1012.7934,26.674389,0.0,0.0,0.0,0.3,0.0,0.0, +2024-09-14 17:00:00,7.602631,88.4926,20.6,1012.6106,23.45748,0.0,0.0,0.0,-1.0,0.0,0.0, +2024-09-14 18:00:00,7.5026665,88.47251,20.35,1012.5045,23.390093,0.0,0.0,0.0,-1.25,0.0,0.0, +2024-09-14 19:00:00,8.302409,88.61968,19.4,1012.57635,25.17435,0.0,0.0,0.0,-1.05,0.0,0.0, +2024-09-14 20:00:00,8.927485,85.50294,19.05,1012.96313,25.7291,0.0,0.0,0.0,-1.05,0.0,0.0, +2024-09-14 21:00:00,8.372574,82.45067,18.65,1013.54675,26.283634,0.0,0.0,0.0,-1.1,0.0,0.0, +2024-09-14 22:00:00,8.121576,80.07382,18.15,1014.028,27.021206,0.0,0.0,0.0,-1.15,0.0,0.0, +2024-09-14 23:00:00,7.962412,78.40785,17.8,1014.71204,29.71158,25.0,151.15768,11.0,-0.15,0.0,0.0, +2024-09-15 00:00:00,7.8854294,77.55002,18.9,1015.43805,32.372566,208.0,616.65424,54.0,2.0,0.0,0.0, +2024-09-15 01:00:00,7.808969,80.41713,20.65,1015.48834,33.107883,437.0,798.50964,73.0,3.85,0.0,0.0, +2024-09-15 02:00:00,6.846897,83.29026,22.7,1015.44714,32.434734,642.0,886.7849,84.0,5.35,0.0,0.0, +2024-09-15 03:00:00,7.324616,85.30141,24.65,1015.1049,27.37357,795.0,929.96686,90.0,4.6,0.0,0.0, +2024-09-15 04:00:00,7.1,90.0,25.6,1014.5359,23.197403,886.0,950.0645,94.0,3.05,0.0,0.0, +2024-09-15 05:00:00,6.648308,96.91113,26.0,1013.9519,22.573933,909.0,958.02905,94.0,3.0,0.0,0.0, +2024-09-15 06:00:00,6.0876927,104.26455,26.2,1013.3621,21.916952,857.0,945.3497,93.0,2.75,0.0,0.0, +2024-09-15 07:00:00,5.9236813,111.801476,26.1,1013.06165,20.67908,737.0,915.4766,88.0,1.85,0.0,0.0, +2024-09-15 08:00:00,5.9506307,114.84236,25.65,1012.9501,20.786919,561.0,859.3258,80.0,1.55,0.0,0.0, +2024-09-15 09:00:00,5.500909,117.030785,24.6,1012.9212,24.189463,343.0,747.01764,66.0,2.8,0.0,0.0, +2024-09-15 10:00:00,4.802083,121.372955,22.75,1013.16724,24.73625,117.0,502.94446,38.0,1.55,0.0,0.0, +2024-09-15 11:00:00,4.6861496,129.80553,21.15,1013.7171,26.028944,2.0,0.0,2.0,0.9,0.0,0.0, +2024-09-15 12:00:00,5.1224995,128.65984,20.1,1014.28235,28.784184,0.0,0.0,0.0,1.4,0.0,0.0, +2024-09-15 13:00:00,5.412947,115.14475,18.65,1014.836,28.683697,0.0,0.0,0.0,0.1,0.0,0.0, +2024-09-15 14:00:00,5.5542774,113.33407,18.1,1015.21674,29.689817,0.0,0.0,0.0,0.1,0.0,0.0, +2024-09-15 15:00:00,5.8523498,109.98319,17.7,1015.30414,31.567362,0.0,0.0,0.0,0.6,0.0,0.0, +2024-09-15 16:00:00,6.20967,104.93147,17.3,1015.0943,32.608692,0.0,0.0,0.0,0.7,0.0,0.0, +2024-09-15 17:00:00,6.551336,102.33907,16.95,1014.78656,31.808601,0.0,0.0,0.0,0.05,0.0,0.0, +2024-09-15 18:00:00,6.1983867,100.222115,16.5,1014.57495,31.678009,0.0,0.0,0.0,-0.4,0.0,0.0, +2024-09-15 19:00:00,6.2513995,97.35229,16.2,1014.46716,31.590857,0.0,0.0,0.0,-0.7,0.0,0.0, +2024-09-15 20:00:00,6.2289643,95.52745,15.95,1014.65814,32.333652,0.0,0.0,0.0,-0.6,0.0,0.0, +2024-09-15 21:00:00,6.307139,92.72626,15.65,1014.84766,33.933163,0.0,0.0,0.0,-0.2,0.0,0.0, +2024-09-15 22:00:00,6.6030297,91.73567,15.4,1015.23694,36.01323,0.0,0.0,0.0,0.4,0.0,0.0, +2024-09-15 23:00:00,6.9007244,89.1697,15.55,1015.5389,39.868965,28.0,157.95769,13.0,1.95,0.0,0.0, +2024-09-16 00:00:00,7.0028567,88.363464,17.1,1016.1791,41.615803,214.0,629.0197,54.0,3.95,0.0,0.0, +2024-09-16 01:00:00,8.022469,85.71093,19.1,1015.9397,38.412037,446.0,805.845,75.0,4.6,0.0,0.0, +2024-09-16 02:00:00,7.3437047,83.74606,21.05,1015.4995,35.253593,650.0,891.73846,85.0,5.1,0.0,0.0, +2024-09-16 03:00:00,6.926038,85.03035,22.95,1015.2558,31.28772,806.0,938.0929,91.0,5.05,0.0,0.0, +2024-09-16 04:00:00,6.3198104,85.46231,24.45,1014.6032,26.563305,897.0,957.7274,95.0,4.0,0.0,0.0, +2024-09-16 05:00:00,5.7035074,87.99049,25.55,1013.8402,23.184212,915.0,960.0562,95.0,3.0,0.0,0.0, +2024-09-16 06:00:00,5.500909,88.9584,26.1,1012.5657,21.505732,861.0,946.7395,93.0,2.4,0.0,0.0, +2024-09-16 07:00:00,5.2038445,92.20255,26.4,1011.8796,20.315859,741.0,916.2467,89.0,1.85,0.0,0.0, +2024-09-16 08:00:00,4.925444,95.82625,26.3,1011.48,20.21821,563.0,857.5051,81.0,1.7,0.0,0.0, +2024-09-16 09:00:00,3.7643058,106.99091,25.2,1011.4498,25.400164,345.0,745.51166,67.0,4.0,0.0,0.0, +2024-09-16 10:00:00,3.3615475,120.37905,22.45,1011.6712,28.22762,118.0,506.0661,38.0,3.15,0.0,0.0, +2024-09-16 11:00:00,3.758989,118.61037,20.6,1012.1147,27.709658,2.0,0.0,2.0,1.3,0.0,0.0, +2024-09-16 12:00:00,4.0521603,105.75124,19.4,1012.67554,29.739786,0.0,0.0,0.0,1.25,0.0,0.0, +2024-09-16 13:00:00,5.001,101.53459,18.8,1012.7575,29.25024,0.0,0.0,0.0,0.5,0.0,0.0, +2024-09-16 14:00:00,5.400926,91.06089,18.5,1012.84814,27.518234,0.0,0.0,0.0,-0.6,0.0,0.0, +2024-09-16 15:00:00,5.2153616,85.60138,17.9,1012.5334,27.449139,0.0,0.0,0.0,-1.15,0.0,0.0, +2024-09-16 16:00:00,5.5326304,83.77426,17.45,1012.2226,28.032633,0.0,0.0,0.0,-1.25,0.0,0.0, +2024-09-16 17:00:00,5.830952,84.093956,17.15,1011.9165,28.256748,0.0,0.0,0.0,-1.4,0.0,0.0, +2024-09-16 18:00:00,5.9413805,83.233925,16.8,1011.3113,28.99651,0.0,0.0,0.0,-1.35,0.0,0.0, +2024-09-16 19:00:00,6.280127,80.83774,16.8,1010.7163,29.424557,0.0,0.0,0.0,-1.15,0.0,0.0, +2024-09-16 20:00:00,6.5253353,74.89885,16.75,1010.7147,30.283068,0.0,0.0,0.0,-0.8,0.0,0.0, +2024-09-16 21:00:00,6.6407833,71.564964,16.6,1010.8097,31.248997,0.0,0.0,0.0,-0.5,0.0,0.0, +2024-09-16 22:00:00,7.2615423,67.319405,16.8,1011.1129,30.967207,0.0,0.0,0.0,-0.45,0.0,0.0, +2024-09-16 23:00:00,7.5133214,63.093983,17.05,1011.12024,32.653824,30.0,164.4198,14.0,0.5,0.0,0.0, +2024-09-17 00:00:00,7.4431176,59.300358,19.0,1011.5731,33.10088,218.0,633.20264,54.0,2.4,0.0,0.0, +2024-09-17 01:00:00,6.3820057,54.5666,21.3,1011.5396,33.76264,446.0,800.13776,74.0,4.7,0.0,0.0, +2024-09-17 02:00:00,6.3780875,48.814175,23.95,1011.2171,29.868841,649.0,885.6706,84.0,5.25,0.0,0.0, +2024-09-17 03:00:00,5.7999997,46.39711,26.2,1010.88226,26.578226,802.0,927.8883,91.0,5.5,0.0,0.0, +2024-09-17 04:00:00,4.9406476,35.942207,27.8,1010.3305,21.79009,893.0,949.8975,94.0,4.0,0.0,0.0, +2024-09-17 05:00:00,3.5341196,25.114815,28.45,1009.65356,20.9804,912.0,953.938,94.0,4.0,0.0,0.0, +2024-09-17 06:00:00,2.3086793,4.969664,28.6,1008.5665,20.871504,859.0,940.785,93.0,4.05,0.0,0.0, +2024-09-17 07:00:00,0.7615773,293.1986,28.25,1008.061,20.710054,738.0,910.047,88.0,3.65,0.0,0.0, +2024-09-17 08:00:00,3.0594118,191.30989,26.4,1007.7135,41.157635,560.0,850.4187,80.0,12.15,0.0,0.0, +2024-09-17 09:00:00,4.669047,170.13426,24.7,1007.667,51.04361,343.0,736.0498,67.0,13.9,0.0,0.0, +2024-09-17 10:00:00,4.554119,160.76924,22.75,1008.208,37.239174,118.0,502.8855,38.0,7.4,0.0,0.0, +2024-09-17 11:00:00,3.945884,171.25392,21.35,1008.4663,37.222073,2.0,0.0,2.0,6.15,0.0,0.0, +2024-09-17 12:00:00,3.443835,154.17906,20.45,1009.03613,38.400246,0.0,0.0,0.0,5.8,0.0,0.0, +2024-09-17 13:00:00,3.2015622,141.34016,19.15,1009.49493,32.444637,0.0,0.0,0.0,2.25,0.0,0.0, +2024-09-17 14:00:00,3.2802439,127.568665,18.75,1009.4836,31.529963,0.0,0.0,0.0,1.5,0.0,0.0, +2024-09-17 15:00:00,3.9812057,154.72232,18.0,1009.75946,37.427868,0.0,0.0,0.0,3.25,0.0,0.0, +2024-09-17 16:00:00,3.9824615,128.8845,17.3,1009.63995,42.409435,0.0,0.0,0.0,4.4,0.0,0.0, +2024-09-17 17:00:00,3.7802117,127.47626,16.7,1009.2259,38.666462,0.0,0.0,0.0,2.55,0.0,0.0, +2024-09-17 18:00:00,3.939543,113.962494,16.3,1008.7184,41.384987,0.0,0.0,0.0,3.15,0.0,0.0, +2024-09-17 19:00:00,3.7854989,102.200455,15.9,1008.40924,42.00655,0.0,0.0,0.0,3.0,0.0,0.0, +2024-09-17 20:00:00,4.1231055,104.03627,15.9,1008.40924,42.304726,0.0,0.0,0.0,3.1,0.0,0.0, +2024-09-17 21:00:00,4.8507733,98.297066,16.0,1008.5112,41.298183,0.0,0.0,0.0,2.85,0.0,0.0, +2024-09-17 22:00:00,5.2038445,92.20255,15.95,1009.00574,40.557907,0.0,0.0,0.0,2.55,0.0,0.0, +2024-09-17 23:00:00,4.509989,93.814,16.35,1009.4141,42.285114,32.0,180.60878,14.0,3.5,0.0,0.0, +2024-09-18 00:00:00,4.652956,98.65246,18.6,1010.07404,45.521236,221.0,629.6484,55.0,6.6,0.0,0.0, +2024-09-18 01:00:00,4.031129,97.12492,21.0,1010.24176,42.582886,449.0,798.8165,74.0,7.8,0.0,0.0, +2024-09-18 02:00:00,4.14367,98.32557,23.85,1010.32153,37.298817,651.0,881.26733,85.0,8.4,0.0,0.0, +2024-09-18 03:00:00,4.0804415,107.10281,26.3,1010.09125,29.907492,803.0,924.3133,91.0,7.3,0.0,0.0, +2024-09-18 04:00:00,3.5805027,125.90981,27.55,1009.6295,24.80666,893.0,944.5392,95.0,5.65,0.0,0.0, +2024-09-18 05:00:00,4.785394,190.84026,26.15,1008.7979,38.842117,911.0,947.90405,95.0,11.05,0.0,0.0, +2024-09-18 06:00:00,6.1611686,193.13403,24.15,1008.1477,59.239822,857.0,934.91113,93.0,15.7,0.0,0.0, +2024-09-18 07:00:00,6.873136,188.3658,23.45,1008.12854,57.20068,734.0,901.1379,88.0,14.5,0.0,0.0, +2024-09-18 08:00:00,6.9115844,176.68228,22.8,1008.20953,51.381393,557.0,839.8926,81.0,12.25,0.0,0.0, +2024-09-18 09:00:00,6.609841,169.54015,21.8,1008.47894,56.056908,341.0,729.36847,66.0,12.65,0.0,0.0, +2024-09-18 10:00:00,6.2641835,163.30067,20.35,1008.9341,56.998463,119.0,497.78522,39.0,11.55,0.0,0.0, +2024-09-18 11:00:00,6.4257298,159.02643,19.25,1009.29944,58.64387,2.0,21.437912,1.0,10.95,0.0,0.0, +2024-09-18 12:00:00,6.2649817,155.48038,18.55,1009.67615,64.595146,0.0,0.0,0.0,11.75,0.0,0.0, +2024-09-18 13:00:00,6.574192,153.82477,17.8,1010.646,71.13406,0.0,0.0,0.0,12.5,0.0,0.0, +2024-09-18 14:00:00,5.936329,147.38077,17.15,1010.8256,69.61927,0.0,0.0,0.0,11.55,0.0,0.0, +2024-09-18 15:00:00,5.3535037,147.20047,16.9,1010.61993,60.67226,0.0,0.0,0.0,9.25,0.0,0.0, +2024-09-18 16:00:00,4.802083,148.62704,16.4,1010.6054,58.142258,0.0,0.0,0.0,8.15,0.0,0.0, +2024-09-18 17:00:00,4.750789,149.65683,15.9,1010.3925,57.821075,0.0,0.0,0.0,7.6,0.0,0.0, +2024-09-18 18:00:00,4.243819,145.56096,15.25,1010.1752,59.66524,0.0,0.0,0.0,7.45,0.0,0.0, +2024-09-18 19:00:00,3.7802117,142.52374,14.55,1010.05536,63.057808,0.0,0.0,0.0,7.6,0.0,0.0, +2024-09-18 20:00:00,3.8418746,141.34016,14.0,1010.0389,66.46427,0.0,0.0,0.0,7.85,0.0,0.0, +2024-09-18 21:00:00,3.482815,140.82635,13.6,1010.4238,69.61847,0.0,0.0,0.0,8.15,0.0,0.0, +2024-09-18 22:00:00,3.04795,138.99101,13.25,1010.71075,69.78594,0.0,0.0,0.0,7.85,0.0,0.0, +2024-09-18 23:00:00,2.8999999,136.39711,13.95,1011.0292,64.88671,33.0,176.44606,15.0,7.45,0.0,0.0, +2024-09-19 00:00:00,2.9546573,156.0375,16.45,1011.49945,55.449272,222.0,622.5027,55.0,7.5,0.0,0.0, +2024-09-19 01:00:00,3.5341196,154.8852,19.55,1011.48987,45.166027,449.0,791.2175,74.0,7.35,0.0,0.0, +2024-09-19 02:00:00,4.1231055,157.1663,21.55,1011.5467,41.876816,649.0,872.3163,85.0,8.05,0.0,0.0, +2024-09-19 03:00:00,4.1,167.31963,23.05,1011.19214,41.455208,800.0,914.3556,92.0,9.25,0.0,0.0, +2024-09-19 04:00:00,5.115662,184.48453,23.7,1010.71423,45.55514,888.0,933.3735,96.0,11.25,0.0,0.0, +2024-09-19 05:00:00,6.551336,192.33908,22.95,1009.999,58.19821,904.0,935.01263,96.0,14.3,0.0,0.0, +2024-09-19 06:00:00,7.236712,191.15462,22.05,1009.577,63.077446,849.0,919.36346,95.0,14.7,0.0,0.0, +2024-09-19 07:00:00,7.256032,187.12492,21.6,1009.16754,62.5708,727.0,883.99036,91.0,14.15,0.0,0.0, +2024-09-19 08:00:00,7.006426,182.45398,21.0,1009.05164,65.54839,552.0,825.9687,82.0,14.3,0.0,0.0, +2024-09-19 09:00:00,6.7067127,177.43628,20.0,1009.1223,71.082924,338.0,712.23254,68.0,14.6,0.0,0.0, +2024-09-19 10:00:00,5.8549128,172.14677,18.75,1009.4836,76.58317,118.0,479.6828,40.0,14.55,0.0,0.0, +2024-09-19 11:00:00,5.3150725,168.05585,17.9,1009.8558,80.5155,2.0,21.008934,1.0,14.5,0.0,0.0, +2024-09-19 12:00:00,5.4571056,166.21838,17.5,1010.4391,84.18398,0.0,0.0,0.0,14.8,0.0,0.0, +2024-09-19 13:00:00,5.5731497,170.70677,17.0,1010.72205,87.4492,0.0,0.0,0.0,14.9,0.0,0.0, +2024-09-19 14:00:00,5.903389,169.26115,16.8,1010.4188,89.1369,0.0,0.0,0.0,15.0,0.0,0.0, +2024-09-19 15:00:00,5.4120235,163.90912,16.5,1010.1124,89.40081,0.0,0.0,0.0,14.75,0.0,0.0, +2024-09-19 16:00:00,4.3382025,154.02567,15.8,1009.7946,88.48153,0.0,0.0,0.0,13.9,0.0,0.0, +2024-09-19 17:00:00,3.9115214,147.52882,15.05,1009.475,85.01502,0.0,0.0,0.0,12.55,0.0,0.0, +2024-09-19 18:00:00,3.6055512,146.3099,14.5,1009.0622,81.11798,0.0,0.0,0.0,11.3,0.0,0.0, +2024-09-19 19:00:00,3.0805843,144.24602,13.95,1008.64935,77.86718,0.0,0.0,0.0,10.15,0.0,0.0, +2024-09-19 20:00:00,2.86007,143.53067,13.5,1008.43744,73.72202,0.0,0.0,0.0,8.9,0.0,0.0, +2024-09-19 21:00:00,2.7018511,141.009,13.05,1008.5233,70.702835,0.0,0.0,0.0,7.85,0.0,0.0, +2024-09-19 22:00:00,2.4758837,136.63654,12.6,1008.9066,69.18181,0.0,0.0,0.0,7.1,0.0,0.0, +2024-09-19 23:00:00,2.624881,139.63554,13.3,1009.2251,67.22726,35.0,182.06049,16.0,7.35,0.0,0.0, +2024-09-20 00:00:00,2.863564,155.22488,15.65,1009.8894,60.169933,226.0,619.2899,57.0,7.95,0.0,0.0, +2024-09-20 01:00:00,4.049691,159.77505,17.25,1010.1343,53.612152,452.0,783.7969,77.0,7.75,0.0,0.0, +2024-09-20 02:00:00,4.3737855,169.46088,19.1,1009.89,50.739803,652.0,866.59564,88.0,8.65,0.0,0.0, +2024-09-20 03:00:00,5.2038445,177.79745,20.3,1009.4284,50.7193,803.0,909.68066,95.0,9.75,0.0,0.0, +2024-09-20 04:00:00,6.303174,181.81827,20.95,1008.9511,51.919666,892.0,930.56,99.0,10.7,0.0,0.0, +2024-09-20 05:00:00,7.2249565,184.76355,21.05,1007.96185,53.8762,909.0,933.7888,99.0,11.35,0.0,0.0, +2024-09-20 06:00:00,7.8160095,183.66771,20.8,1007.35986,55.991146,855.0,922.1909,96.0,11.7,0.0,0.0, +2024-09-20 07:00:00,8.100618,180.7073,20.5,1007.0538,57.602787,735.0,891.931,91.0,11.85,0.0,0.0, +2024-09-20 08:00:00,8.105554,177.87895,19.8,1006.93506,62.367474,559.0,833.1923,83.0,12.4,0.0,0.0, +2024-09-20 09:00:00,7.922752,175.65685,18.8,1007.3029,68.13588,342.0,716.29083,69.0,12.8,0.0,0.0, +2024-09-20 10:00:00,7.6164293,176.23604,17.6,1007.8635,75.41157,120.0,486.3125,40.0,13.2,0.0,0.0, +2024-09-20 11:00:00,7.940403,174.2177,16.85,1008.13947,78.04853,3.0,20.608023,2.0,13.0,0.0,0.0, +2024-09-20 12:00:00,8.260751,173.04713,16.75,1008.6322,77.77874,0.0,0.0,0.0,12.85,0.0,0.0, +2024-09-20 13:00:00,7.81025,166.67546,16.15,1009.30896,80.01542,0.0,0.0,0.0,12.7,0.0,0.0, +2024-09-20 14:00:00,7.4946647,161.3232,15.9,1009.5,78.93706,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-20 15:00:00,7.209022,156.2796,15.35,1009.38477,74.54022,0.0,0.0,0.0,10.85,0.0,0.0, +2024-09-20 16:00:00,7.066117,153.0724,14.75,1009.4661,70.79103,0.0,0.0,0.0,9.5,0.0,0.0, +2024-09-20 17:00:00,6.860029,149.3228,14.15,1009.34924,68.79043,0.0,0.0,0.0,8.5,0.0,0.0, +2024-09-20 18:00:00,6.6370173,149.18436,13.7,1008.93933,68.002174,0.0,0.0,0.0,7.9,0.0,0.0, +2024-09-20 19:00:00,6.2265563,150.14108,13.4,1008.63293,67.478226,0.0,0.0,0.0,7.5,0.0,0.0, +2024-09-20 20:00:00,5.7454333,148.52321,13.25,1008.6285,65.177124,0.0,0.0,0.0,6.85,0.0,0.0, +2024-09-20 21:00:00,5.3535037,147.20047,13.05,1009.0191,61.425808,0.0,0.0,0.0,5.8,0.0,0.0, +2024-09-20 22:00:00,5.1312766,146.92932,12.8,1009.4085,57.240772,0.0,0.0,0.0,4.55,0.0,0.0, +2024-09-20 23:00:00,5.215362,147.52882,13.1,1009.81396,55.543594,37.0,196.8123,16.0,4.4,0.0,0.0, +2024-09-21 00:00:00,5.3665633,153.43501,14.8,1010.0626,52.416386,232.0,623.4322,59.0,5.15,0.0,0.0, +2024-09-21 01:00:00,5.8137765,153.43501,16.7,1009.72174,50.091408,458.0,786.91254,78.0,6.25,0.0,0.0, +2024-09-21 02:00:00,5.8523498,160.0168,18.65,1009.38153,47.772392,658.0,870.1548,88.0,7.35,0.0,0.0, +2024-09-21 03:00:00,6.2641835,163.30067,20.4,1008.93524,46.493332,809.0,912.7704,95.0,8.55,0.0,0.0, +2024-09-21 04:00:00,7.0035706,170.13426,21.7,1008.37695,46.538807,897.0,933.65845,98.0,9.75,0.0,0.0, +2024-09-21 05:00:00,8.705171,178.02512,21.45,1007.7749,53.270687,913.0,934.91455,99.0,11.55,0.0,0.0, +2024-09-21 06:00:00,9.602083,178.80653,20.65,1007.15735,59.175636,860.0,925.0392,96.0,12.4,0.0,0.0, +2024-09-21 07:00:00,9.013878,176.82024,20.6,1006.9574,57.06028,739.0,894.3316,91.0,11.8,0.0,0.0, +2024-09-21 08:00:00,9.079648,172.40544,20.2,1006.3511,60.443684,560.0,831.67017,83.0,12.3,0.0,0.0, +2024-09-21 09:00:00,8.769264,172.79404,19.4,1006.0308,66.71616,344.0,717.7161,69.0,13.05,0.0,0.0, +2024-09-21 10:00:00,8.926926,170.3267,18.3,1006.1979,69.61506,122.0,486.77872,41.0,12.65,0.0,0.0, +2024-09-21 11:00:00,8.561542,165.80142,17.7,1006.37885,69.269264,3.0,20.21819,2.0,12.0,0.0,0.0, +2024-09-21 12:00:00,8.53815,161.56496,17.8,1007.07587,66.82089,0.0,0.0,0.0,11.55,0.0,0.0, +2024-09-21 13:00:00,7.111962,152.35411,16.7,1007.6392,70.69225,0.0,0.0,0.0,11.35,0.0,0.0, +2024-09-21 14:00:00,6.2769423,149.34941,16.35,1007.82745,67.41037,0.0,0.0,0.0,10.3,0.0,0.0, +2024-09-21 15:00:00,5.4708314,149.21593,16.15,1007.524,60.494137,0.0,0.0,0.0,8.5,0.0,0.0, +2024-09-21 16:00:00,4.802083,148.62704,15.85,1007.31683,53.42769,0.0,0.0,0.0,6.4,0.0,0.0, +2024-09-21 17:00:00,4.4654226,145.95403,15.55,1006.9116,49.08886,0.0,0.0,0.0,4.9,0.0,0.0, +2024-09-21 18:00:00,4.3266616,146.3099,15.2,1006.50446,48.48103,0.0,0.0,0.0,4.4,0.0,0.0, +2024-09-21 19:00:00,3.8275318,146.7251,14.65,1006.3893,49.7035,0.0,0.0,0.0,4.25,0.0,0.0, +2024-09-21 20:00:00,3.3615475,149.62096,14.05,1006.1732,51.488953,0.0,0.0,0.0,4.2,0.0,0.0, +2024-09-21 21:00:00,3.535534,151.2603,13.75,1006.26355,52.685257,0.0,0.0,0.0,4.25,0.0,0.0, +2024-09-21 22:00:00,3.5510561,147.65259,13.55,1006.3568,53.188114,0.0,0.0,0.0,4.2,0.0,0.0, +2024-09-21 23:00:00,3.5805027,144.09018,14.35,1006.3805,53.773815,39.0,210.95131,16.0,5.1,0.0,0.0, +2024-09-22 00:00:00,3.1384711,157.52052,17.2,1006.7612,51.9778,233.0,620.4033,58.0,7.25,0.0,0.0, +2024-09-22 01:00:00,3.5468295,158.4985,20.4,1006.05914,47.12638,456.0,779.7653,76.0,8.75,0.0,0.0, +2024-09-22 02:00:00,3.4481878,163.14153,23.05,1005.6378,43.887314,655.0,860.07,88.0,10.1,0.0,0.0, +2024-09-22 03:00:00,4.3011627,181.33218,24.55,1005.1831,46.70028,803.0,903.15906,93.0,12.4,0.0,0.0, +2024-09-22 04:00:00,6.0016665,190.56096,24.45,1004.7835,54.038784,890.0,922.8157,97.0,14.55,0.0,0.0, +2024-09-22 05:00:00,7.0035706,189.86574,23.65,1004.0672,57.065125,879.0,882.29364,108.0,14.65,0.0,0.0, +2024-09-22 06:00:00,7.566373,187.59456,22.35,1003.6345,57.116932,664.0,620.21545,150.0,13.45,0.0,0.0, +2024-09-22 07:00:00,7.0114193,183.27042,22.15,1003.23206,58.3836,485.0,372.72986,214.0,13.6,0.0,0.0, +2024-09-22 08:00:00,7.0007143,179.18156,22.1,1003.33,60.297832,455.0,512.3556,160.0,14.05,0.0,0.0, +2024-09-22 09:00:00,7.0611615,167.73524,20.8,1003.3927,63.414017,321.0,636.06415,76.0,13.6,0.0,0.0, +2024-09-22 10:00:00,6.676077,163.46509,19.75,1003.7597,69.4446,118.0,457.51825,41.0,14.0,0.0,0.0, +2024-09-22 11:00:00,6.5520988,164.05453,18.7,1004.2257,70.83918,3.0,19.840803,2.0,13.3,0.0,0.0, +2024-09-22 12:00:00,6.76757,161.0295,18.25,1004.9071,73.57979,0.0,0.0,0.0,13.45,0.0,0.0, +2024-09-22 13:00:00,5.3488317,159.19313,17.5,1005.3814,77.63912,0.0,0.0,0.0,13.55,0.0,0.0, +2024-09-22 14:00:00,4.648656,161.1752,16.75,1005.3597,85.47213,0.0,0.0,0.0,14.3,0.0,0.0, +2024-09-22 15:00:00,4.204759,154.65387,16.2,1005.3439,86.25077,0.0,0.0,0.0,13.9,0.0,0.0, +2024-09-22 16:00:00,4.3382025,154.02567,15.75,1005.23157,83.16718,0.0,0.0,0.0,12.9,0.0,0.0, +2024-09-22 17:00:00,4.7423625,155.05612,15.3,1004.9208,79.37187,0.0,0.0,0.0,11.75,0.0,0.0, +2024-09-22 18:00:00,4.651881,154.5367,14.95,1004.91064,76.73547,0.0,0.0,0.0,10.9,0.0,0.0, +2024-09-22 19:00:00,4.472136,153.43501,14.75,1005.00385,76.194855,0.0,0.0,0.0,10.6,0.0,0.0, +2024-09-22 20:00:00,4.294182,152.24155,14.5,1004.7983,77.17643,0.0,0.0,0.0,10.55,0.0,0.0, +2024-09-22 21:00:00,4.031129,150.2552,14.35,1005.0914,80.29512,0.0,0.0,0.0,11.0,0.0,0.0, +2024-09-22 22:00:00,4.060788,142.00122,14.15,1005.48193,85.19862,0.0,0.0,0.0,11.7,0.0,0.0, +2024-09-22 23:00:00,4.4407206,144.16226,14.85,1005.7011,84.71478,40.0,197.58578,18.0,12.3,0.0,0.0, +2024-09-23 00:00:00,5.1429563,153.43501,17.0,1006.1603,74.82024,222.0,530.31287,70.0,12.5,0.0,0.0, +2024-09-23 01:00:00,4.9396358,158.62932,18.8,1006.7079,73.19917,448.0,719.93195,94.0,13.9,0.0,0.0, +2024-09-23 02:00:00,5.6435804,172.87508,20.35,1006.653,68.89073,652.0,827.5597,103.0,14.45,0.0,0.0, +2024-09-23 03:00:00,6.1032777,181.87784,21.1,1006.27747,68.59593,802.0,877.2419,109.0,15.1,0.0,0.0, +2024-09-23 04:00:00,6.648308,186.91113,21.4,1005.98834,68.65528,882.0,879.6618,123.0,15.4,0.0,0.0, +2024-09-23 05:00:00,7.3164196,190.23474,21.2,1005.48676,68.8364,897.0,876.8481,128.0,15.25,0.0,0.0, +2024-09-23 06:00:00,7.5504966,191.45872,20.85,1005.0803,70.10698,841.0,859.85175,126.0,15.2,0.0,0.0, +2024-09-23 07:00:00,8.158431,191.30989,20.35,1005.26447,72.069046,736.0,867.6674,103.0,15.15,0.0,0.0, +2024-09-23 08:00:00,8.249242,186.2634,19.65,1005.3439,69.65067,545.0,747.43066,113.0,13.95,0.0,0.0, +2024-09-23 09:00:00,7.5059977,182.29056,19.05,1005.22754,70.90509,347.0,707.65485,73.0,13.65,0.0,0.0, +2024-09-23 10:00:00,6.8,180.0,18.0,1005.5943,76.21682,125.0,493.52747,41.0,13.75,0.0,0.0, +2024-09-23 11:00:00,6.8,180.0,17.4,1006.17194,78.385345,3.0,19.478333,2.0,13.6,0.0,0.0, +2024-09-23 12:00:00,6.129437,174.3825,17.1,1006.4607,79.6269,0.0,0.0,0.0,13.55,0.0,0.0, +2024-09-23 13:00:00,6.2201285,175.38943,16.5,1007.43494,81.38064,0.0,0.0,0.0,13.3,0.0,0.0, +2024-09-23 14:00:00,6.328507,174.55975,16.6,1007.63635,79.8167,0.0,0.0,0.0,13.1,0.0,0.0, +2024-09-23 15:00:00,6.0827627,170.53775,16.35,1007.3316,80.56803,0.0,0.0,0.0,13.0,0.0,0.0, +2024-09-23 16:00:00,5.9841456,170.38034,15.9,1006.92175,83.18506,0.0,0.0,0.0,13.05,0.0,0.1, +2024-09-23 17:00:00,5.824946,168.11136,15.95,1006.725,80.778145,0.0,0.0,0.0,12.65,0.0,0.0, +2024-09-23 18:00:00,5.0921507,160.49747,15.35,1006.60815,83.11944,0.0,0.0,0.0,12.5,0.0,0.0, +2024-09-23 19:00:00,5.6302757,160.27763,15.0,1006.7964,85.00963,0.0,0.0,0.0,12.5,0.0,0.0, +2024-09-23 20:00:00,4.3908997,149.9315,14.35,1006.678,87.492805,0.0,0.0,0.0,12.3,0.0,0.0, +2024-09-23 21:00:00,3.7735925,147.99466,14.15,1007.0685,85.19862,0.0,0.0,0.0,11.7,0.0,0.0, +2024-09-23 22:00:00,4.3011627,144.46223,14.15,1007.66345,86.04592,0.0,0.0,0.0,11.85,0.0,0.1, +2024-09-23 23:00:00,4.6872168,146.3099,14.8,1007.9802,84.70932,32.0,96.79445,21.0,12.25,0.0,0.1, +2024-09-24 00:00:00,5.903389,153.86906,15.9,1008.50836,78.67802,162.0,223.26411,97.0,12.2,0.0,0.1, +2024-09-24 01:00:00,5.3160133,163.61038,17.9,1008.4674,62.97169,429.0,661.21655,101.0,10.75,0.0,0.0, +2024-09-24 02:00:00,6.519202,175.60138,19.1,1008.89825,56.687683,663.0,844.95135,99.0,10.3,0.0,0.0, +2024-09-24 03:00:00,7.0,180.0,19.75,1008.5202,52.475716,821.0,913.362,96.0,9.75,0.0,0.0, +2024-09-24 04:00:00,7.3437047,186.25394,20.15,1007.8374,55.45858,903.0,925.79175,101.0,10.95,0.0,0.0, +2024-09-24 05:00:00,7.7103825,189.70659,20.15,1007.2423,58.089752,914.0,907.8474,115.0,11.65,0.0,0.0, +2024-09-24 06:00:00,7.891768,188.74608,20.1,1006.64575,58.849384,870.0,924.1357,99.0,11.8,0.0,0.0, +2024-09-24 07:00:00,8.089499,188.53069,19.9,1006.5412,58.41383,746.0,885.2623,98.0,11.5,0.0,0.0, +2024-09-24 08:00:00,8.414867,183.40637,19.35,1006.82294,57.894146,569.0,832.5163,86.0,10.85,0.0,0.0, +2024-09-24 09:00:00,8.20975,177.20735,18.6,1007.0989,62.5061,353.0,724.5616,71.0,11.3,0.0,0.0, +2024-09-24 10:00:00,7.1175838,175.97182,17.75,1007.57043,69.966194,127.0,493.86197,42.0,12.2,0.0,0.0, +2024-09-24 11:00:00,7.1021123,170.27249,17.05,1008.1452,74.583694,3.0,19.125488,2.0,12.5,0.0,0.0, +2024-09-24 12:00:00,7.2780495,167.30042,16.8,1008.8321,76.27345,0.0,0.0,0.0,12.6,0.0,0.0, +2024-09-24 13:00:00,7.0213957,162.59721,16.0,1009.40375,80.52067,0.0,0.0,0.0,12.65,0.0,0.0, +2024-09-24 14:00:00,6.407808,157.0362,15.55,1009.29156,82.33005,0.0,0.0,0.0,12.55,0.0,0.0, +2024-09-24 15:00:00,5.4708314,149.21593,14.95,1009.4721,80.643456,0.0,0.0,0.0,11.65,0.0,0.0, +2024-09-24 16:00:00,4.7201695,143.61555,14.35,1009.3553,76.63993,0.0,0.0,0.0,10.3,0.0,0.0, +2024-09-24 17:00:00,4.0360875,138.01286,13.7,1009.03845,74.75723,0.0,0.0,0.0,9.3,0.0,0.0, +2024-09-24 18:00:00,3.764306,129.61066,13.2,1008.82526,72.92473,0.0,0.0,0.0,8.45,0.0,0.0, +2024-09-24 19:00:00,3.8013155,125.36255,12.95,1008.6197,67.614876,0.0,0.0,0.0,7.1,0.0,0.0, +2024-09-24 20:00:00,4.159327,117.18103,12.9,1008.5189,62.677578,0.0,0.0,0.0,5.95,0.0,0.0, +2024-09-24 21:00:00,4.7127485,107.281586,13.05,1008.7217,61.85204,0.0,0.0,0.0,5.9,0.0,0.0, +2024-09-24 22:00:00,5.4332314,96.340096,13.15,1008.824,62.304237,0.0,0.0,0.0,6.1,0.0,0.0, +2024-09-24 23:00:00,6.0074954,92.86235,13.85,1009.3404,62.89712,49.0,250.17302,20.0,6.9,0.0,0.0, +2024-09-25 00:00:00,6.3007936,90.90936,16.0,1009.50287,59.03902,255.0,656.2838,61.0,8.0,0.0,0.0, +2024-09-25 01:00:00,6.4017577,91.3426,18.6,1009.5782,54.14584,482.0,805.4403,79.0,9.15,0.0,0.0, +2024-09-25 02:00:00,5.6035705,87.95464,21.05,1008.8545,47.94479,685.0,887.51666,89.0,9.6,0.0,0.0, +2024-09-25 03:00:00,4.816638,85.23644,23.35,1008.324,41.9599,836.0,929.143,95.0,9.7,0.0,0.0, +2024-09-25 04:00:00,4.414748,76.908104,25.3,1007.5842,34.66652,921.0,946.3194,98.0,8.6,0.0,0.0, +2024-09-25 05:00:00,3.5923529,81.19329,26.4,1006.4239,31.0786,936.0,948.8717,98.0,7.95,0.0,0.0, +2024-09-25 06:00:00,2.1224985,105.01841,26.75,1005.6398,28.435118,879.0,935.4757,96.0,6.95,0.0,0.0, +2024-09-25 07:00:00,3.2190838,186.24182,26.0,1004.8261,36.296787,756.0,905.5006,91.0,9.9,0.0,0.0, +2024-09-25 08:00:00,4.9155364,189.36644,24.45,1004.4859,50.319054,575.0,846.5841,82.0,13.45,0.0,0.0, +2024-09-25 09:00:00,5.5056787,193.65765,23.0,1004.3467,63.49077,356.0,736.19165,68.0,15.7,0.0,0.0, +2024-09-25 10:00:00,6.116576,188.4612,20.9,1004.4865,72.63147,130.0,511.4073,41.0,15.8,0.0,0.0, +2024-09-25 11:00:00,5.881539,165.72745,19.55,1005.04346,59.696095,4.0,18.78316,3.0,11.5,0.0,0.0, +2024-09-25 12:00:00,5.1198144,148.17259,18.65,1005.21625,57.146046,0.0,0.0,0.0,10.0,0.0,0.0, +2024-09-25 13:00:00,3.6069376,136.12321,17.2,1005.47205,64.72828,0.0,0.0,0.0,10.5,0.0,0.0, +2024-09-25 14:00:00,2.8412147,118.36895,16.4,1004.95294,59.538372,0.0,0.0,0.0,8.5,0.0,0.0, +2024-09-25 15:00:00,2.540177,79.79609,16.25,1004.5519,44.701035,0.0,0.0,0.0,4.2,0.0,0.0, +2024-09-25 16:00:00,3.1579266,66.682274,17.2,1003.8853,37.4605,0.0,0.0,0.0,2.55,0.0,0.0, +2024-09-25 17:00:00,2.510976,54.727493,16.8,1003.37787,37.879505,0.0,0.0,0.0,2.35,0.0,0.0, +2024-09-25 18:00:00,2.9300172,25.253126,16.3,1002.9668,40.803654,0.0,0.0,0.0,2.95,0.0,0.0, +2024-09-25 19:00:00,2.8969812,21.25058,16.75,1002.7814,38.81853,0.0,0.0,0.0,2.65,0.0,0.0, +2024-09-25 20:00:00,3.4003677,17.102825,14.6,1002.52045,46.641903,0.0,0.0,0.0,3.3,0.0,0.0, +2024-09-25 21:00:00,3.525975,18.178116,14.5,1002.71594,46.943985,0.0,0.0,0.0,3.3,0.0,0.0, +2024-09-25 22:00:00,2.8398943,26.113852,16.35,1002.9683,47.297966,0.0,0.0,0.0,5.1,0.0,0.0, +2024-09-25 23:00:00,3.987794,30.101221,18.75,1003.1365,50.474403,49.0,253.8624,19.0,8.25,0.0,0.0, +2024-09-26 00:00:00,4.7289004,33.354042,21.4,1003.01294,49.671738,251.0,636.616,60.0,10.45,0.0,0.0, +2024-09-26 01:00:00,5.78835,19.687218,23.8,1002.98016,44.83383,477.0,792.73267,77.0,11.1,0.0,0.0, +2024-09-26 02:00:00,5.1198144,328.17258,25.85,1002.9373,41.961895,675.0,868.96027,88.0,11.95,0.0,0.0, +2024-09-26 03:00:00,6.9650917,277.83917,23.0,1003.1565,52.627254,822.0,908.6514,94.0,12.8,0.0,0.0, +2024-09-26 04:00:00,7.274785,274.73087,21.9,1003.32434,67.01648,908.0,928.95044,97.0,15.5,0.0,0.0, +2024-09-26 05:00:00,6.6575146,252.51753,21.35,1003.7057,74.112816,926.0,932.1178,100.0,16.55,0.0,0.0, +2024-09-26 06:00:00,5.971809,244.72232,20.95,1003.3971,72.40854,814.0,787.2045,153.0,15.8,0.0,0.0, +2024-09-26 07:00:00,5.5823383,239.30035,20.35,1003.28094,68.44691,731.0,827.9214,121.0,14.35,0.0,0.0, +2024-09-26 08:00:00,5.2841744,235.40764,19.8,1003.2655,67.89455,566.0,812.66876,91.0,13.7,0.0,0.0, +2024-09-26 09:00:00,4.8130035,235.15419,19.05,1003.4424,69.08221,353.0,719.736,70.0,13.25,0.0,0.0, +2024-09-26 10:00:00,4.160829,237.26477,18.05,1003.90967,74.025894,129.0,488.7612,43.0,13.35,0.0,0.0, +2024-09-26 11:00:00,2.804015,238.8611,17.35,1004.48456,77.6163,4.0,18.452114,3.0,13.4,0.0,0.0, +2024-09-26 12:00:00,1.7442764,242.7005,16.65,1004.86096,81.40014,0.0,0.0,0.0,13.45,0.0,0.0, +2024-09-26 13:00:00,1.85,270.0,16.5,1004.85657,80.85165,0.0,0.0,0.0,13.2,0.0,0.1, +2024-09-26 14:00:00,2.7294688,261.57312,16.45,1004.4587,82.97994,0.0,0.0,0.0,13.55,0.0,0.0, +2024-09-26 15:00:00,3.1953092,249.86362,16.05,1003.75287,85.95625,0.0,0.0,0.0,13.7,0.0,0.0, +2024-09-26 16:00:00,3.4441981,242.31903,16.2,1003.2614,82.41071,0.0,0.0,0.0,13.2,0.0,0.0, +2024-09-26 17:00:00,3.6224992,243.78868,16.25,1002.866,77.70275,0.0,0.0,0.0,12.35,0.0,0.0, +2024-09-26 18:00:00,2.6100767,253.30067,15.95,1002.56,77.65698,0.0,0.0,0.0,12.05,0.0,0.0, +2024-09-26 19:00:00,2.4864633,254.84587,16.05,1002.2654,76.65634,0.0,0.0,0.0,11.95,0.0,0.0, +2024-09-26 20:00:00,2.624881,252.25523,15.95,1002.2625,76.89349,0.0,0.0,0.0,11.9,0.0,0.0, +2024-09-26 21:00:00,2.3900838,254.21918,15.7,1002.7511,77.618744,0.0,0.0,0.0,11.8,0.0,0.0, +2024-09-26 22:00:00,2.071835,289.74692,14.95,1003.22485,80.37758,0.0,0.0,0.0,11.6,0.0,0.0, +2024-09-26 23:00:00,2.418677,330.25522,17.35,1003.69116,71.99029,29.0,66.44403,21.0,12.25,0.0,0.0, +2024-09-27 00:00:00,3.541892,311.56625,19.05,1004.13666,64.70428,156.0,170.8343,104.0,12.25,0.0,0.0, +2024-09-27 01:00:00,6.307139,272.72626,16.95,1004.37396,81.439026,144.0,43.242554,122.0,13.75,0.0,1.1, +2024-09-27 02:00:00,6.177378,209.0545,16.8,1004.46875,90.871895,297.0,157.48294,190.0,15.3,0.0,1.6, +2024-09-27 03:00:00,6.213896,198.28925,17.0,1004.4744,85.22247,310.0,77.03757,248.0,14.5,0.0,0.5, +2024-09-27 04:00:00,6.742403,215.3402,16.55,1004.85815,79.28993,535.0,297.83917,274.0,12.95,0.0,3.0, +2024-09-27 05:00:00,8.121576,217.99878,17.9,1004.9964,71.85544,549.0,343.04272,244.0,12.75,0.0,0.3, +2024-09-27 06:00:00,8.433564,221.15387,17.6,1004.8884,69.249535,547.0,397.71527,212.0,11.9,0.0,0.0, +2024-09-27 07:00:00,8.124192,220.25699,16.7,1005.16003,69.76183,346.0,108.23394,266.0,11.15,0.0,0.0, +2024-09-27 08:00:00,7.9511003,219.89778,16.55,1005.8498,65.01927,250.0,122.73461,178.0,9.95,0.0,0.0, +2024-09-27 09:00:00,8.348653,214.26115,16.1,1006.53076,64.26961,255.0,387.15057,102.0,9.35,0.0,0.0, +2024-09-27 10:00:00,7.786206,211.3423,15.1,1007.09656,68.06034,117.0,399.1205,46.0,9.25,0.0,0.1, +2024-09-27 11:00:00,6.6730804,209.63829,14.95,1007.9847,64.23037,4.0,18.128336,3.0,8.25,0.0,0.0, +2024-09-27 12:00:00,6.173532,208.0178,14.75,1008.772,63.534447,0.0,0.0,0.0,7.9,0.0,0.0, +2024-09-27 13:00:00,5.2554736,201.19412,14.5,1009.75635,65.00811,0.0,0.0,0.0,8.0,0.0,0.0, +2024-09-27 14:00:00,5.214643,194.436,14.45,1010.05225,64.99709,0.0,0.0,0.0,7.95,0.0,0.0, +2024-09-27 15:00:00,4.8254533,190.14548,14.25,1010.2448,66.06727,0.0,0.0,0.0,8.0,0.0,0.0, +2024-09-27 16:00:00,4.509989,183.814,14.25,1009.9474,64.073555,0.0,0.0,0.0,7.55,0.0,0.0, +2024-09-27 17:00:00,4.20119,178.63611,14.15,1009.94415,64.48968,0.0,0.0,0.0,7.55,0.0,0.0, +2024-09-27 18:00:00,3.7583241,176.186,13.85,1009.8362,64.64332,0.0,0.0,0.0,7.3,0.0,0.0, +2024-09-27 19:00:00,3.324154,173.08887,13.75,1010.1308,64.842415,0.0,0.0,0.0,7.25,0.0,0.0, +2024-09-27 20:00:00,2.6443334,164.64981,13.25,1010.3142,67.67754,0.0,0.0,0.0,7.4,0.0,0.0, +2024-09-27 21:00:00,2.0402205,143.97253,12.7,1010.89264,71.84923,0.0,0.0,0.0,7.75,0.0,0.0, +2024-09-27 22:00:00,1.8384776,112.38018,12.05,1011.5673,76.009674,0.0,0.0,0.0,7.95,0.0,0.0, +2024-09-27 23:00:00,3.2422986,72.96215,12.9,1012.38605,73.61565,43.0,171.28932,22.0,8.3,0.0,0.0, +2024-09-28 00:00:00,2.8622544,70.615395,15.0,1013.3411,63.37551,217.0,437.32874,82.0,8.1,0.0,0.0, +2024-09-28 01:00:00,2.0554805,161.56496,16.35,1014.6699,57.73628,414.0,561.5499,126.0,8.0,0.0,0.0, +2024-09-28 02:00:00,3.132491,188.25935,17.25,1015.0927,53.978382,550.0,570.76886,160.0,7.85,0.0,0.0, +2024-09-28 03:00:00,3.6503422,203.40471,17.7,1015.205,52.645634,633.0,496.07224,232.0,7.9,0.0,0.0, +2024-09-28 04:00:00,4.5499997,202.6199,18.25,1015.0226,48.48486,792.0,692.4125,183.0,7.2,0.0,0.0, +2024-09-28 05:00:00,5.059644,198.43504,17.95,1014.8156,49.070236,625.0,381.16736,285.0,7.1,0.0,0.0, +2024-09-28 06:00:00,5.440588,197.10281,17.85,1014.6144,48.875122,569.0,273.40506,338.0,6.95,0.0,0.0, +2024-09-28 07:00:00,5.4947705,195.3009,17.9,1014.2193,47.89302,617.0,531.3802,223.0,6.7,0.0,0.0, +2024-09-28 08:00:00,5.3640003,191.83362,17.8,1014.3153,47.865376,573.0,794.8989,105.0,6.6,0.0,0.0, +2024-09-28 09:00:00,5.333854,186.45872,17.0,1014.58954,49.82904,340.0,644.53015,84.0,6.45,0.0,0.0, +2024-09-28 10:00:00,4.452527,178.06946,16.15,1015.06055,51.518944,130.0,467.0847,46.0,6.15,0.0,0.0, +2024-09-28 11:00:00,3.6062446,163.0724,15.2,1015.7267,54.184437,5.0,17.815277,4.0,6.0,0.0,0.0, +2024-09-28 12:00:00,3.4885528,152.70052,14.45,1016.39856,57.45849,0.0,0.0,0.0,6.15,0.0,0.0, +2024-09-28 13:00:00,3.335416,139.86458,13.5,1016.965,64.12413,0.0,0.0,0.0,6.85,0.0,0.0, +2024-09-28 14:00:00,2.9516943,128.8114,12.9,1017.0463,66.91305,0.0,0.0,0.0,6.9,0.0,0.0, +2024-09-28 15:00:00,2.6617663,118.00909,12.35,1016.8315,69.60702,0.0,0.0,0.0,6.95,0.0,0.0, +2024-09-28 16:00:00,2.570992,103.49575,11.65,1016.61206,71.16068,0.0,0.0,0.0,6.6,0.0,0.0, +2024-09-28 17:00:00,3.3203917,108.43504,11.35,1016.70197,68.4532,0.0,0.0,0.0,5.75,0.0,0.0, +2024-09-28 18:00:00,3.83471,112.21764,11.25,1016.3022,68.43256,0.0,0.0,0.0,5.65,0.0,0.0, +2024-09-28 19:00:00,3.9385912,110.045334,11.05,1015.8995,69.82774,0.0,0.0,0.0,5.75,0.0,0.0, +2024-09-28 20:00:00,4.087175,104.886314,10.85,1015.89343,70.27305,0.0,0.0,0.0,5.65,0.0,0.0, +2024-09-28 21:00:00,4.2994184,98.69542,10.55,1016.3803,71.19474,0.0,0.0,0.0,5.55,0.0,0.0, +2024-09-28 22:00:00,4.6173587,94.96966,10.35,1016.8697,73.41023,0.0,0.0,0.0,5.8,0.0,0.0, +2024-09-28 23:00:00,5.0089917,93.43356,11.35,1017.59436,70.85841,60.0,288.5444,24.0,6.25,0.0,0.0, +2024-09-29 00:00:00,4.5135903,94.4473,13.85,1018.46295,63.546997,271.0,661.49084,64.0,7.05,0.0,0.0, +2024-09-29 01:00:00,4.7670746,102.72435,16.7,1018.3493,50.611687,503.0,812.5314,83.0,6.4,0.0,0.0, +2024-09-29 02:00:00,4.4922156,106.821495,18.65,1018.1087,42.49997,704.0,889.28827,93.0,5.65,0.0,0.0, +2024-09-29 03:00:00,3.25,112.61991,20.05,1017.3556,37.757122,856.0,931.23206,100.0,5.2,0.0,0.0, +2024-09-29 04:00:00,2.5124688,132.58046,21.1,1016.29456,35.63754,943.0,951.63477,103.0,5.3,0.0,0.0, +2024-09-29 05:00:00,2.745906,169.50858,21.8,1015.4217,34.86028,957.0,954.3635,103.0,5.6,0.0,0.0, +2024-09-29 06:00:00,5.4233294,192.24231,21.3,1014.81256,39.31276,898.0,941.65155,100.0,6.9,0.0,0.0, +2024-09-29 07:00:00,8.185658,193.78162,19.35,1014.55853,49.78729,771.0,910.2372,94.0,8.6,0.0,0.0, +2024-09-29 08:00:00,8.573505,189.73692,18.4,1014.3328,50.03843,588.0,847.9131,87.0,7.8,0.0,0.0, +2024-09-29 09:00:00,7.850159,180.36493,17.9,1014.5168,50.76209,366.0,734.0009,73.0,7.55,0.0,0.0, +2024-09-29 10:00:00,6.987131,170.94218,17.4,1014.7997,54.017456,137.0,506.05365,45.0,8.0,0.0,0.0, +2024-09-29 11:00:00,7.3705497,163.04007,16.3,1015.26337,62.396633,5.0,17.510582,4.0,9.1,0.0,0.0, +2024-09-29 12:00:00,7.036512,160.92122,15.9,1015.74744,67.54263,0.0,0.0,0.0,9.9,0.0,0.0, +2024-09-29 13:00:00,6.3737745,154.44008,15.4,1015.9311,72.34949,0.0,0.0,0.0,10.45,0.0,0.0, +2024-09-29 14:00:00,6.0599093,153.01219,15.05,1015.8214,75.48704,0.0,0.0,0.0,10.75,0.0,0.0, +2024-09-29 15:00:00,5.6731825,145.04927,14.4,1015.3065,74.87647,0.0,0.0,0.0,10.0,0.0,0.0, +2024-09-29 16:00:00,5.1307898,142.12495,13.65,1014.6892,71.05876,0.0,0.0,0.0,8.5,0.0,0.0, +2024-09-29 17:00:00,4.4902673,135.45108,12.85,1014.3675,72.122185,0.0,0.0,0.0,7.95,0.0,0.0, +2024-09-29 18:00:00,3.9121606,128.77419,12.05,1013.84784,74.47302,0.0,0.0,0.0,7.65,0.0,0.0, +2024-09-29 19:00:00,3.6619666,124.992096,11.6,1013.2393,73.88736,0.0,0.0,0.0,7.1,0.0,0.0, +2024-09-29 20:00:00,3.51639,119.84584,11.4,1012.93585,71.60388,0.0,0.0,0.0,6.45,0.0,0.0, +2024-09-29 21:00:00,3.3185086,120.815636,11.3,1012.9326,67.97048,0.0,0.0,0.0,5.6,0.0,0.0, +2024-09-29 22:00:00,3.1384711,120.65059,11.15,1013.22565,63.368023,0.0,0.0,0.0,4.45,0.0,0.0, +2024-09-29 23:00:00,3.939543,113.962494,12.55,1013.4662,56.18409,64.0,315.18118,24.0,4.05,0.0,0.0, +2024-09-30 00:00:00,3.6786547,121.097244,15.45,1013.65155,48.55041,281.0,687.4093,63.0,4.65,0.0,0.0, +2024-09-30 01:00:00,3.3589432,134.39699,18.9,1013.05786,42.42431,518.0,840.8514,80.0,5.85,0.0,0.0, +2024-09-30 02:00:00,3.1945267,140.07967,22.0,1012.6503,36.0196,722.0,914.87854,90.0,6.25,0.0,0.0, +2024-09-30 03:00:00,2.9584625,149.53453,24.35,1011.6248,30.293917,873.0,953.06726,96.0,5.8,0.0,0.0, +2024-09-30 04:00:00,3.7769036,186.84268,25.25,1010.4595,32.708942,959.0,970.86456,99.0,7.7,0.0,0.0, +2024-09-30 05:00:00,6.2980156,196.1329,23.85,1009.4289,53.886406,971.0,971.4365,99.0,13.95,0.0,0.0, +2024-09-30 06:00:00,7.676262,193.94576,22.9,1008.80725,59.13419,909.0,955.3384,97.0,14.5,0.0,0.0, +2024-09-30 07:00:00,8.13895,188.47847,22.1,1008.38837,54.323242,778.0,919.5305,92.0,12.45,0.0,0.0, +2024-09-30 08:00:00,7.400676,180.7742,21.75,1008.2794,56.597843,592.0,856.7294,84.0,12.75,0.0,0.0, +2024-09-30 09:00:00,7.5059977,177.70944,20.65,1008.3475,60.747654,371.0,750.31177,70.0,12.8,0.0,0.0, +2024-09-30 10:00:00,6.963117,169.65842,19.2,1008.4053,69.11175,140.0,522.4183,44.0,13.4,0.0,0.0, +2024-09-30 11:00:00,6.992138,163.37917,18.05,1008.47156,70.25426,5.0,34.426025,3.0,12.55,0.0,0.0, +2024-09-30 12:00:00,7.0260234,163.8865,17.65,1008.65845,74.19899,0.0,0.0,0.0,13.0,0.0,0.0, +2024-09-30 13:00:00,6.053924,157.6713,17.05,1009.2361,71.698555,0.0,0.0,0.0,11.9,0.0,0.0, +2024-09-30 14:00:00,5.0982842,153.18373,16.4,1008.9196,76.460106,0.0,0.0,0.0,12.25,0.0,0.0, +2024-09-30 15:00:00,4.0700126,142.98924,15.7,1008.4035,73.61699,0.0,0.0,0.0,11.0,0.0,0.0, +2024-09-30 16:00:00,2.9732137,137.72638,14.85,1007.48596,70.1005,0.0,0.0,0.0,9.45,0.0,0.0, +2024-09-30 17:00:00,2.311385,141.14662,14.0,1006.5683,68.99342,0.0,0.0,0.0,8.4,0.0,0.0, +2024-09-30 18:00:00,1.9811614,137.04541,13.05,1005.74695,69.508965,0.0,0.0,0.0,7.6,0.0,0.0, +2024-09-30 19:00:00,2.445915,139.14471,11.9,1005.0185,68.566376,0.0,0.0,0.0,6.3,0.0,0.0, +2024-09-30 20:00:00,2.192031,135.0001,11.9,1004.3245,59.673424,0.0,0.0,0.0,4.3,0.0,0.0, +2024-09-30 21:00:00,2.0426698,111.541046,12.0,1003.93097,47.412815,0.0,0.0,0.0,1.15,0.0,0.0, +2024-09-30 22:00:00,2.4046829,86.423744,13.1,1003.7654,38.025204,0.0,0.0,0.0,-0.9,0.0,0.0, +2024-09-30 23:00:00,1.4983325,25.709915,15.65,1004.23706,57.169567,65.0,317.68222,24.0,7.2,0.0,0.0, +2024-10-01 00:00:00,1.320038,335.37646,19.3,1004.342,37.8042,276.0,662.86035,63.0,4.55,0.0,0.0, +2024-10-01 01:00:00,3.0991933,349.7779,23.8,1003.6745,42.651985,501.0,802.07715,80.0,10.35,0.0,0.0, +2024-10-01 02:00:00,3.3120992,298.88647,25.05,1003.312,42.295406,697.0,873.98816,90.0,11.35,0.0,0.0, +2024-10-01 03:00:00,5.402314,262.02,23.05,1002.9598,45.527283,845.0,914.89746,96.0,10.65,0.0,0.0, +2024-10-01 04:00:00,5.751956,268.5057,22.1,1002.8341,51.536404,928.0,932.6197,99.0,11.65,0.0,0.0, +2024-10-01 05:00:00,6.060115,259.06094,21.5,1002.8174,63.774876,952.0,950.67865,96.0,14.35,0.0,0.0, +2024-10-01 06:00:00,6.659767,249.7963,21.1,1002.80615,69.038124,891.0,931.44006,97.0,15.2,0.0,0.0, +2024-10-01 07:00:00,6.7529626,243.62473,20.35,1002.78503,71.37734,642.0,638.80084,164.0,15.0,0.0,0.1, +2024-10-01 08:00:00,6.376715,241.42549,19.45,1002.5613,75.957436,501.0,605.01825,141.0,15.1,0.0,0.1, +2024-10-01 09:00:00,5.2100863,243.18912,18.65,1002.53864,76.56744,329.0,577.9614,96.0,14.45,0.0,0.0, +2024-10-01 10:00:00,3.8745968,252.7341,17.65,1002.6091,80.74255,127.0,414.59824,50.0,14.3,0.0,0.0, +2024-10-01 11:00:00,2.5504901,271.1233,16.8,1002.68365,84.37824,5.0,16.926805,4.0,14.15,0.0,0.0, +2024-10-01 12:00:00,2.482438,288.8,16.4,1002.9696,85.99148,0.0,0.0,0.0,14.05,0.0,0.0, +2024-10-01 13:00:00,4.3382025,295.97433,16.5,1002.9725,79.802734,0.0,0.0,0.0,13.0,0.0,0.0, +2024-10-01 14:00:00,4.680011,306.74756,16.35,1002.2741,77.71798,0.0,0.0,0.0,12.45,0.0,0.0, +2024-10-01 15:00:00,4.9175706,317.06012,16.15,1001.57404,77.687515,0.0,0.0,0.0,12.25,0.0,0.0, +2024-10-01 16:00:00,5.5520267,321.5819,16.25,1000.6844,75.93463,0.0,0.0,0.0,12.0,0.0,0.0, +2024-10-01 17:00:00,5.9776664,316.6946,16.35,1000.09247,74.71044,0.0,0.0,0.0,11.85,0.0,0.0, +2024-10-01 18:00:00,7.6100264,306.7194,17.1,999.9155,68.92216,0.0,0.0,0.0,11.35,0.0,0.1, +2024-10-01 19:00:00,8.134495,316.49426,16.85,999.4127,71.18979,0.0,0.0,0.0,11.6,0.0,0.0, +2024-10-01 20:00:00,6.7675695,325.84024,16.45,998.707,73.99212,0.0,0.0,0.0,11.8,0.0,0.0, +2024-10-01 21:00:00,7.530106,322.82565,16.8,998.61786,70.01286,0.0,0.0,0.0,11.3,0.0,0.0, +2024-10-01 22:00:00,8.394343,321.2869,16.8,998.81616,72.843735,0.0,0.0,0.0,11.9,0.0,0.2, +2024-10-01 23:00:00,9.051243,314.55243,16.8,999.0145,75.52678,25.0,22.864882,22.0,12.45,0.0,0.3, +2024-10-02 00:00:00,9.3744335,303.6901,15.7,999.4787,89.9197,62.0,6.1438427,60.0,14.05,0.0,1.0, +2024-10-02 01:00:00,7.6423163,247.2936,15.8,999.3823,89.927086,87.0,11.345243,81.0,14.15,0.0,3.0, +2024-10-02 02:00:00,9.07772,250.36731,15.1,1000.3535,89.29157,124.0,4.296719,121.0,13.35,0.0,4.3, +2024-10-02 03:00:00,8.105863,248.65793,14.95,1000.3492,86.97651,172.0,7.2988462,166.0,12.8,0.0,1.9, +2024-10-02 04:00:00,8.395981,251.24126,15.35,1000.5592,79.90411,386.0,98.66083,298.0,11.9,0.0,0.9, +2024-10-02 05:00:00,8.778525,250.0168,15.5,1000.5636,71.40932,251.0,23.252102,230.0,10.35,0.0,0.5, +2024-10-02 06:00:00,8.928606,254.40712,16.15,1000.6815,60.904907,230.0,23.394718,210.0,8.6,0.0,0.0, +2024-10-02 07:00:00,9.43663,257.1419,16.0,1000.6771,58.63893,417.0,214.52528,256.0,7.9,0.0,0.1, +2024-10-02 08:00:00,8.975661,257.125,15.8,1001.2665,59.392986,465.0,539.2958,143.0,7.9,0.0,0.0, +2024-10-02 09:00:00,9.192388,255.5102,16.1,1001.9692,54.606255,254.0,348.0579,113.0,6.95,0.0,0.1, +2024-10-02 10:00:00,8.22253,256.63977,14.0,1003.0977,63.58108,125.0,415.59106,47.0,7.2,0.0,0.1, +2024-10-02 11:00:00,7.9690027,251.33759,14.75,1003.7148,61.61566,4.0,16.64979,3.0,7.45,0.0,0.1, +2024-10-02 12:00:00,7.6537576,252.51192,14.5,1004.5999,61.979248,0.0,0.0,0.0,7.3,0.0,0.0, +2024-10-02 13:00:00,7.993904,257.35458,14.55,1004.6015,63.705692,0.0,0.0,0.0,7.75,0.0,0.0, +2024-10-02 14:00:00,8.301355,252.11061,15.2,1004.71954,58.843204,0.0,0.0,0.0,7.2,0.0,0.0, +2024-10-02 15:00:00,8.53815,251.56496,15.1,1005.2125,59.22253,0.0,0.0,0.0,7.2,0.0,0.0, +2024-10-02 16:00:00,8.124192,248.32948,15.2,1005.4137,60.47288,0.0,0.0,0.0,7.6,0.0,0.0, +2024-10-02 17:00:00,7.615773,246.80139,15.5,1005.2243,57.524307,0.0,0.0,0.0,7.15,0.0,0.0, +2024-10-02 18:00:00,8.297741,244.67029,15.45,1005.22266,58.503593,0.0,0.0,0.0,7.35,0.0,0.0, +2024-10-02 19:00:00,7.873532,241.97041,15.45,1005.1234,60.532597,0.0,0.0,0.0,7.85,0.0,0.0, +2024-10-02 20:00:00,7.795672,239.98172,15.3,1005.41656,62.58897,0.0,0.0,0.0,8.2,0.0,0.0, +2024-10-02 21:00:00,7.532928,234.7275,15.4,1005.7173,63.681366,0.0,0.0,0.0,8.55,0.0,0.0, +2024-10-02 22:00:00,7.3600273,233.2857,15.6,1006.51624,63.29711,0.0,0.0,0.0,8.65,0.0,0.0, +2024-10-02 23:00:00,6.817991,230.35587,15.7,1007.41187,61.00497,27.0,0.0,27.0,8.2,0.0,0.0, +2024-10-03 00:00:00,6.726812,228.01286,16.15,1008.3173,59.679916,85.0,9.098916,82.0,8.3,0.0,0.0, +2024-10-03 01:00:00,6.7885933,225.59674,16.8,1008.9313,60.444637,229.0,112.61219,169.0,9.1,0.0,0.0, +2024-10-03 02:00:00,5.9876957,228.72415,17.3,1009.7392,59.354713,456.0,284.95438,256.0,9.3,0.0,0.1, +2024-10-03 03:00:00,6.434672,224.9999,17.0,1009.9287,60.90029,456.0,153.8669,329.0,9.4,0.0,0.1, +2024-10-03 04:00:00,5.5158863,225.73444,17.45,1010.14,58.993046,490.0,159.7841,347.0,9.35,0.0,0.0, +2024-10-03 05:00:00,5.481788,231.66663,17.6,1009.7478,59.22799,591.0,204.22995,406.0,9.55,0.0,0.2, +2024-10-03 06:00:00,5.153882,230.90614,17.35,1009.443,60.982708,432.0,114.311,334.0,9.75,0.0,0.0, +2024-10-03 07:00:00,5.065817,228.60138,17.4,1009.34534,61.19913,472.0,239.1442,292.0,9.85,0.0,0.1, +2024-10-03 08:00:00,4.821307,229.20544,17.5,1009.3482,60.2057,416.0,318.80798,225.0,9.7,0.0,0.0, +2024-10-03 09:00:00,4.985228,225.4063,17.05,1009.7319,61.117043,326.0,569.93994,94.0,9.5,0.0,0.0, +2024-10-03 10:00:00,4.562072,223.66785,16.5,1009.9141,64.358345,65.0,68.54797,52.0,9.75,0.0,0.0, +2024-10-03 11:00:00,3.9824615,218.8845,16.1,1010.39825,67.13356,3.0,0.0,3.0,10.0,0.0,0.0, +2024-10-03 12:00:00,3.7901187,216.41647,16.2,1010.798,67.15445,0.0,0.0,0.0,10.1,0.0,0.0, +2024-10-03 13:00:00,3.2718496,218.79657,15.4,1011.0721,72.108696,0.0,0.0,0.0,10.4,0.0,0.0, +2024-10-03 14:00:00,3.451449,218.53021,15.5,1011.17413,72.36777,0.0,0.0,0.0,10.55,0.0,0.0, +2024-10-03 15:00:00,3.3600597,216.52895,15.45,1010.875,71.87788,0.0,0.0,0.0,10.4,0.0,0.0, +2024-10-03 16:00:00,3.4532592,214.3804,15.5,1010.48,71.40932,0.0,0.0,0.0,10.35,0.0,0.0, +2024-10-03 17:00:00,3.2035139,214.18617,15.6,1010.18536,71.90566,0.0,0.0,0.0,10.55,0.0,0.0, +2024-10-03 18:00:00,2.8151376,213.40784,15.65,1009.8894,73.36417,0.0,0.0,0.0,10.9,0.0,0.0, +2024-10-03 19:00:00,3.2649658,207.3498,15.7,1009.79175,71.20927,0.0,0.0,0.0,10.5,0.0,0.0, +2024-10-03 20:00:00,3.355965,204.65588,15.4,1009.78296,75.79588,0.0,0.0,0.0,11.15,0.0,0.0, +2024-10-03 21:00:00,2.9567719,198.74144,15.25,1009.97687,78.323006,0.0,0.0,0.0,11.5,0.0,0.0, +2024-10-03 22:00:00,2.8146937,192.308,14.65,1010.4549,84.13718,0.0,0.0,0.0,12.0,0.0,0.0, +2024-10-03 23:00:00,3.1976554,189.90411,15.4,1011.2704,81.23684,35.0,14.762564,33.0,12.2,0.0,0.1, +2024-10-04 00:00:00,3.0004165,179.04518,16.05,1011.48773,77.672264,115.0,65.89375,93.0,12.15,0.0,0.0, +2024-10-04 01:00:00,3.335416,203.87529,17.0,1012.0112,74.82024,287.0,149.05388,207.0,12.5,0.0,0.1, +2024-10-04 02:00:00,3.555981,207.64589,17.8,1012.0344,70.206184,439.0,225.37521,280.0,12.3,0.0,0.2, +2024-10-04 03:00:00,3.7831864,209.27516,18.1,1011.94415,69.34804,449.0,102.57158,364.0,12.4,0.0,0.1, +2024-10-04 04:00:00,3.9824615,208.49554,18.05,1011.7442,70.024254,390.0,52.342663,343.0,12.5,0.0,0.0, +2024-10-04 05:00:00,4.09939,210.00484,18.35,1011.4552,69.624794,485.0,79.25156,413.0,12.7,0.0,0.0, +2024-10-04 06:00:00,3.7396524,209.64977,18.65,1011.1666,69.00319,496.0,160.52261,358.0,12.85,0.0,0.0, +2024-10-04 07:00:00,3.6674242,205.8663,18.6,1010.66907,68.99328,448.0,237.1346,269.0,12.8,0.0,0.0, +2024-10-04 08:00:00,3.7047267,201.37068,18.4,1010.66345,69.63456,347.0,222.91707,213.0,12.75,0.0,0.0, +2024-10-04 09:00:00,3.846102,195.84314,18.05,1010.8516,70.484924,185.0,129.58208,132.0,12.6,0.0,0.0, +2024-10-04 10:00:00,3.736308,195.52417,17.6,1010.9378,72.272736,88.0,198.31451,50.0,12.55,0.0,0.0, +2024-10-04 11:00:00,3.2314858,188.00464,17.05,1011.2194,76.06423,5.0,16.11921,4.0,12.8,0.0,0.0, +2024-10-04 12:00:00,3.2534597,177.35751,16.5,1011.5008,81.646286,0.0,0.0,0.0,13.35,0.0,0.0, +2024-10-04 13:00:00,3.0842342,160.09616,16.1,1011.3899,85.127235,0.0,0.0,0.0,13.6,0.0,0.0, +2024-10-04 14:00:00,2.4789112,138.27058,15.35,1010.9714,90.47956,0.0,0.0,0.0,13.8,0.0,0.0, +2024-10-04 15:00:00,2.0615528,112.833694,14.45,1010.6472,92.506386,0.0,0.0,0.0,13.25,0.0,0.0, +2024-10-04 16:00:00,1.9525625,92.935616,13.85,1010.332,93.38537,0.0,0.0,0.0,12.8,0.0,0.0, +2024-10-04 17:00:00,1.95,90.0,13.5,1010.2223,93.98239,0.0,0.0,0.0,12.55,0.0,0.0, +2024-10-04 18:00:00,1.833712,101.003494,13.45,1009.82446,93.3654,0.0,0.0,0.0,12.4,0.0,0.0, +2024-10-04 19:00:00,2.1868927,100.53913,13.4,1009.6245,93.056755,0.0,0.0,0.0,12.3,0.0,0.0, +2024-10-04 20:00:00,2.45204,92.33726,13.2,1009.32104,93.660324,0.0,0.0,0.0,12.2,0.0,0.0, +2024-10-04 21:00:00,2.9004312,89.01226,13.0,1009.2159,93.95954,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-04 22:00:00,3.0004165,89.04518,12.95,1009.4129,93.34029,0.0,0.0,0.0,11.9,0.0,0.0, +2024-10-04 23:00:00,3.600347,89.2043,13.9,1009.8377,92.17304,72.0,283.43457,33.0,12.65,0.0,0.0, +2024-10-05 00:00:00,3.5128336,94.89901,16.05,1010.1986,86.79775,270.0,499.99097,101.0,13.85,0.0,0.0, +2024-10-05 01:00:00,3.667424,101.003494,18.75,1010.0786,72.01111,521.0,813.908,81.0,13.6,0.0,0.0, +2024-10-05 02:00:00,3.354102,116.56499,20.65,1010.1327,61.95069,715.0,871.5599,97.0,13.1,0.0,0.0, +2024-10-05 03:00:00,1.6224982,146.3099,22.6,1009.98926,51.837852,860.0,911.1155,102.0,12.2,0.0,0.0, +2024-10-05 04:00:00,3.1180923,195.81926,22.15,1009.3814,56.882042,751.0,451.79227,344.0,13.2,0.0,0.0, +2024-10-05 05:00:00,5.1229877,204.81418,21.9,1008.9777,64.89914,938.0,861.581,153.0,15.0,0.0,0.0, +2024-10-05 06:00:00,6.0667124,203.81865,21.55,1008.1745,65.24325,844.0,723.86676,220.0,14.75,0.0,0.0, +2024-10-05 07:00:00,6.3878794,198.71869,21.15,1007.6672,64.5285,748.0,786.0194,153.0,14.2,0.0,0.0, +2024-10-05 08:00:00,6.3837686,191.74995,20.25,1007.44354,67.765625,569.0,731.20447,128.0,14.1,0.0,0.0, +2024-10-05 09:00:00,5.7035074,182.0095,19.7,1007.5273,68.09531,368.0,695.95483,82.0,13.65,0.0,0.0, +2024-10-05 10:00:00,5.00025,179.42708,18.85,1007.8005,75.12909,108.0,129.14217,83.0,14.35,0.0,0.0, +2024-10-05 11:00:00,4.900255,171.78731,17.85,1008.2675,82.87957,5.0,0.0,5.0,14.9,0.0,0.0, +2024-10-05 12:00:00,4.4127655,160.12773,17.25,1008.746,87.75324,0.0,0.0,0.0,15.2,0.0,0.0, +2024-10-05 13:00:00,3.9537954,147.91785,16.4,1009.11786,92.02139,0.0,0.0,0.0,15.1,0.0,0.0, +2024-10-05 14:00:00,3.75,143.13002,16.05,1008.81024,91.70457,0.0,0.0,0.0,14.7,0.0,0.0, +2024-10-05 15:00:00,3.335416,139.86458,15.5,1008.3975,91.67064,0.0,0.0,0.0,14.15,0.0,0.0, +2024-10-05 16:00:00,2.9364095,132.92996,14.95,1008.0838,91.33898,0.0,0.0,0.0,13.55,0.0,0.0, +2024-10-05 17:00:00,2.5223997,129.3693,14.35,1007.66956,91.300255,0.0,0.0,0.0,12.95,0.0,0.0, +2024-10-05 18:00:00,2.441823,132.5104,13.9,1007.35876,92.17304,0.0,0.0,0.0,12.65,0.0,0.0, +2024-10-05 19:00:00,2.3430748,129.80553,13.55,1007.05084,92.455635,0.0,0.0,0.0,12.35,0.0,0.0, +2024-10-05 20:00:00,2.5223997,129.3693,13.35,1006.7473,93.05412,0.0,0.0,0.0,12.25,0.0,0.0, +2024-10-05 21:00:00,2.4964974,122.73522,13.15,1006.74164,93.043655,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-05 22:00:00,2.200568,111.317986,13.05,1006.9368,93.03839,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-05 23:00:00,2.818244,115.20109,14.45,1007.47406,89.53294,72.0,214.74147,42.0,12.75,0.0,0.0, +2024-10-06 00:00:00,2.2276669,135.90929,16.95,1008.14233,80.91148,297.0,666.45355,69.0,13.65,0.0,0.0, +2024-10-06 01:00:00,2.4351592,160.82089,19.55,1008.21704,74.04339,496.0,650.20404,142.0,14.8,0.0,0.0, +2024-10-06 02:00:00,3.35,180.0,21.6,1008.1757,67.81991,717.0,853.19977,109.0,15.4,0.0,0.0, +2024-10-06 03:00:00,4.6778736,190.46912,22.6,1007.90643,66.30819,871.0,921.98267,101.0,16.0,0.0,0.0, +2024-10-06 04:00:00,5.3851643,195.06854,23.0,1007.1239,67.8845,948.0,922.8347,114.0,16.75,0.0,0.0, +2024-10-06 05:00:00,5.8821764,197.81898,22.95,1006.6268,69.397644,950.0,896.36664,131.0,17.05,0.0,0.0, +2024-10-06 06:00:00,6.278734,197.13635,22.55,1006.41736,68.88133,904.0,930.18384,100.0,16.55,0.0,0.0, +2024-10-06 07:00:00,6.075566,193.80754,22.05,1006.10565,68.1277,776.0,897.13477,95.0,15.9,0.0,0.0, +2024-10-06 08:00:00,5.9228373,191.68935,21.5,1006.09045,69.78305,594.0,839.5434,86.0,15.75,0.0,0.0, +2024-10-06 09:00:00,5.7177353,184.5139,20.5,1006.3595,74.4428,374.0,729.02954,73.0,15.8,0.0,0.0, +2024-10-06 10:00:00,5.0039983,177.70944,19.2,1006.7193,81.46648,147.0,511.35327,47.0,15.95,0.0,0.0, +2024-10-06 11:00:00,4.4869256,165.80887,18.05,1007.0831,87.54381,7.0,46.854652,4.0,15.95,0.0,0.0, +2024-10-06 12:00:00,4.379783,161.35811,17.4,1007.75867,90.91203,0.0,0.0,0.0,15.9,0.0,0.0, +2024-10-06 13:00:00,4.1907635,160.48404,16.95,1008.34064,90.88195,0.0,0.0,0.0,15.45,0.0,0.0, +2024-10-06 14:00:00,4.301744,160.30128,16.65,1008.431,93.52285,0.0,0.0,0.0,15.6,0.0,0.0, +2024-10-06 15:00:00,3.8999999,157.3801,16.45,1008.12775,93.813446,0.0,0.0,0.0,15.45,0.0,0.0, +2024-10-06 16:00:00,3.166228,158.70258,16.05,1008.01697,93.49376,0.0,0.0,0.0,15.0,0.0,0.0, +2024-10-06 17:00:00,3.444198,166.56895,15.95,1007.81573,93.188354,0.0,0.0,0.0,14.85,0.0,0.0, +2024-10-06 18:00:00,3.2649658,152.6502,15.8,1007.9105,92.880684,0.0,0.0,0.0,14.65,0.0,0.0, +2024-10-06 19:00:00,2.9124732,145.49142,15.3,1007.79645,93.15516,0.0,0.0,0.0,14.2,0.0,0.0, +2024-10-06 20:00:00,2.745906,146.88864,15.0,1007.8872,93.13975,0.0,0.0,0.0,13.9,0.0,0.0, +2024-10-06 21:00:00,2.745906,146.88864,14.7,1008.1757,93.12431,0.0,0.0,0.0,13.6,0.0,0.0, +2024-10-06 22:00:00,2.0506098,135.0001,14.2,1008.75586,93.402794,0.0,0.0,0.0,13.15,0.0,0.0, +2024-10-06 23:00:00,2.2343903,139.53786,15.35,1009.38477,89.60203,72.0,204.52744,43.0,13.65,0.0,0.0, +2024-10-07 00:00:00,1.4866068,160.34608,17.3,1009.63995,82.813416,277.0,505.5241,102.0,14.35,0.0,0.0, +2024-10-07 01:00:00,1.3152945,171.25392,19.65,1009.2117,76.478615,520.0,762.43567,102.0,15.4,0.0,0.0, +2024-10-07 02:00:00,3.6800137,216.7143,20.9,1009.743,73.33097,651.0,580.92377,235.0,15.95,0.0,0.0, +2024-10-07 03:00:00,5.2547593,206.56499,20.4,1009.8279,73.71466,758.0,552.29803,295.0,15.55,0.0,0.0, +2024-10-07 04:00:00,5.2810984,198.77812,21.0,1009.6467,70.13558,817.0,565.8706,304.0,15.35,0.0,0.0, +2024-10-07 05:00:00,6.136163,194.1495,21.55,1009.3647,68.02768,920.0,777.10925,208.0,15.4,0.0,0.0, +2024-10-07 06:00:00,6.444571,189.82765,21.6,1008.9691,68.256096,845.0,709.6575,230.0,15.5,0.0,0.0, +2024-10-07 07:00:00,6.576473,188.74608,21.3,1009.0601,72.24034,733.0,702.8754,198.0,16.1,0.0,0.0, +2024-10-07 08:00:00,6.5195856,188.37859,20.65,1008.94257,76.3918,559.0,685.28253,143.0,16.35,0.0,0.0, +2024-10-07 09:00:00,5.921149,184.84392,19.6,1009.012,81.77748,266.0,183.21938,190.0,16.4,0.0,0.0, +2024-10-07 10:00:00,5.5002275,180.52084,18.45,1009.1774,87.02352,78.0,25.311382,73.0,16.25,0.0,0.0, +2024-10-07 11:00:00,4.6524186,178.15244,18.0,1009.75946,88.9473,5.0,0.0,5.0,16.15,0.0,0.0, +2024-10-07 12:00:00,4.250294,179.32597,17.75,1010.34717,90.357574,0.0,0.0,0.0,16.15,0.0,0.0, +2024-10-07 13:00:00,3.9080048,176.33229,16.95,1011.0182,93.238945,0.0,0.0,0.0,15.85,0.0,0.0, +2024-10-07 14:00:00,3.368234,174.03561,16.85,1011.2137,93.2339,0.0,0.0,0.0,15.75,0.0,0.0, +2024-10-07 15:00:00,2.777139,166.46413,16.6,1011.1072,93.52041,0.0,0.0,0.0,15.55,0.0,0.0, +2024-10-07 16:00:00,2.3879907,160.42679,16.2,1010.99634,93.80185,0.0,0.0,0.0,15.2,0.0,0.0, +2024-10-07 17:00:00,2.2770596,160.76924,15.85,1010.7876,94.08803,0.0,0.0,0.0,14.9,0.0,0.0, +2024-10-07 18:00:00,2.200568,158.68202,15.7,1010.48596,93.7786,0.0,0.0,0.0,14.7,0.0,0.0, +2024-10-07 19:00:00,2.2388613,156.29735,15.75,1010.2889,93.17814,0.0,0.0,0.0,14.65,0.0,0.0, +2024-10-07 20:00:00,2.0573041,154.05775,15.6,1010.2845,93.170494,0.0,0.0,0.0,14.5,0.0,0.0, +2024-10-07 21:00:00,1.767767,151.2603,15.1,1010.46814,93.75052,0.0,0.0,0.0,14.1,0.0,0.0, +2024-10-07 22:00:00,1.6507574,144.86572,14.8,1010.7568,94.0412,0.0,0.0,0.0,13.85,0.0,0.0, +2024-10-07 23:00:00,1.9912307,141.1155,16.8,1011.1129,90.871895,74.0,201.58934,45.0,15.3,0.0,0.0, +2024-10-08 00:00:00,2.6119914,174.50777,18.45,1011.2601,82.68593,255.0,354.08496,131.0,15.45,0.0,0.0, +2024-10-08 01:00:00,2.9546573,203.9625,19.75,1011.3963,74.31616,416.0,375.0059,209.0,15.05,0.0,0.0, +2024-10-08 02:00:00,3.9246018,214.09503,20.55,1011.51843,70.72908,620.0,490.5944,267.0,15.05,0.0,0.0, +2024-10-08 03:00:00,4.6647615,210.96368,20.95,1011.4306,68.5662,717.0,484.8949,309.0,14.95,0.0,0.0, +2024-10-08 04:00:00,5.1538815,210.29637,21.3,1011.34125,66.03668,861.0,647.7181,272.0,14.7,0.0,0.0, +2024-10-08 05:00:00,5.638484,208.61037,21.4,1011.0466,63.959442,884.0,647.65643,289.0,14.3,0.0,0.0, +2024-10-08 06:00:00,6.269968,203.49858,21.0,1010.83685,64.28725,826.0,646.83453,264.0,14.0,0.0,0.0, +2024-10-08 07:00:00,6.454843,200.4003,20.6,1010.7262,65.03973,707.0,645.9589,214.0,13.8,0.0,0.0, +2024-10-08 08:00:00,6.1684685,196.96623,20.1,1010.81116,65.143936,545.0,607.56305,175.0,13.35,0.0,0.0, +2024-10-08 09:00:00,5.8721805,195.81143,19.3,1011.185,67.132545,317.0,446.3384,131.0,13.05,0.0,0.0, +2024-10-08 10:00:00,5.82795,189.38144,18.3,1011.55316,69.84345,133.0,385.9141,56.0,12.7,0.0,0.0, +2024-10-08 11:00:00,4.762877,184.2141,17.5,1012.12494,72.49196,8.0,45.431725,5.0,12.5,0.0,0.0, +2024-10-08 12:00:00,3.901282,181.46877,17.15,1012.6106,72.4286,0.0,0.0,0.0,12.15,0.0,0.0, +2024-10-08 13:00:00,4.6542993,177.53723,16.6,1013.0905,76.24135,0.0,0.0,0.0,12.4,0.0,0.0, +2024-10-08 14:00:00,4.208622,170.42584,16.15,1013.17645,76.168915,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-08 15:00:00,3.9223719,162.95088,15.8,1013.0671,75.36142,0.0,0.0,0.0,11.45,0.0,0.0, +2024-10-08 16:00:00,4.596194,165.5102,15.8,1013.0671,76.86988,0.0,0.0,0.0,11.75,0.0,0.0, +2024-10-08 17:00:00,4.753946,165.37909,16.1,1013.17487,75.16274,0.0,0.0,0.0,11.7,0.0,0.0, +2024-10-08 18:00:00,5.203124,160.34608,15.7,1012.965,76.09617,0.0,0.0,0.0,11.5,0.0,0.0, +2024-10-08 19:00:00,5.2794414,151.7361,15.75,1013.0655,76.60869,0.0,0.0,0.0,11.65,0.0,0.0, +2024-10-08 20:00:00,4.604889,138.52155,15.7,1013.0642,76.09617,0.0,0.0,0.0,11.5,0.0,0.0, +2024-10-08 21:00:00,4.604889,131.47845,14.65,1013.42975,78.754395,0.0,0.0,0.0,11.0,0.0,0.0, +2024-10-08 22:00:00,5.315073,131.18582,14.45,1013.91956,79.24985,0.0,0.0,0.0,10.9,0.0,0.0, +2024-10-08 23:00:00,5.490446,127.60047,15.8,1014.5545,73.63457,87.0,363.26508,34.0,11.1,0.0,0.0, +2024-10-09 00:00:00,6.8346543,131.73788,17.8,1014.9104,66.60041,314.0,683.28406,72.0,11.5,0.0,0.0, +2024-10-09 01:00:00,7.3542504,135.55084,19.7,1014.96545,60.725136,527.0,759.4244,105.0,11.9,0.0,0.0, +2024-10-09 02:00:00,6.576093,135.0001,21.55,1014.72046,53.649525,733.0,870.0919,104.0,11.75,0.0,0.0, +2024-10-09 03:00:00,6.451744,144.46223,23.5,1013.8825,47.187412,877.0,902.3458,115.0,11.6,0.0,0.0, +2024-10-09 04:00:00,6.498654,161.14674,24.75,1012.6277,44.50535,965.0,938.5243,109.0,11.85,0.0,0.0, +2024-10-09 05:00:00,6.9817615,168.85104,25.15,1011.94446,44.90969,976.0,942.3214,108.0,12.35,0.0,0.0, +2024-10-09 06:00:00,8.009994,182.86235,23.4,1011.49915,63.578613,913.0,931.0723,102.0,16.1,0.0,0.0, +2024-10-09 07:00:00,8.421401,184.08554,22.95,1010.9909,64.09187,783.0,896.46844,97.0,15.8,0.0,0.0, +2024-10-09 08:00:00,8.517776,183.70213,21.9,1010.763,65.52806,599.0,836.4495,88.0,15.15,0.0,0.0, +2024-10-09 09:00:00,8.259691,177.22426,20.25,1011.31146,69.31758,378.0,726.1599,74.0,14.45,0.0,0.0, +2024-10-09 10:00:00,7.615937,172.45517,19.15,1011.87506,76.646,151.0,511.11456,48.0,14.95,0.0,0.0, +2024-10-09 11:00:00,7.821924,166.31906,17.8,1012.3319,78.95434,8.0,44.747334,5.0,14.1,0.0,0.0, +2024-10-09 12:00:00,6.9300075,163.65704,17.45,1012.71844,79.16045,0.0,0.0,0.0,13.8,0.0,0.0, +2024-10-09 13:00:00,6.0166435,158.5522,17.0,1012.7054,84.127914,0.0,0.0,0.0,14.3,0.0,0.0, +2024-10-09 14:00:00,5.5454936,153.204,16.7,1012.2009,87.14032,0.0,0.0,0.0,14.55,0.0,0.0, +2024-10-09 15:00:00,4.470179,143.6427,16.3,1011.69336,85.98142,0.0,0.0,0.0,13.95,0.0,0.0, +2024-10-09 16:00:00,3.6554751,139.9938,15.95,1011.0882,80.778145,0.0,0.0,0.0,12.65,0.0,0.0, +2024-10-09 17:00:00,3.4124773,140.94687,16.0,1010.5937,73.426125,0.0,0.0,0.0,11.25,0.0,0.0, +2024-10-09 18:00:00,3.0302641,142.3737,16.2,1009.80634,66.484055,0.0,0.0,0.0,9.95,0.0,0.0, +2024-10-09 19:00:00,3.0220027,141.04408,16.45,1009.5161,60.975777,0.0,0.0,0.0,8.9,0.0,0.0, +2024-10-09 20:00:00,2.8319604,137.86247,16.6,1009.2231,56.24871,0.0,0.0,0.0,7.85,0.0,0.0, +2024-10-09 21:00:00,2.45204,129.2072,16.45,1009.417,54.510376,0.0,0.0,0.0,7.25,0.0,0.0, +2024-10-09 22:00:00,2.5387006,122.12497,16.55,1009.519,53.611794,0.0,0.0,0.0,7.1,0.0,0.0, +2024-10-09 23:00:00,2.9068882,116.56499,19.0,1010.0855,50.200485,92.0,398.88123,33.0,8.4,0.0,0.0, +2024-10-10 00:00:00,2.7041636,123.6901,22.05,1010.1721,47.420193,310.0,678.599,67.0,10.35,0.0,0.0, +2024-10-10 01:00:00,3.420526,74.74483,25.7,1009.7775,41.233868,535.0,806.3403,84.0,11.55,0.0,0.0, +2024-10-10 02:00:00,2.3505318,60.708733,28.3,1009.6495,38.67817,729.0,875.7605,93.0,12.9,0.0,0.0, +2024-10-10 03:00:00,1.05,360.0,29.5,1009.1857,39.392788,872.0,912.148,99.0,14.25,0.0,0.0, +2024-10-10 04:00:00,2.8111386,231.49931,29.1,1008.4805,55.37118,951.0,927.0423,103.0,19.25,0.0,0.0, +2024-10-10 05:00:00,1.1543397,265.03033,27.8,1008.5449,63.342056,930.0,872.7549,124.0,20.2,0.0,0.0, +2024-10-10 06:00:00,2.074247,195.37631,28.05,1007.6588,65.1779,752.0,644.76166,189.0,20.9,0.0,0.0, +2024-10-10 07:00:00,4.229953,241.01128,26.4,1007.61426,66.25784,739.0,802.90326,123.0,19.6,0.0,0.0, +2024-10-10 08:00:00,3.8278584,203.8865,25.55,1006.8968,59.005234,557.0,729.4096,110.0,16.95,0.0,0.0, +2024-10-10 09:00:00,2.4824383,170.72748,25.6,1007.4933,56.091908,375.0,710.96747,76.0,16.2,0.0,0.0, +2024-10-10 10:00:00,2.630589,171.25392,24.5,1008.2568,60.27533,151.0,506.08466,48.0,16.3,0.0,0.0, +2024-10-10 11:00:00,2.2825425,118.8107,22.25,1008.88837,66.87402,9.0,44.079605,6.0,15.8,0.0,0.0, +2024-10-10 12:00:00,2.0573041,64.05776,22.5,1009.58966,61.96974,0.0,0.0,0.0,14.85,0.0,0.0, +2024-10-10 13:00:00,3.1484122,79.93938,21.55,1009.2655,57.29419,0.0,0.0,0.0,12.75,0.0,0.0, +2024-10-10 14:00:00,1.9006578,63.435013,20.2,1008.73126,62.868176,0.0,0.0,0.0,12.9,0.0,0.0, +2024-10-10 15:00:00,3.08099,48.289345,20.3,1008.43665,63.92543,0.0,0.0,0.0,13.25,0.0,0.0, +2024-10-10 16:00:00,4.0,53.13002,20.9,1007.95776,60.212715,0.0,0.0,0.0,12.9,0.0,0.0, +2024-10-10 17:00:00,5.1363897,41.448174,21.75,1007.48596,54.59187,0.0,0.0,0.0,12.2,0.0,0.0, +2024-10-10 18:00:00,5.456189,41.28462,22.15,1007.1994,51.549557,0.0,0.0,0.0,11.7,0.0,0.0, +2024-10-10 19:00:00,5.7987065,44.301388,21.85,1007.092,52.155716,0.0,0.0,0.0,11.6,0.0,0.0, +2024-10-10 20:00:00,6.5522895,41.597137,21.7,1007.0876,52.984524,0.0,0.0,0.0,11.7,0.0,0.0, +2024-10-10 21:00:00,6.948741,32.660904,21.8,1007.28876,54.24673,0.0,0.0,0.0,12.15,0.0,0.0, +2024-10-10 22:00:00,6.9065185,34.3804,21.45,1007.7749,58.02445,1.0,0.0,1.0,12.85,0.0,0.0, +2024-10-10 23:00:00,7.2201114,36.552567,22.45,1008.4973,57.70151,96.0,406.93973,35.0,13.7,0.0,0.0, +2024-10-11 00:00:00,6.8104696,37.543026,24.65,1008.6576,53.396095,315.0,682.41705,68.0,14.55,0.0,0.0, +2024-10-11 01:00:00,6.0508265,35.923042,28.15,1008.3561,43.99675,542.0,813.6655,84.0,14.75,0.0,0.0, +2024-10-11 02:00:00,2.4026027,282.01144,28.2,1008.65485,45.88793,736.0,881.4572,93.0,15.45,0.0,0.0, +2024-10-11 03:00:00,3.5510561,237.65257,26.65,1008.31555,59.8243,877.0,913.71924,100.0,18.2,0.0,0.0, +2024-10-11 04:00:00,3.9118412,234.88791,26.25,1007.7093,60.487797,944.0,910.2353,109.0,18.0,0.0,0.0, +2024-10-11 05:00:00,4.585303,242.03786,25.45,1007.3899,56.055,914.0,839.2335,137.0,16.05,0.0,0.0, +2024-10-11 06:00:00,3.407712,247.5741,25.3,1007.08826,56.37698,819.0,773.44635,142.0,16.0,0.0,0.0, +2024-10-11 07:00:00,3.4820971,248.96242,24.7,1006.7743,58.992126,673.0,705.94794,130.0,16.15,0.0,0.0, +2024-10-11 08:00:00,2.745906,259.50858,24.15,1006.75903,59.429623,538.0,670.2256,126.0,15.75,0.0,0.0, +2024-10-11 09:00:00,2.55,270.0,23.75,1007.04565,62.649876,363.0,634.3722,95.0,16.2,0.0,0.0, +2024-10-11 10:00:00,2.252221,272.54474,22.4,1007.30554,70.17759,156.0,525.45746,48.0,16.7,0.0,0.0, +2024-10-11 11:00:00,1.990603,281.59213,20.75,1007.85443,79.624985,9.0,57.90208,5.0,17.1,0.0,0.0, +2024-10-11 12:00:00,1.6324829,297.3498,19.85,1008.4239,86.060036,0.0,0.0,0.0,17.45,0.0,0.0, +2024-10-11 13:00:00,1.6710774,308.92755,18.05,1009.0666,93.58999,0.0,0.0,0.0,17.0,0.0,0.0, +2024-10-11 14:00:00,1.9723083,300.46545,17.45,1009.0492,95.36267,0.0,0.0,0.0,16.7,0.0,0.0, +2024-10-11 15:00:00,1.5508063,290.77234,17.75,1008.8596,95.071434,0.0,0.0,0.0,16.95,0.0,0.0, +2024-10-11 16:00:00,1.7269917,292.1095,17.3,1008.6483,95.66096,0.0,0.0,0.0,16.6,0.0,0.0, +2024-10-11 17:00:00,1.9962465,292.06796,16.75,1008.13635,97.17946,0.0,0.0,0.0,16.3,0.0,0.0, +2024-10-11 18:00:00,1.9319679,280.4374,16.5,1007.8316,97.174095,0.0,0.0,0.0,16.05,0.0,0.0, +2024-10-11 19:00:00,1.8200275,254.05453,17.25,1007.8534,96.269066,0.0,0.0,0.0,16.65,0.0,0.0, +2024-10-11 20:00:00,2.2472205,237.72438,17.8,1007.86926,95.67723,0.0,0.0,0.0,17.1,0.0,0.0, +2024-10-11 21:00:00,2.0155644,223.99501,17.65,1008.1626,96.5856,0.0,0.0,0.0,17.1,0.0,0.0, +2024-10-11 22:00:00,2.3430748,219.80553,17.75,1008.56213,96.89406,1.0,0.0,1.0,17.25,0.0,0.0, +2024-10-11 23:00:00,3.4003677,216.02747,18.6,1009.18146,92.73393,80.0,230.48753,45.0,17.4,0.0,0.0, +2024-10-12 00:00:00,3.3143628,213.92984,19.7,1009.41156,83.36357,293.0,560.50507,88.0,16.8,0.0,0.0, +2024-10-12 01:00:00,3.5846896,210.1413,20.45,1009.9287,73.48754,504.0,676.22107,121.0,15.55,0.0,0.0, +2024-10-12 02:00:00,3.8330796,210.57915,21.2,1009.9498,68.17622,703.0,728.8597,169.0,15.1,0.0,0.0, +2024-10-12 03:00:00,4.924429,209.16751,21.4,1009.7572,66.484505,841.0,789.94543,167.0,14.9,0.0,0.0, +2024-10-12 04:00:00,5.769748,205.67677,21.75,1009.3704,67.41669,948.0,862.05743,155.0,15.45,0.0,0.0, +2024-10-12 05:00:00,5.818075,208.76755,21.6,1008.9691,64.83464,985.0,930.9085,121.0,14.7,0.0,0.0, +2024-10-12 06:00:00,6.015189,206.139,21.4,1008.4679,65.21123,922.0,908.39136,125.0,14.6,0.0,0.0, +2024-10-12 07:00:00,6.296825,200.44963,20.8,1008.05414,67.65824,790.0,866.27924,122.0,14.6,0.0,0.0, +2024-10-12 08:00:00,6.464132,194.78873,20.3,1008.2383,67.995544,615.0,838.47046,98.0,14.2,0.0,0.0, +2024-10-12 09:00:00,6.471862,191.13626,19.4,1008.5102,70.74104,390.0,721.06036,84.0,13.95,0.0,0.0, +2024-10-12 10:00:00,6.321788,188.64272,18.4,1008.77924,75.2983,159.0,510.69992,53.0,13.95,0.0,0.0, +2024-10-12 11:00:00,5.6641417,184.0495,17.7,1009.1556,78.93991,10.0,42.789402,7.0,14.0,0.0,0.0, +2024-10-12 12:00:00,5.05099,178.8656,17.4,1009.74207,79.15333,0.0,0.0,0.0,13.75,0.0,0.0, +2024-10-12 13:00:00,4.7214932,174.53099,17.3,1010.0367,74.8707,0.0,0.0,0.0,12.8,0.0,0.0, +2024-10-12 14:00:00,4.4138985,175.45204,16.95,1009.8282,76.79843,0.0,0.0,0.0,12.85,0.0,0.0, +2024-10-12 15:00:00,4.25,171.20267,16.8,1009.6254,77.02663,0.0,0.0,0.0,12.75,0.0,0.0, +2024-10-12 16:00:00,3.9223716,168.9766,16.75,1009.0289,75.02418,0.0,0.0,0.0,12.3,0.0,0.0, +2024-10-12 17:00:00,3.49285,166.75948,16.5,1008.52576,74.982285,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-12 18:00:00,3.2256782,161.00325,16.35,1007.82745,75.20445,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-12 19:00:00,2.5942245,152.44728,15.95,1007.51825,77.65698,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-12 20:00:00,1.9602295,127.74687,15.45,1007.7017,80.71097,0.0,0.0,0.0,12.15,0.0,0.0, +2024-10-12 21:00:00,2.2588713,95.07952,15.0,1007.9863,82.261345,0.0,0.0,0.0,12.0,0.0,0.0, +2024-10-12 22:00:00,2.4622145,77.09259,13.8,1008.1492,85.44349,1.0,0.0,1.0,11.4,0.0,0.0, +2024-10-12 23:00:00,2.557831,85.51548,15.4,1008.49384,77.572716,104.0,409.7072,41.0,11.5,0.0,0.0, +2024-10-13 00:00:00,2.1100948,126.32692,17.65,1008.85675,68.35211,324.0,644.1786,86.0,11.75,0.0,0.0, +2024-10-13 01:00:00,2.6967573,190.68486,18.85,1008.9906,61.1305,433.0,394.87085,208.0,11.2,0.0,0.0, +2024-10-13 02:00:00,3.1216984,211.90807,20.05,1008.82635,55.98827,695.0,704.03876,177.0,11.0,0.0,0.0, +2024-10-13 03:00:00,3.677635,223.89838,20.85,1008.5516,52.939117,874.0,813.07794,178.0,10.9,0.0,0.0, +2024-10-13 04:00:00,4.0459857,230.01317,20.6,1008.2467,56.68501,896.0,676.513,272.0,11.7,0.0,0.0, +2024-10-13 05:00:00,4.140048,232.85323,20.7,1007.8529,57.462307,966.0,840.5404,184.0,12.0,0.0,0.0, +2024-10-13 06:00:00,4.7565746,230.11737,20.8,1007.35986,57.10967,915.0,873.31586,147.0,12.0,0.0,0.0, +2024-10-13 07:00:00,5.1363897,228.55183,20.4,1006.9517,57.768505,749.0,754.1822,166.0,11.8,0.0,0.0, +2024-10-13 08:00:00,5.2709103,226.92194,19.85,1007.03546,58.401676,599.0,771.2634,122.0,11.45,0.0,0.0, +2024-10-13 09:00:00,5.4856634,222.41415,18.95,1007.2081,64.47004,314.0,405.8314,141.0,12.1,0.0,0.0, +2024-10-13 10:00:00,5.18001,216.75937,18.35,1007.48834,67.156166,95.0,133.59225,67.0,12.15,0.0,0.0, +2024-10-13 11:00:00,4.5961943,210.7499,17.95,1007.77454,69.09104,8.0,28.110985,6.0,12.2,0.0,0.0, +2024-10-13 12:00:00,4.159327,207.18103,17.35,1008.0546,72.703125,0.0,0.0,0.0,12.4,0.0,0.0, +2024-10-13 13:00:00,4.24323,201.42535,17.5,1008.15814,69.91771,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-13 14:00:00,4.0804415,197.10281,17.3,1007.95416,71.04001,0.0,0.0,0.0,12.0,0.0,0.0, +2024-10-13 15:00:00,4.317406,193.39252,17.3,1007.7558,69.19024,0.0,0.0,0.0,11.6,0.0,0.0, +2024-10-13 16:00:00,3.104835,194.93147,16.25,1007.4277,74.69349,0.0,0.0,0.0,11.75,0.0,0.0, +2024-10-13 17:00:00,3.2984846,194.03627,16.35,1006.73663,73.24549,0.0,0.0,0.0,11.55,0.0,0.0, +2024-10-13 18:00:00,3.0037477,182.86235,16.6,1006.14886,69.51125,0.0,0.0,0.0,11.0,0.0,0.0, +2024-10-13 19:00:00,2.6234517,172.33328,16.5,1005.84827,69.722694,0.0,0.0,0.0,10.95,0.0,0.0, +2024-10-13 20:00:00,2.4046829,183.57626,16.45,1005.8469,70.17734,0.0,0.0,0.0,11.0,0.0,0.0, +2024-10-13 21:00:00,2.7041636,183.17976,16.75,1006.153,70.235344,0.0,0.0,0.0,11.3,0.0,0.0, +2024-10-13 22:00:00,2.5504901,181.12328,16.85,1006.4537,72.85268,1.0,0.0,1.0,11.95,0.0,0.0, +2024-10-13 23:00:00,3.1196954,186.4415,18.0,1007.08185,68.42264,78.0,199.1687,47.0,12.1,0.0,0.0, +2024-10-14 00:00:00,3.3593154,194.6568,19.0,1007.507,63.42829,266.0,407.38934,114.0,11.9,0.0,0.0, +2024-10-14 01:00:00,3.3421547,218.92755,20.4,1007.7451,56.635315,502.0,591.46704,163.0,11.5,0.0,0.0, +2024-10-14 02:00:00,4.0140376,230.55997,20.85,1008.15485,55.6352,677.0,645.6582,200.0,11.65,0.0,0.0, +2024-10-14 03:00:00,4.6738634,235.45984,21.1,1008.26105,56.066227,832.0,688.23584,241.0,12.0,0.0,0.0, +2024-10-14 04:00:00,4.8127437,237.30054,21.0,1007.96063,56.784218,816.0,513.6261,341.0,12.1,0.0,0.0, +2024-10-14 05:00:00,4.95101,236.95187,21.15,1007.4688,55.527397,873.0,601.59,312.0,11.9,0.0,0.0, +2024-10-14 06:00:00,4.8708315,234.18875,21.35,1006.97864,54.85049,863.0,722.7151,226.0,11.9,0.0,0.0, +2024-10-14 07:00:00,4.6002717,232.50728,21.35,1006.5819,54.31059,772.0,783.32153,165.0,11.75,0.0,0.0, +2024-10-14 08:00:00,4.4601007,232.74463,21.0,1006.47296,56.22616,623.0,859.2321,90.0,11.95,0.0,0.0, +2024-10-14 09:00:00,4.92062,227.88304,20.4,1007.0509,59.897987,398.0,749.6552,77.0,12.35,0.0,0.0, +2024-10-14 10:00:00,5.591288,218.09972,19.55,1007.42365,65.881454,163.0,524.4749,52.0,13.0,0.0,0.0, +2024-10-14 11:00:00,3.8849065,211.84901,19.7,1007.7256,66.5613,7.0,13.852266,6.0,13.3,0.0,0.0, +2024-10-14 12:00:00,3.8967936,213.48619,19.6,1007.9211,69.64096,0.0,0.0,0.0,13.9,0.0,0.0, +2024-10-14 13:00:00,1.9525625,193.32454,17.75,1008.1654,76.17679,0.0,0.0,0.0,13.5,0.0,0.0, +2024-10-14 14:00:00,3.2128649,200.97357,17.55,1007.9614,86.10636,0.0,0.0,0.0,15.2,0.0,0.0, +2024-10-14 15:00:00,2.4667792,197.70052,17.25,1007.655,91.48508,0.0,0.0,0.0,15.85,0.0,0.0, +2024-10-14 16:00:00,2.2461078,196.82149,16.8,1007.2454,93.231384,0.0,0.0,0.0,15.7,0.0,0.1, +2024-10-14 17:00:00,2.214159,186.48297,16.65,1006.94354,93.22382,0.0,0.0,0.0,15.55,0.0,0.0, +2024-10-14 18:00:00,1.8668154,172.30405,16.25,1006.53516,93.80418,0.0,0.0,0.0,15.25,0.0,0.0, +2024-10-14 19:00:00,1.6224982,146.3099,15.2,1006.20703,94.66949,0.0,0.0,0.0,14.35,0.0,0.0, +2024-10-14 20:00:00,1.8506756,128.41809,14.5,1006.3849,95.25825,0.0,0.0,0.0,13.75,0.0,0.0, +2024-10-14 21:00:00,1.6643317,122.73522,14.55,1006.9814,95.26003,0.0,0.0,0.0,13.8,0.0,0.0, +2024-10-14 22:00:00,1.372953,123.11135,15.15,1007.69324,94.667465,1.0,0.0,1.0,14.3,0.0,0.0, +2024-10-14 23:00:00,2.3200216,127.11694,16.8,1008.4354,90.00071,83.0,241.29459,45.0,15.15,0.0,0.0, +2024-10-15 00:00:00,2.996665,154.2901,18.4,1008.77924,78.026955,281.0,451.32303,111.0,14.5,0.0,0.0, +2024-10-15 01:00:00,3.0602288,184.6858,20.25,1009.0304,57.731762,504.0,605.46954,155.0,11.65,0.0,0.0, +2024-10-15 02:00:00,2.7280946,206.09537,21.25,1008.761,51.826195,747.0,815.6654,142.0,10.95,0.0,0.0, +2024-10-15 03:00:00,2.8991377,224.9999,21.75,1008.18024,48.781784,882.0,852.14795,148.0,10.5,0.0,0.0, +2024-10-15 04:00:00,3.6335244,235.65384,21.9,1007.2916,47.85601,981.0,917.8649,130.0,10.35,0.0,0.0, +2024-10-15 05:00:00,4.1880784,236.68936,22.0,1006.89777,46.46566,996.0,934.0394,123.0,10.0,0.0,0.0, +2024-10-15 06:00:00,4.4936066,235.42574,21.95,1006.4003,47.07736,941.0,946.39716,105.0,10.15,0.0,0.0, +2024-10-15 07:00:00,5.233068,224.22588,21.3,1005.9855,50.64732,811.0,917.91223,98.0,10.65,0.0,0.0, +2024-10-15 08:00:00,5.3265843,212.34741,20.45,1006.0608,54.802895,622.0,851.86273,92.0,11.05,0.0,0.0, +2024-10-15 09:00:00,4.651881,205.4633,19.8,1005.8441,57.05106,397.0,739.3438,79.0,11.05,0.0,0.0, +2024-10-15 10:00:00,3.7121422,207.25525,19.0,1005.82104,60.96333,165.0,528.7747,52.0,11.3,0.0,0.0, +2024-10-15 11:00:00,2.4667792,197.70052,17.85,1005.689,67.49649,11.0,27.306433,9.0,11.75,0.0,0.0, +2024-10-15 12:00:00,1.8062391,175.23645,17.1,1005.7665,72.41952,0.0,0.0,0.0,12.1,0.0,0.0, +2024-10-15 13:00:00,2.071835,171.67444,16.4,1005.2504,73.73972,0.0,0.0,0.0,11.7,0.0,0.0, +2024-10-15 14:00:00,1.7102631,127.875046,15.65,1005.03033,76.84626,0.0,0.0,0.0,11.6,0.0,0.0, +2024-10-15 15:00:00,2.1662178,108.85326,14.2,1004.5911,83.2561,0.0,0.0,0.0,11.4,0.0,0.0, +2024-10-15 16:00:00,0.49244288,66.037506,16.0,1004.24713,72.6997,0.0,0.0,0.0,11.1,0.0,0.0, +2024-10-15 17:00:00,0.6519202,355.60138,15.95,1003.8491,72.44987,0.0,0.0,0.0,11.0,0.0,0.0, +2024-10-15 18:00:00,1.1597414,7.4313188,13.65,1003.1868,83.46714,0.0,0.0,0.0,10.9,0.0,0.0, +2024-10-15 19:00:00,1.3462912,21.801476,13.15,1002.577,86.804825,0.0,0.0,0.0,11.0,0.0,0.0, +2024-10-15 20:00:00,1.4916433,39.55964,13.3,1002.28406,87.10746,0.0,0.0,0.0,11.2,0.0,0.0, +2024-10-15 21:00:00,2.7280946,48.715385,12.95,1001.877,90.60788,0.0,0.0,0.0,11.45,0.0,0.0, +2024-10-15 22:00:00,3.1484125,32.680546,13.3,1001.88745,90.33388,2.0,0.0,2.0,11.75,0.0,0.0, +2024-10-15 23:00:00,3.7499998,16.26028,16.05,1001.9679,79.47869,99.0,337.81384,45.0,12.5,0.0,0.0, +2024-10-16 00:00:00,4.6872168,326.3099,18.95,1002.1503,69.062454,293.0,547.1579,85.0,13.15,0.0,0.0, +2024-10-16 01:00:00,5.4113307,305.5993,19.15,1001.6601,70.92389,354.0,217.39651,228.0,13.75,0.0,0.9, +2024-10-16 02:00:00,7.2543087,304.89502,19.4,1001.36957,70.51196,443.0,188.02397,303.0,13.9,0.0,0.5, +2024-10-16 03:00:00,6.96563,309.17365,18.8,1000.8567,75.36412,424.0,85.65701,350.0,14.35,0.0,1.0, +2024-10-16 04:00:00,6.3411355,322.04572,17.3,999.82227,88.891045,134.0,0.0,134.0,15.45,0.0,1.2, +2024-10-16 05:00:00,7.9832635,300.90213,17.5,999.3321,91.79298,274.0,53.377914,224.0,16.15,0.0,4.0, +2024-10-16 06:00:00,8.162414,283.09985,17.75,999.2401,87.51687,195.0,11.296091,185.0,15.65,0.0,2.6, +2024-10-16 07:00:00,9.250541,269.3806,19.45,998.9909,71.21049,551.0,290.26633,325.0,14.1,0.0,0.0, +2024-10-16 08:00:00,8.78934,261.82388,19.2,999.2812,64.10218,462.0,551.2814,118.0,12.25,0.0,0.5, +2024-10-16 09:00:00,10.5746155,255.7666,19.35,999.5832,56.939346,361.0,597.18195,103.0,10.6,0.0,0.1, +2024-10-16 10:00:00,9.101236,242.87195,17.6,1000.52496,71.80019,146.0,412.46176,57.0,12.45,0.0,0.0, +2024-10-16 11:00:00,8.53361,240.1303,17.4,1001.1143,67.18086,12.0,67.29255,7.0,11.25,0.0,0.0, +2024-10-16 12:00:00,7.8492036,235.90497,17.65,1001.91486,61.874588,0.0,0.0,0.0,10.25,0.0,0.0, +2024-10-16 13:00:00,7.5314345,225.80684,17.15,1002.99133,72.667145,0.0,0.0,0.0,12.2,0.0,0.1, +2024-10-16 14:00:00,6.9341545,218.85338,17.25,1003.19244,68.95204,0.0,0.0,0.0,11.5,0.0,0.0, +2024-10-16 15:00:00,6.3790674,213.81467,17.4,1003.296,67.6272,0.0,0.0,0.0,11.35,0.0,0.0, +2024-10-16 16:00:00,6.074743,214.60574,17.3,1003.39233,68.0558,0.0,0.0,0.0,11.35,0.0,0.0, +2024-10-16 17:00:00,5.985399,210.63535,17.65,1003.2041,69.259415,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-16 18:00:00,5.1022058,204.30453,17.45,1002.8015,70.602135,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-16 19:00:00,5.2376046,200.68416,17.2,1002.99286,74.365036,0.0,0.0,0.0,12.6,0.0,0.0, +2024-10-16 20:00:00,5.3602705,197.92801,17.25,1003.49,75.35382,0.0,0.0,0.0,12.85,0.0,0.0, +2024-10-16 21:00:00,5.03314,193.20793,16.8,1004.1712,79.325584,0.0,0.0,0.0,13.2,0.0,0.0, +2024-10-16 22:00:00,4.570558,190.08054,16.7,1005.06085,81.14206,2.0,0.0,2.0,13.45,0.0,0.0, +2024-10-16 23:00:00,4.9520197,191.65027,17.9,1006.0873,75.706856,88.0,269.09598,44.0,13.55,0.0,0.0, +2024-10-17 00:00:00,5.5301447,194.6645,18.45,1006.7973,73.13743,254.0,398.9259,101.0,13.55,0.0,0.1, +2024-10-17 01:00:00,5.700877,195.25517,19.25,1007.5143,72.10213,397.0,358.69534,188.0,14.1,0.0,0.4, +2024-10-17 02:00:00,5.9550395,203.76712,20.35,1008.0415,65.62286,649.0,565.9932,226.0,13.7,0.0,0.2, +2024-10-17 03:00:00,5.9036007,207.21603,20.75,1008.25116,63.816597,765.0,610.5803,236.0,13.65,0.0,0.0, +2024-10-17 04:00:00,5.660389,212.00534,21.3,1008.26666,60.898846,942.0,837.2171,162.0,13.45,0.0,0.0, +2024-10-17 05:00:00,5.271859,215.34825,21.2,1008.46216,60.67756,945.0,818.12714,177.0,13.3,0.0,0.0, +2024-10-17 06:00:00,4.82001,216.98885,20.9,1008.2553,61.40421,825.0,709.02405,196.0,13.2,0.0,0.0, +2024-10-17 07:00:00,4.7246695,219.41737,20.6,1008.1476,61.93926,705.0,679.13464,175.0,13.05,0.0,0.0, +2024-10-17 08:00:00,5.05099,215.73557,20.1,1008.4309,63.67301,565.0,677.50256,141.0,13.0,0.0,0.0, +2024-10-17 09:00:00,5.121035,207.31552,19.3,1008.8049,64.97138,324.0,451.6622,128.0,12.55,0.0,0.0, +2024-10-17 10:00:00,4.570832,199.82256,18.35,1009.1742,66.27779,150.0,408.50076,61.0,11.95,0.0,0.0, +2024-10-17 11:00:00,3.6687872,197.44728,17.35,1009.5422,70.815895,12.0,39.802063,9.0,12.0,0.0,0.0, +2024-10-17 12:00:00,2.942788,189.78233,16.9,1010.02496,71.90754,0.0,0.0,0.0,11.8,0.0,0.0, +2024-10-17 13:00:00,2.700463,181.06088,16.0,1010.5937,75.893936,0.0,0.0,0.0,11.75,0.0,0.0, +2024-10-17 14:00:00,2.8017852,177.95464,15.6,1010.48285,76.07995,0.0,0.0,0.0,11.4,0.0,0.0, +2024-10-17 15:00:00,2.795085,169.6952,15.3,1010.1764,76.53698,0.0,0.0,0.0,11.2,0.0,0.0, +2024-10-17 16:00:00,2.6856098,155.82089,14.85,1009.8659,78.52308,0.0,0.0,0.0,11.15,0.0,0.0, +2024-10-17 17:00:00,2.6315393,141.17017,14.35,1009.4544,80.56199,0.0,0.0,0.0,11.05,0.0,0.0, +2024-10-17 18:00:00,2.147091,117.75845,13.55,1008.9349,83.45532,0.0,0.0,0.0,10.8,0.0,0.0, +2024-10-17 19:00:00,2.2005682,91.301926,12.9,1008.6181,84.781334,0.0,0.0,0.0,10.4,0.0,0.0, +2024-10-17 20:00:00,2.1965883,78.178535,12.45,1008.5053,86.44813,0.0,0.0,0.0,10.25,0.0,0.0, +2024-10-17 21:00:00,2.5773048,71.916466,12.05,1008.69183,88.16021,0.0,0.0,0.0,10.15,0.0,0.0, +2024-10-17 22:00:00,3.0842342,73.033775,12.0,1009.2853,87.56827,3.0,20.174757,2.0,10.0,0.0,0.0, +2024-10-17 23:00:00,3.7980258,69.17903,14.3,1009.8494,77.92054,121.0,466.85526,43.0,10.5,0.0,0.0, +2024-10-18 00:00:00,3.2984846,75.96373,17.2,1010.3313,66.03374,353.0,723.8575,73.0,10.8,0.0,0.0, +2024-10-18 01:00:00,3.1575305,100.95402,19.05,1010.1862,59.18245,583.0,836.6731,93.0,10.9,0.0,0.0, +2024-10-18 02:00:00,2.074247,105.376305,20.95,1009.84375,52.26612,783.0,907.95154,102.0,10.8,0.0,0.0, +2024-10-18 03:00:00,0.99624294,162.47433,22.55,1009.3929,47.084576,928.0,942.6954,109.0,10.7,0.0,0.0, +2024-10-18 04:00:00,3.1100645,216.50153,23.15,1008.9134,48.674816,1004.0,946.6621,120.0,11.75,0.0,0.0, +2024-10-18 05:00:00,5.561025,213.26144,21.85,1008.778,59.075863,1010.0,945.05396,121.0,13.5,0.0,0.0, +2024-10-18 06:00:00,5.500909,207.03078,21.45,1008.37,59.173096,943.0,930.29114,116.0,13.15,0.0,0.0, +2024-10-18 07:00:00,5.1429563,206.56499,21.25,1008.16595,59.31888,807.0,875.7439,122.0,13.0,0.0,0.0, +2024-10-18 08:00:00,4.8787804,204.20097,20.6,1008.1476,61.93926,613.0,767.94696,131.0,13.05,0.0,0.0, +2024-10-18 09:00:00,4.526036,196.03241,19.65,1008.2199,65.26001,379.0,585.02,124.0,12.95,0.0,0.0, +2024-10-18 10:00:00,4.2005954,188.90164,18.75,1008.4918,71.31161,162.0,427.31302,68.0,13.45,0.0,0.0, +2024-10-18 11:00:00,3.463019,175.03035,17.45,1008.8508,78.6479,14.0,65.40014,9.0,13.7,0.0,0.0, +2024-10-18 12:00:00,2.7060118,163.90912,16.8,1009.1296,83.29161,0.0,0.0,0.0,13.95,0.0,0.0, +2024-10-18 13:00:00,2.8622541,152.98741,16.35,1009.21576,87.67328,0.0,0.0,0.0,14.3,0.0,0.0, +2024-10-18 14:00:00,2.7189152,147.77127,15.8,1009.19965,89.927086,0.0,0.0,0.0,14.15,0.0,0.0, +2024-10-18 15:00:00,2.6201146,138.09415,15.4,1008.69214,90.48311,0.0,0.0,0.0,13.85,0.0,0.0, +2024-10-18 16:00:00,2.5495098,115.55992,14.85,1008.1801,91.332535,0.0,0.0,0.0,13.45,0.0,0.0, +2024-10-18 17:00:00,2.5164459,110.95586,14.35,1007.66956,92.19934,0.0,0.0,0.0,13.1,0.0,0.0, +2024-10-18 18:00:00,2.5347583,104.85866,14.0,1006.7666,91.27755,0.0,0.0,0.0,12.6,0.0,0.0, +2024-10-18 19:00:00,2.3900838,105.78082,13.55,1006.2576,90.649765,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-18 20:00:00,2.3420076,106.11349,13.35,1006.2515,89.44757,0.0,0.0,0.0,11.65,0.0,0.0, +2024-10-18 21:00:00,2.267708,104.03627,13.3,1006.34955,88.5612,0.0,0.0,0.0,11.45,0.0,0.0, +2024-10-18 22:00:00,2.2321515,105.59287,13.45,1006.75055,86.54659,3.0,0.0,3.0,11.25,0.0,0.0, +2024-10-18 23:00:00,2.84605,108.43504,15.45,1007.2059,78.61182,117.0,381.13992,52.0,11.75,0.0,0.0, +2024-10-19 00:00:00,2.2896507,121.60746,18.0,1007.37933,67.7502,273.0,269.22934,168.0,11.95,0.0,0.0, +2024-10-19 01:00:00,2.687936,133.49263,21.0,1007.4647,57.535885,526.0,591.296,178.0,12.3,0.0,0.0, +2024-10-19 02:00:00,2.0670028,147.84773,23.6,1007.0415,50.094124,772.0,878.2556,111.0,12.6,0.0,0.0, +2024-10-19 03:00:00,2.3286262,194.93147,25.05,1006.5853,48.864574,886.0,807.02704,183.0,13.55,0.0,0.0, +2024-10-19 04:00:00,5.1198144,211.82741,24.2,1006.1652,59.06239,906.0,626.1441,320.0,15.7,0.0,0.0, +2024-10-19 05:00:00,6.44748,203.78204,22.9,1005.73254,62.660507,913.0,656.7009,294.0,15.4,0.0,0.0, +2024-10-19 06:00:00,5.8122716,201.70995,22.7,1005.42957,59.6624,866.0,674.7006,265.0,14.45,0.0,0.0, +2024-10-19 07:00:00,5.6135993,197.62811,22.55,1005.128,60.013824,813.0,906.93585,102.0,14.4,0.0,0.0, +2024-10-19 08:00:00,5.2540464,196.02036,21.75,1004.9072,61.999687,591.0,702.187,149.0,14.15,0.0,0.0, +2024-10-19 09:00:00,5.0224495,189.74358,20.5,1005.0702,71.17592,307.0,283.2212,183.0,15.1,0.0,0.0, +2024-10-19 10:00:00,4.4780016,186.41075,19.6,1005.3425,77.20979,170.0,504.26187,58.0,15.5,0.0,0.0, +2024-10-19 11:00:00,3.550352,180.80692,18.3,1005.70197,85.35849,14.0,64.481285,9.0,15.8,0.0,0.0, +2024-10-19 12:00:00,2.9274564,172.14677,18.0,1006.09015,88.9473,0.0,0.0,0.0,16.15,0.0,0.0, +2024-10-19 13:00:00,1.8200275,159.07542,16.65,1006.051,93.22382,0.0,0.0,0.0,15.55,0.0,0.0, +2024-10-19 14:00:00,2.0670028,147.84773,15.35,1005.6165,94.675514,0.0,0.0,0.0,14.5,0.0,0.0, +2024-10-19 15:00:00,2.1569655,135.9391,14.95,1005.2081,94.96645,0.0,0.0,0.0,14.15,0.0,0.0, +2024-10-19 16:00:00,2.2276669,134.09071,14.4,1004.7954,94.94547,0.0,0.0,0.0,13.6,0.0,0.0, +2024-10-19 17:00:00,2.3900838,127.34943,13.8,1004.1828,96.17003,0.0,0.0,0.0,13.2,0.0,0.0, +2024-10-19 18:00:00,1.9678669,117.216034,14.05,1003.8926,95.86466,0.0,0.0,0.0,13.4,0.0,0.0, +2024-10-19 19:00:00,1.2041595,94.76356,14.1,1003.5967,97.75506,0.0,0.0,0.0,13.75,0.0,0.0, +2024-10-19 20:00:00,1.054751,84.55976,15.25,1003.6304,96.21212,0.0,0.0,0.0,14.65,0.0,0.0, +2024-10-19 21:00:00,1.17047,70.01681,15.35,1004.129,96.215004,0.0,0.0,0.0,14.75,0.0,0.0, +2024-10-19 22:00:00,1.3453624,48.01287,15.45,1004.8259,96.839355,2.0,0.0,2.0,14.95,0.0,0.0, +2024-10-19 23:00:00,1.9678669,27.216026,16.0,1005.53625,97.787506,72.0,40.245308,65.0,15.65,0.0,0.0, +2024-10-20 00:00:00,1.054751,354.55975,18.15,1005.4001,86.16577,220.0,104.29617,179.0,15.8,0.0,0.0, +2024-10-20 01:00:00,2.0573041,295.94223,20.3,1004.8663,72.99171,502.0,517.46027,196.0,15.3,0.0,0.0, +2024-10-20 02:00:00,3.427098,293.1986,21.75,1004.70886,63.624126,709.0,681.98645,194.0,14.55,0.0,0.0, +2024-10-20 03:00:00,4.9015307,288.43503,22.4,1004.9252,60.367867,879.0,833.5719,151.0,14.35,0.0,0.0, +2024-10-20 04:00:00,6.0878983,287.69098,22.45,1004.72833,61.75906,889.0,590.6726,335.0,14.75,0.0,0.0, +2024-10-20 05:00:00,7.06983,289.84473,22.95,1004.5439,58.7653,977.0,867.16943,158.0,14.45,0.0,0.0, +2024-10-20 06:00:00,7.316078,294.63837,22.35,1004.32874,61.33918,615.0,210.63663,427.0,14.55,0.0,0.0, +2024-10-20 07:00:00,7.62709,295.22107,22.4,1004.1317,60.563297,515.0,173.09239,379.0,14.4,0.0,0.0, +2024-10-20 08:00:00,8.311739,293.01758,21.9,1004.6138,65.108185,383.0,137.81697,296.0,15.05,0.0,0.0, +2024-10-20 09:00:00,8.530093,285.9916,20.85,1005.17944,73.32224,234.0,100.05346,190.0,15.9,0.0,0.1, +2024-10-20 10:00:00,7.8208055,277.71558,19.25,1005.2332,82.78229,103.0,71.348595,87.0,16.25,0.0,0.2, +2024-10-20 11:00:00,7.1001763,236.19798,17.9,1005.98816,92.991005,9.0,0.0,9.0,16.75,0.0,1.2, +2024-10-20 12:00:00,6.0716553,210.15446,17.75,1007.27295,88.07865,0.0,0.0,0.0,15.75,0.0,0.5, +2024-10-20 13:00:00,5.945166,198.13028,16.9,1008.5375,82.76504,0.0,0.0,0.0,13.95,0.0,0.1, +2024-10-20 14:00:00,5.5301447,194.6645,16.5,1008.7241,82.98595,0.0,0.0,0.0,13.6,0.0,0.1, +2024-10-20 15:00:00,4.744734,187.87384,16.3,1008.81757,82.15483,0.0,0.0,0.0,13.25,0.0,0.0, +2024-10-20 16:00:00,4.5831213,186.89233,16.2,1008.8147,80.54776,0.0,0.0,0.0,12.85,0.0,0.0, +2024-10-20 17:00:00,4.5891175,191.30989,15.75,1008.90063,81.81729,0.0,0.0,0.0,12.65,0.0,0.0, +2024-10-20 18:00:00,4.609772,192.5288,15.8,1008.5055,79.44315,0.0,0.0,0.0,12.25,0.0,0.0, +2024-10-20 19:00:00,4.669047,189.86574,15.5,1008.4967,79.40042,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-20 20:00:00,5.006246,182.86235,15.2,1008.58685,78.835045,0.0,0.0,0.0,11.55,0.0,0.0, +2024-10-20 21:00:00,4.5047193,171.06052,15.05,1008.9791,78.29314,0.0,0.0,0.0,11.3,0.0,0.0, +2024-10-20 22:00:00,3.8810434,158.06146,14.7,1009.66315,79.28584,3.0,0.0,3.0,11.15,0.0,0.0, +2024-10-20 23:00:00,4.5024996,150.01845,15.9,1010.5908,72.68163,88.0,107.17242,69.0,11.0,0.0,0.1, +2024-10-21 00:00:00,4.6308746,142.01645,16.45,1011.20197,68.56364,226.0,151.4485,166.0,10.65,0.0,0.1, +2024-10-21 01:00:00,4.3832064,159.29088,17.65,1011.9311,62.70572,442.0,341.68677,239.0,10.45,0.0,0.0, +2024-10-21 02:00:00,4.8093657,176.42374,19.2,1011.7772,53.577034,728.0,691.6444,204.0,9.55,0.0,0.0, +2024-10-21 03:00:00,4.9751883,185.76779,19.95,1011.6995,48.619907,833.0,678.42944,239.0,8.8,0.0,0.0, +2024-10-21 04:00:00,6.151626,199.46596,19.5,1011.191,54.015354,698.0,340.463,378.0,9.95,0.0,0.0, +2024-10-21 05:00:00,7.5738034,198.0762,19.45,1010.99115,55.83718,897.0,649.9154,282.0,10.4,0.0,0.0, +2024-10-21 06:00:00,7.7854033,194.12552,19.35,1010.59155,53.43648,937.0,888.99115,142.0,9.65,0.0,0.0, +2024-10-21 07:00:00,7.1702514,195.78082,19.2,1010.2896,51.456726,827.0,915.6249,106.0,8.95,0.0,0.0, +2024-10-21 08:00:00,6.9123073,194.23732,18.75,1010.277,50.474403,644.0,870.3523,93.0,8.25,0.0,0.0, +2024-10-21 09:00:00,6.864765,190.49142,18.0,1010.3545,51.48553,419.0,769.72626,79.0,7.85,0.0,0.0, +2024-10-21 10:00:00,6.736468,185.96439,17.1,1010.52655,54.123318,182.0,560.92505,55.0,7.75,0.0,0.0, +2024-10-21 11:00:00,6.0033326,181.9091,16.3,1011.0983,58.513603,16.0,87.774376,9.0,8.15,0.0,0.0, +2024-10-21 12:00:00,5.900212,180.48553,16.05,1011.6861,59.45365,0.0,0.0,0.0,8.15,0.0,0.0, +2024-10-21 13:00:00,5.4776816,174.23746,15.65,1012.071,60.58031,0.0,0.0,0.0,8.05,0.0,0.0, +2024-10-21 14:00:00,5.4744864,170.53775,15.4,1011.8654,63.897167,0.0,0.0,0.0,8.6,0.0,0.0, +2024-10-21 15:00:00,5.2756515,165.17348,15.2,1011.8593,65.38238,0.0,0.0,0.0,8.75,0.0,0.0, +2024-10-21 16:00:00,4.5499997,157.3801,14.75,1011.6477,67.75932,0.0,0.0,0.0,8.85,0.0,0.0, +2024-10-21 17:00:00,3.8587563,148.78166,14.15,1011.3324,69.49214,0.0,0.0,0.0,8.65,0.0,0.0, +2024-10-21 18:00:00,3.434021,132.04915,13.2,1010.8084,70.731834,0.0,0.0,0.0,8.0,0.0,0.0, +2024-10-21 19:00:00,3.4441981,117.68098,12.45,1010.78595,67.04745,0.0,0.0,0.0,6.5,0.0,0.0, +2024-10-21 20:00:00,3.5245569,121.660706,12.3,1010.78143,67.01558,0.0,0.0,0.0,6.35,0.0,0.0, +2024-10-21 21:00:00,3.6891732,122.828545,12.4,1011.1812,66.11976,0.0,0.0,0.0,6.25,0.0,0.0, +2024-10-21 22:00:00,3.7343004,116.22191,12.45,1011.57916,65.45024,5.0,17.708015,4.0,6.15,0.0,0.0, +2024-10-21 23:00:00,4.0853395,111.541046,14.4,1012.13336,60.074444,134.0,487.2898,46.0,6.75,0.0,0.0, +2024-10-22 00:00:00,4.360046,126.60716,17.0,1012.6062,51.39343,368.0,736.49976,74.0,6.9,0.0,0.0, +2024-10-22 01:00:00,5.2974052,146.15991,18.55,1012.75055,50.42056,600.0,859.558,87.0,8.05,0.0,0.0, +2024-10-22 02:00:00,4.842004,163.81073,20.0,1012.5935,46.856983,796.0,921.0194,96.0,8.3,0.0,0.0, +2024-10-22 03:00:00,4.9155364,189.36644,21.25,1012.034,43.530766,940.0,952.4873,104.0,8.35,0.0,0.0, +2024-10-22 04:00:00,6.759623,201.25058,21.05,1011.53235,46.830196,1011.0,946.02747,120.0,9.25,0.0,0.0, +2024-10-22 05:00:00,8.917679,198.63821,19.75,1011.19794,54.26073,1019.0,951.4124,117.0,10.25,0.0,0.0, +2024-10-22 06:00:00,8.028076,193.69006,19.8,1011.0013,53.01876,951.0,929.70404,118.0,9.95,0.0,0.0, +2024-10-22 07:00:00,7.9236984,192.01898,19.55,1010.79565,51.89756,827.0,916.1683,104.0,9.4,0.0,0.0, +2024-10-22 08:00:00,7.504832,189.58777,19.35,1010.6907,47.640125,643.0,864.7357,94.0,7.95,0.0,0.0, +2024-10-22 09:00:00,7.6917167,185.96992,18.9,1011.1735,50.686157,419.0,766.3323,79.0,8.45,0.0,0.0, +2024-10-22 10:00:00,7.5501657,179.62057,17.9,1011.5417,56.386684,182.0,555.5852,55.0,9.1,0.0,0.0, +2024-10-22 11:00:00,6.686741,173.99109,17.1,1012.0141,61.540398,17.0,86.562454,10.0,9.65,0.0,0.0, +2024-10-22 12:00:00,6.033448,170.45969,16.75,1012.49976,63.344242,0.0,0.0,0.0,9.75,0.0,0.0, +2024-10-22 13:00:00,5.8208675,166.0831,16.35,1012.9841,66.96178,0.0,0.0,0.0,10.2,0.0,0.0, +2024-10-22 14:00:00,5.565968,162.21602,16.05,1012.77686,69.17173,0.0,0.0,0.0,10.4,0.0,0.0, +2024-10-22 15:00:00,5.321889,153.19429,15.75,1012.9664,70.275475,0.0,0.0,0.0,10.35,0.0,0.0, +2024-10-22 16:00:00,5.2430906,145.09743,15.15,1012.84973,73.51999,0.0,0.0,0.0,10.45,0.0,0.0, +2024-10-22 17:00:00,5.4740295,140.93153,14.4,1012.4308,73.88051,0.0,0.0,0.0,9.8,0.0,0.0, +2024-10-22 18:00:00,5.7710485,142.03789,14.15,1011.729,71.394356,0.0,0.0,0.0,9.05,0.0,0.0, +2024-10-22 19:00:00,5.5697846,139.73352,13.65,1011.417,73.74854,0.0,0.0,0.0,9.05,0.0,0.0, +2024-10-22 20:00:00,5.3387733,135.3794,13.3,1011.40656,73.43797,0.0,0.0,0.0,8.65,0.0,0.0, +2024-10-22 21:00:00,4.7460513,131.58331,12.95,1011.59436,71.166336,0.0,0.0,0.0,7.85,0.0,0.0, +2024-10-22 22:00:00,4.3809247,128.04709,12.6,1012.0796,72.07564,5.0,34.401203,3.0,7.7,0.0,0.0, +2024-10-22 23:00:00,4.3809247,128.04709,14.15,1012.5223,67.86455,140.0,505.8564,47.0,8.3,0.0,0.0, +2024-10-23 00:00:00,4.1403503,132.55292,16.5,1012.6908,58.761475,373.0,738.545,76.0,8.4,0.0,0.0, +2024-10-23 01:00:00,3.905125,140.19447,19.25,1012.9689,50.098133,602.0,852.4249,91.0,8.6,0.0,0.0, +2024-10-23 02:00:00,3.8160844,148.39255,21.65,1012.5414,43.20271,799.0,915.5507,101.0,8.6,0.0,0.0, +2024-10-23 03:00:00,3.8078866,166.32867,23.5,1011.79956,38.2225,944.0,951.35474,107.0,8.45,0.0,0.0, +2024-10-23 04:00:00,5.531727,192.5288,23.65,1010.9111,43.761974,1023.0,968.5055,109.0,10.6,0.0,0.0, +2024-10-23 05:00:00,7.543209,194.58896,22.5,1010.3831,55.683784,1029.0,968.6128,109.0,13.2,0.0,0.0, +2024-10-23 06:00:00,8.574672,193.14487,22.1,1009.7769,55.220924,962.0,952.4694,107.0,12.7,0.0,0.0, +2024-10-23 07:00:00,8.533024,185.04236,21.65,1009.2683,53.146725,829.0,920.5233,101.0,11.7,0.0,0.0, +2024-10-23 08:00:00,8.150153,180.3515,21.55,1008.96796,54.90122,643.0,863.87067,93.0,12.1,0.0,0.0, +2024-10-23 09:00:00,7.91012,177.10149,20.7,1008.7455,58.607487,420.0,765.2038,79.0,12.3,0.0,0.0, +2024-10-23 10:00:00,7.0405965,168.5305,19.2,1009.19867,63.891827,185.0,563.31305,55.0,12.2,0.0,0.0, +2024-10-23 11:00:00,6.585021,166.3858,18.05,1009.56244,71.882996,17.0,97.571785,9.0,12.9,0.0,0.0, +2024-10-23 12:00:00,6.3097143,160.55988,17.55,1009.84564,72.97779,0.0,0.0,0.0,12.65,0.0,0.0, +2024-10-23 13:00:00,5.574271,156.19405,17.0,1010.42456,78.32614,0.0,0.0,0.0,13.2,0.0,0.0, +2024-10-23 14:00:00,5.0990195,154.44008,16.65,1009.9186,82.1986,0.0,0.0,0.0,13.6,0.0,0.0, +2024-10-23 15:00:00,4.484696,149.14587,16.15,1009.7056,83.214745,0.0,0.0,0.0,13.3,0.0,0.0, +2024-10-23 16:00:00,3.7802117,142.52374,15.45,1009.08997,79.13205,0.0,0.0,0.0,11.85,0.0,0.0, +2024-10-23 17:00:00,3.2882366,134.38402,14.75,1008.4745,72.71561,0.0,0.0,0.0,9.9,0.0,0.0, +2024-10-23 18:00:00,2.9364095,132.92996,14.2,1007.7643,67.6452,0.0,0.0,0.0,8.3,0.0,0.0, +2024-10-23 19:00:00,2.865746,132.8789,14.2,1007.4668,61.486206,0.0,0.0,0.0,6.9,0.0,0.0, +2024-10-23 20:00:00,2.8111386,128.50069,14.25,1007.4684,54.690174,0.0,0.0,0.0,5.25,0.0,0.0, +2024-10-23 21:00:00,2.6911893,125.16652,14.2,1007.4668,49.753963,0.0,0.0,0.0,3.85,0.0,0.0, +2024-10-23 22:00:00,2.6925824,121.328636,14.5,1007.57477,46.613647,6.0,33.457123,4.0,3.2,0.0,0.0, +2024-10-23 23:00:00,3.2718496,128.79657,17.45,1007.85913,41.13591,145.0,523.92725,47.0,4.1,0.0,0.0, +2024-10-24 00:00:00,2.2808988,153.9967,21.05,1007.6643,35.62318,381.0,757.9509,74.0,5.25,0.0,0.0, +2024-10-24 01:00:00,2.5811818,134.21527,24.95,1007.27716,30.778225,612.0,868.6919,89.0,6.55,0.0,0.0, +2024-10-24 02:00:00,2.1319005,129.2894,28.15,1006.6697,25.487745,809.0,929.8028,98.0,6.55,0.0,0.0, +2024-10-24 03:00:00,2.4829419,205.01686,29.45,1006.20844,30.474285,954.0,962.76184,105.0,10.3,0.0,0.0, +2024-10-24 04:00:00,5.123719,208.56573,28.15,1005.57855,44.710785,1031.0,977.197,107.0,15.0,0.0,0.0, +2024-10-24 05:00:00,6.7542577,205.42683,26.85,1005.14667,48.400677,1036.0,976.3332,107.0,15.05,0.0,0.0, +2024-10-24 06:00:00,6.9737005,197.52565,25.75,1004.9183,45.666985,969.0,960.7262,105.0,13.15,0.0,0.0, +2024-10-24 07:00:00,6.5115285,190.6196,25.35,1004.6097,45.70706,836.0,928.666,100.0,12.8,0.0,0.0, +2024-10-24 08:00:00,6.8359346,185.8773,24.5,1004.38837,50.82576,651.0,877.11646,91.0,13.65,0.0,0.0, +2024-10-24 09:00:00,6.1842546,186.03316,23.75,1004.4668,52.82105,425.0,775.249,78.0,13.55,0.0,0.0, +2024-10-24 10:00:00,6.201814,178.61412,21.45,1004.7003,66.49488,189.0,575.1539,55.0,14.95,0.0,0.0, +2024-10-24 11:00:00,6.307535,172.25539,19.7,1005.3454,78.21973,18.0,108.27118,9.0,15.8,0.0,0.0, +2024-10-24 12:00:00,6.2229414,171.21892,19.05,1005.82263,82.23167,0.0,0.0,0.0,15.95,0.0,0.0, +2024-10-24 13:00:00,5.707013,168.887,18.45,1006.30145,81.36999,0.0,0.0,0.0,15.2,0.0,0.0, +2024-10-24 14:00:00,5.148058,168.79924,17.95,1006.18774,88.37754,0.0,0.0,0.0,16.0,0.0,0.0, +2024-10-24 15:00:00,5.3851643,164.93146,17.55,1006.17633,92.38275,0.0,0.0,0.0,16.3,0.0,0.0, +2024-10-24 16:00:00,5.076662,162.81421,17.25,1005.6717,90.61171,0.0,0.0,0.0,15.7,0.0,0.0, +2024-10-24 17:00:00,4.401136,158.68202,16.85,1005.06525,87.15422,0.0,0.0,0.0,14.7,0.0,0.0, +2024-10-24 18:00:00,4.3324356,161.14674,16.3,1004.4543,86.260666,0.0,0.0,0.0,14.0,0.0,0.0, +2024-10-24 19:00:00,3.9601135,155.37645,15.9,1004.24426,85.9411,0.0,0.0,0.0,13.55,0.0,0.0, +2024-10-24 20:00:00,4.0718546,155.32315,15.55,1004.43256,84.23874,0.0,0.0,0.0,12.9,0.0,0.0, +2024-10-24 21:00:00,3.9462008,157.6593,15.25,1004.5229,83.92942,0.0,0.0,0.0,12.55,0.0,0.0, +2024-10-24 22:00:00,3.8939056,155.73871,15.4,1005.0231,82.04156,7.0,32.57968,5.0,12.35,0.0,0.0, +2024-10-24 23:00:00,4.4813504,169.06622,17.6,1005.58264,74.1904,145.0,510.00818,48.0,12.95,0.0,0.0, +2024-10-25 00:00:00,6.4095635,176.86983,19.8,1005.8441,72.43499,372.0,718.3607,79.0,14.7,0.0,0.0, +2024-10-25 01:00:00,7.1449285,186.42865,21.45,1005.9897,70.671364,605.0,851.83356,90.0,15.9,0.0,0.0, +2024-10-25 02:00:00,7.595393,189.0902,22.0,1006.2035,69.43481,795.0,902.32104,103.0,16.15,0.0,0.0, +2024-10-25 03:00:00,8.18917,192.33908,22.05,1006.4032,69.003105,913.0,862.1663,151.0,16.1,0.0,0.0, +2024-10-25 04:00:00,8.100771,194.2936,22.0,1006.3027,67.036964,992.0,888.7945,150.0,15.6,0.0,0.0, +2024-10-25 05:00:00,8.45488,195.43349,21.9,1006.39905,65.95033,1009.0,906.434,145.0,15.25,0.0,0.0, +2024-10-25 06:00:00,8.592002,196.22026,21.65,1006.4913,65.05471,948.0,906.82806,131.0,14.8,0.0,0.0, +2024-10-25 07:00:00,9.095604,194.64742,21.15,1006.67535,66.21853,828.0,904.0591,110.0,14.6,0.0,0.0, +2024-10-25 08:00:00,9.12921,191.37144,20.5,1006.8554,69.14298,633.0,818.44885,109.0,14.65,0.0,0.0, +2024-10-25 09:00:00,8.869329,189.40915,19.7,1007.3289,71.48765,406.0,685.10364,98.0,14.4,0.0,0.0, +2024-10-25 10:00:00,8.471717,187.46048,18.9,1007.8017,72.50779,174.0,463.43976,65.0,13.85,0.0,0.0, +2024-10-25 11:00:00,7.6604505,182.99307,18.2,1008.27765,74.051674,17.0,71.204765,11.0,13.5,0.0,0.0, +2024-10-25 12:00:00,7.2001734,179.60213,17.9,1008.7649,74.727356,0.0,0.0,0.0,13.35,0.0,0.0, +2024-10-25 13:00:00,7.7286806,171.81757,17.7,1009.8498,72.29091,0.0,0.0,0.0,12.65,0.0,0.0, +2024-10-25 14:00:00,7.5116577,168.09172,17.95,1009.6587,70.46581,0.0,0.0,0.0,12.5,0.0,0.0, +2024-10-25 15:00:00,6.9889197,162.08347,17.9,1009.8558,69.30869,0.0,0.0,0.0,12.2,0.0,0.0, +2024-10-25 16:00:00,6.407808,157.0362,17.6,1009.45026,70.863266,0.0,0.0,0.0,12.25,0.0,0.0, +2024-10-25 17:00:00,6.0854335,151.53992,17.3,1008.94586,71.5092,0.0,0.0,0.0,12.1,0.0,0.0, +2024-10-25 18:00:00,5.453898,148.49579,16.85,1008.8336,72.85268,0.0,0.0,0.0,11.95,0.0,0.0, +2024-10-25 19:00:00,5.5758405,147.45001,16.5,1008.9225,74.982285,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-25 20:00:00,6.109419,151.12767,16.35,1009.21576,77.71798,0.0,0.0,0.0,12.45,0.0,0.0, +2024-10-25 21:00:00,6.328507,148.5705,15.75,1009.8923,80.75131,0.0,0.0,0.0,12.45,0.0,0.0, +2024-10-25 22:00:00,6.4070277,145.81383,15.4,1010.57623,80.70424,7.0,31.762672,5.0,12.1,0.0,0.0, +2024-10-25 23:00:00,6.6441703,151.69934,16.8,1011.1129,73.08412,139.0,460.48465,50.0,11.95,0.0,0.0, +2024-10-26 00:00:00,6.7230945,157.249,18.45,1011.55756,64.786766,371.0,701.3426,83.0,11.7,0.0,0.0, +2024-10-26 01:00:00,6.820008,163.82373,20.25,1011.90656,49.19601,593.0,805.555,104.0,9.25,0.0,0.0, +2024-10-26 02:00:00,6.604923,172.60608,21.6,1011.5479,46.981388,810.0,920.582,102.0,9.8,0.0,0.0, +2024-10-26 03:00:00,7.2584434,182.7638,22.15,1011.0675,49.21552,956.0,958.51794,107.0,11.0,0.0,0.0, +2024-10-26 04:00:00,8.492644,190.51599,21.5,1010.5536,51.038418,1031.0,968.2987,112.0,10.95,0.0,0.0, +2024-10-26 05:00:00,8.483661,190.18398,21.5,1010.256,53.63665,1038.0,969.8264,112.0,11.7,0.0,0.0, +2024-10-26 06:00:00,8.663861,189.29916,21.6,1009.6634,55.09474,972.0,956.19586,109.0,12.2,0.0,0.0, +2024-10-26 07:00:00,8.980535,187.67888,21.2,1009.25555,57.208195,840.0,926.06726,103.0,12.4,0.0,0.0, +2024-10-26 08:00:00,9.058836,182.53072,20.6,1009.2385,58.199257,653.0,869.1489,95.0,12.1,0.0,0.0, +2024-10-26 09:00:00,9.151229,179.06084,19.45,1009.4043,62.2878,427.0,766.26746,81.0,12.05,0.0,0.0, +2024-10-26 10:00:00,8.474963,175.60138,18.7,1009.58105,65.70054,191.0,568.59753,56.0,12.15,0.0,0.0, +2024-10-26 11:00:00,8.372574,172.45067,17.7,1010.1473,71.349045,20.0,105.37412,11.0,12.45,0.0,0.0, +2024-10-26 12:00:00,8.374366,168.28755,17.4,1010.5354,74.88748,0.0,0.0,0.0,12.9,0.0,0.0, +2024-10-26 13:00:00,7.61725,164.77782,17.05,1011.02106,77.065575,0.0,0.0,0.0,13.0,0.0,0.0, +2024-10-26 14:00:00,7.45,159.98395,16.8,1010.9147,76.02384,0.0,0.0,0.0,12.55,0.0,0.0, +2024-10-26 15:00:00,6.8660393,154.55464,16.25,1010.7993,71.076614,0.0,0.0,0.0,11.0,0.0,0.0, +2024-10-26 16:00:00,6.3089223,151.60707,15.65,1010.4844,67.49078,0.0,0.0,0.0,9.65,0.0,0.0, +2024-10-26 17:00:00,5.8917313,149.95366,15.05,1009.87164,67.82134,0.0,0.0,0.0,9.15,0.0,0.0, +2024-10-26 18:00:00,5.3535037,147.20047,14.6,1009.56085,68.649315,0.0,0.0,0.0,8.9,0.0,0.0, +2024-10-26 19:00:00,4.8130035,145.15419,14.1,1009.54626,69.71755,0.0,0.0,0.0,8.65,0.0,0.0, +2024-10-26 20:00:00,4.25,143.13002,13.6,1009.43225,70.33062,0.0,0.0,0.0,8.3,0.0,0.0, +2024-10-26 21:00:00,3.905125,140.19447,13.25,1009.7192,69.78594,0.0,0.0,0.0,7.85,0.0,0.0, +2024-10-26 22:00:00,3.828838,139.23648,13.45,1010.22107,65.66923,8.0,46.50293,5.0,7.15,0.0,0.0, +2024-10-26 23:00:00,3.8832977,145.49142,16.05,1010.89276,54.968765,154.0,534.9262,49.0,7.0,0.0,0.0, +2024-10-27 00:00:00,3.8967936,146.51381,19.55,1010.79565,42.462944,391.0,759.668,77.0,6.45,0.0,0.0, +2024-10-27 01:00:00,4.2573466,139.76372,23.1,1010.499,34.159393,623.0,871.3201,92.0,6.45,0.0,0.0, +2024-10-27 02:00:00,4.103657,136.97493,26.4,1010.0941,27.190992,820.0,933.6353,100.0,6.0,0.0,0.0, +2024-10-27 03:00:00,3.77955,152.41806,28.15,1009.44727,24.53976,963.0,965.5216,106.0,6.0,0.0,0.0, +2024-10-27 04:00:00,4.8438106,187.7118,28.45,1008.7608,28.41787,1040.0,979.20514,109.0,8.4,0.0,0.0, +2024-10-27 05:00:00,6.5134478,192.86275,27.25,1008.13336,40.72277,1046.0,979.7243,109.0,12.75,0.0,0.0, +2024-10-27 06:00:00,8.029477,195.1613,26.35,1007.5138,45.97952,976.0,962.28754,106.0,13.8,0.0,0.0, +2024-10-27 07:00:00,9.447884,193.15372,25.0,1006.7825,45.46191,843.0,930.4517,101.0,12.4,0.0,0.0, +2024-10-27 08:00:00,9.056766,182.2147,23.95,1006.85284,47.778896,655.0,874.5332,92.0,12.2,0.0,0.0, +2024-10-27 09:00:00,8.438008,174.55975,23.8,1007.0468,49.332596,430.0,773.95593,79.0,12.55,0.0,0.0, +2024-10-27 10:00:00,7.488825,171.16667,21.7,1007.5835,57.330975,194.0,575.802,56.0,12.9,0.0,0.0, +2024-10-27 11:00:00,8.285228,161.34627,20.35,1008.33905,60.08314,21.0,115.52261,11.0,12.35,0.0,0.0, +2024-10-27 12:00:00,8.022,163.71115,19.95,1008.72424,64.05729,0.0,0.0,0.0,12.95,0.0,0.0, +2024-10-27 13:00:00,6.150203,152.39342,18.95,1009.29083,75.63251,0.0,0.0,0.0,14.55,0.0,0.0, +2024-10-27 14:00:00,4.9648767,145.66972,18.7,1008.986,73.897415,0.0,0.0,0.0,13.95,0.0,0.0, +2024-10-27 15:00:00,3.9604292,133.97707,18.45,1008.6816,65.64708,0.0,0.0,0.0,11.9,0.0,0.0, +2024-10-27 16:00:00,3.6173193,130.5153,18.55,1008.18854,50.764156,0.0,0.0,0.0,8.15,0.0,0.0, +2024-10-27 17:00:00,3.7259226,130.10085,18.8,1007.89795,34.117317,0.0,0.0,0.0,2.65,0.0,0.0, +2024-10-27 18:00:00,3.8425252,122.24244,19.0,1007.6062,26.671545,0.0,0.0,0.0,-0.6,0.0,0.0, +2024-10-27 19:00:00,3.782195,114.19321,18.9,1007.50415,26.161634,0.0,0.0,0.0,-0.95,0.0,0.0, +2024-10-27 20:00:00,4.040421,102.144264,18.65,1007.5964,25.996521,0.0,0.0,0.0,-1.25,0.0,0.0, +2024-10-27 21:00:00,4.90408,92.33726,18.7,1007.8951,25.25827,0.0,0.0,0.0,-1.6,0.0,0.0, +2024-10-27 22:00:00,5.867282,85.60138,19.05,1008.5003,24.531239,9.0,45.43808,6.0,-1.7,0.0,0.0, +2024-10-27 23:00:00,7.008031,82.62156,21.35,1009.1606,22.400852,160.0,552.1172,50.0,-1.0,0.0,0.0, +2024-10-28 00:00:00,6.930548,84.618546,24.5,1009.34784,19.62184,400.0,774.1069,78.0,-0.2,0.0,0.0, +2024-10-28 01:00:00,6.8311787,81.15827,27.5,1009.0327,21.184072,630.0,879.47034,92.0,3.35,0.0,0.0, +2024-10-28 02:00:00,5.947479,82.75559,30.25,1008.80884,19.243965,827.0,938.943,101.0,4.25,0.0,0.0, +2024-10-28 03:00:00,5.100245,89.43831,31.85,1008.2557,15.692143,971.0,971.4404,107.0,2.65,0.0,0.0, +2024-10-28 04:00:00,3.8327537,105.12406,33.0,1007.19476,14.344523,1049.0,986.9792,109.0,2.3,0.0,0.0, +2024-10-28 05:00:00,3.3455193,170.53775,32.2,1006.4795,15.995173,1055.0,987.5464,109.0,3.2,0.0,0.0, +2024-10-28 06:00:00,6.4903774,201.22772,30.05,1006.02576,31.567715,989.0,973.9129,107.0,11.35,0.0,0.0, +2024-10-28 07:00:00,7.3691926,199.41856,29.2,1005.4082,33.593643,854.0,942.3498,101.0,11.55,0.0,0.0, +2024-10-28 08:00:00,8.414571,196.9276,27.9,1005.4723,36.108498,666.0,887.6435,93.0,11.5,0.0,0.0, +2024-10-28 09:00:00,8.414867,183.40637,25.85,1006.0123,39.933094,439.0,788.15894,80.0,11.2,0.0,0.0, +2024-10-28 10:00:00,6.7175145,171.86998,24.75,1006.5771,44.067104,198.0,586.98065,56.0,11.7,0.0,0.0, +2024-10-28 11:00:00,8.000625,161.79143,23.0,1007.42145,42.143814,22.0,125.394844,11.0,9.45,0.0,0.0, +2024-10-28 12:00:00,8.048758,160.77705,22.3,1007.69946,45.77715,0.0,0.0,0.0,10.05,0.0,0.0, +2024-10-28 13:00:00,7.1317954,162.45418,21.25,1008.5627,50.46568,0.0,0.0,0.0,10.55,0.0,0.0, +2024-10-28 14:00:00,6.9420824,160.65144,20.85,1008.25397,54.003403,0.0,0.0,0.0,11.2,0.0,0.0, +2024-10-28 15:00:00,6.1269894,153.85323,20.25,1007.93945,59.274582,0.0,0.0,0.0,12.05,0.0,0.0, +2024-10-28 16:00:00,5.055937,151.66096,19.55,1007.42365,62.928066,0.0,0.0,0.0,12.3,0.0,0.0, +2024-10-28 17:00:00,3.6200829,147.40742,18.85,1007.10626,63.394745,0.0,0.0,0.0,11.75,0.0,0.0, +2024-10-28 18:00:00,3.1800156,143.31018,18.25,1006.69214,60.990242,0.0,0.0,0.0,10.6,0.0,0.0, +2024-10-28 19:00:00,2.8744566,139.93929,17.8,1006.4809,56.742664,0.0,0.0,0.0,9.1,0.0,0.0, +2024-10-28 20:00:00,2.4397748,135.83023,17.35,1006.46796,51.13627,0.0,0.0,0.0,7.15,0.0,0.0, +2024-10-28 21:00:00,2.337734,138.46832,17.05,1006.65765,45.557537,0.0,0.0,0.0,5.2,0.0,0.0, +2024-10-28 22:00:00,2.2610838,125.095894,17.5,1006.9682,40.719604,9.0,59.26163,5.0,4.0,0.0,0.0, +2024-10-28 23:00:00,2.6953664,139.51407,21.7,1007.2859,34.831627,157.0,529.43646,50.0,5.5,0.0,0.0, +2024-10-29 00:00:00,2.1708295,172.05663,25.5,1007.29205,32.779423,389.0,745.50275,77.0,7.95,0.0,0.0, +2024-10-29 01:00:00,2.5675864,186.70975,27.5,1007.3464,36.840485,619.0,859.9782,91.0,11.45,0.0,0.0, +2024-10-29 02:00:00,3.8078866,203.19861,29.15,1007.0931,39.937664,813.0,919.7999,100.0,14.15,0.0,0.0, +2024-10-29 03:00:00,5.415025,208.69481,28.9,1006.888,43.498173,953.0,950.4743,106.0,15.25,0.0,0.0, +2024-10-29 04:00:00,6.4189177,205.36736,28.05,1006.5677,42.986485,1030.0,965.4336,109.0,14.3,0.0,0.0, +2024-10-29 05:00:00,6.4724417,200.81514,28.1,1006.4697,40.69331,1034.0,962.0354,111.0,13.5,0.0,0.0, +2024-10-29 06:00:00,6.642665,197.0711,28.1,1006.27136,43.279045,975.0,956.8712,107.0,14.45,0.0,0.0, +2024-10-29 07:00:00,7.131795,192.96451,27.15,1006.0474,47.402523,842.0,925.4965,101.0,15.0,0.0,0.0, +2024-10-29 08:00:00,7.021574,184.4925,26.0,1006.314,50.72619,654.0,866.70514,93.0,15.0,0.0,0.0, +2024-10-29 09:00:00,6.609274,176.9645,24.9,1006.6805,54.677467,429.0,765.075,79.0,15.15,0.0,0.0, +2024-10-29 10:00:00,6.4001956,180.4476,23.1,1007.3251,60.725544,195.0,569.2608,56.0,15.1,0.0,0.0, +2024-10-29 11:00:00,6.0133185,176.186,21.75,1008.2794,66.985695,22.0,123.7528,11.0,15.35,0.0,0.0, +2024-10-29 12:00:00,6.4878736,166.17792,21.1,1008.9553,68.59593,0.0,0.0,0.0,15.1,0.0,0.0, +2024-10-29 13:00:00,5.632051,173.8846,19.9,1009.814,75.543846,0.0,0.0,0.0,15.45,0.0,0.0, +2024-10-29 14:00:00,5.873883,168.21184,19.35,1009.9965,81.22615,0.0,0.0,0.0,16.05,0.0,0.0, +2024-10-29 15:00:00,5.5915112,167.08218,18.95,1010.0842,85.97073,0.0,0.0,0.0,16.55,0.0,0.0, +2024-10-29 16:00:00,5.4692326,165.70964,18.6,1009.3798,90.70397,0.0,0.0,0.0,17.05,0.0,0.0, +2024-10-29 17:00:00,5.3284616,161.39494,18.3,1008.97473,91.84119,0.0,0.0,0.0,16.95,0.0,0.0, +2024-10-29 18:00:00,4.9340653,160.46326,18.15,1008.5736,91.83216,0.0,0.0,0.0,16.8,0.0,0.0, +2024-10-29 19:00:00,4.7594643,160.99393,17.85,1008.36664,92.693565,0.0,0.0,0.0,16.65,0.0,0.0, +2024-10-29 20:00:00,4.9206195,154.73694,17.7,1008.36224,93.27651,0.0,0.0,0.0,16.6,0.0,0.0, +2024-10-29 21:00:00,4.7185802,154.24957,17.5,1008.5549,93.56372,0.0,0.0,0.0,16.45,0.0,0.0, +2024-10-29 22:00:00,4.1382365,151.88689,17.5,1008.75323,92.97018,10.0,58.026623,6.0,16.35,0.0,0.0, +2024-10-29 23:00:00,3.8910153,154.09355,19.45,1009.0076,80.208885,155.0,512.46655,50.0,15.95,0.0,0.0, +2024-10-30 00:00:00,3.846102,164.15686,22.15,1009.08386,63.71213,385.0,722.13055,81.0,14.95,0.0,0.0, +2024-10-30 01:00:00,5.315073,184.31595,23.95,1009.3325,62.495197,605.0,822.88226,98.0,16.35,0.0,0.0, +2024-10-30 02:00:00,6.0466933,187.12492,25.1,1008.9676,59.84195,803.0,903.413,101.0,16.75,0.0,0.0, +2024-10-30 03:00:00,6.4536815,192.5288,25.85,1008.4921,58.889336,941.0,934.13855,107.0,17.2,0.0,0.0, +2024-10-30 04:00:00,7.1022882,196.7766,25.95,1008.1971,59.66172,1016.0,947.1537,111.0,17.5,0.0,0.0, +2024-10-30 05:00:00,7.385459,194.50668,25.8,1007.59784,58.69154,1021.0,946.01324,112.0,17.1,0.0,0.0, +2024-10-30 06:00:00,7.187663,191.23172,26.2,1007.31134,57.137333,958.0,928.91223,114.0,17.05,0.0,0.0, +2024-10-30 07:00:00,6.9226074,188.30559,25.85,1006.80585,58.517895,820.0,852.63715,136.0,17.1,0.0,0.0, +2024-10-30 08:00:00,6.4778466,185.31445,25.55,1006.7976,58.26154,640.0,808.9114,115.0,16.75,0.0,0.0, +2024-10-30 09:00:00,6.0101995,183.33841,24.35,1006.8637,62.386032,431.0,759.5994,82.0,16.7,0.0,0.0, +2024-10-30 10:00:00,5.3502336,180.53545,22.85,1007.1199,67.21043,197.0,559.9621,59.0,16.45,0.0,0.0, +2024-10-30 11:00:00,6.0848174,173.86787,21.0,1007.66315,73.34834,23.0,99.93759,14.0,16.05,0.0,0.0, +2024-10-30 12:00:00,5.894277,169.73868,20.35,1007.94226,73.94253,0.0,0.0,0.0,15.55,0.0,0.0, +2024-10-30 13:00:00,6.0728908,162.75845,19.75,1008.5202,74.31616,0.0,0.0,0.0,15.05,0.0,0.0, +2024-10-30 14:00:00,5.7395554,161.7228,19.35,1008.5089,78.16805,0.0,0.0,0.0,15.45,0.0,0.0, +2024-10-30 15:00:00,5.1159067,158.19853,19.1,1008.50165,77.6306,0.0,0.0,0.0,15.1,0.0,0.0, +2024-10-30 16:00:00,4.25,154.94241,18.8,1007.9972,73.914665,0.0,0.0,0.0,14.05,0.0,0.0, +2024-10-30 17:00:00,3.510698,153.79994,18.45,1007.39233,70.33092,0.0,0.0,0.0,12.95,0.0,0.0, +2024-10-30 18:00:00,2.8900692,149.88635,18.05,1007.0831,67.09399,0.0,0.0,0.0,11.85,0.0,0.0, +2024-10-30 19:00:00,3.0103986,147.89377,17.8,1006.97675,63.369244,0.0,0.0,0.0,10.75,0.0,0.0, +2024-10-30 20:00:00,3.1100645,143.49847,17.7,1006.8747,59.252155,0.0,0.0,0.0,9.65,0.0,0.0, +2024-10-30 21:00:00,3.3503733,127.72506,18.1,1006.4897,53.29011,0.0,0.0,0.0,8.45,0.0,0.0, +2024-10-30 22:00:00,2.505993,118.61037,19.15,1006.5197,49.733196,11.0,56.877144,7.0,8.4,0.0,0.0, +2024-10-30 23:00:00,3.8013155,116.56499,23.5,1006.6419,37.452812,160.0,529.87054,50.0,8.15,0.0,0.0, +2024-10-31 00:00:00,4.539824,97.59455,27.85,1006.4631,29.829723,394.0,746.41174,78.0,8.6,0.0,0.0, +2024-10-31 01:00:00,3.335416,102.99462,30.0,1006.02454,32.2927,620.0,854.088,92.0,11.65,0.0,0.0, +2024-10-31 02:00:00,2.6239283,120.96369,32.35,1005.68964,28.33981,812.0,914.15326,100.0,11.7,0.0,0.0, +2024-10-31 03:00:00,2.030394,170.07382,33.85,1004.9347,29.792135,952.0,944.7661,107.0,13.75,0.0,0.0, +2024-10-31 04:00:00,3.782195,204.1932,33.05,1004.3189,39.864082,1026.0,958.246,109.0,17.6,0.0,0.0, +2024-10-31 05:00:00,5.009241,207.33228,32.05,1003.79663,45.193165,1031.0,958.14044,109.0,18.7,0.0,0.0, +2024-10-31 06:00:00,6.2769423,202.47948,30.85,1003.3684,45.87171,967.0,945.0295,107.0,17.85,0.0,0.0, +2024-10-31 07:00:00,6.0270224,193.92099,30.05,1002.85126,42.70874,836.0,914.44745,101.0,16.0,0.0,0.0, +2024-10-31 08:00:00,5.6055775,182.55609,29.45,1002.7364,43.370007,654.0,862.0768,93.0,15.7,0.0,0.0, +2024-10-31 09:00:00,6.559345,176.94136,28.65,1002.5165,46.600513,430.0,756.3345,81.0,16.1,0.0,0.0, +2024-10-31 10:00:00,6.5897646,168.17854,26.95,1002.27264,48.271923,195.0,546.7942,59.0,15.1,0.0,0.0, +2024-10-31 11:00:00,7.2349844,156.80139,25.9,1002.34344,46.76132,24.0,120.572975,13.0,13.65,0.0,0.0, +2024-10-31 12:00:00,5.842303,150.80261,25.6,1002.6329,41.47925,0.0,0.0,0.0,11.55,0.0,0.0, +2024-10-31 13:00:00,4.237924,160.70985,23.9,1004.0741,42.965298,0.0,0.0,0.0,10.55,0.0,0.0, +2024-10-31 14:00:00,3.0923293,202.8337,22.2,1004.42395,54.527145,0.0,0.0,0.0,12.6,0.0,0.0, +2024-10-31 15:00:00,3.206244,176.42374,21.2,1004.1974,63.50267,0.0,0.0,0.0,14.0,0.0,0.0, +2024-10-31 16:00:00,1.9780041,159.27437,19.95,1003.76544,66.39706,0.0,0.0,0.0,13.5,0.0,0.0, +2024-10-31 17:00:00,2.4622145,150.83249,18.85,1003.13934,68.36919,0.0,0.0,0.0,12.9,0.0,0.0, +2024-10-31 18:00:00,2.8504386,164.74483,18.0,1002.4208,70.47537,0.0,0.0,0.0,12.55,0.0,0.0, +2024-10-31 19:00:00,2.4964974,237.26477,17.4,1002.8002,84.44457,0.0,0.0,0.0,14.75,0.0,0.0, +2024-10-31 20:00:00,2.6907248,221.98714,16.95,1002.68805,92.0538,0.0,0.0,0.0,15.65,0.0,0.0, +2024-10-31 21:00:00,2.2896507,211.60745,17.6,1002.70667,91.21577,0.0,0.0,0.0,16.15,0.0,0.0, +2024-10-31 22:00:00,2.1023796,205.34613,18.2,1002.8232,90.96518,11.0,55.806744,7.0,16.7,0.0,0.0, +2024-10-31 23:00:00,1.9811614,222.95459,20.85,1003.29504,81.41905,164.0,532.7814,52.0,17.55,0.0,0.0, +2024-11-01 00:00:00,3.7326264,230.9806,22.2,1004.02716,73.78868,398.0,744.73584,81.0,17.3,0.0,0.0, +2024-11-01 01:00:00,4.0401115,216.44453,22.75,1004.439,72.7279,615.0,823.9331,104.0,17.6,0.0,0.0, +2024-11-01 02:00:00,4.424082,214.40852,23.75,1004.4668,65.29322,816.0,907.00024,108.0,16.85,0.0,0.0, +2024-11-01 03:00:00,4.8826222,214.9921,24.3,1004.6803,61.97978,963.0,954.3125,108.0,16.55,0.0,0.0, +2024-11-01 04:00:00,4.5918407,215.24765,24.6,1004.4901,59.34582,1043.0,968.31866,115.0,16.15,0.0,0.0, +2024-11-01 05:00:00,4.8417454,215.33142,24.8,1004.2974,58.6408,1051.0,964.05054,122.0,16.15,0.0,0.0, +2024-11-01 06:00:00,4.90408,219.20718,24.2,1004.0823,62.749954,992.0,963.3233,114.0,16.65,0.0,0.0, +2024-11-01 07:00:00,4.360046,216.60716,23.8,1003.87286,62.262905,851.0,900.2946,126.0,16.15,0.0,0.0, +2024-11-01 08:00:00,4.2793107,210.15997,23.0,1003.7516,66.39112,668.0,865.9263,103.0,16.4,0.0,0.0, +2024-11-01 09:00:00,4.047839,205.61543,22.0,1003.9223,74.9298,444.0,772.5158,86.0,17.35,0.0,0.0, +2024-11-01 10:00:00,3.9373214,197.74477,20.8,1004.48364,80.390854,206.0,577.671,61.0,17.3,0.0,0.0, +2024-11-01 11:00:00,3.5784075,187.22423,19.55,1004.9443,89.070465,25.0,129.85725,13.0,17.7,0.0,0.0, +2024-11-01 12:00:00,3.1503968,180.90936,19.1,1005.62555,91.59997,0.0,0.0,0.0,17.7,0.0,0.0, +2024-11-01 13:00:00,2.34094,160.0168,18.4,1005.9032,94.19963,0.0,0.0,0.0,17.45,0.0,0.0, +2024-11-01 14:00:00,2.376973,165.37909,18.2,1006.49255,93.89362,0.0,0.0,0.0,17.2,0.0,0.0, +2024-11-01 15:00:00,2.0248456,159.77505,17.7,1006.37885,94.468544,0.0,0.0,0.0,16.8,0.0,0.0, +2024-11-01 16:00:00,2.304886,167.4712,17.35,1006.3687,94.45408,0.0,0.0,0.0,16.45,0.0,0.0, +2024-11-01 17:00:00,2.419194,161.93944,17.45,1006.27246,93.85946,0.0,0.0,0.0,16.45,0.0,0.0, +2024-11-01 18:00:00,2.0808651,144.78232,17.2,1006.0671,93.848,0.0,0.0,0.0,16.2,0.0,0.0, +2024-11-01 19:00:00,2.0506098,135.0001,16.95,1005.7623,94.43744,0.0,0.0,0.0,16.05,0.0,0.0, +2024-11-01 20:00:00,1.9137659,123.2749,16.6,1005.4547,94.72536,0.0,0.0,0.0,15.75,0.0,0.0, +2024-11-01 21:00:00,1.9981241,121.701385,16.45,1005.6486,94.71942,0.0,0.0,0.0,15.6,0.0,0.0, +2024-11-01 22:00:00,2.4052026,136.68465,16.55,1006.1473,95.026855,11.0,41.1065,8.0,15.75,0.0,0.0, +2024-11-01 23:00:00,3.5514083,144.74356,18.4,1006.7958,85.096565,142.0,296.1261,79.0,15.85,0.0,0.0, +2024-11-02 00:00:00,3.5341196,154.8852,20.5,1006.9546,73.96816,368.0,584.30396,118.0,15.7,0.0,0.0, +2024-11-02 01:00:00,3.4889112,154.5367,23.55,1006.7426,55.584343,605.0,782.8299,118.0,14.15,0.0,0.0, +2024-11-02 02:00:00,4.004997,182.86235,25.5,1006.6969,48.984512,782.0,787.474,166.0,14.0,0.0,0.0, +2024-11-02 03:00:00,5.170348,198.61026,25.95,1006.3124,51.866814,940.0,902.6122,130.0,15.3,0.0,0.0, +2024-11-02 04:00:00,5.488625,203.06155,25.75,1005.9102,56.66703,1024.0,945.07666,117.0,16.5,0.0,0.0, +2024-11-02 05:00:00,6.015189,206.139,25.2,1005.89514,58.92265,1031.0,948.2261,116.0,16.6,0.0,0.0, +2024-11-02 06:00:00,6.25,200.60977,24.45,1005.57697,58.744987,969.0,941.0599,110.0,15.85,0.0,0.0, +2024-11-02 07:00:00,5.97704,199.04132,23.95,1005.1667,60.34026,842.0,914.7236,104.0,15.8,0.0,0.0, +2024-11-02 08:00:00,5.2509522,193.77162,23.7,1004.6639,60.28221,659.0,862.1228,95.0,15.55,0.0,0.0, +2024-11-02 09:00:00,5.8694124,188.8203,22.4,1004.6277,67.54842,437.0,764.9229,81.0,16.1,0.0,0.0, +2024-11-02 10:00:00,5.20024,179.44911,21.4,1004.59985,71.799,203.0,572.4439,58.0,16.1,0.0,0.0, +2024-11-02 11:00:00,4.119466,174.4279,20.3,1004.767,78.05908,26.0,138.90085,13.0,16.35,0.0,0.0, +2024-11-02 12:00:00,4.3341665,163.23737,19.55,1005.04346,84.14358,0.0,0.0,0.0,16.8,0.0,0.0, +2024-11-02 13:00:00,3.6235344,152.02061,18.75,1005.21906,84.59232,0.0,0.0,0.0,16.1,0.0,0.0, +2024-11-02 14:00:00,2.9090376,151.23245,18.05,1005.19885,88.10443,0.0,0.0,0.0,16.05,0.0,0.0, +2024-11-02 15:00:00,2.9904013,159.44388,17.65,1004.9892,91.802055,0.0,0.0,0.0,16.3,0.0,0.0, +2024-11-02 16:00:00,2.6277368,158.80588,17.45,1004.48737,93.56131,0.0,0.0,0.0,16.4,0.0,0.0, +2024-11-02 17:00:00,1.8200275,159.07542,17.1,1003.88226,94.14313,0.0,0.0,0.0,16.15,0.0,0.0, +2024-11-02 18:00:00,1.5660459,163.30067,16.6,1003.6697,94.42284,0.0,0.0,0.0,15.7,0.0,0.0, +2024-11-02 19:00:00,2.2549944,176.186,16.95,1003.9773,92.941414,0.0,0.0,0.0,15.8,0.0,0.0, +2024-11-02 20:00:00,2.245551,168.4399,16.95,1004.0765,92.0538,0.0,0.0,0.0,15.65,0.0,0.0, +2024-11-02 21:00:00,2.9832869,166.42955,16.85,1004.4703,91.45993,0.0,0.0,0.0,15.45,0.0,0.0, +2024-11-02 22:00:00,3.6769552,157.61983,16.85,1005.06525,92.63924,13.0,67.349945,8.0,15.65,0.0,0.0, +2024-11-02 23:00:00,3.6224992,153.78868,18.45,1005.70636,82.157326,167.0,525.13837,54.0,15.35,0.0,0.0, +2024-11-03 00:00:00,3.7232378,165.21722,20.55,1005.8653,67.1716,432.0,853.54584,65.0,14.25,0.0,0.0, +2024-11-03 01:00:00,4.8052053,167.98854,22.7,1006.4214,50.6834,627.0,852.6739,95.0,11.95,0.0,0.0, +2024-11-03 02:00:00,5.706356,188.05902,23.45,1006.34314,50.715057,819.0,912.19885,104.0,12.65,0.0,0.0, +2024-11-03 03:00:00,7.6902537,192.77124,22.9,1006.22845,53.46887,960.0,945.71826,110.0,12.95,0.0,0.0, +2024-11-03 04:00:00,8.178631,191.99687,22.85,1005.9296,52.416348,1033.0,958.3758,112.0,12.6,0.0,0.0, +2024-11-03 05:00:00,8.238022,192.26476,22.5,1005.6223,56.59853,1040.0,959.39594,113.0,13.45,0.0,0.0, +2024-11-03 06:00:00,8.021534,191.87024,22.15,1005.6125,58.3836,976.0,946.24225,111.0,13.6,0.0,0.0, +2024-11-03 07:00:00,7.7176747,191.9651,21.9,1005.4072,58.13356,846.0,915.51,106.0,13.3,0.0,0.0, +2024-11-03 08:00:00,7.842353,188.80162,21.2,1005.48676,62.075962,662.0,861.3977,97.0,13.65,0.0,0.0, +2024-11-03 09:00:00,7.7781744,188.13002,20.1,1005.7531,65.99782,440.0,763.81036,83.0,13.55,0.0,0.0, +2024-11-03 10:00:00,7.0897818,186.07236,18.95,1006.3156,70.426384,206.0,571.20886,60.0,13.45,0.0,0.0, +2024-11-03 11:00:00,6.157313,182.79265,18.5,1006.79865,71.26503,27.0,137.16284,14.0,13.2,0.0,0.0, +2024-11-03 12:00:00,5.9669924,175.67502,18.25,1007.18805,73.81968,0.0,0.0,0.0,13.5,0.0,0.0, +2024-11-03 13:00:00,6.0406957,173.34567,17.65,1007.46844,78.42223,0.0,0.0,0.0,13.85,0.0,0.0, +2024-11-03 14:00:00,5.8917317,173.17664,17.4,1007.4612,78.640594,0.0,0.0,0.0,13.65,0.0,0.0, +2024-11-03 15:00:00,5.5013633,172.16457,17.0,1007.25116,79.61285,0.0,0.0,0.0,13.45,0.0,0.0, +2024-11-03 16:00:00,5.178803,169.99208,16.7,1006.94507,80.61524,0.0,0.0,0.0,13.35,0.0,0.0, +2024-11-03 17:00:00,4.491102,168.4399,16.4,1006.9363,81.90001,0.0,0.0,0.0,13.3,0.0,0.0, +2024-11-03 18:00:00,4.3416586,165.32356,16.1,1006.53076,82.93787,0.0,0.0,0.0,13.2,0.0,0.0, +2024-11-03 19:00:00,4.011546,157.27023,16.0,1006.52795,81.58193,0.0,0.0,0.0,12.85,0.0,0.0, +2024-11-03 20:00:00,3.8425252,147.75757,15.35,1006.50903,81.4978,0.0,0.0,0.0,12.2,0.0,0.0, +2024-11-03 21:00:00,3.0070748,132.97864,14.85,1006.89105,78.78375,0.0,0.0,0.0,11.2,0.0,0.0, +2024-11-03 22:00:00,2.7730849,115.64096,14.7,1007.38245,75.680756,12.0,26.508461,10.0,10.45,0.0,0.0, +2024-11-03 23:00:00,3.0220027,128.95592,16.45,1007.5328,68.10863,164.0,491.91537,57.0,10.55,0.0,0.0, +2024-11-04 00:00:00,3.4644625,159.73422,18.5,1007.3936,65.22649,382.0,645.853,103.0,11.85,0.0,0.0, +2024-11-04 01:00:00,3.9360514,205.58847,20.4,1007.9435,60.888573,587.0,692.084,154.0,12.6,0.0,0.0, +2024-11-04 02:00:00,4.5301766,217.37589,20.9,1007.85864,58.848404,557.0,205.01447,396.0,12.55,0.0,0.0, +2024-11-04 03:00:00,4.82001,216.98885,21.7,1007.2859,55.483215,825.0,597.70526,287.0,12.4,0.0,0.0, +2024-11-04 04:00:00,4.954291,222.54593,21.95,1007.0946,53.575798,973.0,769.0444,233.0,12.1,0.0,0.0, +2024-11-04 05:00:00,5.0916595,224.20436,21.8,1006.8921,53.01044,865.0,473.40353,407.0,11.8,0.0,0.0, +2024-11-04 06:00:00,5.287958,220.01361,21.9,1006.7957,53.211365,914.0,730.7851,245.0,11.95,0.0,0.0, +2024-11-04 07:00:00,5.7412977,213.2749,21.4,1006.2859,53.788246,810.0,773.06244,184.0,11.65,0.0,0.0, +2024-11-04 08:00:00,5.4671745,219.80553,21.1,1006.6742,53.88905,671.0,862.2064,104.0,11.4,0.0,0.0, +2024-11-04 09:00:00,5.591288,218.09972,20.65,1006.7606,53.7732,440.0,730.7485,97.0,10.95,0.0,0.0, +2024-11-04 10:00:00,5.6588426,207.9235,19.6,1007.02856,58.147858,191.0,453.65903,74.0,11.15,0.0,0.0, +2024-11-04 11:00:00,5.1288395,209.81407,18.8,1007.60046,61.32174,29.0,145.88254,15.0,11.2,0.0,0.0, +2024-11-04 12:00:00,5.299528,206.32323,18.65,1007.8939,62.517498,0.0,0.0,0.0,11.35,0.0,0.0, +2024-11-04 13:00:00,4.7636647,205.48915,18.1,1008.67145,62.807995,0.0,0.0,0.0,10.9,0.0,0.0, +2024-11-04 14:00:00,4.7636647,205.48915,18.0,1008.5694,61.955387,0.0,0.0,0.0,10.6,0.0,0.0, +2024-11-04 15:00:00,4.1146083,205.94225,17.7,1008.26306,62.300396,0.0,0.0,0.0,10.4,0.0,0.0, +2024-11-04 16:00:00,4.118252,209.0545,17.65,1007.7659,63.546684,0.0,0.0,0.0,10.65,0.0,0.0, +2024-11-04 17:00:00,4.450281,207.42865,16.95,1007.5473,74.81182,0.0,0.0,0.0,12.45,0.0,0.0, +2024-11-04 18:00:00,3.3800888,209.21915,16.7,1007.4409,77.51704,0.0,0.0,0.0,12.75,0.0,0.0, +2024-11-04 19:00:00,3.8849065,211.84901,17.15,1007.4539,72.19073,0.0,0.0,0.0,12.1,0.0,0.0, +2024-11-04 20:00:00,2.8900692,210.11365,16.7,1007.34174,70.92655,0.0,0.0,0.0,11.4,0.0,0.0, +2024-11-04 21:00:00,3.9003205,216.13547,17.2,1007.7529,63.445644,0.0,0.0,0.0,10.2,0.0,0.0, +2024-11-04 22:00:00,4.4654226,214.04597,17.7,1008.36224,59.053707,7.0,0.0,7.0,9.6,0.0,0.0, +2024-11-04 23:00:00,4.9872336,205.53738,18.3,1009.07385,57.829056,90.0,122.866516,63.0,9.85,0.0,0.0, +2024-11-05 00:00:00,5.079862,208.8354,19.5,1009.4058,53.475487,304.0,394.09784,133.0,9.8,0.0,0.0, +2024-11-05 01:00:00,5.1224995,218.65984,21.2,1010.2474,45.014374,534.0,597.81903,159.0,8.8,0.0,0.0, +2024-11-05 02:00:00,5.6731825,214.95073,21.35,1010.2515,47.228622,640.0,484.29105,259.0,9.65,0.0,0.0, +2024-11-05 03:00:00,5.423329,214.86227,21.5,1010.1568,48.55176,670.0,292.89093,406.0,10.2,0.0,0.0, +2024-11-05 04:00:00,5.3333855,218.91148,21.6,1010.0602,48.741215,700.0,284.40714,426.0,10.35,0.0,0.0, +2024-11-05 05:00:00,5.129571,223.02507,22.3,1009.6831,46.548138,1006.0,856.8649,176.0,10.3,0.0,0.0, +2024-11-05 06:00:00,5.287958,220.01361,22.35,1009.0896,45.485737,971.0,911.9315,135.0,10.0,0.0,0.0, +2024-11-05 07:00:00,5.6579585,213.83054,22.0,1009.07983,47.72386,764.0,643.4728,242.0,10.4,0.0,0.0, +2024-11-05 08:00:00,5.8619537,208.53235,21.05,1008.9536,51.601646,409.0,175.94061,293.0,10.7,0.0,0.0, +2024-11-05 09:00:00,5.727128,204.77512,20.4,1008.93524,54.608593,252.0,144.26004,184.0,10.95,0.0,0.0, +2024-11-05 10:00:00,5.60803,201.99118,19.65,1009.1125,58.160072,177.0,415.04553,69.0,11.2,0.0,0.0, +2024-11-05 11:00:00,4.918587,197.14563,19.05,1009.3928,61.37981,22.0,82.33906,14.0,11.45,0.0,0.0, +2024-11-05 12:00:00,4.4322677,191.05637,18.6,1010.1732,63.969646,0.0,0.0,0.0,11.65,0.0,0.0, +2024-11-05 13:00:00,4.2005954,188.90164,18.35,1010.5626,63.282654,0.0,0.0,0.0,11.25,0.0,0.0, +2024-11-05 14:00:00,4.2074337,183.40637,18.0,1010.652,64.47456,0.0,0.0,0.0,11.2,0.0,0.0, +2024-11-05 15:00:00,3.6585517,183.91817,17.7,1010.34564,65.70344,0.0,0.0,0.0,11.2,0.0,0.0, +2024-11-05 16:00:00,3.4058774,183.3664,17.55,1010.1431,65.88946,0.0,0.0,0.0,11.1,0.0,0.0, +2024-11-05 17:00:00,3.0149627,185.7105,17.05,1009.6327,68.91219,0.0,0.0,0.0,11.3,0.0,0.0, +2024-11-05 18:00:00,2.6504717,181.0809,16.9,1009.13245,69.1109,0.0,0.0,0.0,11.2,0.0,0.0, +2024-11-05 19:00:00,4.2107005,175.91446,16.75,1009.22723,78.289024,0.0,0.0,0.0,12.95,0.0,0.0, +2024-11-05 20:00:00,4.1303754,173.04713,16.9,1009.3308,80.38019,0.0,0.0,0.0,13.5,0.0,0.0, +2024-11-05 21:00:00,4.7183156,170.2383,16.55,1009.71735,81.91902,0.0,0.0,0.0,13.45,0.0,0.0, +2024-11-05 22:00:00,4.9175706,161.01228,16.5,1010.6083,83.52721,11.0,25.737555,9.0,13.7,0.0,0.0, +2024-11-05 23:00:00,5.3935146,169.31514,17.5,1011.52997,76.385284,115.0,153.23708,81.0,13.3,0.0,0.0, +2024-11-06 00:00:00,6.278734,174.5165,18.35,1011.95105,68.26855,185.0,117.04894,134.0,12.4,0.0,0.1, +2024-11-06 01:00:00,5.5145264,184.15956,20.35,1012.4053,51.244812,533.0,577.2731,170.0,9.95,0.0,0.0, +2024-11-06 02:00:00,5.5301447,194.6645,21.25,1012.7282,47.04298,814.0,848.94354,145.0,9.5,0.0,0.0, +2024-11-06 03:00:00,5.4134097,201.11357,21.65,1012.5414,41.05926,961.0,917.414,133.0,7.85,0.0,0.0, +2024-11-06 04:00:00,5.897669,198.28143,22.3,1011.8652,41.94671,1058.0,979.75793,113.0,8.75,0.0,0.0, +2024-11-06 05:00:00,7.040064,196.50444,22.0,1011.6585,45.5413,1023.0,852.7624,196.0,9.7,0.0,0.0, +2024-11-06 06:00:00,7.28869,194.7036,21.65,1011.3512,47.46938,983.0,922.6699,136.0,10.0,0.0,0.0, +2024-11-06 07:00:00,7.6095333,191.7529,21.25,1010.94293,49.13675,853.0,904.4334,118.0,10.15,0.0,0.0, +2024-11-06 08:00:00,7.622664,187.91742,20.55,1010.8242,53.03724,673.0,863.83527,102.0,10.65,0.0,0.0, +2024-11-06 09:00:00,7.3744493,184.66678,19.95,1010.807,55.04053,449.0,749.9561,94.0,10.65,0.0,0.0, +2024-11-06 10:00:00,7.0007143,180.81844,19.05,1011.0788,57.820507,219.0,601.84344,61.0,10.55,0.0,0.0, +2024-11-06 11:00:00,6.129437,174.3825,18.45,1011.45844,60.632477,32.0,162.67726,16.0,10.7,0.0,0.0, +2024-11-06 12:00:00,5.396758,166.60748,18.0,1011.84204,63.203915,0.0,0.0,0.0,10.9,0.0,0.0, +2024-11-06 13:00:00,5.440588,162.89719,17.15,1012.70984,67.128876,0.0,0.0,0.0,11.0,0.0,0.0, +2024-11-06 14:00:00,5.110039,163.51547,16.85,1012.80035,69.10095,0.0,0.0,0.0,11.15,0.0,0.0, +2024-11-06 15:00:00,5.015227,159.57759,16.45,1012.39197,70.87911,0.0,0.0,0.0,11.15,0.0,0.0, +2024-11-06 16:00:00,4.7853947,153.97047,16.0,1011.982,74.404625,0.0,0.0,0.0,11.45,0.0,0.0, +2024-11-06 17:00:00,4.6219583,148.7174,15.45,1011.5691,77.06917,0.0,0.0,0.0,11.45,0.0,0.0, +2024-11-06 18:00:00,4.6400433,142.88306,14.85,1011.15497,75.20287,0.0,0.0,0.0,10.5,0.0,0.0, +2024-11-06 19:00:00,4.609772,139.39879,14.25,1011.0381,70.93368,0.0,0.0,0.0,9.05,0.0,0.0, +2024-11-06 20:00:00,4.5254836,135.0001,13.65,1011.1195,72.02667,0.0,0.0,0.0,8.7,0.0,0.0, +2024-11-06 21:00:00,4.313931,134.0609,13.3,1011.20825,72.69642,0.0,0.0,0.0,8.5,0.0,0.0, +2024-11-06 22:00:00,4.457017,133.18172,13.45,1011.51013,71.0205,16.0,88.88334,9.0,8.3,0.0,0.0, +2024-11-06 23:00:00,4.526036,135.89508,15.6,1011.87115,61.396706,179.0,549.36206,56.0,8.2,0.0,0.0, +2024-11-07 00:00:00,5.4801917,148.05006,18.3,1012.049,48.4986,415.0,761.27576,82.0,7.25,0.0,0.0, +2024-11-07 01:00:00,5.553602,159.44388,20.45,1012.11066,43.750614,639.0,863.1366,95.0,7.7,0.0,0.0, +2024-11-07 02:00:00,5.515886,171.13545,21.9,1011.3581,41.551056,831.0,924.9006,101.0,8.25,0.0,0.0, +2024-11-07 03:00:00,5.7054796,182.5113,22.8,1010.4908,42.08757,966.0,945.06464,112.0,9.25,0.0,0.0, +2024-11-07 04:00:00,7.0092797,194.03627,22.5,1010.08563,47.85991,1039.0,950.72156,121.0,10.9,0.0,0.0, +2024-11-07 05:00:00,8.065358,197.31174,21.15,1010.0475,53.19304,939.0,624.1706,333.0,11.25,0.0,0.0, +2024-11-07 06:00:00,7.5960517,196.04907,19.75,1009.8095,57.60904,444.0,91.38262,360.0,11.15,0.0,0.0, +2024-11-07 07:00:00,6.851642,193.93486,19.95,1009.5177,54.857628,456.0,143.71913,339.0,10.6,0.0,0.0, +2024-11-07 08:00:00,6.858936,182.92491,20.35,1008.63654,54.05419,559.0,487.40613,236.0,10.75,0.0,0.0, +2024-11-07 09:00:00,6.88077,174.5795,19.85,1007.82886,55.382607,399.0,538.54816,143.0,10.65,0.0,0.0, +2024-11-07 10:00:00,6.896557,173.33879,19.0,1007.6062,60.56081,156.0,207.66884,101.0,11.2,0.0,0.0, +2024-11-07 11:00:00,6.0876927,165.73546,18.05,1007.9757,66.65289,25.0,70.31587,18.0,11.75,0.0,0.0, +2024-11-07 12:00:00,6.140033,173.45381,17.4,1007.95703,74.156075,0.0,0.0,0.0,12.75,0.0,1.8, +2024-11-07 13:00:00,5.8200088,171.10422,17.8,1007.6709,69.746254,0.0,0.0,0.0,12.2,0.0,0.0, +2024-11-07 14:00:00,5.0707493,167.4712,17.7,1007.27136,72.05442,0.0,0.0,0.0,12.6,0.0,0.0, +2024-11-07 15:00:00,5.3183646,189.19658,16.9,1007.2483,78.311325,0.0,0.0,0.0,13.1,0.0,0.0, +2024-11-07 16:00:00,5.8045244,197.03024,16.75,1006.9464,78.289024,0.0,0.0,0.0,12.95,0.0,0.0, +2024-11-07 17:00:00,6.2211337,201.20288,16.65,1006.84436,76.49994,0.0,0.0,0.0,12.5,0.0,0.0, +2024-11-07 18:00:00,5.3521023,181.60597,16.35,1006.43915,85.430534,0.0,0.0,0.0,13.9,0.0,1.3, +2024-11-07 19:00:00,4.7523675,181.8087,16.3,1006.3384,87.10315,0.0,0.0,0.0,14.15,0.0,0.0, +2024-11-07 20:00:00,4.4553337,189.0394,16.1,1006.53076,87.08449,0.0,0.0,0.0,13.95,0.0,0.0, +2024-11-07 21:00:00,4.516913,206.28134,16.15,1006.82983,83.214745,0.0,0.0,0.0,13.3,0.0,0.0, +2024-11-07 22:00:00,4.405111,206.27415,16.7,1007.34174,78.02601,12.0,37.619305,9.0,12.85,0.0,0.0, +2024-11-07 23:00:00,6.6912255,204.26678,17.05,1008.1452,77.317726,114.0,168.2903,76.0,13.05,0.0,0.1, +2024-11-08 00:00:00,5.3202443,201.5015,18.3,1008.37964,68.03465,271.0,334.8338,124.0,12.3,0.0,0.0, +2024-11-08 01:00:00,6.2433968,211.90807,20.65,1007.2565,57.26107,615.0,793.2215,114.0,11.9,0.0,0.0, +2024-11-08 02:00:00,6.3780875,221.18582,20.9,1007.2635,56.386745,820.0,900.78467,108.0,11.9,0.0,0.0, +2024-11-08 03:00:00,7.184184,227.53859,21.2,1007.7679,55.906933,949.0,900.87775,134.0,12.05,0.0,0.0, +2024-11-08 04:00:00,7.9556584,224.23619,21.05,1007.6643,56.238644,958.0,793.51697,191.0,12.0,0.0,0.1, +2024-11-08 05:00:00,7.8946185,218.82983,21.0,1007.3656,55.85681,820.0,593.6547,243.0,11.85,0.0,0.1, +2024-11-08 06:00:00,7.9600563,213.98956,21.2,1006.8753,54.451763,849.0,672.5274,230.0,11.65,0.0,0.0, +2024-11-08 07:00:00,8.276473,208.11311,20.85,1006.6672,55.451775,707.0,576.33514,237.0,11.6,0.0,0.0, +2024-11-08 08:00:00,8.6339445,199.27448,20.6,1006.2632,56.68501,557.0,537.348,200.0,11.7,0.0,0.0, +2024-11-08 09:00:00,8.619309,191.37508,19.65,1006.13727,63.99124,319.0,318.4271,167.0,12.65,0.0,0.0, +2024-11-08 10:00:00,7.67219,187.86598,19.4,1006.4275,63.517532,155.0,269.49234,83.0,12.3,0.0,0.0, +2024-11-08 11:00:00,6.4381676,186.24182,18.9,1007.2066,67.269806,20.0,49.627823,15.0,12.7,0.0,0.0, +2024-11-08 12:00:00,6.00354,187.65762,18.5,1007.69116,71.7313,0.0,0.0,0.0,13.3,0.0,0.0, +2024-11-08 13:00:00,4.851031,181.18117,17.6,1008.45856,74.1904,0.0,0.0,0.0,12.95,0.0,0.0, +2024-11-08 14:00:00,4.8002605,180.5968,17.4,1008.4529,75.3786,0.0,0.0,0.0,13.0,0.0,0.0, +2024-11-08 15:00:00,4.7265205,173.92764,17.45,1008.2558,75.141,0.0,0.0,0.0,13.0,0.0,0.0, +2024-11-08 16:00:00,4.2005954,171.09836,17.45,1007.75995,75.141,0.0,0.0,0.0,13.0,0.0,0.0, +2024-11-08 17:00:00,3.7716045,165.41104,16.9,1007.44666,77.54767,0.0,0.0,0.0,12.95,0.0,0.0, +2024-11-08 18:00:00,3.5584404,160.29193,16.75,1007.04553,77.77874,0.0,0.0,0.0,12.85,0.0,0.0, +2024-11-08 19:00:00,3.3837848,145.84026,16.25,1007.1301,78.987785,0.0,0.0,0.0,12.6,0.0,0.0, +2024-11-08 20:00:00,3.0955615,121.122406,15.45,1007.40424,82.04787,0.0,0.0,0.0,12.4,0.0,0.0, +2024-11-08 21:00:00,3.5850384,129.90784,15.45,1007.9001,80.1816,0.0,0.0,0.0,12.05,0.0,0.0, +2024-11-08 22:00:00,4.210997,132.594,15.85,1008.40765,77.641685,12.0,12.393834,11.0,11.95,0.0,0.0, +2024-11-08 23:00:00,3.740655,127.94221,17.25,1009.04346,71.971924,144.0,237.25427,90.0,12.15,0.0,0.0, +2024-11-09 00:00:00,3.9322386,131.39143,19.8,1009.4144,60.15106,389.0,628.7919,112.0,11.85,0.0,0.0, +2024-11-09 01:00:00,3.3286633,147.26479,22.05,1009.37866,49.680897,633.0,840.633,101.0,11.05,0.0,0.0, +2024-11-09 02:00:00,3.473111,186.61336,23.65,1008.729,42.32625,826.0,909.6723,106.0,10.1,0.0,0.0, +2024-11-09 03:00:00,6.148374,211.36325,22.0,1008.3855,60.27445,701.0,489.15555,258.0,13.95,0.0,0.0, +2024-11-09 04:00:00,6.983552,209.1342,21.5,1008.1732,62.14409,661.0,288.36136,382.0,13.95,0.0,0.0, +2024-11-09 05:00:00,7.3370633,204.99327,22.3,1007.7986,57.10468,980.0,817.08545,185.0,13.4,0.0,0.0, +2024-11-09 06:00:00,7.2235723,201.94876,22.7,1007.61163,55.37175,993.0,961.38336,107.0,13.3,0.0,0.0, +2024-11-09 07:00:00,7.8781343,196.59483,22.2,1007.3994,58.967525,853.0,909.5304,110.0,13.8,0.0,0.0, +2024-11-09 08:00:00,8.487785,185.40823,21.25,1007.27325,63.719852,670.0,855.77216,100.0,14.1,0.0,0.0, +2024-11-09 09:00:00,8.923704,184.17703,20.75,1007.1602,66.99578,450.0,759.34796,86.0,14.4,0.0,0.0, +2024-11-09 10:00:00,8.958934,177.44106,19.4,1007.6176,72.59743,218.0,578.8121,62.0,14.35,0.0,0.0, +2024-11-09 11:00:00,8.180006,175.09102,18.65,1007.8939,76.81513,34.0,166.72806,17.0,14.5,0.0,0.0, +2024-11-09 12:00:00,7.8447433,168.9766,18.25,1008.08057,77.00152,0.0,0.0,0.0,14.15,0.0,0.0, +2024-11-09 13:00:00,6.5736213,165.01239,17.95,1009.2621,77.707375,0.0,0.0,0.0,14.0,0.0,0.0, +2024-11-09 14:00:00,6.594885,162.80138,17.65,1009.1543,80.74255,0.0,0.0,0.0,14.3,0.0,0.0, +2024-11-09 15:00:00,6.1856694,159.66069,17.35,1008.94714,79.92099,0.0,0.0,0.0,13.85,0.0,0.0, +2024-11-09 16:00:00,5.8587537,158.47093,16.9,1008.5375,77.80148,0.0,0.0,0.0,13.0,0.0,0.0, +2024-11-09 17:00:00,5.5542774,156.66594,16.4,1008.2254,77.7256,0.0,0.0,0.0,12.5,0.0,0.0, +2024-11-09 18:00:00,4.9648767,152.4028,15.9,1008.0126,77.13947,0.0,0.0,0.0,11.9,0.0,0.0, +2024-11-09 19:00:00,4.4102154,147.0306,15.3,1008.1931,76.03125,0.0,0.0,0.0,11.1,0.0,0.0, +2024-11-09 20:00:00,4.0512342,144.54445,14.9,1008.47894,72.74282,0.0,0.0,0.0,10.05,0.0,0.0, +2024-11-09 21:00:00,3.8503246,142.38597,14.6,1009.06506,69.34737,0.0,0.0,0.0,9.05,0.0,0.0, +2024-11-09 22:00:00,3.9824615,141.1155,14.85,1009.66754,66.196236,18.0,85.802345,11.0,8.6,0.0,0.0, +2024-11-09 23:00:00,4.1188593,146.88866,17.1,1010.4274,59.306343,181.0,540.7203,57.0,9.1,0.0,0.0, +2024-11-10 00:00:00,4.4161634,149.37007,19.75,1010.702,52.651855,413.0,746.6905,83.0,9.8,0.0,0.0, +2024-11-10 01:00:00,4.632764,161.76051,22.0,1010.6667,47.72386,641.0,856.4207,98.0,10.4,0.0,0.0, +2024-11-10 02:00:00,5.6535387,177.97272,23.5,1010.31177,43.86616,834.0,917.35205,107.0,10.5,0.0,0.0, +2024-11-10 03:00:00,7.119691,190.52074,23.8,1009.9233,46.958355,975.0,950.8519,113.0,11.8,0.0,0.0, +2024-11-10 04:00:00,8.380484,194.8654,23.45,1009.3187,48.1173,1052.0,966.49615,116.0,11.85,0.0,0.0, +2024-11-10 05:00:00,8.683317,194.67644,23.3,1009.1162,46.052517,1059.0,968.20483,116.0,11.05,0.0,0.0, +2024-11-10 06:00:00,8.538296,194.93147,23.1,1008.7137,46.612484,1000.0,960.16797,114.0,11.05,0.0,0.0, +2024-11-10 07:00:00,8.634958,194.7605,22.55,1008.5994,51.48488,873.0,934.85077,108.0,12.05,0.0,0.0, +2024-11-10 08:00:00,8.600145,190.72192,21.7,1008.4761,58.275,688.0,882.04285,99.0,13.15,0.0,0.0, +2024-11-10 09:00:00,8.62047,187.33102,20.85,1009.0475,63.83863,465.0,787.3008,86.0,13.75,0.0,0.0, +2024-11-10 10:00:00,8.100618,180.7073,19.9,1009.51654,68.57913,227.0,599.5034,64.0,13.95,0.0,0.0, +2024-11-10 11:00:00,7.4560375,177.69408,18.75,1009.97943,76.58317,37.0,184.13011,18.0,14.55,0.0,0.0, +2024-11-10 12:00:00,7.212836,172.4317,18.4,1010.36597,79.55166,0.0,0.0,0.0,14.8,0.0,0.0, +2024-11-10 13:00:00,6.7403636,170.60762,18.0,1010.75116,81.837395,0.0,0.0,0.0,14.85,0.0,0.0, +2024-11-10 14:00:00,6.8447056,168.19759,17.8,1010.5469,83.40887,0.0,0.0,0.0,14.95,0.0,0.0, +2024-11-10 15:00:00,6.806247,164.22798,17.6,1010.1444,84.19516,0.0,0.0,0.0,14.9,0.0,0.0, +2024-11-10 16:00:00,6.720305,160.89091,17.25,1009.5393,84.15598,0.0,0.0,0.0,14.55,0.0,0.0, +2024-11-10 17:00:00,6.407808,157.0362,16.8,1009.1296,82.484726,0.0,0.0,0.0,13.8,0.0,0.0, +2024-11-10 18:00:00,5.926635,152.35411,16.15,1008.714,80.277824,0.0,0.0,0.0,12.75,0.0,0.0, +2024-11-10 19:00:00,5.257613,147.82137,15.55,1008.6966,78.10965,0.0,0.0,0.0,11.75,0.0,0.0, +2024-11-10 20:00:00,4.7405167,142.28395,14.95,1009.07544,77.2467,0.0,0.0,0.0,11.0,0.0,0.0, +2024-11-10 21:00:00,4.2405777,142.1842,14.35,1009.4544,77.15295,0.0,0.0,0.0,10.4,0.0,0.0, +2024-11-10 22:00:00,4.1800117,143.26709,14.45,1009.9531,75.387215,19.0,97.04304,11.0,10.15,0.0,0.0, +2024-11-10 23:00:00,4.473533,152.00294,16.35,1010.50494,67.8616,187.0,558.5373,58.0,10.4,0.0,0.0, +2024-11-11 00:00:00,5.233784,161.04567,18.95,1010.6792,58.376385,424.0,769.2476,83.0,10.6,0.0,0.0, +2024-11-11 01:00:00,5.0695167,165.14134,22.1,1010.0745,49.03895,652.0,875.4027,96.0,10.9,0.0,0.0, +2024-11-11 02:00:00,4.440721,172.23492,24.8,1009.3561,40.439526,845.0,930.1324,107.0,10.45,0.0,0.0, +2024-11-11 03:00:00,6.6219335,194.87573,24.75,1008.85846,49.58551,990.0,966.4841,113.0,13.5,0.0,0.0, +2024-11-11 04:00:00,8.20061,195.56157,23.9,1008.3391,56.759384,1064.0,978.0105,116.0,14.8,0.0,0.0, +2024-11-11 05:00:00,8.56344,192.81909,23.55,1008.03204,58.530506,1066.0,973.39716,117.0,14.95,0.0,0.0, +2024-11-11 06:00:00,8.454881,192.63905,23.75,1007.54156,55.814278,1003.0,962.21783,114.0,14.4,0.0,0.0, +2024-11-11 07:00:00,8.600145,190.72192,22.95,1007.4203,59.52897,876.0,936.90717,108.0,14.65,0.0,0.0, +2024-11-11 08:00:00,8.640891,188.31757,22.2,1007.5978,64.34063,691.0,884.26794,99.0,15.15,0.0,0.0, +2024-11-11 09:00:00,8.421401,184.08554,21.15,1007.7663,69.715775,468.0,790.1679,86.0,15.4,0.0,0.0, +2024-11-11 10:00:00,8.0524845,178.57683,19.85,1008.0272,75.77826,231.0,608.8493,64.0,15.45,0.0,0.0, +2024-11-11 11:00:00,7.6034536,173.20221,18.7,1008.391,81.925575,38.0,191.52522,18.0,15.55,0.0,0.0, +2024-11-11 12:00:00,7.368175,172.1999,18.25,1008.87396,84.537834,0.0,0.0,0.0,15.6,0.0,0.0, +2024-11-11 13:00:00,7.119691,169.47926,17.9,1009.3599,85.31683,0.0,0.0,0.0,15.4,0.0,0.0, +2024-11-11 14:00:00,6.718631,165.3432,17.7,1009.5523,85.57026,0.0,0.0,0.0,15.25,0.0,0.0, +2024-11-11 15:00:00,6.5802736,163.21727,17.45,1009.1483,86.09643,0.0,0.0,0.0,15.1,0.0,0.0, +2024-11-11 16:00:00,6.2625875,160.40762,17.2,1008.84375,86.071556,0.0,0.0,0.0,14.85,0.0,0.0, +2024-11-11 17:00:00,6.0730963,157.23495,17.0,1008.24286,86.051575,0.0,0.0,0.0,14.65,0.0,0.0, +2024-11-11 18:00:00,5.6797886,153.88615,16.45,1008.12775,87.6822,0.0,0.0,0.0,14.4,0.0,0.0, +2024-11-11 19:00:00,5.420332,150.1241,15.95,1008.41077,87.92222,0.0,0.0,0.0,13.95,0.0,0.0, +2024-11-11 20:00:00,5.186521,146.0035,15.45,1008.69336,88.45209,0.0,0.0,0.0,13.55,0.0,0.0, +2024-11-11 21:00:00,5.0400896,143.47105,14.85,1008.97345,88.40134,0.0,0.0,0.0,12.95,0.0,0.0, +2024-11-11 22:00:00,5.021205,141.87477,14.9,1009.5697,85.2783,19.0,96.09608,11.0,12.45,0.0,0.0, +2024-11-11 23:00:00,5.104165,147.39967,16.55,1009.9157,74.74431,184.0,533.30634,60.0,12.05,0.0,0.0, +2024-11-12 00:00:00,5.1441717,154.68036,18.9,1010.08264,61.344986,422.0,762.57007,83.0,11.3,0.0,0.0, +2024-11-12 01:00:00,5.0289164,162.64589,21.35,1009.85486,53.59801,647.0,856.6991,102.0,11.55,0.0,0.0, +2024-11-12 02:00:00,5.5226803,174.80566,23.5,1009.51825,46.567562,843.0,926.59546,107.0,11.4,0.0,0.0, +2024-11-12 03:00:00,6.412488,183.57626,24.7,1008.85724,45.230553,985.0,960.12537,113.0,12.05,0.0,0.0, +2024-11-12 04:00:00,7.686514,188.6044,24.75,1008.2633,50.398167,1062.0,975.11664,116.0,13.75,0.0,0.0, +2024-11-12 05:00:00,8.541955,188.4146,24.6,1007.7633,52.3578,1067.0,973.4843,117.0,14.2,0.0,0.0, +2024-11-12 06:00:00,8.812775,186.84268,24.3,1007.25916,52.62044,1000.0,958.8734,113.0,14.0,0.0,0.0, +2024-11-12 07:00:00,8.646965,185.97423,23.95,1006.9521,56.044445,872.0,930.4357,108.0,14.65,0.0,0.0, +2024-11-12 08:00:00,8.46788,183.72398,22.85,1006.9215,60.863342,690.0,880.513,99.0,14.9,0.0,0.0, +2024-11-12 09:00:00,8.001406,178.92586,22.25,1006.90466,66.02369,466.0,784.74774,85.0,15.6,0.0,0.0, +2024-11-12 10:00:00,7.498333,173.49113,20.65,1006.7606,73.287415,231.0,603.535,64.0,15.7,0.0,0.0, +2024-11-12 11:00:00,6.471862,168.86374,19.55,1007.2253,79.45779,39.0,198.72995,18.0,15.9,0.0,0.0, +2024-11-12 12:00:00,6.754628,165.86086,19.1,1007.3115,81.19374,0.0,0.0,0.0,15.8,0.0,0.0, +2024-11-12 13:00:00,5.95525,164.91359,18.65,1007.69556,82.97518,0.0,0.0,0.0,15.7,0.0,0.0, +2024-11-12 14:00:00,5.597321,161.24126,18.3,1007.4871,85.086,0.0,0.0,0.0,15.75,0.0,0.0, +2024-11-12 15:00:00,5.088467,157.4667,17.85,1007.07745,86.68967,0.0,0.0,0.0,15.6,0.0,0.0, +2024-11-12 16:00:00,4.5213385,150.88396,17.3,1006.8633,85.25403,0.0,0.0,0.0,14.8,0.0,0.0, +2024-11-12 17:00:00,3.9962482,148.29861,16.8,1005.95624,80.89159,0.0,0.0,0.0,13.5,0.0,0.0, +2024-11-12 18:00:00,3.696282,149.96681,16.65,1005.6543,77.00321,0.0,0.0,0.0,12.6,0.0,0.0, +2024-11-12 19:00:00,3.7259226,139.89915,16.6,1005.5539,74.507164,0.0,0.0,0.0,12.05,0.0,0.0, +2024-11-12 20:00:00,4.0672474,136.49428,16.8,1005.5596,71.18038,0.0,0.0,0.0,11.55,0.0,0.0, +2024-11-12 21:00:00,3.9698865,130.91429,17.9,1005.59143,62.55412,0.0,0.0,0.0,10.65,0.0,0.0, +2024-11-12 22:00:00,3.46013,127.36675,19.1,1006.2206,53.551044,13.0,11.901884,12.0,9.45,0.0,0.0, +2024-11-12 23:00:00,3.7165172,146.5237,21.5,1006.5863,44.49377,144.0,192.32535,99.0,8.9,0.0,0.0, +2024-11-13 00:00:00,3.952847,145.30478,24.75,1006.27954,34.39376,351.0,394.8619,175.0,8.0,0.0,0.0, +2024-11-13 01:00:00,3.240756,141.89238,28.1,1005.57697,27.655502,564.0,514.8226,236.0,7.7,0.0,0.0, +2024-11-13 02:00:00,3.662308,175.3014,30.45,1005.0445,24.89532,786.0,701.7899,228.0,8.15,0.0,0.0, +2024-11-13 03:00:00,5.082568,195.40349,30.0,1004.5365,35.984917,903.0,686.49786,279.0,13.3,0.0,0.0, +2024-11-13 04:00:00,5.7293105,200.96579,30.15,1003.8461,41.791256,1053.0,956.821,124.0,15.75,0.0,0.0, +2024-11-13 05:00:00,6.5654397,202.85484,29.25,1003.3263,45.153065,1040.0,883.5094,177.0,16.15,0.0,0.0, +2024-11-13 06:00:00,6.9858785,194.93147,28.1,1002.8986,42.447308,966.0,850.82086,178.0,14.15,0.0,0.0, +2024-11-13 07:00:00,6.619101,190.88548,27.9,1002.49634,43.928383,847.0,838.8868,157.0,14.5,0.0,0.0, +2024-11-13 08:00:00,6.4778466,185.31445,27.35,1002.4819,45.65784,680.0,842.592,113.0,14.6,0.0,0.0, +2024-11-13 09:00:00,5.4646587,184.19759,26.55,1002.65857,49.42176,466.0,781.40643,85.0,15.1,0.0,0.0, +2024-11-13 10:00:00,5.115662,184.48453,24.8,1003.20636,56.25419,227.0,558.8735,71.0,15.5,0.0,0.0, +2024-11-13 11:00:00,5.3835397,173.60114,22.25,1003.4333,68.82257,40.0,177.69519,21.0,16.25,0.0,0.0, +2024-11-13 12:00:00,4.712218,160.79593,21.9,1003.82025,66.16235,0.0,0.0,0.0,15.3,0.0,0.0, +2024-11-13 13:00:00,4.5069394,162.57005,21.15,1004.3942,66.21853,0.0,0.0,0.0,14.6,0.0,0.0, +2024-11-13 14:00:00,4.232316,165.63538,20.55,1004.3776,69.37607,0.0,0.0,0.0,14.75,0.0,0.0, +2024-11-13 15:00:00,4.253528,162.20392,19.95,1004.36053,74.35002,0.0,0.0,0.0,15.25,0.0,0.0, +2024-11-13 16:00:00,3.905445,161.333,19.4,1004.1465,77.42715,0.0,0.0,0.0,15.35,0.0,0.0, +2024-11-13 17:00:00,3.2962098,157.71437,18.8,1003.4352,78.84384,0.0,0.0,0.0,15.05,0.0,0.0, +2024-11-13 18:00:00,2.3706539,152.35411,18.15,1002.82166,80.549095,0.0,0.0,0.0,14.75,0.0,0.0, +2024-11-13 19:00:00,1.7088008,159.44388,17.15,1002.79297,84.96373,0.0,0.0,0.0,14.6,0.0,0.0, +2024-11-13 20:00:00,1.8343936,162.55272,16.8,1003.0804,86.86892,0.0,0.0,0.0,14.6,0.0,0.0, +2024-11-13 21:00:00,1.7,151.92761,16.45,1003.16943,88.53593,0.0,0.0,0.0,14.55,0.0,0.0, +2024-11-13 22:00:00,1.7951323,167.125,17.1,1003.98145,88.87487,20.0,106.197624,11.0,15.25,0.0,0.0, +2024-11-13 23:00:00,2.8004463,178.97699,20.0,1004.461,83.39835,185.0,539.59955,58.0,17.1,0.0,0.0, +2024-11-14 00:00:00,2.6925821,195.06854,22.1,1004.917,74.710014,411.0,711.69574,93.0,17.4,0.0,0.0, +2024-11-14 01:00:00,3.0858548,206.98015,23.5,1005.0549,69.28461,599.0,677.12915,167.0,17.55,0.0,0.0, +2024-11-14 02:00:00,3.828838,220.76352,24.4,1005.27826,66.46971,825.0,884.59216,121.0,17.75,0.0,0.0, +2024-11-14 03:00:00,4.4902673,224.54892,24.1,1005.27,67.25103,964.0,917.9325,129.0,17.65,0.0,0.0, +2024-11-14 04:00:00,4.384062,224.9999,24.55,1004.98474,65.255806,1044.0,937.5668,133.0,17.6,0.0,0.0, +2024-11-14 05:00:00,4.3863425,223.1524,24.6,1004.4901,65.06092,1055.0,953.28906,123.0,17.6,0.0,0.0, +2024-11-14 06:00:00,4.7835655,221.18584,24.4,1004.1872,65.84434,995.0,947.9463,116.0,17.6,0.0,0.0, +2024-11-14 07:00:00,4.981215,215.60461,24.05,1003.97906,67.029236,863.0,903.0106,119.0,17.55,0.0,0.0, +2024-11-14 08:00:00,5.01722,209.88644,23.25,1004.05615,69.89544,681.0,849.3289,108.0,17.45,0.0,0.0, +2024-11-14 09:00:00,5.127621,203.56541,22.3,1004.3272,74.039154,464.0,763.7832,90.0,17.45,0.0,0.0, +2024-11-14 10:00:00,4.808326,196.9276,21.05,1004.5898,81.95896,231.0,585.989,66.0,17.85,0.0,0.0, +2024-11-14 11:00:00,4.68855,187.35228,20.05,1004.85925,88.552,41.0,194.1122,20.0,18.1,0.0,0.0, +2024-11-14 12:00:00,4.550275,179.37042,19.6,1005.24335,89.63696,0.0,0.0,0.0,17.85,0.0,0.0, +2024-11-14 13:00:00,4.2002974,179.31796,18.95,1005.81976,89.30515,0.0,0.0,0.0,17.15,0.0,0.0, +2024-11-14 14:00:00,4.700266,180.6095,18.6,1005.80963,90.70397,0.0,0.0,0.0,17.05,0.0,0.0, +2024-11-14 15:00:00,5.1119957,176.07417,18.5,1005.8069,89.838646,0.0,0.0,0.0,16.8,0.0,0.0, +2024-11-14 16:00:00,5.352803,171.94568,18.65,1005.3154,86.48993,0.0,0.0,0.0,16.35,0.0,0.0, +2024-11-14 17:00:00,5.3443894,169.21574,18.85,1004.6269,84.873184,0.0,0.0,0.0,16.25,0.0,0.0, +2024-11-14 18:00:00,4.9246826,164.6938,18.85,1004.2302,84.33393,0.0,0.0,0.0,16.15,0.0,0.0, +2024-11-14 19:00:00,4.1584253,161.7828,18.7,1004.1265,85.12817,0.0,0.0,0.0,16.15,0.0,0.0, +2024-11-14 20:00:00,3.51141,160.0168,18.35,1004.5132,87.01422,0.0,0.0,0.0,16.15,0.0,0.0, +2024-11-14 21:00:00,2.2388613,150.57263,17.95,1004.7994,88.66,0.0,0.0,0.0,16.05,0.0,0.0, +2024-11-14 22:00:00,2.34094,160.0168,18.25,1005.50214,87.004906,14.0,35.116028,11.0,16.05,0.0,0.0, +2024-11-14 23:00:00,4.2573466,176.6336,19.75,1005.9416,78.477394,112.0,109.864655,86.0,15.9,0.0,0.0, +2024-11-15 00:00:00,5.204325,188.2857,21.1,1006.4758,69.48284,346.0,442.13016,148.0,15.3,0.0,0.0, +2024-11-15 01:00:00,5.3600373,194.03627,22.25,1006.40875,63.939293,492.0,391.36646,242.0,15.1,0.0,0.0, +2024-11-15 02:00:00,5.5430136,195.16452,22.9,1006.526,61.861286,676.0,467.03226,304.0,15.2,0.0,0.0, +2024-11-15 03:00:00,6.1214786,200.06316,23.7,1006.25085,58.75484,842.0,561.35925,331.0,15.15,0.0,0.0, +2024-11-15 04:00:00,6.6407833,198.43504,23.75,1005.9546,62.251675,944.0,703.441,260.0,16.1,0.0,0.0, +2024-11-15 05:00:00,6.7861996,196.69933,24.1,1005.3692,59.799107,999.0,786.9031,229.0,15.8,0.0,0.0, +2024-11-15 06:00:00,7.5440373,193.02309,23.45,1004.85535,61.001526,840.0,523.5076,354.0,15.5,0.0,0.0, +2024-11-15 07:00:00,7.707464,191.60149,22.65,1004.53534,65.47693,698.0,460.4413,318.0,15.85,0.0,0.0, +2024-11-15 08:00:00,7.5731435,187.96953,21.85,1004.8108,68.30588,545.0,481.9791,219.0,15.75,0.0,0.0, +2024-11-15 09:00:00,7.876865,184.73335,21.1,1004.59143,69.26018,359.0,378.23422,173.0,15.25,0.0,0.0, +2024-11-15 10:00:00,7.4607306,183.07327,19.7,1004.8495,74.3077,159.0,140.83243,119.0,15.0,0.0,0.0, +2024-11-15 11:00:00,6.400781,179.10484,19.15,1005.03204,77.88795,32.0,18.273355,30.0,15.2,0.0,0.0, +2024-11-15 12:00:00,6.6687703,175.70023,19.15,1005.23035,76.646,0.0,0.0,0.0,14.95,0.0,0.0, +2024-11-15 13:00:00,7.0213957,169.33026,18.75,1005.3183,80.629425,0.0,0.0,0.0,15.35,0.0,0.0, +2024-11-15 14:00:00,6.900181,166.16513,18.65,1005.3154,82.18216,0.0,0.0,0.0,15.55,0.0,0.0, +2024-11-15 15:00:00,7.1431785,166.64465,18.55,1005.11426,80.862045,0.0,0.0,0.0,15.2,0.0,0.0, +2024-11-15 16:00:00,7.2940044,163.67688,18.3,1004.71027,81.35063,0.0,0.0,0.0,15.05,0.0,0.0, +2024-11-15 17:00:00,7.534255,164.21123,18.15,1004.1109,80.80907,0.0,0.0,0.0,14.8,0.0,0.0, +2024-11-15 18:00:00,7.3206897,161.6887,18.15,1003.615,80.031364,0.0,0.0,0.0,14.65,0.0,0.0, +2024-11-15 19:00:00,6.689731,160.34608,17.85,1003.60645,79.474335,0.0,0.0,0.0,14.25,0.0,0.0, +2024-11-15 20:00:00,6.053924,157.6713,17.5,1003.69556,78.91103,0.0,0.0,0.0,13.8,0.0,0.0, +2024-11-15 21:00:00,5.0982842,153.18373,17.0,1004.1769,76.80629,0.0,0.0,0.0,12.9,0.0,0.0, +2024-11-15 22:00:00,5.0089917,153.94656,17.2,1004.877,70.78744,11.0,0.0,11.0,11.85,0.0,0.0, +2024-11-15 23:00:00,4.9962487,157.02725,18.2,1005.3025,62.414852,93.0,21.020445,88.0,10.9,0.0,0.0, +2024-11-16 00:00:00,5.682649,158.85384,20.2,1005.3593,50.35352,238.0,75.7638,204.0,9.55,0.0,0.0, +2024-11-16 01:00:00,6.232576,159.82045,22.6,1005.3276,40.63557,492.0,326.81165,283.0,8.55,0.0,0.0, +2024-11-16 02:00:00,6.8740454,169.09879,24.8,1004.79333,35.715126,786.0,740.1596,196.0,8.6,0.0,0.0, +2024-11-16 03:00:00,8.403719,181.7047,25.25,1004.6072,37.56937,943.0,845.3423,173.0,9.75,0.0,0.0, +2024-11-16 04:00:00,9.922828,186.94588,24.0,1004.0769,45.48702,1021.0,874.59686,170.0,11.5,0.0,0.0, +2024-11-16 05:00:00,10.413693,186.3401,23.0,1003.65247,50.430046,1032.0,895.4997,155.0,12.15,0.0,0.0, +2024-11-16 06:00:00,10.156033,181.97488,23.05,1003.2573,48.64789,980.0,912.3963,132.0,11.65,0.0,0.0, +2024-11-16 07:00:00,10.201961,181.12328,22.95,1002.75854,50.085995,866.0,922.9788,103.0,12.0,0.0,0.0, +2024-11-16 08:00:00,10.351088,180.83029,21.7,1002.5252,55.12002,667.0,793.38776,129.0,12.3,0.0,0.0, +2024-11-16 09:00:00,10.135705,175.1895,20.45,1002.6887,59.12773,454.0,702.637,107.0,12.2,0.0,0.0, +2024-11-16 10:00:00,9.602604,171.61684,19.25,1002.9522,65.3879,230.0,561.9917,69.0,12.6,0.0,0.0, +2024-11-16 11:00:00,9.355479,167.96942,18.4,1003.2255,68.72801,44.0,207.73936,21.0,12.55,0.0,0.0, +2024-11-16 12:00:00,9.488151,162.5198,18.25,1003.61786,66.914795,0.0,0.0,0.0,12.0,0.0,0.0, +2024-11-16 13:00:00,8.719232,157.40536,17.75,1003.802,65.714165,0.0,0.0,0.0,11.25,0.0,0.0, +2024-11-16 14:00:00,7.8294315,155.07155,17.45,1003.9915,58.59752,0.0,0.0,0.0,9.25,0.0,0.0, +2024-11-16 15:00:00,7.0445013,152.52565,17.3,1004.2849,50.94811,0.0,0.0,0.0,7.05,0.0,0.0, +2024-11-16 16:00:00,6.3812227,147.80429,17.5,1004.3897,43.364925,0.0,0.0,0.0,4.9,0.0,0.0, +2024-11-16 17:00:00,6.04752,147.4925,17.7,1003.8996,37.6059,0.0,0.0,0.0,3.05,0.0,0.0, +2024-11-16 18:00:00,5.2801514,142.69597,18.15,1003.615,30.908545,0.0,0.0,0.0,0.7,0.0,0.0, +2024-11-16 19:00:00,4.7423625,137.56381,18.65,1003.332,23.797947,0.0,0.0,0.0,-2.45,0.0,0.0, +2024-11-16 20:00:00,4.571925,131.00899,18.75,1003.6323,22.873579,0.0,0.0,0.0,-2.9,0.0,0.0, +2024-11-16 21:00:00,4.482187,128.65984,18.75,1003.7315,23.301867,0.0,0.0,0.0,-2.65,0.0,0.0, +2024-11-16 22:00:00,4.3809247,128.04709,19.05,1004.0375,23.7312,22.0,115.38436,12.0,-2.15,0.0,0.0, +2024-11-16 23:00:00,4.1439714,138.42397,21.3,1004.29944,22.143139,190.0,548.14984,59.0,-1.2,0.0,0.0, +2024-11-17 00:00:00,5.6002235,113.13145,24.05,1004.1774,21.360409,419.0,747.31274,83.0,0.6,0.0,0.0, +2024-11-17 01:00:00,5.666127,105.876015,25.95,1003.7334,21.01292,642.0,849.7839,98.0,1.95,0.0,0.0, +2024-11-17 02:00:00,4.9155364,99.36644,28.6,1003.60657,21.464573,831.0,907.6464,107.0,4.45,0.0,0.0, +2024-11-17 03:00:00,3.2442255,118.539894,30.2,1003.153,23.590626,969.0,939.2108,113.0,7.15,0.0,0.0, +2024-11-17 04:00:00,3.3136082,174.80566,30.85,1002.1779,25.25598,1042.0,945.9397,121.0,8.7,0.0,0.0, +2024-11-17 05:00:00,7.472616,195.52417,29.35,1001.4439,31.165865,1049.0,949.8706,118.0,10.55,0.0,0.0, +2024-11-17 06:00:00,8.640167,190.33444,27.5,1000.89856,36.59753,800.0,569.6051,270.0,11.35,0.0,0.0, +2024-11-17 07:00:00,10.0659075,186.5601,25.75,1000.45465,41.111786,615.0,364.71786,313.0,11.55,0.0,0.0, +2024-11-17 08:00:00,8.501324,178.98903,25.3,1000.24414,40.985893,500.0,350.08838,262.0,11.1,0.0,0.0, +2024-11-17 09:00:00,7.078312,171.46931,25.4,1000.24695,43.382362,355.0,417.38123,148.0,12.05,0.0,0.0, +2024-11-17 10:00:00,5.6555285,182.53351,24.75,1000.52655,49.10348,221.0,487.99362,80.0,13.35,0.0,0.0, +2024-11-17 11:00:00,5.8200088,171.10422,22.65,1000.9647,53.755444,43.0,196.45903,21.0,12.8,0.0,0.0, +2024-11-17 12:00:00,3.9223719,162.95088,21.95,1001.4412,55.911,0.0,0.0,0.0,12.75,0.0,0.0, +2024-11-17 13:00:00,2.939813,138.44748,21.35,1001.42456,57.810574,0.0,0.0,0.0,12.7,0.0,0.0, +2024-11-17 14:00:00,1.9455076,115.906456,20.95,1001.21515,54.93007,0.0,0.0,0.0,11.55,0.0,0.0, +2024-11-17 15:00:00,2.540177,100.20392,22.25,1000.95374,46.07039,0.0,0.0,0.0,10.1,0.0,0.0, +2024-11-17 16:00:00,3.8529208,87.768875,23.75,1000.4993,36.893005,0.0,0.0,0.0,8.15,0.0,0.0, +2024-11-17 17:00:00,5.7118297,76.328674,25.65,1000.3526,33.838436,0.0,0.0,0.0,8.55,0.0,0.0, +2024-11-17 18:00:00,5.7421684,73.300674,25.45,1000.04974,40.086292,0.0,0.0,0.0,10.9,0.0,0.0, +2024-11-17 19:00:00,6.3120914,73.4311,25.1,999.74286,45.043633,0.0,0.0,0.0,12.35,0.0,0.0, +2024-11-17 20:00:00,7.911542,67.32439,24.85,999.43823,47.709015,0.0,0.0,0.0,13.0,0.0,0.0, +2024-11-17 21:00:00,8.564607,64.03336,24.55,999.5293,49.37118,0.0,0.0,0.0,13.25,0.0,0.0, +2024-11-17 22:00:00,7.8721027,64.41154,24.55,999.926,50.018833,21.0,103.18951,12.0,13.45,0.0,0.0, +2024-11-17 23:00:00,7.1233773,66.854195,26.15,1000.5649,46.074707,185.0,529.12244,58.0,13.65,0.0,0.0, +2024-11-18 00:00:00,7.642807,57.557583,28.35,1000.52466,42.105724,411.0,723.8369,85.0,14.25,0.0,0.0, +2024-11-18 01:00:00,6.5507636,35.99532,31.25,1000.60126,36.331856,634.0,836.53375,98.0,14.55,0.0,0.0, +2024-11-18 02:00:00,5.5011363,11.003508,33.75,1000.4676,27.702276,824.0,898.3332,107.0,12.55,0.0,0.0, +2024-11-18 03:00:00,5.945166,288.13028,32.1,1000.6232,32.34262,859.0,762.1612,164.0,13.5,0.0,0.0, +2024-11-18 04:00:00,7.630531,285.58447,30.65,1000.58563,42.600822,956.0,794.49054,182.0,16.5,0.0,0.0, +2024-11-18 05:00:00,8.050156,292.26404,30.3,1000.5762,43.050343,877.0,672.85406,217.0,16.35,0.0,0.0, +2024-11-18 06:00:00,6.924774,284.6383,29.25,1000.84625,45.877903,879.0,797.6397,136.0,16.4,0.0,0.0, +2024-11-18 07:00:00,6.798897,288.43503,28.8,1000.73505,43.75096,866.0,911.5107,110.0,15.25,0.0,0.0, +2024-11-18 08:00:00,6.3043633,291.88583,27.6,1000.8022,46.020966,688.0,861.27606,101.0,14.95,0.0,0.0, +2024-11-18 09:00:00,5.7915883,296.12256,26.4,1000.96826,50.02135,471.0,771.0165,87.0,15.15,0.0,0.0, +2024-11-18 10:00:00,5.0621142,302.90524,25.15,1001.33105,54.390095,239.0,593.69775,66.0,15.3,0.0,0.0, +2024-11-18 11:00:00,4.022748,302.3073,23.5,1001.78174,62.594124,47.0,220.75214,22.0,15.95,0.0,0.0, +2024-11-18 12:00:00,3.828838,310.76352,22.55,1002.15247,66.93558,0.0,0.0,0.0,16.1,0.0,0.0, +2024-11-18 13:00:00,3.662308,327.8288,22.05,1002.8326,67.69369,0.0,0.0,0.0,15.8,0.0,0.0, +2024-11-18 14:00:00,2.6400757,307.30402,21.25,1002.9094,75.28256,0.0,0.0,0.0,16.7,0.0,0.5, +2024-11-18 15:00:00,2.9698482,315.0001,20.3,1003.3786,84.226685,0.0,0.0,0.0,17.55,0.0,0.1, +2024-11-18 16:00:00,1.3462912,338.19852,19.55,1002.5641,87.67712,0.0,0.0,0.0,17.45,0.0,0.0, +2024-11-18 17:00:00,1.3647344,351.57312,19.4,1001.8655,83.860085,0.0,0.0,0.0,16.6,0.0,0.0, +2024-11-18 18:00:00,2.1100948,323.67307,19.5,1002.0669,83.60547,0.0,0.0,0.0,16.65,0.0,0.0, +2024-11-18 19:00:00,1.85,341.07526,19.0,1002.74664,89.30904,0.0,0.0,0.0,17.2,0.0,0.0, +2024-11-18 20:00:00,1.0700467,37.405437,18.75,1002.6406,91.28951,0.0,0.0,0.0,17.3,0.0,0.0, +2024-11-18 21:00:00,1.8062391,4.763556,18.65,1003.2328,92.44431,0.0,0.0,0.0,17.4,0.0,0.2, +2024-11-18 22:00:00,2.884874,25.676775,18.8,1003.4352,92.16147,12.0,34.19749,9.0,17.5,0.0,1.9, +2024-11-18 23:00:00,2.557831,4.484529,20.9,1003.9906,79.89787,112.0,149.39828,76.0,17.3,0.0,0.5, +2024-11-19 00:00:00,2.751363,340.9064,23.15,1003.8549,67.699524,324.0,494.3887,101.0,16.85,0.0,0.0, +2024-11-19 01:00:00,3.1084561,348.87085,20.9,1004.28815,90.85816,136.0,6.237895,132.0,19.35,0.0,0.4, +2024-11-19 02:00:00,4.383207,348.81827,21.75,1004.5105,85.444214,251.0,60.108234,203.0,19.2,0.0,3.5, +2024-11-19 03:00:00,3.3533564,357.43628,21.0,1003.7951,91.4312,122.0,2.192248,120.0,19.55,0.0,2.0, +2024-11-19 04:00:00,4.244997,344.9816,21.45,1003.51013,90.3328,317.0,8.207294,309.0,19.8,0.0,1.9, +2024-11-19 05:00:00,5.526753,331.34827,23.45,1003.1692,73.76958,472.0,68.25388,405.0,18.5,0.0,1.0, +2024-11-19 06:00:00,5.2478566,329.03632,24.75,1002.6095,65.297935,556.0,157.63951,409.0,17.8,0.0,0.4, +2024-11-19 07:00:00,4.400284,306.21893,23.8,1002.2859,70.22008,342.0,66.20636,287.0,18.05,0.0,0.6, +2024-11-19 08:00:00,4.540099,286.6389,22.8,1001.7626,75.297035,362.0,168.31096,247.0,18.2,0.0,0.9, +2024-11-19 09:00:00,4.4141817,279.78235,21.45,1001.62573,82.52451,167.0,87.97646,123.0,18.35,0.0,0.0, +2024-11-19 10:00:00,4.570832,289.82254,21.1,1001.616,84.05068,151.0,170.15738,101.0,18.3,0.0,0.0, +2024-11-19 11:00:00,3.8587563,301.21835,20.35,1002.0908,88.02298,41.0,104.792206,29.0,18.3,0.0,0.0, +2024-11-19 12:00:00,3.2901368,306.34756,19.95,1002.17865,89.66315,0.0,0.0,0.0,18.2,0.0,0.0, +2024-11-19 13:00:00,2.5806975,324.46225,20.0,1002.67584,88.54785,0.0,0.0,0.0,18.05,0.0,0.0, +2024-11-19 14:00:00,2.5079873,336.5014,19.75,1002.47046,89.36681,0.0,0.0,0.0,17.95,0.0,0.0, +2024-11-19 15:00:00,2.1360009,343.68607,19.6,1001.9705,89.63696,0.0,0.0,0.0,17.85,0.0,0.0, +2024-11-19 16:00:00,2.5495098,348.6901,19.5,1001.67017,89.91211,0.0,0.0,0.0,17.8,0.0,0.0, +2024-11-19 17:00:00,2.804015,328.86108,19.65,1001.5752,88.519066,0.0,0.0,0.0,17.7,0.0,0.0, +2024-11-19 18:00:00,2.857009,327.1443,19.35,1001.1699,89.6182,0.0,0.0,0.0,17.6,0.0,0.0, +2024-11-19 19:00:00,2.7504544,332.9692,19.5,1001.27344,88.50665,0.0,0.0,0.0,17.55,0.0,0.0, +2024-11-19 20:00:00,2.7784889,329.74365,19.55,1001.37396,87.95424,0.0,0.0,0.0,17.5,0.0,0.0, +2024-11-19 21:00:00,2.594706,334.9164,19.4,1001.46875,88.77813,0.0,0.0,0.0,17.5,0.0,0.1, +2024-11-19 22:00:00,3.2927952,311.92245,18.85,1001.55255,94.218956,8.0,11.339307,7.0,17.9,0.0,0.2, +2024-11-19 23:00:00,3.6417713,278.68628,19.5,1001.67017,88.50665,89.0,95.11003,66.0,17.55,0.0,0.1, +2024-11-20 00:00:00,3.9579034,266.37857,20.55,1001.79895,81.8967,294.0,343.17432,139.0,17.35,0.0,0.1, +2024-11-20 01:00:00,3.4713109,228.50363,21.55,1001.43024,77.01801,586.0,696.61774,139.0,17.35,0.0,0.2, +2024-11-20 02:00:00,3.6100557,233.44743,22.25,1001.54877,71.49818,761.0,766.043,149.0,16.85,0.0,0.1, +2024-11-20 03:00:00,4.527693,239.47037,22.6,1001.65784,68.891106,902.0,800.939,171.0,16.6,0.0,0.0, +2024-11-20 04:00:00,5.0361195,240.89024,22.65,1001.46063,69.120026,1018.0,900.2947,140.0,16.7,0.0,0.0, +2024-11-20 05:00:00,5.568213,242.74475,22.5,1001.3574,68.87155,1024.0,897.8629,142.0,16.5,0.0,0.0, +2024-11-20 06:00:00,5.574271,246.19405,22.3,1001.0542,67.74404,947.0,861.278,143.0,16.05,0.0,0.0, +2024-11-20 07:00:00,5.797629,246.08768,22.05,1000.74976,68.345634,835.0,829.26086,145.0,15.95,0.0,0.0, +2024-11-20 08:00:00,6.1971765,241.5741,21.15,1000.5262,73.6086,599.0,632.1509,166.0,16.25,0.0,0.2, +2024-11-20 09:00:00,6.150203,233.59581,20.55,1000.50964,76.13309,315.0,282.74622,173.0,16.2,0.0,0.3, +2024-11-20 10:00:00,5.851709,229.50499,20.0,1001.089,78.01458,166.0,270.00705,86.0,16.05,0.0,0.1, +2024-11-20 11:00:00,4.737615,224.9999,19.15,1001.6601,83.03456,39.0,146.84047,22.0,16.2,0.0,0.0, +2024-11-20 12:00:00,4.09176,212.52487,18.85,1001.8501,86.509155,0.0,0.0,0.0,16.55,0.0,0.1, +2024-11-20 13:00:00,2.6504717,215.78906,18.8,1002.14594,86.504364,0.0,0.0,0.0,16.5,0.0,0.0, +2024-11-20 14:00:00,1.9474342,228.12221,18.3,1002.03265,88.688705,0.0,0.0,0.0,16.4,0.0,0.0, +2024-11-20 15:00:00,2.274313,236.65927,18.3,1001.7351,89.254715,0.0,0.0,0.0,16.5,0.0,0.0, +2024-11-20 16:00:00,2.3200216,232.88306,17.95,1001.3284,91.23831,0.0,0.0,0.0,16.5,0.0,0.0, +2024-11-20 17:00:00,2.2388613,246.29735,17.75,1001.1244,91.51637,0.0,0.0,0.0,16.35,0.0,0.0, +2024-11-20 18:00:00,2.6100767,249.82925,17.7,1001.0237,91.80508,0.0,0.0,0.0,16.35,0.0,0.0, +2024-11-20 19:00:00,2.7986605,251.24126,17.55,1001.01953,92.08898,0.0,0.0,0.0,16.25,0.0,0.0, +2024-11-20 20:00:00,3.231099,248.19853,17.8,1001.02655,89.78678,0.0,0.0,0.0,16.1,0.0,0.0, +2024-11-20 21:00:00,3.3320415,244.20403,17.8,1001.42316,88.93128,0.0,0.0,0.0,15.95,0.0,0.0, +2024-11-20 22:00:00,3.5672119,238.76085,18.15,1001.82996,88.39433,18.0,22.571676,16.0,16.2,0.0,0.0, +2024-11-20 23:00:00,4.229953,241.01128,19.05,1002.3515,82.49461,170.0,403.96478,72.0,16.0,0.0,0.1, +2024-11-21 00:00:00,4.923921,237.43958,19.3,1002.7552,83.052315,363.0,544.0235,117.0,16.35,0.0,0.4, +2024-11-21 01:00:00,5.2201533,249.82925,20.85,1003.09674,71.46946,554.0,644.8309,140.0,15.5,0.0,0.1, +2024-11-21 02:00:00,5.211766,241.95995,20.8,1003.2935,72.84632,741.0,656.9068,216.0,15.75,0.0,0.4, +2024-11-21 03:00:00,5.4520636,234.70656,21.3,1003.20844,69.29912,814.0,683.4606,190.0,15.45,0.0,0.4, +2024-11-21 04:00:00,5.701096,228.19963,21.7,1002.92194,66.12053,806.0,566.77856,253.0,15.1,0.0,0.4, +2024-11-21 05:00:00,5.9548297,220.91429,21.8,1002.82556,66.35418,906.0,680.5652,237.0,15.25,0.0,0.3, +2024-11-21 06:00:00,5.853418,214.9119,21.7,1002.92194,66.7608,870.0,697.72546,218.0,15.25,0.0,0.1, +2024-11-21 07:00:00,6.191123,211.1224,21.7,1002.92194,66.7608,790.0,755.95526,160.0,15.25,0.0,0.0, +2024-11-21 08:00:00,6.140033,210.32352,21.2,1003.10645,68.39565,657.0,796.6133,110.0,15.15,0.0,0.0, +2024-11-21 09:00:00,6.3560996,204.14554,20.55,1003.2866,70.956825,441.0,656.36584,110.0,15.1,0.0,0.1, +2024-11-21 10:00:00,6.0557823,198.28545,19.75,1003.85895,74.31616,228.0,505.48898,77.0,15.05,0.0,0.0, +2024-11-21 11:00:00,5.246189,190.9886,18.7,1004.4241,79.84982,48.0,196.53896,25.0,15.15,0.0,0.0, +2024-11-21 12:00:00,5.07001,185.09203,18.1,1005.20044,84.25088,0.0,0.0,0.0,15.4,0.0,0.1, +2024-11-21 13:00:00,4.9010205,178.83089,17.7,1005.7838,85.02236,0.0,0.0,0.0,15.15,0.0,0.0, +2024-11-21 14:00:00,4.5177426,174.92049,17.4,1006.17194,87.20502,0.0,0.0,0.0,15.25,0.0,0.1, +2024-11-21 15:00:00,4.1282563,168.8262,17.1,1006.2623,90.02264,0.0,0.0,0.0,15.45,0.0,0.1, +2024-11-21 16:00:00,3.9702015,163.16245,16.8,1005.95624,90.58069,0.0,0.0,0.0,15.25,0.0,0.0, +2024-11-21 17:00:00,3.782195,155.8068,16.35,1005.64575,92.909805,0.0,0.0,0.0,15.2,0.0,0.0, +2024-11-21 18:00:00,3.4238136,151.1893,16.2,1005.64136,92.9019,0.0,0.0,0.0,15.05,0.0,0.0, +2024-11-21 19:00:00,3.3018935,147.99466,16.0,1005.83374,93.491295,0.0,0.0,0.0,14.95,0.0,0.0, +2024-11-21 20:00:00,2.9841247,148.70702,16.05,1006.43036,92.29759,0.0,0.0,0.0,14.8,0.0,0.0, +2024-11-21 21:00:00,2.5811818,135.78474,15.75,1006.719,92.57878,0.0,0.0,0.0,14.55,0.0,0.0, +2024-11-21 22:00:00,3.1815877,120.191536,16.05,1007.422,88.78949,19.0,56.19281,14.0,14.2,0.0,0.0, +2024-11-21 23:00:00,3.481738,125.0595,17.2,1008.2488,79.12466,164.0,295.96027,92.0,13.55,0.0,0.0, +2024-11-22 00:00:00,3.628016,150.25522,18.95,1008.5966,66.622215,395.0,642.91644,104.0,12.6,0.0,0.0, +2024-11-22 01:00:00,4.4421277,168.31065,21.0,1008.8533,49.2337,581.0,661.6699,156.0,9.95,0.0,0.0, +2024-11-22 02:00:00,5.0022492,178.28168,21.95,1008.6815,45.374966,682.0,457.82736,316.0,9.6,0.0,0.0, +2024-11-22 03:00:00,5.8757977,185.37091,22.55,1008.5002,44.48729,845.0,643.838,257.0,9.85,0.0,0.0, +2024-11-22 04:00:00,7.0123105,190.26825,22.4,1008.19824,48.472454,1059.0,935.35095,146.0,11.0,0.0,0.0, +2024-11-22 05:00:00,7.229281,192.7867,22.1,1008.0908,47.910435,1069.0,947.49,137.0,10.55,0.0,0.0, +2024-11-22 06:00:00,7.2183795,192.39966,21.9,1007.78754,53.036343,1020.0,964.2802,118.0,11.9,0.0,0.0, +2024-11-22 07:00:00,7.200694,189.59306,22.05,1007.2958,53.250107,893.0,933.2867,114.0,12.1,0.0,0.0, +2024-11-22 08:00:00,7.7027597,186.70975,21.65,1007.0864,56.573093,711.0,881.83307,104.0,12.65,0.0,0.0, +2024-11-22 09:00:00,7.905694,182.1747,20.6,1007.25494,62.34498,491.0,789.9585,91.0,13.15,0.0,0.0, +2024-11-22 10:00:00,7.3542504,178.05196,19.95,1007.63336,64.688095,256.0,620.97565,69.0,13.1,0.0,0.0, +2024-11-22 11:00:00,7.2091956,170.0151,18.75,1008.1943,72.48078,55.0,253.65446,25.0,13.7,0.0,0.0, +2024-11-22 12:00:00,6.708577,167.51752,18.4,1008.5809,73.84564,0.0,0.0,0.0,13.65,0.0,0.0, +2024-11-22 13:00:00,6.868042,163.93994,18.25,1008.87396,72.62707,0.0,0.0,0.0,13.25,0.0,0.0, +2024-11-22 14:00:00,7.05195,161.82188,18.0,1008.76776,74.50117,0.0,0.0,0.0,13.4,0.0,0.0, +2024-11-22 15:00:00,6.529357,153.63123,17.6,1008.65686,72.51003,0.0,0.0,0.0,12.6,0.0,0.0, +2024-11-22 16:00:00,5.6449094,147.29527,16.75,1008.4339,69.310585,0.0,0.0,0.0,11.1,0.0,0.0, +2024-11-22 17:00:00,4.8600416,143.3658,16.0,1008.5112,69.624535,0.0,0.0,0.0,10.45,0.0,0.0, +2024-11-22 18:00:00,4.4687805,139.53786,15.3,1008.2923,72.331184,0.0,0.0,0.0,10.35,0.0,0.0, +2024-11-22 19:00:00,3.996561,136.52072,14.8,1008.4761,74.197845,0.0,0.0,0.0,10.25,0.0,0.0, +2024-11-22 20:00:00,3.8538942,134.47443,14.5,1008.5664,75.14412,0.0,0.0,0.0,10.15,0.0,0.0, +2024-11-22 21:00:00,3.2927952,131.92245,14.2,1008.8551,76.10551,0.0,0.0,0.0,10.05,0.0,0.0, +2024-11-22 22:00:00,3.2882366,134.38402,14.7,1009.2665,74.180504,25.0,123.17252,14.0,10.15,0.0,0.0, +2024-11-22 23:00:00,3.335416,139.86458,17.0,1009.532,65.33484,199.0,565.8829,61.0,10.45,0.0,0.0, +2024-11-23 00:00:00,3.4121108,145.14548,19.8,1009.3153,55.739693,433.0,766.03345,86.0,10.7,0.0,0.0, +2024-11-23 01:00:00,3.3320415,154.20403,23.15,1009.0126,47.24828,660.0,871.55817,100.0,11.3,0.0,0.0, +2024-11-23 02:00:00,3.7232378,165.21722,25.65,1008.38715,41.2199,853.0,929.22107,110.0,11.5,0.0,0.0, +2024-11-23 03:00:00,4.3640575,184.6,27.15,1007.2378,40.42907,994.0,961.14233,116.0,12.55,0.0,0.0, +2024-11-23 04:00:00,5.8045244,197.03024,26.85,1006.6346,50.46141,1072.0,975.954,119.0,15.7,0.0,0.0, +2024-11-23 05:00:00,6.4903774,195.6423,26.75,1005.6398,53.75728,1079.0,975.3441,119.0,16.6,0.0,0.0, +2024-11-23 06:00:00,7.156815,195.3956,26.8,1005.0459,53.59937,1017.0,962.2578,116.0,16.6,0.0,0.0, +2024-11-23 07:00:00,8.227546,191.9245,26.1,1004.63025,49.143932,890.0,933.04724,110.0,14.6,0.0,0.0, +2024-11-23 08:00:00,7.8160095,183.66771,24.85,1004.5961,51.58159,707.0,876.8009,102.0,14.2,0.0,0.0, +2024-11-23 09:00:00,7.2639523,176.44833,24.45,1004.3867,57.25997,489.0,786.774,89.0,15.45,0.0,0.0, +2024-11-23 10:00:00,6.8720446,175.40955,23.0,1004.54504,64.513565,257.0,622.6511,68.0,15.95,0.0,0.0, +2024-11-23 11:00:00,7.242237,162.31552,21.3,1004.89453,64.77003,57.0,267.76562,25.0,14.4,0.0,0.0, +2024-11-23 12:00:00,6.5520988,164.05453,21.0,1005.0845,68.79701,0.0,0.0,0.0,15.05,0.0,0.0, +2024-11-23 13:00:00,5.600446,159.62347,20.35,1005.16534,69.1136,0.0,0.0,0.0,14.5,0.0,0.0, +2024-11-23 14:00:00,3.9195027,150.16455,19.7,1005.04785,75.997505,0.0,0.0,0.0,15.35,0.0,0.0, +2024-11-23 15:00:00,3.1384711,149.34941,18.95,1004.1338,82.74624,0.0,0.0,0.0,15.95,0.0,0.0, +2024-11-23 16:00:00,3.0153773,139.70793,18.55,1003.4283,84.30082,0.0,0.0,0.0,15.85,0.0,0.0, +2024-11-23 17:00:00,2.7335873,129.80553,18.2,1003.21985,82.390564,0.0,0.0,0.0,15.15,0.0,0.0, +2024-11-23 18:00:00,3.1910028,125.4334,18.3,1002.52856,76.01795,0.0,0.0,0.0,14.0,0.0,0.0, +2024-11-23 19:00:00,3.2202485,115.76928,19.1,1002.1545,66.4357,0.0,0.0,0.0,12.7,0.0,0.0, +2024-11-23 20:00:00,2.8969812,111.25058,19.9,1002.1774,59.97675,0.0,0.0,0.0,11.9,0.0,0.0, +2024-11-23 21:00:00,3.167412,101.84206,20.6,1001.9985,57.24874,0.0,0.0,0.0,11.85,0.0,0.0, +2024-11-23 22:00:00,3.4,90.0,21.8,1002.2305,53.01044,24.0,122.78651,13.0,11.8,0.0,0.0, +2024-11-23 23:00:00,3.6718524,96.253944,24.9,1002.4153,45.583984,189.0,519.70984,62.0,12.35,0.0,0.0, +2024-11-24 00:00:00,3.600347,89.2043,28.0,1002.0032,37.96653,409.0,697.1736,93.0,12.35,0.0,0.0, +2024-11-24 01:00:00,4.4195585,68.07817,31.7,1000.7121,33.191914,486.0,437.23938,205.0,13.55,0.0,0.0, +2024-11-24 02:00:00,2.8744566,40.06073,34.25,1000.28204,30.882448,697.0,583.9672,230.0,14.65,0.0,0.0, +2024-11-24 03:00:00,2.3600848,233.61555,33.35,999.66345,40.57868,807.0,644.6525,218.0,18.15,0.0,0.0, +2024-11-24 04:00:00,4.9300103,216.75377,31.25,999.4108,46.99809,899.0,725.8255,190.0,18.6,0.0,0.0, +2024-11-24 05:00:00,4.497221,188.3102,30.55,999.0947,46.37231,854.0,687.41003,177.0,17.75,0.0,0.0, +2024-11-24 06:00:00,4.812743,209.22795,29.55,998.87,51.160988,771.0,581.4912,226.0,18.4,0.0,0.0, +2024-11-24 07:00:00,4.167733,210.25635,29.45,999.1651,49.087578,798.0,756.0552,165.0,17.65,0.0,0.0, +2024-11-24 08:00:00,5.7838135,214.7892,26.9,998.8986,58.581722,625.0,691.088,147.0,18.1,0.0,0.0, +2024-11-24 09:00:00,6.2771406,198.57936,24.5,998.7346,66.281296,469.0,726.82513,98.0,17.8,0.0,0.0, +2024-11-24 10:00:00,5.472203,199.75957,23.05,999.1908,73.93325,247.0,581.84863,69.0,18.15,0.0,0.0, +2024-11-24 11:00:00,4.992494,187.48079,22.0,999.85583,80.550606,50.0,207.06696,25.0,18.5,0.0,0.0, +2024-11-24 12:00:00,5.3688917,175.19214,21.4,1000.83093,84.08401,0.0,0.0,0.0,18.6,0.0,0.0, +2024-11-24 13:00:00,3.8003287,180.75383,20.45,1001.5978,86.11909,0.0,0.0,0.0,18.05,0.0,0.0, +2024-11-24 14:00:00,3.5556293,183.22446,20.1,1002.0836,89.67434,0.0,0.0,0.0,18.35,0.0,0.0, +2024-11-24 15:00:00,3.5014284,181.63654,19.85,1002.1758,91.07334,0.0,0.0,0.0,18.35,0.0,0.0, +2024-11-24 16:00:00,4.0650954,184.93913,19.65,1001.8727,91.63371,0.0,0.0,0.0,18.25,0.0,0.0, +2024-11-24 17:00:00,5.5682135,184.63538,19.6,1001.67303,91.05707,0.0,0.0,0.0,18.1,0.0,0.0, +2024-11-24 18:00:00,5.853418,181.95802,19.5,1001.67017,91.05056,0.0,0.0,0.0,18.0,0.0,0.0, +2024-11-24 19:00:00,5.903389,181.94144,19.4,1001.46875,90.188446,0.0,0.0,0.0,17.75,0.0,0.0, +2024-11-24 20:00:00,6.100205,179.53038,19.5,1001.67017,88.2279,0.0,0.0,0.0,17.5,0.0,0.0, +2024-11-24 21:00:00,6.207254,177.22984,19.25,1002.1588,88.48597,0.0,0.0,0.0,17.3,0.0,0.0, +2024-11-24 22:00:00,7.0087447,177.13765,19.5,1002.8603,86.02541,16.0,44.53299,12.0,17.1,0.0,0.0, +2024-11-24 23:00:00,7.930952,174.93648,20.1,1003.47205,80.04204,112.0,130.73114,80.0,16.55,0.0,0.0, +2024-11-25 00:00:00,8.1555195,173.31078,20.8,1003.78937,73.31357,217.0,121.29147,162.0,15.85,0.0,0.0, +2024-11-25 01:00:00,8.728115,175.4,21.6,1003.8117,68.475105,421.0,227.15248,275.0,15.55,0.0,0.0, +2024-11-25 02:00:00,9.216425,176.57886,21.8,1003.6191,64.66911,488.0,115.03586,396.0,14.85,0.0,0.0, +2024-11-25 03:00:00,9.856216,177.96501,23.1,1003.5561,57.30038,783.0,434.45105,386.0,14.2,0.0,0.0, +2024-11-25 04:00:00,9.460708,182.72626,23.45,1003.36755,56.46602,1008.0,825.8965,201.0,14.3,0.0,0.0, +2024-11-25 05:00:00,9.718282,186.79585,23.15,1003.06146,58.43472,1055.0,941.7343,127.0,14.55,0.0,0.0, +2024-11-25 06:00:00,10.045024,185.42673,22.7,1002.94995,59.27803,1003.0,942.30023,119.0,14.35,0.0,0.0, +2024-11-25 07:00:00,10.22069,183.6462,22.25,1002.83813,60.72453,883.0,917.1217,114.0,14.3,0.0,0.0, +2024-11-25 08:00:00,10.20784,182.2457,21.75,1002.7252,58.097218,709.0,869.7517,106.0,13.15,0.0,0.0, +2024-11-25 09:00:00,10.551066,179.18544,20.7,1002.6956,62.57131,497.0,792.2649,91.0,13.3,0.0,0.0, +2024-11-25 10:00:00,10.185529,175.21309,19.5,1003.25696,66.73697,264.0,626.0544,71.0,13.15,0.0,0.0, +2024-11-25 11:00:00,9.259725,173.48907,18.45,1004.0205,71.72209,62.0,278.80792,28.0,13.25,0.0,0.0, +2024-11-25 12:00:00,8.846045,171.5494,17.95,1004.7002,72.100105,0.0,0.0,0.0,12.85,0.0,0.0, +2024-11-25 13:00:00,8.162415,170.48006,17.5,1005.0839,72.0178,0.0,0.0,0.0,12.4,0.0,0.0, +2024-11-25 14:00:00,7.8366127,167.4712,17.25,1005.3742,72.685135,0.0,0.0,0.0,12.3,0.0,0.0, +2024-11-25 15:00:00,7.6100264,163.58914,17.0,1005.36694,71.92595,0.0,0.0,0.0,11.9,0.0,0.0, +2024-11-25 16:00:00,7.05762,159.25385,16.55,1005.15564,72.08086,0.0,0.0,0.0,11.5,0.0,0.0, +2024-11-25 17:00:00,6.464132,154.8225,16.2,1004.94727,71.77812,0.0,0.0,0.0,11.1,0.0,0.0, +2024-11-25 18:00:00,5.7306194,150.75127,15.85,1004.8377,70.06087,0.0,0.0,0.0,10.4,0.0,0.0, +2024-11-25 19:00:00,4.9236674,145.34158,15.15,1004.8175,67.16018,0.0,0.0,0.0,9.1,0.0,0.0, +2024-11-25 20:00:00,4.654299,140.6673,14.6,1004.99945,63.934204,0.0,0.0,0.0,7.85,0.0,0.0, +2024-11-25 21:00:00,4.774149,136.27295,14.55,1005.39484,58.280907,0.0,0.0,0.0,6.45,0.0,0.0, +2024-11-25 22:00:00,5.20024,133.05193,15.1,1006.105,48.62313,26.0,133.31967,14.0,4.35,0.0,0.0, +2024-11-25 23:00:00,6.0440054,128.95592,16.6,1006.843,37.82121,203.0,575.285,62.0,2.15,0.0,0.0, +2024-11-26 00:00:00,5.9816384,128.21107,18.3,1006.8921,32.430954,439.0,778.27606,86.0,1.5,0.0,0.0, +2024-11-26 01:00:00,5.7107353,130.38358,20.6,1006.9574,28.617226,668.0,883.7153,100.0,1.75,0.0,0.0, +2024-11-26 02:00:00,5.315073,138.81418,22.8,1006.52344,24.661388,864.0,942.80676,110.0,1.55,0.0,0.0, +2024-11-26 03:00:00,5.008493,148.05528,24.7,1005.88153,21.221533,1009.0,976.06195,117.0,1.05,0.0,0.0, +2024-11-26 04:00:00,5.3303375,163.09476,26.0,1005.22296,19.016289,1090.0,992.44434,120.0,0.6,0.0,0.0, +2024-11-26 05:00:00,6.6567636,177.41704,26.25,1004.5351,19.146822,1101.0,994.9812,120.0,0.9,0.0,0.0, +2024-11-26 06:00:00,8.503234,186.4145,25.2,1004.0105,25.222437,1041.0,982.96783,118.0,3.9,0.0,0.0, +2024-11-26 07:00:00,9.470084,186.97484,23.5,1003.46796,36.94732,913.0,953.8808,112.0,7.95,0.0,0.0, +2024-11-26 08:00:00,10.05112,180.85507,21.2,1003.5032,49.617985,729.0,900.8193,103.0,10.25,0.0,0.0, +2024-11-26 09:00:00,9.288972,174.74982,21.0,1003.7951,52.453182,505.0,804.74176,91.0,10.9,0.0,0.0, +2024-11-26 10:00:00,8.72611,172.42714,20.25,1004.26984,60.257183,269.0,640.67126,70.0,12.3,0.0,0.0, +2024-11-26 11:00:00,8.031967,169.5995,19.15,1004.83374,68.206474,63.0,292.33096,27.0,13.15,0.0,0.0, +2024-11-26 12:00:00,7.4464755,165.21722,18.75,1005.3183,70.38826,0.0,0.0,0.0,13.25,0.0,0.0, +2024-11-26 13:00:00,6.0466933,156.61476,18.3,1005.70197,71.92884,0.0,0.0,0.0,13.15,0.0,0.0, +2024-11-26 14:00:00,4.981215,144.39539,17.8,1005.98505,68.15736,0.0,0.0,0.0,11.85,0.0,0.0, +2024-11-26 15:00:00,4.101829,135.98767,16.85,1005.9578,63.792496,0.0,0.0,0.0,9.95,0.0,0.0, +2024-11-26 16:00:00,3.7831867,135.53539,16.9,1005.66156,53.887104,0.0,0.0,0.0,7.5,0.0,0.0, +2024-11-26 17:00:00,4.106702,132.03899,17.5,1005.5798,39.59046,0.0,0.0,0.0,3.6,0.0,0.0, +2024-11-26 18:00:00,4.2898135,130.74608,17.45,1005.1815,38.747375,0.0,0.0,0.0,3.25,0.0,0.0, +2024-11-26 19:00:00,4.1934476,129.19327,17.05,1005.1701,39.739807,0.0,0.0,0.0,3.25,0.0,0.0, +2024-11-26 20:00:00,4.360046,126.60716,16.65,1005.1585,40.61713,0.0,0.0,0.0,3.2,0.0,0.0, +2024-11-26 21:00:00,4.674666,122.33016,16.5,1005.2533,40.573677,0.0,0.0,0.0,3.05,0.0,0.0, +2024-11-26 22:00:00,5.1684136,114.58156,16.95,1005.7623,39.29179,26.0,133.11185,14.0,3.0,0.0,0.0, +2024-11-26 23:00:00,5.1264024,110.55612,19.05,1006.1201,34.67695,202.0,574.7535,61.0,3.1,0.0,0.0, +2024-11-27 00:00:00,6.238991,99.68872,21.55,1006.29004,29.19374,437.0,776.0176,85.0,2.85,0.0,0.0, +2024-11-27 01:00:00,6.7742157,98.48886,24.55,1006.0758,24.782677,666.0,879.1422,101.0,3.1,0.0,0.0, +2024-11-27 02:00:00,6.6921597,96.43465,26.95,1005.8436,20.673899,861.0,939.13525,110.0,2.55,0.0,0.0, +2024-11-27 03:00:00,6.238991,99.68872,28.9,1005.39996,17.869331,1005.0,972.74347,116.0,2.1,0.0,0.0, +2024-11-27 04:00:00,5.6044626,105.52418,30.55,1004.3526,15.401456,1086.0,988.12,120.0,1.35,0.0,0.0, +2024-11-27 05:00:00,4.6970735,117.928894,31.4,1003.3829,14.00237,1098.0,990.41693,121.0,0.7,0.0,0.0, +2024-11-27 06:00:00,4.4263415,131.7947,32.05,1002.80457,13.3019905,1039.0,979.9593,118.0,0.5,0.0,0.0, +2024-11-27 07:00:00,4.527693,149.47037,32.35,1002.11804,13.364346,913.0,952.5012,112.0,0.8,0.0,0.0, +2024-11-27 08:00:00,6.0848174,173.86787,29.95,1001.7575,23.12516,731.0,901.61926,103.0,6.65,0.0,0.0, +2024-11-27 09:00:00,6.124745,174.848,27.65,1001.3987,43.155415,510.0,811.34937,91.0,14.0,0.0,0.0, +2024-11-27 10:00:00,5.9052944,177.57372,26.05,1001.7524,51.395554,272.0,645.542,70.0,15.25,0.0,0.0, +2024-11-27 11:00:00,5.375872,170.36253,24.4,1002.2034,57.247833,65.0,297.5887,28.0,15.4,0.0,0.0, +2024-11-27 12:00:00,4.4659824,158.31764,23.85,1002.7833,53.537907,0.0,0.0,0.0,13.85,0.0,0.0, +2024-11-27 13:00:00,3.6786547,148.90276,22.1,1003.52844,54.145252,0.0,0.0,0.0,12.4,0.0,0.0, +2024-11-27 14:00:00,4.424082,124.40853,23.3,1003.8593,32.831234,0.0,0.0,0.0,6.05,0.0,0.0, +2024-11-27 15:00:00,5.2595153,114.1284,23.5,1003.3687,31.552479,0.0,0.0,0.0,5.65,0.0,0.0, +2024-11-27 16:00:00,5.6446877,108.59554,23.0,1003.0573,33.20198,0.0,0.0,0.0,5.95,0.0,0.0, +2024-11-27 17:00:00,6.354723,104.582985,22.7,1002.45404,33.69439,0.0,0.0,0.0,5.9,0.0,0.0, +2024-11-27 18:00:00,6.7670155,98.070145,22.35,1001.94836,34.181164,0.0,0.0,0.0,5.8,0.0,0.0, +2024-11-27 19:00:00,7.0501776,89.593666,22.0,1001.93866,34.67673,0.0,0.0,0.0,5.7,0.0,0.0, +2024-11-27 20:00:00,7.510326,82.73314,21.7,1002.0293,34.71104,0.0,0.0,0.0,5.45,0.0,0.0, +2024-11-27 21:00:00,7.962412,78.40785,21.55,1002.422,34.308525,0.0,0.0,0.0,5.15,0.0,0.0, +2024-11-27 22:00:00,7.7770495,77.75089,21.65,1003.01996,34.69672,26.0,132.973,14.0,5.4,0.0,0.0, +2024-11-27 23:00:00,7.6975646,78.7631,23.45,1003.5659,32.535355,202.0,574.4397,61.0,6.05,0.0,0.0, +2024-11-28 00:00:00,8.698995,77.72125,25.75,1003.6288,28.847582,435.0,771.69354,85.0,6.3,0.0,0.0, +2024-11-28 01:00:00,8.053725,77.085365,29.45,1003.3316,24.047081,661.0,873.10583,100.0,6.8,0.0,0.0, +2024-11-28 02:00:00,7.5960517,73.95093,32.05,1002.80457,20.798197,851.0,928.02563,109.0,6.85,0.0,0.0, +2024-11-28 03:00:00,6.8633084,72.62099,34.2,1002.1658,18.815163,990.0,957.4366,115.0,7.15,0.0,0.0, +2024-11-28 04:00:00,5.7584724,69.67678,35.95,1001.41675,17.851942,1067.0,970.5377,118.0,7.8,0.0,0.0, +2024-11-28 05:00:00,4.4659824,68.31765,37.55,1000.7627,16.467117,1077.0,970.68536,119.0,7.9,0.0,0.0, +2024-11-28 06:00:00,1.7804494,141.84273,36.35,999.93835,17.463808,1017.0,956.7793,117.0,7.8,0.0,0.0, +2024-11-28 07:00:00,5.287958,193.11644,34.8,999.2047,25.284168,893.0,928.58453,111.0,12.05,0.0,0.0, +2024-11-28 08:00:00,6.324753,191.39873,33.35,998.77057,31.038017,715.0,878.08655,102.0,13.95,0.0,0.0, +2024-11-28 09:00:00,7.1688566,190.44777,31.75,998.33234,33.74949,500.0,790.93176,90.0,13.85,0.0,0.0, +2024-11-28 10:00:00,7.1086216,182.8221,29.55,998.47314,38.523357,269.0,634.53394,69.0,13.95,0.0,0.0, +2024-11-28 11:00:00,6.404881,167.37418,28.25,998.6371,35.85,66.0,302.77893,28.0,11.7,0.0,0.0, +2024-11-28 12:00:00,4.315669,153.13815,27.65,998.8196,38.370266,0.0,0.0,0.0,12.2,0.0,0.0, +2024-11-28 13:00:00,3.800329,122.64463,28.05,999.6238,29.185919,0.0,0.0,0.0,8.45,0.0,0.0, +2024-11-28 14:00:00,5.385397,102.87501,29.55,999.862,23.745228,0.0,0.0,0.0,6.7,0.0,0.0, +2024-11-28 15:00:00,6.604733,87.83079,29.25,999.95337,23.182268,0.0,0.0,0.0,6.1,0.0,0.0, +2024-11-28 16:00:00,6.8148737,86.21397,28.4,999.9308,22.960846,0.0,0.0,0.0,5.25,0.0,0.0, +2024-11-28 17:00:00,6.686741,83.99109,27.75,999.41754,23.111853,0.0,0.0,0.0,4.8,0.0,0.0, +2024-11-28 18:00:00,7.5960517,69.17903,27.4,998.8129,23.589893,0.0,0.0,0.0,4.8,0.0,0.0, +2024-11-28 19:00:00,8.208837,62.03025,27.4,998.9121,23.589893,0.0,0.0,0.0,4.8,0.0,0.0, +2024-11-28 20:00:00,8.161649,63.435013,27.35,998.9108,23.331127,0.0,0.0,0.0,4.6,0.0,0.0, +2024-11-28 21:00:00,8.18917,68.133575,26.6,998.8905,24.553038,0.0,0.0,0.0,4.7,0.0,0.0, +2024-11-28 22:00:00,8.407884,63.892147,26.6,999.0889,25.247015,25.0,121.83419,14.0,5.1,0.0,0.0, +2024-11-28 23:00:00,7.7776923,59.478504,28.3,999.43195,23.744612,193.0,541.77203,60.0,5.65,0.0,0.0, +2024-11-29 00:00:00,7.836134,55.397274,30.7,999.49554,21.328772,418.0,736.6432,84.0,6.1,0.0,0.0, +2024-11-29 01:00:00,7.8270364,41.63345,33.65,999.27454,22.000126,626.0,790.88654,118.0,9.0,0.0,0.0, +2024-11-29 02:00:00,6.5316534,33.446796,35.8,999.03174,22.245981,705.0,567.9563,251.0,10.95,0.0,0.0, +2024-11-29 03:00:00,5.2392745,13.240531,38.0,998.591,20.255447,848.0,566.84033,330.0,11.35,0.0,0.0, +2024-11-29 04:00:00,5.5409837,280.39728,33.85,998.38654,32.195755,728.0,307.78085,427.0,14.95,0.0,0.0, +2024-11-29 05:00:00,6.315061,280.954,30.55,998.3011,47.85301,534.0,111.40478,424.0,18.25,0.0,0.0, +2024-11-29 06:00:00,7.4983335,299.12872,32.7,998.1587,37.80093,889.0,598.001,326.0,16.45,0.0,0.0, +2024-11-29 07:00:00,6.9588075,289.737,29.75,998.18085,43.86968,576.0,203.95006,404.0,16.15,0.0,0.0, +2024-11-29 08:00:00,5.5841293,286.65018,28.05,998.03656,50.292984,345.0,114.33406,265.0,16.75,0.0,0.0, +2024-11-29 09:00:00,3.522783,276.5197,26.35,998.5863,58.08395,247.0,90.32519,200.0,17.45,0.0,0.0, +2024-11-29 10:00:00,2.0573041,295.94223,25.65,998.6664,61.30928,137.0,88.19398,109.0,17.65,0.0,0.0, +2024-11-29 11:00:00,1.7007351,335.69547,25.25,998.75494,60.44862,18.0,0.0,18.0,17.05,0.0,0.0, +2024-11-29 12:00:00,1.8973665,341.56494,25.6,998.7644,56.992,0.0,0.0,0.0,16.45,0.0,0.0, +2024-11-29 13:00:00,1.4637282,7.853233,24.5,998.63544,64.83481,0.0,0.0,0.0,17.45,0.0,0.0, +2024-11-29 14:00:00,2.0248458,32.905247,25.2,998.6542,56.532703,0.0,0.0,0.0,15.95,0.0,0.0, +2024-11-29 15:00:00,2.326478,331.78275,25.9,998.17737,52.523567,0.0,0.0,0.0,15.45,0.0,0.0, +2024-11-29 16:00:00,3.710795,284.03625,23.7,998.41504,68.670944,0.0,0.0,0.0,17.6,0.0,0.0, +2024-11-29 17:00:00,0.35355338,8.130019,23.35,998.00867,73.75255,0.0,0.0,0.0,18.4,0.0,0.0, +2024-11-29 18:00:00,1.1661904,59.03632,23.4,997.6131,68.612144,0.0,0.0,0.0,17.3,0.0,0.0, +2024-11-29 19:00:00,1.4089003,27.474344,23.4,997.31555,66.68499,0.0,0.0,0.0,16.85,0.0,0.0, +2024-11-29 20:00:00,2.8969812,21.25058,24.05,997.3335,65.563644,0.0,0.0,0.0,17.2,0.0,0.0, +2024-11-29 21:00:00,3.0004165,0.95482427,24.5,997.5444,67.756065,0.0,0.0,0.0,18.15,0.0,0.0, +2024-11-29 22:00:00,2.9261749,340.0168,24.6,997.94354,67.776024,17.0,55.38569,12.0,18.25,0.0,0.0, +2024-11-29 23:00:00,3.2500002,345.74994,26.1,998.38104,62.774353,111.0,118.165924,82.0,18.45,0.0,0.0, +2024-11-30 00:00:00,4.2933087,345.1545,27.85,998.62646,56.110603,337.0,399.40826,156.0,18.3,0.0,0.0, +2024-11-30 01:00:00,4.5400987,348.56635,29.0,998.35956,54.660675,453.0,331.76694,240.0,18.95,0.0,0.0, +2024-11-30 02:00:00,4.0028114,334.07516,29.15,998.2641,55.211323,493.0,196.4712,336.0,19.25,0.0,0.0, +2024-11-30 03:00:00,3.7583241,319.3161,29.65,997.78156,53.30782,552.0,158.69096,407.0,19.15,0.0,0.0, +2024-11-30 04:00:00,5.5011363,281.00348,28.8,997.4614,57.93963,643.0,264.80035,384.0,19.7,0.0,0.0, +2024-11-30 05:00:00,6.4569726,267.33704,28.2,997.4454,61.310272,997.0,850.3466,157.0,20.05,0.0,0.6, +2024-11-30 06:00:00,5.302122,268.37888,27.65,997.03394,61.376892,921.0,816.10394,152.0,19.55,0.0,0.0, +2024-11-30 07:00:00,5.1088157,273.3664,27.4,996.7298,58.150814,848.0,841.8635,137.0,18.45,0.0,0.0, +2024-11-30 08:00:00,4.704253,267.56342,25.75,996.5862,61.525345,565.0,499.0619,215.0,17.8,0.0,0.0, +2024-11-30 09:00:00,4.2664385,259.8754,23.95,996.83496,72.031525,469.0,687.307,110.0,18.6,0.0,0.0, +2024-11-30 10:00:00,3.0700164,253.92636,22.95,996.8075,78.44624,265.0,606.64685,71.0,19.0,0.0,0.0, +2024-11-30 11:00:00,2.7735357,236.0234,21.55,997.2646,87.5789,67.0,297.17596,29.0,19.4,0.0,0.0, +2024-11-30 12:00:00,3.8710465,215.53777,20.9,997.6432,91.14118,0.0,0.0,0.0,19.4,0.0,0.0, +2024-11-30 13:00:00,3.757659,205.2011,20.1,998.51324,90.2381,0.0,0.0,0.0,18.45,0.0,0.0, +2024-11-30 14:00:00,2.657066,199.79897,19.75,998.40424,90.49702,0.0,0.0,0.0,18.15,0.0,0.0, +2024-11-30 15:00:00,2.768122,200.07161,19.5,997.8023,89.62947,0.0,0.0,0.0,17.75,0.0,0.0, +2024-11-30 16:00:00,2.6100767,196.69933,19.4,997.60095,87.941284,0.0,0.0,0.0,17.35,0.0,0.0, +2024-11-30 17:00:00,2.6277368,201.19412,19.2,997.0994,87.09293,0.0,0.0,0.0,17.0,0.0,0.0, +2024-11-30 18:00:00,2.184033,195.94547,19.0,996.99457,85.70295,0.0,0.0,0.0,16.55,0.0,0.0, +2024-11-30 19:00:00,3.146824,197.57135,18.75,996.88855,85.40512,0.0,0.0,0.0,16.25,0.0,0.0, +2024-11-30 20:00:00,3.4539833,202.1095,18.75,997.38446,82.72216,0.0,0.0,0.0,15.75,0.0,0.0, +2024-11-30 21:00:00,2.6655207,203.19861,18.45,997.97095,80.84881,0.0,0.0,0.0,15.1,0.0,0.0, +2024-11-30 22:00:00,3.4354768,201.33693,19.0,998.58136,76.13016,22.0,88.67906,14.0,14.7,0.0,0.0, +2024-11-30 23:00:00,4.225222,200.79419,20.1,998.91,68.84139,160.0,350.67538,74.0,14.2,0.0,0.0, +2024-12-01 00:00:00,3.914716,208.20154,20.95,998.83484,63.241505,311.0,311.36865,170.0,13.7,0.0,0.0, +2024-12-01 01:00:00,3.2318726,214.91948,21.95,998.9617,59.29216,439.0,314.82025,237.0,13.65,0.0,0.2, +2024-12-01 02:00:00,4.0106106,234.13008,23.15,998.8956,54.235504,807.0,830.0188,144.0,13.4,0.0,0.0, +2024-12-01 03:00:00,4.966135,237.75005,23.35,999.1989,53.236137,961.0,916.19086,124.0,13.3,0.0,0.0, +2024-12-01 04:00:00,5.4378304,237.77127,23.75,999.01154,50.62837,1042.0,929.2673,133.0,12.9,0.0,0.0, +2024-12-01 05:00:00,5.8405905,237.94266,23.7,998.41504,49.79332,924.0,663.7946,268.0,12.6,0.0,0.0, +2024-12-01 06:00:00,6.22254,224.9999,22.4,997.98236,60.759308,772.0,384.90485,409.0,14.45,0.0,0.1, +2024-12-01 07:00:00,6.0632086,229.34755,22.4,997.8831,57.877155,724.0,585.26385,229.0,13.7,0.0,0.0, +2024-12-01 08:00:00,5.992704,229.39879,22.15,997.77704,56.882042,704.0,820.83746,127.0,13.2,0.0,0.0, +2024-12-01 09:00:00,6.3702435,227.54485,21.45,997.8568,58.788017,467.0,635.0963,134.0,13.05,0.0,0.0, +2024-12-01 10:00:00,5.7710485,217.96211,20.45,998.1266,62.310963,216.0,388.06412,91.0,13.0,0.0,0.0, +2024-12-01 11:00:00,5.375872,223.49261,19.75,998.40424,64.64463,62.0,178.2065,39.0,12.9,0.0,0.0, +2024-12-01 12:00:00,5.456189,221.2846,19.35,998.9881,66.27112,0.0,0.0,0.0,12.9,0.0,0.0, +2024-12-01 13:00:00,5.0522275,218.57127,19.25,999.6795,63.06772,0.0,0.0,0.0,12.05,0.0,0.0, +2024-12-01 14:00:00,4.136726,225.48964,19.4,999.5845,59.858074,0.0,0.0,0.0,11.4,0.0,0.0, +2024-12-01 15:00:00,5.481104,215.72005,19.2,999.7771,69.78993,0.0,0.0,0.0,13.55,0.0,0.0, +2024-12-01 16:00:00,4.9522724,215.13426,18.6,999.56177,75.5755,0.0,0.0,0.0,14.2,0.0,0.0, +2024-12-01 17:00:00,4.9246826,221.29527,18.35,998.9595,74.07742,0.0,0.0,0.0,13.65,0.0,0.0, +2024-12-01 18:00:00,4.596738,224.11868,17.55,998.7386,79.432,0.0,0.0,0.0,13.95,0.0,0.0, +2024-12-01 19:00:00,4.6674404,224.13205,17.8,998.8448,77.93715,0.0,0.0,0.0,13.9,0.0,0.0, +2024-12-01 20:00:00,4.0459857,230.01317,17.65,999.039,76.90812,0.0,0.0,0.0,13.55,0.0,0.0, +2024-12-01 21:00:00,3.8551915,236.10379,17.4,999.4284,77.11995,0.0,0.0,0.0,13.35,0.0,0.0, +2024-12-01 22:00:00,4.434242,240.2552,18.65,999.9601,60.679577,18.0,66.59382,12.0,10.9,0.0,0.0, +2024-12-01 23:00:00,5.87069,234.0084,19.55,1000.58057,53.13128,92.0,61.23326,77.0,9.75,0.0,0.0, +2024-12-02 00:00:00,6.0400743,233.4146,19.4,1001.36957,55.824562,156.0,46.4171,135.0,10.35,0.0,0.0, +2024-12-02 01:00:00,5.87069,234.0084,20.3,1001.79175,54.041332,285.0,87.33923,229.0,10.7,0.0,0.1, +2024-12-02 02:00:00,5.490446,232.39952,21.0,1002.1091,52.453182,434.0,141.53447,321.0,10.9,0.0,0.0, +2024-12-02 03:00:00,5.6022315,229.34332,21.65,1002.1273,47.310825,522.0,149.99593,385.0,9.95,0.0,0.0, +2024-12-02 04:00:00,5.559901,228.28098,21.25,1002.0167,49.63144,508.0,87.91177,422.0,10.3,0.0,0.0, +2024-12-02 05:00:00,5.526753,228.6679,21.95,1001.8379,47.39286,678.0,299.3934,382.0,10.25,0.0,0.0, +2024-12-02 06:00:00,5.5861435,224.9999,21.5,1001.5281,50.869213,553.0,152.55963,409.0,10.9,0.0,0.0, +2024-12-02 07:00:00,5.70548,221.09135,21.35,1001.3253,52.024757,522.0,204.25182,349.0,11.1,0.0,0.0, +2024-12-02 08:00:00,5.325411,214.28693,21.3,1000.9273,50.479015,377.0,239.86136,208.0,10.6,0.0,0.0, +2024-12-02 09:00:00,6.3057513,206.3618,20.55,1000.8072,60.923473,419.0,503.47614,154.0,12.75,0.0,0.0, +2024-12-02 10:00:00,5.6800084,196.36116,19.5,1000.97595,67.393135,154.0,169.52301,99.0,13.3,0.0,0.1, +2024-12-02 11:00:00,5.303301,188.13002,19.1,1001.3611,67.09121,58.0,207.27672,31.0,12.85,0.0,0.0, +2024-12-02 12:00:00,4.816638,184.76355,19.2,1001.76056,65.37718,0.0,0.0,0.0,12.55,0.0,0.0, +2024-12-02 13:00:00,4.2026772,177.95464,19.25,1002.3572,61.021706,0.0,0.0,0.0,11.55,0.0,0.0, +2024-12-02 14:00:00,3.925876,173.41815,19.35,1002.7567,59.254562,0.0,0.0,0.0,11.2,0.0,0.0, +2024-12-02 15:00:00,3.4329286,167.38068,19.1,1002.6503,59.985203,0.0,0.0,0.0,11.15,0.0,0.0, +2024-12-02 16:00:00,2.5144582,162.64589,18.8,1002.4434,61.32174,0.0,0.0,0.0,11.2,0.0,0.0, +2024-12-02 17:00:00,2.442335,157.10942,18.95,1001.95197,60.549034,0.0,0.0,0.0,11.15,0.0,0.0, +2024-12-02 18:00:00,1.5532224,146.82147,18.6,1001.8427,61.478855,0.0,0.0,0.0,11.05,0.0,0.0, +2024-12-02 19:00:00,1.3601471,143.97253,18.5,1001.93915,61.864914,0.0,0.0,0.0,11.05,0.0,0.0, +2024-12-02 20:00:00,1.5692356,149.34941,17.85,1002.0198,64.44159,0.0,0.0,0.0,11.05,0.0,0.0, +2024-12-02 21:00:00,1.5443445,119.05451,16.45,1002.3761,69.94478,0.0,0.0,0.0,10.95,0.0,0.0, +2024-12-02 22:00:00,2.8609438,95.01302,16.85,1002.58606,66.84357,24.0,111.19089,14.0,10.65,0.0,0.0, +2024-12-02 23:00:00,3.167412,101.84206,18.9,1002.94214,57.399403,184.0,470.16837,69.0,10.3,0.0,0.0, +2024-12-03 00:00:00,2.3711812,132.43619,20.5,1003.1858,52.847946,405.0,668.2706,103.0,10.55,0.0,0.0, +2024-12-03 01:00:00,2.107724,202.30626,21.3,1003.0101,53.762527,474.0,415.20508,208.0,11.55,0.0,0.0, +2024-12-03 02:00:00,2.8900692,217.26648,22.05,1002.9318,51.6937,553.0,181.71611,408.0,11.65,0.0,0.0, +2024-12-03 03:00:00,3.4124773,219.05313,21.95,1002.8297,53.04927,554.0,106.23073,457.0,11.95,0.0,0.0, +2024-12-03 04:00:00,4.1439714,221.57603,22.3,1002.8395,52.273224,585.0,105.28607,482.0,12.05,0.0,0.0, +2024-12-03 05:00:00,4.398295,220.38927,22.35,1002.54346,52.458523,667.0,215.35667,454.0,12.15,0.0,0.0, +2024-12-03 06:00:00,4.560702,217.87505,22.25,1002.0447,52.605328,556.0,111.14757,451.0,12.1,0.0,0.0, +2024-12-03 07:00:00,5.3535037,212.79953,21.3,1001.6216,65.18986,575.0,231.07323,379.0,14.5,0.0,0.2, +2024-12-03 08:00:00,4.7885275,208.70586,21.05,1001.11847,64.29815,374.0,154.34451,265.0,14.05,0.0,0.0, +2024-12-03 09:00:00,4.750789,210.34317,21.25,1000.8266,60.887234,420.0,469.3792,172.0,13.4,0.0,0.0, +2024-12-03 10:00:00,4.6295247,207.67198,20.6,1001.0067,62.957966,219.0,373.351,97.0,13.3,0.0,0.0, +2024-12-03 11:00:00,4.5961943,202.38019,20.05,1001.1897,64.9212,50.0,114.10514,35.0,13.25,0.0,0.0, +2024-12-03 12:00:00,4.2059484,198.00426,19.85,1001.6799,66.16025,0.0,0.0,0.0,13.35,0.0,0.0, +2024-12-03 13:00:00,3.4687893,195.03787,19.2,1001.9589,70.2453,0.0,0.0,0.0,13.65,0.0,0.0, +2024-12-03 14:00:00,3.3049207,197.61267,18.9,1002.2479,72.27278,0.0,0.0,0.0,13.8,0.0,0.0, +2024-12-03 15:00:00,3.83471,202.21765,18.8,1002.14594,75.6081,0.0,0.0,0.0,14.4,0.0,0.0, +2024-12-03 16:00:00,3.7047267,201.37068,18.85,1001.8501,76.35219,0.0,0.0,0.0,14.6,0.0,0.0, +2024-12-03 17:00:00,3.6224992,200.18588,18.6,1001.5452,76.80731,0.0,0.0,0.0,14.45,0.0,0.0, +2024-12-03 18:00:00,3.3049207,197.61267,18.65,1001.15015,77.06353,0.0,0.0,0.0,14.55,0.0,0.0, +2024-12-03 19:00:00,3.0700164,196.07364,18.4,1001.14294,78.53231,0.0,0.0,0.0,14.6,0.0,0.0, +2024-12-03 20:00:00,3.2893767,199.53674,18.35,1001.4388,79.03335,0.0,0.0,0.0,14.65,0.0,0.0, +2024-12-03 21:00:00,3.463019,197.6502,18.45,1001.6403,79.047676,0.0,0.0,0.0,14.75,0.0,0.0, +2024-12-03 22:00:00,3.710795,194.03627,18.9,1001.95044,77.10215,23.0,100.305405,14.0,14.8,0.0,0.0, +2024-12-03 23:00:00,4.9520197,196.42226,20.2,1002.48315,69.757065,148.0,335.8875,66.0,14.5,0.0,0.0, +2024-12-04 00:00:00,5.124451,197.02061,21.1,1003.10376,65.35804,330.0,374.45386,161.0,14.35,0.0,0.0, +2024-12-04 01:00:00,5.012235,198.61578,22.15,1003.33124,59.339695,513.0,464.0289,216.0,13.85,0.0,0.1, +2024-12-04 02:00:00,4.854122,198.62167,21.75,1003.5187,63.829792,393.0,79.00202,330.0,14.6,0.0,0.1, +2024-12-04 03:00:00,4.7605147,197.10281,22.8,1003.3495,57.7865,517.0,150.0855,380.0,14.05,0.0,0.0, +2024-12-04 04:00:00,5.2924476,202.20352,23.15,1003.06146,57.49828,613.0,133.90689,482.0,14.3,0.0,0.1, +2024-12-04 05:00:00,6.0008335,203.57472,22.85,1002.85486,63.25481,699.0,314.32214,388.0,15.5,0.0,0.0, +2024-12-04 06:00:00,6.1745443,201.37068,22.8,1002.45685,64.26456,730.0,451.62302,303.0,15.7,0.0,0.0, +2024-12-04 07:00:00,6.1824346,198.87465,22.8,1002.1593,62.83946,691.0,514.4585,254.0,15.35,0.0,0.0, +2024-12-04 08:00:00,6.1355524,197.54909,22.95,1001.7667,60.69085,683.0,757.22015,147.0,14.95,0.0,0.0, +2024-12-04 09:00:00,6.069802,191.40247,22.0,1001.6411,65.33908,450.0,563.75244,151.0,15.2,0.0,0.0, +2024-12-04 10:00:00,5.716861,191.60474,21.2,1001.91626,69.5022,282.0,628.99445,75.0,15.4,0.0,0.0, +2024-12-04 11:00:00,5.0089917,183.43356,20.0,1002.3783,74.12018,77.0,331.693,33.0,15.25,0.0,0.0, +2024-12-04 12:00:00,4.806506,177.0186,19.5,1002.8603,79.19726,0.0,0.0,0.0,15.8,0.0,0.0, +2024-12-04 13:00:00,4.2851486,168.55899,19.0,1003.34174,80.40486,0.0,0.0,0.0,15.55,0.0,0.0, +2024-12-04 14:00:00,4.1355166,165.29166,18.7,1003.4323,80.88184,0.0,0.0,0.0,15.35,0.0,0.0, +2024-12-04 15:00:00,3.736308,164.47583,18.45,1003.3263,81.6317,0.0,0.0,0.0,15.25,0.0,0.0, +2024-12-04 16:00:00,3.677295,168.23174,18.1,1003.0187,83.71207,0.0,0.0,0.0,15.3,0.0,0.0, +2024-12-04 17:00:00,3.856488,166.50426,18.0,1002.61914,84.23976,0.0,0.0,0.0,15.3,0.0,0.0, +2024-12-04 18:00:00,4.246469,167.7639,17.8,1002.5141,85.85545,0.0,0.0,0.0,15.4,0.0,0.0, +2024-12-04 19:00:00,4.4994445,165.19157,17.75,1002.8103,85.85041,0.0,0.0,0.0,15.35,0.0,0.0, +2024-12-04 20:00:00,4.503887,157.13545,17.45,1003.1981,85.26975,0.0,0.0,0.0,14.95,0.0,0.0, +2024-12-04 21:00:00,4.245291,147.99466,16.95,1003.5806,84.12231,0.0,0.0,0.0,14.25,0.0,0.0, +2024-12-04 22:00:00,4.4749303,140.44037,16.95,1004.1756,79.60582,25.0,122.94541,14.0,13.4,0.0,0.0, +2024-12-04 23:00:00,4.9648767,145.66972,18.6,1004.61957,67.650375,193.0,533.7134,63.0,12.5,0.0,0.0, +2024-12-05 00:00:00,5.5454936,153.204,20.65,1004.8762,57.07265,420.0,730.0454,91.0,11.85,0.0,0.0, +2024-12-05 01:00:00,5.881539,165.72745,22.1,1005.0162,51.706814,630.0,800.7757,118.0,11.7,0.0,0.0, +2024-12-05 02:00:00,6.2502,179.54166,23.25,1004.6513,48.222157,830.0,880.9198,128.0,11.7,0.0,0.0, +2024-12-05 03:00:00,7.189228,185.98805,23.6,1004.3634,48.6356,989.0,946.87115,125.0,12.15,0.0,0.0, +2024-12-05 04:00:00,7.496666,189.21095,23.55,1004.0646,51.57797,1059.0,938.393,141.0,13.0,0.0,0.0, +2024-12-05 05:00:00,7.462741,191.98749,23.6,1003.7683,52.439545,1080.0,957.78143,132.0,13.3,0.0,0.0, +2024-12-05 06:00:00,7.6400266,194.40005,23.3,1003.661,50.675472,1029.0,959.56866,121.0,12.5,0.0,0.0, +2024-12-05 07:00:00,7.664366,193.58298,22.8,1003.6471,51.890167,914.0,940.4535,114.0,12.4,0.0,0.0, +2024-12-05 08:00:00,7.7564487,191.5272,22.1,1003.33,55.220924,742.0,896.4184,106.0,12.7,0.0,0.0, +2024-12-05 09:00:00,7.8262377,190.3048,21.35,1003.40814,59.731255,528.0,820.83014,91.0,13.2,0.0,0.0, +2024-12-05 10:00:00,7.708761,187.07883,20.3,1003.77527,63.50973,292.0,657.7867,74.0,13.15,0.0,0.0, +2024-12-05 11:00:00,7.0613384,183.24727,19.45,1004.148,65.430786,81.0,351.1562,34.0,12.8,0.0,0.0, +2024-12-05 12:00:00,6.3049583,177.7276,19.05,1004.6325,67.3007,0.0,0.0,0.0,12.85,0.0,0.0, +2024-12-05 13:00:00,6.404881,177.76308,18.65,1004.8196,71.7589,0.0,0.0,0.0,13.45,0.0,0.0, +2024-12-05 14:00:00,6.754628,177.87895,18.2,1004.7074,74.53504,0.0,0.0,0.0,13.6,0.0,0.0, +2024-12-05 15:00:00,6.56544,176.0699,18.1,1004.6054,73.0755,0.0,0.0,0.0,13.2,0.0,0.0, +2024-12-05 16:00:00,6.3884664,173.70943,18.0,1004.30505,72.345345,0.0,0.0,0.0,12.95,0.0,0.0, +2024-12-05 17:00:00,6.053098,172.40544,18.05,1003.90967,71.6483,0.0,0.0,0.0,12.85,0.0,0.0, +2024-12-05 18:00:00,5.706356,171.94098,18.1,1003.6137,69.12073,0.0,0.0,0.0,12.35,0.0,0.0, +2024-12-05 19:00:00,5.71358,171.44452,18.15,1003.4167,68.90403,0.0,0.0,0.0,12.35,0.0,0.0, +2024-12-05 20:00:00,5.6995616,172.43866,18.2,1003.21985,67.79106,0.0,0.0,0.0,12.15,0.0,0.0, +2024-12-05 21:00:00,5.6147127,171.29271,18.3,1003.3219,66.925224,0.0,0.0,0.0,12.05,0.0,0.0, +2024-12-05 22:00:00,5.246189,169.0114,18.95,1003.9354,65.10917,25.0,123.356514,14.0,12.25,0.0,0.0, +2024-12-05 23:00:00,5.6800084,163.63884,20.45,1004.47394,61.1,188.0,485.7176,70.0,12.7,0.0,0.0, +2024-12-06 00:00:00,5.144171,164.20753,21.9,1004.7129,54.272255,398.0,629.00635,115.0,12.25,0.0,0.0, +2024-12-06 01:00:00,4.6270943,186.20335,22.6,1004.73254,53.91881,514.0,429.03018,240.0,12.8,0.0,0.0, +2024-12-06 02:00:00,5.2194347,203.12654,23.45,1004.5578,52.400665,817.0,822.56415,162.0,13.15,0.0,0.0, +2024-12-06 03:00:00,5.5569777,210.25635,23.7,1004.3663,52.808163,983.0,920.9442,143.0,13.5,0.0,0.0, +2024-12-06 04:00:00,5.8815393,205.69365,23.8,1004.0712,55.287994,1082.0,982.3985,121.0,14.3,0.0,0.0, +2024-12-06 05:00:00,6.834106,196.57887,23.55,1003.767,57.225082,1095.0,979.6729,125.0,14.6,0.0,0.0, +2024-12-06 06:00:00,7.34983,194.98167,23.8,1003.6745,53.69917,1040.0,970.40454,121.0,13.85,0.0,0.0, +2024-12-06 07:00:00,7.7176747,191.9651,23.5,1003.26953,56.114212,922.0,946.16064,116.0,14.25,0.0,0.0, +2024-12-06 08:00:00,7.891768,188.74608,22.95,1002.8577,59.721245,747.0,899.98645,107.0,14.7,0.0,0.0, +2024-12-06 09:00:00,7.5779285,184.92053,22.15,1002.73615,64.12333,532.0,817.7501,95.0,15.05,0.0,0.0, +2024-12-06 10:00:00,6.951618,181.23637,21.05,1002.9037,71.73528,298.0,668.2282,75.0,15.75,0.0,0.0, +2024-12-06 11:00:00,6.203225,178.15244,19.9,1003.1692,79.76041,84.0,355.4869,36.0,16.3,0.0,0.0, +2024-12-06 12:00:00,5.4612265,176.32558,19.5,1003.4553,82.287094,0.0,0.0,0.0,16.4,0.0,0.0, +2024-12-06 13:00:00,5.9103723,176.60515,19.25,1003.6465,84.11016,0.0,0.0,0.0,16.5,0.0,0.0, +2024-12-06 14:00:00,6.633627,170.89275,19.2,1003.3474,86.268814,0.0,0.0,0.0,16.85,0.0,0.0, +2024-12-06 15:00:00,6.367299,166.83676,19.1,1003.1462,87.36014,0.0,0.0,0.0,16.95,0.0,0.0, +2024-12-06 16:00:00,5.797629,167.04242,18.85,1002.64343,89.0151,0.0,0.0,0.0,17.0,0.0,0.0, +2024-12-06 17:00:00,5.640257,167.19574,18.75,1001.8472,89.00713,0.0,0.0,0.0,16.9,0.0,0.0, +2024-12-06 18:00:00,5.141984,166.50426,18.7,1001.34973,89.28578,0.0,0.0,0.0,16.9,0.0,0.0, +2024-12-06 19:00:00,4.148494,164.62369,18.45,1001.24365,90.40672,0.0,0.0,0.0,16.85,0.0,0.0, +2024-12-06 20:00:00,3.0083218,158.5522,18.0,1000.9332,93.29145,0.0,0.0,0.0,16.9,0.0,0.0, +2024-12-06 21:00:00,2.2610838,144.90411,17.25,1001.0108,93.85029,0.0,0.0,0.0,16.25,0.0,0.0, +2024-12-06 22:00:00,2.4758837,136.63654,17.25,1001.3083,90.90202,25.0,123.828735,14.0,15.75,0.0,0.0, +2024-12-06 23:00:00,2.4869661,149.82657,19.9,1001.5824,69.925026,197.0,557.3431,62.0,14.25,0.0,0.0, +2024-12-07 00:00:00,2.6086395,167.82855,23.75,1001.4912,48.51623,428.0,761.5168,86.0,12.25,0.0,0.0, +2024-12-07 01:00:00,2.6504717,178.9191,26.0,1001.6519,41.728046,654.0,865.3923,102.0,12.0,0.0,0.0, +2024-12-07 02:00:00,3.383785,198.9705,28.2,1001.1158,38.27248,848.0,926.2988,111.0,12.65,0.0,0.0, +2024-12-07 03:00:00,5.0677905,210.86674,28.15,1000.7178,44.42395,994.0,961.9397,117.0,14.9,0.0,0.0, +2024-12-07 04:00:00,5.7982755,212.3196,27.4,1000.49927,47.928623,1077.0,977.36316,121.0,15.4,0.0,0.0, +2024-12-07 05:00:00,6.003332,209.98155,26.95,1000.2887,48.271923,1088.0,976.3261,121.0,15.1,0.0,0.0, +2024-12-07 06:00:00,6.6424766,205.40767,26.85,1000.0877,48.55653,1037.0,967.51904,120.0,15.1,0.0,0.0, +2024-12-07 07:00:00,6.3735785,199.71439,26.5,999.78076,51.512177,918.0,941.31177,115.0,15.7,0.0,0.0, +2024-12-07 08:00:00,6.1824346,198.87465,26.25,999.4762,54.31902,739.0,889.5197,105.0,16.3,0.0,0.0, +2024-12-07 09:00:00,5.3368998,195.2081,25.05,999.5428,61.36692,525.0,805.39166,93.0,17.1,0.0,0.0, +2024-12-07 10:00:00,4.8646684,192.46492,23.75,999.6066,68.03406,293.0,651.7803,74.0,17.5,0.0,0.0, +2024-12-07 11:00:00,3.6124783,184.76355,22.35,999.76636,75.2239,84.0,359.76904,35.0,17.75,0.0,0.0, +2024-12-07 12:00:00,4.504442,182.54475,21.85,999.95087,72.10939,0.0,0.0,0.0,16.6,0.0,0.0, +2024-12-07 13:00:00,4.8438106,172.2882,21.05,1000.62256,75.48949,0.0,0.0,0.0,16.55,0.0,0.0, +2024-12-07 14:00:00,4.925444,174.17375,21.05,1000.2258,72.195404,0.0,0.0,0.0,15.85,0.0,0.0, +2024-12-07 15:00:00,5.246189,169.0114,20.7,999.91864,74.714455,0.0,0.0,0.0,16.05,0.0,0.0, +2024-12-07 16:00:00,4.014038,166.30994,20.25,999.21185,78.05164,0.0,0.0,0.0,16.3,0.0,0.0, +2024-12-07 17:00:00,2.6196373,166.75948,19.65,998.5999,83.09363,0.0,0.0,0.0,16.7,0.0,0.0, +2024-12-07 18:00:00,1.677051,169.6952,18.8,997.98065,88.72948,0.0,0.0,0.0,16.9,0.0,0.0, +2024-12-07 19:00:00,1.2816006,159.44388,18.35,997.7694,89.827545,0.0,0.0,0.0,16.65,0.0,0.0, +2024-12-07 20:00:00,0.64031243,141.34016,18.3,997.76825,88.688705,0.0,0.0,0.0,16.4,0.0,0.0, +2024-12-07 21:00:00,0.20615529,104.03627,18.35,997.7694,87.01422,0.0,0.0,0.0,16.15,0.0,0.0, +2024-12-07 22:00:00,0.15,360.0,19.0,997.9863,86.79865,25.0,124.35945,14.0,16.75,0.0,0.0, +2024-12-07 23:00:00,0.559017,296.56497,21.35,998.1516,79.70785,194.0,555.0414,60.0,17.7,0.0,0.0, +2024-12-08 00:00:00,1.5132746,262.40546,23.65,998.61194,70.41296,424.0,754.0874,86.0,17.95,0.0,0.0, +2024-12-08 01:00:00,2.376973,247.75093,25.0,999.2441,64.33096,647.0,857.12256,101.0,17.8,0.0,0.0, +2024-12-08 02:00:00,2.6744158,249.19313,26.8,998.995,55.151375,841.0,918.3042,111.0,17.05,0.0,0.0, +2024-12-08 03:00:00,4.521338,237.18863,27.0,998.70306,54.852856,987.0,953.6273,118.0,17.15,0.0,0.0, +2024-12-08 04:00:00,5.4500003,213.39851,26.55,998.4924,57.4028,1072.0,971.32916,122.0,17.45,0.0,0.0, +2024-12-08 05:00:00,6.0270224,202.94896,27.3,998.31415,53.895733,1087.0,974.00793,122.0,17.15,0.0,0.0, +2024-12-08 06:00:00,6.053924,202.3287,27.3,998.0165,55.27507,1034.0,964.6515,119.0,17.55,0.0,0.0, +2024-12-08 07:00:00,5.6579585,205.65923,26.8,997.9039,58.00822,917.0,940.00116,114.0,17.85,0.0,0.0, +2024-12-08 08:00:00,5.8815393,205.69365,25.25,997.96136,64.58715,744.0,891.7154,107.0,18.1,0.0,0.0, +2024-12-08 09:00:00,6.203225,200.77234,23.75,998.01965,71.77044,530.0,809.8679,94.0,18.35,0.0,0.0, +2024-12-08 10:00:00,6.0270224,193.92099,22.55,998.28424,77.89927,299.0,662.2078,75.0,18.5,0.0,0.0, +2024-12-08 11:00:00,5.3640003,191.83362,21.5,998.75104,82.27229,87.0,364.01132,37.0,18.35,0.0,0.0, +2024-12-08 12:00:00,5.323533,185.38922,20.95,999.33075,84.03399,0.0,0.0,0.0,18.15,0.0,0.0, +2024-12-08 13:00:00,5.6535387,182.02728,20.55,1000.113,85.8589,0.0,0.0,0.0,18.1,0.0,0.0, +2024-12-08 14:00:00,5.7502174,180.4982,20.6,1000.2133,84.25974,0.0,0.0,0.0,17.85,0.0,0.0, +2024-12-08 15:00:00,5.8576875,177.06439,20.4,999.8109,86.11422,0.0,0.0,0.0,18.0,0.0,0.0, +2024-12-08 16:00:00,6.0848174,173.86787,20.3,999.3123,87.46799,0.0,0.0,0.0,18.15,0.0,0.0, +2024-12-08 17:00:00,6.0406957,173.34567,20.15,998.81226,87.729836,0.0,0.0,0.0,18.05,0.0,0.0, +2024-12-08 18:00:00,6.288283,170.38795,20.0,998.41125,89.66688,0.0,0.0,0.0,18.25,0.0,0.0, +2024-12-08 19:00:00,5.706356,171.94098,19.9,998.3095,92.513405,0.0,0.0,0.0,18.65,0.0,0.0, +2024-12-08 20:00:00,5.2860665,169.64673,19.85,998.5062,93.674774,0.0,0.0,0.0,18.8,0.0,0.0, +2024-12-08 21:00:00,5.0499997,168.57884,19.9,998.6071,94.55836,0.0,0.0,0.0,19.0,0.0,0.0, +2024-12-08 22:00:00,4.6197944,170.028,20.45,999.01917,92.832115,23.0,102.23222,14.0,19.25,0.0,0.0, +2024-12-08 23:00:00,3.4525354,169.99208,22.25,999.5651,83.65589,185.0,494.69504,66.0,19.35,0.0,0.0, +2024-12-09 00:00:00,3.156343,183.63287,24.7,999.7319,71.050354,413.0,728.84985,87.0,19.1,0.0,0.0, +2024-12-09 01:00:00,3.618356,191.15462,26.75,999.8865,63.904472,636.0,837.8967,103.0,19.35,0.0,0.0, +2024-12-09 02:00:00,5.0975485,201.27968,27.85,999.7176,59.728195,827.0,901.5297,111.0,19.3,0.0,0.0, +2024-12-09 03:00:00,6.5776134,198.15958,28.1,999.42664,56.34756,971.0,937.6539,117.0,18.6,0.0,0.0, +2024-12-09 04:00:00,7.156815,195.3956,28.25,999.23224,56.737343,1057.0,957.13635,121.0,18.85,0.0,0.0, +2024-12-09 05:00:00,7.6277456,194.03627,28.05,998.9294,57.40215,1074.0,960.6089,122.0,18.85,0.0,0.0, +2024-12-09 06:00:00,7.90348,191.30989,27.5,998.51776,58.906845,1022.0,950.21497,120.0,18.75,0.0,0.0, +2024-12-09 07:00:00,8.162415,189.51994,26.8,998.39984,60.994194,907.0,925.8501,115.0,18.65,0.0,0.0, +2024-12-09 08:00:00,7.5823812,185.29695,25.75,998.1732,65.30336,738.0,882.7478,106.0,18.75,0.0,0.0, +2024-12-09 09:00:00,7.4082727,182.70786,24.6,998.24115,69.062325,526.0,799.5379,94.0,18.55,0.0,0.0, +2024-12-09 10:00:00,6.802941,181.68465,23.9,998.5196,71.57299,296.0,649.0594,75.0,18.45,0.0,0.0, +2024-12-09 11:00:00,5.7107353,183.51367,22.9,998.6905,76.74205,87.0,361.00525,37.0,18.6,0.0,0.0, +2024-12-09 12:00:00,6.0406957,173.34567,22.55,998.7802,75.96929,1.0,0.0,1.0,18.1,0.0,0.0, +2024-12-09 13:00:00,7.5538073,173.15732,21.85,999.3558,80.02725,0.0,0.0,0.0,18.25,0.0,0.0, +2024-12-09 14:00:00,6.116576,171.5388,21.85,999.6534,81.54606,0.0,0.0,0.0,18.55,0.0,0.0, +2024-12-09 15:00:00,4.3931766,168.17854,22.1,999.36273,80.0611,0.0,0.0,0.0,18.5,0.0,0.0, +2024-12-09 16:00:00,3.0220027,163.66388,22.05,998.8653,79.30516,0.0,0.0,0.0,18.3,0.0,0.0, +2024-12-09 17:00:00,3.2649658,152.6502,22.55,998.0859,74.78449,0.0,0.0,0.0,17.85,0.0,0.0, +2024-12-09 18:00:00,3.623534,140.59937,23.8,997.72327,64.89095,0.0,0.0,0.0,16.8,0.0,0.0, +2024-12-09 19:00:00,4.718315,130.27194,26.45,997.8944,52.496567,0.0,0.0,0.0,15.95,0.0,0.0, +2024-12-09 20:00:00,4.4525275,124.939384,26.55,997.9964,52.858288,0.0,0.0,0.0,16.15,0.0,0.0, +2024-12-09 21:00:00,4.022437,124.875404,26.25,998.48425,54.840145,0.0,0.0,0.0,16.45,0.0,0.0, +2024-12-09 22:00:00,4.0660176,134.50185,26.6,998.7913,54.927284,23.0,114.17949,13.0,16.8,0.0,0.0, +2024-12-09 23:00:00,4.2201896,143.67308,28.85,999.14905,49.553143,185.0,521.6813,60.0,17.25,0.0,0.0, +2024-12-10 00:00:00,5.060632,127.77575,31.45,999.31665,43.499947,406.0,721.52515,84.0,17.55,0.0,0.0, +2024-12-10 01:00:00,4.1868844,139.84407,32.55,999.3451,41.131603,623.0,823.40234,100.0,17.65,0.0,0.0, +2024-12-10 02:00:00,3.8029592,151.75037,34.9,999.108,37.335762,812.0,884.76715,110.0,18.2,0.0,0.0, +2024-12-10 03:00:00,4.821048,185.35573,35.9,998.83575,36.796276,953.0,919.49677,116.0,18.85,0.0,0.0, +2024-12-10 04:00:00,6.0419364,190.00792,35.3,998.2254,38.99543,1031.0,931.7117,120.0,19.25,0.0,0.0, +2024-12-10 05:00:00,6.600189,192.24632,34.1,997.8971,42.467495,965.0,784.82263,187.0,19.55,0.0,0.0, +2024-12-10 06:00:00,7.5440373,193.02309,33.0,997.3728,44.88559,911.0,801.0753,150.0,19.45,0.0,0.0, +2024-12-10 07:00:00,7.7027597,186.70975,32.0,996.9501,45.60542,811.0,790.344,134.0,18.8,0.0,0.0, +2024-12-10 08:00:00,6.964553,183.70456,31.35,996.7348,48.515064,658.0,752.5936,118.0,19.2,0.0,0.0, +2024-12-10 09:00:00,7.250172,180.39513,31.05,996.52844,48.436485,466.0,662.0705,107.0,18.9,0.0,0.0, +2024-12-10 10:00:00,6.428064,174.64427,29.75,996.6928,50.41667,254.0,493.15976,85.0,18.35,0.0,0.0, +2024-12-10 11:00:00,4.899235,165.8219,28.4,997.3516,54.854652,78.0,300.79868,36.0,18.45,0.0,0.0, +2024-12-10 12:00:00,4.5631676,145.26508,27.8,997.6332,56.806293,1.0,0.0,1.0,18.45,0.0,0.0, +2024-12-10 13:00:00,2.2022717,87.3975,27.3,998.6117,57.402225,0.0,0.0,0.0,18.15,0.0,0.0, +2024-12-10 14:00:00,0.5,216.86998,28.25,998.1411,53.963886,0.0,0.0,0.0,18.05,0.0,0.0, +2024-12-10 15:00:00,0.15,180.0,27.3,998.41327,58.85994,0.0,0.0,0.0,18.55,0.0,0.0, +2024-12-10 16:00:00,2.0670028,57.84773,28.7,998.153,52.241722,0.0,0.0,0.0,17.95,0.0,0.0, +2024-12-10 17:00:00,3.720215,53.74608,31.45,997.7294,44.19071,0.0,0.0,0.0,17.8,0.0,0.0, +2024-12-10 18:00:00,4.4533696,61.132942,31.85,997.8388,42.65759,0.0,0.0,0.0,17.6,0.0,0.0, +2024-12-10 19:00:00,4.7670746,65.85446,31.6,998.03094,42.85945,0.0,0.0,0.0,17.45,0.0,0.0, +2024-12-10 20:00:00,4.924429,66.03751,31.3,998.3208,44.5694,0.0,0.0,0.0,17.8,0.0,0.0, +2024-12-10 21:00:00,5.2654533,67.08714,31.05,998.8102,47.09238,0.0,0.0,0.0,18.45,0.0,0.0, +2024-12-10 22:00:00,6.2962294,67.100105,31.25,999.3116,48.037357,22.0,103.3389,13.0,18.95,0.0,0.0, +2024-12-10 23:00:00,6.648496,60.736244,32.45,999.64026,47.315033,178.0,498.74323,59.0,19.8,0.0,0.0, +2024-12-11 00:00:00,5.9810114,54.183823,34.6,999.795,42.866577,395.0,698.538,84.0,20.15,0.0,0.0, +2024-12-11 01:00:00,5.506814,20.738794,37.25,999.4652,35.364586,523.0,585.01074,152.0,19.4,0.0,0.0, +2024-12-11 02:00:00,4.3072615,3.327345,39.25,999.4159,29.90829,665.0,581.6179,204.0,18.45,0.0,0.0, +2024-12-11 03:00:00,3.35,270.0,37.65,999.37604,32.508457,801.0,651.82776,208.0,18.4,0.0,0.0, +2024-12-11 04:00:00,4.918587,197.14563,29.4,1000.35425,59.71558,930.0,749.79376,197.0,20.75,0.0,0.8, +2024-12-11 05:00:00,4.0718546,65.32315,32.1,999.33356,49.013416,347.0,102.86842,245.0,20.05,0.0,0.1, +2024-12-11 06:00:00,2.1505814,358.66782,31.8,999.1273,52.53726,310.0,106.24081,209.0,20.9,0.0,0.2, +2024-12-11 07:00:00,1.2020814,106.9276,34.95,998.31555,40.381504,528.0,166.71925,385.0,19.5,0.0,0.1, +2024-12-11 08:00:00,1.1715374,219.80553,34.85,997.5194,41.626522,457.0,255.88675,273.0,19.9,0.0,0.0, +2024-12-11 09:00:00,4.133098,235.34862,30.45,997.6041,57.971367,247.0,93.727005,196.0,21.25,0.0,0.0, +2024-12-11 10:00:00,3.25,202.6199,28.15,998.2378,65.19876,228.0,272.58743,134.0,21.0,0.0,0.0, +2024-12-11 11:00:00,2.4738634,165.96373,26.9,998.50183,68.44086,31.0,14.211225,29.0,20.6,0.0,0.0, +2024-12-11 12:00:00,2.4824383,152.4028,27.0,998.6039,67.62164,1.0,0.0,1.0,20.5,0.0,0.0, +2024-12-11 13:00:00,2.2388613,119.42737,28.75,998.74976,62.19487,0.0,0.0,0.0,20.8,0.0,0.0, +2024-12-11 14:00:00,2.1708293,118.92633,27.95,998.9269,64.55803,0.0,0.0,0.0,20.65,0.0,0.0, +2024-12-11 15:00:00,2.3070545,150.1012,27.4,998.9121,67.493004,0.0,0.0,0.0,20.85,0.0,0.0, +2024-12-11 16:00:00,2.5739076,150.9455,26.6,998.39453,73.16951,0.0,0.0,0.0,21.4,0.0,0.0, +2024-12-11 17:00:00,1.9602295,142.25313,26.35,998.28876,74.25623,0.0,0.0,0.0,21.4,0.0,0.0, +2024-12-11 18:00:00,1.523975,138.99101,25.75,997.97485,76.46922,0.0,0.0,0.0,21.3,0.0,0.0, +2024-12-11 19:00:00,1.4089003,117.47435,25.4,998.06476,77.8358,0.0,0.0,0.0,21.25,0.0,0.0, +2024-12-11 20:00:00,1.4603082,141.95291,25.15,998.05774,79.00226,0.0,0.0,0.0,21.25,0.0,0.0, +2024-12-11 21:00:00,1.0816654,123.6901,24.45,998.43536,82.88089,0.0,0.0,0.0,21.35,0.0,0.0, +2024-12-11 22:00:00,1.9962465,157.93205,25.0,998.7481,80.69453,21.0,92.411026,13.0,21.45,0.0,0.0, +2024-12-11 23:00:00,0.3,180.0,27.15,999.30206,71.71379,160.0,383.1163,69.0,21.6,0.0,0.0, +2024-12-12 00:00:00,1.431782,204.77512,28.65,999.3421,66.511635,286.0,362.5299,125.0,21.8,0.0,0.0, +2024-12-12 01:00:00,2.2102036,232.35231,29.0,999.05396,65.17604,565.0,704.4257,119.0,21.8,0.0,0.0, +2024-12-12 02:00:00,3.8503246,232.38597,28.7,999.0458,65.31314,675.0,617.6034,186.0,21.55,0.0,0.0, +2024-12-12 03:00:00,4.506939,213.6901,28.3,998.8368,65.03012,912.0,844.70526,144.0,21.1,0.0,0.0, +2024-12-12 04:00:00,4.3416586,208.92633,29.5,998.075,60.84988,1002.0,886.0117,136.0,21.15,0.0,0.0, +2024-12-12 05:00:00,4.5235496,203.44807,29.85,997.2905,59.63552,1025.0,899.3828,133.0,21.15,0.0,0.0, +2024-12-12 06:00:00,4.606517,207.12122,29.35,996.7814,61.00315,974.0,873.4956,143.0,21.05,0.0,0.0, +2024-12-12 07:00:00,4.405962,207.72816,28.35,996.7551,65.040535,880.0,895.385,111.0,21.15,0.0,0.0, +2024-12-12 08:00:00,4.744734,208.99586,27.45,996.6319,67.08897,695.0,809.0594,112.0,20.8,0.0,0.0, +2024-12-12 09:00:00,4.443253,199.04672,26.7,996.6119,70.10905,498.0,732.6095,98.0,20.8,0.0,0.0, +2024-12-12 10:00:00,3.0923293,202.8337,25.95,997.4842,73.508865,282.0,599.50397,74.0,20.85,0.0,0.0, +2024-12-12 11:00:00,3.2202485,205.76927,24.5,997.6435,81.87671,81.0,310.26276,37.0,21.2,0.0,0.0, +2024-12-12 12:00:00,2.5044959,206.05344,24.0,997.8281,83.33878,1.0,0.0,1.0,21.0,0.0,0.0, +2024-12-12 13:00:00,1.677051,206.56499,23.45,998.3091,87.74474,0.0,0.0,0.0,21.3,0.0,0.0, +2024-12-12 14:00:00,1.9104972,222.87889,23.25,998.3034,88.26753,0.0,0.0,0.0,21.2,0.0,0.0, +2024-12-12 15:00:00,1.3536987,274.23633,22.85,998.4908,90.429634,0.0,0.0,0.0,21.2,0.0,0.0, +2024-12-12 16:00:00,1.8027756,273.17978,22.6,997.7897,91.811165,0.0,0.0,0.0,21.2,0.0,0.0, +2024-12-12 17:00:00,1.9241881,245.43285,22.5,997.1917,93.22386,0.0,0.0,0.0,21.35,0.0,4.3, +2024-12-12 18:00:00,1.55,270.0,22.45,997.2896,95.532,0.0,0.0,0.0,21.7,0.0,0.5, +2024-12-12 19:00:00,2.4869661,210.17343,22.05,996.68335,95.81199,0.0,0.0,0.0,21.35,0.0,0.2, +2024-12-12 20:00:00,2.0056171,265.71094,22.1,997.3791,95.520454,0.0,0.0,0.0,21.35,0.0,0.7, +2024-12-12 21:00:00,2.0359273,245.32315,21.9,997.2743,96.69256,0.0,0.0,0.0,21.35,0.0,1.0, +2024-12-12 22:00:00,2.1400933,232.59457,22.1,997.97424,96.40202,16.0,58.12842,11.0,21.5,0.0,0.2, +2024-12-12 23:00:00,1.970406,215.70677,22.65,998.0884,91.25256,114.0,219.97456,62.0,21.15,0.0,0.0, +2024-12-13 00:00:00,1.6560496,208.88649,23.85,998.31995,81.54461,259.0,349.93658,104.0,20.5,0.0,0.0, +2024-12-13 01:00:00,2.5985572,258.9063,25.95,997.881,74.87638,582.0,730.93866,120.0,21.15,0.0,0.1, +2024-12-13 02:00:00,2.4438698,239.23735,26.8,997.60626,69.912415,724.0,700.4732,170.0,20.85,0.0,0.0, +2024-12-13 03:00:00,3.3837848,235.84026,26.55,997.7981,70.73129,667.0,407.21442,297.0,20.8,0.0,0.0, +2024-12-13 04:00:00,4.100305,232.43134,26.7,997.6038,69.678795,937.0,713.2579,240.0,20.7,0.0,0.0, +2024-12-13 05:00:00,4.1548166,230.37103,26.7,997.3062,68.40186,967.0,772.1721,201.0,20.4,0.0,0.0, +2024-12-13 06:00:00,4.103657,223.02507,26.3,996.7001,69.17441,934.0,795.1596,177.0,20.2,0.0,0.0, +2024-12-13 07:00:00,5.080354,216.1933,25.8,996.68665,71.25107,873.0,877.96436,118.0,20.2,0.0,0.0, +2024-12-13 08:00:00,4.09695,203.7495,25.55,996.38245,67.54252,697.0,785.2302,130.0,19.1,0.0,0.0, +2024-12-13 09:00:00,3.8626416,201.25058,25.25,996.0768,69.40338,509.0,752.07983,97.0,19.25,0.0,0.0, +2024-12-13 10:00:00,4.1967254,195.1953,23.75,996.53186,75.921814,284.0,584.5046,80.0,19.25,0.0,0.0, +2024-12-13 11:00:00,2.8111384,185.10208,22.9,997.00433,79.919716,85.0,307.96964,41.0,19.25,0.0,0.0, +2024-12-13 12:00:00,1.3583078,186.3401,22.55,997.3916,82.39984,1.0,0.0,1.0,19.4,0.0,0.0, +2024-12-13 13:00:00,1.8927494,192.20045,22.75,997.6945,80.90092,0.0,0.0,0.0,19.3,0.0,0.0, +2024-12-13 14:00:00,2.0651877,186.95287,22.2,998.2746,84.4344,0.0,0.0,0.0,19.45,0.0,0.0, +2024-12-13 15:00:00,1.25,163.73972,21.8,998.26324,86.51925,0.0,0.0,0.0,19.45,0.0,0.0, +2024-12-13 16:00:00,2.8935273,189.95056,21.7,998.26044,87.59211,0.0,0.0,0.0,19.55,0.0,0.0, +2024-12-13 17:00:00,3.100403,179.07597,20.85,997.9394,87.24372,0.0,0.0,0.0,18.65,0.0,0.0, +2024-12-13 18:00:00,1.8973665,161.56496,20.6,997.53546,87.22102,0.0,0.0,0.0,18.4,0.0,0.0, +2024-12-13 19:00:00,0.5147815,150.9455,20.7,997.5383,89.439316,0.0,0.0,0.0,18.9,0.0,0.0, +2024-12-13 20:00:00,0.9192388,22.380184,20.55,997.931,92.54895,0.0,0.0,0.0,19.3,0.0,6.4, +2024-12-13 21:00:00,2.5739074,82.1848,20.05,997.8177,86.89702,0.0,0.0,0.0,17.8,0.0,0.6, +2024-12-13 22:00:00,1.6347783,156.57129,20.6,997.9322,82.68199,11.0,35.11502,8.0,17.55,0.0,0.0, +2024-12-13 23:00:00,2.782984,162.21602,22.0,998.864,82.59063,130.0,293.36948,61.0,18.9,0.0,0.0, +2024-12-14 00:00:00,2.419194,161.93944,24.35,999.02783,70.32329,361.0,559.1694,114.0,18.6,0.0,0.0, +2024-12-14 01:00:00,1.05,180.0,26.75,999.0929,50.596985,614.0,792.45264,114.0,15.65,0.0,0.0, +2024-12-14 02:00:00,2.5811818,225.78473,28.05,998.8302,47.188545,783.0,777.22534,169.0,15.75,0.0,0.0, +2024-12-14 03:00:00,3.3015149,234.86572,27.9,998.5284,53.876236,823.0,534.13477,338.0,17.7,0.0,0.0, +2024-12-14 04:00:00,4.007805,236.70642,28.15,998.2378,51.44691,1035.0,934.51245,122.0,17.2,0.0,0.0, +2024-12-14 05:00:00,3.901602,239.16223,28.15,998.03937,43.99675,1048.0,933.2753,122.0,14.75,0.0,0.0, +2024-12-14 06:00:00,4.370927,234.30984,27.4,997.62256,49.963623,995.0,918.4907,120.0,16.05,0.0,0.0, +2024-12-14 07:00:00,4.598369,226.76236,26.4,997.49646,57.18568,883.0,893.1337,114.0,17.25,0.0,0.0, +2024-12-14 08:00:00,4.705582,227.15297,25.45,997.4707,64.02427,718.0,844.461,107.0,18.15,0.0,0.0, +2024-12-14 09:00:00,4.808846,224.15756,24.5,997.6435,70.5715,508.0,736.91187,103.0,18.8,0.0,0.0, +2024-12-14 10:00:00,4.881854,212.87627,23.35,998.20703,78.26005,289.0,601.1076,78.0,19.35,0.0,0.0, +2024-12-14 11:00:00,5.2000003,202.6199,22.45,998.77734,82.1317,89.0,340.51773,40.0,19.25,0.0,0.0, +2024-12-14 12:00:00,5.2825184,197.06294,22.25,999.466,80.33216,1.0,0.0,1.0,18.7,0.0,0.0, +2024-12-14 13:00:00,4.6446204,194.33546,21.75,999.84894,80.26524,0.0,0.0,0.0,18.2,0.0,0.0, +2024-12-14 14:00:00,4.7518415,188.47105,21.65,1000.14374,79.24916,0.0,0.0,0.0,17.9,0.0,0.0, +2024-12-14 15:00:00,4.7594643,189.06642,21.55,1000.24005,78.737656,0.0,0.0,0.0,17.7,0.0,0.0, +2024-12-14 16:00:00,4.318565,185.31445,21.3,999.8363,79.19999,0.0,0.0,0.0,17.55,0.0,0.0, +2024-12-14 17:00:00,4.15,180.0,21.05,999.2341,78.914955,0.0,0.0,0.0,17.25,0.0,0.0, +2024-12-14 18:00:00,4.2511764,178.65215,20.75,999.0275,79.373314,0.0,0.0,0.0,17.05,0.0,0.0, +2024-12-14 19:00:00,3.6124783,175.23645,20.65,999.3222,79.35933,0.0,0.0,0.0,16.95,0.0,0.0, +2024-12-14 20:00:00,4.204759,177.27374,20.6,999.8166,78.85063,0.0,0.0,0.0,16.8,0.0,0.0, +2024-12-14 21:00:00,4.031129,172.87508,20.55,999.9146,78.84351,0.0,0.0,0.0,16.75,0.0,0.0, +2024-12-14 22:00:00,3.846102,164.15686,20.7,1000.2161,76.887215,15.0,35.36874,12.0,16.5,0.0,0.0, +2024-12-14 23:00:00,4.011546,169.95071,21.5,1000.6355,72.04636,139.0,230.81723,85.0,16.25,0.0,0.0, +2024-12-15 00:00:00,2.8217902,172.87508,22.7,1001.0654,65.90704,340.0,460.86676,137.0,16.0,0.0,0.0, +2024-12-15 01:00:00,4.3820653,196.57408,23.95,1001.8935,61.11619,541.0,517.6188,215.0,16.0,0.0,0.0, +2024-12-15 02:00:00,5.246189,202.40988,24.45,1002.3038,58.744987,684.0,461.30835,320.0,15.85,0.0,0.0, +2024-12-15 03:00:00,5.3677278,205.37152,24.95,1001.82166,57.015766,883.0,687.6872,259.0,15.85,0.0,0.0, +2024-12-15 04:00:00,6.4399147,206.76392,25.35,1002.03076,55.31876,1009.0,845.67267,183.0,15.75,0.0,0.0, +2024-12-15 05:00:00,7.057797,202.93213,25.05,1001.92334,56.676857,988.0,733.5866,260.0,15.85,0.0,0.0, +2024-12-15 06:00:00,6.9462223,202.8737,24.65,1001.8135,56.217266,915.0,615.7765,328.0,15.35,0.0,0.0, +2024-12-15 07:00:00,7.7999997,202.6199,24.35,1002.20184,57.23567,888.0,859.5745,147.0,15.35,0.0,0.0, +2024-12-15 08:00:00,6.5017304,200.2467,23.85,1001.98987,58.040123,698.0,744.8705,158.0,15.1,0.0,0.0, +2024-12-15 09:00:00,7.147377,199.19556,23.55,1001.9817,57.781376,542.0,805.3413,98.0,14.75,0.0,0.0, +2024-12-15 10:00:00,7.8259187,192.17145,21.7,1002.32684,71.39743,269.0,458.97122,107.0,16.3,0.0,0.0, +2024-12-15 11:00:00,7.2639523,183.55167,20.85,1002.7,74.02786,85.0,296.76645,42.0,16.05,0.0,0.0, +2024-12-15 12:00:00,6.6507516,180.86151,20.4,1003.183,69.57092,1.0,0.0,1.0,14.65,0.0,0.0, +2024-12-15 13:00:00,6.129437,174.3825,20.25,1004.07153,63.706203,0.0,0.0,0.0,13.15,0.0,0.0, +2024-12-15 14:00:00,5.9413805,173.23392,20.2,1004.36755,63.695152,0.0,0.0,0.0,13.1,0.0,0.0, +2024-12-15 15:00:00,5.7924523,173.05911,19.95,1004.5589,63.224636,0.0,0.0,0.0,12.75,0.0,0.0, +2024-12-15 16:00:00,5.918826,171.25392,19.8,1004.5549,63.60649,0.0,0.0,0.0,12.7,0.0,0.0, +2024-12-15 17:00:00,5.6189413,168.19014,19.25,1004.4398,66.25006,0.0,0.0,0.0,12.8,0.0,0.0, +2024-12-15 18:00:00,5.139309,160.68355,18.85,1004.4286,66.6013,0.0,0.0,0.0,12.5,0.0,0.0, +2024-12-15 19:00:00,4.6089587,151.48885,18.55,1004.8167,66.538445,0.0,0.0,0.0,12.2,0.0,0.0, +2024-12-15 20:00:00,3.9990625,132.4664,17.75,1005.0912,67.92278,0.0,0.0,0.0,11.75,0.0,0.0, +2024-12-15 21:00:00,4.069705,116.25018,16.85,1005.2636,67.964005,0.0,0.0,0.0,10.9,0.0,0.0, +2024-12-15 22:00:00,4.790094,126.51115,17.4,1005.77527,64.772095,21.0,106.90992,12.0,10.7,0.0,0.0, +2024-12-15 23:00:00,5.1973553,134.61028,19.6,1006.2351,56.061367,183.0,524.38556,61.0,10.6,0.0,0.0, +2024-12-16 00:00:00,6.423589,148.04193,21.5,1006.4871,51.37831,412.0,735.46014,89.0,11.05,0.0,0.0, +2024-12-16 01:00:00,6.3287044,154.24478,22.9,1006.9228,45.637657,628.0,811.28375,118.0,10.55,0.0,0.0, +2024-12-16 02:00:00,6.161371,164.94873,24.25,1006.7619,41.514687,822.0,874.24426,133.0,10.35,0.0,0.0, +2024-12-16 03:00:00,6.4778466,174.68555,25.35,1006.1968,39.135643,976.0,925.2824,137.0,10.45,0.0,0.0, +2024-12-16 04:00:00,6.852919,181.67236,25.85,1005.6155,39.27631,1070.0,963.6672,129.0,10.95,0.0,0.0, +2024-12-16 05:00:00,7.256032,187.12492,26.05,1004.82733,40.655502,1093.0,975.2692,125.0,11.65,0.0,0.0, +2024-12-16 06:00:00,7.9488993,189.0475,25.25,1004.508,45.97978,1044.0,964.4989,124.0,12.8,0.0,0.0, +2024-12-16 07:00:00,8.293673,185.88235,24.8,1004.4958,48.322674,928.0,938.51587,118.0,13.15,0.0,0.0, +2024-12-16 08:00:00,8.667467,183.6381,24.0,1004.17615,52.543003,758.0,892.1475,110.0,13.7,0.0,0.0, +2024-12-16 09:00:00,8.350599,179.31387,23.35,1003.7615,54.28627,547.0,813.7516,97.0,13.6,0.0,0.0, +2024-12-16 10:00:00,8.109871,177.17294,22.4,1003.735,59.015247,316.0,673.5374,77.0,14.0,0.0,0.0, +2024-12-16 11:00:00,7.2857738,168.92145,21.25,1004.09955,65.17915,101.0,404.50415,42.0,14.45,0.0,0.0, +2024-12-16 12:00:00,6.3186235,166.7335,20.75,1004.284,68.74768,2.0,0.0,2.0,14.8,0.0,0.0, +2024-12-16 13:00:00,6.442243,164.2378,20.15,1004.4654,73.20001,0.0,0.0,0.0,15.2,0.0,0.0, +2024-12-16 14:00:00,5.9165025,159.72723,19.95,1004.658,75.551956,0.0,0.0,0.0,15.5,0.0,0.0, +2024-12-16 15:00:00,4.900255,151.34299,19.55,1004.6467,74.52181,0.0,0.0,0.0,14.9,0.0,0.0, +2024-12-16 16:00:00,3.9003205,143.86453,18.9,1004.52893,70.646545,0.0,0.0,0.0,13.45,0.0,0.0, +2024-12-16 17:00:00,3.2330325,140.64827,18.4,1004.2173,64.990074,0.0,0.0,0.0,11.7,0.0,0.0, +2024-12-16 18:00:00,3.2101402,142.59457,18.1,1003.8121,61.77256,0.0,0.0,0.0,10.65,0.0,0.0, +2024-12-16 19:00:00,3.0103986,138.36655,17.95,1003.6093,59.710804,0.0,0.0,0.0,10.0,0.0,0.0, +2024-12-16 20:00:00,2.653771,137.29063,17.8,1003.7041,56.742664,0.0,0.0,0.0,9.1,0.0,0.0, +2024-12-16 21:00:00,2.6907248,131.98714,17.85,1003.8048,51.797016,0.0,0.0,0.0,7.8,0.0,0.0, +2024-12-16 22:00:00,2.836371,130.71075,18.85,1003.7343,43.89959,22.0,107.75901,13.0,6.3,0.0,0.0, +2024-12-16 23:00:00,3.1064448,146.82147,22.2,1003.8288,34.2567,188.0,553.3757,60.0,5.7,0.0,0.0, +2024-12-17 00:00:00,2.9124732,145.49142,25.9,1003.63293,26.681211,420.0,760.5309,87.0,5.3,0.0,0.0, +2024-12-17 01:00:00,3.7769036,96.84268,29.85,1002.7467,23.987526,648.0,871.808,101.0,7.1,0.0,0.0, +2024-12-17 02:00:00,2.910756,94.92702,33.15,1002.3372,21.216347,845.0,931.22144,112.0,8.05,0.0,0.0, +2024-12-17 03:00:00,1.3124405,130.36446,34.85,1001.6864,20.301563,993.0,964.5782,119.0,8.8,0.0,0.0, +2024-12-17 04:00:00,3.6891732,212.82854,34.25,1000.8773,30.387924,1078.0,979.3034,122.0,14.4,0.0,0.0, +2024-12-17 05:00:00,4.8877397,210.76265,33.15,1000.4522,38.651936,1094.0,978.1497,123.0,17.2,0.0,0.0, +2024-12-17 06:00:00,6.35059,206.1615,32.1,1000.028,39.72972,1040.0,963.9219,120.0,16.7,0.0,0.0, +2024-12-17 07:00:00,6.136163,194.1495,31.25,999.51,37.521393,924.0,936.2967,115.0,15.05,0.0,0.0, +2024-12-17 08:00:00,5.3368998,195.2081,31.35,999.21497,37.549046,754.0,889.1369,107.0,15.15,0.0,0.0, +2024-12-17 09:00:00,5.0990195,205.55992,28.95,999.54865,49.89339,544.0,811.37665,94.0,17.45,0.0,0.0, +2024-12-17 10:00:00,4.4598203,199.65392,27.3,999.90125,55.624714,315.0,667.3168,77.0,17.65,0.0,0.0, +2024-12-17 11:00:00,4.107615,176.51074,25.7,1000.0567,62.293243,102.0,414.19742,41.0,17.95,0.0,0.0, +2024-12-17 12:00:00,4.292144,171.96439,25.1,1000.43713,62.355923,2.0,0.0,2.0,17.4,0.0,0.0, +2024-12-17 13:00:00,3.7513332,181.5275,23.75,1001.0944,63.857956,0.0,0.0,0.0,16.5,0.0,0.0, +2024-12-17 14:00:00,3.1535695,177.27374,23.15,1001.57367,68.13008,0.0,0.0,0.0,16.95,0.0,0.0, +2024-12-17 15:00:00,2.754088,183.12207,22.8,1001.7626,69.58893,0.0,0.0,0.0,16.95,0.0,0.0, +2024-12-17 16:00:00,2.9740543,196.60706,22.4,1001.2554,73.59021,0.0,0.0,0.0,17.45,0.0,0.0, +2024-12-17 17:00:00,3.3948488,189.32352,22.1,1000.9497,76.1373,0.0,0.0,0.0,17.7,0.0,0.0, +2024-12-17 18:00:00,3.7054014,183.094,21.95,1000.4494,78.79486,0.0,0.0,0.0,18.1,0.0,0.0, +2024-12-17 19:00:00,3.3,180.0,21.55,1000.3392,83.05504,0.0,0.0,0.0,18.55,0.0,0.0, +2024-12-17 20:00:00,3.4014704,181.68465,21.25,1000.52905,84.331055,0.0,0.0,0.0,18.5,0.0,0.0, +2024-12-17 21:00:00,4.015283,185.00055,21.1,1000.7234,86.452484,0.0,0.0,0.0,18.75,0.0,0.0, +2024-12-17 22:00:00,4.3603325,183.94511,21.5,1001.2305,85.685585,19.0,96.58069,11.0,19.0,0.0,0.0, +2024-12-17 23:00:00,5.065817,184.52873,22.9,1001.666,77.95085,174.0,504.52844,58.0,18.85,0.0,0.0, +2024-12-18 00:00:00,5.296461,187.59454,24.1,1002.19525,73.19205,393.0,701.0475,87.0,19.0,0.0,0.0, +2024-12-18 01:00:00,5.8105507,195.47139,25.1,1002.1234,70.90285,609.0,809.63715,102.0,19.45,0.0,0.0, +2024-12-18 02:00:00,6.3120914,196.56891,25.75,1002.04175,67.3724,799.0,872.6071,113.0,19.25,0.0,0.0, +2024-12-18 03:00:00,6.642665,197.0711,26.25,1001.95605,64.19624,942.0,908.96344,119.0,18.95,0.0,0.0, +2024-12-18 04:00:00,7.336552,198.682,26.15,1001.7552,64.57673,1029.0,929.38354,122.0,18.95,0.0,0.0, +2024-12-18 05:00:00,8.050621,196.972,25.8,1001.94385,64.30062,1050.0,933.707,123.0,18.55,0.0,0.0, +2024-12-18 06:00:00,8.100771,194.2936,25.55,1001.9372,65.26135,1005.0,924.62616,122.0,18.55,0.0,0.0, +2024-12-18 07:00:00,8.070471,191.79723,25.25,1001.82983,64.18257,897.0,901.74915,117.0,18.0,0.0,0.0, +2024-12-18 08:00:00,8.364359,191.37706,24.5,1001.4127,66.281296,734.0,858.75586,108.0,17.8,0.0,0.0, +2024-12-18 09:00:00,7.99015,185.74617,23.7,1001.2915,68.88774,531.0,782.12866,96.0,17.65,0.0,0.0, +2024-12-18 10:00:00,7.560589,183.03264,22.65,1001.659,76.70351,308.0,647.33655,76.0,18.35,0.0,0.0, +2024-12-18 11:00:00,6.550191,179.56265,21.6,1002.0265,83.582085,100.0,395.7472,41.0,18.7,0.0,0.0, +2024-12-18 12:00:00,6.61211,176.53185,21.1,1002.60785,84.579285,2.0,0.0,2.0,18.4,0.0,0.0, +2024-12-18 13:00:00,6.2307706,170.76451,20.5,1003.7808,82.149574,0.0,0.0,0.0,17.35,0.0,0.0, +2024-12-18 14:00:00,6.3737745,168.69011,20.4,1004.17474,81.61937,0.0,0.0,0.0,17.15,0.0,0.0, +2024-12-18 15:00:00,6.3505907,172.76317,20.2,1003.97076,83.68548,0.0,0.0,0.0,17.35,0.0,0.0, +2024-12-18 16:00:00,7.0035706,170.13426,20.15,1003.672,83.41573,0.0,0.0,0.0,17.25,0.0,0.0, +2024-12-18 17:00:00,7.307701,170.15105,20.0,1003.5684,83.13475,0.0,0.0,0.0,17.05,0.0,0.0, +2024-12-18 18:00:00,7.2272053,169.2343,20.1,1003.2737,80.808464,0.0,0.0,0.0,16.7,0.0,0.0, +2024-12-18 19:00:00,7.203471,166.34956,20.1,1003.2737,79.28203,0.0,0.0,0.0,16.4,0.0,0.0, +2024-12-18 20:00:00,6.876409,165.2564,20.15,1003.47363,78.53564,0.0,0.0,0.0,16.3,0.0,0.0, +2024-12-18 21:00:00,6.7203054,162.239,20.2,1003.7724,77.301506,0.0,0.0,0.0,16.1,0.0,0.0, +2024-12-18 22:00:00,6.5622025,160.87468,20.4,1004.3731,77.08605,17.0,73.07246,11.0,16.25,0.0,0.0, +2024-12-18 23:00:00,7.5433745,162.64589,21.6,1004.8035,71.83529,158.0,385.19208,70.0,16.3,0.0,0.0, +2024-12-19 00:00:00,7.2532754,164.81412,23.1,1005.0438,66.200966,379.0,609.0993,114.0,16.45,0.0,0.0, +2024-12-19 01:00:00,7.3979726,170.66507,24.45,1004.7835,61.23041,589.0,708.8757,146.0,16.5,0.0,0.0, +2024-12-19 02:00:00,7.7103825,177.02634,25.2,1004.804,59.86523,814.0,872.4741,129.0,16.85,0.0,0.0, +2024-12-19 03:00:00,8.25,180.0,25.95,1004.6261,57.805153,974.0,943.9293,120.0,17.0,0.0,0.0, +2024-12-19 04:00:00,8.71163,182.96088,26.2,1004.3355,57.137333,1064.0,962.4789,125.0,17.05,0.0,0.0, +2024-12-19 05:00:00,9.11112,182.83095,26.3,1004.04047,56.62126,1086.0,967.8448,125.0,17.0,0.0,0.0, +2024-12-19 06:00:00,9.016789,183.497,26.4,1003.6465,55.40279,1039.0,958.6444,123.0,16.75,0.0,0.0, +2024-12-19 07:00:00,8.61757,183.65921,25.95,1003.535,57.076847,927.0,935.42255,117.0,16.8,0.0,0.0, +2024-12-19 08:00:00,8.275566,184.50482,25.15,1003.3149,61.778965,759.0,890.1181,109.0,17.3,0.0,0.0, +2024-12-19 09:00:00,7.8040056,181.83574,24.0,1002.9859,65.13948,549.0,812.23584,96.0,17.05,0.0,0.0, +2024-12-19 10:00:00,7.400169,180.38712,22.9,1003.3521,69.608086,320.0,672.0201,78.0,17.05,0.0,0.0, +2024-12-19 11:00:00,6.500769,179.11862,21.75,1003.5187,77.780685,105.0,410.96722,43.0,17.7,0.0,0.0, +2024-12-19 12:00:00,6.7812243,174.49968,21.25,1003.802,81.214195,2.0,0.0,2.0,17.9,0.0,0.0, +2024-12-19 13:00:00,6.060115,169.06096,20.7,1004.38165,83.742256,0.0,0.0,0.0,17.85,0.0,0.0, +2024-12-19 14:00:00,5.9300084,165.84656,20.8,1004.2853,84.28173,0.0,0.0,0.0,18.05,0.0,0.0, +2024-12-19 15:00:00,5.711611,159.50258,20.65,1003.98364,85.86887,0.0,0.0,0.0,18.2,0.0,0.0, +2024-12-19 16:00:00,4.427471,153.14566,20.45,1003.68054,82.40334,0.0,0.0,0.0,17.35,0.0,0.0, +2024-12-19 17:00:00,3.7215588,149.30035,20.3,1002.8827,75.36747,0.0,0.0,0.0,15.8,0.0,0.0, +2024-12-19 18:00:00,3.4121108,145.14548,20.3,1002.48596,67.33811,0.0,0.0,0.0,14.05,0.0,0.0, +2024-12-19 19:00:00,3.1945267,140.07967,20.8,1002.2026,55.991146,0.0,0.0,0.0,11.7,0.0,0.0, +2024-12-19 20:00:00,3.4311075,133.22856,22.05,1002.2375,44.647133,0.0,0.0,0.0,9.45,0.0,0.0, +2024-12-19 21:00:00,4.1743264,124.261154,23.35,1002.3728,43.098824,0.0,0.0,0.0,10.1,0.0,0.0, +2024-12-19 22:00:00,4.405111,116.27415,24.35,1002.8961,43.956345,19.0,98.3537,11.0,11.3,0.0,0.0, +2024-12-19 23:00:00,3.5846896,120.141304,26.95,1003.16534,41.31076,176.0,515.6455,59.0,12.7,0.0,0.0, +2024-12-20 00:00:00,4.68188,109.98319,29.85,1003.04425,35.826057,400.0,726.5386,85.0,13.1,0.0,0.0, +2024-12-20 01:00:00,4.473533,117.997055,32.05,1002.50696,27.794724,627.0,845.10455,100.0,11.15,0.0,0.0, +2024-12-20 02:00:00,3.7124789,134.4544,34.35,1002.0704,24.753883,821.0,906.8377,110.0,11.35,0.0,0.0, +2024-12-20 03:00:00,3.4889112,154.5367,36.25,1001.52344,22.806902,967.0,940.27277,117.0,11.7,0.0,0.0, +2024-12-20 04:00:00,5.3443894,190.78426,36.5,1000.93475,25.811882,1054.0,956.6569,121.0,13.8,0.0,0.0, +2024-12-20 05:00:00,7.3420024,196.21346,34.35,1000.58215,32.644512,1074.0,958.6872,122.0,15.6,0.0,0.0, +2024-12-20 06:00:00,8.902247,194.97292,32.45,1000.23553,36.081272,1026.0,947.6546,120.0,15.5,0.0,0.0, +2024-12-20 07:00:00,8.068612,187.47723,31.2,1000.2029,37.38708,915.0,922.8821,115.0,14.95,0.0,0.0, +2024-12-20 08:00:00,7.835975,185.49223,30.75,999.8937,41.160984,750.0,878.9981,107.0,16.05,0.0,0.0, +2024-12-20 09:00:00,7.2111025,176.82024,28.95,1000.3423,45.216118,543.0,802.8505,94.0,15.9,0.0,0.0, +2024-12-20 10:00:00,7.017834,175.91446,27.95,1000.6133,50.747837,316.0,663.33466,76.0,16.8,0.0,0.0, +2024-12-20 11:00:00,6.052479,167.11182,26.1,1001.15845,56.572514,104.0,406.25003,42.0,16.8,0.0,0.0, +2024-12-20 12:00:00,7.6975646,168.76309,25.1,1001.52826,57.784748,2.0,0.0,2.0,16.2,0.0,0.0, +2024-12-20 13:00:00,5.8077536,177.03912,23.6,1002.57806,64.43737,0.0,0.0,0.0,16.5,0.0,0.0, +2024-12-20 14:00:00,6.1165757,175.78099,23.4,1002.67163,65.63503,0.0,0.0,0.0,16.6,0.0,0.0, +2024-12-20 15:00:00,5.716861,168.39526,23.05,1002.2655,67.8945,0.0,0.0,0.0,16.8,0.0,0.0, +2024-12-20 16:00:00,4.244997,164.98158,22.75,1001.86017,70.24372,0.0,0.0,0.0,17.05,0.0,0.0, +2024-12-20 17:00:00,3.1953092,159.86362,22.5,1001.15906,70.6431,0.0,0.0,0.0,16.9,0.0,0.0, +2024-12-20 18:00:00,2.5,163.73972,22.25,1000.8545,69.48307,0.0,0.0,0.0,16.4,0.0,0.0, +2024-12-20 19:00:00,2.5985572,168.90631,22.05,1000.74976,69.66612,0.0,0.0,0.0,16.25,0.0,0.0, +2024-12-20 20:00:00,2.7681222,163.20155,22.1,1000.85046,68.35555,0.0,0.0,0.0,16.0,0.0,0.0, +2024-12-20 21:00:00,2.6832817,153.43501,22.05,1000.9482,64.10154,0.0,0.0,0.0,14.95,0.0,0.0, +2024-12-20 22:00:00,2.55196,145.37578,22.9,1001.1701,53.46887,18.0,86.93551,11.0,12.95,0.0,0.0, +2024-12-20 23:00:00,2.830636,162.52513,26.15,1001.5568,39.62207,171.0,506.10382,57.0,11.35,0.0,0.0, +2024-12-21 00:00:00,3.3514922,178.29022,29.75,1001.3554,30.557,394.0,717.6282,84.0,10.6,0.0,0.0, +2024-12-21 01:00:00,3.6503425,166.53477,32.8,1001.4352,24.843786,617.0,832.5508,99.0,10.1,0.0,0.0, +2024-12-21 02:00:00,4.160829,175.8654,35.5,1000.90924,22.170511,813.0,897.92773,110.0,10.65,0.0,0.0, +2024-12-21 03:00:00,5.433691,190.069,36.8,1000.347,23.711155,961.0,934.43365,117.0,12.75,0.0,0.0, +2024-12-21 04:00:00,6.7581434,195.88724,36.3,999.9372,29.028152,1050.0,952.9059,121.0,15.45,0.0,0.0, +2024-12-21 05:00:00,7.8946185,194.30031,35.3,999.416,30.869473,1073.0,958.60785,121.0,15.55,0.0,0.0, +2024-12-21 06:00:00,7.417715,187.74768,34.8,999.30396,30.0491,1028.0,949.2302,120.0,14.7,0.0,0.0, +2024-12-21 07:00:00,7.2835426,188.68628,34.25,999.1907,34.87798,920.0,928.8132,114.0,16.55,0.0,0.0, +2024-12-21 08:00:00,6.622877,184.76355,32.05,999.3322,41.516754,765.0,902.0418,104.0,17.35,0.0,0.0, +2024-12-21 09:00:00,5.7638965,183.97931,31.5,999.3178,43.513496,549.0,811.3669,94.0,17.6,0.0,0.0, +2024-12-21 10:00:00,5.8008623,179.01227,29.75,999.4705,46.158314,320.0,671.27454,76.0,16.95,0.0,0.0, +2024-12-21 11:00:00,5.450229,180.52562,27.25,1000.09845,56.317646,107.0,414.6825,43.0,17.8,0.0,0.0, +2024-12-21 12:00:00,5.3640003,168.16638,26.2,1000.66534,59.53207,2.0,0.0,2.0,17.7,0.0,0.0, +2024-12-21 13:00:00,3.7963798,167.06194,25.6,1001.2442,61.297943,0.0,0.0,0.0,17.6,0.0,0.0, +2024-12-21 14:00:00,3.118493,167.96942,25.45,1001.24005,61.07079,0.0,0.0,0.0,17.4,0.0,0.0, +2024-12-21 15:00:00,2.5739074,172.1848,25.05,1001.03064,62.148132,0.0,0.0,0.0,17.3,0.0,0.0, +2024-12-21 16:00:00,2.236068,169.6952,25.35,1000.54285,60.090088,0.0,0.0,0.0,17.05,0.0,0.0, +2024-12-21 17:00:00,1.806931,165.5792,25.8,1000.0592,53.86048,0.0,0.0,0.0,15.75,0.0,0.0, +2024-12-21 18:00:00,2.5612497,128.65984,27.05,999.7955,36.958546,0.0,0.0,0.0,11.1,0.0,0.0, +2024-12-21 19:00:00,3.58922,108.68745,30.2,999.78,25.6865,0.0,0.0,0.0,8.4,0.0,0.0, +2024-12-21 20:00:00,4.0040603,105.945465,30.4,1000.08295,24.966726,0.0,0.0,0.0,8.15,0.0,0.0, +2024-12-21 21:00:00,5.011237,102.09474,30.7,1000.09076,24.292946,0.0,0.0,0.0,8.0,0.0,0.0, +2024-12-21 22:00:00,7.125307,85.16967,31.9,1000.2215,22.535408,18.0,87.87726,11.0,7.9,0.0,0.0, +2024-12-21 23:00:00,8.345208,74.71472,34.35,1000.58215,19.571564,172.0,514.5112,57.0,7.85,0.0,0.0, +2024-12-22 00:00:00,7.2749567,70.319595,36.9,1000.64716,16.830572,397.0,727.36536,84.0,7.7,0.0,0.0, +2024-12-22 01:00:00,7.27066,65.197365,40.4,999.94055,14.171919,620.0,839.35095,99.0,7.95,0.0,0.0, +2024-12-22 02:00:00,5.87069,54.00841,43.2,999.51276,11.496131,816.0,901.83685,111.0,7.05,0.0,0.0, +2024-12-22 03:00:00,3.7165172,42.27363,45.0,998.7621,9.706761,965.0,939.7004,117.0,5.95,0.0,0.0, +2024-12-22 04:00:00,2.0886598,281.0409,44.2,998.34576,10.082349,1012.0,862.9786,171.0,5.9,0.0,0.0, +2024-12-22 05:00:00,6.0018744,271.43207,39.35,998.32684,22.915655,996.0,789.3879,212.0,14.35,0.0,0.0, +2024-12-22 06:00:00,5.261654,273.814,35.35,998.5243,29.147623,935.0,749.1578,218.0,14.7,0.0,0.0, +2024-12-22 07:00:00,3.4014704,268.31534,34.65,998.60565,32.936047,830.0,756.3112,173.0,16.0,0.0,0.0, +2024-12-22 08:00:00,1.637834,257.66092,35.1,998.31934,28.79986,693.0,752.0037,141.0,14.3,0.0,0.0, +2024-12-22 09:00:00,3.434021,222.04915,34.75,997.71515,33.06861,524.0,725.6033,116.0,16.15,0.0,0.0, +2024-12-22 10:00:00,2.3942637,208.70586,31.65,998.0323,45.086,313.0,632.6304,82.0,18.3,0.0,0.0, +2024-12-22 11:00:00,1.2206556,214.9921,30.0,998.5843,48.923386,106.0,397.39023,44.0,18.1,0.0,0.0, +2024-12-22 12:00:00,1.45,270.0,27.95,998.8277,58.280964,3.0,0.0,3.0,19.0,0.0,0.0, +2024-12-22 13:00:00,1.5206907,189.46225,28.15,999.0314,52.76307,0.0,0.0,0.0,17.6,0.0,0.0, +2024-12-22 14:00:00,1.1335784,221.42357,27.6,999.215,52.95736,0.0,0.0,0.0,17.15,0.0,0.0, +2024-12-22 15:00:00,1.0111874,261.46933,26.6,998.6921,58.32689,0.0,0.0,0.0,17.75,0.0,0.0, +2024-12-22 16:00:00,1.25,253.73972,25.1,998.0566,67.03164,0.0,0.0,0.0,18.55,0.0,0.0, +2024-12-22 17:00:00,1.4866068,289.6539,24.2,997.73425,73.66692,0.0,0.0,0.0,19.2,0.0,0.0, +2024-12-22 18:00:00,0.49244288,293.9625,23.7,997.22485,78.31075,0.0,0.0,0.0,19.7,0.0,0.0, +2024-12-22 19:00:00,0.31622776,18.435053,23.3,997.2139,79.726006,0.0,0.0,0.0,19.6,0.0,0.0, +2024-12-22 20:00:00,1.118034,26.564985,23.1,997.20825,77.737434,0.0,0.0,0.0,19.0,0.0,0.0, +2024-12-22 21:00:00,1.6101242,64.23073,22.95,997.7993,74.14886,0.0,0.0,0.0,18.1,0.0,0.0, +2024-12-22 22:00:00,1.5206907,9.462261,24.65,997.94507,61.66613,17.0,88.88916,10.0,16.8,0.0,0.0, +2024-12-22 23:00:00,2.4864633,15.154131,29.6,998.4744,37.305645,165.0,482.64386,58.0,13.5,0.0,0.0, +2024-12-23 00:00:00,1.9525625,346.67545,34.0,998.589,25.074959,393.0,720.96124,84.0,11.25,0.0,0.0, +2024-12-23 01:00:00,3.3800886,277.65054,32.4,998.9445,48.939953,614.0,831.7244,99.0,20.3,0.0,0.0, +2024-12-23 02:00:00,4.0003123,270.71616,31.95,998.83374,53.224213,809.0,895.5576,110.0,21.25,0.0,0.0, +2024-12-23 03:00:00,4.92062,264.75296,31.45,998.6222,51.966152,956.0,931.69867,116.0,20.4,0.0,0.0, +2024-12-23 04:00:00,3.8551912,272.97366,31.75,998.62994,47.2775,1044.0,948.54016,120.0,19.15,0.0,0.0, +2024-12-23 05:00:00,2.8217902,240.25522,33.5,998.77466,43.238377,1063.0,945.40283,124.0,19.3,0.0,0.0, +2024-12-23 06:00:00,4.5122056,257.19574,31.65,998.3299,45.51193,1027.0,947.1855,120.0,18.45,0.0,0.0, +2024-12-23 07:00:00,3.1312938,231.48305,30.6,998.30225,50.008595,868.0,793.473,178.0,19.0,0.0,0.0, +2024-12-23 08:00:00,2.5632012,249.44388,30.7,997.9083,43.84888,750.0,879.9358,103.0,17.0,0.0,0.0, +2024-12-23 09:00:00,2.9504237,269.029,29.0,998.2603,54.15107,548.0,803.5074,95.0,18.8,0.0,0.0, +2024-12-23 10:00:00,3.2893767,250.46326,26.55,998.98834,69.43607,319.0,659.82104,77.0,20.5,0.0,0.0, +2024-12-23 11:00:00,2.65,238.10924,24.75,999.23706,79.67757,108.0,412.27982,43.0,21.0,0.0,0.0, +2024-12-23 12:00:00,2.098809,257.61926,24.0,999.7127,84.88739,3.0,0.0,3.0,21.3,0.0,0.0, +2024-12-23 13:00:00,2.3753946,210.34317,23.15,1000.87933,86.646675,0.0,0.0,0.0,20.8,0.0,0.0, +2024-12-23 14:00:00,2.376973,194.62091,22.9,1001.2692,86.62319,0.0,0.0,0.0,20.55,0.0,0.0, +2024-12-23 15:00:00,2.7372432,189.46225,22.5,1001.0599,87.122444,0.0,0.0,0.0,20.25,0.0,0.0, +2024-12-23 16:00:00,3.2469218,189.75235,22.1,1000.85046,88.71858,0.0,0.0,0.0,20.15,0.0,0.0, +2024-12-23 17:00:00,3.8395963,188.23553,21.9,1000.4481,88.42818,0.0,0.0,0.0,19.9,0.0,0.0, +2024-12-23 18:00:00,4.522444,185.7105,21.75,1000.04736,88.14196,0.0,0.0,0.0,19.7,0.0,0.0, +2024-12-23 19:00:00,4.902295,181.75337,21.45,1000.0388,88.391,0.0,0.0,0.0,19.45,0.0,0.0, +2024-12-23 20:00:00,4.9010205,181.16911,21.25,1000.4299,88.37445,0.0,0.0,0.0,19.25,0.0,0.0, +2024-12-23 21:00:00,4.6524186,178.15244,21.3,1000.6298,85.93346,0.0,0.0,0.0,18.85,0.0,0.0, +2024-12-23 22:00:00,5.1119957,176.07417,21.35,1001.3253,84.87119,15.0,51.410465,11.0,18.7,0.0,0.0, +2024-12-23 23:00:00,6.1008196,179.06084,22.65,1001.7582,76.70351,154.0,377.61255,71.0,18.35,0.0,0.0, +2024-12-24 00:00:00,6.951618,181.23637,23.65,1002.1827,70.19183,357.0,555.29004,120.0,17.9,0.0,0.0, +2024-12-24 01:00:00,7.006426,182.45398,24.0,1002.39075,64.72816,554.0,612.025,176.0,16.95,0.0,0.0, +2024-12-24 02:00:00,7.1175838,184.02818,24.95,1002.21844,60.5713,773.0,772.5261,171.0,16.8,0.0,0.0, +2024-12-24 03:00:00,7.5599275,187.21893,25.65,1002.2373,57.55016,957.0,898.1774,148.0,16.65,0.0,0.0, +2024-12-24 04:00:00,7.81425,187.35228,25.85,1002.0446,56.871754,1049.0,927.3857,146.0,16.65,0.0,0.0, +2024-12-24 05:00:00,7.785403,188.4943,25.9,1002.1451,57.064762,1059.0,881.9401,183.0,16.75,0.0,0.0, +2024-12-24 06:00:00,7.969473,187.5708,25.75,1001.9425,56.84745,1033.0,914.3481,157.0,16.55,0.0,0.0, +2024-12-24 07:00:00,8.422144,187.50464,25.3,1001.8312,58.573044,922.0,883.4148,153.0,16.6,0.0,0.0, +2024-12-24 08:00:00,8.707611,186.59442,24.5,1001.6111,61.828205,767.0,877.11566,121.0,16.7,0.0,0.0, +2024-12-24 09:00:00,8.471274,184.06145,23.8,1001.4924,64.89095,564.0,820.8889,100.0,16.8,0.0,0.0, +2024-12-24 10:00:00,8.150153,180.3515,22.85,1001.86304,68.939926,333.0,681.40674,82.0,16.85,0.0,0.0, +2024-12-24 11:00:00,7.1543694,177.99751,21.75,1002.6261,74.1805,113.0,414.42563,47.0,16.95,0.0,0.0, +2024-12-24 12:00:00,7.0114193,176.72958,21.25,1003.3061,76.002556,3.0,0.0,3.0,16.85,0.0,0.0, +2024-12-24 13:00:00,7.2790794,174.87692,20.8,1003.69025,74.731125,0.0,0.0,0.0,16.15,0.0,0.0, +2024-12-24 14:00:00,7.274785,175.26915,20.5,1003.97925,74.681114,0.0,0.0,0.0,15.85,0.0,0.0, +2024-12-24 15:00:00,7.125307,175.16966,20.15,1004.0687,75.826584,0.0,0.0,0.0,15.75,0.0,0.0, +2024-12-24 16:00:00,7.0846667,174.32974,20.05,1003.76825,74.366936,0.0,0.0,0.0,15.35,0.0,0.0, +2024-12-24 17:00:00,7.175131,175.2033,20.0,1003.46924,74.12018,0.0,0.0,0.0,15.25,0.0,0.0, +2024-12-24 18:00:00,6.876227,174.99426,19.85,1003.3659,73.61966,0.0,0.0,0.0,15.0,0.0,0.0, +2024-12-24 19:00:00,6.419502,175.53293,19.4,1003.55145,75.21988,0.0,0.0,0.0,14.9,0.0,0.0, +2024-12-24 20:00:00,6.469351,175.56741,19.15,1004.04034,75.4215,0.0,0.0,0.0,14.7,0.0,0.0, +2024-12-24 21:00:00,6.124745,174.848,19.15,1004.13947,74.45433,0.0,0.0,0.0,14.5,0.0,0.0, +2024-12-24 22:00:00,5.9669924,175.67502,19.7,1004.552,70.79755,14.0,52.066895,10.0,14.25,0.0,0.0, +2024-12-24 23:00:00,6.8183575,175.79472,20.9,1004.9824,64.05725,149.0,381.01648,66.0,13.85,0.0,0.0, +2024-12-25 00:00:00,7.0528364,178.37506,22.4,1005.52026,55.477345,363.0,571.8242,120.0,13.05,0.0,0.0, +2024-12-25 01:00:00,7.150699,186.82677,23.3,1005.843,51.512547,587.0,711.0366,149.0,12.75,0.0,0.0, +2024-12-25 02:00:00,7.5538073,186.84268,23.6,1006.14886,50.754623,677.0,561.7201,240.0,12.8,0.0,0.0, +2024-12-25 03:00:00,8.238932,185.5721,23.9,1006.2562,52.34664,808.0,503.43338,355.0,13.55,0.0,0.0, +2024-12-25 04:00:00,8.459313,186.78888,24.35,1006.16943,49.317898,947.0,660.66516,304.0,13.05,0.0,0.0, +2024-12-25 05:00:00,8.670064,187.28886,24.5,1006.0746,50.66079,980.0,677.54865,307.0,13.6,0.0,0.0, +2024-12-25 06:00:00,9.116606,186.93004,24.05,1005.8636,53.415577,1012.0,849.2162,198.0,14.0,0.0,0.0, +2024-12-25 07:00:00,9.529559,184.5139,23.4,1005.548,56.820057,805.0,589.88275,291.0,14.35,0.0,0.0, +2024-12-25 08:00:00,10.22069,183.6462,22.4,1005.7186,56.023224,635.0,557.1315,224.0,13.2,0.0,0.0, +2024-12-25 09:00:00,10.75,180.0,22.15,1005.7116,55.59618,564.0,813.51807,103.0,12.85,0.0,0.0, +2024-12-25 10:00:00,10.461955,177.26073,21.1,1006.1783,60.654255,334.0,683.95636,81.0,13.2,0.0,0.0, +2024-12-25 11:00:00,9.845938,174.46321,20.35,1006.75214,63.31391,117.0,435.31485,47.0,13.15,0.0,0.0, +2024-12-25 12:00:00,9.681038,172.58144,19.45,1007.52,67.823586,3.0,20.608595,2.0,13.35,0.0,0.0, +2024-12-25 13:00:00,8.933225,168.37564,18.5,1008.48456,69.882195,0.0,0.0,0.0,12.9,0.0,0.0, +2024-12-25 14:00:00,8.36675,162.9727,18.6,1008.98315,65.89566,0.0,0.0,0.0,12.1,0.0,0.0, +2024-12-25 15:00:00,7.7157307,157.92274,18.75,1009.18604,62.54024,0.0,0.0,0.0,11.45,0.0,0.0, +2024-12-25 16:00:00,7.4035463,154.8195,18.8,1009.0881,60.714836,0.0,0.0,0.0,11.05,0.0,0.0, +2024-12-25 17:00:00,6.8090014,146.0765,18.3,1008.8755,59.39683,0.0,0.0,0.0,10.25,0.0,0.0, +2024-12-25 18:00:00,5.4740295,129.06847,17.45,1008.75165,59.59075,0.0,0.0,0.0,9.5,0.0,0.0, +2024-12-25 19:00:00,5.056926,133.79825,17.45,1008.8508,59.191685,0.0,0.0,0.0,9.4,0.0,0.0, +2024-12-25 20:00:00,5.3744764,135.75375,17.9,1009.26074,58.707314,0.0,0.0,0.0,9.7,0.0,0.0, +2024-12-25 21:00:00,6.504806,140.9275,17.5,1009.94324,62.25448,0.0,0.0,0.0,10.2,0.0,0.0, +2024-12-25 22:00:00,6.594695,139.30457,16.95,1010.7207,64.457825,15.0,65.9534,10.0,10.2,0.0,0.0, +2024-12-25 23:00:00,7.1001763,142.72653,17.85,1011.34174,55.995205,148.0,393.86475,63.0,8.95,0.0,0.0, +2024-12-26 00:00:00,7.2945185,151.32695,19.1,1011.77435,45.974804,376.0,645.3081,103.0,7.2,0.0,0.0, +2024-12-26 01:00:00,7.401689,153.95428,20.85,1011.82446,30.47476,617.0,808.9983,120.0,2.85,0.0,0.0, +2024-12-26 02:00:00,6.9729834,161.1752,22.5,1011.57336,22.460339,843.0,939.9442,113.0,0.0,0.0,0.0, +2024-12-26 03:00:00,6.717328,169.2756,24.0,1011.0201,19.284086,1001.0,983.41925,117.0,-0.85,0.0,0.0, +2024-12-26 04:00:00,7.3744493,175.33322,24.95,1010.25287,19.24053,1093.0,996.09436,124.0,-0.1,0.0,0.0, +2024-12-26 05:00:00,8.300151,180.34514,25.15,1009.76227,23.7423,1119.0,999.7055,126.0,3.0,0.0,0.0, +2024-12-26 06:00:00,9.380033,184.58601,24.5,1009.0503,33.28511,1070.0,986.4585,124.0,7.3,0.0,0.0, +2024-12-26 07:00:00,9.95314,181.43925,22.85,1009.00433,45.62386,954.0,957.33307,119.0,10.5,0.0,0.0, +2024-12-26 08:00:00,9.753204,178.53123,22.95,1008.80884,47.350494,778.0,902.7122,111.0,11.15,0.0,0.0, +2024-12-26 09:00:00,10.107919,177.7321,21.95,1008.58234,54.463585,569.0,827.3572,99.0,12.35,0.0,0.0, +2024-12-26 10:00:00,9.482747,172.42542,21.05,1008.8545,56.238644,336.0,689.2577,80.0,12.0,0.0,0.0, +2024-12-26 11:00:00,8.7385645,169.78319,20.35,1009.13245,61.478287,117.0,437.47464,46.0,12.7,0.0,0.0, +2024-12-26 12:00:00,8.076664,166.39388,19.9,1009.3182,65.10091,4.0,20.302923,3.0,13.15,0.0,0.0, +2024-12-26 13:00:00,7.2320466,163.94571,19.5,1009.80255,68.276855,0.0,0.0,0.0,13.5,0.0,0.0, +2024-12-26 14:00:00,7.147377,160.80444,19.4,1010.29535,69.3763,0.0,0.0,0.0,13.65,0.0,0.0, +2024-12-26 15:00:00,6.808267,156.63564,19.15,1010.08997,67.101555,0.0,0.0,0.0,12.9,0.0,0.0, +2024-12-26 16:00:00,6.2890778,150.98973,18.6,1009.8757,60.667805,0.0,0.0,0.0,10.85,0.0,0.0, +2024-12-26 17:00:00,5.5470715,146.0234,18.05,1009.7608,55.669483,0.0,0.0,0.0,9.05,0.0,0.0, +2024-12-26 18:00:00,4.9406476,144.0578,17.6,1009.64856,52.262066,0.0,0.0,0.0,7.7,0.0,0.0, +2024-12-26 19:00:00,4.82001,143.01115,17.25,1009.6384,51.284664,0.0,0.0,0.0,7.1,0.0,0.0, +2024-12-26 20:00:00,4.615734,140.27394,17.0,1009.73035,51.21749,0.0,0.0,0.0,6.85,0.0,0.0, +2024-12-26 21:00:00,4.4913807,136.35312,16.85,1009.9245,50.826714,0.0,0.0,0.0,6.6,0.0,0.0, +2024-12-26 22:00:00,4.5013885,130.94635,17.2,1010.13293,48.362114,15.0,80.25168,9.0,6.2,0.0,0.0, +2024-12-26 23:00:00,4.3863425,133.1524,19.7,1010.70087,39.808777,172.0,533.4029,58.0,5.65,0.0,0.0, +2024-12-27 00:00:00,4.9623585,130.91429,22.75,1010.78674,29.222382,405.0,757.53174,86.0,3.9,0.0,0.0, +2024-12-27 01:00:00,4.8548946,122.38066,26.75,1010.4011,20.770391,638.0,874.9003,102.0,2.45,0.0,0.0, +2024-12-27 02:00:00,4.6010866,137.64261,29.05,1010.06647,16.197279,843.0,941.58606,113.0,0.85,0.0,0.0, +2024-12-27 03:00:00,4.9396358,158.62932,30.2,1009.40283,14.621636,1000.0,978.8788,121.0,0.35,0.0,0.0, +2024-12-27 04:00:00,6.2502,180.45834,30.5,1008.5179,18.187624,1096.0,998.6429,125.0,3.65,0.0,0.0, +2024-12-27 05:00:00,8.2669525,187.29684,28.6,1007.87213,37.88555,1121.0,1001.72955,126.0,12.85,0.0,0.0, +2024-12-27 06:00:00,9.327513,187.39159,28.05,1007.2621,37.116615,1069.0,984.96655,124.0,12.05,0.0,0.0, +2024-12-27 07:00:00,10.06243,182.84813,26.65,1006.72845,38.85385,957.0,961.00183,118.0,11.5,0.0,0.0, +2024-12-27 08:00:00,9.625487,175.82965,26.3,1006.4211,41.81156,784.0,910.77094,110.0,12.3,0.0,0.0, +2024-12-27 09:00:00,9.26094,177.21489,25.35,1006.09753,50.392715,577.0,839.42706,99.0,14.3,0.0,0.0, +2024-12-27 10:00:00,8.641904,174.35547,23.25,1006.7342,55.870792,342.0,702.65283,80.0,13.95,0.0,0.0, +2024-12-27 11:00:00,7.462741,168.01251,21.8,1006.9912,64.25375,120.0,445.86176,47.0,14.75,0.0,0.0, +2024-12-27 12:00:00,7.424453,164.37256,21.3,1007.27484,67.32508,4.0,20.020355,3.0,15.0,0.0,0.0, +2024-12-27 13:00:00,6.9641943,158.96242,20.9,1007.7594,71.02206,0.0,0.0,0.0,15.45,0.0,0.0, +2024-12-27 14:00:00,6.597348,152.46402,20.75,1007.85443,70.7666,0.0,0.0,0.0,15.25,0.0,0.0, +2024-12-27 15:00:00,6.0,143.13002,21.0,1007.4647,58.296307,0.0,0.0,0.0,12.5,0.0,0.0, +2024-12-27 16:00:00,5.452064,132.02618,21.6,1007.1839,41.607292,0.0,0.0,0.0,8.0,0.0,0.0, +2024-12-27 17:00:00,5.202163,125.21768,22.15,1006.7034,36.940807,0.0,0.0,0.0,6.75,0.0,0.0, +2024-12-27 18:00:00,5.3891096,117.04044,22.4,1006.41296,33.031055,0.0,0.0,0.0,5.35,0.0,0.0, +2024-12-27 19:00:00,5.472203,109.75956,22.45,1006.31525,28.62912,0.0,0.0,0.0,3.35,0.0,0.0, +2024-12-27 20:00:00,5.550901,107.29254,22.5,1006.1183,23.88325,0.0,0.0,0.0,0.85,0.0,0.0, +2024-12-27 21:00:00,5.554278,103.53587,22.5,1006.2174,22.460339,0.0,0.0,0.0,0.0,0.0,0.0, +2024-12-27 22:00:00,5.5993304,100.80818,22.75,1006.4227,22.283056,15.0,81.42015,9.0,0.1,0.0,0.0, +2024-12-27 23:00:00,4.4059615,99.14157,24.8,1006.9755,20.27545,170.0,534.0737,57.0,0.5,0.0,0.0, +2024-12-28 00:00:00,4.9862313,105.7087,27.45,1007.04755,17.586973,404.0,756.36145,87.0,0.7,0.0,0.0, +2024-12-28 01:00:00,6.550191,89.56265,30.8,1006.34326,16.42339,636.0,875.746,101.0,2.45,0.0,0.0, +2024-12-28 02:00:00,6.5024996,79.81343,33.55,1005.9192,13.183593,842.0,941.9731,113.0,1.55,0.0,0.0, +2024-12-28 03:00:00,5.5652943,81.21479,35.6,1005.2774,10.635644,997.0,977.695,120.0,0.15,0.0,0.0, +2024-12-28 04:00:00,3.367863,108.16605,36.1,1004.59546,9.691465,1092.0,996.06586,124.0,-0.75,0.0,0.0, +2024-12-28 05:00:00,2.8783677,162.824,36.8,1003.6213,9.360581,1117.0,998.7365,125.0,-0.7,0.0,0.0, +2024-12-28 06:00:00,6.2169123,191.12915,34.7,1002.9725,21.03096,1072.0,988.70496,123.0,9.2,0.0,0.0, +2024-12-28 07:00:00,7.798878,192.96709,32.9,1002.4298,33.739098,957.0,960.11365,118.0,14.85,0.0,0.0, +2024-12-28 08:00:00,9.638076,187.7517,31.05,1001.9848,34.666878,784.0,909.4002,110.0,13.65,0.0,0.0, +2024-12-28 09:00:00,8.268312,176.186,29.5,1002.0431,35.37922,574.0,833.9824,98.0,12.6,0.0,0.0, +2024-12-28 10:00:00,7.5804024,169.35718,29.35,1002.03906,34.307346,340.0,697.3397,79.0,12.0,0.0,0.0, +2024-12-28 11:00:00,6.964194,164.16754,27.2,1002.18024,36.878292,120.0,448.2212,46.0,11.2,0.0,0.0, +2024-12-28 12:00:00,7.3370633,155.00673,25.8,1002.1422,40.05159,4.0,19.757153,3.0,11.2,0.0,0.0, +2024-12-28 13:00:00,5.3911963,151.77132,24.55,1002.70337,46.853798,0.0,0.0,0.0,12.45,0.0,0.0, +2024-12-28 14:00:00,4.674666,147.66983,24.25,1002.1993,48.4915,0.0,0.0,0.0,12.7,0.0,0.0, +2024-12-28 15:00:00,3.7901187,143.58353,24.1,1001.79846,45.2147,0.0,0.0,0.0,11.5,0.0,0.0, +2024-12-28 16:00:00,2.1633308,123.6901,23.35,1001.08344,39.227917,0.0,0.0,0.0,8.7,0.0,0.0, +2024-12-28 17:00:00,2.0359273,114.67685,23.9,1000.50336,23.159811,0.0,0.0,0.0,1.6,0.0,0.0, +2024-12-28 18:00:00,2.34094,109.98319,24.75,999.73303,15.73576,0.0,0.0,0.0,-3.0,0.0,0.0, +2024-12-28 19:00:00,2.902585,79.07724,26.7,999.78613,13.605998,0.0,0.0,0.0,-3.4,0.0,0.0, +2024-12-28 20:00:00,3.5735137,72.07199,28.15,999.825,12.405492,0.0,0.0,0.0,-3.5,0.0,0.0, +2024-12-28 21:00:00,4.3200116,73.87235,29.35,999.75745,11.745511,0.0,0.0,0.0,-3.3,0.0,0.0, +2024-12-28 22:00:00,4.938117,74.134224,30.0,999.87396,11.830014,7.0,0.0,7.0,-2.7,0.0,0.0, +2024-12-28 23:00:00,5.536244,69.92838,31.55,1000.0139,11.743308,143.0,358.17926,68.0,-1.6,0.0,0.0, +2024-12-29 00:00:00,5.771698,54.51994,32.75,999.94574,11.1758795,177.0,40.759502,160.0,-1.35,0.0,0.0, +2024-12-29 01:00:00,7.045566,34.592358,36.75,999.7503,11.944307,482.0,425.18576,223.0,2.65,0.0,0.0, +2024-12-29 02:00:00,5.651991,358.47925,37.4,999.76666,13.457044,575.0,380.5796,281.0,4.85,0.0,0.0, +2024-12-29 03:00:00,4.5721984,283.2764,35.3,999.9121,19.273245,474.0,203.11761,292.0,8.4,0.0,0.0, +2024-12-29 04:00:00,4.8746796,243.1722,31.4,1000.109,30.404707,554.0,164.72586,394.0,11.95,0.0,0.0, +2024-12-29 05:00:00,3.5014284,271.63654,31.2,1000.30206,33.053856,726.0,363.46762,365.0,13.05,0.0,0.0, +2024-12-29 06:00:00,4.244997,254.98158,30.95,1000.0974,34.30256,464.0,144.75572,325.0,13.4,0.0,0.0, +2024-12-29 07:00:00,3.6090164,259.6242,31.25,1000.20447,37.521393,857.0,699.7206,245.0,15.05,0.0,0.0, +2024-12-29 08:00:00,3.8626416,248.74942,30.35,1000.18066,38.496185,720.0,776.043,144.0,14.65,0.0,0.0, +2024-12-29 09:00:00,3.3120992,241.11351,29.35,1000.3527,41.83964,525.0,678.28766,137.0,15.05,0.0,0.0, +2024-12-29 10:00:00,3.9755502,230.10222,26.35,1001.16534,59.007015,328.0,657.56573,81.0,17.7,0.0,0.0, +2024-12-29 11:00:00,4.590479,212.99771,23.8,1002.1867,79.30184,116.0,420.67868,46.0,20.0,0.0,0.0, +2024-12-29 12:00:00,5.985399,186.23439,22.8,1003.1512,81.15947,4.0,0.0,4.0,19.4,0.0,0.0, +2024-12-29 13:00:00,4.569737,162.1597,22.4,1003.93335,79.35398,0.0,0.0,0.0,18.65,0.0,0.0, +2024-12-29 14:00:00,3.6878178,167.4712,22.25,1004.0284,74.97091,0.0,0.0,0.0,17.6,0.0,0.0, +2024-12-29 15:00:00,3.083018,171.60716,22.0,1003.8231,78.06287,0.0,0.0,0.0,18.0,0.0,0.0, +2024-12-29 16:00:00,3.6283605,168.0707,21.8,1003.6191,82.56664,0.0,0.0,0.0,18.7,0.0,0.0, +2024-12-29 17:00:00,3.7769036,173.15732,21.65,1003.2183,83.587814,0.0,0.0,0.0,18.75,0.0,0.0, +2024-12-29 18:00:00,3.5724642,173.57135,21.5,1003.41254,84.88706,0.0,0.0,0.0,18.85,0.0,0.0, +2024-12-29 19:00:00,4.4922156,163.17851,21.05,1003.4988,88.91033,0.0,0.0,0.0,19.15,0.0,0.0, +2024-12-29 20:00:00,4.8283024,164.38055,21.0,1003.49756,90.02084,0.0,0.0,0.0,19.3,0.0,0.0, +2024-12-29 21:00:00,4.0003123,161.79143,20.6,1004.0813,92.83996,0.0,0.0,0.0,19.4,0.0,0.0, +2024-12-29 22:00:00,3.847077,152.10283,21.1,1004.78973,89.46964,10.0,13.991566,9.0,19.3,0.0,0.0, +2024-12-29 23:00:00,3.8684623,153.10384,22.25,1004.921,80.08135,112.0,164.12392,78.0,18.65,0.0,0.0, +2024-12-30 00:00:00,2.147673,167.90526,24.45,1005.18024,66.899666,349.0,561.42163,116.0,17.9,0.0,0.0, +2024-12-30 01:00:00,3.0066593,176.186,25.6,1005.1127,60.14797,338.0,205.8087,213.0,17.3,0.0,0.0, +2024-12-30 02:00:00,3.3365402,199.24962,26.25,1005.03107,59.356464,372.0,79.10925,311.0,17.7,0.0,0.0, +2024-12-30 03:00:00,4.2807713,202.67139,27.6,1004.7701,56.402798,647.0,299.4274,379.0,18.15,0.0,0.0, +2024-12-30 04:00:00,5.0323954,205.29198,28.7,1004.7002,52.73656,901.0,539.76996,377.0,18.1,0.0,0.0, +2024-12-30 05:00:00,5.662596,209.0545,29.15,1004.4146,49.63156,1053.0,903.18713,156.0,17.55,0.0,0.0, +2024-12-30 06:00:00,6.138811,200.50151,28.95,1004.0127,50.051094,1026.0,940.0253,123.0,17.5,0.0,0.0, +2024-12-30 07:00:00,6.467032,198.01479,28.8,1003.71106,50.487957,926.0,925.3077,116.0,17.5,0.0,0.0, +2024-12-30 08:00:00,6.247599,192.47906,27.95,1003.49,53.719296,764.0,873.17377,115.0,17.7,0.0,0.0, +2024-12-30 09:00:00,5.71358,188.55548,27.05,1003.5649,58.801228,558.0,804.18567,97.0,18.3,0.0,0.0, +2024-12-30 10:00:00,5.250238,180.54564,25.6,1003.8232,64.661736,329.0,663.2804,79.0,18.45,0.0,0.0, +2024-12-30 11:00:00,4.1548166,182.75905,24.3,1004.58105,71.86937,117.0,429.52866,45.0,18.9,0.0,0.0, +2024-12-30 12:00:00,3.6912057,188.56906,23.2,1005.0467,78.72691,4.0,19.292208,3.0,19.3,0.0,0.0, +2024-12-30 13:00:00,3.700338,180.7742,22.15,1005.3149,82.35142,0.0,0.0,0.0,19.0,0.0,0.0, +2024-12-30 14:00:00,3.667424,168.9965,22.15,1005.7116,80.31882,0.0,0.0,0.0,18.6,0.0,0.0, +2024-12-30 15:00:00,3.156343,183.63287,22.05,1005.7089,81.57136,0.0,0.0,0.0,18.75,0.0,0.0, +2024-12-30 16:00:00,2.7372432,170.53775,21.85,1005.3067,82.83104,0.0,0.0,0.0,18.8,0.0,0.0, +2024-12-30 17:00:00,2.1982946,162.80138,21.65,1005.00354,84.111694,0.0,0.0,0.0,18.85,0.0,0.0, +2024-12-30 18:00:00,1.6194135,171.11942,21.0,1004.291,87.80397,0.0,0.0,0.0,18.9,0.0,0.0, +2024-12-30 19:00:00,1.4534442,183.94511,20.7,1003.9849,90.84488,0.0,0.0,0.0,19.15,0.0,0.0, +2024-12-30 20:00:00,1.2747549,191.30989,20.4,1003.67883,92.829506,0.0,0.0,0.0,19.2,0.0,0.0, +2024-12-30 21:00:00,1.1401755,195.25517,20.35,1004.0744,93.11646,0.0,0.0,0.0,19.2,0.0,0.0, +2024-12-30 22:00:00,0.9192388,247.61981,21.0,1004.78687,92.57342,10.0,42.654377,7.0,19.75,0.0,0.0, +2024-12-30 23:00:00,0.47169906,237.99466,22.3,1005.5174,88.461075,119.0,297.71896,58.0,20.3,0.0,0.1, +2024-12-31 00:00:00,0.35355338,135.0001,24.55,1005.2823,75.34477,280.0,375.36902,125.0,19.9,0.0,0.0, +2024-12-31 01:00:00,4.9236674,235.34158,26.1,1005.1262,67.442444,514.0,601.10236,150.0,19.6,0.0,0.0, +2024-12-31 02:00:00,1.5041609,158.5522,28.9,1004.50714,54.63593,712.0,653.54346,209.0,18.85,0.0,0.0, +2024-12-31 03:00:00,3.748333,223.91916,30.6,1004.453,50.164783,852.0,744.93414,186.0,19.05,0.0,0.0, +2024-12-31 04:00:00,4.8600416,216.6342,29.3,1004.5178,53.55333,974.0,798.76886,199.0,18.9,0.0,0.0, +2024-12-31 05:00:00,4.900255,216.28535,30.05,1004.6369,48.630062,889.0,644.4655,249.0,18.05,0.0,0.0, +2024-12-31 06:00:00,1.8124568,204.44394,31.85,1004.1882,39.03468,824.0,546.32715,299.0,16.2,0.0,0.0, +2024-12-31 07:00:00,3.7124789,225.5456,31.95,1003.5957,39.941513,836.0,748.7723,180.0,16.65,0.0,0.0, +2024-12-31 08:00:00,2.5480385,195.94547,30.45,1003.7549,44.339928,693.0,732.26996,148.0,16.95,0.0,0.2, +2024-12-31 09:00:00,0.82462114,194.03627,32.05,1003.39984,38.594944,394.0,329.02896,205.0,16.2,0.0,0.0, +2024-12-31 10:00:00,2.0554805,198.43504,29.85,1003.4411,48.42484,193.0,214.20963,112.0,17.8,0.0,0.0, +2024-12-31 11:00:00,1.3000001,202.6199,27.8,1004.4778,60.08952,83.0,260.7012,39.0,19.35,0.0,0.0, +2024-12-31 12:00:00,3.3948488,170.67648,26.7,1003.9523,69.89362,3.0,0.0,3.0,20.75,0.0,0.1, +2024-12-31 13:00:00,3.3559647,183.41652,25.65,1003.72516,63.86681,0.0,0.0,0.0,18.3,0.0,0.0, +2024-12-31 14:00:00,3.3,180.0,25.0,1004.30273,64.94104,0.0,0.0,0.0,17.95,0.0,0.0, +2024-12-31 15:00:00,3.535534,135.0001,24.75,1004.09735,64.88797,0.0,0.0,0.0,17.7,0.0,0.0, +2024-12-31 16:00:00,3.1819806,171.86998,24.75,1004.1966,60.333206,0.0,0.0,0.0,16.55,0.0,0.0, +2024-12-31 17:00:00,3.828838,130.76352,24.65,1003.30133,63.24865,0.0,0.0,0.0,17.2,0.0,0.0, +2024-12-31 18:00:00,3.823938,152.76494,25.1,1002.9169,59.08654,0.0,0.0,0.0,16.55,0.0,0.0, +2024-12-31 19:00:00,3.390059,127.208,24.9,1003.5064,58.291832,0.0,0.0,0.0,16.15,0.0,0.0, +2024-12-31 20:00:00,3.05,90.0,24.75,1003.10547,60.52524,0.0,0.0,0.0,16.6,0.0,0.0, +2024-12-31 21:00:00,4.160829,94.1346,24.9,1003.1096,60.94526,0.0,0.0,0.0,16.85,0.0,0.0, +2024-12-31 22:00:00,3.5556293,86.77554,25.6,1003.228,58.088844,10.0,28.912754,8.0,16.75,0.0,0.0, +2024-12-31 23:00:00,3.5046399,75.96373,28.2,1003.59576,49.855408,128.0,350.45953,57.0,16.75,0.0,0.0, +2025-01-01 00:00:00,3.710795,75.96373,30.85,1003.4676,42.926945,262.0,377.2992,107.0,16.8,0.0,0.0, +2025-01-01 01:00:00,3.1148837,71.27412,34.35,1004.0547,34.354958,529.0,664.2011,128.0,16.4,0.0,0.0, +2025-01-01 02:00:00,2.930017,36.674442,34.55,1003.7624,33.33161,412.0,252.53716,218.0,16.1,0.0,0.0, +2025-01-01 03:00:00,1.662077,248.83867,34.95,1003.3756,31.777136,784.0,611.40533,238.0,15.7,0.0,0.0, +2025-01-01 04:00:00,2.8504386,217.87505,34.7,1002.4764,41.328743,893.0,715.693,199.0,19.65,0.0,0.0, +2025-01-01 05:00:00,2.9154758,210.96368,36.2,1001.72064,38.39842,1007.0,838.89435,174.0,19.8,0.0,0.0, +2025-01-01 06:00:00,4.788789,220.34167,35.1,1001.8911,39.79912,936.0,767.72107,198.0,19.4,0.0,0.0, +2025-01-01 07:00:00,5.489308,159.74928,34.3,1001.573,38.480625,546.0,306.80405,277.0,18.15,0.0,0.0, +2025-01-01 08:00:00,5.4520636,168.89621,36.05,1000.427,33.107544,504.0,347.55362,245.0,17.3,0.0,0.0, +2025-01-01 09:00:00,5.9718084,168.40785,34.4,1000.2857,39.98177,437.0,481.3002,160.0,18.85,0.0,0.0, +2025-01-01 10:00:00,6.1583276,169.23752,32.9,1000.644,42.540836,247.0,413.93945,90.0,18.5,0.0,0.0, +2025-01-01 11:00:00,5.3956,172.54579,30.9,1000.9887,44.743107,105.0,323.82822,50.0,17.5,0.0,0.0, +2025-01-01 12:00:00,4.7289004,160.22383,29.55,1001.64764,47.738995,4.0,18.905203,3.0,17.3,0.0,0.0, +2025-01-01 13:00:00,4.0718546,155.32315,27.4,1001.888,55.29976,0.0,0.0,0.0,17.65,0.0,0.0, +2025-01-01 14:00:00,4.0131035,149.28117,27.75,1001.99664,50.85719,0.0,0.0,0.0,16.65,0.0,0.0, +2025-01-01 15:00:00,2.6800187,165.96373,27.2,1002.18024,51.857697,0.0,0.0,0.0,16.45,0.0,0.0, diff --git a/resource_files/tidal/Tidal_resource_timeseries.csv b/resource_files/tidal/Tidal_resource_timeseries.csv new file mode 100644 index 000000000..144b27fd2 --- /dev/null +++ b/resource_files/tidal/Tidal_resource_timeseries.csv @@ -0,0 +1,8763 @@ +Source,Location ID,Jurisdiction,Latitude,Longitude,Time Zone,Local Time Zone,Distance to Shore,Directionality Coefficient,Energy Period,Maximum Energy Direction,Mean Absolute Period,Mean Wave Direction,Mean Zero-Crossing Period,Omni-Directional Wave Power,Peak Period,Significant Wave Height,Spectral Width,Water Depth,Version +CMIST,PUG1527,The Narrows 0.3 miles North of Bridge,47.27432,-122.54532,0,-10,0,-,s,deg,s,deg,s,W/m,s,m,-,42.9,- +Year,Month,Day,Hour,Minute,Speed,,,,,,,,,,,,,, +2008,1,1,0,30,0.91814244,,,,,,,,,,,,,, +2008,1,1,1,30,0.276233,,,,,,,,,,,,,, +2008,1,1,2,30,0.5840359,,,,,,,,,,,,,, +2008,1,1,3,30,1.1303853,,,,,,,,,,,,,, +2008,1,1,4,30,1.2114222,,,,,,,,,,,,,, +2008,1,1,5,30,0.92221373,,,,,,,,,,,,,, +2008,1,1,6,30,0.3877952,,,,,,,,,,,,,, +2008,1,1,7,30,0.23787645,,,,,,,,,,,,,, +2008,1,1,8,30,0.6489161,,,,,,,,,,,,,, +2008,1,1,9,30,0.894621,,,,,,,,,,,,,, +2008,1,1,10,30,0.9655552,,,,,,,,,,,,,, +2008,1,1,11,30,0.7577871,,,,,,,,,,,,,, +2008,1,1,12,30,0.25826332,,,,,,,,,,,,,, +2008,1,1,13,30,0.44513845,,,,,,,,,,,,,, +2008,1,1,14,30,1.0309576,,,,,,,,,,,,,, +2008,1,1,15,30,1.3267394,,,,,,,,,,,,,, +2008,1,1,16,30,1.356456,,,,,,,,,,,,,, +2008,1,1,17,30,1.1857072,,,,,,,,,,,,,, +2008,1,1,18,30,0.7319408,,,,,,,,,,,,,, +2008,1,1,19,30,0.064073,,,,,,,,,,,,,, +2008,1,1,20,30,0.6484447,,,,,,,,,,,,,, +2008,1,1,21,30,1.2598044,,,,,,,,,,,,,, +2008,1,1,22,30,1.5985351,,,,,,,,,,,,,, +2008,1,1,23,30,1.5652064,,,,,,,,,,,,,, +2008,1,2,0,30,1.3126532,,,,,,,,,,,,,, +2008,1,2,1,30,0.9103732,,,,,,,,,,,,,, +2008,1,2,2,30,0.24846812,,,,,,,,,,,,,, +2008,1,2,3,30,0.63345426,,,,,,,,,,,,,, +2008,1,2,4,30,1.1519216,,,,,,,,,,,,,, +2008,1,2,5,30,1.2371852,,,,,,,,,,,,,, +2008,1,2,6,30,0.99938524,,,,,,,,,,,,,, +2008,1,2,7,30,0.5604261,,,,,,,,,,,,,, +2008,1,2,8,30,0.13487019,,,,,,,,,,,,,, +2008,1,2,9,30,0.2916532,,,,,,,,,,,,,, +2008,1,2,10,30,0.58835995,,,,,,,,,,,,,, +2008,1,2,11,30,0.7405145,,,,,,,,,,,,,, +2008,1,2,12,30,0.5782057,,,,,,,,,,,,,, +2008,1,2,13,30,0.16054437,,,,,,,,,,,,,, +2008,1,2,14,30,0.41315103,,,,,,,,,,,,,, +2008,1,2,15,30,0.83195496,,,,,,,,,,,,,, +2008,1,2,16,30,1.0346916,,,,,,,,,,,,,, +2008,1,2,17,30,1.0616306,,,,,,,,,,,,,, +2008,1,2,18,30,0.90346736,,,,,,,,,,,,,, +2008,1,2,19,30,0.46667734,,,,,,,,,,,,,, +2008,1,2,20,30,0.15999499,,,,,,,,,,,,,, +2008,1,2,21,30,0.81012094,,,,,,,,,,,,,, +2008,1,2,22,30,1.3715276,,,,,,,,,,,,,, +2008,1,2,23,30,1.6484821,,,,,,,,,,,,,, +2008,1,3,0,30,1.5800087,,,,,,,,,,,,,, +2008,1,3,1,30,1.3244282,,,,,,,,,,,,,, +2008,1,3,2,30,0.87672246,,,,,,,,,,,,,, +2008,1,3,3,30,0.17804135,,,,,,,,,,,,,, +2008,1,3,4,30,0.784239,,,,,,,,,,,,,, +2008,1,3,5,30,1.2861519,,,,,,,,,,,,,, +2008,1,3,6,30,1.3812388,,,,,,,,,,,,,, +2008,1,3,7,30,1.1903331,,,,,,,,,,,,,, +2008,1,3,8,30,0.8100854,,,,,,,,,,,,,, +2008,1,3,9,30,0.3806571,,,,,,,,,,,,,, +2008,1,3,10,30,0.067557104,,,,,,,,,,,,,, +2008,1,3,11,30,0.4746905,,,,,,,,,,,,,, +2008,1,3,12,30,0.69228697,,,,,,,,,,,,,, +2008,1,3,13,30,0.5445315,,,,,,,,,,,,,, +2008,1,3,14,30,0.16981646,,,,,,,,,,,,,, +2008,1,3,15,30,0.2898078,,,,,,,,,,,,,, +2008,1,3,16,30,0.6158678,,,,,,,,,,,,,, +2008,1,3,17,30,0.8097478,,,,,,,,,,,,,, +2008,1,3,18,30,0.87126625,,,,,,,,,,,,,, +2008,1,3,19,30,0.7215501,,,,,,,,,,,,,, +2008,1,3,20,30,0.28128883,,,,,,,,,,,,,, +2008,1,3,21,30,0.33541572,,,,,,,,,,,,,, +2008,1,3,22,30,0.9799091,,,,,,,,,,,,,, +2008,1,3,23,30,1.5088297,,,,,,,,,,,,,, +2008,1,4,0,30,1.7252834,,,,,,,,,,,,,, +2008,1,4,1,30,1.6186033,,,,,,,,,,,,,, +2008,1,4,2,30,1.3294153,,,,,,,,,,,,,, +2008,1,4,3,30,0.7783458,,,,,,,,,,,,,, +2008,1,4,4,30,0.18941307,,,,,,,,,,,,,, +2008,1,4,5,30,1.0405668,,,,,,,,,,,,,, +2008,1,4,6,30,1.5196822,,,,,,,,,,,,,, +2008,1,4,7,30,1.6143224,,,,,,,,,,,,,, +2008,1,4,8,30,1.4354185,,,,,,,,,,,,,, +2008,1,4,9,30,1.0374483,,,,,,,,,,,,,, +2008,1,4,10,30,0.5308523,,,,,,,,,,,,,, +2008,1,4,11,30,0.041283667,,,,,,,,,,,,,, +2008,1,4,12,30,0.5517004,,,,,,,,,,,,,, +2008,1,4,13,30,0.77207804,,,,,,,,,,,,,, +2008,1,4,14,30,0.60330546,,,,,,,,,,,,,, +2008,1,4,15,30,0.2540018,,,,,,,,,,,,,, +2008,1,4,16,30,0.17125669,,,,,,,,,,,,,, +2008,1,4,17,30,0.47999042,,,,,,,,,,,,,, +2008,1,4,18,30,0.72558,,,,,,,,,,,,,, +2008,1,4,19,30,0.8107643,,,,,,,,,,,,,, +2008,1,4,20,30,0.6267075,,,,,,,,,,,,,, +2008,1,4,21,30,0.13817182,,,,,,,,,,,,,, +2008,1,4,22,30,0.5205928,,,,,,,,,,,,,, +2008,1,4,23,30,1.1910235,,,,,,,,,,,,,, +2008,1,5,0,30,1.6869364,,,,,,,,,,,,,, +2008,1,5,1,30,1.8313013,,,,,,,,,,,,,, +2008,1,5,2,30,1.6703053,,,,,,,,,,,,,, +2008,1,5,3,30,1.3034317,,,,,,,,,,,,,, +2008,1,5,4,30,0.59856784,,,,,,,,,,,,,, +2008,1,5,5,30,0.4866035,,,,,,,,,,,,,, +2008,1,5,6,30,1.3798487,,,,,,,,,,,,,, +2008,1,5,7,30,1.8155296,,,,,,,,,,,,,, +2008,1,5,8,30,1.8778101,,,,,,,,,,,,,, +2008,1,5,9,30,1.6460129,,,,,,,,,,,,,, +2008,1,5,10,30,1.1423593,,,,,,,,,,,,,, +2008,1,5,11,30,0.4924794,,,,,,,,,,,,,, +2008,1,5,12,30,0.2010793,,,,,,,,,,,,,, +2008,1,5,13,30,0.7483295,,,,,,,,,,,,,, +2008,1,5,14,30,0.9048387,,,,,,,,,,,,,, +2008,1,5,15,30,0.6936631,,,,,,,,,,,,,, +2008,1,5,16,30,0.34411436,,,,,,,,,,,,,, +2008,1,5,17,30,0.12834471,,,,,,,,,,,,,, +2008,1,5,18,30,0.5024157,,,,,,,,,,,,,, +2008,1,5,19,30,0.79901963,,,,,,,,,,,,,, +2008,1,5,20,30,0.8478963,,,,,,,,,,,,,, +2008,1,5,21,30,0.5700027,,,,,,,,,,,,,, +2008,1,5,22,30,0.027491247,,,,,,,,,,,,,, +2008,1,5,23,30,0.7571267,,,,,,,,,,,,,, +2008,1,6,0,30,1.4627466,,,,,,,,,,,,,, +2008,1,6,1,30,1.9031141,,,,,,,,,,,,,, +2008,1,6,2,30,1.9535278,,,,,,,,,,,,,, +2008,1,6,3,30,1.7161306,,,,,,,,,,,,,, +2008,1,6,4,30,1.2259095,,,,,,,,,,,,,, +2008,1,6,5,30,0.34309435,,,,,,,,,,,,,, +2008,1,6,6,30,0.89020824,,,,,,,,,,,,,, +2008,1,6,7,30,1.7676125,,,,,,,,,,,,,, +2008,1,6,8,30,2.1203332,,,,,,,,,,,,,, +2008,1,6,9,30,2.0967453,,,,,,,,,,,,,, +2008,1,6,10,30,1.7398441,,,,,,,,,,,,,, +2008,1,6,11,30,1.0726726,,,,,,,,,,,,,, +2008,1,6,12,30,0.27654877,,,,,,,,,,,,,, +2008,1,6,13,30,0.48614424,,,,,,,,,,,,,, +2008,1,6,14,30,0.97922766,,,,,,,,,,,,,, +2008,1,6,15,30,1.0313069,,,,,,,,,,,,,, +2008,1,6,16,30,0.76462394,,,,,,,,,,,,,, +2008,1,6,17,30,0.36236554,,,,,,,,,,,,,, +2008,1,6,18,30,0.18270044,,,,,,,,,,,,,, +2008,1,6,19,30,0.6936156,,,,,,,,,,,,,, +2008,1,6,20,30,0.9764789,,,,,,,,,,,,,, +2008,1,6,21,30,0.9133671,,,,,,,,,,,,,, +2008,1,6,22,30,0.49362382,,,,,,,,,,,,,, +2008,1,6,23,30,0.22592275,,,,,,,,,,,,,, +2008,1,7,0,30,1.0693957,,,,,,,,,,,,,, +2008,1,7,1,30,1.7866418,,,,,,,,,,,,,, +2008,1,7,2,30,2.1296458,,,,,,,,,,,,,, +2008,1,7,3,30,2.0650914,,,,,,,,,,,,,, +2008,1,7,4,30,1.7306665,,,,,,,,,,,,,, +2008,1,7,5,30,1.0721852,,,,,,,,,,,,,, +2008,1,7,6,30,0.16242607,,,,,,,,,,,,,, +2008,1,7,7,30,1.3637164,,,,,,,,,,,,,, +2008,1,7,8,30,2.1585479,,,,,,,,,,,,,, +2008,1,7,9,30,2.3711133,,,,,,,,,,,,,, +2008,1,7,10,30,2.206406,,,,,,,,,,,,,, +2008,1,7,11,30,1.6781533,,,,,,,,,,,,,, +2008,1,7,12,30,0.8415884,,,,,,,,,,,,,, +2008,1,7,13,30,0.07759966,,,,,,,,,,,,,, +2008,1,7,14,30,0.81064576,,,,,,,,,,,,,, +2008,1,7,15,30,1.1878433,,,,,,,,,,,,,, +2008,1,7,16,30,1.1211853,,,,,,,,,,,,,, +2008,1,7,17,30,0.7792273,,,,,,,,,,,,,, +2008,1,7,18,30,0.26631975,,,,,,,,,,,,,, +2008,1,7,19,30,0.41947204,,,,,,,,,,,,,, +2008,1,7,20,30,0.9883137,,,,,,,,,,,,,, +2008,1,7,21,30,1.1697723,,,,,,,,,,,,,, +2008,1,7,22,30,0.93952274,,,,,,,,,,,,,, +2008,1,7,23,30,0.3546708,,,,,,,,,,,,,, +2008,1,8,0,30,0.5128517,,,,,,,,,,,,,, +2008,1,8,1,30,1.4471073,,,,,,,,,,,,,, +2008,1,8,2,30,2.1196263,,,,,,,,,,,,,, +2008,1,8,3,30,2.321615,,,,,,,,,,,,,, +2008,1,8,4,30,2.1340585,,,,,,,,,,,,,, +2008,1,8,5,30,1.6800516,,,,,,,,,,,,,, +2008,1,8,6,30,0.8087549,,,,,,,,,,,,,, +2008,1,8,7,30,0.58800256,,,,,,,,,,,,,, +2008,1,8,8,30,1.8686817,,,,,,,,,,,,,, +2008,1,8,9,30,2.492618,,,,,,,,,,,,,, +2008,1,8,10,30,2.5134463,,,,,,,,,,,,,, +2008,1,8,11,30,2.1796875,,,,,,,,,,,,,, +2008,1,8,12,30,1.4746073,,,,,,,,,,,,,, +2008,1,8,13,30,0.50147855,,,,,,,,,,,,,, +2008,1,8,14,30,0.45326337,,,,,,,,,,,,,, +2008,1,8,15,30,1.123199,,,,,,,,,,,,,, +2008,1,8,16,30,1.3529255,,,,,,,,,,,,,, +2008,1,8,17,30,1.1640652,,,,,,,,,,,,,, +2008,1,8,18,30,0.7199204,,,,,,,,,,,,,, +2008,1,8,19,30,0.12391373,,,,,,,,,,,,,, +2008,1,8,20,30,0.7581674,,,,,,,,,,,,,, +2008,1,8,21,30,1.290115,,,,,,,,,,,,,, +2008,1,8,22,30,1.3030047,,,,,,,,,,,,,, +2008,1,8,23,30,0.8890613,,,,,,,,,,,,,, +2008,1,9,0,30,0.1406959,,,,,,,,,,,,,, +2008,1,9,1,30,0.86751765,,,,,,,,,,,,,, +2008,1,9,2,30,1.8387306,,,,,,,,,,,,,, +2008,1,9,3,30,2.3975768,,,,,,,,,,,,,, +2008,1,9,4,30,2.435735,,,,,,,,,,,,,, +2008,1,9,5,30,2.1285424,,,,,,,,,,,,,, +2008,1,9,6,30,1.522292,,,,,,,,,,,,,, +2008,1,9,7,30,0.4153369,,,,,,,,,,,,,, +2008,1,9,8,30,1.1500206,,,,,,,,,,,,,, +2008,1,9,9,30,2.3360112,,,,,,,,,,,,,, +2008,1,9,10,30,2.7085521,,,,,,,,,,,,,, +2008,1,9,11,30,2.5245183,,,,,,,,,,,,,, +2008,1,9,12,30,2.0304666,,,,,,,,,,,,,, +2008,1,9,13,30,1.1681659,,,,,,,,,,,,,, +2008,1,9,14,30,0.11681293,,,,,,,,,,,,,, +2008,1,9,15,30,0.8497294,,,,,,,,,,,,,, +2008,1,9,16,30,1.4025806,,,,,,,,,,,,,, +2008,1,9,17,30,1.4722438,,,,,,,,,,,,,, +2008,1,9,18,30,1.1605061,,,,,,,,,,,,,, +2008,1,9,19,30,0.5934769,,,,,,,,,,,,,, +2008,1,9,20,30,0.25365078,,,,,,,,,,,,,, +2008,1,9,21,30,1.1061229,,,,,,,,,,,,,, +2008,1,9,22,30,1.5218692,,,,,,,,,,,,,, +2008,1,9,23,30,1.3441427,,,,,,,,,,,,,, +2008,1,10,0,30,0.76438695,,,,,,,,,,,,,, +2008,1,10,1,30,0.13655075,,,,,,,,,,,,,, +2008,1,10,2,30,1.2366612,,,,,,,,,,,,,, +2008,1,10,3,30,2.1684966,,,,,,,,,,,,,, +2008,1,10,4,30,2.5624256,,,,,,,,,,,,,, +2008,1,10,5,30,2.442716,,,,,,,,,,,,,, +2008,1,10,6,30,2.0174766,,,,,,,,,,,,,, +2008,1,10,7,30,1.2245505,,,,,,,,,,,,,, +2008,1,10,8,30,0.1868145,,,,,,,,,,,,,, +2008,1,10,9,30,1.7223574,,,,,,,,,,,,,, +2008,1,10,10,30,2.679777,,,,,,,,,,,,,, +2008,1,10,11,30,2.7720149,,,,,,,,,,,,,, +2008,1,10,12,30,2.4175138,,,,,,,,,,,,,, +2008,1,10,13,30,1.7875055,,,,,,,,,,,,,, +2008,1,10,14,30,0.788749,,,,,,,,,,,,,, +2008,1,10,15,30,0.36016384,,,,,,,,,,,,,, +2008,1,10,16,30,1.2364575,,,,,,,,,,,,,, +2008,1,10,17,30,1.639189,,,,,,,,,,,,,, +2008,1,10,18,30,1.5492834,,,,,,,,,,,,,, +2008,1,10,19,30,1.1190798,,,,,,,,,,,,,, +2008,1,10,20,30,0.4257713,,,,,,,,,,,,,, +2008,1,10,21,30,0.5438522,,,,,,,,,,,,,, +2008,1,10,22,30,1.396187,,,,,,,,,,,,,, +2008,1,10,23,30,1.654939,,,,,,,,,,,,,, +2008,1,11,0,30,1.3083267,,,,,,,,,,,,,, +2008,1,11,1,30,0.60098755,,,,,,,,,,,,,, +2008,1,11,2,30,0.4077168,,,,,,,,,,,,,, +2008,1,11,3,30,1.5454654,,,,,,,,,,,,,, +2008,1,11,4,30,2.367356,,,,,,,,,,,,,, +2008,1,11,5,30,2.5808187,,,,,,,,,,,,,, +2008,1,11,6,30,2.3271818,,,,,,,,,,,,,, +2008,1,11,7,30,1.7805262,,,,,,,,,,,,,, +2008,1,11,8,30,0.7962113,,,,,,,,,,,,,, +2008,1,11,9,30,0.73270273,,,,,,,,,,,,,, +2008,1,11,10,30,2.1893861,,,,,,,,,,,,,, +2008,1,11,11,30,2.8380551,,,,,,,,,,,,,, +2008,1,11,12,30,2.6899672,,,,,,,,,,,,,, +2008,1,11,13,30,2.2191079,,,,,,,,,,,,,, +2008,1,11,14,30,1.4665358,,,,,,,,,,,,,, +2008,1,11,15,30,0.35425255,,,,,,,,,,,,,, +2008,1,11,16,30,0.8131112,,,,,,,,,,,,,, +2008,1,11,17,30,1.5902567,,,,,,,,,,,,,, +2008,1,11,18,30,1.8254097,,,,,,,,,,,,,, +2008,1,11,19,30,1.5898796,,,,,,,,,,,,,, +2008,1,11,20,30,1.0532603,,,,,,,,,,,,,, +2008,1,11,21,30,0.25063264,,,,,,,,,,,,,, +2008,1,11,22,30,0.80756074,,,,,,,,,,,,,, +2008,1,11,23,30,1.6009982,,,,,,,,,,,,,, +2008,1,12,0,30,1.7067697,,,,,,,,,,,,,, +2008,1,12,1,30,1.2399715,,,,,,,,,,,,,, +2008,1,12,2,30,0.45079175,,,,,,,,,,,,,, +2008,1,12,3,30,0.6201972,,,,,,,,,,,,,, +2008,1,12,4,30,1.7267478,,,,,,,,,,,,,, +2008,1,12,5,30,2.3948445,,,,,,,,,,,,,, +2008,1,12,6,30,2.4454236,,,,,,,,,,,,,, +2008,1,12,7,30,2.088966,,,,,,,,,,,,,, +2008,1,12,8,30,1.4305904,,,,,,,,,,,,,, +2008,1,12,9,30,0.31568593,,,,,,,,,,,,,, +2008,1,12,10,30,1.2347763,,,,,,,,,,,,,, +2008,1,12,11,30,2.4590578,,,,,,,,,,,,,, +2008,1,12,12,30,2.802541,,,,,,,,,,,,,, +2008,1,12,13,30,2.494664,,,,,,,,,,,,,, +2008,1,12,14,30,1.9445274,,,,,,,,,,,,,, +2008,1,12,15,30,1.0726831,,,,,,,,,,,,,, +2008,1,12,16,30,0.15401685,,,,,,,,,,,,,, +2008,1,12,17,30,1.2472388,,,,,,,,,,,,,, +2008,1,12,18,30,1.8855038,,,,,,,,,,,,,, +2008,1,12,19,30,1.9575602,,,,,,,,,,,,,, +2008,1,12,20,30,1.6016667,,,,,,,,,,,,,, +2008,1,12,21,30,0.9778272,,,,,,,,,,,,,, +2008,1,12,22,30,0.12102418,,,,,,,,,,,,,, +2008,1,12,23,30,1.0140518,,,,,,,,,,,,,, +2008,1,13,0,30,1.7279688,,,,,,,,,,,,,, +2008,1,13,1,30,1.7187386,,,,,,,,,,,,,, +2008,1,13,2,30,1.1884246,,,,,,,,,,,,,, +2008,1,13,3,30,0.36148694,,,,,,,,,,,,,, +2008,1,13,4,30,0.7223519,,,,,,,,,,,,,, +2008,1,13,5,30,1.7402039,,,,,,,,,,,,,, +2008,1,13,6,30,2.2429378,,,,,,,,,,,,,, +2008,1,13,7,30,2.1723843,,,,,,,,,,,,,, +2008,1,13,8,30,1.754842,,,,,,,,,,,,,, +2008,1,13,9,30,1.0276153,,,,,,,,,,,,,, +2008,1,13,10,30,0.20141974,,,,,,,,,,,,,, +2008,1,13,11,30,1.5635692,,,,,,,,,,,,,, +2008,1,13,12,30,2.5030417,,,,,,,,,,,,,, +2008,1,13,13,30,2.6100063,,,,,,,,,,,,,, +2008,1,13,14,30,2.2171023,,,,,,,,,,,,,, +2008,1,13,15,30,1.6004196,,,,,,,,,,,,,, +2008,1,13,16,30,0.62948,,,,,,,,,,,,,, +2008,1,13,17,30,0.606177,,,,,,,,,,,,,, +2008,1,13,18,30,1.6157639,,,,,,,,,,,,,, +2008,1,13,19,30,2.1043184,,,,,,,,,,,,,, +2008,1,13,20,30,2.0380583,,,,,,,,,,,,,, +2008,1,13,21,30,1.593673,,,,,,,,,,,,,, +2008,1,13,22,30,0.90931475,,,,,,,,,,,,,, +2008,1,13,23,30,0.10882014,,,,,,,,,,,,,, +2008,1,14,0,30,1.1567156,,,,,,,,,,,,,, +2008,1,14,1,30,1.8030722,,,,,,,,,,,,,, +2008,1,14,2,30,1.7315239,,,,,,,,,,,,,, +2008,1,14,3,30,1.1880138,,,,,,,,,,,,,, +2008,1,14,4,30,0.36151025,,,,,,,,,,,,,, +2008,1,14,5,30,0.6870159,,,,,,,,,,,,,, +2008,1,14,6,30,1.5758207,,,,,,,,,,,,,, +2008,1,14,7,30,1.9347506,,,,,,,,,,,,,, +2008,1,14,8,30,1.8062922,,,,,,,,,,,,,, +2008,1,14,9,30,1.3860834,,,,,,,,,,,,,, +2008,1,14,10,30,0.6601757,,,,,,,,,,,,,, +2008,1,14,11,30,0.48599657,,,,,,,,,,,,,, +2008,1,14,12,30,1.675342,,,,,,,,,,,,,, +2008,1,14,13,30,2.3534124,,,,,,,,,,,,,, +2008,1,14,14,30,2.3116229,,,,,,,,,,,,,, +2008,1,14,15,30,1.8819351,,,,,,,,,,,,,, +2008,1,14,16,30,1.2114007,,,,,,,,,,,,,, +2008,1,14,17,30,0.20367327,,,,,,,,,,,,,, +2008,1,14,18,30,0.9963935,,,,,,,,,,,,,, +2008,1,14,19,30,1.8861167,,,,,,,,,,,,,, +2008,1,14,20,30,2.24295,,,,,,,,,,,,,, +2008,1,14,21,30,2.0743325,,,,,,,,,,,,,, +2008,1,14,22,30,1.5789818,,,,,,,,,,,,,, +2008,1,14,23,30,0.86766195,,,,,,,,,,,,,, +2008,1,15,0,30,0.16479214,,,,,,,,,,,,,, +2008,1,15,1,30,1.2447572,,,,,,,,,,,,,, +2008,1,15,2,30,1.854731,,,,,,,,,,,,,, +2008,1,15,3,30,1.7692585,,,,,,,,,,,,,, +2008,1,15,4,30,1.2506741,,,,,,,,,,,,,, +2008,1,15,5,30,0.4602909,,,,,,,,,,,,,, +2008,1,15,6,30,0.50854784,,,,,,,,,,,,,, +2008,1,15,7,30,1.2551361,,,,,,,,,,,,,, +2008,1,15,8,30,1.5283206,,,,,,,,,,,,,, +2008,1,15,9,30,1.4218888,,,,,,,,,,,,,, +2008,1,15,10,30,1.0618157,,,,,,,,,,,,,, +2008,1,15,11,30,0.40259653,,,,,,,,,,,,,, +2008,1,15,12,30,0.6138911,,,,,,,,,,,,,, +2008,1,15,13,30,1.5892146,,,,,,,,,,,,,, +2008,1,15,14,30,2.0695305,,,,,,,,,,,,,, +2008,1,15,15,30,1.9567671,,,,,,,,,,,,,, +2008,1,15,16,30,1.5255715,,,,,,,,,,,,,, +2008,1,15,17,30,0.8343948,,,,,,,,,,,,,, +2008,1,15,18,30,0.20067386,,,,,,,,,,,,,, +2008,1,15,19,30,1.2706962,,,,,,,,,,,,,, +2008,1,15,20,30,2.0504165,,,,,,,,,,,,,, +2008,1,15,21,30,2.3098786,,,,,,,,,,,,,, +2008,1,15,22,30,2.07984,,,,,,,,,,,,,, +2008,1,15,23,30,1.5772833,,,,,,,,,,,,,, +2008,1,16,0,30,0.86998904,,,,,,,,,,,,,, +2008,1,16,1,30,0.19660494,,,,,,,,,,,,,, +2008,1,16,2,30,1.2984765,,,,,,,,,,,,,, +2008,1,16,3,30,1.9034246,,,,,,,,,,,,,, +2008,1,16,4,30,1.8386424,,,,,,,,,,,,,, +2008,1,16,5,30,1.3754972,,,,,,,,,,,,,, +2008,1,16,6,30,0.65772563,,,,,,,,,,,,,, +2008,1,16,7,30,0.20819435,,,,,,,,,,,,,, +2008,1,16,8,30,0.83827084,,,,,,,,,,,,,, +2008,1,16,9,30,1.114464,,,,,,,,,,,,,, +2008,1,16,10,30,1.1050746,,,,,,,,,,,,,, +2008,1,16,11,30,0.8439334,,,,,,,,,,,,,, +2008,1,16,12,30,0.28397304,,,,,,,,,,,,,, +2008,1,16,13,30,0.5713278,,,,,,,,,,,,,, +2008,1,16,14,30,1.3554094,,,,,,,,,,,,,, +2008,1,16,15,30,1.7157221,,,,,,,,,,,,,, +2008,1,16,16,30,1.6008337,,,,,,,,,,,,,, +2008,1,16,17,30,1.2065963,,,,,,,,,,,,,, +2008,1,16,18,30,0.53819937,,,,,,,,,,,,,, +2008,1,16,19,30,0.43146715,,,,,,,,,,,,,, +2008,1,16,20,30,1.4201047,,,,,,,,,,,,,, +2008,1,16,21,30,2.1230469,,,,,,,,,,,,,, +2008,1,16,22,30,2.3239484,,,,,,,,,,,,,, +2008,1,16,23,30,2.0764177,,,,,,,,,,,,,, +2008,1,17,0,30,1.6085804,,,,,,,,,,,,,, +2008,1,17,1,30,0.9176669,,,,,,,,,,,,,, +2008,1,17,2,30,0.20524828,,,,,,,,,,,,,, +2008,1,17,3,30,1.3419752,,,,,,,,,,,,,, +2008,1,17,4,30,1.9613899,,,,,,,,,,,,,, +2008,1,17,5,30,1.941963,,,,,,,,,,,,,, +2008,1,17,6,30,1.5628532,,,,,,,,,,,,,, +2008,1,17,7,30,0.9429328,,,,,,,,,,,,,, +2008,1,17,8,30,0.21280603,,,,,,,,,,,,,, +2008,1,17,9,30,0.42257243,,,,,,,,,,,,,, +2008,1,17,10,30,0.79263586,,,,,,,,,,,,,, +2008,1,17,11,30,0.9176264,,,,,,,,,,,,,, +2008,1,17,12,30,0.754807,,,,,,,,,,,,,, +2008,1,17,13,30,0.29699898,,,,,,,,,,,,,, +2008,1,17,14,30,0.38988158,,,,,,,,,,,,,, +2008,1,17,15,30,1.0359741,,,,,,,,,,,,,, +2008,1,17,16,30,1.3635409,,,,,,,,,,,,,, +2008,1,17,17,30,1.3110343,,,,,,,,,,,,,, +2008,1,17,18,30,0.98668975,,,,,,,,,,,,,, +2008,1,17,19,30,0.36600816,,,,,,,,,,,,,, +2008,1,17,20,30,0.53734446,,,,,,,,,,,,,, +2008,1,17,21,30,1.4692122,,,,,,,,,,,,,, +2008,1,17,22,30,2.135002,,,,,,,,,,,,,, +2008,1,17,23,30,2.3143327,,,,,,,,,,,,,, +2008,1,18,0,30,2.0892375,,,,,,,,,,,,,, +2008,1,18,1,30,1.679486,,,,,,,,,,,,,, +2008,1,18,2,30,0.9904852,,,,,,,,,,,,,, +2008,1,18,3,30,0.21753962,,,,,,,,,,,,,, +2008,1,18,4,30,1.3980281,,,,,,,,,,,,,, +2008,1,18,5,30,2.0418773,,,,,,,,,,,,,, +2008,1,18,6,30,2.0888512,,,,,,,,,,,,,, +2008,1,18,7,30,1.8108461,,,,,,,,,,,,,, +2008,1,18,8,30,1.2781638,,,,,,,,,,,,,, +2008,1,18,9,30,0.57528913,,,,,,,,,,,,,, +2008,1,18,10,30,0.118057385,,,,,,,,,,,,,, +2008,1,18,11,30,0.63108283,,,,,,,,,,,,,, +2008,1,18,12,30,0.8737073,,,,,,,,,,,,,, +2008,1,18,13,30,0.7847532,,,,,,,,,,,,,, +2008,1,18,14,30,0.43206793,,,,,,,,,,,,,, +2008,1,18,15,30,0.13955793,,,,,,,,,,,,,, +2008,1,18,16,30,0.708301,,,,,,,,,,,,,, +2008,1,18,17,30,1.0940692,,,,,,,,,,,,,, +2008,1,18,18,30,1.1476947,,,,,,,,,,,,,, +2008,1,18,19,30,0.8973301,,,,,,,,,,,,,, +2008,1,18,20,30,0.3158348,,,,,,,,,,,,,, +2008,1,18,21,30,0.5470119,,,,,,,,,,,,,, +2008,1,18,22,30,1.4650289,,,,,,,,,,,,,, +2008,1,18,23,30,2.1290302,,,,,,,,,,,,,, +2008,1,19,0,30,2.3140137,,,,,,,,,,,,,, +2008,1,19,1,30,2.133584,,,,,,,,,,,,,, +2008,1,19,2,30,1.7761532,,,,,,,,,,,,,, +2008,1,19,3,30,1.0539792,,,,,,,,,,,,,, +2008,1,19,4,30,0.25826544,,,,,,,,,,,,,, +2008,1,19,5,30,1.4904006,,,,,,,,,,,,,, +2008,1,19,6,30,2.1649656,,,,,,,,,,,,,, +2008,1,19,7,30,2.2876854,,,,,,,,,,,,,, +2008,1,19,8,30,2.093463,,,,,,,,,,,,,, +2008,1,19,9,30,1.5897591,,,,,,,,,,,,,, +2008,1,19,10,30,0.8364207,,,,,,,,,,,,,, +2008,1,19,11,30,0.06275175,,,,,,,,,,,,,, +2008,1,19,12,30,0.6406352,,,,,,,,,,,,,, +2008,1,19,13,30,0.9483385,,,,,,,,,,,,,, +2008,1,19,14,30,0.9102008,,,,,,,,,,,,,, +2008,1,19,15,30,0.6561691,,,,,,,,,,,,,, +2008,1,19,16,30,0.18082768,,,,,,,,,,,,,, +2008,1,19,17,30,0.46628946,,,,,,,,,,,,,, +2008,1,19,18,30,0.97610444,,,,,,,,,,,,,, +2008,1,19,19,30,1.1332976,,,,,,,,,,,,,, +2008,1,19,20,30,0.923731,,,,,,,,,,,,,, +2008,1,19,21,30,0.34862596,,,,,,,,,,,,,, +2008,1,19,22,30,0.51846516,,,,,,,,,,,,,, +2008,1,19,23,30,1.4656755,,,,,,,,,,,,,, +2008,1,20,0,30,2.1478992,,,,,,,,,,,,,, +2008,1,20,1,30,2.3446984,,,,,,,,,,,,,, +2008,1,20,2,30,2.2057605,,,,,,,,,,,,,, +2008,1,20,3,30,1.8702892,,,,,,,,,,,,,, +2008,1,20,4,30,1.0697826,,,,,,,,,,,,,, +2008,1,20,5,30,0.3534706,,,,,,,,,,,,,, +2008,1,20,6,30,1.6450236,,,,,,,,,,,,,, +2008,1,20,7,30,2.3445241,,,,,,,,,,,,,, +2008,1,20,8,30,2.5201411,,,,,,,,,,,,,, +2008,1,20,9,30,2.3480003,,,,,,,,,,,,,, +2008,1,20,10,30,1.789315,,,,,,,,,,,,,, +2008,1,20,11,30,0.9175374,,,,,,,,,,,,,, +2008,1,20,12,30,0.059765726,,,,,,,,,,,,,, +2008,1,20,13,30,0.7851361,,,,,,,,,,,,,, +2008,1,20,14,30,1.1025547,,,,,,,,,,,,,, +2008,1,20,15,30,1.0991966,,,,,,,,,,,,,, +2008,1,20,16,30,0.9062629,,,,,,,,,,,,,, +2008,1,20,17,30,0.39859957,,,,,,,,,,,,,, +2008,1,20,18,30,0.3940216,,,,,,,,,,,,,, +2008,1,20,19,30,1.0311582,,,,,,,,,,,,,, +2008,1,20,20,30,1.2394611,,,,,,,,,,,,,, +2008,1,20,21,30,1.0153526,,,,,,,,,,,,,, +2008,1,20,22,30,0.40338603,,,,,,,,,,,,,, +2008,1,20,23,30,0.5191119,,,,,,,,,,,,,, +2008,1,21,0,30,1.522172,,,,,,,,,,,,,, +2008,1,21,1,30,2.214315,,,,,,,,,,,,,, +2008,1,21,2,30,2.4049277,,,,,,,,,,,,,, +2008,1,21,3,30,2.2857203,,,,,,,,,,,,,, +2008,1,21,4,30,1.9266399,,,,,,,,,,,,,, +2008,1,21,5,30,0.9977199,,,,,,,,,,,,,, +2008,1,21,6,30,0.54453564,,,,,,,,,,,,,, +2008,1,21,7,30,1.8755404,,,,,,,,,,,,,, +2008,1,21,8,30,2.5623324,,,,,,,,,,,,,, +2008,1,21,9,30,2.7286255,,,,,,,,,,,,,, +2008,1,21,10,30,2.495265,,,,,,,,,,,,,, +2008,1,21,11,30,1.8145739,,,,,,,,,,,,,, +2008,1,21,12,30,0.8042698,,,,,,,,,,,,,, +2008,1,21,13,30,0.2629541,,,,,,,,,,,,,, +2008,1,21,14,30,1.0119506,,,,,,,,,,,,,, +2008,1,21,15,30,1.2970536,,,,,,,,,,,,,, +2008,1,21,16,30,1.304863,,,,,,,,,,,,,, +2008,1,21,17,30,1.100194,,,,,,,,,,,,,, +2008,1,21,18,30,0.4616871,,,,,,,,,,,,,, +2008,1,21,19,30,0.51208943,,,,,,,,,,,,,, +2008,1,21,20,30,1.220509,,,,,,,,,,,,,, +2008,1,21,21,30,1.4011853,,,,,,,,,,,,,, +2008,1,21,22,30,1.1071694,,,,,,,,,,,,,, +2008,1,21,23,30,0.41406927,,,,,,,,,,,,,, +2008,1,22,0,30,0.60310745,,,,,,,,,,,,,, +2008,1,22,1,30,1.6533308,,,,,,,,,,,,,, +2008,1,22,2,30,2.3165324,,,,,,,,,,,,,, +2008,1,22,3,30,2.4714541,,,,,,,,,,,,,, +2008,1,22,4,30,2.341929,,,,,,,,,,,,,, +2008,1,22,5,30,1.9006706,,,,,,,,,,,,,, +2008,1,22,6,30,0.7963298,,,,,,,,,,,,,, +2008,1,22,7,30,0.85504615,,,,,,,,,,,,,, +2008,1,22,8,30,2.158118,,,,,,,,,,,,,, +2008,1,22,9,30,2.7585275,,,,,,,,,,,,,, +2008,1,22,10,30,2.838674,,,,,,,,,,,,,, +2008,1,22,11,30,2.479643,,,,,,,,,,,,,, +2008,1,22,12,30,1.6537149,,,,,,,,,,,,,, +2008,1,22,13,30,0.52921855,,,,,,,,,,,,,, +2008,1,22,14,30,0.57609916,,,,,,,,,,,,,, +2008,1,22,15,30,1.2713013,,,,,,,,,,,,,, +2008,1,22,16,30,1.4909629,,,,,,,,,,,,,, +2008,1,22,17,30,1.4679568,,,,,,,,,,,,,, +2008,1,22,18,30,1.1646158,,,,,,,,,,,,,, +2008,1,22,19,30,0.34264034,,,,,,,,,,,,,, +2008,1,22,20,30,0.775751,,,,,,,,,,,,,, +2008,1,22,21,30,1.4635779,,,,,,,,,,,,,, +2008,1,22,22,30,1.5435477,,,,,,,,,,,,,, +2008,1,22,23,30,1.1387327,,,,,,,,,,,,,, +2008,1,23,0,30,0.33321363,,,,,,,,,,,,,, +2008,1,23,1,30,0.78373444,,,,,,,,,,,,,, +2008,1,23,2,30,1.8311894,,,,,,,,,,,,,, +2008,1,23,3,30,2.4130645,,,,,,,,,,,,,, +2008,1,23,4,30,2.5074239,,,,,,,,,,,,,, +2008,1,23,5,30,2.328581,,,,,,,,,,,,,, +2008,1,23,6,30,1.7373139,,,,,,,,,,,,,, +2008,1,23,7,30,0.4460512,,,,,,,,,,,,,, +2008,1,23,8,30,1.2575417,,,,,,,,,,,,,, +2008,1,23,9,30,2.4234276,,,,,,,,,,,,,, +2008,1,23,10,30,2.8578634,,,,,,,,,,,,,, +2008,1,23,11,30,2.8000016,,,,,,,,,,,,,, +2008,1,23,12,30,2.2916741,,,,,,,,,,,,,, +2008,1,23,13,30,1.3340479,,,,,,,,,,,,,, +2008,1,23,14,30,0.15074523,,,,,,,,,,,,,, +2008,1,23,15,30,0.9351419,,,,,,,,,,,,,, +2008,1,23,16,30,1.5194609,,,,,,,,,,,,,, +2008,1,23,17,30,1.643103,,,,,,,,,,,,,, +2008,1,23,18,30,1.5380676,,,,,,,,,,,,,, +2008,1,23,19,30,1.070038,,,,,,,,,,,,,, +2008,1,23,20,30,0.14632288,,,,,,,,,,,,,, +2008,1,23,21,30,1.0980793,,,,,,,,,,,,,, +2008,1,23,22,30,1.670989,,,,,,,,,,,,,, +2008,1,23,23,30,1.6063601,,,,,,,,,,,,,, +2008,1,24,0,30,1.0722172,,,,,,,,,,,,,, +2008,1,24,1,30,0.16327569,,,,,,,,,,,,,, +2008,1,24,2,30,1.0215755,,,,,,,,,,,,,, +2008,1,24,3,30,1.9920384,,,,,,,,,,,,,, +2008,1,24,4,30,2.4509587,,,,,,,,,,,,,, +2008,1,24,5,30,2.4666345,,,,,,,,,,,,,, +2008,1,24,6,30,2.1868489,,,,,,,,,,,,,, +2008,1,24,7,30,1.392962,,,,,,,,,,,,,, +2008,1,24,8,30,0.15999268,,,,,,,,,,,,,, +2008,1,24,9,30,1.6690556,,,,,,,,,,,,,, +2008,1,24,10,30,2.585471,,,,,,,,,,,,,, +2008,1,24,11,30,2.8128693,,,,,,,,,,,,,, +2008,1,24,12,30,2.6072488,,,,,,,,,,,,,, +2008,1,24,13,30,1.9554558,,,,,,,,,,,,,, +2008,1,24,14,30,0.8957125,,,,,,,,,,,,,, +2008,1,24,15,30,0.32059598,,,,,,,,,,,,,, +2008,1,24,16,30,1.288961,,,,,,,,,,,,,, +2008,1,24,17,30,1.7193464,,,,,,,,,,,,,, +2008,1,24,18,30,1.7236626,,,,,,,,,,,,,, +2008,1,24,19,30,1.496579,,,,,,,,,,,,,, +2008,1,24,20,30,0.8437401,,,,,,,,,,,,,, +2008,1,24,21,30,0.33683473,,,,,,,,,,,,,, +2008,1,24,22,30,1.3800529,,,,,,,,,,,,,, +2008,1,24,23,30,1.777888,,,,,,,,,,,,,, +2008,1,25,0,30,1.5625101,,,,,,,,,,,,,, +2008,1,25,1,30,0.90891564,,,,,,,,,,,,,, +2008,1,25,2,30,0.13787861,,,,,,,,,,,,,, +2008,1,25,3,30,1.2408907,,,,,,,,,,,,,, +2008,1,25,4,30,2.0656579,,,,,,,,,,,,,, +2008,1,25,5,30,2.3824556,,,,,,,,,,,,,, +2008,1,25,6,30,2.3002737,,,,,,,,,,,,,, +2008,1,25,7,30,1.8703264,,,,,,,,,,,,,, +2008,1,25,8,30,0.87823427,,,,,,,,,,,,,, +2008,1,25,9,30,0.6544763,,,,,,,,,,,,,, +2008,1,25,10,30,1.9814672,,,,,,,,,,,,,, +2008,1,25,11,30,2.588657,,,,,,,,,,,,,, +2008,1,25,12,30,2.6238115,,,,,,,,,,,,,, +2008,1,25,13,30,2.284576,,,,,,,,,,,,,, +2008,1,25,14,30,1.5035325,,,,,,,,,,,,,, +2008,1,25,15,30,0.38312504,,,,,,,,,,,,,, +2008,1,25,16,30,0.7807271,,,,,,,,,,,,,, +2008,1,25,17,30,1.5914552,,,,,,,,,,,,,, +2008,1,25,18,30,1.8466698,,,,,,,,,,,,,, +2008,1,25,19,30,1.7243474,,,,,,,,,,,,,, +2008,1,25,20,30,1.3603797,,,,,,,,,,,,,, +2008,1,25,21,30,0.55161035,,,,,,,,,,,,,, +2008,1,25,22,30,0.6563826,,,,,,,,,,,,,, +2008,1,25,23,30,1.5536172,,,,,,,,,,,,,, +2008,1,26,0,30,1.7657381,,,,,,,,,,,,,, +2008,1,26,1,30,1.4272107,,,,,,,,,,,,,, +2008,1,26,2,30,0.6918582,,,,,,,,,,,,,, +2008,1,26,3,30,0.36279,,,,,,,,,,,,,, +2008,1,26,4,30,1.3640671,,,,,,,,,,,,,, +2008,1,26,5,30,2.0027635,,,,,,,,,,,,,, +2008,1,26,6,30,2.1776001,,,,,,,,,,,,,, +2008,1,26,7,30,1.9807545,,,,,,,,,,,,,, +2008,1,26,8,30,1.3881083,,,,,,,,,,,,,, +2008,1,26,9,30,0.29425964,,,,,,,,,,,,,, +2008,1,26,10,30,1.1247904,,,,,,,,,,,,,, +2008,1,26,11,30,2.1150362,,,,,,,,,,,,,, +2008,1,26,12,30,2.4316838,,,,,,,,,,,,,, +2008,1,26,13,30,2.320554,,,,,,,,,,,,,, +2008,1,26,14,30,1.859761,,,,,,,,,,,,,, +2008,1,26,15,30,0.9717067,,,,,,,,,,,,,, +2008,1,26,16,30,0.1626962,,,,,,,,,,,,,, +2008,1,26,17,30,1.1933143,,,,,,,,,,,,,, +2008,1,26,18,30,1.8083365,,,,,,,,,,,,,, +2008,1,26,19,30,1.8942168,,,,,,,,,,,,,, +2008,1,26,20,30,1.6551325,,,,,,,,,,,,,, +2008,1,26,21,30,1.1657455,,,,,,,,,,,,,, +2008,1,26,22,30,0.27154383,,,,,,,,,,,,,, +2008,1,26,23,30,0.89528877,,,,,,,,,,,,,, +2008,1,27,0,30,1.6063035,,,,,,,,,,,,,, +2008,1,27,1,30,1.6652029,,,,,,,,,,,,,, +2008,1,27,2,30,1.2504271,,,,,,,,,,,,,, +2008,1,27,3,30,0.48617464,,,,,,,,,,,,,, +2008,1,27,4,30,0.5145992,,,,,,,,,,,,,, +2008,1,27,5,30,1.342786,,,,,,,,,,,,,, +2008,1,27,6,30,1.7908462,,,,,,,,,,,,,, +2008,1,27,7,30,1.84106,,,,,,,,,,,,,, +2008,1,27,8,30,1.5349258,,,,,,,,,,,,,, +2008,1,27,9,30,0.82714224,,,,,,,,,,,,,, +2008,1,27,10,30,0.2999376,,,,,,,,,,,,,, +2008,1,27,11,30,1.4140656,,,,,,,,,,,,,, +2008,1,27,12,30,2.0525665,,,,,,,,,,,,,, +2008,1,27,13,30,2.151335,,,,,,,,,,,,,, +2008,1,27,14,30,1.9343513,,,,,,,,,,,,,, +2008,1,27,15,30,1.3613031,,,,,,,,,,,,,, +2008,1,27,16,30,0.41343293,,,,,,,,,,,,,, +2008,1,27,17,30,0.6473029,,,,,,,,,,,,,, +2008,1,27,18,30,1.5078927,,,,,,,,,,,,,, +2008,1,27,19,30,1.9246757,,,,,,,,,,,,,, +2008,1,27,20,30,1.8675411,,,,,,,,,,,,,, +2008,1,27,21,30,1.5331905,,,,,,,,,,,,,, +2008,1,27,22,30,0.9489869,,,,,,,,,,,,,, +2008,1,27,23,30,0.12502307,,,,,,,,,,,,,, +2008,1,28,0,30,1.0405279,,,,,,,,,,,,,, +2008,1,28,1,30,1.5780996,,,,,,,,,,,,,, +2008,1,28,2,30,1.5370104,,,,,,,,,,,,,, +2008,1,28,3,30,1.0914736,,,,,,,,,,,,,, +2008,1,28,4,30,0.34821388,,,,,,,,,,,,,, +2008,1,28,5,30,0.54332364,,,,,,,,,,,,,, +2008,1,28,6,30,1.1729453,,,,,,,,,,,,,, +2008,1,28,7,30,1.4624383,,,,,,,,,,,,,, +2008,1,28,8,30,1.4279567,,,,,,,,,,,,,, +2008,1,28,9,30,1.0530145,,,,,,,,,,,,,, +2008,1,28,10,30,0.32516804,,,,,,,,,,,,,, +2008,1,28,11,30,0.6654159,,,,,,,,,,,,,, +2008,1,28,12,30,1.4808613,,,,,,,,,,,,,, +2008,1,28,13,30,1.8315952,,,,,,,,,,,,,, +2008,1,28,14,30,1.7928066,,,,,,,,,,,,,, +2008,1,28,15,30,1.4940808,,,,,,,,,,,,,, +2008,1,28,16,30,0.83571684,,,,,,,,,,,,,, +2008,1,28,17,30,0.11505089,,,,,,,,,,,,,, +2008,1,28,18,30,1.0296896,,,,,,,,,,,,,, +2008,1,28,19,30,1.7007366,,,,,,,,,,,,,, +2008,1,28,20,30,1.9448421,,,,,,,,,,,,,, +2008,1,28,21,30,1.7790601,,,,,,,,,,,,,, +2008,1,28,22,30,1.3773793,,,,,,,,,,,,,, +2008,1,28,23,30,0.7355975,,,,,,,,,,,,,, +2008,1,29,0,30,0.24349229,,,,,,,,,,,,,, +2008,1,29,1,30,1.1280087,,,,,,,,,,,,,, +2008,1,29,2,30,1.532906,,,,,,,,,,,,,, +2008,1,29,3,30,1.4389393,,,,,,,,,,,,,, +2008,1,29,4,30,0.9919017,,,,,,,,,,,,,, +2008,1,29,5,30,0.30302256,,,,,,,,,,,,,, +2008,1,29,6,30,0.44446522,,,,,,,,,,,,,, +2008,1,29,7,30,0.8969351,,,,,,,,,,,,,, +2008,1,29,8,30,1.0948405,,,,,,,,,,,,,, +2008,1,29,9,30,1.0354917,,,,,,,,,,,,,, +2008,1,29,10,30,0.6498567,,,,,,,,,,,,,, +2008,1,29,11,30,0.13487539,,,,,,,,,,,,,, +2008,1,29,12,30,0.81706923,,,,,,,,,,,,,, +2008,1,29,13,30,1.3574712,,,,,,,,,,,,,, +2008,1,29,14,30,1.5149747,,,,,,,,,,,,,, +2008,1,29,15,30,1.4006377,,,,,,,,,,,,,, +2008,1,29,16,30,1.0432847,,,,,,,,,,,,,, +2008,1,29,17,30,0.35178223,,,,,,,,,,,,,, +2008,1,29,18,30,0.5155943,,,,,,,,,,,,,, +2008,1,29,19,30,1.2791629,,,,,,,,,,,,,, +2008,1,29,20,30,1.7795632,,,,,,,,,,,,,, +2008,1,29,21,30,1.889067,,,,,,,,,,,,,, +2008,1,29,22,30,1.6497597,,,,,,,,,,,,,, +2008,1,29,23,30,1.2096552,,,,,,,,,,,,,, +2008,1,30,0,30,0.5372853,,,,,,,,,,,,,, +2008,1,30,1,30,0.4181129,,,,,,,,,,,,,, +2008,1,30,2,30,1.2090503,,,,,,,,,,,,,, +2008,1,30,3,30,1.5211471,,,,,,,,,,,,,, +2008,1,30,4,30,1.4004837,,,,,,,,,,,,,, +2008,1,30,5,30,0.9667138,,,,,,,,,,,,,, +2008,1,30,6,30,0.34709448,,,,,,,,,,,,,, +2008,1,30,7,30,0.2534147,,,,,,,,,,,,,, +2008,1,30,8,30,0.59603703,,,,,,,,,,,,,, +2008,1,30,9,30,0.7889068,,,,,,,,,,,,,, +2008,1,30,10,30,0.7585702,,,,,,,,,,,,,, +2008,1,30,11,30,0.40034503,,,,,,,,,,,,,, +2008,1,30,12,30,0.23009984,,,,,,,,,,,,,, +2008,1,30,13,30,0.77892286,,,,,,,,,,,,,, +2008,1,30,14,30,1.1187909,,,,,,,,,,,,,, +2008,1,30,15,30,1.172409,,,,,,,,,,,,,, +2008,1,30,16,30,1.0284965,,,,,,,,,,,,,, +2008,1,30,17,30,0.64419067,,,,,,,,,,,,,, +2008,1,30,18,30,0.04267674,,,,,,,,,,,,,, +2008,1,30,19,30,0.7867075,,,,,,,,,,,,,, +2008,1,30,20,30,1.410486,,,,,,,,,,,,,, +2008,1,30,21,30,1.7784615,,,,,,,,,,,,,, +2008,1,30,22,30,1.7930167,,,,,,,,,,,,,, +2008,1,30,23,30,1.5131253,,,,,,,,,,,,,, +2008,1,31,0,30,1.0530546,,,,,,,,,,,,,, +2008,1,31,1,30,0.35567126,,,,,,,,,,,,,, +2008,1,31,2,30,0.6013471,,,,,,,,,,,,,, +2008,1,31,3,30,1.3168428,,,,,,,,,,,,,, +2008,1,31,4,30,1.5595949,,,,,,,,,,,,,, +2008,1,31,5,30,1.4235348,,,,,,,,,,,,,, +2008,1,31,6,30,1.0131948,,,,,,,,,,,,,, +2008,1,31,7,30,0.46316233,,,,,,,,,,,,,, +2008,1,31,8,30,0.054617,,,,,,,,,,,,,, +2008,1,31,9,30,0.36622915,,,,,,,,,,,,,, +2008,1,31,10,30,0.6243642,,,,,,,,,,,,,, +2008,1,31,11,30,0.6361252,,,,,,,,,,,,,, +2008,1,31,12,30,0.30562964,,,,,,,,,,,,,, +2008,1,31,13,30,0.2236877,,,,,,,,,,,,,, +2008,1,31,14,30,0.6278443,,,,,,,,,,,,,, +2008,1,31,15,30,0.852975,,,,,,,,,,,,,, +2009,1,31,16,30,0.8770323,,,,,,,,,,,,,, +2009,1,31,17,30,0.73827183,,,,,,,,,,,,,, +2009,1,31,18,30,0.353068,,,,,,,,,,,,,, +2009,1,31,19,30,0.28249496,,,,,,,,,,,,,, +2009,1,31,20,30,0.9439915,,,,,,,,,,,,,, +2009,1,31,21,30,1.4706606,,,,,,,,,,,,,, +2009,1,31,22,30,1.7490184,,,,,,,,,,,,,, +2009,1,31,23,30,1.7045177,,,,,,,,,,,,,, +2009,2,1,0,30,1.4071255,,,,,,,,,,,,,, +2009,2,1,1,30,0.92207825,,,,,,,,,,,,,, +2009,2,1,2,30,0.20307894,,,,,,,,,,,,,, +2009,2,1,3,30,0.8043829,,,,,,,,,,,,,, +2009,2,1,4,30,1.4553525,,,,,,,,,,,,,, +2009,2,1,5,30,1.6419252,,,,,,,,,,,,,, +2009,2,1,6,30,1.500848,,,,,,,,,,,,,, +2009,2,1,7,30,1.1171252,,,,,,,,,,,,,, +2009,2,1,8,30,0.609931,,,,,,,,,,,,,, +2009,2,1,9,30,0.15143192,,,,,,,,,,,,,, +2009,2,1,10,30,0.27866325,,,,,,,,,,,,,, +2009,2,1,11,30,0.6169895,,,,,,,,,,,,,, +2009,2,1,12,30,0.6372446,,,,,,,,,,,,,, +2009,2,1,13,30,0.31674692,,,,,,,,,,,,,, +2009,2,1,14,30,0.15148807,,,,,,,,,,,,,, +2009,2,1,15,30,0.45135164,,,,,,,,,,,,,, +2009,2,1,16,30,0.6454822,,,,,,,,,,,,,, +2009,2,1,17,30,0.6957036,,,,,,,,,,,,,, +2009,2,1,18,30,0.5739981,,,,,,,,,,,,,, +2009,2,1,19,30,0.18912241,,,,,,,,,,,,,, +2009,2,1,20,30,0.4267722,,,,,,,,,,,,,, +2009,2,1,21,30,1.0419998,,,,,,,,,,,,,, +2009,2,1,22,30,1.5205668,,,,,,,,,,,,,, +2009,2,1,23,30,1.7463913,,,,,,,,,,,,,, +2009,2,2,0,30,1.6669422,,,,,,,,,,,,,, +2009,2,2,1,30,1.3537947,,,,,,,,,,,,,, +2009,2,2,2,30,0.8147173,,,,,,,,,,,,,, +2009,2,2,3,30,0.14597149,,,,,,,,,,,,,, +2009,2,2,4,30,1.0253613,,,,,,,,,,,,,, +2009,2,2,5,30,1.6168597,,,,,,,,,,,,,, +2009,2,2,6,30,1.7624553,,,,,,,,,,,,,, +2009,2,2,7,30,1.6241894,,,,,,,,,,,,,, +2009,2,2,8,30,1.2468903,,,,,,,,,,,,,, +2009,2,2,9,30,0.7227203,,,,,,,,,,,,,, +2009,2,2,10,30,0.19038394,,,,,,,,,,,,,, +2009,2,2,11,30,0.3457598,,,,,,,,,,,,,, +2009,2,2,12,30,0.718821,,,,,,,,,,,,,, +2009,2,2,13,30,0.69902825,,,,,,,,,,,,,, +2009,2,2,14,30,0.3773409,,,,,,,,,,,,,, +2009,2,2,15,30,0.10556974,,,,,,,,,,,,,, +2009,2,2,16,30,0.32611713,,,,,,,,,,,,,, +2009,2,2,17,30,0.5647061,,,,,,,,,,,,,, +2009,2,2,18,30,0.6605061,,,,,,,,,,,,,, +2009,2,2,19,30,0.531321,,,,,,,,,,,,,, +2009,2,2,20,30,0.12080035,,,,,,,,,,,,,, +2009,2,2,21,30,0.5206908,,,,,,,,,,,,,, +2009,2,2,22,30,1.1437808,,,,,,,,,,,,,, +2009,2,2,23,30,1.6139749,,,,,,,,,,,,,, +2009,2,3,0,30,1.8068432,,,,,,,,,,,,,, +2009,2,3,1,30,1.6950582,,,,,,,,,,,,,, +2009,2,3,2,30,1.3451605,,,,,,,,,,,,,, +2009,2,3,3,30,0.7135593,,,,,,,,,,,,,, +2009,2,3,4,30,0.30820996,,,,,,,,,,,,,, +2009,2,3,5,30,1.2648247,,,,,,,,,,,,,, +2009,2,3,6,30,1.80441,,,,,,,,,,,,,, +2009,2,3,7,30,1.9214251,,,,,,,,,,,,,, +2009,2,3,8,30,1.7722629,,,,,,,,,,,,,, +2009,2,3,9,30,1.350102,,,,,,,,,,,,,, +2009,2,3,10,30,0.7391907,,,,,,,,,,,,,, +2009,2,3,11,30,0.09739532,,,,,,,,,,,,,, +2009,2,3,12,30,0.5266655,,,,,,,,,,,,,, +2009,2,3,13,30,0.8646116,,,,,,,,,,,,,, +2009,2,3,14,30,0.7762411,,,,,,,,,,,,,, +2009,2,3,15,30,0.45367107,,,,,,,,,,,,,, +2009,2,3,16,30,0.113697946,,,,,,,,,,,,,, +2009,2,3,17,30,0.30905956,,,,,,,,,,,,,, +2009,2,3,18,30,0.63676083,,,,,,,,,,,,,, +2009,2,3,19,30,0.7481195,,,,,,,,,,,,,, +2009,2,3,20,30,0.5623175,,,,,,,,,,,,,, +2009,2,3,21,30,0.08501934,,,,,,,,,,,,,, +2009,2,3,22,30,0.6227209,,,,,,,,,,,,,, +2009,2,3,23,30,1.2975193,,,,,,,,,,,,,, +2009,2,4,0,30,1.7748165,,,,,,,,,,,,,, +2009,2,4,1,30,1.9270903,,,,,,,,,,,,,, +2009,2,4,2,30,1.7656736,,,,,,,,,,,,,, +2009,2,4,3,30,1.3485181,,,,,,,,,,,,,, +2009,2,4,4,30,0.5897988,,,,,,,,,,,,,, +2009,2,4,5,30,0.5534427,,,,,,,,,,,,,, +2009,2,4,6,30,1.5398705,,,,,,,,,,,,,, +2009,2,4,7,30,2.028666,,,,,,,,,,,,,, +2009,2,4,8,30,2.1056023,,,,,,,,,,,,,, +2009,2,4,9,30,1.8997409,,,,,,,,,,,,,, +2009,2,4,10,30,1.3687183,,,,,,,,,,,,,, +2009,2,4,11,30,0.62586224,,,,,,,,,,,,,, +2009,2,4,12,30,0.14835525,,,,,,,,,,,,,, +2009,2,4,13,30,0.76871437,,,,,,,,,,,,,, +2009,2,4,14,30,1.0176096,,,,,,,,,,,,,, +2009,2,4,15,30,0.86161983,,,,,,,,,,,,,, +2009,2,4,16,30,0.53020424,,,,,,,,,,,,,, +2009,2,4,17,30,0.12659553,,,,,,,,,,,,,, +2009,2,4,18,30,0.4290751,,,,,,,,,,,,,, +2009,2,4,19,30,0.83332825,,,,,,,,,,,,,, +2009,2,4,20,30,0.9007541,,,,,,,,,,,,,, +2009,2,4,21,30,0.6107682,,,,,,,,,,,,,, +2009,2,4,22,30,0.044435035,,,,,,,,,,,,,, +2009,2,4,23,30,0.77446127,,,,,,,,,,,,,, +2009,2,5,0,30,1.5174978,,,,,,,,,,,,,, +2009,2,5,1,30,1.9829168,,,,,,,,,,,,,, +2009,2,5,2,30,2.0653682,,,,,,,,,,,,,, +2009,2,5,3,30,1.8334115,,,,,,,,,,,,,, +2009,2,5,4,30,1.3204036,,,,,,,,,,,,,, +2009,2,5,5,30,0.40635514,,,,,,,,,,,,,, +2009,2,5,6,30,0.87618697,,,,,,,,,,,,,, +2009,2,5,7,30,1.8689512,,,,,,,,,,,,,, +2009,2,5,8,30,2.2793262,,,,,,,,,,,,,, +2009,2,5,9,30,2.2719922,,,,,,,,,,,,,, +2009,2,5,10,30,1.9493189,,,,,,,,,,,,,, +2009,2,5,11,30,1.2638443,,,,,,,,,,,,,, +2009,2,5,12,30,0.38368332,,,,,,,,,,,,,, +2009,2,5,13,30,0.46335346,,,,,,,,,,,,,, +2009,2,5,14,30,1.0410955,,,,,,,,,,,,,, +2009,2,5,15,30,1.1783181,,,,,,,,,,,,,, +2009,2,5,16,30,0.9644486,,,,,,,,,,,,,, +2009,2,5,17,30,0.5879073,,,,,,,,,,,,,, +2009,2,5,18,30,0.11235373,,,,,,,,,,,,,, +2009,2,5,19,30,0.671242,,,,,,,,,,,,,, +2009,2,5,20,30,1.0958246,,,,,,,,,,,,,, +2009,2,5,21,30,1.0591418,,,,,,,,,,,,,, +2009,2,5,22,30,0.6367698,,,,,,,,,,,,,, +2009,2,5,23,30,0.0918302,,,,,,,,,,,,,, +2009,2,6,0,30,0.9858135,,,,,,,,,,,,,, +2009,2,6,1,30,1.7757645,,,,,,,,,,,,,, +2009,2,6,2,30,2.1834135,,,,,,,,,,,,,, +2009,2,6,3,30,2.1678824,,,,,,,,,,,,,, +2009,2,6,4,30,1.8540239,,,,,,,,,,,,,, +2009,2,6,5,30,1.2146287,,,,,,,,,,,,,, +2009,2,6,6,30,0.16367422,,,,,,,,,,,,,, +2009,2,6,7,30,1.2953811,,,,,,,,,,,,,, +2009,2,6,8,30,2.2350783,,,,,,,,,,,,,, +2009,2,6,9,30,2.5063105,,,,,,,,,,,,,, +2009,2,6,10,30,2.3606925,,,,,,,,,,,,,, +2009,2,6,11,30,1.8785756,,,,,,,,,,,,,, +2009,2,6,12,30,1.0256604,,,,,,,,,,,,,, +2009,2,6,13,30,0.06418347,,,,,,,,,,,,,, +2009,2,6,14,30,0.84855807,,,,,,,,,,,,,, +2009,2,6,15,30,1.33575,,,,,,,,,,,,,, +2009,2,6,16,30,1.3563172,,,,,,,,,,,,,, +2009,2,6,17,30,1.078377,,,,,,,,,,,,,, +2009,2,6,18,30,0.5967182,,,,,,,,,,,,,, +2009,2,6,19,30,0.18817179,,,,,,,,,,,,,, +2009,2,6,20,30,0.99263334,,,,,,,,,,,,,, +2009,2,6,21,30,1.3643305,,,,,,,,,,,,,, +2009,2,6,22,30,1.1844933,,,,,,,,,,,,,, +2009,2,6,23,30,0.62447774,,,,,,,,,,,,,, +2009,2,7,0,30,0.23420691,,,,,,,,,,,,,, +2009,2,7,1,30,1.2303536,,,,,,,,,,,,,, +2009,2,7,2,30,2.0147479,,,,,,,,,,,,,, +2009,2,7,3,30,2.31813,,,,,,,,,,,,,, +2009,2,7,4,30,2.197056,,,,,,,,,,,,,, +2009,2,7,5,30,1.7931982,,,,,,,,,,,,,, +2009,2,7,6,30,0.9891512,,,,,,,,,,,,,, +2009,2,7,7,30,0.37414116,,,,,,,,,,,,,, +2009,2,7,8,30,1.7803729,,,,,,,,,,,,,, +2009,2,7,9,30,2.5688493,,,,,,,,,,,,,, +2009,2,7,10,30,2.6389346,,,,,,,,,,,,,, +2009,2,7,11,30,2.3268023,,,,,,,,,,,,,, +2009,2,7,12,30,1.6736876,,,,,,,,,,,,,, +2009,2,7,13,30,0.6619822,,,,,,,,,,,,,, +2009,2,7,14,30,0.44288316,,,,,,,,,,,,,, +2009,2,7,15,30,1.282596,,,,,,,,,,,,,, +2009,2,7,16,30,1.6421102,,,,,,,,,,,,,, +2009,2,7,17,30,1.5408614,,,,,,,,,,,,,, +2009,2,7,18,30,1.1720585,,,,,,,,,,,,,, +2009,2,7,19,30,0.52461755,,,,,,,,,,,,,, +2009,2,7,20,30,0.46908563,,,,,,,,,,,,,, +2009,2,7,21,30,1.343049,,,,,,,,,,,,,, +2009,2,7,22,30,1.5969241,,,,,,,,,,,,,, +2009,2,7,23,30,1.2644233,,,,,,,,,,,,,, +2009,2,8,0,30,0.5786694,,,,,,,,,,,,,, +2009,2,8,1,30,0.40341562,,,,,,,,,,,,,, +2009,2,8,2,30,1.4576352,,,,,,,,,,,,,, +2009,2,8,3,30,2.1765432,,,,,,,,,,,,,, +2009,2,8,4,30,2.3535192,,,,,,,,,,,,,, +2009,2,8,5,30,2.1365206,,,,,,,,,,,,,, +2009,2,8,6,30,1.6243175,,,,,,,,,,,,,, +2009,2,8,7,30,0.62688506,,,,,,,,,,,,,, +2009,2,8,8,30,0.8904007,,,,,,,,,,,,,, +2009,2,8,9,30,2.238557,,,,,,,,,,,,,, +2009,2,8,10,30,2.778319,,,,,,,,,,,,,, +2009,2,8,11,30,2.6276212,,,,,,,,,,,,,, +2009,2,8,12,30,2.158211,,,,,,,,,,,,,, +2009,2,8,13,30,1.3402127,,,,,,,,,,,,,, +2009,2,8,14,30,0.19354509,,,,,,,,,,,,,, +2009,2,8,15,30,0.9697552,,,,,,,,,,,,,, +2009,2,8,16,30,1.7299325,,,,,,,,,,,,,, +2009,2,8,17,30,1.9294182,,,,,,,,,,,,,, +2009,2,8,18,30,1.697608,,,,,,,,,,,,,, +2009,2,8,19,30,1.2031074,,,,,,,,,,,,,, +2009,2,8,20,30,0.35519576,,,,,,,,,,,,,, +2009,2,8,21,30,0.8224969,,,,,,,,,,,,,, +2009,2,8,22,30,1.6760906,,,,,,,,,,,,,, +2009,2,8,23,30,1.7742221,,,,,,,,,,,,,, +2009,2,9,0,30,1.3059224,,,,,,,,,,,,,, +2009,2,9,1,30,0.51730806,,,,,,,,,,,,,, +2009,2,9,2,30,0.5596218,,,,,,,,,,,,,, +2009,2,9,3,30,1.6164261,,,,,,,,,,,,,, +2009,2,9,4,30,2.2265406,,,,,,,,,,,,,, +2009,2,9,5,30,2.2824266,,,,,,,,,,,,,, +2009,2,9,6,30,1.978908,,,,,,,,,,,,,, +2009,2,9,7,30,1.3364305,,,,,,,,,,,,,, +2009,2,9,8,30,0.1880733,,,,,,,,,,,,,, +2009,2,9,9,30,1.4094969,,,,,,,,,,,,,, +2009,2,9,10,30,2.5545347,,,,,,,,,,,,,, +2009,2,9,11,30,2.8030112,,,,,,,,,,,,,, +2009,2,9,12,30,2.4672112,,,,,,,,,,,,,, +2009,2,9,13,30,1.866209,,,,,,,,,,,,,, +2009,2,9,14,30,0.89276063,,,,,,,,,,,,,, +2009,2,9,15,30,0.38715452,,,,,,,,,,,,,, +2009,2,9,16,30,1.5176069,,,,,,,,,,,,,, +2009,2,9,17,30,2.1343827,,,,,,,,,,,,,, +2009,2,9,18,30,2.1540787,,,,,,,,,,,,,, +2009,2,9,19,30,1.7864668,,,,,,,,,,,,,, +2009,2,9,20,30,1.14096,,,,,,,,,,,,,, +2009,2,9,21,30,0.13727161,,,,,,,,,,,,,, +2009,2,9,22,30,1.1956053,,,,,,,,,,,,,, +2009,2,9,23,30,1.9539751,,,,,,,,,,,,,, +2009,2,10,0,30,1.8943357,,,,,,,,,,,,,, +2009,2,10,1,30,1.3260567,,,,,,,,,,,,,, +2009,2,10,2,30,0.46377817,,,,,,,,,,,,,, +2009,2,10,3,30,0.66628146,,,,,,,,,,,,,, +2009,2,10,4,30,1.6717469,,,,,,,,,,,,,, +2009,2,10,5,30,2.154526,,,,,,,,,,,,,, +2009,2,10,6,30,2.1087523,,,,,,,,,,,,,, +2009,2,10,7,30,1.7241722,,,,,,,,,,,,,, +2009,2,10,8,30,0.9554342,,,,,,,,,,,,,, +2009,2,10,9,30,0.3561825,,,,,,,,,,,,,, +2009,2,10,10,30,1.7999748,,,,,,,,,,,,,, +2009,2,10,11,30,2.652643,,,,,,,,,,,,,, +2009,2,10,12,30,2.6435008,,,,,,,,,,,,,, +2009,2,10,13,30,2.1850162,,,,,,,,,,,,,, +2009,2,10,14,30,1.4710802,,,,,,,,,,,,,, +2009,2,10,15,30,0.36773914,,,,,,,,,,,,,, +2009,2,10,16,30,0.9673797,,,,,,,,,,,,,, +2009,2,10,17,30,2.0088632,,,,,,,,,,,,,, +2009,2,10,18,30,2.4376202,,,,,,,,,,,,,, +2009,2,10,19,30,2.2803864,,,,,,,,,,,,,, +2009,2,10,20,30,1.7833755,,,,,,,,,,,,,, +2009,2,10,21,30,0.98696756,,,,,,,,,,,,,, +2009,2,10,22,30,0.25500554,,,,,,,,,,,,,, +2009,2,10,23,30,1.5303941,,,,,,,,,,,,,, +2009,2,11,0,30,2.1522121,,,,,,,,,,,,,, +2009,2,11,1,30,1.967067,,,,,,,,,,,,,, +2009,2,11,2,30,1.34371,,,,,,,,,,,,,, +2009,2,11,3,30,0.4391086,,,,,,,,,,,,,, +2009,2,11,4,30,0.6964246,,,,,,,,,,,,,, +2009,2,11,5,30,1.6057131,,,,,,,,,,,,,, +2009,2,11,6,30,1.9637644,,,,,,,,,,,,,, +2009,2,11,7,30,1.8434153,,,,,,,,,,,,,, +2009,2,11,8,30,1.3962514,,,,,,,,,,,,,, +2009,2,11,9,30,0.5540223,,,,,,,,,,,,,, +2009,2,11,10,30,0.73846596,,,,,,,,,,,,,, +2009,2,11,11,30,1.9747221,,,,,,,,,,,,,, +2009,2,11,12,30,2.5308642,,,,,,,,,,,,,, +2009,2,11,13,30,2.346389,,,,,,,,,,,,,, +2009,2,11,14,30,1.81795,,,,,,,,,,,,,, +2009,2,11,15,30,1.0066326,,,,,,,,,,,,,, +2009,2,11,16,30,0.21517643,,,,,,,,,,,,,, +2009,2,11,17,30,1.484606,,,,,,,,,,,,,, +2009,2,11,18,30,2.3707404,,,,,,,,,,,,,, +2009,2,11,19,30,2.6033108,,,,,,,,,,,,,, +2009,2,11,20,30,2.2964933,,,,,,,,,,,,,, +2009,2,11,21,30,1.69513,,,,,,,,,,,,,, +2009,2,11,22,30,0.7816143,,,,,,,,,,,,,, +2009,2,11,23,30,0.5469995,,,,,,,,,,,,,, +2009,2,12,0,30,1.7776775,,,,,,,,,,,,,, +2009,2,12,1,30,2.2652104,,,,,,,,,,,,,, +2009,2,12,2,30,2.007826,,,,,,,,,,,,,, +2009,2,12,3,30,1.3720918,,,,,,,,,,,,,, +2009,2,12,4,30,0.45872194,,,,,,,,,,,,,, +2009,2,12,5,30,0.6305587,,,,,,,,,,,,,, +2009,2,12,6,30,1.4133868,,,,,,,,,,,,,, +2009,2,12,7,30,1.6717275,,,,,,,,,,,,,, +2009,2,12,8,30,1.5189105,,,,,,,,,,,,,, +2009,2,12,9,30,1.0542803,,,,,,,,,,,,,, +2009,2,12,10,30,0.2342237,,,,,,,,,,,,,, +2009,2,12,11,30,0.9431465,,,,,,,,,,,,,, +2009,2,12,12,30,1.9210154,,,,,,,,,,,,,, +2009,2,12,13,30,2.2447224,,,,,,,,,,,,,, +2009,2,12,14,30,1.9718202,,,,,,,,,,,,,, +2009,2,12,15,30,1.4084156,,,,,,,,,,,,,, +2009,2,12,16,30,0.5349055,,,,,,,,,,,,,, +2009,2,12,17,30,0.68680716,,,,,,,,,,,,,, +2009,2,12,18,30,1.8557923,,,,,,,,,,,,,, +2009,2,12,19,30,2.5629747,,,,,,,,,,,,,, +2009,2,12,20,30,2.6284437,,,,,,,,,,,,,, +2009,2,12,21,30,2.2200913,,,,,,,,,,,,,, +2009,2,12,22,30,1.5617521,,,,,,,,,,,,,, +2009,2,12,23,30,0.5899273,,,,,,,,,,,,,, +2009,2,13,0,30,0.76544553,,,,,,,,,,,,,, +2009,2,13,1,30,1.916721,,,,,,,,,,,,,, +2009,2,13,2,30,2.305694,,,,,,,,,,,,,, +2009,2,13,3,30,2.030859,,,,,,,,,,,,,, +2009,2,13,4,30,1.4185994,,,,,,,,,,,,,, +2009,2,13,5,30,0.53721094,,,,,,,,,,,,,, +2009,2,13,6,30,0.45628747,,,,,,,,,,,,,, +2009,2,13,7,30,1.1112556,,,,,,,,,,,,,, +2009,2,13,8,30,1.3246135,,,,,,,,,,,,,, +2009,2,13,9,30,1.1985713,,,,,,,,,,,,,, +2009,2,13,10,30,0.7752975,,,,,,,,,,,,,, +2009,2,13,11,30,0.13970074,,,,,,,,,,,,,, +2009,2,13,12,30,0.94309014,,,,,,,,,,,,,, +2009,2,13,13,30,1.6865566,,,,,,,,,,,,,, +2009,2,13,14,30,1.8699722,,,,,,,,,,,,,, +2009,2,13,15,30,1.5793794,,,,,,,,,,,,,, +2009,2,13,16,30,1.0147749,,,,,,,,,,,,,, +2009,2,13,17,30,0.14735708,,,,,,,,,,,,,, +2009,2,13,18,30,1.01522,,,,,,,,,,,,,, +2009,2,13,19,30,2.039367,,,,,,,,,,,,,, +2009,2,13,20,30,2.58831,,,,,,,,,,,,,, +2009,2,13,21,30,2.541915,,,,,,,,,,,,,, +2009,2,13,22,30,2.0957031,,,,,,,,,,,,,, +2009,2,13,23,30,1.4413589,,,,,,,,,,,,,, +2009,2,14,0,30,0.46725518,,,,,,,,,,,,,, +2009,2,14,1,30,0.88224447,,,,,,,,,,,,,, +2009,2,14,2,30,1.9599698,,,,,,,,,,,,,, +2009,2,14,3,30,2.2963662,,,,,,,,,,,,,, +2009,2,14,4,30,2.0486722,,,,,,,,,,,,,, +2009,2,14,5,30,1.4943187,,,,,,,,,,,,,, +2009,2,14,6,30,0.6894371,,,,,,,,,,,,,, +2009,2,14,7,30,0.18580773,,,,,,,,,,,,,, +2009,2,14,8,30,0.75389075,,,,,,,,,,,,,, +2009,2,14,9,30,1.0010221,,,,,,,,,,,,,, +2009,2,14,10,30,0.9575555,,,,,,,,,,,,,, +2009,2,14,11,30,0.6176864,,,,,,,,,,,,,, +2009,2,14,12,30,0.12811275,,,,,,,,,,,,,, +2009,2,14,13,30,0.7684423,,,,,,,,,,,,,, +2009,2,14,14,30,1.3456485,,,,,,,,,,,,,, +2009,2,14,15,30,1.4825337,,,,,,,,,,,,,, +2009,2,14,16,30,1.233074,,,,,,,,,,,,,, +2009,2,14,17,30,0.70843995,,,,,,,,,,,,,, +2009,2,14,18,30,0.13974634,,,,,,,,,,,,,, +2009,2,14,19,30,1.1553205,,,,,,,,,,,,,, +2009,2,14,20,30,2.045651,,,,,,,,,,,,,, +2009,2,14,21,30,2.487583,,,,,,,,,,,,,, +2009,2,14,22,30,2.3975542,,,,,,,,,,,,,, +2009,2,14,23,30,1.981251,,,,,,,,,,,,,, +2009,2,15,0,30,1.3808391,,,,,,,,,,,,,, +2009,2,15,1,30,0.4284815,,,,,,,,,,,,,, +2009,2,15,2,30,0.9139252,,,,,,,,,,,,,, +2009,2,15,3,30,1.940575,,,,,,,,,,,,,, +2009,2,15,4,30,2.2640343,,,,,,,,,,,,,, +2009,2,15,5,30,2.0801177,,,,,,,,,,,,,, +2009,2,15,6,30,1.6175371,,,,,,,,,,,,,, +2009,2,15,7,30,0.9160677,,,,,,,,,,,,,, +2009,2,15,8,30,0.17563786,,,,,,,,,,,,,, +2009,2,15,9,30,0.43270865,,,,,,,,,,,,,, +2009,2,15,10,30,0.78514004,,,,,,,,,,,,,, +2009,2,15,11,30,0.84500295,,,,,,,,,,,,,, +2009,2,15,12,30,0.5988215,,,,,,,,,,,,,, +2009,2,15,13,30,0.13724954,,,,,,,,,,,,,, +2009,2,15,14,30,0.4789668,,,,,,,,,,,,,, +2009,2,15,15,30,0.9803573,,,,,,,,,,,,,, +2009,2,15,16,30,1.158314,,,,,,,,,,,,,, +2009,2,15,17,30,0.99833184,,,,,,,,,,,,,, +2009,2,15,18,30,0.5469923,,,,,,,,,,,,,, +2009,2,15,19,30,0.21106012,,,,,,,,,,,,,, +2009,2,15,20,30,1.1263273,,,,,,,,,,,,,, +2009,2,15,21,30,1.9292616,,,,,,,,,,,,,, +2009,2,15,22,30,2.3285167,,,,,,,,,,,,,, +2009,2,15,23,30,2.2601838,,,,,,,,,,,,,, +2009,2,16,0,30,1.9233735,,,,,,,,,,,,,, +2009,2,16,1,30,1.3913106,,,,,,,,,,,,,, +2009,2,16,2,30,0.44742274,,,,,,,,,,,,,, +2009,2,16,3,30,0.90180045,,,,,,,,,,,,,, +2009,2,16,4,30,1.8988769,,,,,,,,,,,,,, +2009,2,16,5,30,2.2421932,,,,,,,,,,,,,, +2009,2,16,6,30,2.152517,,,,,,,,,,,,,, +2009,2,16,7,30,1.7967637,,,,,,,,,,,,,, +2009,2,16,8,30,1.1804284,,,,,,,,,,,,,, +2009,2,16,9,30,0.45042577,,,,,,,,,,,,,, +2009,2,16,10,30,0.24197802,,,,,,,,,,,,,, +2009,2,16,11,30,0.7234051,,,,,,,,,,,,,, +2009,2,16,12,30,0.8631873,,,,,,,,,,,,,, +2009,2,16,13,30,0.70171994,,,,,,,,,,,,,, +2009,2,16,14,30,0.3587831,,,,,,,,,,,,,, +2009,2,16,15,30,0.15477943,,,,,,,,,,,,,, +2009,2,16,16,30,0.67786,,,,,,,,,,,,,, +2009,2,16,17,30,0.9667919,,,,,,,,,,,,,, +2009,2,16,18,30,0.9178542,,,,,,,,,,,,,, +2009,2,16,19,30,0.5432673,,,,,,,,,,,,,, +2009,2,16,20,30,0.14246835,,,,,,,,,,,,,, +2009,2,16,21,30,0.9950393,,,,,,,,,,,,,, +2009,2,16,22,30,1.7723564,,,,,,,,,,,,,, +2009,2,16,23,30,2.1871743,,,,,,,,,,,,,, +2009,2,17,0,30,2.1813664,,,,,,,,,,,,,, +2009,2,17,1,30,1.9344965,,,,,,,,,,,,,, +2009,2,17,2,30,1.4461027,,,,,,,,,,,,,, +2009,2,17,3,30,0.4776066,,,,,,,,,,,,,, +2009,2,17,4,30,0.8927167,,,,,,,,,,,,,, +2009,2,17,5,30,1.879268,,,,,,,,,,,,,, +2009,2,17,6,30,2.2694495,,,,,,,,,,,,,, +2009,2,17,7,30,2.2829037,,,,,,,,,,,,,, +2009,2,17,8,30,2.0047457,,,,,,,,,,,,,, +2009,2,17,9,30,1.4049995,,,,,,,,,,,,,, +2009,2,17,10,30,0.60442936,,,,,,,,,,,,,, +2009,2,17,11,30,0.22875056,,,,,,,,,,,,,, +2009,2,17,12,30,0.80559385,,,,,,,,,,,,,, +2009,2,17,13,30,0.98122865,,,,,,,,,,,,,, +2009,2,17,14,30,0.8916807,,,,,,,,,,,,,, +2009,2,17,15,30,0.6424376,,,,,,,,,,,,,, +2009,2,17,16,30,0.14222261,,,,,,,,,,,,,, +2009,2,17,17,30,0.5200984,,,,,,,,,,,,,, +2009,2,17,18,30,0.94546443,,,,,,,,,,,,,, +2009,2,17,19,30,0.98620975,,,,,,,,,,,,,, +2009,2,17,20,30,0.6563412,,,,,,,,,,,,,, +2009,2,17,21,30,0.022953551,,,,,,,,,,,,,, +2009,2,17,22,30,0.85260403,,,,,,,,,,,,,, +2009,2,17,23,30,1.6593058,,,,,,,,,,,,,, +2009,2,18,0,30,2.1189969,,,,,,,,,,,,,, +2009,2,18,1,30,2.1751854,,,,,,,,,,,,,, +2009,2,18,2,30,1.9891688,,,,,,,,,,,,,, +2009,2,18,3,30,1.4975802,,,,,,,,,,,,,, +2009,2,18,4,30,0.4696415,,,,,,,,,,,,,, +2009,2,18,5,30,0.93417436,,,,,,,,,,,,,, +2009,2,18,6,30,1.9260657,,,,,,,,,,,,,, +2009,2,18,7,30,2.3689597,,,,,,,,,,,,,, +2009,2,18,8,30,2.4498775,,,,,,,,,,,,,, +2009,2,18,9,30,2.17344,,,,,,,,,,,,,, +2009,2,18,10,30,1.5037194,,,,,,,,,,,,,, +2009,2,18,11,30,0.57457036,,,,,,,,,,,,,, +2009,2,18,12,30,0.3793599,,,,,,,,,,,,,, +2009,2,18,13,30,0.9871567,,,,,,,,,,,,,, +2009,2,18,14,30,1.1605414,,,,,,,,,,,,,, +2009,2,18,15,30,1.1252182,,,,,,,,,,,,,, +2009,2,18,16,30,0.9006874,,,,,,,,,,,,,, +2009,2,18,17,30,0.29230598,,,,,,,,,,,,,, +2009,2,18,18,30,0.54807884,,,,,,,,,,,,,, +2009,2,18,19,30,1.0781808,,,,,,,,,,,,,, +2009,2,18,20,30,1.1504195,,,,,,,,,,,,,, +2009,2,18,21,30,0.81221056,,,,,,,,,,,,,, +2009,2,18,22,30,0.13626638,,,,,,,,,,,,,, +2009,2,18,23,30,0.78346807,,,,,,,,,,,,,, +2009,2,19,0,30,1.6424663,,,,,,,,,,,,,, +2009,2,19,1,30,2.1318984,,,,,,,,,,,,,, +2009,2,19,2,30,2.2133687,,,,,,,,,,,,,, +2009,2,19,3,30,2.0400689,,,,,,,,,,,,,, +2009,2,19,4,30,1.4934875,,,,,,,,,,,,,, +2009,2,19,5,30,0.37892848,,,,,,,,,,,,,, +2009,2,19,6,30,1.0706812,,,,,,,,,,,,,, +2009,2,19,7,30,2.062153,,,,,,,,,,,,,, +2009,2,19,8,30,2.519881,,,,,,,,,,,,,, +2009,2,19,9,30,2.5878835,,,,,,,,,,,,,, +2009,2,19,10,30,2.2235558,,,,,,,,,,,,,, +2009,2,19,11,30,1.4241179,,,,,,,,,,,,,, +2009,2,19,12,30,0.3637473,,,,,,,,,,,,,, +2009,2,19,13,30,0.6506828,,,,,,,,,,,,,, +2009,2,19,14,30,1.2207973,,,,,,,,,,,,,, +2009,2,19,15,30,1.367381,,,,,,,,,,,,,, +2009,2,19,16,30,1.3512468,,,,,,,,,,,,,, +2009,2,19,17,30,1.0583417,,,,,,,,,,,,,, +2009,2,19,18,30,0.28133863,,,,,,,,,,,,,, +2009,2,19,19,30,0.7397178,,,,,,,,,,,,,, +2009,2,19,20,30,1.3028193,,,,,,,,,,,,,, +2009,2,19,21,30,1.3347265,,,,,,,,,,,,,, +2009,2,19,22,30,0.9339997,,,,,,,,,,,,,, +2009,2,19,23,30,0.18702447,,,,,,,,,,,,,, +2009,2,20,0,30,0.8288104,,,,,,,,,,,,,, +2009,2,20,1,30,1.7157431,,,,,,,,,,,,,, +2009,2,20,2,30,2.1842325,,,,,,,,,,,,,, +2009,2,20,3,30,2.244143,,,,,,,,,,,,,, +2009,2,20,4,30,2.0351024,,,,,,,,,,,,,, +2009,2,20,5,30,1.3815353,,,,,,,,,,,,,, +2009,2,20,6,30,0.20290935,,,,,,,,,,,,,, +2009,2,20,7,30,1.321158,,,,,,,,,,,,,, +2009,2,20,8,30,2.2603593,,,,,,,,,,,,,, +2009,2,20,9,30,2.6531205,,,,,,,,,,,,,, +2009,2,20,10,30,2.6177526,,,,,,,,,,,,,, +2009,2,20,11,30,2.104582,,,,,,,,,,,,,, +2009,2,20,12,30,1.1620033,,,,,,,,,,,,,, +2009,2,20,13,30,0.050220482,,,,,,,,,,,,,, +2009,2,20,14,30,0.99152154,,,,,,,,,,,,,, +2009,2,20,15,30,1.4710364,,,,,,,,,,,,,, +2009,2,20,16,30,1.5705982,,,,,,,,,,,,,, +2009,2,20,17,30,1.5161854,,,,,,,,,,,,,, +2009,2,20,18,30,1.0633028,,,,,,,,,,,,,, +2009,2,20,19,30,0.167285,,,,,,,,,,,,,, +2009,2,20,20,30,1.0333096,,,,,,,,,,,,,, +2009,2,20,21,30,1.5386305,,,,,,,,,,,,,, +2009,2,20,22,30,1.4703939,,,,,,,,,,,,,, +2009,2,20,23,30,0.9676062,,,,,,,,,,,,,, +2009,2,21,0,30,0.1443982,,,,,,,,,,,,,, +2009,2,21,1,30,0.9667816,,,,,,,,,,,,,, +2009,2,21,2,30,1.8200601,,,,,,,,,,,,,, +2009,2,21,3,30,2.212502,,,,,,,,,,,,,, +2009,2,21,4,30,2.215807,,,,,,,,,,,,,, +2009,2,21,5,30,1.9237871,,,,,,,,,,,,,, +2009,2,21,6,30,1.1164365,,,,,,,,,,,,,, +2009,2,21,7,30,0.29959375,,,,,,,,,,,,,, +2009,2,21,8,30,1.6474009,,,,,,,,,,,,,, +2009,2,21,9,30,2.4412177,,,,,,,,,,,,,, +2009,2,21,10,30,2.685511,,,,,,,,,,,,,, +2009,2,21,11,30,2.488467,,,,,,,,,,,,,, +2009,2,21,12,30,1.8098278,,,,,,,,,,,,,, +2009,2,21,13,30,0.7447232,,,,,,,,,,,,,, +2009,2,21,14,30,0.4570633,,,,,,,,,,,,,, +2009,2,21,15,30,1.3571827,,,,,,,,,,,,,, +2009,2,21,16,30,1.7098669,,,,,,,,,,,,,, +2009,2,21,17,30,1.737269,,,,,,,,,,,,,, +2009,2,21,18,30,1.5758297,,,,,,,,,,,,,, +2009,2,21,19,30,0.9031308,,,,,,,,,,,,,, +2009,2,21,20,30,0.34309688,,,,,,,,,,,,,, +2009,2,21,21,30,1.3472359,,,,,,,,,,,,,, +2009,2,21,22,30,1.7173069,,,,,,,,,,,,,, +2009,2,21,23,30,1.517756,,,,,,,,,,,,,, +2009,2,22,0,30,0.8991782,,,,,,,,,,,,,, +2009,2,22,1,30,0.13158502,,,,,,,,,,,,,, +2009,2,22,2,30,1.1289527,,,,,,,,,,,,,, +2009,2,22,3,30,1.8808749,,,,,,,,,,,,,, +2009,2,22,4,30,2.1652973,,,,,,,,,,,,,, +2009,2,22,5,30,2.0879998,,,,,,,,,,,,,, +2009,2,22,6,30,1.6652973,,,,,,,,,,,,,, +2009,2,22,7,30,0.6877708,,,,,,,,,,,,,, +2009,2,22,8,30,0.75770205,,,,,,,,,,,,,, +2009,2,22,9,30,1.9529938,,,,,,,,,,,,,, +2009,2,22,10,30,2.5125217,,,,,,,,,,,,,, +2009,2,22,11,30,2.565786,,,,,,,,,,,,,, +2009,2,22,12,30,2.1938365,,,,,,,,,,,,,, +2009,2,22,13,30,1.3621162,,,,,,,,,,,,,, +2009,2,22,14,30,0.2159919,,,,,,,,,,,,,, +2009,2,22,15,30,0.9555958,,,,,,,,,,,,,, +2009,2,22,16,30,1.7050121,,,,,,,,,,,,,, +2009,2,22,17,30,1.9080414,,,,,,,,,,,,,, +2009,2,22,18,30,1.8338823,,,,,,,,,,,,,, +2009,2,22,19,30,1.50482,,,,,,,,,,,,,, +2009,2,22,20,30,0.6057044,,,,,,,,,,,,,, +2009,2,22,21,30,0.71421766,,,,,,,,,,,,,, +2009,2,22,22,30,1.6093895,,,,,,,,,,,,,, +2009,2,22,23,30,1.8045921,,,,,,,,,,,,,, +2009,2,23,0,30,1.4751229,,,,,,,,,,,,,, +2009,2,23,1,30,0.7564157,,,,,,,,,,,,,, +2009,2,23,2,30,0.29330388,,,,,,,,,,,,,, +2009,2,23,3,30,1.2410543,,,,,,,,,,,,,, +2009,2,23,4,30,1.8491427,,,,,,,,,,,,,, +2009,2,23,5,30,2.0189924,,,,,,,,,,,,,, +2009,2,23,6,30,1.8374761,,,,,,,,,,,,,, +2009,2,23,7,30,1.2525038,,,,,,,,,,,,,, +2009,2,23,8,30,0.1849225,,,,,,,,,,,,,, +2009,2,23,9,30,1.213533,,,,,,,,,,,,,, +2009,2,23,10,30,2.1294284,,,,,,,,,,,,,, +2009,2,23,11,30,2.4217572,,,,,,,,,,,,,, +2009,2,23,12,30,2.2930765,,,,,,,,,,,,,, +2009,2,23,13,30,1.7584149,,,,,,,,,,,,,, +2009,2,23,14,30,0.7985872,,,,,,,,,,,,,, +2009,2,23,15,30,0.38772863,,,,,,,,,,,,,, +2009,2,23,16,30,1.4381962,,,,,,,,,,,,,, +2009,2,23,17,30,1.9893013,,,,,,,,,,,,,, +2009,2,23,18,30,2.0336707,,,,,,,,,,,,,, +2009,2,23,19,30,1.8304646,,,,,,,,,,,,,, +2009,2,23,20,30,1.2991731,,,,,,,,,,,,,, +2009,2,23,21,30,0.24850304,,,,,,,,,,,,,, +2009,2,23,22,30,1.0779603,,,,,,,,,,,,,, +2009,2,23,23,30,1.781044,,,,,,,,,,,,,, +2009,2,24,0,30,1.8050756,,,,,,,,,,,,,, +2009,2,24,1,30,1.3716216,,,,,,,,,,,,,, +2009,2,24,2,30,0.5883817,,,,,,,,,,,,,, +2009,2,24,3,30,0.43714467,,,,,,,,,,,,,, +2009,2,24,4,30,1.261289,,,,,,,,,,,,,, +2009,2,24,5,30,1.7171564,,,,,,,,,,,,,, +2009,2,24,6,30,1.7765157,,,,,,,,,,,,,, +2009,2,24,7,30,1.4717448,,,,,,,,,,,,,, +2009,2,24,8,30,0.7384476,,,,,,,,,,,,,, +2009,2,24,9,30,0.42300949,,,,,,,,,,,,,, +2009,2,24,10,30,1.5318706,,,,,,,,,,,,,, +2009,2,24,11,30,2.116695,,,,,,,,,,,,,, +2009,2,24,12,30,2.177333,,,,,,,,,,,,,, +2009,2,24,13,30,1.9001496,,,,,,,,,,,,,, +2009,2,24,14,30,1.2200848,,,,,,,,,,,,,, +2009,2,24,15,30,0.1783504,,,,,,,,,,,,,, +2009,2,24,16,30,0.9668232,,,,,,,,,,,,,, +2009,2,24,17,30,1.8349205,,,,,,,,,,,,,, +2009,2,24,18,30,2.1679165,,,,,,,,,,,,,, +2009,2,24,19,30,2.0575252,,,,,,,,,,,,,, +2009,2,24,20,30,1.706968,,,,,,,,,,,,,, +2009,2,24,21,30,0.9774006,,,,,,,,,,,,,, +2009,2,24,22,30,0.2651462,,,,,,,,,,,,,, +2009,2,24,23,30,1.3756148,,,,,,,,,,,,,, +2009,2,25,0,30,1.8622271,,,,,,,,,,,,,, +2009,2,25,1,30,1.7500349,,,,,,,,,,,,,, +2009,2,25,2,30,1.2452309,,,,,,,,,,,,,, +2009,2,25,3,30,0.43565255,,,,,,,,,,,,,, +2009,2,25,4,30,0.5186776,,,,,,,,,,,,,, +2009,2,25,5,30,1.1902655,,,,,,,,,,,,,, +2009,2,25,6,30,1.5085977,,,,,,,,,,,,,, +2009,2,25,7,30,1.4654243,,,,,,,,,,,,,, +2009,2,25,8,30,1.042371,,,,,,,,,,,,,, +2009,2,25,9,30,0.24089126,,,,,,,,,,,,,, +2009,2,25,10,30,0.82898283,,,,,,,,,,,,,, +2009,2,25,11,30,1.6403759,,,,,,,,,,,,,, +2009,2,25,12,30,1.9291875,,,,,,,,,,,,,, +2009,2,25,13,30,1.8277725,,,,,,,,,,,,,, +2009,2,25,14,30,1.4296916,,,,,,,,,,,,,, +2009,2,25,15,30,0.63032967,,,,,,,,,,,,,, +2009,2,25,16,30,0.44279432,,,,,,,,,,,,,, +2009,2,25,17,30,1.4494134,,,,,,,,,,,,,, +2009,2,25,18,30,2.0902019,,,,,,,,,,,,,, +2009,2,25,19,30,2.2148006,,,,,,,,,,,,,, +2009,2,25,20,30,1.9628865,,,,,,,,,,,,,, +2009,2,25,21,30,1.4650408,,,,,,,,,,,,,, +2009,2,25,22,30,0.5834739,,,,,,,,,,,,,, +2009,2,25,23,30,0.6506576,,,,,,,,,,,,,, +2009,2,26,0,30,1.5886309,,,,,,,,,,,,,, +2009,2,26,1,30,1.8797365,,,,,,,,,,,,,, +2009,2,26,2,30,1.6737636,,,,,,,,,,,,,, +2009,2,26,3,30,1.119545,,,,,,,,,,,,,, +2009,2,26,4,30,0.31510252,,,,,,,,,,,,,, +2009,2,26,5,30,0.5346471,,,,,,,,,,,,,, +2009,2,26,6,30,1.0545623,,,,,,,,,,,,,, +2009,2,26,7,30,1.263742,,,,,,,,,,,,,, +2009,2,26,8,30,1.1370519,,,,,,,,,,,,,, +2009,2,26,9,30,0.634061,,,,,,,,,,,,,, +2009,2,26,10,30,0.22170015,,,,,,,,,,,,,, +2009,2,26,11,30,1.0348392,,,,,,,,,,,,,, +2009,2,26,12,30,1.5523744,,,,,,,,,,,,,, +2009,2,26,13,30,1.6321642,,,,,,,,,,,,,, +2009,2,26,14,30,1.4289343,,,,,,,,,,,,,, +2009,2,26,15,30,0.9286173,,,,,,,,,,,,,, +2009,2,26,16,30,0.07197293,,,,,,,,,,,,,, +2009,2,26,17,30,0.954487,,,,,,,,,,,,,, +2009,2,26,18,30,1.7737386,,,,,,,,,,,,,, +2009,2,26,19,30,2.1832197,,,,,,,,,,,,,, +2009,2,26,20,30,2.130494,,,,,,,,,,,,,, +2009,2,26,21,30,1.7594578,,,,,,,,,,,,,, +2009,2,26,22,30,1.1396253,,,,,,,,,,,,,, +2009,2,26,23,30,0.20473416,,,,,,,,,,,,,, +2009,2,27,0,30,0.9882145,,,,,,,,,,,,,, +2009,2,27,1,30,1.7261091,,,,,,,,,,,,,, +2009,2,27,2,30,1.8644314,,,,,,,,,,,,,, +2009,2,27,3,30,1.5933188,,,,,,,,,,,,,, +2009,2,27,4,30,0.999936,,,,,,,,,,,,,, +2009,2,27,5,30,0.2288095,,,,,,,,,,,,,, +2009,2,27,6,30,0.49508435,,,,,,,,,,,,,, +2009,2,27,7,30,0.8893072,,,,,,,,,,,,,, +2009,2,27,8,30,1.0306387,,,,,,,,,,,,,, +2009,2,27,9,30,0.852575,,,,,,,,,,,,,, +2009,2,27,10,30,0.32388625,,,,,,,,,,,,,, +2009,2,27,11,30,0.4262808,,,,,,,,,,,,,, +2009,2,27,12,30,1.0485591,,,,,,,,,,,,,, +2009,2,27,13,30,1.3412412,,,,,,,,,,,,,, +2009,2,27,14,30,1.2997953,,,,,,,,,,,,,, +2009,2,27,15,30,1.0301106,,,,,,,,,,,,,, +2009,2,27,16,30,0.4526915,,,,,,,,,,,,,, +2009,2,27,17,30,0.43011984,,,,,,,,,,,,,, +2009,2,27,18,30,1.3124808,,,,,,,,,,,,,, +2009,2,27,19,30,1.9264295,,,,,,,,,,,,,, +2009,2,27,20,30,2.1349561,,,,,,,,,,,,,, +2009,2,27,21,30,1.9483259,,,,,,,,,,,,,, +2009,2,27,22,30,1.4927502,,,,,,,,,,,,,, +2009,2,27,23,30,0.7945939,,,,,,,,,,,,,, +2009,2,28,0,30,0.24345593,,,,,,,,,,,,,, +2009,2,28,1,30,1.2501581,,,,,,,,,,,,,, +2009,2,28,2,30,1.8077549,,,,,,,,,,,,,, +2009,2,28,3,30,1.8330383,,,,,,,,,,,,,, +2009,2,28,4,30,1.5101793,,,,,,,,,,,,,, +2009,2,28,5,30,0.89266443,,,,,,,,,,,,,, +2009,2,28,6,30,0.17976828,,,,,,,,,,,,,, +2009,2,28,7,30,0.41312718,,,,,,,,,,,,,, +2009,2,28,8,30,0.7328533,,,,,,,,,,,,,, +2009,2,28,9,30,0.8537513,,,,,,,,,,,,,, +2009,2,28,10,30,0.6535912,,,,,,,,,,,,,, +2009,2,28,11,30,0.14713427,,,,,,,,,,,,,, +2009,2,28,12,30,0.49090776,,,,,,,,,,,,,, +2009,2,28,13,30,0.9387353,,,,,,,,,,,,,, +2009,2,28,14,30,1.0920053,,,,,,,,,,,,,, +2009,2,28,15,30,0.99157363,,,,,,,,,,,,,, +2012,2,28,16,30,0.6772726,,,,,,,,,,,,,, +2012,2,28,17,30,0.06882127,,,,,,,,,,,,,, +2012,2,28,18,30,0.7756367,,,,,,,,,,,,,, +2012,2,28,19,30,1.5102265,,,,,,,,,,,,,, +2012,2,28,20,30,1.9422913,,,,,,,,,,,,,, +2012,2,28,21,30,2.0011256,,,,,,,,,,,,,, +2012,2,28,22,30,1.7315786,,,,,,,,,,,,,, +2012,2,28,23,30,1.2329422,,,,,,,,,,,,,, +2012,3,1,0,30,0.4965101,,,,,,,,,,,,,, +2012,3,1,1,30,0.53454,,,,,,,,,,,,,, +2012,3,1,2,30,1.4393576,,,,,,,,,,,,,, +2012,3,1,3,30,1.8490651,,,,,,,,,,,,,, +2012,3,1,4,30,1.7912257,,,,,,,,,,,,,, +2012,3,1,5,30,1.4328352,,,,,,,,,,,,,, +2012,3,1,6,30,0.82085264,,,,,,,,,,,,,, +2012,3,1,7,30,0.17801908,,,,,,,,,,,,,, +2012,3,1,8,30,0.31258932,,,,,,,,,,,,,, +2012,3,1,9,30,0.62357587,,,,,,,,,,,,,, +2012,3,1,10,30,0.755792,,,,,,,,,,,,,, +2012,3,1,11,30,0.5423816,,,,,,,,,,,,,, +2012,3,1,12,30,0.11288838,,,,,,,,,,,,,, +2012,3,1,13,30,0.456201,,,,,,,,,,,,,, +2012,3,1,14,30,0.78304064,,,,,,,,,,,,,, +2012,3,1,15,30,0.87119496,,,,,,,,,,,,,, +2012,3,1,16,30,0.7514671,,,,,,,,,,,,,, +2012,3,1,17,30,0.41266012,,,,,,,,,,,,,, +2012,3,1,18,30,0.23182404,,,,,,,,,,,,,, +2012,3,1,19,30,0.98154175,,,,,,,,,,,,,, +2012,3,1,20,30,1.5860357,,,,,,,,,,,,,, +2012,3,1,21,30,1.88565,,,,,,,,,,,,,, +2012,3,1,22,30,1.8551248,,,,,,,,,,,,,, +2012,3,1,23,30,1.5529054,,,,,,,,,,,,,, +2012,3,2,0,30,1.0404342,,,,,,,,,,,,,, +2012,3,2,1,30,0.2866094,,,,,,,,,,,,,, +2012,3,2,2,30,0.7591217,,,,,,,,,,,,,, +2012,3,2,3,30,1.569335,,,,,,,,,,,,,, +2012,3,2,4,30,1.8633652,,,,,,,,,,,,,, +2012,3,2,5,30,1.7543417,,,,,,,,,,,,,, +2012,3,2,6,30,1.390489,,,,,,,,,,,,,, +2012,3,2,7,30,0.81129456,,,,,,,,,,,,,, +2012,3,2,8,30,0.22619018,,,,,,,,,,,,,, +2012,3,2,9,30,0.23434487,,,,,,,,,,,,,, +2012,3,2,10,30,0.5891582,,,,,,,,,,,,,, +2012,3,2,11,30,0.7298665,,,,,,,,,,,,,, +2012,3,2,12,30,0.49658614,,,,,,,,,,,,,, +2012,3,2,13,30,0.10794735,,,,,,,,,,,,,, +2012,3,2,14,30,0.3711514,,,,,,,,,,,,,, +2012,3,2,15,30,0.6399809,,,,,,,,,,,,,, +2012,3,2,16,30,0.72392976,,,,,,,,,,,,,, +2012,3,2,17,30,0.6088655,,,,,,,,,,,,,, +2012,3,2,18,30,0.2602661,,,,,,,,,,,,,, +2012,3,2,19,30,0.3909182,,,,,,,,,,,,,, +2012,3,2,20,30,1.0795399,,,,,,,,,,,,,, +2012,3,2,21,30,1.5986814,,,,,,,,,,,,,, +2012,3,2,22,30,1.826039,,,,,,,,,,,,,, +2012,3,2,23,30,1.761838,,,,,,,,,,,,,, +2012,3,3,0,30,1.4591944,,,,,,,,,,,,,, +2012,3,3,1,30,0.9325894,,,,,,,,,,,,,, +2012,3,3,2,30,0.1755453,,,,,,,,,,,,,, +2012,3,3,3,30,0.9293742,,,,,,,,,,,,,, +2012,3,3,4,30,1.6618378,,,,,,,,,,,,,, +2012,3,3,5,30,1.8768774,,,,,,,,,,,,,, +2012,3,3,6,30,1.7565876,,,,,,,,,,,,,, +2012,3,3,7,30,1.4132141,,,,,,,,,,,,,, +2012,3,3,8,30,0.86113006,,,,,,,,,,,,,, +2012,3,3,9,30,0.28449455,,,,,,,,,,,,,, +2012,3,3,10,30,0.22640328,,,,,,,,,,,,,, +2012,3,3,11,30,0.63756365,,,,,,,,,,,,,, +2012,3,3,12,30,0.75720155,,,,,,,,,,,,,, +2012,3,3,13,30,0.5020533,,,,,,,,,,,,,, +2012,3,3,14,30,0.12115077,,,,,,,,,,,,,, +2012,3,3,15,30,0.26979533,,,,,,,,,,,,,, +2012,3,3,16,30,0.551372,,,,,,,,,,,,,, +2012,3,3,17,30,0.67781174,,,,,,,,,,,,,, +2012,3,3,18,30,0.5707756,,,,,,,,,,,,,, +2012,3,3,19,30,0.20553544,,,,,,,,,,,,,, +2012,3,3,20,30,0.45383042,,,,,,,,,,,,,, +2012,3,3,21,30,1.1154541,,,,,,,,,,,,,, +2012,3,3,22,30,1.6047636,,,,,,,,,,,,,, +2012,3,3,23,30,1.8142328,,,,,,,,,,,,,, +2012,3,4,0,30,1.7490511,,,,,,,,,,,,,, +2012,3,4,1,30,1.4469445,,,,,,,,,,,,,, +2012,3,4,2,30,0.8812478,,,,,,,,,,,,,, +2012,3,4,3,30,0.13714275,,,,,,,,,,,,,, +2012,3,4,4,30,1.0768327,,,,,,,,,,,,,, +2012,3,4,5,30,1.7534434,,,,,,,,,,,,,, +2012,3,4,6,30,1.9310205,,,,,,,,,,,,,, +2012,3,4,7,30,1.8274987,,,,,,,,,,,,,, +2012,3,4,8,30,1.4942263,,,,,,,,,,,,,, +2012,3,4,9,30,0.9196235,,,,,,,,,,,,,, +2012,3,4,10,30,0.28180203,,,,,,,,,,,,,, +2012,3,4,11,30,0.32432568,,,,,,,,,,,,,, +2012,3,4,12,30,0.764077,,,,,,,,,,,,,, +2012,3,4,13,30,0.83295375,,,,,,,,,,,,,, +2012,3,4,14,30,0.56833625,,,,,,,,,,,,,, +2012,3,4,15,30,0.21457429,,,,,,,,,,,,,, +2012,3,4,16,30,0.18419541,,,,,,,,,,,,,, +2012,3,4,17,30,0.552157,,,,,,,,,,,,,, +2012,3,4,18,30,0.7410742,,,,,,,,,,,,,, +2012,3,4,19,30,0.6246828,,,,,,,,,,,,,, +2012,3,4,20,30,0.21710202,,,,,,,,,,,,,, +2012,3,4,21,30,0.4521287,,,,,,,,,,,,,, +2012,3,4,22,30,1.1334685,,,,,,,,,,,,,, +2012,3,4,23,30,1.6427971,,,,,,,,,,,,,, +2012,3,5,0,30,1.863301,,,,,,,,,,,,,, +2012,3,5,1,30,1.7959397,,,,,,,,,,,,,, +2012,3,5,2,30,1.4718239,,,,,,,,,,,,,, +2012,3,5,3,30,0.8379847,,,,,,,,,,,,,, +2012,3,5,4,30,0.20790425,,,,,,,,,,,,,, +2012,3,5,5,30,1.2450088,,,,,,,,,,,,,, +2012,3,5,6,30,1.8904159,,,,,,,,,,,,,, +2012,3,5,7,30,2.0551903,,,,,,,,,,,,,, +2012,3,5,8,30,1.9543908,,,,,,,,,,,,,, +2012,3,5,9,30,1.575148,,,,,,,,,,,,,, +2012,3,5,10,30,0.9080809,,,,,,,,,,,,,, +2012,3,5,11,30,0.161942,,,,,,,,,,,,,, +2012,3,5,12,30,0.5422222,,,,,,,,,,,,,, +2012,3,5,13,30,0.96539754,,,,,,,,,,,,,, +2012,3,5,14,30,0.97143984,,,,,,,,,,,,,, +2012,3,5,15,30,0.71073556,,,,,,,,,,,,,, +2012,3,5,16,30,0.35711476,,,,,,,,,,,,,, +2012,3,5,17,30,0.15299353,,,,,,,,,,,,,, +2012,3,5,18,30,0.6672586,,,,,,,,,,,,,, +2012,3,5,19,30,0.90561426,,,,,,,,,,,,,, +2012,3,5,20,30,0.75260663,,,,,,,,,,,,,, +2012,3,5,21,30,0.28285772,,,,,,,,,,,,,, +2012,3,5,22,30,0.422683,,,,,,,,,,,,,, +2012,3,5,23,30,1.1680878,,,,,,,,,,,,,, +2012,3,6,0,30,1.7222227,,,,,,,,,,,,,, +2012,3,6,1,30,1.946353,,,,,,,,,,,,,, +2012,3,6,2,30,1.8525717,,,,,,,,,,,,,, +2012,3,6,3,30,1.482499,,,,,,,,,,,,,, +2012,3,6,4,30,0.7579857,,,,,,,,,,,,,, +2012,3,6,5,30,0.37988874,,,,,,,,,,,,,, +2012,3,6,6,30,1.4786699,,,,,,,,,,,,,, +2012,3,6,7,30,2.0984557,,,,,,,,,,,,,, +2012,3,6,8,30,2.2304103,,,,,,,,,,,,,, +2012,3,6,9,30,2.072246,,,,,,,,,,,,,, +2012,3,6,10,30,1.573441,,,,,,,,,,,,,, +2012,3,6,11,30,0.76073515,,,,,,,,,,,,,, +2012,3,6,12,30,0.14662133,,,,,,,,,,,,,, +2012,3,6,13,30,0.8763998,,,,,,,,,,,,,, +2012,3,6,14,30,1.240092,,,,,,,,,,,,,, +2012,3,6,15,30,1.1830864,,,,,,,,,,,,,, +2012,3,6,16,30,0.91506606,,,,,,,,,,,,,, +2012,3,6,17,30,0.4804941,,,,,,,,,,,,,, +2012,3,6,18,30,0.22720525,,,,,,,,,,,,,, +2012,3,6,19,30,0.90400964,,,,,,,,,,,,,, +2012,3,6,20,30,1.1510473,,,,,,,,,,,,,, +2012,3,6,21,30,0.9311225,,,,,,,,,,,,,, +2012,3,6,22,30,0.38458115,,,,,,,,,,,,,, +2012,3,6,23,30,0.40371752,,,,,,,,,,,,,, +2012,3,7,0,30,1.2353836,,,,,,,,,,,,,, +2012,3,7,1,30,1.8226048,,,,,,,,,,,,,, +2012,3,7,2,30,2.01798,,,,,,,,,,,,,, +2012,3,7,3,30,1.8757093,,,,,,,,,,,,,, +2012,3,7,4,30,1.4446136,,,,,,,,,,,,,, +2012,3,7,5,30,0.6056324,,,,,,,,,,,,,, +2012,3,7,6,30,0.65411854,,,,,,,,,,,,,, +2012,3,7,7,30,1.7938207,,,,,,,,,,,,,, +2012,3,7,8,30,2.3483331,,,,,,,,,,,,,, +2012,3,7,9,30,2.3846965,,,,,,,,,,,,,, +2012,3,7,10,30,2.0972292,,,,,,,,,,,,,, +2012,3,7,11,30,1.4271758,,,,,,,,,,,,,, +2012,3,7,12,30,0.45058092,,,,,,,,,,,,,, +2012,3,7,13,30,0.5643447,,,,,,,,,,,,,, +2012,3,7,14,30,1.305121,,,,,,,,,,,,,, +2012,3,7,15,30,1.5721273,,,,,,,,,,,,,, +2012,3,7,16,30,1.4457319,,,,,,,,,,,,,, +2012,3,7,17,30,1.1234664,,,,,,,,,,,,,, +2012,3,7,18,30,0.51038563,,,,,,,,,,,,,, +2012,3,7,19,30,0.4542428,,,,,,,,,,,,,, +2012,3,7,20,30,1.246632,,,,,,,,,,,,,, +2012,3,7,21,30,1.4428942,,,,,,,,,,,,,, +2012,3,7,22,30,1.1272898,,,,,,,,,,,,,, +2012,3,7,23,30,0.4869942,,,,,,,,,,,,,, +2012,3,8,0,30,0.42038924,,,,,,,,,,,,,, +2012,3,8,1,30,1.3273987,,,,,,,,,,,,,, +2012,3,8,2,30,1.9086596,,,,,,,,,,,,,, +2012,3,8,3,30,2.0447736,,,,,,,,,,,,,, +2012,3,8,4,30,1.8470827,,,,,,,,,,,,,, +2012,3,8,5,30,1.3372023,,,,,,,,,,,,,, +2012,3,8,6,30,0.35707706,,,,,,,,,,,,,, +2012,3,8,7,30,1.0313057,,,,,,,,,,,,,, +2012,3,8,8,30,2.1475534,,,,,,,,,,,,,, +2012,3,8,9,30,2.557211,,,,,,,,,,,,,, +2012,3,8,10,30,2.432898,,,,,,,,,,,,,, +2012,3,8,11,30,1.9739033,,,,,,,,,,,,,, +2012,3,8,12,30,1.1179464,,,,,,,,,,,,,, +2012,3,8,13,30,0.05941243,,,,,,,,,,,,,, +2012,3,8,14,30,1.1035268,,,,,,,,,,,,,, +2012,3,8,15,30,1.7816918,,,,,,,,,,,,,, +2012,3,8,16,30,1.9170387,,,,,,,,,,,,,, +2012,3,8,17,30,1.7002728,,,,,,,,,,,,,, +2012,3,8,18,30,1.2536577,,,,,,,,,,,,,, +2012,3,8,19,30,0.38713843,,,,,,,,,,,,,, +2012,3,8,20,30,0.82777584,,,,,,,,,,,,,, +2012,3,8,21,30,1.6507728,,,,,,,,,,,,,, +2012,3,8,22,30,1.734119,,,,,,,,,,,,,, +2012,3,8,23,30,1.3030411,,,,,,,,,,,,,, +2012,3,9,0,30,0.55598146,,,,,,,,,,,,,, +2012,3,9,1,30,0.47241765,,,,,,,,,,,,,, +2012,3,9,2,30,1.418847,,,,,,,,,,,,,, +2012,3,9,3,30,1.9516884,,,,,,,,,,,,,, +2012,3,9,4,30,2.017101,,,,,,,,,,,,,, +2012,3,9,5,30,1.76063,,,,,,,,,,,,,, +2012,3,9,6,30,1.1417124,,,,,,,,,,,,,, +2012,3,9,7,30,0.12031354,,,,,,,,,,,,,, +2012,3,9,8,30,1.458571,,,,,,,,,,,,,, +2012,3,9,9,30,2.444246,,,,,,,,,,,,,, +2012,3,9,10,30,2.6350565,,,,,,,,,,,,,, +2012,3,9,11,30,2.3266957,,,,,,,,,,,,,, +2012,3,9,12,30,1.6949877,,,,,,,,,,,,,, +2012,3,9,13,30,0.6643318,,,,,,,,,,,,,, +2012,3,9,14,30,0.60672325,,,,,,,,,,,,,, +2012,3,9,15,30,1.6915948,,,,,,,,,,,,,, +2012,3,9,16,30,2.2350354,,,,,,,,,,,,,, +2012,3,9,17,30,2.2102,,,,,,,,,,,,,, +2012,3,9,18,30,1.8740742,,,,,,,,,,,,,, +2012,3,9,19,30,1.2356921,,,,,,,,,,,,,, +2012,3,9,20,30,0.1495458,,,,,,,,,,,,,, +2012,3,9,21,30,1.2998946,,,,,,,,,,,,,, +2012,3,9,22,30,2.0480058,,,,,,,,,,,,,, +2012,3,9,23,30,1.9756769,,,,,,,,,,,,,, +2012,3,10,0,30,1.4283082,,,,,,,,,,,,,, +2012,3,10,1,30,0.5763563,,,,,,,,,,,,,, +2012,3,10,2,30,0.541397,,,,,,,,,,,,,, +2012,3,10,3,30,1.4811857,,,,,,,,,,,,,, +2012,3,10,4,30,1.9380335,,,,,,,,,,,,,, +2012,3,10,5,30,1.934185,,,,,,,,,,,,,, +2012,3,10,6,30,1.6049906,,,,,,,,,,,,,, +2012,3,10,7,30,0.8518673,,,,,,,,,,,,,, +2012,3,10,8,30,0.44839948,,,,,,,,,,,,,, +2012,3,10,9,30,1.8341882,,,,,,,,,,,,,, +2012,3,10,10,30,2.5855167,,,,,,,,,,,,,, +2012,3,10,11,30,2.5383985,,,,,,,,,,,,,, +2012,3,10,12,30,2.0719523,,,,,,,,,,,,,, +2012,3,10,13,30,1.2880547,,,,,,,,,,,,,, +2012,3,10,14,30,0.12841977,,,,,,,,,,,,,, +2012,3,10,15,30,1.2348217,,,,,,,,,,,,,, +2012,3,10,16,30,2.2385917,,,,,,,,,,,,,, +2012,3,10,17,30,2.5888581,,,,,,,,,,,,,, +2012,3,10,18,30,2.3925118,,,,,,,,,,,,,, +2012,3,10,19,30,1.9130113,,,,,,,,,,,,,, +2012,3,10,20,30,1.0458108,,,,,,,,,,,,,, +2012,3,10,21,30,0.39239925,,,,,,,,,,,,,, +2012,3,10,22,30,1.7812904,,,,,,,,,,,,,, +2012,3,10,23,30,2.3660805,,,,,,,,,,,,,, +2012,3,11,0,30,2.1345282,,,,,,,,,,,,,, +2012,3,11,1,30,1.4940523,,,,,,,,,,,,,, +2012,3,11,2,30,0.5571423,,,,,,,,,,,,,, +2012,3,11,3,30,0.60195184,,,,,,,,,,,,,, +2012,3,11,4,30,1.4905878,,,,,,,,,,,,,, +2012,3,11,5,30,1.8600432,,,,,,,,,,,,,, +2012,3,11,6,30,1.7884171,,,,,,,,,,,,,, +2012,3,11,7,30,1.3715812,,,,,,,,,,,,,, +2012,3,11,8,30,0.49926376,,,,,,,,,,,,,, +2012,3,11,9,30,0.83611137,,,,,,,,,,,,,, +2012,3,11,10,30,2.0537896,,,,,,,,,,,,,, +2012,3,11,11,30,2.5264926,,,,,,,,,,,,,, +2012,3,11,12,30,2.2869444,,,,,,,,,,,,,, +2012,3,11,13,30,1.7092812,,,,,,,,,,,,,, +2012,3,11,14,30,0.79852635,,,,,,,,,,,,,, +2012,3,11,15,30,0.5047683,,,,,,,,,,,,,, +2012,3,11,16,30,1.8168957,,,,,,,,,,,,,, +2012,3,11,17,30,2.6556306,,,,,,,,,,,,,, +2012,3,11,18,30,2.7891226,,,,,,,,,,,,,, +2012,3,11,19,30,2.4332528,,,,,,,,,,,,,, +2012,3,11,20,30,1.8044853,,,,,,,,,,,,,, +2012,3,11,21,30,0.723105,,,,,,,,,,,,,, +2012,3,11,22,30,0.86259776,,,,,,,,,,,,,, +2012,3,11,23,30,2.1729405,,,,,,,,,,,,,, +2012,3,12,0,30,2.5577278,,,,,,,,,,,,,, +2012,3,12,1,30,2.2065825,,,,,,,,,,,,,, +2012,3,12,2,30,1.511862,,,,,,,,,,,,,, +2012,3,12,3,30,0.5222548,,,,,,,,,,,,,, +2012,3,12,4,30,0.626153,,,,,,,,,,,,,, +2012,3,12,5,30,1.4269654,,,,,,,,,,,,,, +2012,3,12,6,30,1.7092953,,,,,,,,,,,,,, +2012,3,12,7,30,1.574973,,,,,,,,,,,,,, +2012,3,12,8,30,1.0808357,,,,,,,,,,,,,, +2012,3,12,9,30,0.17651805,,,,,,,,,,,,,, +2012,3,12,10,30,1.0957999,,,,,,,,,,,,,, +2012,3,12,11,30,2.0652804,,,,,,,,,,,,,, +2012,3,12,12,30,2.2934465,,,,,,,,,,,,,, +2012,3,12,13,30,1.9388978,,,,,,,,,,,,,, +2012,3,12,14,30,1.2899082,,,,,,,,,,,,,, +2012,3,12,15,30,0.29349738,,,,,,,,,,,,,, +2012,3,12,16,30,1.0497911,,,,,,,,,,,,,, +2012,3,12,17,30,2.2575943,,,,,,,,,,,,,, +2012,3,12,18,30,2.884447,,,,,,,,,,,,,, +2012,3,12,19,30,2.8203397,,,,,,,,,,,,,, +2012,3,12,20,30,2.3391051,,,,,,,,,,,,,, +2012,3,12,21,30,1.5849499,,,,,,,,,,,,,, +2012,3,12,22,30,0.36402246,,,,,,,,,,,,,, +2012,3,12,23,30,1.2617892,,,,,,,,,,,,,, +2012,3,13,0,30,2.4080863,,,,,,,,,,,,,, +2012,3,13,1,30,2.6183107,,,,,,,,,,,,,, +2012,3,13,2,30,2.211536,,,,,,,,,,,,,, +2012,3,13,3,30,1.501523,,,,,,,,,,,,,, +2012,3,13,4,30,0.49983206,,,,,,,,,,,,,, +2012,3,13,5,30,0.58550334,,,,,,,,,,,,,, +2012,3,13,6,30,1.2771626,,,,,,,,,,,,,, +2012,3,13,7,30,1.4896022,,,,,,,,,,,,,, +2012,3,13,8,30,1.3167489,,,,,,,,,,,,,, +2012,3,13,9,30,0.7925173,,,,,,,,,,,,,, +2012,3,13,10,30,0.16112614,,,,,,,,,,,,,, +2012,3,13,11,30,1.1671079,,,,,,,,,,,,,, +2012,3,13,12,30,1.8886731,,,,,,,,,,,,,, +2012,3,13,13,30,1.9571785,,,,,,,,,,,,,, +2012,3,13,14,30,1.5591046,,,,,,,,,,,,,, +2012,3,13,15,30,0.87046176,,,,,,,,,,,,,, +2012,3,13,16,30,0.20016381,,,,,,,,,,,,,, +2012,3,13,17,30,1.4551504,,,,,,,,,,,,,, +2012,3,13,18,30,2.4942532,,,,,,,,,,,,,, +2012,3,13,19,30,2.913597,,,,,,,,,,,,,, +2012,3,13,20,30,2.7054265,,,,,,,,,,,,,, +2012,3,13,21,30,2.152514,,,,,,,,,,,,,, +2012,3,13,22,30,1.3288238,,,,,,,,,,,,,, +2012,3,13,23,30,0.14904475,,,,,,,,,,,,,, +2012,3,14,0,30,1.5106763,,,,,,,,,,,,,, +2012,3,14,1,30,2.47701,,,,,,,,,,,,,, +2012,3,14,2,30,2.5779965,,,,,,,,,,,,,, +2012,3,14,3,30,2.1757002,,,,,,,,,,,,,, +2012,3,14,4,30,1.483461,,,,,,,,,,,,,, +2012,3,14,5,30,0.5178616,,,,,,,,,,,,,, +2012,3,14,6,30,0.45994774,,,,,,,,,,,,,, +2012,3,14,7,30,1.051722,,,,,,,,,,,,,, +2012,3,14,8,30,1.2374022,,,,,,,,,,,,,, +2012,3,14,9,30,1.071175,,,,,,,,,,,,,, +2012,3,14,10,30,0.58096635,,,,,,,,,,,,,, +2012,3,14,11,30,0.22961068,,,,,,,,,,,,,, +2012,3,14,12,30,1.0555335,,,,,,,,,,,,,, +2012,3,14,13,30,1.5928166,,,,,,,,,,,,,, +2012,3,14,14,30,1.5960085,,,,,,,,,,,,,, +2012,3,14,15,30,1.2073203,,,,,,,,,,,,,, +2012,3,14,16,30,0.5157897,,,,,,,,,,,,,, +2012,3,14,17,30,0.51632726,,,,,,,,,,,,,, +2012,3,14,18,30,1.6598918,,,,,,,,,,,,,, +2012,3,14,19,30,2.5166094,,,,,,,,,,,,,, +2012,3,14,20,30,2.7764635,,,,,,,,,,,,,, +2012,3,14,21,30,2.4978764,,,,,,,,,,,,,, +2012,3,14,22,30,1.9410263,,,,,,,,,,,,,, +2012,3,14,23,30,1.1169533,,,,,,,,,,,,,, +2012,3,15,0,30,0.22796543,,,,,,,,,,,,,, +2012,3,15,1,30,1.5969789,,,,,,,,,,,,,, +2012,3,15,2,30,2.41804,,,,,,,,,,,,,, +2012,3,15,3,30,2.4787645,,,,,,,,,,,,,, +2012,3,15,4,30,2.1234164,,,,,,,,,,,,,, +2012,3,15,5,30,1.4819162,,,,,,,,,,,,,, +2012,3,15,6,30,0.59841615,,,,,,,,,,,,,, +2012,3,15,7,30,0.2586037,,,,,,,,,,,,,, +2012,3,15,8,30,0.8007717,,,,,,,,,,,,,, +2012,3,15,9,30,1.0194948,,,,,,,,,,,,,, +2012,3,15,10,30,0.9030498,,,,,,,,,,,,,, +2012,3,15,11,30,0.49465933,,,,,,,,,,,,,, +2012,3,15,12,30,0.17372666,,,,,,,,,,,,,, +2012,3,15,13,30,0.81516206,,,,,,,,,,,,,, +2012,3,15,14,30,1.25956,,,,,,,,,,,,,, +2012,3,15,15,30,1.2777482,,,,,,,,,,,,,, +2012,3,15,16,30,0.93906987,,,,,,,,,,,,,, +2012,3,15,17,30,0.28806332,,,,,,,,,,,,,, +2012,3,15,18,30,0.6583595,,,,,,,,,,,,,, +2012,3,15,19,30,1.6593764,,,,,,,,,,,,,, +2012,3,15,20,30,2.3661282,,,,,,,,,,,,,, +2012,3,15,21,30,2.5399761,,,,,,,,,,,,,, +2012,3,15,22,30,2.2697525,,,,,,,,,,,,,, +2012,3,15,23,30,1.7731498,,,,,,,,,,,,,, +2012,3,16,0,30,0.99714833,,,,,,,,,,,,,, +2012,3,16,1,30,0.29000193,,,,,,,,,,,,,, +2012,3,16,2,30,1.5632001,,,,,,,,,,,,,, +2012,3,16,3,30,2.2884052,,,,,,,,,,,,,, +2012,3,16,4,30,2.3608775,,,,,,,,,,,,,, +2012,3,16,5,30,2.0826735,,,,,,,,,,,,,, +2012,3,16,6,30,1.5233246,,,,,,,,,,,,,, +2012,3,16,7,30,0.74367046,,,,,,,,,,,,,, +2012,3,16,8,30,0.05673793,,,,,,,,,,,,,, +2012,3,16,9,30,0.6033718,,,,,,,,,,,,,, +2012,3,16,10,30,0.8987524,,,,,,,,,,,,,, +2012,3,16,11,30,0.8472106,,,,,,,,,,,,,, +2012,3,16,12,30,0.53862536,,,,,,,,,,,,,, +2012,3,16,13,30,0.10613096,,,,,,,,,,,,,, +2012,3,16,14,30,0.51896226,,,,,,,,,,,,,, +2012,3,16,15,30,0.9635887,,,,,,,,,,,,,, +2012,3,16,16,30,1.0565174,,,,,,,,,,,,,, +2012,3,16,17,30,0.79704297,,,,,,,,,,,,,, +2012,3,16,18,30,0.21979097,,,,,,,,,,,,,, +2012,3,16,19,30,0.62455285,,,,,,,,,,,,,, +2012,3,16,20,30,1.5033237,,,,,,,,,,,,,, +2012,3,16,21,30,2.1215618,,,,,,,,,,,,,, +2012,3,16,22,30,2.2879417,,,,,,,,,,,,,, +2012,3,16,23,30,2.0894718,,,,,,,,,,,,,, +2012,3,17,0,30,1.6860718,,,,,,,,,,,,,, +2012,3,17,1,30,0.96363115,,,,,,,,,,,,,, +2012,3,17,2,30,0.28451085,,,,,,,,,,,,,, +2012,3,17,3,30,1.4728888,,,,,,,,,,,,,, +2012,3,17,4,30,2.1441162,,,,,,,,,,,,,, +2012,3,17,5,30,2.2655485,,,,,,,,,,,,,, +2012,3,17,6,30,2.0853856,,,,,,,,,,,,,, +2012,3,17,7,30,1.6176552,,,,,,,,,,,,,, +2012,3,17,8,30,0.91555244,,,,,,,,,,,,,, +2012,3,17,9,30,0.17004421,,,,,,,,,,,,,, +2012,3,17,10,30,0.5269979,,,,,,,,,,,,,, +2012,3,17,11,30,0.89833605,,,,,,,,,,,,,, +2012,3,17,12,30,0.8987161,,,,,,,,,,,,,, +2012,3,17,13,30,0.68805903,,,,,,,,,,,,,, +2012,3,17,14,30,0.32009414,,,,,,,,,,,,,, +2012,3,17,15,30,0.24163823,,,,,,,,,,,,,, +2012,3,17,16,30,0.7661834,,,,,,,,,,,,,, +2012,3,17,17,30,0.9654344,,,,,,,,,,,,,, +2012,3,17,18,30,0.79141533,,,,,,,,,,,,,, +2012,3,17,19,30,0.2877893,,,,,,,,,,,,,, +2012,3,17,20,30,0.4687492,,,,,,,,,,,,,, +2012,3,17,21,30,1.2766286,,,,,,,,,,,,,, +2012,3,17,22,30,1.8760073,,,,,,,,,,,,,, +2012,3,17,23,30,2.0944428,,,,,,,,,,,,,, +2012,3,18,0,30,1.9915816,,,,,,,,,,,,,, +2012,3,18,1,30,1.6672161,,,,,,,,,,,,,, +2012,3,18,2,30,0.968919,,,,,,,,,,,,,, +2012,3,18,3,30,0.26179615,,,,,,,,,,,,,, +2012,3,18,4,30,1.3863598,,,,,,,,,,,,,, +2012,3,18,5,30,2.0378754,,,,,,,,,,,,,, +2012,3,18,6,30,2.2330678,,,,,,,,,,,,,, +2012,3,18,7,30,2.1463842,,,,,,,,,,,,,, +2012,3,18,8,30,1.7350233,,,,,,,,,,,,,, +2012,3,18,9,30,1.0378499,,,,,,,,,,,,,, +2012,3,18,10,30,0.20798108,,,,,,,,,,,,,, +2012,3,18,11,30,0.592773,,,,,,,,,,,,,, +2012,3,18,12,30,1.0010507,,,,,,,,,,,,,, +2012,3,18,13,30,1.0322335,,,,,,,,,,,,,, +2012,3,18,14,30,0.906258,,,,,,,,,,,,,, +2012,3,18,15,30,0.58384144,,,,,,,,,,,,,, +2012,3,18,16,30,0.10755835,,,,,,,,,,,,,, +2012,3,18,17,30,0.7058192,,,,,,,,,,,,,, +2012,3,18,18,30,1.0050135,,,,,,,,,,,,,, +2012,3,18,19,30,0.8940441,,,,,,,,,,,,,, +2012,3,18,20,30,0.43862638,,,,,,,,,,,,,, +2012,3,18,21,30,0.27454394,,,,,,,,,,,,,, +2012,3,18,22,30,1.0712693,,,,,,,,,,,,,, +2012,3,18,23,30,1.704814,,,,,,,,,,,,,, +2012,3,19,0,30,1.991931,,,,,,,,,,,,,, +2012,3,19,1,30,1.9594765,,,,,,,,,,,,,, +2012,3,19,2,30,1.6669172,,,,,,,,,,,,,, +2012,3,19,3,30,0.9548291,,,,,,,,,,,,,, +2012,3,19,4,30,0.26581365,,,,,,,,,,,,,, +2012,3,19,5,30,1.3563579,,,,,,,,,,,,,, +2012,3,19,6,30,2.014366,,,,,,,,,,,,,, +2012,3,19,7,30,2.2795343,,,,,,,,,,,,,, +2012,3,19,8,30,2.2366889,,,,,,,,,,,,,, +2012,3,19,9,30,1.8057868,,,,,,,,,,,,,, +2012,3,19,10,30,1.0323977,,,,,,,,,,,,,, +2012,3,19,11,30,0.10316412,,,,,,,,,,,,,, +2012,3,19,12,30,0.7814814,,,,,,,,,,,,,, +2012,3,19,13,30,1.1748866,,,,,,,,,,,,,, +2012,3,19,14,30,1.2220266,,,,,,,,,,,,,, +2012,3,19,15,30,1.1514459,,,,,,,,,,,,,, +2012,3,19,16,30,0.791663,,,,,,,,,,,,,, +2012,3,19,17,30,0.13449912,,,,,,,,,,,,,, +2012,3,19,18,30,0.78576684,,,,,,,,,,,,,, +2012,3,19,19,30,1.1452601,,,,,,,,,,,,,, +2012,3,19,20,30,1.0558643,,,,,,,,,,,,,, +2012,3,19,21,30,0.6104462,,,,,,,,,,,,,, +2012,3,19,22,30,0.13491204,,,,,,,,,,,,,, +2012,3,19,23,30,0.95295715,,,,,,,,,,,,,, +2012,3,20,0,30,1.6334585,,,,,,,,,,,,,, +2012,3,20,1,30,1.9569944,,,,,,,,,,,,,, +2012,3,20,2,30,1.9408739,,,,,,,,,,,,,, +2012,3,20,3,30,1.6310514,,,,,,,,,,,,,, +2012,3,20,4,30,0.87560034,,,,,,,,,,,,,, +2012,3,20,5,30,0.3406899,,,,,,,,,,,,,, +2012,3,20,6,30,1.4228947,,,,,,,,,,,,,, +2012,3,20,7,30,2.0861075,,,,,,,,,,,,,, +2012,3,20,8,30,2.3700957,,,,,,,,,,,,,, +2012,3,20,9,30,2.2841344,,,,,,,,,,,,,, +2012,3,20,10,30,1.7531683,,,,,,,,,,,,,, +2012,3,20,11,30,0.85536206,,,,,,,,,,,,,, +2012,3,20,12,30,0.2243649,,,,,,,,,,,,,, +2012,3,20,13,30,1.0571003,,,,,,,,,,,,,, +2012,3,20,14,30,1.3933198,,,,,,,,,,,,,, +2012,3,20,15,30,1.4444568,,,,,,,,,,,,,, +2012,3,20,16,30,1.3741717,,,,,,,,,,,,,, +2012,3,20,17,30,0.88456786,,,,,,,,,,,,,, +2012,3,20,18,30,0.18163997,,,,,,,,,,,,,, +2012,3,20,19,30,0.9803611,,,,,,,,,,,,,, +2012,3,20,20,30,1.3414719,,,,,,,,,,,,,, +2012,3,20,21,30,1.226475,,,,,,,,,,,,,, +2012,3,20,22,30,0.74664676,,,,,,,,,,,,,, +2012,3,20,23,30,0.10795875,,,,,,,,,,,,,, +2012,3,21,0,30,0.9348987,,,,,,,,,,,,,, +2012,3,21,1,30,1.6298912,,,,,,,,,,,,,, +2012,3,21,2,30,1.9325769,,,,,,,,,,,,,, +2012,3,21,3,30,1.8848387,,,,,,,,,,,,,, +2012,3,21,4,30,1.5233971,,,,,,,,,,,,,, +2012,3,21,5,30,0.7004425,,,,,,,,,,,,,, +2012,3,21,6,30,0.52890337,,,,,,,,,,,,,, +2012,3,21,7,30,1.5897992,,,,,,,,,,,,,, +2012,3,21,8,30,2.2091749,,,,,,,,,,,,,, +2012,3,21,9,30,2.4243948,,,,,,,,,,,,,, +2012,3,21,10,30,2.2098048,,,,,,,,,,,,,, +2012,3,21,11,30,1.5308708,,,,,,,,,,,,,, +2012,3,21,12,30,0.50634813,,,,,,,,,,,,,, +2012,3,21,13,30,0.6179401,,,,,,,,,,,,,, +2012,3,21,14,30,1.3830154,,,,,,,,,,,,,, +2012,3,21,15,30,1.6352266,,,,,,,,,,,,,, +2012,3,21,16,30,1.6670109,,,,,,,,,,,,,, +2012,3,21,17,30,1.5167422,,,,,,,,,,,,,, +2012,3,21,18,30,0.81904507,,,,,,,,,,,,,, +2012,3,21,19,30,0.38364017,,,,,,,,,,,,,, +2012,3,21,20,30,1.2495515,,,,,,,,,,,,,, +2012,3,21,21,30,1.5487922,,,,,,,,,,,,,, +2012,3,21,22,30,1.3653946,,,,,,,,,,,,,, +2012,3,21,23,30,0.81111515,,,,,,,,,,,,,, +2012,3,22,0,30,0.1344854,,,,,,,,,,,,,, +2012,3,22,1,30,0.9811395,,,,,,,,,,,,,, +2012,3,22,2,30,1.6343029,,,,,,,,,,,,,, +2012,3,22,3,30,1.8709112,,,,,,,,,,,,,, +2012,3,22,4,30,1.7658781,,,,,,,,,,,,,, +2012,3,22,5,30,1.3247898,,,,,,,,,,,,,, +2012,3,22,6,30,0.41637716,,,,,,,,,,,,,, +2012,3,22,7,30,0.82605726,,,,,,,,,,,,,, +2012,3,22,8,30,1.8031368,,,,,,,,,,,,,, +2012,3,22,9,30,2.2952237,,,,,,,,,,,,,, +2012,3,22,10,30,2.3602002,,,,,,,,,,,,,, +2012,3,22,11,30,1.969801,,,,,,,,,,,,,, +2012,3,22,12,30,1.1358919,,,,,,,,,,,,,, +2012,3,22,13,30,0.050301116,,,,,,,,,,,,,, +2012,3,22,14,30,1.0874059,,,,,,,,,,,,,, +2012,3,22,15,30,1.7219181,,,,,,,,,,,,,, +2012,3,22,16,30,1.8712816,,,,,,,,,,,,,, +2012,3,22,17,30,1.8407526,,,,,,,,,,,,,, +2012,3,22,18,30,1.5209026,,,,,,,,,,,,,, +2012,3,22,19,30,0.57964075,,,,,,,,,,,,,, +2012,3,22,20,30,0.73054665,,,,,,,,,,,,,, +2012,3,22,21,30,1.5456077,,,,,,,,,,,,,, +2012,3,22,22,30,1.7292267,,,,,,,,,,,,,, +2012,3,22,23,30,1.4460447,,,,,,,,,,,,,, +2012,3,23,0,30,0.7940213,,,,,,,,,,,,,, +2012,3,23,1,30,0.19229612,,,,,,,,,,,,,, +2012,3,23,2,30,1.0392334,,,,,,,,,,,,,, +2012,3,23,3,30,1.6041797,,,,,,,,,,,,,, +2012,3,23,4,30,1.7585424,,,,,,,,,,,,,, +2012,3,23,5,30,1.579184,,,,,,,,,,,,,, +2012,3,23,6,30,1.0276959,,,,,,,,,,,,,, +2012,3,23,7,30,0.12989244,,,,,,,,,,,,,, +2012,3,23,8,30,1.1675056,,,,,,,,,,,,,, +2012,3,23,9,30,1.9682038,,,,,,,,,,,,,, +2012,3,23,10,30,2.261917,,,,,,,,,,,,,, +2012,3,23,11,30,2.1392443,,,,,,,,,,,,,, +2012,3,23,12,30,1.5686343,,,,,,,,,,,,,, +2012,3,23,13,30,0.5991185,,,,,,,,,,,,,, +2012,3,23,14,30,0.5757322,,,,,,,,,,,,,, +2012,3,23,15,30,1.569054,,,,,,,,,,,,,, +2012,3,23,16,30,2.0273871,,,,,,,,,,,,,, +2012,3,23,17,30,2.0565705,,,,,,,,,,,,,, +2012,3,23,18,30,1.9057257,,,,,,,,,,,,,, +2012,3,23,19,30,1.3425152,,,,,,,,,,,,,, +2012,3,23,20,30,0.23032606,,,,,,,,,,,,,, +2012,3,23,21,30,1.1517985,,,,,,,,,,,,,, +2012,3,23,22,30,1.8183407,,,,,,,,,,,,,, +2012,3,23,23,30,1.8538036,,,,,,,,,,,,,, +2012,3,24,0,30,1.4561089,,,,,,,,,,,,,, +2012,3,24,1,30,0.706387,,,,,,,,,,,,,, +2012,3,24,2,30,0.28444785,,,,,,,,,,,,,, +2012,3,24,3,30,1.0770912,,,,,,,,,,,,,, +2012,3,24,4,30,1.536039,,,,,,,,,,,,,, +2012,3,24,5,30,1.6056124,,,,,,,,,,,,,, +2012,3,24,6,30,1.3263476,,,,,,,,,,,,,, +2012,3,24,7,30,0.6456016,,,,,,,,,,,,,, +2012,3,24,8,30,0.43541184,,,,,,,,,,,,,, +2012,3,24,9,30,1.4539769,,,,,,,,,,,,,, +2012,3,24,10,30,2.0035722,,,,,,,,,,,,,, +2012,3,24,11,30,2.0804281,,,,,,,,,,,,,, +2012,3,24,12,30,1.7775205,,,,,,,,,,,,,, +2012,3,24,13,30,1.0441335,,,,,,,,,,,,,, +2012,3,24,14,30,0.045486182,,,,,,,,,,,,,, +2012,3,24,15,30,1.1731566,,,,,,,,,,,,,, +2012,3,24,16,30,1.9901034,,,,,,,,,,,,,, +2012,3,24,17,30,2.2463675,,,,,,,,,,,,,, +2012,3,24,18,30,2.1382973,,,,,,,,,,,,,, +2012,3,24,19,30,1.8080679,,,,,,,,,,,,,, +2012,3,24,20,30,0.9714345,,,,,,,,,,,,,, +2012,3,24,21,30,0.4235087,,,,,,,,,,,,,, +2012,3,24,22,30,1.5681942,,,,,,,,,,,,,, +2012,3,24,23,30,2.0229952,,,,,,,,,,,,,, +2012,3,25,0,30,1.9050009,,,,,,,,,,,,,, +2012,3,25,1,30,1.394224,,,,,,,,,,,,,, +2012,3,25,2,30,0.5654624,,,,,,,,,,,,,, +2012,3,25,3,30,0.3947671,,,,,,,,,,,,,, +2012,3,25,4,30,1.0952566,,,,,,,,,,,,,, +2012,3,25,5,30,1.4481417,,,,,,,,,,,,,, +2012,3,25,6,30,1.4214917,,,,,,,,,,,,,, +2012,3,25,7,30,1.0154644,,,,,,,,,,,,,, +2012,3,25,8,30,0.23562405,,,,,,,,,,,,,, +2012,3,25,9,30,0.8151655,,,,,,,,,,,,,, +2012,3,25,10,30,1.6036165,,,,,,,,,,,,,, +2012,3,25,11,30,1.8882577,,,,,,,,,,,,,, +2012,3,25,12,30,1.7802083,,,,,,,,,,,,,, +2012,3,25,13,30,1.3207662,,,,,,,,,,,,,, +2012,3,25,14,30,0.44986123,,,,,,,,,,,,,, +2012,3,25,15,30,0.67081034,,,,,,,,,,,,,, +2012,3,25,16,30,1.6989406,,,,,,,,,,,,,, +2012,3,25,17,30,2.2832942,,,,,,,,,,,,,, +2012,3,25,18,30,2.3345046,,,,,,,,,,,,,, +2012,3,25,19,30,2.0735931,,,,,,,,,,,,,, +2012,3,25,20,30,1.5245395,,,,,,,,,,,,,, +2012,3,25,21,30,0.45525235,,,,,,,,,,,,,, +2012,3,25,22,30,0.96441764,,,,,,,,,,,,,, +2012,3,25,23,30,1.9061067,,,,,,,,,,,,,, +2012,3,26,0,30,2.131883,,,,,,,,,,,,,, +2012,3,26,1,30,1.8778,,,,,,,,,,,,,, +2012,3,26,2,30,1.2631433,,,,,,,,,,,,,, +2012,3,26,3,30,0.38467154,,,,,,,,,,,,,, +2012,3,26,4,30,0.51606715,,,,,,,,,,,,,, +2012,3,26,5,30,1.1051868,,,,,,,,,,,,,, +2012,3,26,6,30,1.3497908,,,,,,,,,,,,,, +2012,3,26,7,30,1.2076386,,,,,,,,,,,,,, +2012,3,26,8,30,0.67230105,,,,,,,,,,,,,, +2012,3,26,9,30,0.2205765,,,,,,,,,,,,,, +2012,3,26,10,30,1.0731617,,,,,,,,,,,,,, +2012,3,26,11,30,1.5961125,,,,,,,,,,,,,, +2012,3,26,12,30,1.6621794,,,,,,,,,,,,,, +2012,3,26,13,30,1.4149301,,,,,,,,,,,,,, +2012,3,26,14,30,0.8173146,,,,,,,,,,,,,, +2012,3,26,15,30,0.16107176,,,,,,,,,,,,,, +2012,3,26,16,30,1.2423627,,,,,,,,,,,,,, +2012,3,26,17,30,2.0783465,,,,,,,,,,,,,, +2012,3,26,18,30,2.410399,,,,,,,,,,,,,, +2012,3,26,19,30,2.2724128,,,,,,,,,,,,,, +2012,3,26,20,30,1.8504877,,,,,,,,,,,,,, +2012,3,26,21,30,1.0850266,,,,,,,,,,,,,, +2012,3,26,22,30,0.20182219,,,,,,,,,,,,,, +2012,3,26,23,30,1.4474775,,,,,,,,,,,,,, +2012,3,27,0,30,2.1184635,,,,,,,,,,,,,, +2012,3,27,1,30,2.1417387,,,,,,,,,,,,,, +2012,3,27,2,30,1.7759778,,,,,,,,,,,,,, +2012,3,27,3,30,1.0681535,,,,,,,,,,,,,, +2012,3,27,4,30,0.18733351,,,,,,,,,,,,,, +2012,3,27,5,30,0.6354111,,,,,,,,,,,,,, +2012,3,27,6,30,1.1018181,,,,,,,,,,,,,, +2012,3,27,7,30,1.2330904,,,,,,,,,,,,,, +2012,3,27,8,30,0.9694377,,,,,,,,,,,,,, +2012,3,27,9,30,0.3418854,,,,,,,,,,,,,, +2012,3,27,10,30,0.49809408,,,,,,,,,,,,,, +2012,3,27,11,30,1.1828408,,,,,,,,,,,,,, +2012,3,27,12,30,1.471639,,,,,,,,,,,,,, +2012,3,27,13,30,1.3862611,,,,,,,,,,,,,, +2012,3,27,14,30,1.02868,,,,,,,,,,,,,, +2012,3,27,15,30,0.31106558,,,,,,,,,,,,,, +2012,3,27,16,30,0.7075933,,,,,,,,,,,,,, +2012,3,27,17,30,1.6781324,,,,,,,,,,,,,, +2012,3,27,18,30,2.2775357,,,,,,,,,,,,,, +2012,3,27,19,30,2.3742967,,,,,,,,,,,,,, +2012,3,27,20,30,2.0752492,,,,,,,,,,,,,, +2012,3,27,21,30,1.5037942,,,,,,,,,,,,,, +2012,3,27,22,30,0.5765599,,,,,,,,,,,,,, +2012,3,27,23,30,0.7232434,,,,,,,,,,,,,, +2012,3,28,0,30,1.7929691,,,,,,,,,,,,,, +2012,3,28,1,30,2.198955,,,,,,,,,,,,,, +2012,3,28,2,30,2.0687149,,,,,,,,,,,,,, +2012,3,28,3,30,1.6099975,,,,,,,,,,,,,, +2012,3,28,4,30,0.82927907,,,,,,,,,,,,,, +2012,3,28,5,30,0.11049726,,,,,,,,,,,,,, +2012,3,28,6,30,0.7203239,,,,,,,,,,,,,, +2012,3,28,7,30,1.0647986,,,,,,,,,,,,,, +2012,3,28,8,30,1.090217,,,,,,,,,,,,,, +2012,3,28,9,30,0.72603357,,,,,,,,,,,,,, +2012,3,28,10,30,0.12579775,,,,,,,,,,,,,, +2012,3,28,11,30,0.6767766,,,,,,,,,,,,,, +2012,3,28,12,30,1.1724379,,,,,,,,,,,,,, +2012,3,28,13,30,1.2910154,,,,,,,,,,,,,, +2012,3,28,14,30,1.1050041,,,,,,,,,,,,,, +2012,3,28,15,30,0.65036833,,,,,,,,,,,,,, +2012,3,28,16,30,0.16156565,,,,,,,,,,,,,, +2012,3,28,17,30,1.1477628,,,,,,,,,,,,,, +2012,3,28,18,30,1.9477613,,,,,,,,,,,,,, +2012,3,28,19,30,2.3095155,,,,,,,,,,,,,, +2012,3,28,20,30,2.2143314,,,,,,,,,,,,,, +2012,3,28,21,30,1.7940394,,,,,,,,,,,,,, +2012,3,28,22,30,1.1117134,,,,,,,,,,,,,, +2012,3,28,23,30,0.16469893,,,,,,,,,,,,,, +2012,3,29,0,30,1.141395,,,,,,,,,,,,,, +2012,3,29,1,30,1.982744,,,,,,,,,,,,,, +2012,3,29,2,30,2.1745582,,,,,,,,,,,,,, +2012,3,29,3,30,1.9382732,,,,,,,,,,,,,, +2012,3,29,4,30,1.4052701,,,,,,,,,,,,,, +2012,3,29,5,30,0.59477633,,,,,,,,,,,,,, +2012,3,29,6,30,0.2349068,,,,,,,,,,,,,, +2012,3,29,7,30,0.73700124,,,,,,,,,,,,,, +2012,3,29,8,30,0.9852781,,,,,,,,,,,,,, +2012,3,29,9,30,0.9311746,,,,,,,,,,,,,, +2012,3,29,10,30,0.50619894,,,,,,,,,,,,,, +2012,3,29,11,30,0.19669962,,,,,,,,,,,,,, +2012,3,29,12,30,0.74725777,,,,,,,,,,,,,, +2012,3,29,13,30,1.0894845,,,,,,,,,,,,,, +2012,3,29,14,30,1.0994842,,,,,,,,,,,,,, +2012,3,29,15,30,0.8416194,,,,,,,,,,,,,, +2012,3,29,16,30,0.3098176,,,,,,,,,,,,,, +2012,3,29,17,30,0.5466453,,,,,,,,,,,,,, +2012,3,29,18,30,1.4494551,,,,,,,,,,,,,, +2012,3,29,19,30,2.059995,,,,,,,,,,,,,, +2012,3,29,20,30,2.219811,,,,,,,,,,,,,, +2012,3,29,21,30,1.99314,,,,,,,,,,,,,, +2012,3,29,22,30,1.5038563,,,,,,,,,,,,,, +2012,3,29,23,30,0.7638581,,,,,,,,,,,,,, +2012,3,30,0,30,0.3228354,,,,,,,,,,,,,, +2012,3,30,1,30,1.4091293,,,,,,,,,,,,,, +2012,3,30,2,30,2.0452747,,,,,,,,,,,,,, +2012,3,30,3,30,2.0860324,,,,,,,,,,,,,, +2012,3,30,4,30,1.7841828,,,,,,,,,,,,,, +2012,3,30,5,30,1.2108696,,,,,,,,,,,,,, +2012,3,30,6,30,0.42820087,,,,,,,,,,,,,, +2012,3,30,7,30,0.27782756,,,,,,,,,,,,,, +2012,3,30,8,30,0.6859672,,,,,,,,,,,,,, +2012,3,30,9,30,0.886034,,,,,,,,,,,,,, +2012,3,30,10,30,0.7844478,,,,,,,,,,,,,, +2012,3,30,11,30,0.34012264,,,,,,,,,,,,,, +2012,3,30,12,30,0.27072412,,,,,,,,,,,,,, +2012,3,30,13,30,0.72978365,,,,,,,,,,,,,, +2012,3,30,14,30,0.9722983,,,,,,,,,,,,,, +2012,3,30,15,30,0.9232459,,,,,,,,,,,,,, +2012,3,30,16,30,0.6159845,,,,,,,,,,,,,, +2012,3,30,17,30,0.08733763,,,,,,,,,,,,,, +2012,3,30,18,30,0.8194205,,,,,,,,,,,,,, +2012,3,30,19,30,1.6074282,,,,,,,,,,,,,, +2012,3,30,20,30,2.0474586,,,,,,,,,,,,,, +2012,3,30,21,30,2.067738,,,,,,,,,,,,,, +2012,3,30,22,30,1.7796495,,,,,,,,,,,,,, +2012,3,30,23,30,1.2744116,,,,,,,,,,,,,, +2012,3,31,0,30,0.51592743,,,,,,,,,,,,,, +2012,3,31,1,30,0.56214136,,,,,,,,,,,,,, +2012,3,31,2,30,1.5516388,,,,,,,,,,,,,, +2012,3,31,3,30,2.028842,,,,,,,,,,,,,, +2012,3,31,4,30,1.9772953,,,,,,,,,,,,,, +2012,3,31,5,30,1.6526943,,,,,,,,,,,,,, +2012,3,31,6,30,1.0852282,,,,,,,,,,,,,, +2012,3,31,7,30,0.36698776,,,,,,,,,,,,,, +2012,3,31,8,30,0.23749614,,,,,,,,,,,,,, +2012,3,31,9,30,0.6174664,,,,,,,,,,,,,, +2012,3,31,10,30,0.81434786,,,,,,,,,,,,,, +2012,3,31,11,30,0.68684244,,,,,,,,,,,,,, +2012,3,31,12,30,0.25833425,,,,,,,,,,,,,, +2012,3,31,13,30,0.2595134,,,,,,,,,,,,,, +2012,3,31,14,30,0.6450799,,,,,,,,,,,,,, +2012,3,31,15,30,0.85141516,,,,,,,,,,,,,, +2012,3,31,16,30,0.7874099,,,,,,,,,,,,,, +2012,3,31,17,30,0.45650777,,,,,,,,,,,,,, +2012,3,31,18,30,0.1943635,,,,,,,,,,,,,, +2012,3,31,19,30,0.9576634,,,,,,,,,,,,,, +2012,3,31,20,30,1.6337593,,,,,,,,,,,,,, +2012,3,31,21,30,1.9538028,,,,,,,,,,,,,, +2012,3,31,22,30,1.9119651,,,,,,,,,,,,,, +2012,3,31,23,30,1.6264932,,,,,,,,,,,,,, +2012,4,1,0,30,1.1361088,,,,,,,,,,,,,, +2012,4,1,1,30,0.36700454,,,,,,,,,,,,,, +2012,4,1,2,30,0.71098644,,,,,,,,,,,,,, +2012,4,1,3,30,1.6173036,,,,,,,,,,,,,, +2012,4,1,4,30,1.9836584,,,,,,,,,,,,,, +2012,4,1,5,30,1.8955171,,,,,,,,,,,,,, +2012,4,1,6,30,1.5909276,,,,,,,,,,,,,, +2012,4,1,7,30,1.0571536,,,,,,,,,,,,,, +2012,4,1,8,30,0.39042407,,,,,,,,,,,,,, +2012,4,1,9,30,0.18787532,,,,,,,,,,,,,, +2012,4,1,10,30,0.60783285,,,,,,,,,,,,,, +2012,4,1,11,30,0.8185296,,,,,,,,,,,,,, +2012,4,1,12,30,0.6747678,,,,,,,,,,,,,, +2012,4,1,13,30,0.28691667,,,,,,,,,,,,,, +2012,4,1,14,30,0.16771176,,,,,,,,,,,,,, +2012,4,1,15,30,0.5237349,,,,,,,,,,,,,, +2012,4,1,16,30,0.76603377,,,,,,,,,,,,,, +2012,4,1,17,30,0.7261137,,,,,,,,,,,,,, +2012,4,1,18,30,0.39331853,,,,,,,,,,,,,, +2012,4,1,19,30,0.23938362,,,,,,,,,,,,,, +2012,4,1,20,30,0.9575715,,,,,,,,,,,,,, +2012,4,1,21,30,1.5566921,,,,,,,,,,,,,, +2012,4,1,22,30,1.8285205,,,,,,,,,,,,,, +2012,4,1,23,30,1.7963396,,,,,,,,,,,,,, +2012,4,2,0,30,1.5488211,,,,,,,,,,,,,, +2012,4,2,1,30,1.0703125,,,,,,,,,,,,,, +2012,4,2,2,30,0.27770907,,,,,,,,,,,,,, +2012,4,2,3,30,0.8109077,,,,,,,,,,,,,, +2012,4,2,4,30,1.6552473,,,,,,,,,,,,,, +2012,4,2,5,30,1.959038,,,,,,,,,,,,,, +2012,4,2,6,30,1.8824661,,,,,,,,,,,,,, +2012,4,2,7,30,1.6148535,,,,,,,,,,,,,, +2012,4,2,8,30,1.0939558,,,,,,,,,,,,,, +2012,4,2,9,30,0.41690952,,,,,,,,,,,,,, +2012,4,2,10,30,0.224967,,,,,,,,,,,,,, +2012,4,2,11,30,0.71794474,,,,,,,,,,,,,, +2012,4,2,12,30,0.9299308,,,,,,,,,,,,,, +2012,4,2,13,30,0.775057,,,,,,,,,,,,,, +2012,4,2,14,30,0.4367071,,,,,,,,,,,,,, +2012,4,2,15,30,0.10121318,,,,,,,,,,,,,, +2012,4,2,16,30,0.4216146,,,,,,,,,,,,,, +2012,4,2,17,30,0.7667763,,,,,,,,,,,,,, +2012,4,2,18,30,0.7743853,,,,,,,,,,,,,, +2012,4,2,19,30,0.44960028,,,,,,,,,,,,,, +2012,4,2,20,30,0.1543631,,,,,,,,,,,,,, +2012,4,2,21,30,0.8416961,,,,,,,,,,,,,, +2012,4,2,22,30,1.4242934,,,,,,,,,,,,,, +2012,4,2,23,30,1.718785,,,,,,,,,,,,,, +2012,4,3,0,30,1.7361252,,,,,,,,,,,,,, +2012,4,3,1,30,1.5230421,,,,,,,,,,,,,, +2012,4,3,2,30,1.0339296,,,,,,,,,,,,,, +2012,4,3,3,30,0.20678131,,,,,,,,,,,,,, +2012,4,3,4,30,0.9030038,,,,,,,,,,,,,, +2012,4,3,5,30,1.7118568,,,,,,,,,,,,,, +2012,4,3,6,30,1.9963316,,,,,,,,,,,,,, +2012,4,3,7,30,1.948323,,,,,,,,,,,,,, +2012,4,3,8,30,1.6841768,,,,,,,,,,,,,, +2012,4,3,9,30,1.1098717,,,,,,,,,,,,,, +2012,4,3,10,30,0.3450539,,,,,,,,,,,,,, +2012,4,3,11,30,0.4126169,,,,,,,,,,,,,, +2012,4,3,12,30,0.96954,,,,,,,,,,,,,, +2012,4,3,13,30,1.1548802,,,,,,,,,,,,,, +2012,4,3,14,30,0.99083626,,,,,,,,,,,,,, +2012,4,3,15,30,0.68267787,,,,,,,,,,,,,, +2012,4,3,16,30,0.2282885,,,,,,,,,,,,,, +2012,4,3,17,30,0.41400662,,,,,,,,,,,,,, +2012,4,3,18,30,0.89821756,,,,,,,,,,,,,, +2012,4,3,19,30,0.9519876,,,,,,,,,,,,,, +2012,4,3,20,30,0.6320504,,,,,,,,,,,,,, +2012,4,3,21,30,0.061955594,,,,,,,,,,,,,, +2012,4,3,22,30,0.6659115,,,,,,,,,,,,,, +2012,4,3,23,30,1.2960867,,,,,,,,,,,,,, +2012,4,4,0,30,1.6538575,,,,,,,,,,,,,, +2012,4,4,1,30,1.716719,,,,,,,,,,,,,, +2012,4,4,2,30,1.5114257,,,,,,,,,,,,,, +2012,4,4,3,30,0.9923979,,,,,,,,,,,,,, +2012,4,4,4,30,0.1400167,,,,,,,,,,,,,, +2012,4,4,5,30,1.0245838,,,,,,,,,,,,,, +2012,4,4,6,30,1.8254826,,,,,,,,,,,,,, +2012,4,4,7,30,2.1050916,,,,,,,,,,,,,, +2012,4,4,8,30,2.0505612,,,,,,,,,,,,,, +2012,4,4,9,30,1.7155237,,,,,,,,,,,,,, +2012,4,4,10,30,1.0143874,,,,,,,,,,,,,, +2012,4,4,11,30,0.120562956,,,,,,,,,,,,,, +2012,4,4,12,30,0.7684361,,,,,,,,,,,,,, +2012,4,4,13,30,1.343353,,,,,,,,,,,,,, +2012,4,4,14,30,1.4701502,,,,,,,,,,,,,, +2012,4,4,15,30,1.287982,,,,,,,,,,,,,, +2012,4,4,16,30,0.9520997,,,,,,,,,,,,,, +2012,4,4,17,30,0.32740575,,,,,,,,,,,,,, +2012,4,4,18,30,0.5634435,,,,,,,,,,,,,, +2012,4,4,19,30,1.1771389,,,,,,,,,,,,,, +2012,4,4,20,30,1.2461785,,,,,,,,,,,,,, +2012,4,4,21,30,0.90743655,,,,,,,,,,,,,, +2012,4,4,22,30,0.29751498,,,,,,,,,,,,,, +2012,4,4,23,30,0.5049778,,,,,,,,,,,,,, +2012,4,5,0,30,1.2185093,,,,,,,,,,,,,, +2012,4,5,1,30,1.6350994,,,,,,,,,,,,,, +2012,4,5,2,30,1.7113192,,,,,,,,,,,,,, +2012,4,5,3,30,1.4899454,,,,,,,,,,,,,, +2012,4,5,4,30,0.9289986,,,,,,,,,,,,,, +2012,4,5,5,30,0.121132575,,,,,,,,,,,,,, +2012,4,5,6,30,1.2071173,,,,,,,,,,,,,, +2012,4,5,7,30,2.0037537,,,,,,,,,,,,,, +2012,4,5,8,30,2.2427087,,,,,,,,,,,,,, +2012,4,5,9,30,2.1084874,,,,,,,,,,,,,, +2012,4,5,10,30,1.6298692,,,,,,,,,,,,,, +2012,4,5,11,30,0.7599733,,,,,,,,,,,,,, +2012,4,5,12,30,0.3127661,,,,,,,,,,,,,, +2012,4,5,13,30,1.257371,,,,,,,,,,,,,, +2012,4,5,14,30,1.7859606,,,,,,,,,,,,,, +2012,4,5,15,30,1.8230515,,,,,,,,,,,,,, +2012,4,5,16,30,1.5960296,,,,,,,,,,,,,, +2012,4,5,17,30,1.1463788,,,,,,,,,,,,,, +2012,4,5,18,30,0.26897016,,,,,,,,,,,,,, +2012,4,5,19,30,0.89265716,,,,,,,,,,,,,, +2012,4,5,20,30,1.576861,,,,,,,,,,,,,, +2012,4,5,21,30,1.6045382,,,,,,,,,,,,,, +2012,4,5,22,30,1.2061883,,,,,,,,,,,,,, +2012,4,5,23,30,0.51457644,,,,,,,,,,,,,, +2012,4,6,0,30,0.41406083,,,,,,,,,,,,,, +2012,4,6,1,30,1.2048585,,,,,,,,,,,,,, +2012,4,6,2,30,1.6438639,,,,,,,,,,,,,, +2012,4,6,3,30,1.7019542,,,,,,,,,,,,,, +2012,4,6,4,30,1.4511528,,,,,,,,,,,,,, +2012,4,6,5,30,0.82888305,,,,,,,,,,,,,, +2012,4,6,6,30,0.26007286,,,,,,,,,,,,,, +2012,4,6,7,30,1.4553857,,,,,,,,,,,,,, +2012,4,6,8,30,2.2026942,,,,,,,,,,,,,, +2012,4,6,9,30,2.3293116,,,,,,,,,,,,,, +2012,4,6,10,30,2.0497723,,,,,,,,,,,,,, +2012,4,6,11,30,1.3939307,,,,,,,,,,,,,, +2012,4,6,12,30,0.35494167,,,,,,,,,,,,,, +2012,4,6,13,30,0.846269,,,,,,,,,,,,,, +2012,4,6,14,30,1.8082126,,,,,,,,,,,,,, +2012,4,6,15,30,2.222741,,,,,,,,,,,,,, +2012,4,6,16,30,2.1435199,,,,,,,,,,,,,, +2012,4,6,17,30,1.8304272,,,,,,,,,,,,,, +2012,4,6,18,30,1.177716,,,,,,,,,,,,,, +2012,4,6,19,30,0.13886888,,,,,,,,,,,,,, +2012,4,6,20,30,1.3703136,,,,,,,,,,,,,, +2012,4,6,21,30,2.0258756,,,,,,,,,,,,,, +2012,4,6,22,30,1.9487913,,,,,,,,,,,,,, +2012,4,6,23,30,1.4522405,,,,,,,,,,,,,, +2012,4,7,0,30,0.643642,,,,,,,,,,,,,, +2012,4,7,1,30,0.40285,,,,,,,,,,,,,, +2012,4,7,2,30,1.2379041,,,,,,,,,,,,,, +2012,4,7,3,30,1.6586205,,,,,,,,,,,,,, +2012,4,7,4,30,1.6812683,,,,,,,,,,,,,, +2012,4,7,5,30,1.3848202,,,,,,,,,,,,,, +2012,4,7,6,30,0.66994745,,,,,,,,,,,,,, +2012,4,7,7,30,0.5207759,,,,,,,,,,,,,, +2012,4,7,8,30,1.7254174,,,,,,,,,,,,,, +2012,4,7,9,30,2.3409047,,,,,,,,,,,,,, +2012,4,7,10,30,2.295294,,,,,,,,,,,,,, +2012,4,7,11,30,1.8497301,,,,,,,,,,,,,, +2012,4,7,12,30,1.0246278,,,,,,,,,,,,,, +2012,4,7,13,30,0.18263698,,,,,,,,,,,,,, +2012,4,7,14,30,1.4419267,,,,,,,,,,,,,, +2012,4,7,15,30,2.332809,,,,,,,,,,,,,, +2012,4,7,16,30,2.5779014,,,,,,,,,,,,,, +2012,4,7,17,30,2.366921,,,,,,,,,,,,,, +2012,4,7,18,30,1.9224288,,,,,,,,,,,,,, +2012,4,7,19,30,1.0025237,,,,,,,,,,,,,, +2012,4,7,20,30,0.5354037,,,,,,,,,,,,,, +2012,4,7,21,30,1.9087566,,,,,,,,,,,,,, +2012,4,7,22,30,2.4285815,,,,,,,,,,,,,, +2012,4,7,23,30,2.2060285,,,,,,,,,,,,,, +2012,4,8,0,30,1.5974128,,,,,,,,,,,,,, +2012,4,8,1,30,0.6692281,,,,,,,,,,,,,, +2012,4,8,2,30,0.4512373,,,,,,,,,,,,,, +2012,4,8,3,30,1.2870288,,,,,,,,,,,,,, +2012,4,8,4,30,1.6620337,,,,,,,,,,,,,, +2012,4,8,5,30,1.6372179,,,,,,,,,,,,,, +2012,4,8,6,30,1.268884,,,,,,,,,,,,,, +2012,4,8,7,30,0.4418408,,,,,,,,,,,,,, +2012,4,8,8,30,0.8186575,,,,,,,,,,,,,, +2012,4,8,9,30,1.9355142,,,,,,,,,,,,,, +2012,4,8,10,30,2.3480144,,,,,,,,,,,,,, +2012,4,8,11,30,2.1220431,,,,,,,,,,,,,, +2012,4,8,12,30,1.5332874,,,,,,,,,,,,,, +2012,4,8,13,30,0.5681582,,,,,,,,,,,,,, +2012,4,8,14,30,0.74601716,,,,,,,,,,,,,, +2012,4,8,15,30,2.0107217,,,,,,,,,,,,,, +2012,4,8,16,30,2.7468648,,,,,,,,,,,,,, +2012,4,8,17,30,2.7970283,,,,,,,,,,,,,, +2012,4,8,18,30,2.453544,,,,,,,,,,,,,, +2012,4,8,19,30,1.8403822,,,,,,,,,,,,,, +2012,4,8,20,30,0.6419598,,,,,,,,,,,,,, +2012,4,8,21,30,1.0922081,,,,,,,,,,,,,, +2012,4,8,22,30,2.3903227,,,,,,,,,,,,,, +2012,4,8,23,30,2.7030444,,,,,,,,,,,,,, +2012,4,9,0,30,2.340327,,,,,,,,,,,,,, +2012,4,9,1,30,1.637593,,,,,,,,,,,,,, +2012,4,9,2,30,0.6165885,,,,,,,,,,,,,, +2012,4,9,3,30,0.52697754,,,,,,,,,,,,,, +2012,4,9,4,30,1.3216759,,,,,,,,,,,,,, +2012,4,9,5,30,1.6354053,,,,,,,,,,,,,, +2012,4,9,6,30,1.5478766,,,,,,,,,,,,,, +2012,4,9,7,30,1.0882953,,,,,,,,,,,,,, +2012,4,9,8,30,0.18209597,,,,,,,,,,,,,, +2012,4,9,9,30,1.0746862,,,,,,,,,,,,,, +2012,4,9,10,30,2.0125995,,,,,,,,,,,,,, +2012,4,9,11,30,2.2079082,,,,,,,,,,,,,, +2012,4,9,12,30,1.8438647,,,,,,,,,,,,,, +2012,4,9,13,30,1.1498578,,,,,,,,,,,,,, +2012,4,9,14,30,0.10738762,,,,,,,,,,,,,, +2012,4,9,15,30,1.2900493,,,,,,,,,,,,,, +2012,4,9,16,30,2.4647365,,,,,,,,,,,,,, +2012,4,9,17,30,2.9925413,,,,,,,,,,,,,, +2012,4,9,18,30,2.859758,,,,,,,,,,,,,, +2012,4,9,19,30,2.3950517,,,,,,,,,,,,,, +2012,4,9,20,30,1.5992967,,,,,,,,,,,,,, +2012,4,9,21,30,0.21391802,,,,,,,,,,,,,, +2012,4,9,22,30,1.6149328,,,,,,,,,,,,,, +2012,4,9,23,30,2.7137825,,,,,,,,,,,,,, +2012,4,10,0,30,2.8153222,,,,,,,,,,,,,, +2012,4,10,1,30,2.3611474,,,,,,,,,,,,,, +2012,4,10,2,30,1.5991094,,,,,,,,,,,,,, +2012,4,10,3,30,0.5261694,,,,,,,,,,,,,, +2012,4,10,4,30,0.5931854,,,,,,,,,,,,,, +2012,4,10,5,30,1.315213,,,,,,,,,,,,,, +2012,4,10,6,30,1.5589247,,,,,,,,,,,,,, +2012,4,10,7,30,1.4000529,,,,,,,,,,,,,, +2012,4,10,8,30,0.8617727,,,,,,,,,,,,,, +2012,4,10,9,30,0.13572833,,,,,,,,,,,,,, +2012,4,10,10,30,1.2142713,,,,,,,,,,,,,, +2012,4,10,11,30,1.9362732,,,,,,,,,,,,,, +2012,4,10,12,30,1.9617462,,,,,,,,,,,,,, +2012,4,10,13,30,1.5190871,,,,,,,,,,,,,, +2012,4,10,14,30,0.7524447,,,,,,,,,,,,,, +2012,4,10,15,30,0.40615672,,,,,,,,,,,,,, +2012,4,10,16,30,1.7276211,,,,,,,,,,,,,, +2012,4,10,17,30,2.7386212,,,,,,,,,,,,,, +2012,4,10,18,30,3.0517726,,,,,,,,,,,,,, +2012,4,10,19,30,2.7771668,,,,,,,,,,,,,, +2012,4,10,20,30,2.2131703,,,,,,,,,,,,,, +2012,4,10,21,30,1.2602308,,,,,,,,,,,,,, +2012,4,10,22,30,0.3487392,,,,,,,,,,,,,, +2012,4,10,23,30,1.9863131,,,,,,,,,,,,,, +2012,4,11,0,30,2.836151,,,,,,,,,,,,,, +2012,4,11,1,30,2.785718,,,,,,,,,,,,,, +2012,4,11,2,30,2.3025794,,,,,,,,,,,,,, +2012,4,11,3,30,1.513413,,,,,,,,,,,,,, +2012,4,11,4,30,0.43548316,,,,,,,,,,,,,, +2012,4,11,5,30,0.61657023,,,,,,,,,,,,,, +2012,4,11,6,30,1.2499907,,,,,,,,,,,,,, +2012,4,11,7,30,1.4280914,,,,,,,,,,,,,, +2012,4,11,8,30,1.212149,,,,,,,,,,,,,, +2012,4,11,9,30,0.6442977,,,,,,,,,,,,,, +2012,4,11,10,30,0.26701674,,,,,,,,,,,,,, +2012,4,11,11,30,1.2078222,,,,,,,,,,,,,, +2012,4,11,12,30,1.7440513,,,,,,,,,,,,,, +2012,4,11,13,30,1.6759678,,,,,,,,,,,,,, +2012,4,11,14,30,1.202699,,,,,,,,,,,,,, +2012,4,11,15,30,0.39379525,,,,,,,,,,,,,, +2012,4,11,16,30,0.76962715,,,,,,,,,,,,,, +2012,4,11,17,30,1.9935853,,,,,,,,,,,,,, +2012,4,11,18,30,2.808131,,,,,,,,,,,,,, +2012,4,11,19,30,2.9437497,,,,,,,,,,,,,, +2012,4,11,20,30,2.583235,,,,,,,,,,,,,, +2012,4,11,21,30,1.9572289,,,,,,,,,,,,,, +2012,4,11,22,30,0.91339684,,,,,,,,,,,,,, +2012,4,11,23,30,0.69229704,,,,,,,,,,,,,, +2012,4,12,0,30,2.153071,,,,,,,,,,,,,, +2012,4,12,1,30,2.7819486,,,,,,,,,,,,,, +2012,4,12,2,30,2.663517,,,,,,,,,,,,,, +2012,4,12,3,30,2.1967876,,,,,,,,,,,,,, +2012,4,12,4,30,1.4073946,,,,,,,,,,,,,, +2012,4,12,5,30,0.37502572,,,,,,,,,,,,,, +2012,4,12,6,30,0.57660615,,,,,,,,,,,,,, +2012,4,12,7,30,1.1313648,,,,,,,,,,,,,, +2012,4,12,8,30,1.2693431,,,,,,,,,,,,,, +2012,4,12,9,30,1.0329349,,,,,,,,,,,,,, +2012,4,12,10,30,0.49765563,,,,,,,,,,,,,, +2012,4,12,11,30,0.2962032,,,,,,,,,,,,,, +2012,4,12,12,30,1.0789695,,,,,,,,,,,,,, +2012,4,12,13,30,1.5006148,,,,,,,,,,,,,, +2012,4,12,14,30,1.4088819,,,,,,,,,,,,,, +2012,4,12,15,30,0.9377934,,,,,,,,,,,,,, +2012,4,12,16,30,0.12859207,,,,,,,,,,,,,, +2012,4,12,17,30,0.9853468,,,,,,,,,,,,,, +2012,4,12,18,30,2.0623953,,,,,,,,,,,,,, +2012,4,12,19,30,2.6926987,,,,,,,,,,,,,, +2012,4,12,20,30,2.7141824,,,,,,,,,,,,,, +2012,4,12,21,30,2.3293018,,,,,,,,,,,,,, +2012,4,12,22,30,1.6939207,,,,,,,,,,,,,, +2012,4,12,23,30,0.6410423,,,,,,,,,,,,,, +2012,4,13,0,30,0.88164985,,,,,,,,,,,,,, +2012,4,13,1,30,2.1376014,,,,,,,,,,,,,, +2012,4,13,2,30,2.6153617,,,,,,,,,,,,,, +2012,4,13,3,30,2.496177,,,,,,,,,,,,,, +2012,4,13,4,30,2.0685592,,,,,,,,,,,,,, +2012,4,13,5,30,1.3103321,,,,,,,,,,,,,, +2012,4,13,6,30,0.36519748,,,,,,,,,,,,,, +2012,4,13,7,30,0.48061013,,,,,,,,,,,,,, +2012,4,13,8,30,0.99685127,,,,,,,,,,,,,, +2012,4,13,9,30,1.1318581,,,,,,,,,,,,,, +2012,4,13,10,30,0.9137429,,,,,,,,,,,,,, +2012,4,13,11,30,0.45628285,,,,,,,,,,,,,, +2012,4,13,12,30,0.21501586,,,,,,,,,,,,,, +2012,4,13,13,30,0.880052,,,,,,,,,,,,,, +2012,4,13,14,30,1.2642877,,,,,,,,,,,,,, +2012,4,13,15,30,1.1979696,,,,,,,,,,,,,, +2012,4,13,16,30,0.7554995,,,,,,,,,,,,,, +2012,4,13,17,30,0.062026095,,,,,,,,,,,,,, +2012,4,13,18,30,1.0335294,,,,,,,,,,,,,, +2012,4,13,19,30,1.9534649,,,,,,,,,,,,,, +2012,4,13,20,30,2.445139,,,,,,,,,,,,,, +2012,4,13,21,30,2.4253514,,,,,,,,,,,,,, +2012,4,13,22,30,2.075618,,,,,,,,,,,,,, +2012,4,13,23,30,1.4810008,,,,,,,,,,,,,, +2012,4,14,0,30,0.47751194,,,,,,,,,,,,,, +2012,4,14,1,30,0.92980987,,,,,,,,,,,,,, +2012,4,14,2,30,2.008749,,,,,,,,,,,,,, +2012,4,14,3,30,2.4028344,,,,,,,,,,,,,, +2012,4,14,4,30,2.3206735,,,,,,,,,,,,,, +2012,4,14,5,30,1.9470927,,,,,,,,,,,,,, +2012,4,14,6,30,1.2537615,,,,,,,,,,,,,, +2012,4,14,7,30,0.40974212,,,,,,,,,,,,,, +2012,4,14,8,30,0.37267053,,,,,,,,,,,,,, +2012,4,14,9,30,0.90203106,,,,,,,,,,,,,, +2012,4,14,10,30,1.0592047,,,,,,,,,,,,,, +2012,4,14,11,30,0.88243264,,,,,,,,,,,,,, +2012,4,14,12,30,0.5212083,,,,,,,,,,,,,, +2012,4,14,13,30,0.10653504,,,,,,,,,,,,,, +2012,4,14,14,30,0.6649883,,,,,,,,,,,,,, +2012,4,14,15,30,1.0744003,,,,,,,,,,,,,, +2012,4,14,16,30,1.0625318,,,,,,,,,,,,,, +2012,4,14,17,30,0.66985047,,,,,,,,,,,,,, +2012,4,14,18,30,0.07288833,,,,,,,,,,,,,, +2012,4,14,19,30,0.9350375,,,,,,,,,,,,,, +2012,4,14,20,30,1.7202657,,,,,,,,,,,,,, +2012,4,14,21,30,2.137586,,,,,,,,,,,,,, +2012,4,14,22,30,2.1438353,,,,,,,,,,,,,, +2012,4,14,23,30,1.8703387,,,,,,,,,,,,,, +2012,4,15,0,30,1.3373178,,,,,,,,,,,,,, +2012,4,15,1,30,0.39838937,,,,,,,,,,,,,, +2012,4,15,2,30,0.8975498,,,,,,,,,,,,,, +2012,4,15,3,30,1.8392408,,,,,,,,,,,,,, +2012,4,15,4,30,2.1969805,,,,,,,,,,,,,, +2012,4,15,5,30,2.1728013,,,,,,,,,,,,,, +2012,4,15,6,30,1.8659337,,,,,,,,,,,,,, +2012,4,15,7,30,1.2503644,,,,,,,,,,,,,, +2012,4,15,8,30,0.47617418,,,,,,,,,,,,,, +2012,4,15,9,30,0.31705922,,,,,,,,,,,,,, +2012,4,15,10,30,0.8908783,,,,,,,,,,,,,, +2012,4,15,11,30,1.0698001,,,,,,,,,,,,,, +2012,4,15,12,30,0.9421545,,,,,,,,,,,,,, +2012,4,15,13,30,0.6749131,,,,,,,,,,,,,, +2012,4,15,14,30,0.19514205,,,,,,,,,,,,,, +2012,4,15,15,30,0.4810052,,,,,,,,,,,,,, +2012,4,15,16,30,0.9554741,,,,,,,,,,,,,, +2012,4,15,17,30,1.0089281,,,,,,,,,,,,,, +2012,4,15,18,30,0.67614603,,,,,,,,,,,,,, +2012,4,15,19,30,0.05681344,,,,,,,,,,,,,, +2012,4,15,20,30,0.73792946,,,,,,,,,,,,,, +2012,4,15,21,30,1.4341468,,,,,,,,,,,,,, +2012,4,15,22,30,1.8442018,,,,,,,,,,,,,, +2012,4,15,23,30,1.919091,,,,,,,,,,,,,, +2012,4,16,0,30,1.7249546,,,,,,,,,,,,,, +2012,4,16,1,30,1.2372748,,,,,,,,,,,,,, +2012,4,16,2,30,0.3498689,,,,,,,,,,,,,, +2012,4,16,3,30,0.8455583,,,,,,,,,,,,,, +2012,4,16,4,30,1.6845424,,,,,,,,,,,,,, +2012,4,16,5,30,2.040717,,,,,,,,,,,,,, +2012,4,16,6,30,2.0851386,,,,,,,,,,,,,, +2012,4,16,7,30,1.8376694,,,,,,,,,,,,,, +2012,4,16,8,30,1.2688099,,,,,,,,,,,,,, +2012,4,16,9,30,0.49413443,,,,,,,,,,,,,, +2012,4,16,10,30,0.36470073,,,,,,,,,,,,,, +2012,4,16,11,30,0.9788349,,,,,,,,,,,,,, +2012,4,16,12,30,1.1610527,,,,,,,,,,,,,, +2012,4,16,13,30,1.0836241,,,,,,,,,,,,,, +2012,4,16,14,30,0.888282,,,,,,,,,,,,,, +2012,4,16,15,30,0.39583513,,,,,,,,,,,,,, +2012,4,16,16,30,0.37328982,,,,,,,,,,,,,, +2012,4,16,17,30,0.9236766,,,,,,,,,,,,,, +2012,4,16,18,30,1.0367138,,,,,,,,,,,,,, +2012,4,16,19,30,0.76294315,,,,,,,,,,,,,, +2012,4,16,20,30,0.21314946,,,,,,,,,,,,,, +2012,4,16,21,30,0.50356185,,,,,,,,,,,,,, +2012,4,16,22,30,1.1668576,,,,,,,,,,,,,, +2012,4,16,23,30,1.6179409,,,,,,,,,,,,,, +2012,4,17,0,30,1.7620093,,,,,,,,,,,,,, +2012,4,17,1,30,1.6124666,,,,,,,,,,,,,, +2012,4,17,2,30,1.1387414,,,,,,,,,,,,,, +2012,4,17,3,30,0.2909235,,,,,,,,,,,,,, +2012,4,17,4,30,0.814958,,,,,,,,,,,,,, +2012,4,17,5,30,1.5853643,,,,,,,,,,,,,, +2012,4,17,6,30,1.9642494,,,,,,,,,,,,,, +2012,4,17,7,30,2.0621276,,,,,,,,,,,,,, +2012,4,17,8,30,1.8281429,,,,,,,,,,,,,, +2012,4,17,9,30,1.2384303,,,,,,,,,,,,,, +2012,4,17,10,30,0.39503342,,,,,,,,,,,,,, +2012,4,17,11,30,0.5394299,,,,,,,,,,,,,, +2012,4,17,12,30,1.1572418,,,,,,,,,,,,,, +2012,4,17,13,30,1.321764,,,,,,,,,,,,,, +2012,4,17,14,30,1.2890605,,,,,,,,,,,,,, +2012,4,17,15,30,1.1168768,,,,,,,,,,,,,, +2012,4,17,16,30,0.5382768,,,,,,,,,,,,,, +2012,4,17,17,30,0.37658855,,,,,,,,,,,,,, +2012,4,17,18,30,0.9900726,,,,,,,,,,,,,, +2012,4,17,19,30,1.1447699,,,,,,,,,,,,,, +2012,4,17,20,30,0.9174962,,,,,,,,,,,,,, +2012,4,17,21,30,0.42064682,,,,,,,,,,,,,, +2012,4,17,22,30,0.29637915,,,,,,,,,,,,,, +2012,4,17,23,30,0.97017896,,,,,,,,,,,,,, +2012,4,18,0,30,1.4719499,,,,,,,,,,,,,, +2012,4,18,1,30,1.6469654,,,,,,,,,,,,,, +2012,4,18,2,30,1.4970475,,,,,,,,,,,,,, +2012,4,18,3,30,1.0175139,,,,,,,,,,,,,, +2012,4,18,4,30,0.21094969,,,,,,,,,,,,,, +2012,4,18,5,30,0.833799,,,,,,,,,,,,,, +2012,4,18,6,30,1.5671183,,,,,,,,,,,,,, +2012,4,18,7,30,1.9640503,,,,,,,,,,,,,, +2012,4,18,8,30,2.060021,,,,,,,,,,,,,, +2012,4,18,9,30,1.7656612,,,,,,,,,,,,,, +2012,4,18,10,30,1.0877393,,,,,,,,,,,,,, +2012,4,18,11,30,0.15359107,,,,,,,,,,,,,, +2012,4,18,12,30,0.834397,,,,,,,,,,,,,, +2012,4,18,13,30,1.4040356,,,,,,,,,,,,,, +2012,4,18,14,30,1.5349106,,,,,,,,,,,,,, +2012,4,18,15,30,1.5239335,,,,,,,,,,,,,, +2012,4,18,16,30,1.297054,,,,,,,,,,,,,, +2012,4,18,17,30,0.55878395,,,,,,,,,,,,,, +2012,4,18,18,30,0.50450563,,,,,,,,,,,,,, +2012,4,18,19,30,1.1604887,,,,,,,,,,,,,, +2012,4,18,20,30,1.3278002,,,,,,,,,,,,,, +2012,4,18,21,30,1.1161072,,,,,,,,,,,,,, +2012,4,18,22,30,0.6180208,,,,,,,,,,,,,, +2012,4,18,23,30,0.16737816,,,,,,,,,,,,,, +2012,4,19,0,30,0.86186445,,,,,,,,,,,,,, +2012,4,19,1,30,1.3851472,,,,,,,,,,,,,, +2012,4,19,2,30,1.5427358,,,,,,,,,,,,,, +2012,4,19,3,30,1.3660028,,,,,,,,,,,,,, +2012,4,19,4,30,0.8733016,,,,,,,,,,,,,, +2012,4,19,5,30,0.1401371,,,,,,,,,,,,,, +2012,4,19,6,30,0.9214988,,,,,,,,,,,,,, +2012,4,19,7,30,1.6235826,,,,,,,,,,,,,, +2012,4,19,8,30,1.9903129,,,,,,,,,,,,,, +2012,4,19,9,30,2.0041115,,,,,,,,,,,,,, +2012,4,19,10,30,1.5834012,,,,,,,,,,,,,, +2012,4,19,11,30,0.78151447,,,,,,,,,,,,,, +2012,4,19,12,30,0.27099115,,,,,,,,,,,,,, +2012,4,19,13,30,1.2149761,,,,,,,,,,,,,, +2012,4,19,14,30,1.6879871,,,,,,,,,,,,,, +2012,4,19,15,30,1.7694671,,,,,,,,,,,,,, +2012,4,19,16,30,1.7301409,,,,,,,,,,,,,, +2012,4,19,17,30,1.3530073,,,,,,,,,,,,,, +2012,4,19,18,30,0.4139831,,,,,,,,,,,,,, +2012,4,19,19,30,0.772162,,,,,,,,,,,,,, +2012,4,19,20,30,1.4259315,,,,,,,,,,,,,, +2012,4,19,21,30,1.5621287,,,,,,,,,,,,,, +2012,4,19,22,30,1.314888,,,,,,,,,,,,,, +2012,4,19,23,30,0.7516439,,,,,,,,,,,,,, +2012,4,20,0,30,0.12321639,,,,,,,,,,,,,, +2012,4,20,1,30,0.831946,,,,,,,,,,,,,, +2012,4,20,2,30,1.331535,,,,,,,,,,,,,, +2012,4,20,3,30,1.442,,,,,,,,,,,,,, +2012,4,20,4,30,1.2293354,,,,,,,,,,,,,, +2012,4,20,5,30,0.70640844,,,,,,,,,,,,,, +2012,4,20,6,30,0.19053437,,,,,,,,,,,,,, +2012,4,20,7,30,1.0754856,,,,,,,,,,,,,, +2012,4,20,8,30,1.7077357,,,,,,,,,,,,,, +2012,4,20,9,30,1.9698604,,,,,,,,,,,,,, +2012,4,20,10,30,1.8343828,,,,,,,,,,,,,, +2012,4,20,11,30,1.2560867,,,,,,,,,,,,,, +2012,4,20,12,30,0.33153397,,,,,,,,,,,,,, +2012,4,20,13,30,0.7672757,,,,,,,,,,,,,, +2012,4,20,14,30,1.6283537,,,,,,,,,,,,,, +2012,4,20,15,30,1.9661707,,,,,,,,,,,,,, +2012,4,20,16,30,1.9752117,,,,,,,,,,,,,, +2012,4,20,17,30,1.8334061,,,,,,,,,,,,,, +2012,4,20,18,30,1.2167157,,,,,,,,,,,,,, +2012,4,20,19,30,0.1845903,,,,,,,,,,,,,, +2012,4,20,20,30,1.1696067,,,,,,,,,,,,,, +2012,4,20,21,30,1.7466128,,,,,,,,,,,,,, +2012,4,20,22,30,1.796273,,,,,,,,,,,,,, +2012,4,20,23,30,1.4549592,,,,,,,,,,,,,, +2012,4,21,0,30,0.77961606,,,,,,,,,,,,,, +2012,4,21,1,30,0.13071214,,,,,,,,,,,,,, +2012,4,21,2,30,0.8634472,,,,,,,,,,,,,, +2012,4,21,3,30,1.3046291,,,,,,,,,,,,,, +2012,4,21,4,30,1.3567293,,,,,,,,,,,,,, +2012,4,21,5,30,1.0903404,,,,,,,,,,,,,, +2012,4,21,6,30,0.501172,,,,,,,,,,,,,, +2012,4,21,7,30,0.4108879,,,,,,,,,,,,,, +2012,4,21,8,30,1.2587488,,,,,,,,,,,,,, +2012,4,21,9,30,1.7535746,,,,,,,,,,,,,, +2012,4,21,10,30,1.8508348,,,,,,,,,,,,,, +2012,4,21,11,30,1.5379393,,,,,,,,,,,,,, +2012,4,21,12,30,0.8027083,,,,,,,,,,,,,, +2012,4,21,13,30,0.23580512,,,,,,,,,,,,,, +2012,4,21,14,30,1.3048999,,,,,,,,,,,,,, +2012,4,21,15,30,2.010211,,,,,,,,,,,,,, +2012,4,21,16,30,2.1868293,,,,,,,,,,,,,, +2012,4,21,17,30,2.0912976,,,,,,,,,,,,,, +2012,4,21,18,30,1.7636741,,,,,,,,,,,,,, +2012,4,21,19,30,0.8557204,,,,,,,,,,,,,, +2012,4,21,20,30,0.5604411,,,,,,,,,,,,,, +2012,4,21,21,30,1.6312698,,,,,,,,,,,,,, +2012,4,21,22,30,2.0501735,,,,,,,,,,,,,, +2012,4,21,23,30,1.962487,,,,,,,,,,,,,, +2012,4,22,0,30,1.4831463,,,,,,,,,,,,,, +2012,4,22,1,30,0.68381965,,,,,,,,,,,,,, +2012,4,22,2,30,0.23745057,,,,,,,,,,,,,, +2012,4,22,3,30,0.9467395,,,,,,,,,,,,,, +2012,4,22,4,30,1.3100543,,,,,,,,,,,,,, +2012,4,22,5,30,1.286003,,,,,,,,,,,,,, +2012,4,22,6,30,0.92603505,,,,,,,,,,,,,, +2012,4,22,7,30,0.2454404,,,,,,,,,,,,,, +2012,4,22,8,30,0.6895209,,,,,,,,,,,,,, +2012,4,22,9,30,1.4136428,,,,,,,,,,,,,, +2012,4,22,10,30,1.7158086,,,,,,,,,,,,,, +2012,4,22,11,30,1.6287413,,,,,,,,,,,,,, +2012,4,22,12,30,1.1420363,,,,,,,,,,,,,, +2012,4,22,13,30,0.2668782,,,,,,,,,,,,,, +2012,4,22,14,30,0.82983047,,,,,,,,,,,,,, +2012,4,22,15,30,1.8037649,,,,,,,,,,,,,, +2012,4,22,16,30,2.2982335,,,,,,,,,,,,,, +2012,4,22,17,30,2.3027062,,,,,,,,,,,,,, +2012,4,22,18,30,2.0636973,,,,,,,,,,,,,, +2012,4,22,19,30,1.480603,,,,,,,,,,,,,, +2012,4,22,20,30,0.31931812,,,,,,,,,,,,,, +2012,4,22,21,30,1.1659043,,,,,,,,,,,,,, +2012,4,22,22,30,2.054418,,,,,,,,,,,,,, +2012,4,22,23,30,2.2570713,,,,,,,,,,,,,, +2012,4,23,0,30,2.0059483,,,,,,,,,,,,,, +2012,4,23,1,30,1.3732097,,,,,,,,,,,,,, +2012,4,23,2,30,0.4724875,,,,,,,,,,,,,, +2012,4,23,3,30,0.4354205,,,,,,,,,,,,,, +2012,4,23,4,30,1.0713904,,,,,,,,,,,,,, +2012,4,23,5,30,1.3347937,,,,,,,,,,,,,, +2012,4,23,6,30,1.1971728,,,,,,,,,,,,,, +2012,4,23,7,30,0.7028198,,,,,,,,,,,,,, +2012,4,23,8,30,0.15538612,,,,,,,,,,,,,, +2012,4,23,9,30,0.9604837,,,,,,,,,,,,,, +2012,4,23,10,30,1.4947975,,,,,,,,,,,,,, +2012,4,23,11,30,1.5912523,,,,,,,,,,,,,, +2012,4,23,12,30,1.332417,,,,,,,,,,,,,, +2012,4,23,13,30,0.6839088,,,,,,,,,,,,,, +2012,4,23,14,30,0.31618533,,,,,,,,,,,,,, +2012,4,23,15,30,1.3980255,,,,,,,,,,,,,, +2012,4,23,16,30,2.1935217,,,,,,,,,,,,,, +2012,4,23,17,30,2.4511847,,,,,,,,,,,,,, +2012,4,23,18,30,2.2845497,,,,,,,,,,,,,, +2012,4,23,19,30,1.8627942,,,,,,,,,,,,,, +2012,4,23,20,30,0.99755126,,,,,,,,,,,,,, +2012,4,23,21,30,0.43781585,,,,,,,,,,,,,, +2012,4,23,22,30,1.7383249,,,,,,,,,,,,,, +2012,4,23,23,30,2.3428981,,,,,,,,,,,,,, +2012,4,24,0,30,2.3189416,,,,,,,,,,,,,, +2012,4,24,1,30,1.9086714,,,,,,,,,,,,,, +2012,4,24,2,30,1.1334436,,,,,,,,,,,,,, +2012,4,24,3,30,0.18617252,,,,,,,,,,,,,, +2012,4,24,4,30,0.6793121,,,,,,,,,,,,,, +2012,4,24,5,30,1.2037592,,,,,,,,,,,,,, +2012,4,24,6,30,1.3339158,,,,,,,,,,,,,, +2012,4,24,7,30,1.0452914,,,,,,,,,,,,,, +2012,4,24,8,30,0.41202474,,,,,,,,,,,,,, +2012,4,24,9,30,0.4462153,,,,,,,,,,,,,, +2012,4,24,10,30,1.1710069,,,,,,,,,,,,,, +2012,4,24,11,30,1.4901483,,,,,,,,,,,,,, +2012,4,24,12,30,1.4040021,,,,,,,,,,,,,, +2012,4,24,13,30,0.99101627,,,,,,,,,,,,,, +2012,4,24,14,30,0.19301613,,,,,,,,,,,,,, +2012,4,24,15,30,0.8800354,,,,,,,,,,,,,, +2012,4,24,16,30,1.8723898,,,,,,,,,,,,,, +2012,4,24,17,30,2.432044,,,,,,,,,,,,,, +2012,4,24,18,30,2.4586747,,,,,,,,,,,,,, +2012,4,24,19,30,2.1267765,,,,,,,,,,,,,, +2012,4,24,20,30,1.4985363,,,,,,,,,,,,,, +2012,4,24,21,30,0.40181798,,,,,,,,,,,,,, +2012,4,24,22,30,1.0919641,,,,,,,,,,,,,, +2012,4,24,23,30,2.1568177,,,,,,,,,,,,,, +2012,4,25,0,30,2.4525537,,,,,,,,,,,,,, +2012,4,25,1,30,2.2388282,,,,,,,,,,,,,, +2012,4,25,2,30,1.6910679,,,,,,,,,,,,,, +2012,4,25,3,30,0.8036767,,,,,,,,,,,,,, +2012,4,25,4,30,0.19824596,,,,,,,,,,,,,, +2012,4,25,5,30,0.90720767,,,,,,,,,,,,,, +2012,4,25,6,30,1.2863834,,,,,,,,,,,,,, +2012,4,25,7,30,1.2570064,,,,,,,,,,,,,, +2012,4,25,8,30,0.8125666,,,,,,,,,,,,,, +2012,4,25,9,30,0.13170412,,,,,,,,,,,,,, +2012,4,25,10,30,0.7352744,,,,,,,,,,,,,, +2012,4,25,11,30,1.2916363,,,,,,,,,,,,,, +2012,4,25,12,30,1.412534,,,,,,,,,,,,,, +2012,4,25,13,30,1.1758536,,,,,,,,,,,,,, +2012,4,25,14,30,0.6196004,,,,,,,,,,,,,, +2012,4,25,15,30,0.30662146,,,,,,,,,,,,,, +2012,4,25,16,30,1.3829792,,,,,,,,,,,,,, +2012,4,25,17,30,2.2075012,,,,,,,,,,,,,, +2012,4,25,18,30,2.5119567,,,,,,,,,,,,,, +2012,4,25,19,30,2.3357766,,,,,,,,,,,,,, +2012,4,25,20,30,1.8496977,,,,,,,,,,,,,, +2012,4,25,21,30,1.0283926,,,,,,,,,,,,,, +2012,4,25,22,30,0.28764677,,,,,,,,,,,,,, +2012,4,25,23,30,1.6167418,,,,,,,,,,,,,, +2012,4,26,0,30,2.3705354,,,,,,,,,,,,,, +2012,4,26,1,30,2.4052494,,,,,,,,,,,,,, +2012,4,26,2,30,2.0583832,,,,,,,,,,,,,, +2012,4,26,3,30,1.3986751,,,,,,,,,,,,,, +2012,4,26,4,30,0.4515334,,,,,,,,,,,,,, +2012,4,26,5,30,0.4786932,,,,,,,,,,,,,, +2012,4,26,6,30,1.0520462,,,,,,,,,,,,,, +2012,4,26,7,30,1.2729385,,,,,,,,,,,,,, +2012,4,26,8,30,1.0900455,,,,,,,,,,,,,, +2012,4,26,9,30,0.5308548,,,,,,,,,,,,,, +2012,4,26,10,30,0.2657586,,,,,,,,,,,,,, +2012,4,26,11,30,0.93711317,,,,,,,,,,,,,, +2012,4,26,12,30,1.3178334,,,,,,,,,,,,,, +2012,4,26,13,30,1.2788128,,,,,,,,,,,,,, +2012,4,26,14,30,0.9167992,,,,,,,,,,,,,, +2012,4,26,15,30,0.23669598,,,,,,,,,,,,,, +2012,4,26,16,30,0.7710381,,,,,,,,,,,,,, +2012,4,26,17,30,1.7750998,,,,,,,,,,,,,, +2012,4,26,18,30,2.3831553,,,,,,,,,,,,,, +2012,4,26,19,30,2.4506428,,,,,,,,,,,,,, +2012,4,26,20,30,2.1141224,,,,,,,,,,,,,, +2012,4,26,21,30,1.5016172,,,,,,,,,,,,,, +2012,4,26,22,30,0.5468896,,,,,,,,,,,,,, +2012,4,26,23,30,0.79249656,,,,,,,,,,,,,, +2012,4,27,0,30,1.9437672,,,,,,,,,,,,,, +2012,4,27,1,30,2.404439,,,,,,,,,,,,,, +2012,4,27,2,30,2.261861,,,,,,,,,,,,,, +2012,4,27,3,30,1.8302523,,,,,,,,,,,,,, +2012,4,27,4,30,1.0906441,,,,,,,,,,,,,, +2012,4,27,5,30,0.16873029,,,,,,,,,,,,,, +2012,4,27,6,30,0.6581702,,,,,,,,,,,,,, +2012,4,27,7,30,1.0804367,,,,,,,,,,,,,, +2012,4,27,8,30,1.1673926,,,,,,,,,,,,,, +2012,4,27,9,30,0.8732623,,,,,,,,,,,,,, +2012,4,27,10,30,0.2705966,,,,,,,,,,,,,, +2012,4,27,11,30,0.45501798,,,,,,,,,,,,,, +2012,4,27,12,30,1.0252228,,,,,,,,,,,,,, +2012,4,27,13,30,1.2607658,,,,,,,,,,,,,, +2012,4,27,14,30,1.1048862,,,,,,,,,,,,,, +2012,4,27,15,30,0.64268315,,,,,,,,,,,,,, +2012,4,27,16,30,0.1573717,,,,,,,,,,,,,, +2012,4,27,17,30,1.1483043,,,,,,,,,,,,,, +2012,4,27,18,30,2.0158942,,,,,,,,,,,,,, +2012,4,27,19,30,2.3988435,,,,,,,,,,,,,, +2012,4,27,20,30,2.2790601,,,,,,,,,,,,,, +2012,4,27,21,30,1.8395783,,,,,,,,,,,,,, +2012,4,27,22,30,1.1512382,,,,,,,,,,,,,, +2012,4,27,23,30,0.18043812,,,,,,,,,,,,,, +2012,4,28,0,30,1.1509725,,,,,,,,,,,,,, +2012,4,28,1,30,2.0866904,,,,,,,,,,,,,, +2012,4,28,2,30,2.3248591,,,,,,,,,,,,,, +2012,4,28,3,30,2.0829973,,,,,,,,,,,,,, +2012,4,28,4,30,1.6025368,,,,,,,,,,,,,, +2012,4,28,5,30,0.8291591,,,,,,,,,,,,,, +2012,4,28,6,30,0.10426116,,,,,,,,,,,,,, +2012,4,28,7,30,0.7109827,,,,,,,,,,,,,, +2012,4,28,8,30,1.023314,,,,,,,,,,,,,, +2012,4,28,9,30,1.029129,,,,,,,,,,,,,, +2012,4,28,10,30,0.6813297,,,,,,,,,,,,,, +2012,4,28,11,30,0.13779698,,,,,,,,,,,,,, +2012,4,28,12,30,0.5360193,,,,,,,,,,,,,, +2012,4,28,13,30,1.00215,,,,,,,,,,,,,, +2012,4,28,14,30,1.1462133,,,,,,,,,,,,,, +2012,4,28,15,30,0.91941243,,,,,,,,,,,,,, +2012,4,28,16,30,0.39464095,,,,,,,,,,,,,, +2012,4,28,17,30,0.4374129,,,,,,,,,,,,,, +2012,4,28,18,30,1.3806245,,,,,,,,,,,,,, +2012,4,28,19,30,2.079761,,,,,,,,,,,,,, +2012,4,28,20,30,2.2715554,,,,,,,,,,,,,, +2012,4,28,21,30,2.0408347,,,,,,,,,,,,,, +2012,4,28,22,30,1.5687435,,,,,,,,,,,,,, +2012,4,28,23,30,0.86186075,,,,,,,,,,,,,, +2012,4,29,0,30,0.21652517,,,,,,,,,,,,,, +2012,4,29,1,30,1.354233,,,,,,,,,,,,,, +2012,4,29,2,30,2.1021404,,,,,,,,,,,,,, +2012,4,29,3,30,2.195459,,,,,,,,,,,,,, +2012,4,29,4,30,1.9117619,,,,,,,,,,,,,, +2012,4,29,5,30,1.4166763,,,,,,,,,,,,,, +2012,4,29,6,30,0.657985,,,,,,,,,,,,,, +2012,4,29,7,30,0.15913144,,,,,,,,,,,,,, +2012,4,29,8,30,0.6901476,,,,,,,,,,,,,, +2012,4,29,9,30,0.9636917,,,,,,,,,,,,,, +2012,4,29,10,30,0.9394778,,,,,,,,,,,,,, +2012,4,29,11,30,0.58604324,,,,,,,,,,,,,, +2012,4,29,12,30,0.12013109,,,,,,,,,,,,,, +2012,4,29,13,30,0.4843874,,,,,,,,,,,,,, +2012,4,29,14,30,0.9007037,,,,,,,,,,,,,, +2012,4,29,15,30,1.0209988,,,,,,,,,,,,,, +2012,4,29,16,30,0.77293664,,,,,,,,,,,,,, +2012,4,29,17,30,0.23399511,,,,,,,,,,,,,, +2012,4,29,18,30,0.58217686,,,,,,,,,,,,,, +2012,4,29,19,30,1.4264714,,,,,,,,,,,,,, +2012,4,29,20,30,1.968144,,,,,,,,,,,,,, +2012,4,29,21,30,2.0426838,,,,,,,,,,,,,, +2012,4,29,22,30,1.7923,,,,,,,,,,,,,, +2012,4,29,23,30,1.3518186,,,,,,,,,,,,,, +2012,4,30,0,30,0.6618477,,,,,,,,,,,,,, +2012,4,30,1,30,0.3828235,,,,,,,,,,,,,, +2012,4,30,2,30,1.4429642,,,,,,,,,,,,,, +2012,4,30,3,30,2.0474668,,,,,,,,,,,,,, +2012,4,30,4,30,2.060492,,,,,,,,,,,,,, +2012,4,30,5,30,1.7792718,,,,,,,,,,,,,, +2012,4,30,6,30,1.2997416,,,,,,,,,,,,,, +2012,4,30,7,30,0.5765868,,,,,,,,,,,,,, +2012,4,30,8,30,0.16968179,,,,,,,,,,,,,, +2012,4,30,9,30,0.6948857,,,,,,,,,,,,,, +2012,4,30,10,30,0.98812246,,,,,,,,,,,,,, +2012,4,30,11,30,0.95983094,,,,,,,,,,,,,, +2012,4,30,12,30,0.6283509,,,,,,,,,,,,,, +2012,4,30,13,30,0.1765712,,,,,,,,,,,,,, +2012,4,30,14,30,0.33373934,,,,,,,,,,,,,, +2012,4,30,15,30,0.78418857,,,,,,,,,,,,,, +1999,4,30,16,30,0.9494273,,,,,,,,,,,,,, +1999,4,30,17,30,0.7255658,,,,,,,,,,,,,, +1999,4,30,18,30,0.20945242,,,,,,,,,,,,,, +1999,4,30,19,30,0.5435043,,,,,,,,,,,,,, +1999,4,30,20,30,1.2832998,,,,,,,,,,,,,, +1999,4,30,21,30,1.7244154,,,,,,,,,,,,,, +1999,4,30,22,30,1.7795223,,,,,,,,,,,,,, +1999,4,30,23,30,1.5880945,,,,,,,,,,,,,, +1999,5,1,0,30,1.2098378,,,,,,,,,,,,,, +1999,5,1,1,30,0.540329,,,,,,,,,,,,,, +1999,5,1,2,30,0.47871017,,,,,,,,,,,,,, +1999,5,1,3,30,1.4610851,,,,,,,,,,,,,, +1999,5,1,4,30,1.9664205,,,,,,,,,,,,,, +1999,5,1,5,30,1.9540241,,,,,,,,,,,,,, +1999,5,1,6,30,1.7063735,,,,,,,,,,,,,, +1999,5,1,7,30,1.2461928,,,,,,,,,,,,,, +1999,5,1,8,30,0.531928,,,,,,,,,,,,,, +1999,5,1,9,30,0.22299302,,,,,,,,,,,,,, +1999,5,1,10,30,0.81192064,,,,,,,,,,,,,, +1999,5,1,11,30,1.1427972,,,,,,,,,,,,,, +1999,5,1,12,30,1.1098267,,,,,,,,,,,,,, +1999,5,1,13,30,0.80863845,,,,,,,,,,,,,, +1999,5,1,14,30,0.39533085,,,,,,,,,,,,,, +1999,5,1,15,30,0.1625442,,,,,,,,,,,,,, +1999,5,1,16,30,0.7325697,,,,,,,,,,,,,, +1999,5,1,17,30,0.9926904,,,,,,,,,,,,,, +1999,5,1,18,30,0.82167494,,,,,,,,,,,,,, +1999,5,1,19,30,0.34867972,,,,,,,,,,,,,, +1999,5,1,20,30,0.32812035,,,,,,,,,,,,,, +1999,5,1,21,30,1.0038869,,,,,,,,,,,,,, +1999,5,1,22,30,1.4324672,,,,,,,,,,,,,, +1999,5,1,23,30,1.5552533,,,,,,,,,,,,,, +1999,5,2,0,30,1.4573805,,,,,,,,,,,,,, +1999,5,2,1,30,1.1310092,,,,,,,,,,,,,, +1999,5,2,2,30,0.47077948,,,,,,,,,,,,,, +1999,5,2,3,30,0.52427137,,,,,,,,,,,,,, +1999,5,2,4,30,1.4451505,,,,,,,,,,,,,, +1999,5,2,5,30,1.8989168,,,,,,,,,,,,,, +1999,5,2,6,30,1.9035461,,,,,,,,,,,,,, +1999,5,2,7,30,1.6886585,,,,,,,,,,,,,, +1999,5,2,8,30,1.209461,,,,,,,,,,,,,, +1999,5,2,9,30,0.44310433,,,,,,,,,,,,,, +1999,5,2,10,30,0.39464033,,,,,,,,,,,,,, +1999,5,2,11,30,1.0743623,,,,,,,,,,,,,, +1999,5,2,12,30,1.4210382,,,,,,,,,,,,,, +1999,5,2,13,30,1.3673916,,,,,,,,,,,,,, +1999,5,2,14,30,1.0866644,,,,,,,,,,,,,, +1999,5,2,15,30,0.6552623,,,,,,,,,,,,,, +1999,5,2,16,30,0.106507584,,,,,,,,,,,,,, +1999,5,2,17,30,0.8144453,,,,,,,,,,,,,, +1999,5,2,18,30,1.184495,,,,,,,,,,,,,, +1999,5,2,19,30,1.0686876,,,,,,,,,,,,,, +1999,5,2,20,30,0.640357,,,,,,,,,,,,,, +1999,5,2,21,30,0.041230716,,,,,,,,,,,,,, +1999,5,2,22,30,0.6875731,,,,,,,,,,,,,, +1999,5,2,23,30,1.1858137,,,,,,,,,,,,,, +1999,5,3,0,30,1.4162058,,,,,,,,,,,,,, +1999,5,3,1,30,1.3950632,,,,,,,,,,,,,, +1999,5,3,2,30,1.0915773,,,,,,,,,,,,,, +1999,5,3,3,30,0.43338293,,,,,,,,,,,,,, +1999,5,3,4,30,0.5426451,,,,,,,,,,,,,, +1999,5,3,5,30,1.4345292,,,,,,,,,,,,,, +1999,5,3,6,30,1.8818371,,,,,,,,,,,,,, +1999,5,3,7,30,1.9121485,,,,,,,,,,,,,, +1999,5,3,8,30,1.6851528,,,,,,,,,,,,,, +1999,5,3,9,30,1.12316,,,,,,,,,,,,,, +1999,5,3,10,30,0.24950036,,,,,,,,,,,,,, +1999,5,3,11,30,0.70927185,,,,,,,,,,,,,, +1999,5,3,12,30,1.4584945,,,,,,,,,,,,,, +1999,5,3,13,30,1.7755302,,,,,,,,,,,,,, +1999,5,3,14,30,1.6805,,,,,,,,,,,,,, +1999,5,3,15,30,1.3912165,,,,,,,,,,,,,, +1999,5,3,16,30,0.85693204,,,,,,,,,,,,,, +1999,5,3,17,30,0.13376622,,,,,,,,,,,,,, +1999,5,3,18,30,1.0624255,,,,,,,,,,,,,, +1999,5,3,19,30,1.5166016,,,,,,,,,,,,,, +1999,5,3,20,30,1.4278599,,,,,,,,,,,,,, +1999,5,3,21,30,1.0105071,,,,,,,,,,,,,, +1999,5,3,22,30,0.35525444,,,,,,,,,,,,,, +1999,5,3,23,30,0.4382543,,,,,,,,,,,,,, +1999,5,4,0,30,1.0443327,,,,,,,,,,,,,, +1999,5,4,1,30,1.3656342,,,,,,,,,,,,,, +1999,5,4,2,30,1.3784359,,,,,,,,,,,,,, +1999,5,4,3,30,1.0763583,,,,,,,,,,,,,, +1999,5,4,4,30,0.4144423,,,,,,,,,,,,,, +1999,5,4,5,30,0.56594044,,,,,,,,,,,,,, +1999,5,4,6,30,1.4699306,,,,,,,,,,,,,, +1999,5,4,7,30,1.9262778,,,,,,,,,,,,,, +1999,5,4,8,30,1.9429858,,,,,,,,,,,,,, +1999,5,4,9,30,1.6354011,,,,,,,,,,,,,, +1999,5,4,10,30,0.93969727,,,,,,,,,,,,,, +1999,5,4,11,30,0.09391643,,,,,,,,,,,,,, +1999,5,4,12,30,1.1397145,,,,,,,,,,,,,, +1999,5,4,13,30,1.9036329,,,,,,,,,,,,,, +1999,5,4,14,30,2.1402001,,,,,,,,,,,,,, +1999,5,4,15,30,1.9843102,,,,,,,,,,,,,, +1999,5,4,16,30,1.6416365,,,,,,,,,,,,,, +1999,5,4,17,30,0.9171349,,,,,,,,,,,,,, +1999,5,4,18,30,0.33480775,,,,,,,,,,,,,, +1999,5,4,19,30,1.4628303,,,,,,,,,,,,,, +1999,5,4,20,30,1.9368426,,,,,,,,,,,,,, +1999,5,4,21,30,1.8220314,,,,,,,,,,,,,, +1999,5,4,22,30,1.3592868,,,,,,,,,,,,,, +1999,5,4,23,30,0.60762846,,,,,,,,,,,,,, +1999,5,5,0,30,0.31217003,,,,,,,,,,,,,, +1999,5,5,1,30,1.01443,,,,,,,,,,,,,, +1999,5,5,2,30,1.3779626,,,,,,,,,,,,,, +1999,5,5,3,30,1.388599,,,,,,,,,,,,,, +1999,5,5,4,30,1.0763243,,,,,,,,,,,,,, +1999,5,5,5,30,0.39039493,,,,,,,,,,,,,, +1999,5,5,6,30,0.633799,,,,,,,,,,,,,, +1999,5,5,7,30,1.5677879,,,,,,,,,,,,,, +1999,5,5,8,30,1.998677,,,,,,,,,,,,,, +1999,5,5,9,30,1.935523,,,,,,,,,,,,,, +1999,5,5,10,30,1.4959211,,,,,,,,,,,,,, +1999,5,5,11,30,0.6524745,,,,,,,,,,,,,, +1999,5,5,12,30,0.49998587,,,,,,,,,,,,,, +1999,5,5,13,30,1.6287854,,,,,,,,,,,,,, +1999,5,5,14,30,2.336557,,,,,,,,,,,,,, +1999,5,5,15,30,2.4512951,,,,,,,,,,,,,, +1999,5,5,16,30,2.220039,,,,,,,,,,,,,, +1999,5,5,17,30,1.7706953,,,,,,,,,,,,,, +1999,5,5,18,30,0.787866,,,,,,,,,,,,,, +1999,5,5,19,30,0.73795,,,,,,,,,,,,,, +1999,5,5,20,30,1.954819,,,,,,,,,,,,,, +1999,5,5,21,30,2.360461,,,,,,,,,,,,,, +1999,5,5,22,30,2.1611972,,,,,,,,,,,,,, +1999,5,5,23,30,1.6025015,,,,,,,,,,,,,, +1999,5,6,0,30,0.7196444,,,,,,,,,,,,,, +1999,5,6,1,30,0.30628386,,,,,,,,,,,,,, +1999,5,6,2,30,1.0646693,,,,,,,,,,,,,, +1999,5,6,3,30,1.4241087,,,,,,,,,,,,,, +1999,5,6,4,30,1.4121768,,,,,,,,,,,,,, +1999,5,6,5,30,1.0717967,,,,,,,,,,,,,, +1999,5,6,6,30,0.32634917,,,,,,,,,,,,,, +1999,5,6,7,30,0.7671971,,,,,,,,,,,,,, +1999,5,6,8,30,1.6989009,,,,,,,,,,,,,, +1999,5,6,9,30,2.0376647,,,,,,,,,,,,,, +1999,5,6,10,30,1.8449177,,,,,,,,,,,,,, +1999,5,6,11,30,1.262757,,,,,,,,,,,,,, +1999,5,6,12,30,0.29084617,,,,,,,,,,,,,, +1999,5,6,13,30,0.97093374,,,,,,,,,,,,,, +1999,5,6,14,30,2.108439,,,,,,,,,,,,,, +1999,5,6,15,30,2.6905277,,,,,,,,,,,,,, +1999,5,6,16,30,2.6640077,,,,,,,,,,,,,, +1999,5,6,17,30,2.3483431,,,,,,,,,,,,,, +1999,5,6,18,30,1.7378756,,,,,,,,,,,,,, +1999,5,6,19,30,0.4730862,,,,,,,,,,,,,, +1999,5,6,20,30,1.2677071,,,,,,,,,,,,,, +1999,5,6,21,30,2.4411907,,,,,,,,,,,,,, +1999,5,6,22,30,2.6962423,,,,,,,,,,,,,, +1999,5,6,23,30,2.3780377,,,,,,,,,,,,,, +1999,5,7,0,30,1.7040914,,,,,,,,,,,,,, +1999,5,7,1,30,0.6975831,,,,,,,,,,,,,, +1999,5,7,2,30,0.38984305,,,,,,,,,,,,,, +1999,5,7,3,30,1.1549737,,,,,,,,,,,,,, +1999,5,7,4,30,1.4807731,,,,,,,,,,,,,, +1999,5,7,5,30,1.4282365,,,,,,,,,,,,,, +1999,5,7,6,30,1.0300739,,,,,,,,,,,,,, +1999,5,7,7,30,0.20253344,,,,,,,,,,,,,, +1999,5,7,8,30,0.9441144,,,,,,,,,,,,,, +1999,5,7,9,30,1.8034694,,,,,,,,,,,,,, +1999,5,7,10,30,1.9967241,,,,,,,,,,,,,, +1999,5,7,11,30,1.6682951,,,,,,,,,,,,,, +1999,5,7,12,30,0.9637911,,,,,,,,,,,,,, +1999,5,7,13,30,0.14479226,,,,,,,,,,,,,, +1999,5,7,14,30,1.4424131,,,,,,,,,,,,,, +1999,5,7,15,30,2.5113158,,,,,,,,,,,,,, +1999,5,7,16,30,2.920007,,,,,,,,,,,,,, +1999,5,7,17,30,2.7597802,,,,,,,,,,,,,, +1999,5,7,18,30,2.3506415,,,,,,,,,,,,,, +1999,5,7,19,30,1.5342209,,,,,,,,,,,,,, +1999,5,7,20,30,0.15614292,,,,,,,,,,,,,, +1999,5,7,21,30,1.8152978,,,,,,,,,,,,,, +1999,5,7,22,30,2.8165498,,,,,,,,,,,,,, +1999,5,7,23,30,2.8815393,,,,,,,,,,,,,, +1999,5,8,0,30,2.452534,,,,,,,,,,,,,, +1999,5,8,1,30,1.6774229,,,,,,,,,,,,,, +1999,5,8,2,30,0.58293706,,,,,,,,,,,,,, +1999,5,8,3,30,0.52099717,,,,,,,,,,,,,, +1999,5,8,4,30,1.2524445,,,,,,,,,,,,,, +1999,5,8,5,30,1.523026,,,,,,,,,,,,,, +1999,5,8,6,30,1.4065912,,,,,,,,,,,,,, +1999,5,8,7,30,0.92697203,,,,,,,,,,,,,, +1999,5,8,8,30,0.09531173,,,,,,,,,,,,,, +1999,5,8,9,30,1.1097233,,,,,,,,,,,,,, +1999,5,8,10,30,1.8328251,,,,,,,,,,,,,, +1999,5,8,11,30,1.8732198,,,,,,,,,,,,,, +1999,5,8,12,30,1.4373838,,,,,,,,,,,,,, +1999,5,8,13,30,0.6369745,,,,,,,,,,,,,, +1999,5,8,14,30,0.5458024,,,,,,,,,,,,,, +1999,5,8,15,30,1.8534228,,,,,,,,,,,,,, +1999,5,8,16,30,2.7835648,,,,,,,,,,,,,, +1999,5,8,17,30,3.0083916,,,,,,,,,,,,,, +1999,5,8,18,30,2.7400718,,,,,,,,,,,,,, +1999,5,8,19,30,2.2241657,,,,,,,,,,,,,, +1999,5,8,20,30,1.187414,,,,,,,,,,,,,, +1999,5,8,21,30,0.58606786,,,,,,,,,,,,,, +1999,5,8,22,30,2.260134,,,,,,,,,,,,,, +1999,5,8,23,30,3.0079787,,,,,,,,,,,,,, +1999,5,9,0,30,2.905937,,,,,,,,,,,,,, +1999,5,9,1,30,2.4064987,,,,,,,,,,,,,, +1999,5,9,2,30,1.5579344,,,,,,,,,,,,,, +1999,5,9,3,30,0.4199745,,,,,,,,,,,,,, +1999,5,9,4,30,0.6609155,,,,,,,,,,,,,, +1999,5,9,5,30,1.3285394,,,,,,,,,,,,,, +1999,5,9,6,30,1.523454,,,,,,,,,,,,,, +1999,5,9,7,30,1.3266236,,,,,,,,,,,,,, +1999,5,9,8,30,0.77089703,,,,,,,,,,,,,, +1999,5,9,9,30,0.1891087,,,,,,,,,,,,,, +1999,5,9,10,30,1.2126114,,,,,,,,,,,,,, +1999,5,9,11,30,1.7786148,,,,,,,,,,,,,, +1999,5,9,12,30,1.7002968,,,,,,,,,,,,,, +1999,5,9,13,30,1.1920496,,,,,,,,,,,,,, +1999,5,9,14,30,0.31849498,,,,,,,,,,,,,, +1999,5,9,15,30,0.9068187,,,,,,,,,,,,,, +1999,5,9,16,30,2.147478,,,,,,,,,,,,,, +1999,5,9,17,30,2.8972507,,,,,,,,,,,,,, +1999,5,9,18,30,2.962905,,,,,,,,,,,,,, +1999,5,9,19,30,2.614378,,,,,,,,,,,,,, +1999,5,9,20,30,1.9832375,,,,,,,,,,,,,, +1999,5,9,21,30,0.76528037,,,,,,,,,,,,,, +1999,5,9,22,30,1.0501993,,,,,,,,,,,,,, +1999,5,9,23,30,2.5138173,,,,,,,,,,,,,, +1999,5,10,0,30,3.0050292,,,,,,,,,,,,,, +1999,5,10,1,30,2.8041453,,,,,,,,,,,,,, +1999,5,10,2,30,2.2750003,,,,,,,,,,,,,, +1999,5,10,3,30,1.3779008,,,,,,,,,,,,,, +1999,5,10,4,30,0.2487865,,,,,,,,,,,,,, +1999,5,10,5,30,0.77673465,,,,,,,,,,,,,, +1999,5,10,6,30,1.3585898,,,,,,,,,,,,,, +1999,5,10,7,30,1.4678314,,,,,,,,,,,,,, +1999,5,10,8,30,1.1974615,,,,,,,,,,,,,, +1999,5,10,9,30,0.6035822,,,,,,,,,,,,,, +1999,5,10,10,30,0.31685928,,,,,,,,,,,,,, +1999,5,10,11,30,1.2324167,,,,,,,,,,,,,, +1999,5,10,12,30,1.6660045,,,,,,,,,,,,,, +1999,5,10,13,30,1.5165226,,,,,,,,,,,,,, +1999,5,10,14,30,0.9619481,,,,,,,,,,,,,, +1999,5,10,15,30,0.058383603,,,,,,,,,,,,,, +1999,5,10,16,30,1.1747482,,,,,,,,,,,,,, +1999,5,10,17,30,2.2875962,,,,,,,,,,,,,, +1999,5,10,18,30,2.852237,,,,,,,,,,,,,, +1999,5,10,19,30,2.8018532,,,,,,,,,,,,,, +1999,5,10,20,30,2.3971667,,,,,,,,,,,,,, +1999,5,10,21,30,1.6661406,,,,,,,,,,,,,, +1999,5,10,22,30,0.36720192,,,,,,,,,,,,,, +1999,5,10,23,30,1.3676908,,,,,,,,,,,,,, +1999,5,11,0,30,2.5575633,,,,,,,,,,,,,, +1999,5,11,1,30,2.8545918,,,,,,,,,,,,,, +1999,5,11,2,30,2.6245522,,,,,,,,,,,,,, +1999,5,11,3,30,2.085021,,,,,,,,,,,,,, +1999,5,11,4,30,1.1661162,,,,,,,,,,,,,, +1999,5,11,5,30,0.117162146,,,,,,,,,,,,,, +1999,5,11,6,30,0.84287196,,,,,,,,,,,,,, +1999,5,11,7,30,1.3352805,,,,,,,,,,,,,, +1999,5,11,8,30,1.3700911,,,,,,,,,,,,,, +1999,5,11,9,30,1.0574137,,,,,,,,,,,,,, +1999,5,11,10,30,0.47643024,,,,,,,,,,,,,, +1999,5,11,11,30,0.37311175,,,,,,,,,,,,,, +1999,5,11,12,30,1.17821,,,,,,,,,,,,,, +1999,5,11,13,30,1.5261725,,,,,,,,,,,,,, +1999,5,11,14,30,1.3447076,,,,,,,,,,,,,, +1999,5,11,15,30,0.76527506,,,,,,,,,,,,,, +1999,5,11,16,30,0.18199836,,,,,,,,,,,,,, +1999,5,11,17,30,1.3150626,,,,,,,,,,,,,, +1999,5,11,18,30,2.2636971,,,,,,,,,,,,,, +1999,5,11,19,30,2.667728,,,,,,,,,,,,,, +1999,5,11,20,30,2.5486255,,,,,,,,,,,,,, +1999,5,11,21,30,2.1154857,,,,,,,,,,,,,, +1999,5,11,22,30,1.3308663,,,,,,,,,,,,,, +1999,5,11,23,30,0.15335174,,,,,,,,,,,,,, +1999,5,12,0,30,1.5077512,,,,,,,,,,,,,, +1999,5,12,1,30,2.4398484,,,,,,,,,,,,,, +1999,5,12,2,30,2.624468,,,,,,,,,,,,,, +1999,5,12,3,30,2.4039376,,,,,,,,,,,,,, +1999,5,12,4,30,1.8602648,,,,,,,,,,,,,, +1999,5,12,5,30,0.95935833,,,,,,,,,,,,,, +1999,5,12,6,30,0.07256703,,,,,,,,,,,,,, +1999,5,12,7,30,0.855981,,,,,,,,,,,,,, +1999,5,12,8,30,1.2797636,,,,,,,,,,,,,, +1999,5,12,9,30,1.2679164,,,,,,,,,,,,,, +1999,5,12,10,30,0.95360965,,,,,,,,,,,,,, +1999,5,12,11,30,0.4258705,,,,,,,,,,,,,, +1999,5,12,12,30,0.34361762,,,,,,,,,,,,,, +1999,5,12,13,30,1.0708629,,,,,,,,,,,,,, +1999,5,12,14,30,1.3793018,,,,,,,,,,,,,, +1999,5,12,15,30,1.1934232,,,,,,,,,,,,,, +1999,5,12,16,30,0.6146945,,,,,,,,,,,,,, +1999,5,12,17,30,0.2953983,,,,,,,,,,,,,, +1999,5,12,18,30,1.3134549,,,,,,,,,,,,,, +1999,5,12,19,30,2.0887809,,,,,,,,,,,,,, +1999,5,12,20,30,2.3760307,,,,,,,,,,,,,, +1999,5,12,21,30,2.2366781,,,,,,,,,,,,,, +1999,5,12,22,30,1.8112504,,,,,,,,,,,,,, +1999,5,12,23,30,1.0309012,,,,,,,,,,,,,, +1999,5,13,0,30,0.25300387,,,,,,,,,,,,,, +1999,5,13,1,30,1.5062176,,,,,,,,,,,,,, +1999,5,13,2,30,2.2358165,,,,,,,,,,,,,, +1999,5,13,3,30,2.3688438,,,,,,,,,,,,,, +1999,5,13,4,30,2.1688905,,,,,,,,,,,,,, +1999,5,13,5,30,1.6353321,,,,,,,,,,,,,, +1999,5,13,6,30,0.79680395,,,,,,,,,,,,,, +1999,5,13,7,30,0.1148358,,,,,,,,,,,,,, +1999,5,13,8,30,0.8453914,,,,,,,,,,,,,, +1999,5,13,9,30,1.2331467,,,,,,,,,,,,,, +1999,5,13,10,30,1.2030718,,,,,,,,,,,,,, +1999,5,13,11,30,0.9221975,,,,,,,,,,,,,, +1999,5,13,12,30,0.4662865,,,,,,,,,,,,,, +1999,5,13,13,30,0.24183881,,,,,,,,,,,,,, +1999,5,13,14,30,0.93443596,,,,,,,,,,,,,, +1999,5,13,15,30,1.2394618,,,,,,,,,,,,,, +1999,5,13,16,30,1.0709714,,,,,,,,,,,,,, +1999,5,13,17,30,0.52356833,,,,,,,,,,,,,, +1999,5,13,18,30,0.30389825,,,,,,,,,,,,,, +1999,5,13,19,30,1.1734927,,,,,,,,,,,,,, +1999,5,13,20,30,1.7953285,,,,,,,,,,,,,, +1999,5,13,21,30,2.024308,,,,,,,,,,,,,, +1999,5,13,22,30,1.9119356,,,,,,,,,,,,,, +1999,5,13,23,30,1.526001,,,,,,,,,,,,,, +1999,5,14,0,30,0.7898717,,,,,,,,,,,,,, +1999,5,14,1,30,0.359988,,,,,,,,,,,,,, +1999,5,14,2,30,1.4234426,,,,,,,,,,,,,, +1999,5,14,3,30,2.0059562,,,,,,,,,,,,,, +1999,5,14,4,30,2.1222591,,,,,,,,,,,,,, +1999,5,14,5,30,1.9491541,,,,,,,,,,,,,, +1999,5,14,6,30,1.4488323,,,,,,,,,,,,,, +1999,5,14,7,30,0.69227767,,,,,,,,,,,,,, +1999,5,14,8,30,0.14668897,,,,,,,,,,,,,, +1999,5,14,9,30,0.8606833,,,,,,,,,,,,,, +1999,5,14,10,30,1.2347901,,,,,,,,,,,,,, +1999,5,14,11,30,1.2050953,,,,,,,,,,,,,, +1999,5,14,12,30,0.98052967,,,,,,,,,,,,,, +1999,5,14,13,30,0.5910275,,,,,,,,,,,,,, +1999,5,14,14,30,0.12579614,,,,,,,,,,,,,, +1999,5,14,15,30,0.80162525,,,,,,,,,,,,,, +1999,5,14,16,30,1.1283218,,,,,,,,,,,,,, +1999,5,14,17,30,0.99690276,,,,,,,,,,,,,, +1999,5,14,18,30,0.5130828,,,,,,,,,,,,,, +1999,5,14,19,30,0.20350087,,,,,,,,,,,,,, +1999,5,14,20,30,0.91801804,,,,,,,,,,,,,, +1999,5,14,21,30,1.4378166,,,,,,,,,,,,,, +1999,5,14,22,30,1.6731822,,,,,,,,,,,,,, +1999,5,14,23,30,1.619641,,,,,,,,,,,,,, +1999,5,15,0,30,1.2813535,,,,,,,,,,,,,, +1999,5,15,1,30,0.60247517,,,,,,,,,,,,,, +1999,5,15,2,30,0.41364828,,,,,,,,,,,,,, +1999,5,15,3,30,1.3051113,,,,,,,,,,,,,, +1999,5,15,4,30,1.7867762,,,,,,,,,,,,,, +1999,5,15,5,30,1.9119034,,,,,,,,,,,,,, +1999,5,15,6,30,1.7733825,,,,,,,,,,,,,, +1999,5,15,7,30,1.3135087,,,,,,,,,,,,,, +1999,5,15,8,30,0.6126212,,,,,,,,,,,,,, +1999,5,15,9,30,0.21571259,,,,,,,,,,,,,, +1999,5,15,10,30,0.94520915,,,,,,,,,,,,,, +1999,5,15,11,30,1.3062538,,,,,,,,,,,,,, +1999,5,15,12,30,1.285675,,,,,,,,,,,,,, +1999,5,15,13,30,1.123318,,,,,,,,,,,,,, +1999,5,15,14,30,0.76588494,,,,,,,,,,,,,, +1999,5,15,15,30,0.1493002,,,,,,,,,,,,,, +1999,5,15,16,30,0.71842664,,,,,,,,,,,,,, +1999,5,15,17,30,1.0809664,,,,,,,,,,,,,, +1999,5,15,18,30,1.0031614,,,,,,,,,,,,,, +1999,5,15,19,30,0.60814273,,,,,,,,,,,,,, +1999,5,15,20,30,0.091213055,,,,,,,,,,,,,, +1999,5,15,21,30,0.5984825,,,,,,,,,,,,,, +1999,5,15,22,30,1.0897537,,,,,,,,,,,,,, +1999,5,15,23,30,1.3808029,,,,,,,,,,,,,, +1999,5,16,0,30,1.3856231,,,,,,,,,,,,,, +1999,5,16,1,30,1.0797516,,,,,,,,,,,,,, +1999,5,16,2,30,0.45952502,,,,,,,,,,,,,, +1999,5,16,3,30,0.42760554,,,,,,,,,,,,,, +1999,5,16,4,30,1.177993,,,,,,,,,,,,,, +1999,5,16,5,30,1.60552,,,,,,,,,,,,,, +1999,5,16,6,30,1.7588282,,,,,,,,,,,,,, +1999,5,16,7,30,1.645469,,,,,,,,,,,,,, +1999,5,16,8,30,1.1971623,,,,,,,,,,,,,, +1999,5,16,9,30,0.4939057,,,,,,,,,,,,,, +1999,5,16,10,30,0.37213504,,,,,,,,,,,,,, +1999,5,16,11,30,1.1170113,,,,,,,,,,,,,, +1999,5,16,12,30,1.447629,,,,,,,,,,,,,, +1999,5,16,13,30,1.4365376,,,,,,,,,,,,,, +1999,5,16,14,30,1.3166585,,,,,,,,,,,,,, +1999,5,16,15,30,0.9265006,,,,,,,,,,,,,, +1999,5,16,16,30,0.19865999,,,,,,,,,,,,,, +1999,5,16,17,30,0.73542225,,,,,,,,,,,,,, +1999,5,16,18,30,1.1375908,,,,,,,,,,,,,, +1999,5,16,19,30,1.1199436,,,,,,,,,,,,,, +1999,5,16,20,30,0.81156385,,,,,,,,,,,,,, +1999,5,16,21,30,0.33392078,,,,,,,,,,,,,, +1999,5,16,22,30,0.2964791,,,,,,,,,,,,,, +1999,5,16,23,30,0.82399714,,,,,,,,,,,,,, +1999,5,17,0,30,1.1817478,,,,,,,,,,,,,, +1999,5,17,1,30,1.2148669,,,,,,,,,,,,,, +1999,5,17,2,30,0.92375195,,,,,,,,,,,,,, +1999,5,17,3,30,0.36459297,,,,,,,,,,,,,, +1999,5,17,4,30,0.41264072,,,,,,,,,,,,,, +1999,5,17,5,30,1.0700024,,,,,,,,,,,,,, +1999,5,17,6,30,1.4864947,,,,,,,,,,,,,, +1999,5,17,7,30,1.6621592,,,,,,,,,,,,,, +1999,5,17,8,30,1.5322623,,,,,,,,,,,,,, +1999,5,17,9,30,1.0414631,,,,,,,,,,,,,, +1999,5,17,10,30,0.28380358,,,,,,,,,,,,,, +1999,5,17,11,30,0.63761914,,,,,,,,,,,,,, +1999,5,17,12,30,1.3651783,,,,,,,,,,,,,, +1999,5,17,13,30,1.640033,,,,,,,,,,,,,, +1999,5,17,14,30,1.6268651,,,,,,,,,,,,,, +1999,5,17,15,30,1.4982889,,,,,,,,,,,,,, +1999,5,17,16,30,0.99159825,,,,,,,,,,,,,, +1999,5,17,17,30,0.17851894,,,,,,,,,,,,,, +1999,5,17,18,30,0.8917986,,,,,,,,,,,,,, +1999,5,17,19,30,1.3229847,,,,,,,,,,,,,, +1999,5,17,20,30,1.3479269,,,,,,,,,,,,,, +1999,5,17,21,30,1.0802572,,,,,,,,,,,,,, +1999,5,17,22,30,0.59241426,,,,,,,,,,,,,, +1999,5,17,23,30,0.106748596,,,,,,,,,,,,,, +1999,5,18,0,30,0.68682176,,,,,,,,,,,,,, +1999,5,18,1,30,1.0818944,,,,,,,,,,,,,, +1999,5,18,2,30,1.1072582,,,,,,,,,,,,,, +1999,5,18,3,30,0.8241683,,,,,,,,,,,,,, +1999,5,18,4,30,0.31749418,,,,,,,,,,,,,, +1999,5,18,5,30,0.3953025,,,,,,,,,,,,,, +1999,5,18,6,30,1.0183922,,,,,,,,,,,,,, +1999,5,18,7,30,1.437278,,,,,,,,,,,,,, +1999,5,18,8,30,1.5908521,,,,,,,,,,,,,, +1999,5,18,9,30,1.3831658,,,,,,,,,,,,,, +1999,5,18,10,30,0.8005482,,,,,,,,,,,,,, +1999,5,18,11,30,0.0805306,,,,,,,,,,,,,, +1999,5,18,12,30,0.9960276,,,,,,,,,,,,,, +1999,5,18,13,30,1.6566217,,,,,,,,,,,,,, +1999,5,18,14,30,1.849026,,,,,,,,,,,,,, +1999,5,18,15,30,1.8059368,,,,,,,,,,,,,, +1999,5,18,16,30,1.5919671,,,,,,,,,,,,,, +1999,5,18,17,30,0.8882825,,,,,,,,,,,,,, +1999,5,18,18,30,0.30788752,,,,,,,,,,,,,, +1999,5,18,19,30,1.1989944,,,,,,,,,,,,,, +1999,5,18,20,30,1.6206774,,,,,,,,,,,,,, +1999,5,18,21,30,1.6357397,,,,,,,,,,,,,, +1999,5,18,22,30,1.3266069,,,,,,,,,,,,,, +1999,5,18,23,30,0.74568063,,,,,,,,,,,,,, +1999,5,19,0,30,0.06968174,,,,,,,,,,,,,, +1999,5,19,1,30,0.6868535,,,,,,,,,,,,,, +1999,5,19,2,30,1.0709138,,,,,,,,,,,,,, +1999,5,19,3,30,1.064338,,,,,,,,,,,,,, +1999,5,19,4,30,0.77955866,,,,,,,,,,,,,, +1999,5,19,5,30,0.28483468,,,,,,,,,,,,,, +1999,5,19,6,30,0.42563424,,,,,,,,,,,,,, +1999,5,19,7,30,1.0496887,,,,,,,,,,,,,, +1999,5,19,8,30,1.4361248,,,,,,,,,,,,,, +1999,5,19,9,30,1.5000333,,,,,,,,,,,,,, +1999,5,19,10,30,1.162886,,,,,,,,,,,,,, +1999,5,19,11,30,0.46218705,,,,,,,,,,,,,, +1999,5,19,12,30,0.482406,,,,,,,,,,,,,, +1999,5,19,13,30,1.405577,,,,,,,,,,,,,, +1999,5,19,14,30,1.9455965,,,,,,,,,,,,,, +1999,5,19,15,30,2.0311859,,,,,,,,,,,,,, +1999,5,19,16,30,1.915623,,,,,,,,,,,,,, +1999,5,19,17,30,1.5298474,,,,,,,,,,,,,, +1999,5,19,18,30,0.58056736,,,,,,,,,,,,,, +1999,5,19,19,30,0.7262307,,,,,,,,,,,,,, +1999,5,19,20,30,1.6169609,,,,,,,,,,,,,, +1999,5,19,21,30,1.9598567,,,,,,,,,,,,,, +1999,5,19,22,30,1.8879105,,,,,,,,,,,,,, +1999,5,19,23,30,1.4519159,,,,,,,,,,,,,, +1999,5,20,0,30,0.72688776,,,,,,,,,,,,,, +1999,5,20,1,30,0.11735562,,,,,,,,,,,,,, +1999,5,20,2,30,0.8021358,,,,,,,,,,,,,, +1999,5,20,3,30,1.1312671,,,,,,,,,,,,,, +1999,5,20,4,30,1.0725131,,,,,,,,,,,,,, +1999,5,20,5,30,0.7499876,,,,,,,,,,,,,, +1999,5,20,6,30,0.20676024,,,,,,,,,,,,,, +1999,5,20,7,30,0.55169654,,,,,,,,,,,,,, +1999,5,20,8,30,1.1542736,,,,,,,,,,,,,, +1999,5,20,9,30,1.4409415,,,,,,,,,,,,,, +1999,5,20,10,30,1.3572686,,,,,,,,,,,,,, +1999,5,20,11,30,0.8644676,,,,,,,,,,,,,, +1999,5,20,12,30,0.069668375,,,,,,,,,,,,,, +1999,5,20,13,30,0.96679944,,,,,,,,,,,,,, +1999,5,20,14,30,1.8120792,,,,,,,,,,,,,, +1999,5,20,15,30,2.1849618,,,,,,,,,,,,,, +1999,5,20,16,30,2.1457553,,,,,,,,,,,,,, +1999,5,20,17,30,1.90557,,,,,,,,,,,,,, +1999,5,20,18,30,1.2710421,,,,,,,,,,,,,, +1999,5,20,19,30,0.17851229,,,,,,,,,,,,,, +1999,5,20,20,30,1.2883483,,,,,,,,,,,,,, +1999,5,20,21,30,2.0509071,,,,,,,,,,,,,, +1999,5,20,22,30,2.2363343,,,,,,,,,,,,,, +1999,5,20,23,30,2.0077891,,,,,,,,,,,,,, +1999,5,21,0,30,1.3942778,,,,,,,,,,,,,, +1999,5,21,1,30,0.5288102,,,,,,,,,,,,,, +1999,5,21,2,30,0.35145205,,,,,,,,,,,,,, +1999,5,21,3,30,0.99253416,,,,,,,,,,,,,, +1999,5,21,4,30,1.2297144,,,,,,,,,,,,,, +1999,5,21,5,30,1.0839275,,,,,,,,,,,,,, +1999,5,21,6,30,0.6644596,,,,,,,,,,,,,, +1999,5,21,7,30,0.121983185,,,,,,,,,,,,,, +1999,5,21,8,30,0.77516,,,,,,,,,,,,,, +1999,5,21,9,30,1.2869933,,,,,,,,,,,,,, +1999,5,21,10,30,1.4119173,,,,,,,,,,,,,, +1999,5,21,11,30,1.1520728,,,,,,,,,,,,,, +1999,5,21,12,30,0.49582934,,,,,,,,,,,,,, +1999,5,21,13,30,0.4614841,,,,,,,,,,,,,, +1999,5,21,14,30,1.4658562,,,,,,,,,,,,,, +1999,5,21,15,30,2.1609251,,,,,,,,,,,,,, +1999,5,21,16,30,2.3391469,,,,,,,,,,,,,, +1999,5,21,17,30,2.1634066,,,,,,,,,,,,,, +1999,5,21,18,30,1.7415749,,,,,,,,,,,,,, +1999,5,21,19,30,0.81531316,,,,,,,,,,,,,, +1999,5,21,20,30,0.6449731,,,,,,,,,,,,,, +1999,5,21,21,30,1.8592088,,,,,,,,,,,,,, +1999,5,21,22,30,2.3867455,,,,,,,,,,,,,, +1999,5,21,23,30,2.3632443,,,,,,,,,,,,,, +1999,5,22,0,30,1.946655,,,,,,,,,,,,,, +1999,5,22,1,30,1.1549246,,,,,,,,,,,,,, +1999,5,22,2,30,0.20092738,,,,,,,,,,,,,, +1999,5,22,3,30,0.6641291,,,,,,,,,,,,,, +1999,5,22,4,30,1.2028439,,,,,,,,,,,,,, +1999,5,22,5,30,1.308187,,,,,,,,,,,,,, +1999,5,22,6,30,1.0287423,,,,,,,,,,,,,, +1999,5,22,7,30,0.46637255,,,,,,,,,,,,,, +1999,5,22,8,30,0.33011207,,,,,,,,,,,,,, +1999,5,22,9,30,1.0433824,,,,,,,,,,,,,, +1999,5,22,10,30,1.3917727,,,,,,,,,,,,,, +1999,5,22,11,30,1.3248551,,,,,,,,,,,,,, +1999,5,22,12,30,0.883805,,,,,,,,,,,,,, +1999,5,22,13,30,0.06828661,,,,,,,,,,,,,, +1999,5,22,14,30,0.9851779,,,,,,,,,,,,,, +1999,5,22,15,30,1.9240987,,,,,,,,,,,,,, +1999,5,22,16,30,2.4099054,,,,,,,,,,,,,, +1999,5,22,17,30,2.3903575,,,,,,,,,,,,,, +1999,5,22,18,30,2.0651321,,,,,,,,,,,,,, +1999,5,22,19,30,1.4108541,,,,,,,,,,,,,, +1999,5,22,20,30,0.2503869,,,,,,,,,,,,,, +1999,5,22,21,30,1.3228068,,,,,,,,,,,,,, +1999,5,22,22,30,2.3117576,,,,,,,,,,,,,, +1999,5,22,23,30,2.546539,,,,,,,,,,,,,, +1999,5,23,0,30,2.315083,,,,,,,,,,,,,, +1999,5,23,1,30,1.7207305,,,,,,,,,,,,,, +1999,5,23,2,30,0.7876936,,,,,,,,,,,,,, +1999,5,23,3,30,0.22196516,,,,,,,,,,,,,, +1999,5,23,4,30,0.97779244,,,,,,,,,,,,,, +1999,5,23,5,30,1.3655251,,,,,,,,,,,,,, +1999,5,23,6,30,1.3018153,,,,,,,,,,,,,, +1999,5,23,7,30,0.8592006,,,,,,,,,,,,,, +1999,5,23,8,30,0.17199329,,,,,,,,,,,,,, +1999,5,23,9,30,0.6794101,,,,,,,,,,,,,, +1999,5,23,10,30,1.2808173,,,,,,,,,,,,,, +1999,5,23,11,30,1.4255273,,,,,,,,,,,,,, +1999,5,23,12,30,1.1680646,,,,,,,,,,,,,, +1999,5,23,13,30,0.5513106,,,,,,,,,,,,,, +1999,5,23,14,30,0.41832542,,,,,,,,,,,,,, +1999,5,23,15,30,1.4991889,,,,,,,,,,,,,, +1999,5,23,16,30,2.2886596,,,,,,,,,,,,,, +1999,5,23,17,30,2.5360582,,,,,,,,,,,,,, +1999,5,23,18,30,2.3324342,,,,,,,,,,,,,, +1999,5,23,19,30,1.8399159,,,,,,,,,,,,,, +1999,5,23,20,30,0.9340283,,,,,,,,,,,,,, +1999,5,23,21,30,0.5255766,,,,,,,,,,,,,, +1999,5,23,22,30,1.9042847,,,,,,,,,,,,,, +1999,5,23,23,30,2.5657563,,,,,,,,,,,,,, +1999,5,24,0,30,2.5251164,,,,,,,,,,,,,, +1999,5,24,1,30,2.129168,,,,,,,,,,,,,, +1999,5,24,2,30,1.3879712,,,,,,,,,,,,,, +1999,5,24,3,30,0.37273234,,,,,,,,,,,,,, +1999,5,24,4,30,0.59857714,,,,,,,,,,,,,, +1999,5,24,5,30,1.2201961,,,,,,,,,,,,,, +1999,5,24,6,30,1.4237804,,,,,,,,,,,,,, +1999,5,24,7,30,1.1790881,,,,,,,,,,,,,, +1999,5,24,8,30,0.5886218,,,,,,,,,,,,,, +1999,5,24,9,30,0.24293795,,,,,,,,,,,,,, +1999,5,24,10,30,0.9969772,,,,,,,,,,,,,, +1999,5,24,11,30,1.4260889,,,,,,,,,,,,,, +1999,5,24,12,30,1.3682345,,,,,,,,,,,,,, +1999,5,24,13,30,0.9393789,,,,,,,,,,,,,, +1999,5,24,14,30,0.16579121,,,,,,,,,,,,,, +1999,5,24,15,30,0.91215336,,,,,,,,,,,,,, +1999,5,24,16,30,1.9417711,,,,,,,,,,,,,, +1999,5,24,17,30,2.517516,,,,,,,,,,,,,, +1999,5,24,18,30,2.5312765,,,,,,,,,,,,,, +1999,5,24,19,30,2.1634011,,,,,,,,,,,,,, +1999,5,24,20,30,1.4946616,,,,,,,,,,,,,, +1999,5,24,21,30,0.38510174,,,,,,,,,,,,,, +1999,5,24,22,30,1.1442133,,,,,,,,,,,,,, +1999,5,24,23,30,2.293962,,,,,,,,,,,,,, +1999,5,25,0,30,2.6182601,,,,,,,,,,,,,, +1999,5,25,1,30,2.377796,,,,,,,,,,,,,, +1999,5,25,2,30,1.8676373,,,,,,,,,,,,,, +1999,5,25,3,30,1.013215,,,,,,,,,,,,,, +1999,5,25,4,30,0.0970151,,,,,,,,,,,,,, +1999,5,25,5,30,0.89581,,,,,,,,,,,,,, +1999,5,25,6,30,1.3458289,,,,,,,,,,,,,, +1999,5,25,7,30,1.3653809,,,,,,,,,,,,,, +1999,5,25,8,30,0.96870315,,,,,,,,,,,,,, +1999,5,25,9,30,0.29251227,,,,,,,,,,,,,, +1999,5,25,10,30,0.5330351,,,,,,,,,,,,,, +1999,5,25,11,30,1.2068381,,,,,,,,,,,,,, +1999,5,25,12,30,1.4545214,,,,,,,,,,,,,, +1999,5,25,13,30,1.2260115,,,,,,,,,,,,,, +1999,5,25,14,30,0.65632,,,,,,,,,,,,,, +1999,5,25,15,30,0.25047022,,,,,,,,,,,,,, +1999,5,25,16,30,1.3526543,,,,,,,,,,,,,, +1999,5,25,17,30,2.2482233,,,,,,,,,,,,,, +1999,5,25,18,30,2.5835295,,,,,,,,,,,,,, +1999,5,25,19,30,2.3963885,,,,,,,,,,,,,, +1999,5,25,20,30,1.8922806,,,,,,,,,,,,,, +1999,5,25,21,30,1.0708722,,,,,,,,,,,,,, +1999,5,25,22,30,0.23782842,,,,,,,,,,,,,, +1999,5,25,23,30,1.6182377,,,,,,,,,,,,,, +1999,5,26,0,30,2.4707646,,,,,,,,,,,,,, +1999,5,26,1,30,2.5268586,,,,,,,,,,,,,, +1999,5,26,2,30,2.1720147,,,,,,,,,,,,,, +1999,5,26,3,30,1.5795071,,,,,,,,,,,,,, +1999,5,26,4,30,0.65084046,,,,,,,,,,,,,, +1999,5,26,5,30,0.3848979,,,,,,,,,,,,,, +1999,5,26,6,30,1.0758471,,,,,,,,,,,,,, +1999,5,26,7,30,1.3613989,,,,,,,,,,,,,, +1999,5,26,8,30,1.235532,,,,,,,,,,,,,, +1999,5,26,9,30,0.7469741,,,,,,,,,,,,,, +1999,5,26,10,30,0.13357921,,,,,,,,,,,,,, +1999,5,26,11,30,0.7249096,,,,,,,,,,,,,, +1999,5,26,12,30,1.2831092,,,,,,,,,,,,,, +1999,5,26,13,30,1.3836309,,,,,,,,,,,,,, +1999,5,26,14,30,1.0342515,,,,,,,,,,,,,, +1999,5,26,15,30,0.36773577,,,,,,,,,,,,,, +1999,5,26,16,30,0.6032662,,,,,,,,,,,,,, +1999,5,26,17,30,1.6605318,,,,,,,,,,,,,, +1999,5,26,18,30,2.3667457,,,,,,,,,,,,,, +1999,5,26,19,30,2.4784076,,,,,,,,,,,,,, +1999,5,26,20,30,2.1475787,,,,,,,,,,,,,, +1999,5,26,21,30,1.5554445,,,,,,,,,,,,,, +1999,5,26,22,30,0.64435977,,,,,,,,,,,,,, +1999,5,26,23,30,0.6662176,,,,,,,,,,,,,, +1999,5,27,0,30,1.8992287,,,,,,,,,,,,,, +1999,5,27,1,30,2.4753377,,,,,,,,,,,,,, +1999,5,27,2,30,2.3601718,,,,,,,,,,,,,, +1999,5,27,3,30,1.9490159,,,,,,,,,,,,,, +1999,5,27,4,30,1.293598,,,,,,,,,,,,,, +1999,5,27,5,30,0.3433403,,,,,,,,,,,,,, +1999,5,27,6,30,0.6004694,,,,,,,,,,,,,, +1999,5,27,7,30,1.1581184,,,,,,,,,,,,,, +1999,5,27,8,30,1.3256731,,,,,,,,,,,,,, +1999,5,27,9,30,1.1126854,,,,,,,,,,,,,, +1999,5,27,10,30,0.59572184,,,,,,,,,,,,,, +1999,5,27,11,30,0.1442305,,,,,,,,,,,,,, +1999,5,27,12,30,0.7776407,,,,,,,,,,,,,, +1999,5,27,13,30,1.2515455,,,,,,,,,,,,,, +1999,5,27,14,30,1.2664071,,,,,,,,,,,,,, +1999,5,27,15,30,0.853953,,,,,,,,,,,,,, +1999,5,27,16,30,0.14817803,,,,,,,,,,,,,, +1999,5,27,17,30,0.8252826,,,,,,,,,,,,,, +1999,5,27,18,30,1.7707134,,,,,,,,,,,,,, +1999,5,27,19,30,2.275827,,,,,,,,,,,,,, +1999,5,27,20,30,2.2239165,,,,,,,,,,,,,, +1999,5,27,21,30,1.8299698,,,,,,,,,,,,,, +1999,5,27,22,30,1.2176536,,,,,,,,,,,,,, +1999,5,27,23,30,0.29844522,,,,,,,,,,,,,, +1999,5,28,0,30,0.96096754,,,,,,,,,,,,,, +1999,5,28,1,30,2.002666,,,,,,,,,,,,,, +1999,5,28,2,30,2.3678749,,,,,,,,,,,,,, +1999,5,28,3,30,2.1618154,,,,,,,,,,,,,, +1999,5,28,4,30,1.7253052,,,,,,,,,,,,,, +1999,5,28,5,30,1.0320561,,,,,,,,,,,,,, +1999,5,28,6,30,0.12162952,,,,,,,,,,,,,, +1999,5,28,7,30,0.7356814,,,,,,,,,,,,,, +1999,5,28,8,30,1.2075021,,,,,,,,,,,,,, +1999,5,28,9,30,1.3160313,,,,,,,,,,,,,, +1999,5,28,10,30,1.066139,,,,,,,,,,,,,, +1999,5,28,11,30,0.56488854,,,,,,,,,,,,,, +1999,5,28,12,30,0.11749601,,,,,,,,,,,,,, +1999,5,28,13,30,0.7202288,,,,,,,,,,,,,, +1999,5,28,14,30,1.1754134,,,,,,,,,,,,,, +1999,5,28,15,30,1.1732991,,,,,,,,,,,,,, +1999,5,28,16,30,0.7533256,,,,,,,,,,,,,, +1999,5,28,17,30,0.06716023,,,,,,,,,,,,,, +1999,5,28,18,30,0.85605687,,,,,,,,,,,,,, +1999,5,28,19,30,1.658191,,,,,,,,,,,,,, +1999,5,28,20,30,2.0015721,,,,,,,,,,,,,, +1999,5,28,21,30,1.8820724,,,,,,,,,,,,,, +1999,5,28,22,30,1.5150244,,,,,,,,,,,,,, +1999,5,28,23,30,0.94416463,,,,,,,,,,,,,, +1999,5,29,0,30,0.13637456,,,,,,,,,,,,,, +1999,5,29,1,30,1.1053246,,,,,,,,,,,,,, +1999,5,29,2,30,1.9725634,,,,,,,,,,,,,, +1999,5,29,3,30,2.1960244,,,,,,,,,,,,,, +1999,5,29,4,30,1.9547141,,,,,,,,,,,,,, +1999,5,29,5,30,1.5161508,,,,,,,,,,,,,, +1999,5,29,6,30,0.81438386,,,,,,,,,,,,,, +1999,5,29,7,30,0.10321452,,,,,,,,,,,,,, +1999,5,29,8,30,0.84669447,,,,,,,,,,,,,, +1999,5,29,9,30,1.2965502,,,,,,,,,,,,,, +1999,5,29,10,30,1.3866098,,,,,,,,,,,,,, +1999,5,29,11,30,1.12783,,,,,,,,,,,,,, +1999,5,29,12,30,0.6624414,,,,,,,,,,,,,, +1999,5,29,13,30,0.104980685,,,,,,,,,,,,,, +1999,5,29,14,30,0.6193183,,,,,,,,,,,,,, +1999,5,29,15,30,1.1299307,,,,,,,,,,,,,, +1999,5,29,16,30,1.1665848,,,,,,,,,,,,,, +1999,5,29,17,30,0.78231716,,,,,,,,,,,,,, +1999,5,29,18,30,0.13454917,,,,,,,,,,,,,, +1999,5,29,19,30,0.68220127,,,,,,,,,,,,,, +1999,5,29,20,30,1.3562751,,,,,,,,,,,,,, +1999,5,29,21,30,1.623711,,,,,,,,,,,,,, +1999,5,29,22,30,1.5438442,,,,,,,,,,,,,, +1999,5,29,23,30,1.2706248,,,,,,,,,,,,,, +1999,5,30,0,30,0.7667712,,,,,,,,,,,,,, +1999,5,30,1,30,0.14735878,,,,,,,,,,,,,, +1999,5,30,2,30,1.1263393,,,,,,,,,,,,,, +1999,5,30,3,30,1.8534771,,,,,,,,,,,,,, +1999,5,30,4,30,1.9970369,,,,,,,,,,,,,, +1999,5,30,5,30,1.7644974,,,,,,,,,,,,,, +1999,5,30,6,30,1.3431109,,,,,,,,,,,,,, +1999,5,30,7,30,0.64417356,,,,,,,,,,,,,, +1999,5,30,8,30,0.2404381,,,,,,,,,,,,,, +1999,5,30,9,30,0.9957693,,,,,,,,,,,,,, +1999,5,30,10,30,1.46633,,,,,,,,,,,,,, +1999,5,30,11,30,1.5481374,,,,,,,,,,,,,, +1999,5,30,12,30,1.2898443,,,,,,,,,,,,,, +1999,5,30,13,30,0.8586748,,,,,,,,,,,,,, +1999,5,30,14,30,0.2519134,,,,,,,,,,,,,, +1999,5,30,15,30,0.5529515,,,,,,,,,,,,,, +1999,5,30,16,30,1.1746141,,,,,,,,,,,,,, +1999,5,30,17,30,1.2800882,,,,,,,,,,,,,, +1999,5,30,18,30,0.9567257,,,,,,,,,,,,,, +1999,5,30,19,30,0.37855956,,,,,,,,,,,,,, +1999,5,30,20,30,0.34972492,,,,,,,,,,,,,, +1999,5,30,21,30,0.9567092,,,,,,,,,,,,,, +1999,5,30,22,30,1.2539067,,,,,,,,,,,,,, +1999,5,30,23,30,1.2915065,,,,,,,,,,,,,, +1999,5,31,0,30,1.1271311,,,,,,,,,,,,,, +1999,5,31,1,30,0.67986876,,,,,,,,,,,,,, +1999,5,31,2,30,0.1572307,,,,,,,,,,,,,, +1999,5,31,3,30,1.0574174,,,,,,,,,,,,,, +1999,5,31,4,30,1.6897209,,,,,,,,,,,,,, +1999,5,31,5,30,1.8142201,,,,,,,,,,,,,, +1999,5,31,6,30,1.622639,,,,,,,,,,,,,, +1999,5,31,7,30,1.2161962,,,,,,,,,,,,,, +1999,5,31,8,30,0.4996605,,,,,,,,,,,,,, +1999,5,31,9,30,0.40811944,,,,,,,,,,,,,, +1999,5,31,10,30,1.2161324,,,,,,,,,,,,,, +1999,5,31,11,30,1.7136377,,,,,,,,,,,,,, +1999,5,31,12,30,1.7752683,,,,,,,,,,,,,, +1999,5,31,13,30,1.5168493,,,,,,,,,,,,,, +1999,5,31,14,30,1.0966719,,,,,,,,,,,,,, +1999,5,31,15,30,0.40017667,,,,,,,,,,,,,, +2013,5,31,16,30,0.58391815,,,,,,,,,,,,,, +2013,5,31,17,30,1.3373703,,,,,,,,,,,,,, +2013,5,31,18,30,1.5144353,,,,,,,,,,,,,, +2013,5,31,19,30,1.2564406,,,,,,,,,,,,,, +2013,5,31,20,30,0.7436244,,,,,,,,,,,,,, +2013,5,31,21,30,0.09971658,,,,,,,,,,,,,, +2013,5,31,22,30,0.5803967,,,,,,,,,,,,,, +2013,5,31,23,30,0.98912334,,,,,,,,,,,,,, +2013,6,1,0,30,1.1613165,,,,,,,,,,,,,, +2013,6,1,1,30,1.0739386,,,,,,,,,,,,,, +2013,6,1,2,30,0.6643937,,,,,,,,,,,,,, +2013,6,1,3,30,0.13574207,,,,,,,,,,,,,, +2013,6,1,4,30,0.93725884,,,,,,,,,,,,,, +2013,6,1,5,30,1.5355103,,,,,,,,,,,,,, +2013,6,1,6,30,1.6924595,,,,,,,,,,,,,, +2013,6,1,7,30,1.5430595,,,,,,,,,,,,,, +2013,6,1,8,30,1.1180494,,,,,,,,,,,,,, +2013,6,1,9,30,0.3463471,,,,,,,,,,,,,, +2013,6,1,10,30,0.6290203,,,,,,,,,,,,,, +2013,6,1,11,30,1.503505,,,,,,,,,,,,,, +2013,6,1,12,30,2.0047061,,,,,,,,,,,,,, +2013,6,1,13,30,2.0262325,,,,,,,,,,,,,, +2013,6,1,14,30,1.7610687,,,,,,,,,,,,,, +2013,6,1,15,30,1.3109543,,,,,,,,,,,,,, +2013,6,1,16,30,0.45735723,,,,,,,,,,,,,, +2013,6,1,17,30,0.74442106,,,,,,,,,,,,,, +2013,6,1,18,30,1.6153612,,,,,,,,,,,,,, +2013,6,1,19,30,1.8427162,,,,,,,,,,,,,, +2013,6,1,20,30,1.6296749,,,,,,,,,,,,,, +2013,6,1,21,30,1.1391858,,,,,,,,,,,,,, +2013,6,1,22,30,0.43260294,,,,,,,,,,,,,, +2013,6,1,23,30,0.3262319,,,,,,,,,,,,,, +2013,6,2,0,30,0.8713709,,,,,,,,,,,,,, +2013,6,2,1,30,1.1397153,,,,,,,,,,,,,, +2013,6,2,2,30,1.0856609,,,,,,,,,,,,,, +2013,6,2,3,30,0.7063851,,,,,,,,,,,,,, +2013,6,2,4,30,0.113905504,,,,,,,,,,,,,, +2013,6,2,5,30,0.81916535,,,,,,,,,,,,,, +2013,6,2,6,30,1.445853,,,,,,,,,,,,,, +2013,6,2,7,30,1.6506922,,,,,,,,,,,,,, +2013,6,2,8,30,1.5049397,,,,,,,,,,,,,, +2013,6,2,9,30,1.0140612,,,,,,,,,,,,,, +2013,6,2,10,30,0.16313782,,,,,,,,,,,,,, +2013,6,2,11,30,0.9047874,,,,,,,,,,,,,, +2013,6,2,12,30,1.8301119,,,,,,,,,,,,,, +2013,6,2,13,30,2.2959971,,,,,,,,,,,,,, +2013,6,2,14,30,2.2591133,,,,,,,,,,,,,, +2013,6,2,15,30,1.975621,,,,,,,,,,,,,, +2013,6,2,16,30,1.4446863,,,,,,,,,,,,,, +2013,6,2,17,30,0.3856017,,,,,,,,,,,,,, +2013,6,2,18,30,1.038178,,,,,,,,,,,,,, +2013,6,2,19,30,1.9813763,,,,,,,,,,,,,, +2013,6,2,20,30,2.2151372,,,,,,,,,,,,,, +2013,6,2,21,30,2.0012882,,,,,,,,,,,,,, +2013,6,2,22,30,1.4677746,,,,,,,,,,,,,, +2013,6,2,23,30,0.6538154,,,,,,,,,,,,,, +2013,6,3,0,30,0.23188886,,,,,,,,,,,,,, +2013,6,3,1,30,0.88511217,,,,,,,,,,,,,, +2013,6,3,2,30,1.1919043,,,,,,,,,,,,,, +2013,6,3,3,30,1.1440895,,,,,,,,,,,,,, +2013,6,3,4,30,0.79055744,,,,,,,,,,,,,, +2013,6,3,5,30,0.13478895,,,,,,,,,,,,,, +2013,6,3,6,30,0.76255107,,,,,,,,,,,,,, +2013,6,3,7,30,1.447232,,,,,,,,,,,,,, +2013,6,3,8,30,1.6659107,,,,,,,,,,,,,, +2013,6,3,9,30,1.4667032,,,,,,,,,,,,,, +2013,6,3,10,30,0.8772602,,,,,,,,,,,,,, +2013,6,3,11,30,0.09938945,,,,,,,,,,,,,, +2013,6,3,12,30,1.2216104,,,,,,,,,,,,,, +2013,6,3,13,30,2.1601102,,,,,,,,,,,,,, +2013,6,3,14,30,2.5476286,,,,,,,,,,,,,, +2013,6,3,15,30,2.4419887,,,,,,,,,,,,,, +2013,6,3,16,30,2.1244235,,,,,,,,,,,,,, +2013,6,3,17,30,1.4575324,,,,,,,,,,,,,, +2013,6,3,18,30,0.21062315,,,,,,,,,,,,,, +2013,6,3,19,30,1.4435483,,,,,,,,,,,,,, +2013,6,3,20,30,2.3841932,,,,,,,,,,,,,, +2013,6,3,21,30,2.5630515,,,,,,,,,,,,,, +2013,6,3,22,30,2.292004,,,,,,,,,,,,,, +2013,6,3,23,30,1.6584766,,,,,,,,,,,,,, +2013,6,4,0,30,0.7108559,,,,,,,,,,,,,, +2013,6,4,1,30,0.2804629,,,,,,,,,,,,,, +2013,6,4,2,30,0.98790675,,,,,,,,,,,,,, +2013,6,4,3,30,1.2886481,,,,,,,,,,,,,, +2013,6,4,4,30,1.2335398,,,,,,,,,,,,,, +2013,6,4,5,30,0.8823387,,,,,,,,,,,,,, +2013,6,4,6,30,0.17008275,,,,,,,,,,,,,, +2013,6,4,7,30,0.8032938,,,,,,,,,,,,,, +2013,6,4,8,30,1.5207229,,,,,,,,,,,,,, +2013,6,4,9,30,1.6912133,,,,,,,,,,,,,, +2013,6,4,10,30,1.3962618,,,,,,,,,,,,,, +2013,6,4,11,30,0.7007949,,,,,,,,,,,,,, +2013,6,4,12,30,0.36187372,,,,,,,,,,,,,, +2013,6,4,13,30,1.5577044,,,,,,,,,,,,,, +2013,6,4,14,30,2.4560626,,,,,,,,,,,,,, +2013,6,4,15,30,2.7307186,,,,,,,,,,,,,, +2013,6,4,16,30,2.5579903,,,,,,,,,,,,,, +2013,6,4,17,30,2.183054,,,,,,,,,,,,,, +2013,6,4,18,30,1.3247803,,,,,,,,,,,,,, +2013,6,4,19,30,0.30867714,,,,,,,,,,,,,, +2013,6,4,20,30,1.9073353,,,,,,,,,,,,,, +2013,6,4,21,30,2.7492392,,,,,,,,,,,,,, +2013,6,4,22,30,2.8144646,,,,,,,,,,,,,, +2013,6,4,23,30,2.4465582,,,,,,,,,,,,,, +2013,6,5,0,30,1.6894394,,,,,,,,,,,,,, +2013,6,5,1,30,0.6231741,,,,,,,,,,,,,, +2013,6,5,2,30,0.43063587,,,,,,,,,,,,,, +2013,6,5,3,30,1.1405256,,,,,,,,,,,,,, +2013,6,5,4,30,1.4062974,,,,,,,,,,,,,, +2013,6,5,5,30,1.3239166,,,,,,,,,,,,,, +2013,6,5,6,30,0.9299452,,,,,,,,,,,,,, +2013,6,5,7,30,0.13381746,,,,,,,,,,,,,, +2013,6,5,8,30,0.9319084,,,,,,,,,,,,,, +2013,6,5,9,30,1.6186068,,,,,,,,,,,,,, +2013,6,5,10,30,1.6891015,,,,,,,,,,,,,, +2013,6,5,11,30,1.286327,,,,,,,,,,,,,, +2013,6,5,12,30,0.4907927,,,,,,,,,,,,,, +2013,6,5,13,30,0.6598505,,,,,,,,,,,,,, +2013,6,5,14,30,1.8822387,,,,,,,,,,,,,, +2013,6,5,15,30,2.6829827,,,,,,,,,,,,,, +2013,6,5,16,30,2.831722,,,,,,,,,,,,,, +2013,6,5,17,30,2.6006353,,,,,,,,,,,,,, +2013,6,5,18,30,2.131075,,,,,,,,,,,,,, +2013,6,5,19,30,1.0396993,,,,,,,,,,,,,, +2013,6,5,20,30,0.77122205,,,,,,,,,,,,,, +2013,6,5,21,30,2.3434975,,,,,,,,,,,,,, +2013,6,5,22,30,2.9965901,,,,,,,,,,,,,, +2013,6,5,23,30,2.9218402,,,,,,,,,,,,,, +2013,6,6,0,30,2.4515822,,,,,,,,,,,,,, +2013,6,6,1,30,1.5801204,,,,,,,,,,,,,, +2013,6,6,2,30,0.432805,,,,,,,,,,,,,, +2013,6,6,3,30,0.6397852,,,,,,,,,,,,,, +2013,6,6,4,30,1.3104502,,,,,,,,,,,,,, +2013,6,6,5,30,1.5132034,,,,,,,,,,,,,, +2013,6,6,6,30,1.3717253,,,,,,,,,,,,,, +2013,6,6,7,30,0.8917937,,,,,,,,,,,,,, +2013,6,6,8,30,0.09327637,,,,,,,,,,,,,, +2013,6,6,9,30,1.1031586,,,,,,,,,,,,,, +2013,6,6,10,30,1.6961113,,,,,,,,,,,,,, +2013,6,6,11,30,1.6476023,,,,,,,,,,,,,, +2013,6,6,12,30,1.1451434,,,,,,,,,,,,,, +2013,6,6,13,30,0.25681627,,,,,,,,,,,,,, +2013,6,6,14,30,0.9660389,,,,,,,,,,,,,, +2013,6,6,15,30,2.155438,,,,,,,,,,,,,, +2013,6,6,16,30,2.8149583,,,,,,,,,,,,,, +2013,6,6,17,30,2.8483958,,,,,,,,,,,,,, +2013,6,6,18,30,2.5602193,,,,,,,,,,,,,, +2013,6,6,19,30,1.9495865,,,,,,,,,,,,,, +2013,6,6,20,30,0.62893546,,,,,,,,,,,,,, +2013,6,6,21,30,1.2656658,,,,,,,,,,,,,, +2013,6,6,22,30,2.656083,,,,,,,,,,,,,, +2013,6,6,23,30,3.0758882,,,,,,,,,,,,,, +2013,6,7,0,30,2.8811462,,,,,,,,,,,,,, +2013,6,7,1,30,2.3271048,,,,,,,,,,,,,, +2013,6,7,2,30,1.3643157,,,,,,,,,,,,,, +2013,6,7,3,30,0.18684487,,,,,,,,,,,,,, +2013,6,7,4,30,0.8698665,,,,,,,,,,,,,, +2013,6,7,5,30,1.4614853,,,,,,,,,,,,,, +2013,6,7,6,30,1.5718037,,,,,,,,,,,,,, +2013,6,7,7,30,1.3441788,,,,,,,,,,,,,, +2013,6,7,8,30,0.76449496,,,,,,,,,,,,,, +2013,6,7,9,30,0.24194452,,,,,,,,,,,,,, +2013,6,7,10,30,1.2629946,,,,,,,,,,,,,, +2013,6,7,11,30,1.728522,,,,,,,,,,,,,, +2013,6,7,12,30,1.5703577,,,,,,,,,,,,,, +2013,6,7,13,30,0.98073494,,,,,,,,,,,,,, +2013,6,7,14,30,0.040388275,,,,,,,,,,,,,, +2013,6,7,15,30,1.244705,,,,,,,,,,,,,, +2013,6,7,16,30,2.3367417,,,,,,,,,,,,,, +2013,6,7,17,30,2.83749,,,,,,,,,,,,,, +2013,6,7,18,30,2.7765524,,,,,,,,,,,,,, +2013,6,7,19,30,2.4169018,,,,,,,,,,,,,, +2013,6,7,20,30,1.6355746,,,,,,,,,,,,,, +2013,6,7,21,30,0.204722,,,,,,,,,,,,,, +2013,6,7,22,30,1.6740611,,,,,,,,,,,,,, +2013,6,7,23,30,2.7827008,,,,,,,,,,,,,, +2013,6,8,0,30,2.9908214,,,,,,,,,,,,,, +2013,6,8,1,30,2.7225552,,,,,,,,,,,,,, +2013,6,8,2,30,2.1020703,,,,,,,,,,,,,, +2013,6,8,3,30,1.0740073,,,,,,,,,,,,,, +2013,6,8,4,30,0.13008662,,,,,,,,,,,,,, +2013,6,8,5,30,1.0798348,,,,,,,,,,,,,, +2013,6,8,6,30,1.5581996,,,,,,,,,,,,,, +2013,6,8,7,30,1.5597479,,,,,,,,,,,,,, +2013,6,8,8,30,1.2433388,,,,,,,,,,,,,, +2013,6,8,9,30,0.5870625,,,,,,,,,,,,,, +2013,6,8,10,30,0.4388246,,,,,,,,,,,,,, +2013,6,8,11,30,1.3688157,,,,,,,,,,,,,, +2013,6,8,12,30,1.7066908,,,,,,,,,,,,,, +2013,6,8,13,30,1.4607244,,,,,,,,,,,,,, +2013,6,8,14,30,0.7984475,,,,,,,,,,,,,, +2013,6,8,15,30,0.2404898,,,,,,,,,,,,,, +2013,6,8,16,30,1.4517533,,,,,,,,,,,,,, +2013,6,8,17,30,2.393724,,,,,,,,,,,,,, +2013,6,8,18,30,2.7413373,,,,,,,,,,,,,, +2013,6,8,19,30,2.602627,,,,,,,,,,,,,, +2013,6,8,20,30,2.1550412,,,,,,,,,,,,,, +2013,6,8,21,30,1.222192,,,,,,,,,,,,,, +2013,6,8,22,30,0.36690065,,,,,,,,,,,,,, +2013,6,8,23,30,1.9185867,,,,,,,,,,,,,, +2013,6,9,0,30,2.7247982,,,,,,,,,,,,,, +2013,6,9,1,30,2.7879071,,,,,,,,,,,,,, +2013,6,9,2,30,2.482161,,,,,,,,,,,,,, +2013,6,9,3,30,1.8016278,,,,,,,,,,,,,, +2013,6,9,4,30,0.74562263,,,,,,,,,,,,,, +2013,6,9,5,30,0.3896987,,,,,,,,,,,,,, +2013,6,9,6,30,1.2333868,,,,,,,,,,,,,, +2013,6,9,7,30,1.5855881,,,,,,,,,,,,,, +2013,6,9,8,30,1.4873546,,,,,,,,,,,,,, +2013,6,9,9,30,1.1076953,,,,,,,,,,,,,, +2013,6,9,10,30,0.42045766,,,,,,,,,,,,,, +2013,6,9,11,30,0.57636696,,,,,,,,,,,,,, +2013,6,9,12,30,1.3963448,,,,,,,,,,,,,, +2013,6,9,13,30,1.6286806,,,,,,,,,,,,,, +2013,6,9,14,30,1.3208606,,,,,,,,,,,,,, +2013,6,9,15,30,0.61088276,,,,,,,,,,,,,, +2013,6,9,16,30,0.43399984,,,,,,,,,,,,,, +2013,6,9,17,30,1.5442884,,,,,,,,,,,,,, +2013,6,9,18,30,2.3049319,,,,,,,,,,,,,, +2013,6,9,19,30,2.519524,,,,,,,,,,,,,, +2013,6,9,20,30,2.3173585,,,,,,,,,,,,,, +2013,6,9,21,30,1.7893765,,,,,,,,,,,,,, +2013,6,9,22,30,0.7794184,,,,,,,,,,,,,, +2013,6,9,23,30,0.7098955,,,,,,,,,,,,,, +2013,6,10,0,30,1.9839528,,,,,,,,,,,,,, +2013,6,10,1,30,2.5351808,,,,,,,,,,,,,, +2013,6,10,2,30,2.5195866,,,,,,,,,,,,,, +2013,6,10,3,30,2.1851535,,,,,,,,,,,,,, +2013,6,10,4,30,1.45637,,,,,,,,,,,,,, +2013,6,10,5,30,0.4274674,,,,,,,,,,,,,, +2013,6,10,6,30,0.59922063,,,,,,,,,,,,,, +2013,6,10,7,30,1.3192306,,,,,,,,,,,,,, +2013,6,10,8,30,1.5605271,,,,,,,,,,,,,, +2013,6,10,9,30,1.3932273,,,,,,,,,,,,,, +2013,6,10,10,30,0.99155617,,,,,,,,,,,,,, +2013,6,10,11,30,0.3188535,,,,,,,,,,,,,, +2013,6,10,12,30,0.6231178,,,,,,,,,,,,,, +2013,6,10,13,30,1.3428695,,,,,,,,,,,,,, +2013,6,10,14,30,1.5028689,,,,,,,,,,,,,, +2013,6,10,15,30,1.1638495,,,,,,,,,,,,,, +2013,6,10,16,30,0.44646248,,,,,,,,,,,,,, +2013,6,10,17,30,0.54130495,,,,,,,,,,,,,, +2013,6,10,18,30,1.4887679,,,,,,,,,,,,,, +2013,6,10,19,30,2.064283,,,,,,,,,,,,,, +2013,6,10,20,30,2.1806543,,,,,,,,,,,,,, +2013,6,10,21,30,1.941798,,,,,,,,,,,,,, +2013,6,10,22,30,1.3745868,,,,,,,,,,,,,, +2013,6,10,23,30,0.38943014,,,,,,,,,,,,,, +2013,6,11,0,30,0.92054224,,,,,,,,,,,,,, +2013,6,11,1,30,1.9067398,,,,,,,,,,,,,, +2013,6,11,2,30,2.2749746,,,,,,,,,,,,,, +2013,6,11,3,30,2.218857,,,,,,,,,,,,,, +2013,6,11,4,30,1.8546473,,,,,,,,,,,,,, +2013,6,11,5,30,1.1118542,,,,,,,,,,,,,, +2013,6,11,6,30,0.167353,,,,,,,,,,,,,, +2013,6,11,7,30,0.7429043,,,,,,,,,,,,,, +2013,6,11,8,30,1.3590134,,,,,,,,,,,,,, +2013,6,11,9,30,1.521217,,,,,,,,,,,,,, +2013,6,11,10,30,1.3232315,,,,,,,,,,,,,, +2013,6,11,11,30,0.93954027,,,,,,,,,,,,,, +2013,6,11,12,30,0.30561918,,,,,,,,,,,,,, +2013,6,11,13,30,0.583449,,,,,,,,,,,,,, +2013,6,11,14,30,1.2325736,,,,,,,,,,,,,, +2013,6,11,15,30,1.3570371,,,,,,,,,,,,,, +2013,6,11,16,30,1.022451,,,,,,,,,,,,,, +2013,6,11,17,30,0.34920067,,,,,,,,,,,,,, +2013,6,11,18,30,0.5214364,,,,,,,,,,,,,, +2013,6,11,19,30,1.2728595,,,,,,,,,,,,,, +2013,6,11,20,30,1.6962061,,,,,,,,,,,,,, +2013,6,11,21,30,1.7693993,,,,,,,,,,,,,, +2013,6,11,22,30,1.5364492,,,,,,,,,,,,,, +2013,6,11,23,30,0.98391473,,,,,,,,,,,,,, +2013,6,12,0,30,0.155042,,,,,,,,,,,,,, +2013,6,12,1,30,0.9970873,,,,,,,,,,,,,, +2013,6,12,2,30,1.7357954,,,,,,,,,,,,,, +2013,6,12,3,30,1.9837154,,,,,,,,,,,,,, +2013,6,12,4,30,1.9062828,,,,,,,,,,,,,, +2013,6,12,5,30,1.5257213,,,,,,,,,,,,,, +2013,6,12,6,30,0.81468296,,,,,,,,,,,,,, +2013,6,12,7,30,0.04564457,,,,,,,,,,,,,, +2013,6,12,8,30,0.84551984,,,,,,,,,,,,,, +2013,6,12,9,30,1.3919706,,,,,,,,,,,,,, +2013,6,12,10,30,1.505078,,,,,,,,,,,,,, +2013,6,12,11,30,1.3100706,,,,,,,,,,,,,, +2013,6,12,12,30,0.968428,,,,,,,,,,,,,, +2013,6,12,13,30,0.36578962,,,,,,,,,,,,,, +2013,6,12,14,30,0.50121135,,,,,,,,,,,,,, +2013,6,12,15,30,1.1160367,,,,,,,,,,,,,, +2013,6,12,16,30,1.2388551,,,,,,,,,,,,,, +2013,6,12,17,30,0.9448741,,,,,,,,,,,,,, +2013,6,12,18,30,0.36566514,,,,,,,,,,,,,, +2013,6,12,19,30,0.35655648,,,,,,,,,,,,,, +2013,6,12,20,30,0.9256176,,,,,,,,,,,,,, +2013,6,12,21,30,1.27022,,,,,,,,,,,,,, +2013,6,12,22,30,1.3668356,,,,,,,,,,,,,, +2013,6,12,23,30,1.177575,,,,,,,,,,,,,, +2013,6,13,0,30,0.67656785,,,,,,,,,,,,,, +2013,6,13,1,30,0.16061406,,,,,,,,,,,,,, +2013,6,13,2,30,0.96035063,,,,,,,,,,,,,, +2013,6,13,3,30,1.5073451,,,,,,,,,,,,,, +2013,6,13,4,30,1.6869867,,,,,,,,,,,,,, +2013,6,13,5,30,1.6095202,,,,,,,,,,,,,, +2013,6,13,6,30,1.2379929,,,,,,,,,,,,,, +2013,6,13,7,30,0.58378166,,,,,,,,,,,,,, +2013,6,13,8,30,0.19390598,,,,,,,,,,,,,, +2013,6,13,9,30,0.9495308,,,,,,,,,,,,,, +2013,6,13,10,30,1.4511585,,,,,,,,,,,,,, +2013,6,13,11,30,1.5331993,,,,,,,,,,,,,, +2013,6,13,12,30,1.3619548,,,,,,,,,,,,,, +2013,6,13,13,30,1.0578979,,,,,,,,,,,,,, +2013,6,13,14,30,0.44822925,,,,,,,,,,,,,, +2013,6,13,15,30,0.4459173,,,,,,,,,,,,,, +2013,6,13,16,30,1.056122,,,,,,,,,,,,,, +2013,6,13,17,30,1.2027385,,,,,,,,,,,,,, +2013,6,13,18,30,0.97800523,,,,,,,,,,,,,, +2013,6,13,19,30,0.5171739,,,,,,,,,,,,,, +2013,6,13,20,30,0.114865005,,,,,,,,,,,,,, +2013,6,13,21,30,0.53039426,,,,,,,,,,,,,, +2013,6,13,22,30,0.88999176,,,,,,,,,,,,,, +2013,6,13,23,30,1.0582709,,,,,,,,,,,,,, +2013,6,14,0,30,0.92077005,,,,,,,,,,,,,, +2013,6,14,1,30,0.48243052,,,,,,,,,,,,,, +2013,6,14,2,30,0.20612562,,,,,,,,,,,,,, +2013,6,14,3,30,0.8356228,,,,,,,,,,,,,, +2013,6,14,4,30,1.2559812,,,,,,,,,,,,,, +2013,6,14,5,30,1.4191722,,,,,,,,,,,,,, +2013,6,14,6,30,1.3631597,,,,,,,,,,,,,, +2013,6,14,7,30,1.0110058,,,,,,,,,,,,,, +2013,6,14,8,30,0.39896247,,,,,,,,,,,,,, +2013,6,14,9,30,0.3497264,,,,,,,,,,,,,, +2013,6,14,10,30,1.0891027,,,,,,,,,,,,,, +2013,6,14,11,30,1.5507047,,,,,,,,,,,,,, +2013,6,14,12,30,1.60683,,,,,,,,,,,,,, +2013,6,14,13,30,1.4595025,,,,,,,,,,,,,, +2013,6,14,14,30,1.153774,,,,,,,,,,,,,, +2013,6,14,15,30,0.47817412,,,,,,,,,,,,,, +2013,6,14,16,30,0.48159498,,,,,,,,,,,,,, +2013,6,14,17,30,1.1058279,,,,,,,,,,,,,, +2013,6,14,18,30,1.2888615,,,,,,,,,,,,,, +2013,6,14,19,30,1.1413187,,,,,,,,,,,,,, +2013,6,14,20,30,0.7775737,,,,,,,,,,,,,, +2013,6,14,21,30,0.32350603,,,,,,,,,,,,,, +2013,6,14,22,30,0.20629942,,,,,,,,,,,,,, +2013,6,14,23,30,0.65098095,,,,,,,,,,,,,, +2013,6,15,0,30,0.89214736,,,,,,,,,,,,,, +2013,6,15,1,30,0.78437793,,,,,,,,,,,,,, +2013,6,15,2,30,0.40476948,,,,,,,,,,,,,, +2013,6,15,3,30,0.18111566,,,,,,,,,,,,,, +2013,6,15,4,30,0.6653565,,,,,,,,,,,,,, +2013,6,15,5,30,1.0353968,,,,,,,,,,,,,, +2013,6,15,6,30,1.2238703,,,,,,,,,,,,,, +2013,6,15,7,30,1.1868846,,,,,,,,,,,,,, +2013,6,15,8,30,0.8310193,,,,,,,,,,,,,, +2013,6,15,9,30,0.21981072,,,,,,,,,,,,,, +2013,6,15,10,30,0.54719585,,,,,,,,,,,,,, +2013,6,15,11,30,1.2784033,,,,,,,,,,,,,, +2013,6,15,12,30,1.6870434,,,,,,,,,,,,,, +2013,6,15,13,30,1.7104151,,,,,,,,,,,,,, +2013,6,15,14,30,1.5615237,,,,,,,,,,,,,, +2013,6,15,15,30,1.1880577,,,,,,,,,,,,,, +2013,6,15,16,30,0.39309055,,,,,,,,,,,,,, +2013,6,15,17,30,0.6487273,,,,,,,,,,,,,, +2013,6,15,18,30,1.2897387,,,,,,,,,,,,,, +2013,6,15,19,30,1.5013902,,,,,,,,,,,,,, +2013,6,15,20,30,1.4021184,,,,,,,,,,,,,, +2013,6,15,21,30,1.0634726,,,,,,,,,,,,,, +2013,6,15,22,30,0.56546336,,,,,,,,,,,,,, +2013,6,15,23,30,0.05456236,,,,,,,,,,,,,, +2013,6,16,0,30,0.59562385,,,,,,,,,,,,,, +2013,6,16,1,30,0.8652913,,,,,,,,,,,,,, +2013,6,16,2,30,0.75650287,,,,,,,,,,,,,, +2013,6,16,3,30,0.4240027,,,,,,,,,,,,,, +2013,6,16,4,30,0.1362625,,,,,,,,,,,,,, +2013,6,16,5,30,0.5218991,,,,,,,,,,,,,, +2013,6,16,6,30,0.9106575,,,,,,,,,,,,,, +2013,6,16,7,30,1.1271731,,,,,,,,,,,,,, +2013,6,16,8,30,1.0687397,,,,,,,,,,,,,, +2013,6,16,9,30,0.66240877,,,,,,,,,,,,,, +2013,6,16,10,30,0.056756042,,,,,,,,,,,,,, +2013,6,16,11,30,0.80574274,,,,,,,,,,,,,, +2013,6,16,12,30,1.5137335,,,,,,,,,,,,,, +2013,6,16,13,30,1.8445756,,,,,,,,,,,,,, +2013,6,16,14,30,1.8171428,,,,,,,,,,,,,, +2013,6,16,15,30,1.619895,,,,,,,,,,,,,, +2013,6,16,16,30,1.1050283,,,,,,,,,,,,,, +2013,6,16,17,30,0.20427783,,,,,,,,,,,,,, +2013,6,16,18,30,0.96114904,,,,,,,,,,,,,, +2013,6,16,19,30,1.5918278,,,,,,,,,,,,,, +2013,6,16,20,30,1.7939835,,,,,,,,,,,,,, +2013,6,16,21,30,1.673054,,,,,,,,,,,,,, +2013,6,16,22,30,1.2594106,,,,,,,,,,,,,, +2013,6,16,23,30,0.63621026,,,,,,,,,,,,,, +2013,6,17,0,30,0.09361426,,,,,,,,,,,,,, +2013,6,17,1,30,0.7008149,,,,,,,,,,,,,, +2013,6,17,2,30,0.9383831,,,,,,,,,,,,,, +2013,6,17,3,30,0.80422175,,,,,,,,,,,,,, +2013,6,17,4,30,0.49001917,,,,,,,,,,,,,, +2013,6,17,5,30,0.12373867,,,,,,,,,,,,,, +2013,6,17,6,30,0.48938456,,,,,,,,,,,,,, +2013,6,17,7,30,0.9187689,,,,,,,,,,,,,, +2013,6,17,8,30,1.1142615,,,,,,,,,,,,,, +2013,6,17,9,30,0.9714491,,,,,,,,,,,,,, +2013,6,17,10,30,0.46745235,,,,,,,,,,,,,, +2013,6,17,11,30,0.29096377,,,,,,,,,,,,,, +2013,6,17,12,30,1.1281431,,,,,,,,,,,,,, +2013,6,17,13,30,1.7775667,,,,,,,,,,,,,, +2013,6,17,14,30,1.9998163,,,,,,,,,,,,,, +2013,6,17,15,30,1.8970966,,,,,,,,,,,,,, +2013,6,17,16,30,1.5946057,,,,,,,,,,,,,, +2013,6,17,17,30,0.8752476,,,,,,,,,,,,,, +2013,6,17,18,30,0.3421667,,,,,,,,,,,,,, +2013,6,17,19,30,1.3888763,,,,,,,,,,,,,, +2013,6,17,20,30,1.9511158,,,,,,,,,,,,,, +2013,6,17,21,30,2.076625,,,,,,,,,,,,,, +2013,6,17,22,30,1.8456417,,,,,,,,,,,,,, +2013,6,17,23,30,1.2747731,,,,,,,,,,,,,, +2013,6,18,0,30,0.49727893,,,,,,,,,,,,,, +2013,6,18,1,30,0.31486058,,,,,,,,,,,,,, +2013,6,18,2,30,0.90159225,,,,,,,,,,,,,, +2013,6,18,3,30,1.057669,,,,,,,,,,,,,, +2013,6,18,4,30,0.8739624,,,,,,,,,,,,,, +2013,6,18,5,30,0.52082455,,,,,,,,,,,,,, +2013,6,18,6,30,0.115246914,,,,,,,,,,,,,, +2013,6,18,7,30,0.61458015,,,,,,,,,,,,,, +2013,6,18,8,30,1.0373342,,,,,,,,,,,,,, +2013,6,18,9,30,1.1346761,,,,,,,,,,,,,, +2013,6,18,10,30,0.8515876,,,,,,,,,,,,,, +2013,6,18,11,30,0.21609476,,,,,,,,,,,,,, +2013,6,18,12,30,0.6454375,,,,,,,,,,,,,, +2013,6,18,13,30,1.4997767,,,,,,,,,,,,,, +2013,6,18,14,30,2.0399108,,,,,,,,,,,,,, +2013,6,18,15,30,2.1264262,,,,,,,,,,,,,, +2013,6,18,16,30,1.9238222,,,,,,,,,,,,,, +2013,6,18,17,30,1.4568647,,,,,,,,,,,,,, +2013,6,18,18,30,0.49877483,,,,,,,,,,,,,, +2013,6,18,19,30,0.85954773,,,,,,,,,,,,,, +2013,6,18,20,30,1.8606428,,,,,,,,,,,,,, +2013,6,18,21,30,2.2755501,,,,,,,,,,,,,, +2013,6,18,22,30,2.2521527,,,,,,,,,,,,,, +2013,6,18,23,30,1.8443735,,,,,,,,,,,,,, +2013,6,19,0,30,1.0883663,,,,,,,,,,,,,, +2013,6,19,1,30,0.19255197,,,,,,,,,,,,,, +2013,6,19,2,30,0.6332614,,,,,,,,,,,,,, +2013,6,19,3,30,1.1258307,,,,,,,,,,,,,, +2013,6,19,4,30,1.1663171,,,,,,,,,,,,,, +2013,6,19,5,30,0.8976344,,,,,,,,,,,,,, +2013,6,19,6,30,0.4374264,,,,,,,,,,,,,, +2013,6,19,7,30,0.23668675,,,,,,,,,,,,,, +2013,6,19,8,30,0.8672867,,,,,,,,,,,,,, +2013,6,19,9,30,1.1958469,,,,,,,,,,,,,, +2013,6,19,10,30,1.1283709,,,,,,,,,,,,,, +2013,6,19,11,30,0.6726878,,,,,,,,,,,,,, +2013,6,19,12,30,0.12269912,,,,,,,,,,,,,, +2013,6,19,13,30,1.072676,,,,,,,,,,,,,, +2013,6,19,14,30,1.8846235,,,,,,,,,,,,,, +2013,6,19,15,30,2.263013,,,,,,,,,,,,,, +2013,6,19,16,30,2.200517,,,,,,,,,,,,,, +2013,6,19,17,30,1.8720315,,,,,,,,,,,,,, +2013,6,19,18,30,1.1835299,,,,,,,,,,,,,, +2013,6,19,19,30,0.16111033,,,,,,,,,,,,,, +2013,6,19,20,30,1.4494116,,,,,,,,,,,,,, +2013,6,19,21,30,2.2818305,,,,,,,,,,,,,, +2013,6,19,22,30,2.4783854,,,,,,,,,,,,,, +2013,6,19,23,30,2.2643528,,,,,,,,,,,,,, +2013,6,20,0,30,1.6611084,,,,,,,,,,,,,, +2013,6,20,1,30,0.7466078,,,,,,,,,,,,,, +2013,6,20,2,30,0.21832974,,,,,,,,,,,,,, +2013,6,20,3,30,0.966382,,,,,,,,,,,,,, +2013,6,20,4,30,1.3132604,,,,,,,,,,,,,, +2013,6,20,5,30,1.2121868,,,,,,,,,,,,,, +2013,6,20,6,30,0.81938565,,,,,,,,,,,,,, +2013,6,20,7,30,0.21617624,,,,,,,,,,,,,, +2013,6,20,8,30,0.5688081,,,,,,,,,,,,,, +2013,6,20,9,30,1.1595961,,,,,,,,,,,,,, +2013,6,20,10,30,1.3140675,,,,,,,,,,,,,, +2013,6,20,11,30,1.049506,,,,,,,,,,,,,, +2013,6,20,12,30,0.4115715,,,,,,,,,,,,,, +2013,6,20,13,30,0.5334996,,,,,,,,,,,,,, +2013,6,20,14,30,1.5357419,,,,,,,,,,,,,, +2013,6,20,15,30,2.228722,,,,,,,,,,,,,, +2013,6,20,16,30,2.411049,,,,,,,,,,,,,, +2013,6,20,17,30,2.1998558,,,,,,,,,,,,,, +2013,6,20,18,30,1.711455,,,,,,,,,,,,,, +2013,6,20,19,30,0.76302844,,,,,,,,,,,,,, +2013,6,20,20,30,0.71769285,,,,,,,,,,,,,, +2013,6,20,21,30,2.0061467,,,,,,,,,,,,,, +2013,6,20,22,30,2.566341,,,,,,,,,,,,,, +2013,6,20,23,30,2.519263,,,,,,,,,,,,,, +2013,6,21,0,30,2.1201677,,,,,,,,,,,,,, +2013,6,21,1,30,1.3429252,,,,,,,,,,,,,, +2013,6,21,2,30,0.32666376,,,,,,,,,,,,,, +2013,6,21,3,30,0.62775093,,,,,,,,,,,,,, +2013,6,21,4,30,1.2534646,,,,,,,,,,,,,, +2013,6,21,5,30,1.4225109,,,,,,,,,,,,,, +2013,6,21,6,30,1.1645782,,,,,,,,,,,,,, +2013,6,21,7,30,0.628383,,,,,,,,,,,,,, +2013,6,21,8,30,0.17231292,,,,,,,,,,,,,, +2013,6,21,9,30,0.94113505,,,,,,,,,,,,,, +2013,6,21,10,30,1.3960589,,,,,,,,,,,,,, +2013,6,21,11,30,1.3379757,,,,,,,,,,,,,, +2013,6,21,12,30,0.879385,,,,,,,,,,,,,, +2013,6,21,13,30,0.07179842,,,,,,,,,,,,,, +2013,6,21,14,30,0.99609536,,,,,,,,,,,,,, +2013,6,21,15,30,1.968785,,,,,,,,,,,,,, +2013,6,21,16,30,2.475308,,,,,,,,,,,,,, +2013,6,21,17,30,2.4565227,,,,,,,,,,,,,, +2013,6,21,18,30,2.0993152,,,,,,,,,,,,,, +2013,6,21,19,30,1.4145253,,,,,,,,,,,,,, +2013,6,21,20,30,0.24683604,,,,,,,,,,,,,, +2013,6,21,21,30,1.3578161,,,,,,,,,,,,,, +2013,6,21,22,30,2.431033,,,,,,,,,,,,,, +2013,6,21,23,30,2.673504,,,,,,,,,,,,,, +2013,6,22,0,30,2.4172533,,,,,,,,,,,,,, +2013,6,22,1,30,1.86719,,,,,,,,,,,,,, +2013,6,22,2,30,0.95025444,,,,,,,,,,,,,, +2013,6,22,3,30,0.1507363,,,,,,,,,,,,,, +2013,6,22,4,30,0.9995136,,,,,,,,,,,,,, +2013,6,22,5,30,1.4585049,,,,,,,,,,,,,, +2013,6,22,6,30,1.4397322,,,,,,,,,,,,,, +2013,6,22,7,30,1.0313799,,,,,,,,,,,,,, +2013,6,22,8,30,0.36910978,,,,,,,,,,,,,, +2013,6,22,9,30,0.49918666,,,,,,,,,,,,,, +2013,6,22,10,30,1.2517759,,,,,,,,,,,,,, +2013,6,22,11,30,1.5188658,,,,,,,,,,,,,, +2013,6,22,12,30,1.2576958,,,,,,,,,,,,,, +2013,6,22,13,30,0.6332134,,,,,,,,,,,,,, +2013,6,22,14,30,0.32100415,,,,,,,,,,,,,, +2013,6,22,15,30,1.4382752,,,,,,,,,,,,,, +2013,6,22,16,30,2.2952962,,,,,,,,,,,,,, +2013,6,22,17,30,2.5809913,,,,,,,,,,,,,, +2013,6,22,18,30,2.3802507,,,,,,,,,,,,,, +2013,6,22,19,30,1.877162,,,,,,,,,,,,,, +2013,6,22,20,30,0.9839503,,,,,,,,,,,,,, +2013,6,22,21,30,0.45452756,,,,,,,,,,,,,, +2013,6,22,22,30,1.9054896,,,,,,,,,,,,,, +2013,6,22,23,30,2.6623588,,,,,,,,,,,,,, +2013,6,23,0,30,2.6210165,,,,,,,,,,,,,, +2013,6,23,1,30,2.2224736,,,,,,,,,,,,,, +2013,6,23,2,30,1.5506008,,,,,,,,,,,,,, +2013,6,23,3,30,0.528315,,,,,,,,,,,,,, +2013,6,23,4,30,0.55915934,,,,,,,,,,,,,, +2013,6,23,5,30,1.2989161,,,,,,,,,,,,,, +2013,6,23,6,30,1.5738089,,,,,,,,,,,,,, +2013,6,23,7,30,1.3845713,,,,,,,,,,,,,, +2013,6,23,8,30,0.8569223,,,,,,,,,,,,,, +2013,6,23,9,30,0.14859425,,,,,,,,,,,,,, +2013,6,23,10,30,0.7932281,,,,,,,,,,,,,, +2013,6,23,11,30,1.4459171,,,,,,,,,,,,,, +2013,6,23,12,30,1.5266024,,,,,,,,,,,,,, +2013,6,23,13,30,1.1063762,,,,,,,,,,,,,, +2013,6,23,14,30,0.36005753,,,,,,,,,,,,,, +2013,6,23,15,30,0.6830736,,,,,,,,,,,,,, +2013,6,23,16,30,1.7750227,,,,,,,,,,,,,, +2013,6,23,17,30,2.4531395,,,,,,,,,,,,,, +2013,6,23,18,30,2.523853,,,,,,,,,,,,,, +2013,6,23,19,30,2.175404,,,,,,,,,,,,,, +2013,6,23,20,30,1.5380905,,,,,,,,,,,,,, +2013,6,23,21,30,0.47966623,,,,,,,,,,,,,, +2013,6,23,22,30,1.0131606,,,,,,,,,,,,,, +2013,6,23,23,30,2.2681375,,,,,,,,,,,,,, +2013,6,24,0,30,2.6978304,,,,,,,,,,,,,, +2013,6,24,1,30,2.459469,,,,,,,,,,,,,, +2013,6,24,2,30,1.9735518,,,,,,,,,,,,,, +2013,6,24,3,30,1.1927097,,,,,,,,,,,,,, +2013,6,24,4,30,0.13111646,,,,,,,,,,,,,, +2013,6,24,5,30,0.9249358,,,,,,,,,,,,,, +2013,6,24,6,30,1.5165145,,,,,,,,,,,,,, +2013,6,24,7,30,1.6209278,,,,,,,,,,,,,, +2013,6,24,8,30,1.3010561,,,,,,,,,,,,,, +2013,6,24,9,30,0.6979402,,,,,,,,,,,,,, +2013,6,24,10,30,0.15631399,,,,,,,,,,,,,, +2013,6,24,11,30,0.98481333,,,,,,,,,,,,,, +2013,6,24,12,30,1.5263551,,,,,,,,,,,,,, +2013,6,24,13,30,1.4644575,,,,,,,,,,,,,, +2013,6,24,14,30,0.9447818,,,,,,,,,,,,,, +2013,6,24,15,30,0.12984599,,,,,,,,,,,,,, +2013,6,24,16,30,0.9416548,,,,,,,,,,,,,, +2013,6,24,17,30,1.9362015,,,,,,,,,,,,,, +2013,6,24,18,30,2.411444,,,,,,,,,,,,,, +2013,6,24,19,30,2.3086255,,,,,,,,,,,,,, +2013,6,24,20,30,1.862373,,,,,,,,,,,,,, +2013,6,24,21,30,1.1331662,,,,,,,,,,,,,, +2013,6,24,22,30,0.12654269,,,,,,,,,,,,,, +2013,6,24,23,30,1.4277141,,,,,,,,,,,,,, +2013,6,25,0,30,2.414324,,,,,,,,,,,,,, +2013,6,25,1,30,2.5800974,,,,,,,,,,,,,, +2013,6,25,2,30,2.2326045,,,,,,,,,,,,,, +2013,6,25,3,30,1.6831232,,,,,,,,,,,,,, +2013,6,25,4,30,0.80896056,,,,,,,,,,,,,, +2013,6,25,5,30,0.32155547,,,,,,,,,,,,,, +2013,6,25,6,30,1.220627,,,,,,,,,,,,,, +2013,6,25,7,30,1.6676624,,,,,,,,,,,,,, +2013,6,25,8,30,1.6393614,,,,,,,,,,,,,, +2013,6,25,9,30,1.235492,,,,,,,,,,,,,, +2013,6,25,10,30,0.5974351,,,,,,,,,,,,,, +2013,6,25,11,30,0.24048686,,,,,,,,,,,,,, +2013,6,25,12,30,1.0769986,,,,,,,,,,,,,, +2013,6,25,13,30,1.538411,,,,,,,,,,,,,, +2013,6,25,14,30,1.3973811,,,,,,,,,,,,,, +2013,6,25,15,30,0.83682615,,,,,,,,,,,,,, +2013,6,25,16,30,0.034107406,,,,,,,,,,,,,, +2013,6,25,17,30,1.0367151,,,,,,,,,,,,,, +2013,6,25,18,30,1.8872185,,,,,,,,,,,,,, +2013,6,25,19,30,2.1794412,,,,,,,,,,,,,, +2013,6,25,20,30,1.9749883,,,,,,,,,,,,,, +2013,6,25,21,30,1.4996358,,,,,,,,,,,,,, +2013,6,25,22,30,0.74823254,,,,,,,,,,,,,, +2013,6,25,23,30,0.41374382,,,,,,,,,,,,,, +2013,6,26,0,30,1.6417669,,,,,,,,,,,,,, +2013,6,26,1,30,2.3705163,,,,,,,,,,,,,, +2013,6,26,2,30,2.3613622,,,,,,,,,,,,,, +2013,6,26,3,30,1.9628417,,,,,,,,,,,,,, +2013,6,26,4,30,1.3604045,,,,,,,,,,,,,, +2013,6,26,5,30,0.43165144,,,,,,,,,,,,,, +2013,6,26,6,30,0.65494215,,,,,,,,,,,,,, +2013,6,26,7,30,1.4478569,,,,,,,,,,,,,, +2013,6,26,8,30,1.7833179,,,,,,,,,,,,,, +2013,6,26,9,30,1.6658322,,,,,,,,,,,,,, +2013,6,26,10,30,1.2183565,,,,,,,,,,,,,, +2013,6,26,11,30,0.57474315,,,,,,,,,,,,,, +2013,6,26,12,30,0.26466396,,,,,,,,,,,,,, +2013,6,26,13,30,1.1072443,,,,,,,,,,,,,, +2013,6,26,14,30,1.541116,,,,,,,,,,,,,, +2013,6,26,15,30,1.3804786,,,,,,,,,,,,,, +2013,6,26,16,30,0.8261428,,,,,,,,,,,,,, +2013,6,26,17,30,0.037934717,,,,,,,,,,,,,, +2013,6,26,18,30,0.94353724,,,,,,,,,,,,,, +2013,6,26,19,30,1.6390512,,,,,,,,,,,,,, +2013,6,26,20,30,1.8116394,,,,,,,,,,,,,, +2013,6,26,21,30,1.5987685,,,,,,,,,,,,,, +2013,6,26,22,30,1.1681743,,,,,,,,,,,,,, +2013,6,26,23,30,0.4604674,,,,,,,,,,,,,, +2013,6,27,0,30,0.61729544,,,,,,,,,,,,,, +2013,6,27,1,30,1.6653122,,,,,,,,,,,,,, +2013,6,27,2,30,2.1897728,,,,,,,,,,,,,, +2013,6,27,3,30,2.0841475,,,,,,,,,,,,,, +2013,6,27,4,30,1.6705507,,,,,,,,,,,,,, +2013,6,27,5,30,1.0366681,,,,,,,,,,,,,, +2013,6,27,6,30,0.1174355,,,,,,,,,,,,,, +2013,6,27,7,30,0.9170426,,,,,,,,,,,,,, +2013,6,27,8,30,1.6265198,,,,,,,,,,,,,, +2013,6,27,9,30,1.8916366,,,,,,,,,,,,,, +2013,6,27,10,30,1.7198461,,,,,,,,,,,,,, +2013,6,27,11,30,1.2608999,,,,,,,,,,,,,, +2013,6,27,12,30,0.6276447,,,,,,,,,,,,,, +2013,6,27,13,30,0.23681474,,,,,,,,,,,,,, +2013,6,27,14,30,1.1248863,,,,,,,,,,,,,, +2013,6,27,15,30,1.5800813,,,,,,,,,,,,,, +2013,6,27,16,30,1.441036,,,,,,,,,,,,,, +2013,6,27,17,30,0.9270007,,,,,,,,,,,,,, +2013,6,27,18,30,0.17681521,,,,,,,,,,,,,, +2013,6,27,19,30,0.6780583,,,,,,,,,,,,,, +2013,6,27,20,30,1.252084,,,,,,,,,,,,,, +2013,6,27,21,30,1.4017951,,,,,,,,,,,,,, +2013,6,27,22,30,1.2702829,,,,,,,,,,,,,, +2013,6,27,23,30,0.9323157,,,,,,,,,,,,,, +2013,6,28,0,30,0.30096236,,,,,,,,,,,,,, +2013,6,28,1,30,0.66411126,,,,,,,,,,,,,, +2013,6,28,2,30,1.5416044,,,,,,,,,,,,,, +2013,6,28,3,30,1.9275423,,,,,,,,,,,,,, +2013,6,28,4,30,1.7905089,,,,,,,,,,,,,, +2013,6,28,5,30,1.3946607,,,,,,,,,,,,,, +2013,6,28,6,30,0.75961256,,,,,,,,,,,,,, +2013,6,28,7,30,0.17733978,,,,,,,,,,,,,, +2013,6,28,8,30,1.1126344,,,,,,,,,,,,,, +2013,6,28,9,30,1.7799006,,,,,,,,,,,,,, +2013,6,28,10,30,2.005772,,,,,,,,,,,,,, +2013,6,28,11,30,1.8047698,,,,,,,,,,,,,, +2013,6,28,12,30,1.3599656,,,,,,,,,,,,,, +2013,6,28,13,30,0.7346399,,,,,,,,,,,,,, +2013,6,28,14,30,0.19894126,,,,,,,,,,,,,, +2013,6,28,15,30,1.1710901,,,,,,,,,,,,,, +2013,6,28,16,30,1.6753174,,,,,,,,,,,,,, +2013,6,28,17,30,1.5806895,,,,,,,,,,,,,, +2013,6,28,18,30,1.1322484,,,,,,,,,,,,,, +2013,6,28,19,30,0.4618461,,,,,,,,,,,,,, +2013,6,28,20,30,0.3011885,,,,,,,,,,,,,, +2013,6,28,21,30,0.82753485,,,,,,,,,,,,,, +2013,6,28,22,30,1.0548215,,,,,,,,,,,,,, +2013,6,28,23,30,1.0555224,,,,,,,,,,,,,, +2013,6,29,0,30,0.8124339,,,,,,,,,,,,,, +2013,6,29,1,30,0.25748587,,,,,,,,,,,,,, +2013,6,29,2,30,0.58100635,,,,,,,,,,,,,, +2013,6,29,3,30,1.3222506,,,,,,,,,,,,,, +2013,6,29,4,30,1.6422094,,,,,,,,,,,,,, +2013,6,29,5,30,1.5338383,,,,,,,,,,,,,, +2013,6,29,6,30,1.1833818,,,,,,,,,,,,,, +2013,6,29,7,30,0.5632109,,,,,,,,,,,,,, +2013,6,29,8,30,0.34490177,,,,,,,,,,,,,, +2013,6,29,9,30,1.2639374,,,,,,,,,,,,,, +2013,6,29,10,30,1.9233141,,,,,,,,,,,,,, +2013,6,29,11,30,2.1266763,,,,,,,,,,,,,, +2013,6,29,12,30,1.9161841,,,,,,,,,,,,,, +2013,6,29,13,30,1.5004069,,,,,,,,,,,,,, +2013,6,29,14,30,0.8593618,,,,,,,,,,,,,, +2013,6,29,15,30,0.1943985,,,,,,,,,,,,,, +2013,6,29,16,30,1.2694016,,,,,,,,,,,,,, +2013,6,29,17,30,1.8285036,,,,,,,,,,,,,, +2013,6,29,18,30,1.7904927,,,,,,,,,,,,,, +2013,6,29,19,30,1.4217349,,,,,,,,,,,,,, +2013,6,29,20,30,0.8254965,,,,,,,,,,,,,, +2013,6,29,21,30,0.14067313,,,,,,,,,,,,,, +2013,6,29,22,30,0.4771102,,,,,,,,,,,,,, +2013,6,29,23,30,0.8453082,,,,,,,,,,,,,, +2013,6,30,0,30,0.9710261,,,,,,,,,,,,,, +2013,6,30,1,30,0.7951569,,,,,,,,,,,,,, +2013,6,30,2,30,0.31073216,,,,,,,,,,,,,, +2013,6,30,3,30,0.40352196,,,,,,,,,,,,,, +2013,6,30,4,30,1.0668619,,,,,,,,,,,,,, +2013,6,30,5,30,1.4007417,,,,,,,,,,,,,, +2013,6,30,6,30,1.3661394,,,,,,,,,,,,,, +2013,6,30,7,30,1.0638027,,,,,,,,,,,,,, +2013,6,30,8,30,0.44711733,,,,,,,,,,,,,, +2013,6,30,9,30,0.46051416,,,,,,,,,,,,,, +2013,6,30,10,30,1.3956381,,,,,,,,,,,,,, +2013,6,30,11,30,2.065152,,,,,,,,,,,,,, +2013,6,30,12,30,2.2516317,,,,,,,,,,,,,, +2013,6,30,13,30,2.0450525,,,,,,,,,,,,,, +2013,6,30,14,30,1.6558955,,,,,,,,,,,,,, +2013,6,30,15,30,0.9600479,,,,,,,,,,,,,, +2011,6,30,16,30,0.25001925,,,,,,,,,,,,,, +2011,6,30,17,30,1.4308002,,,,,,,,,,,,,, +2011,6,30,18,30,2.0376103,,,,,,,,,,,,,, +2011,6,30,19,30,2.0580783,,,,,,,,,,,,,, +2011,6,30,20,30,1.757523,,,,,,,,,,,,,, +2011,6,30,21,30,1.1882389,,,,,,,,,,,,,, +2011,6,30,22,30,0.44222498,,,,,,,,,,,,,, +2011,6,30,23,30,0.28031102,,,,,,,,,,,,,, +2011,7,1,0,30,0.7918006,,,,,,,,,,,,,, +2011,7,1,1,30,0.9945179,,,,,,,,,,,,,, +2011,7,1,2,30,0.86049604,,,,,,,,,,,,,, +2011,7,1,3,30,0.45219535,,,,,,,,,,,,,, +2011,7,1,4,30,0.1862096,,,,,,,,,,,,,, +2011,7,1,5,30,0.8488308,,,,,,,,,,,,,, +2011,7,1,6,30,1.2641717,,,,,,,,,,,,,, +2011,7,1,7,30,1.3095716,,,,,,,,,,,,,, +2011,7,1,8,30,1.0251454,,,,,,,,,,,,,, +2011,7,1,9,30,0.38350752,,,,,,,,,,,,,, +2011,7,1,10,30,0.55366564,,,,,,,,,,,,,, +2011,7,1,11,30,1.5306554,,,,,,,,,,,,,, +2011,7,1,12,30,2.2113576,,,,,,,,,,,,,, +2011,7,1,13,30,2.3761923,,,,,,,,,,,,,, +2011,7,1,14,30,2.1766667,,,,,,,,,,,,,, +2011,7,1,15,30,1.7945387,,,,,,,,,,,,,, +2011,7,1,16,30,0.99833757,,,,,,,,,,,,,, +2011,7,1,17,30,0.38318977,,,,,,,,,,,,,, +2011,7,1,18,30,1.6626692,,,,,,,,,,,,,, +2011,7,1,19,30,2.2979903,,,,,,,,,,,,,, +2011,7,1,20,30,2.3565733,,,,,,,,,,,,,, +2011,7,1,21,30,2.0772684,,,,,,,,,,,,,, +2011,7,1,22,30,1.4619709,,,,,,,,,,,,,, +2011,7,1,23,30,0.6035305,,,,,,,,,,,,,, +2011,7,2,0,30,0.25774932,,,,,,,,,,,,,, +2011,7,2,1,30,0.86694926,,,,,,,,,,,,,, +2011,7,2,2,30,1.0946281,,,,,,,,,,,,,, +2011,7,2,3,30,0.99227875,,,,,,,,,,,,,, +2011,7,2,4,30,0.6471764,,,,,,,,,,,,,, +2011,7,2,5,30,0.09169041,,,,,,,,,,,,,, +2011,7,2,6,30,0.7409399,,,,,,,,,,,,,, +2011,7,2,7,30,1.2588257,,,,,,,,,,,,,, +2011,7,2,8,30,1.3443943,,,,,,,,,,,,,, +2011,7,2,9,30,1.031028,,,,,,,,,,,,,, +2011,7,2,10,30,0.33642793,,,,,,,,,,,,,, +2011,7,2,11,30,0.65801775,,,,,,,,,,,,,, +2011,7,2,12,30,1.6883904,,,,,,,,,,,,,, +2011,7,2,13,30,2.3625507,,,,,,,,,,,,,, +2011,7,2,14,30,2.4913478,,,,,,,,,,,,,, +2011,7,2,15,30,2.2933295,,,,,,,,,,,,,, +2011,7,2,16,30,1.8854506,,,,,,,,,,,,,, +2011,7,2,17,30,0.9408291,,,,,,,,,,,,,, +2011,7,2,18,30,0.61750126,,,,,,,,,,,,,, +2011,7,2,19,30,1.963554,,,,,,,,,,,,,, +2011,7,2,20,30,2.585306,,,,,,,,,,,,,, +2011,7,2,21,30,2.6326008,,,,,,,,,,,,,, +2011,7,2,22,30,2.3066406,,,,,,,,,,,,,, +2011,7,2,23,30,1.5822489,,,,,,,,,,,,,, +2011,7,3,0,30,0.5885127,,,,,,,,,,,,,, +2011,7,3,1,30,0.3825639,,,,,,,,,,,,,, +2011,7,3,2,30,1.0288326,,,,,,,,,,,,,, +2011,7,3,3,30,1.2458961,,,,,,,,,,,,,, +2011,7,3,4,30,1.1643054,,,,,,,,,,,,,, +2011,7,3,5,30,0.8317936,,,,,,,,,,,,,, +2011,7,3,6,30,0.13986324,,,,,,,,,,,,,, +2011,7,3,7,30,0.781453,,,,,,,,,,,,,, +2011,7,3,8,30,1.3634659,,,,,,,,,,,,,, +2011,7,3,9,30,1.4247193,,,,,,,,,,,,,, +2011,7,3,10,30,1.0419741,,,,,,,,,,,,,, +2011,7,3,11,30,0.27219385,,,,,,,,,,,,,, +2011,7,3,12,30,0.80328894,,,,,,,,,,,,,, +2011,7,3,13,30,1.875715,,,,,,,,,,,,,, +2011,7,3,14,30,2.5076869,,,,,,,,,,,,,, +2011,7,3,15,30,2.5844836,,,,,,,,,,,,,, +2011,7,3,16,30,2.3774552,,,,,,,,,,,,,, +2011,7,3,17,30,1.8968309,,,,,,,,,,,,,, +2011,7,3,18,30,0.75827026,,,,,,,,,,,,,, +2011,7,3,19,30,0.9610008,,,,,,,,,,,,,, +2011,7,3,20,30,2.3032136,,,,,,,,,,,,,, +2011,7,3,21,30,2.8431697,,,,,,,,,,,,,, +2011,7,3,22,30,2.818025,,,,,,,,,,,,,, +2011,7,3,23,30,2.3895664,,,,,,,,,,,,,, +2011,7,4,0,30,1.5300586,,,,,,,,,,,,,, +2011,7,4,1,30,0.41932636,,,,,,,,,,,,,, +2011,7,4,2,30,0.6115388,,,,,,,,,,,,,, +2011,7,4,3,30,1.2395256,,,,,,,,,,,,,, +2011,7,4,4,30,1.4194973,,,,,,,,,,,,,, +2011,7,4,5,30,1.3273277,,,,,,,,,,,,,, +2011,7,4,6,30,0.9314615,,,,,,,,,,,,,, +2011,7,4,7,30,0.12056669,,,,,,,,,,,,,, +2011,7,4,8,30,0.9533855,,,,,,,,,,,,,, +2011,7,4,9,30,1.5239966,,,,,,,,,,,,,, +2011,7,4,10,30,1.5027057,,,,,,,,,,,,,, +2011,7,4,11,30,1.0258379,,,,,,,,,,,,,, +2011,7,4,12,30,0.16371647,,,,,,,,,,,,,, +2011,7,4,13,30,1.0024033,,,,,,,,,,,,,, +2011,7,4,14,30,2.0764642,,,,,,,,,,,,,, +2011,7,4,15,30,2.6246037,,,,,,,,,,,,,, +2011,7,4,16,30,2.6416879,,,,,,,,,,,,,, +2011,7,4,17,30,2.4052641,,,,,,,,,,,,,, +2011,7,4,18,30,1.790054,,,,,,,,,,,,,, +2011,7,4,19,30,0.44198236,,,,,,,,,,,,,, +2011,7,4,20,30,1.3819109,,,,,,,,,,,,,, +2011,7,4,21,30,2.613018,,,,,,,,,,,,,, +2011,7,4,22,30,3.0003536,,,,,,,,,,,,,, +2011,7,4,23,30,2.862572,,,,,,,,,,,,,, +2011,7,5,0,30,2.30979,,,,,,,,,,,,,, +2011,7,5,1,30,1.324342,,,,,,,,,,,,,, +2011,7,5,2,30,0.14520887,,,,,,,,,,,,,, +2011,7,5,3,30,0.90029037,,,,,,,,,,,,,, +2011,7,5,4,30,1.4610827,,,,,,,,,,,,,, +2011,7,5,5,30,1.5736128,,,,,,,,,,,,,, +2011,7,5,6,30,1.4221948,,,,,,,,,,,,,, +2011,7,5,7,30,0.8964403,,,,,,,,,,,,,, +2011,7,5,8,30,0.16186652,,,,,,,,,,,,,, +2011,7,5,9,30,1.1963513,,,,,,,,,,,,,, +2011,7,5,10,30,1.6785173,,,,,,,,,,,,,, +2011,7,5,11,30,1.5411333,,,,,,,,,,,,,, +2011,7,5,12,30,0.95778024,,,,,,,,,,,,,, +2011,7,5,13,30,0.04090678,,,,,,,,,,,,,, +2011,7,5,14,30,1.2378036,,,,,,,,,,,,,, +2011,7,5,15,30,2.2522426,,,,,,,,,,,,,, +2011,7,5,16,30,2.68633,,,,,,,,,,,,,, +2011,7,5,17,30,2.6421356,,,,,,,,,,,,,, +2011,7,5,18,30,2.3371058,,,,,,,,,,,,,, +2011,7,5,19,30,1.5287492,,,,,,,,,,,,,, +2011,7,5,20,30,0.158528,,,,,,,,,,,,,, +2011,7,5,21,30,1.8017833,,,,,,,,,,,,,, +2011,7,5,22,30,2.8097558,,,,,,,,,,,,,, +2011,7,5,23,30,3.0096252,,,,,,,,,,,,,, +2011,7,6,0,30,2.7564168,,,,,,,,,,,,,, +2011,7,6,1,30,2.0842495,,,,,,,,,,,,,, +2011,7,6,2,30,0.9987857,,,,,,,,,,,,,, +2011,7,6,3,30,0.23497646,,,,,,,,,,,,,, +2011,7,6,4,30,1.2026308,,,,,,,,,,,,,, +2011,7,6,5,30,1.6509079,,,,,,,,,,,,,, +2011,7,6,6,30,1.6649799,,,,,,,,,,,,,, +2011,7,6,7,30,1.4115378,,,,,,,,,,,,,, +2011,7,6,8,30,0.7302195,,,,,,,,,,,,,, +2011,7,6,9,30,0.4262391,,,,,,,,,,,,,, +2011,7,6,10,30,1.4327118,,,,,,,,,,,,,, +2011,7,6,11,30,1.7758967,,,,,,,,,,,,,, +2011,7,6,12,30,1.515384,,,,,,,,,,,,,, +2011,7,6,13,30,0.82544315,,,,,,,,,,,,,, +2011,7,6,14,30,0.24870193,,,,,,,,,,,,,, +2011,7,6,15,30,1.4615399,,,,,,,,,,,,,, +2011,7,6,16,30,2.3549366,,,,,,,,,,,,,, +2011,7,6,17,30,2.6634955,,,,,,,,,,,,,, +2011,7,6,18,30,2.5501611,,,,,,,,,,,,,, +2011,7,6,19,30,2.1263895,,,,,,,,,,,,,, +2011,7,6,20,30,1.1094027,,,,,,,,,,,,,, +2011,7,6,21,30,0.58227545,,,,,,,,,,,,,, +2011,7,6,22,30,2.1216025,,,,,,,,,,,,,, +2011,7,6,23,30,2.8407671,,,,,,,,,,,,,, +2011,7,7,0,30,2.8715482,,,,,,,,,,,,,, +2011,7,7,1,30,2.5212603,,,,,,,,,,,,,, +2011,7,7,2,30,1.741255,,,,,,,,,,,,,, +2011,7,7,3,30,0.5913926,,,,,,,,,,,,,, +2011,7,7,4,30,0.61472166,,,,,,,,,,,,,, +2011,7,7,5,30,1.4699295,,,,,,,,,,,,,, +2011,7,7,6,30,1.7731915,,,,,,,,,,,,,, +2011,7,7,7,30,1.6723827,,,,,,,,,,,,,, +2011,7,7,8,30,1.3015773,,,,,,,,,,,,,, +2011,7,7,9,30,0.48853645,,,,,,,,,,,,,, +2011,7,7,10,30,0.7057792,,,,,,,,,,,,,, +2011,7,7,11,30,1.5950571,,,,,,,,,,,,,, +2011,7,7,12,30,1.7861894,,,,,,,,,,,,,, +2011,7,7,13,30,1.417753,,,,,,,,,,,,,, +2011,7,7,14,30,0.6407646,,,,,,,,,,,,,, +2011,7,7,15,30,0.476685,,,,,,,,,,,,,, +2011,7,7,16,30,1.6111902,,,,,,,,,,,,,, +2011,7,7,17,30,2.3400598,,,,,,,,,,,,,, +2011,7,7,18,30,2.5245237,,,,,,,,,,,,,, +2011,7,7,19,30,2.3256197,,,,,,,,,,,,,, +2011,7,7,20,30,1.754414,,,,,,,,,,,,,, +2011,7,7,21,30,0.59045506,,,,,,,,,,,,,, +2011,7,7,22,30,1.0319479,,,,,,,,,,,,,, +2011,7,7,23,30,2.2705092,,,,,,,,,,,,,, +2011,7,8,0,30,2.709764,,,,,,,,,,,,,, +2011,7,8,1,30,2.6203346,,,,,,,,,,,,,, +2011,7,8,2,30,2.1849751,,,,,,,,,,,,,, +2011,7,8,3,30,1.3119813,,,,,,,,,,,,,, +2011,7,8,4,30,0.16014335,,,,,,,,,,,,,, +2011,7,8,5,30,0.9663578,,,,,,,,,,,,,, +2011,7,8,6,30,1.6639044,,,,,,,,,,,,,, +2011,7,8,7,30,1.8158728,,,,,,,,,,,,,, +2011,7,8,8,30,1.607906,,,,,,,,,,,,,, +2011,7,8,9,30,1.1362826,,,,,,,,,,,,,, +2011,7,8,10,30,0.25716367,,,,,,,,,,,,,, +2011,7,8,11,30,0.91154134,,,,,,,,,,,,,, +2011,7,8,12,30,1.6482025,,,,,,,,,,,,,, +2011,7,8,13,30,1.7083998,,,,,,,,,,,,,, +2011,7,8,14,30,1.2652814,,,,,,,,,,,,,, +2011,7,8,15,30,0.4441541,,,,,,,,,,,,,, +2011,7,8,16,30,0.64781624,,,,,,,,,,,,,, +2011,7,8,17,30,1.6304191,,,,,,,,,,,,,, +2011,7,8,18,30,2.1772947,,,,,,,,,,,,,, +2011,7,8,19,30,2.2484484,,,,,,,,,,,,,, +2011,7,8,20,30,1.958121,,,,,,,,,,,,,, +2011,7,8,21,30,1.26433,,,,,,,,,,,,,, +2011,7,8,22,30,0.14710757,,,,,,,,,,,,,, +2011,7,8,23,30,1.3391001,,,,,,,,,,,,,, +2011,7,9,0,30,2.2364285,,,,,,,,,,,,,, +2011,7,9,1,30,2.4598134,,,,,,,,,,,,,, +2011,7,9,2,30,2.291322,,,,,,,,,,,,,, +2011,7,9,3,30,1.7723024,,,,,,,,,,,,,, +2011,7,9,4,30,0.84065723,,,,,,,,,,,,,, +2011,7,9,5,30,0.27789727,,,,,,,,,,,,,, +2011,7,9,6,30,1.2423801,,,,,,,,,,,,,, +2011,7,9,7,30,1.7718813,,,,,,,,,,,,,, +2011,7,9,8,30,1.79371,,,,,,,,,,,,,, +2011,7,9,9,30,1.5064235,,,,,,,,,,,,,, +2011,7,9,10,30,0.97148323,,,,,,,,,,,,,, +2011,7,9,11,30,0.13916934,,,,,,,,,,,,,, +2011,7,9,12,30,1.0093582,,,,,,,,,,,,,, +2011,7,9,13,30,1.6008161,,,,,,,,,,,,,, +2011,7,9,14,30,1.5733193,,,,,,,,,,,,,, +2011,7,9,15,30,1.0992943,,,,,,,,,,,,,, +2011,7,9,16,30,0.29372543,,,,,,,,,,,,,, +2011,7,9,17,30,0.703138,,,,,,,,,,,,,, +2011,7,9,18,30,1.4869902,,,,,,,,,,,,,, +2011,7,9,19,30,1.8659481,,,,,,,,,,,,,, +2011,7,9,20,30,1.8526827,,,,,,,,,,,,,, +2011,7,9,21,30,1.4974289,,,,,,,,,,,,,, +2011,7,9,22,30,0.75735956,,,,,,,,,,,,,, +2011,7,9,23,30,0.37315232,,,,,,,,,,,,,, +2011,7,10,0,30,1.4584683,,,,,,,,,,,,,, +2011,7,10,1,30,2.0542629,,,,,,,,,,,,,, +2011,7,10,2,30,2.1365013,,,,,,,,,,,,,, +2011,7,10,3,30,1.9085674,,,,,,,,,,,,,, +2011,7,10,4,30,1.3186986,,,,,,,,,,,,,, +2011,7,10,5,30,0.38931638,,,,,,,,,,,,,, +2011,7,10,6,30,0.61576307,,,,,,,,,,,,,, +2011,7,10,7,30,1.424444,,,,,,,,,,,,,, +2011,7,10,8,30,1.8073273,,,,,,,,,,,,,, +2011,7,10,9,30,1.7351053,,,,,,,,,,,,,, +2011,7,10,10,30,1.4053838,,,,,,,,,,,,,, +2011,7,10,11,30,0.8478509,,,,,,,,,,,,,, +2011,7,10,12,30,0.13194536,,,,,,,,,,,,,, +2011,7,10,13,30,1.018006,,,,,,,,,,,,,, +2011,7,10,14,30,1.500716,,,,,,,,,,,,,, +2011,7,10,15,30,1.4336336,,,,,,,,,,,,,, +2011,7,10,16,30,0.9717016,,,,,,,,,,,,,, +2011,7,10,17,30,0.24068531,,,,,,,,,,,,,, +2011,7,10,18,30,0.60875285,,,,,,,,,,,,,, +2011,7,10,19,30,1.1906375,,,,,,,,,,,,,, +2011,7,10,20,30,1.4541415,,,,,,,,,,,,,, +2011,7,10,21,30,1.4102244,,,,,,,,,,,,,, +2011,7,10,22,30,1.043926,,,,,,,,,,,,,, +2011,7,10,23,30,0.34859425,,,,,,,,,,,,,, +2011,7,11,0,30,0.6027938,,,,,,,,,,,,,, +2011,7,11,1,30,1.4014499,,,,,,,,,,,,,, +2011,7,11,2,30,1.7731482,,,,,,,,,,,,,, +2011,7,11,3,30,1.773217,,,,,,,,,,,,,, +2011,7,11,4,30,1.5013835,,,,,,,,,,,,,, +2011,7,11,5,30,0.8801098,,,,,,,,,,,,,, +2011,7,11,6,30,0.042388834,,,,,,,,,,,,,, +2011,7,11,7,30,0.8539963,,,,,,,,,,,,,, +2011,7,11,8,30,1.5246689,,,,,,,,,,,,,, +2011,7,11,9,30,1.7965362,,,,,,,,,,,,,, +2011,7,11,10,30,1.6674227,,,,,,,,,,,,,, +2011,7,11,11,30,1.3297105,,,,,,,,,,,,,, +2011,7,11,12,30,0.7742907,,,,,,,,,,,,,, +2011,7,11,13,30,0.15780708,,,,,,,,,,,,,, +2011,7,11,14,30,0.99550754,,,,,,,,,,,,,, +2011,7,11,15,30,1.41223,,,,,,,,,,,,,, +2011,7,11,16,30,1.3431793,,,,,,,,,,,,,, +2011,7,11,17,30,0.9270506,,,,,,,,,,,,,, +2011,7,11,18,30,0.30197996,,,,,,,,,,,,,, +2011,7,11,19,30,0.37568378,,,,,,,,,,,,,, +2011,7,11,20,30,0.80667055,,,,,,,,,,,,,, +2011,7,11,21,30,1.0401416,,,,,,,,,,,,,, +2011,7,11,22,30,1.0272148,,,,,,,,,,,,,, +2011,7,11,23,30,0.69746363,,,,,,,,,,,,,, +2011,7,12,0,30,0.14511299,,,,,,,,,,,,,, +2011,7,12,1,30,0.65266633,,,,,,,,,,,,,, +2011,7,12,2,30,1.2117916,,,,,,,,,,,,,, +2011,7,12,3,30,1.4418099,,,,,,,,,,,,,, +2011,7,12,4,30,1.4069815,,,,,,,,,,,,,, +2011,7,12,5,30,1.1190046,,,,,,,,,,,,,, +2011,7,12,6,30,0.5156459,,,,,,,,,,,,,, +2011,7,12,7,30,0.25700864,,,,,,,,,,,,,, +2011,7,12,8,30,1.0052356,,,,,,,,,,,,,, +2011,7,12,9,30,1.573074,,,,,,,,,,,,,, +2011,7,12,10,30,1.7668394,,,,,,,,,,,,,, +2011,7,12,11,30,1.6112856,,,,,,,,,,,,,, +2011,7,12,12,30,1.285042,,,,,,,,,,,,,, +2011,7,12,13,30,0.72575617,,,,,,,,,,,,,, +2011,7,12,14,30,0.20574942,,,,,,,,,,,,,, +2011,7,12,15,30,1.0065742,,,,,,,,,,,,,, +2011,7,12,16,30,1.3878176,,,,,,,,,,,,,, +2011,7,12,17,30,1.3386297,,,,,,,,,,,,,, +2011,7,12,18,30,0.9884564,,,,,,,,,,,,,, +2011,7,12,19,30,0.47248664,,,,,,,,,,,,,, +2011,7,12,20,30,0.096133344,,,,,,,,,,,,,, +2011,7,12,21,30,0.44657236,,,,,,,,,,,,,, +2011,7,12,22,30,0.73677707,,,,,,,,,,,,,, +2011,7,12,23,30,0.78714496,,,,,,,,,,,,,, +2011,7,13,0,30,0.5063995,,,,,,,,,,,,,, +2011,7,13,1,30,0.1264941,,,,,,,,,,,,,, +2011,7,13,2,30,0.55795497,,,,,,,,,,,,,, +2011,7,13,3,30,0.95111895,,,,,,,,,,,,,, +2011,7,13,4,30,1.1185238,,,,,,,,,,,,,, +2011,7,13,5,30,1.091851,,,,,,,,,,,,,, +2011,7,13,6,30,0.8158358,,,,,,,,,,,,,, +2011,7,13,7,30,0.25574085,,,,,,,,,,,,,, +2011,7,13,8,30,0.43329483,,,,,,,,,,,,,, +2011,7,13,9,30,1.1074916,,,,,,,,,,,,,, +2011,7,13,10,30,1.6050737,,,,,,,,,,,,,, +2011,7,13,11,30,1.7437589,,,,,,,,,,,,,, +2011,7,13,12,30,1.5796624,,,,,,,,,,,,,, +2011,7,13,13,30,1.2574441,,,,,,,,,,,,,, +2011,7,13,14,30,0.65791494,,,,,,,,,,,,,, +2011,7,13,15,30,0.30508593,,,,,,,,,,,,,, +2011,7,13,16,30,1.092784,,,,,,,,,,,,,, +2011,7,13,17,30,1.452472,,,,,,,,,,,,,, +2011,7,13,18,30,1.431792,,,,,,,,,,,,,, +2011,7,13,19,30,1.146134,,,,,,,,,,,,,, +2011,7,13,20,30,0.70621115,,,,,,,,,,,,,, +2011,7,13,21,30,0.2503173,,,,,,,,,,,,,, +2011,7,13,22,30,0.22443648,,,,,,,,,,,,,, +2011,7,13,23,30,0.61377174,,,,,,,,,,,,,, +2011,7,14,0,30,0.7078604,,,,,,,,,,,,,, +2011,7,14,1,30,0.45821,,,,,,,,,,,,,, +2011,7,14,2,30,0.12201382,,,,,,,,,,,,,, +2011,7,14,3,30,0.38716513,,,,,,,,,,,,,, +2011,7,14,4,30,0.69872135,,,,,,,,,,,,,, +2011,7,14,5,30,0.875298,,,,,,,,,,,,,, +2011,7,14,6,30,0.8815508,,,,,,,,,,,,,, +2011,7,14,7,30,0.61867833,,,,,,,,,,,,,, +2011,7,14,8,30,0.087390706,,,,,,,,,,,,,, +2011,7,14,9,30,0.56533194,,,,,,,,,,,,,, +2011,7,14,10,30,1.2070209,,,,,,,,,,,,,, +2011,7,14,11,30,1.6551254,,,,,,,,,,,,,, +2011,7,14,12,30,1.7490318,,,,,,,,,,,,,, +2011,7,14,13,30,1.5746071,,,,,,,,,,,,,, +2011,7,14,14,30,1.2203279,,,,,,,,,,,,,, +2011,7,14,15,30,0.53244054,,,,,,,,,,,,,, +2011,7,14,16,30,0.4888718,,,,,,,,,,,,,, +2011,7,14,17,30,1.265186,,,,,,,,,,,,,, +2011,7,14,18,30,1.6054075,,,,,,,,,,,,,, +2011,7,14,19,30,1.6066554,,,,,,,,,,,,,, +2011,7,14,20,30,1.3501493,,,,,,,,,,,,,, +2011,7,14,21,30,0.9099261,,,,,,,,,,,,,, +2011,7,14,22,30,0.38511398,,,,,,,,,,,,,, +2011,7,14,23,30,0.20154837,,,,,,,,,,,,,, +2011,7,15,0,30,0.6629935,,,,,,,,,,,,,, +2011,7,15,1,30,0.7471792,,,,,,,,,,,,,, +2011,7,15,2,30,0.50503063,,,,,,,,,,,,,, +2011,7,15,3,30,0.17554894,,,,,,,,,,,,,, +2011,7,15,4,30,0.22893581,,,,,,,,,,,,,, +2011,7,15,5,30,0.5436816,,,,,,,,,,,,,, +2011,7,15,6,30,0.7716072,,,,,,,,,,,,,, +2011,7,15,7,30,0.793841,,,,,,,,,,,,,, +2011,7,15,8,30,0.5089686,,,,,,,,,,,,,, +2011,7,15,9,30,0.046162188,,,,,,,,,,,,,, +2011,7,15,10,30,0.7078463,,,,,,,,,,,,,, +2011,7,15,11,30,1.3463156,,,,,,,,,,,,,, +2011,7,15,12,30,1.7487158,,,,,,,,,,,,,, +2011,7,15,13,30,1.791909,,,,,,,,,,,,,, +2011,7,15,14,30,1.5841887,,,,,,,,,,,,,, +2011,7,15,15,30,1.1461228,,,,,,,,,,,,,, +2011,7,15,16,30,0.33830732,,,,,,,,,,,,,, +2011,7,15,17,30,0.7630063,,,,,,,,,,,,,, +2011,7,15,18,30,1.5144676,,,,,,,,,,,,,, +2011,7,15,19,30,1.825141,,,,,,,,,,,,,, +2011,7,15,20,30,1.8164642,,,,,,,,,,,,,, +2011,7,15,21,30,1.5195067,,,,,,,,,,,,,, +2011,7,15,22,30,0.9887393,,,,,,,,,,,,,, +2011,7,15,23,30,0.33386317,,,,,,,,,,,,,, +2011,7,16,0,30,0.35819185,,,,,,,,,,,,,, +2011,7,16,1,30,0.8171209,,,,,,,,,,,,,, +2011,7,16,2,30,0.84091026,,,,,,,,,,,,,, +2011,7,16,3,30,0.5901128,,,,,,,,,,,,,, +2011,7,16,4,30,0.2713133,,,,,,,,,,,,,, +2011,7,16,5,30,0.16038242,,,,,,,,,,,,,, +2011,7,16,6,30,0.5515493,,,,,,,,,,,,,, +2011,7,16,7,30,0.81341803,,,,,,,,,,,,,, +2011,7,16,8,30,0.7944183,,,,,,,,,,,,,, +2011,7,16,9,30,0.43431512,,,,,,,,,,,,,, +2011,7,16,10,30,0.18788818,,,,,,,,,,,,,, +2011,7,16,11,30,0.90871704,,,,,,,,,,,,,, +2011,7,16,12,30,1.5503944,,,,,,,,,,,,,, +2011,7,16,13,30,1.8890045,,,,,,,,,,,,,, +2011,7,16,14,30,1.8608725,,,,,,,,,,,,,, +2011,7,16,15,30,1.5852772,,,,,,,,,,,,,, +2011,7,16,16,30,1.0119774,,,,,,,,,,,,,, +2011,7,16,17,30,0.16024277,,,,,,,,,,,,,, +2011,7,16,18,30,1.117542,,,,,,,,,,,,,, +2011,7,16,19,30,1.8185211,,,,,,,,,,,,,, +2011,7,16,20,30,2.0683055,,,,,,,,,,,,,, +2011,7,16,21,30,1.9907207,,,,,,,,,,,,,, +2011,7,16,22,30,1.5743548,,,,,,,,,,,,,, +2011,7,16,23,30,0.89369047,,,,,,,,,,,,,, +2011,7,17,0,30,0.11372249,,,,,,,,,,,,,, +2011,7,17,1,30,0.62070704,,,,,,,,,,,,,, +2011,7,17,2,30,1.0001806,,,,,,,,,,,,,, +2011,7,17,3,30,0.93811095,,,,,,,,,,,,,, +2011,7,17,4,30,0.6602469,,,,,,,,,,,,,, +2011,7,17,5,30,0.28778344,,,,,,,,,,,,,, +2011,7,17,6,30,0.23768874,,,,,,,,,,,,,, +2011,7,17,7,30,0.71956664,,,,,,,,,,,,,, +2011,7,17,8,30,0.9462126,,,,,,,,,,,,,, +2011,7,17,9,30,0.8175906,,,,,,,,,,,,,, +2011,7,17,10,30,0.33513796,,,,,,,,,,,,,, +2011,7,17,11,30,0.39679354,,,,,,,,,,,,,, +2011,7,17,12,30,1.1919346,,,,,,,,,,,,,, +2011,7,17,13,30,1.8110574,,,,,,,,,,,,,, +2011,7,17,14,30,2.0497265,,,,,,,,,,,,,, +2011,7,17,15,30,1.9267918,,,,,,,,,,,,,, +2011,7,17,16,30,1.5478593,,,,,,,,,,,,,, +2011,7,17,17,30,0.7940832,,,,,,,,,,,,,, +2011,7,17,18,30,0.42870206,,,,,,,,,,,,,, +2011,7,17,19,30,1.5357808,,,,,,,,,,,,,, +2011,7,17,20,30,2.1375163,,,,,,,,,,,,,, +2011,7,17,21,30,2.2727132,,,,,,,,,,,,,, +2011,7,17,22,30,2.0610795,,,,,,,,,,,,,, +2011,7,17,23,30,1.4732838,,,,,,,,,,,,,, +2011,7,18,0,30,0.6374893,,,,,,,,,,,,,, +2011,7,18,1,30,0.23568554,,,,,,,,,,,,,, +2011,7,18,2,30,0.91401565,,,,,,,,,,,,,, +2011,7,18,3,30,1.1651533,,,,,,,,,,,,,, +2011,7,18,4,30,1.0103914,,,,,,,,,,,,,, +2011,7,18,5,30,0.6711609,,,,,,,,,,,,,, +2011,7,18,6,30,0.18203658,,,,,,,,,,,,,, +2011,7,18,7,30,0.4841531,,,,,,,,,,,,,, +2011,7,18,8,30,0.98075056,,,,,,,,,,,,,, +2011,7,18,9,30,1.0893879,,,,,,,,,,,,,, +2011,7,18,10,30,0.8012935,,,,,,,,,,,,,, +2011,7,18,11,30,0.1679593,,,,,,,,,,,,,, +2011,7,18,12,30,0.6940111,,,,,,,,,,,,,, +2011,7,18,13,30,1.5412582,,,,,,,,,,,,,, +2011,7,18,14,30,2.0831637,,,,,,,,,,,,,, +2011,7,18,15,30,2.1859508,,,,,,,,,,,,,, +2011,7,18,16,30,1.9536463,,,,,,,,,,,,,, +2011,7,18,17,30,1.4344715,,,,,,,,,,,,,, +2011,7,18,18,30,0.46811256,,,,,,,,,,,,,, +2011,7,18,19,30,0.91346884,,,,,,,,,,,,,, +2011,7,18,20,30,1.9800227,,,,,,,,,,,,,, +2011,7,18,21,30,2.4107616,,,,,,,,,,,,,, +2011,7,18,22,30,2.3778343,,,,,,,,,,,,,, +2011,7,18,23,30,1.9921391,,,,,,,,,,,,,, +2011,7,19,0,30,1.2247529,,,,,,,,,,,,,, +2011,7,19,1,30,0.27143094,,,,,,,,,,,,,, +2011,7,19,2,30,0.62037486,,,,,,,,,,,,,, +2011,7,19,3,30,1.1934531,,,,,,,,,,,,,, +2011,7,19,4,30,1.2960125,,,,,,,,,,,,,, +2011,7,19,5,30,1.0424541,,,,,,,,,,,,,, +2011,7,19,6,30,0.5965962,,,,,,,,,,,,,, +2011,7,19,7,30,0.12723637,,,,,,,,,,,,,, +2011,7,19,8,30,0.8268956,,,,,,,,,,,,,, +2011,7,19,9,30,1.2457078,,,,,,,,,,,,,, +2011,7,19,10,30,1.1765271,,,,,,,,,,,,,, +2011,7,19,11,30,0.7114941,,,,,,,,,,,,,, +2011,7,19,12,30,0.08386051,,,,,,,,,,,,,, +2011,7,19,13,30,1.0596749,,,,,,,,,,,,,, +2011,7,19,14,30,1.899193,,,,,,,,,,,,,, +2011,7,19,15,30,2.3033807,,,,,,,,,,,,,, +2011,7,19,16,30,2.254848,,,,,,,,,,,,,, +2011,7,19,17,30,1.9046698,,,,,,,,,,,,,, +2011,7,19,18,30,1.2028235,,,,,,,,,,,,,, +2011,7,19,19,30,0.1440995,,,,,,,,,,,,,, +2011,7,19,20,30,1.4702114,,,,,,,,,,,,,, +2011,7,19,21,30,2.3802748,,,,,,,,,,,,,, +2011,7,19,22,30,2.574692,,,,,,,,,,,,,, +2011,7,19,23,30,2.3524444,,,,,,,,,,,,,, +2011,7,20,0,30,1.7896404,,,,,,,,,,,,,, +2011,7,20,1,30,0.8641675,,,,,,,,,,,,,, +2011,7,20,2,30,0.18507089,,,,,,,,,,,,,, +2011,7,20,3,30,1.015926,,,,,,,,,,,,,, +2011,7,20,4,30,1.440943,,,,,,,,,,,,,, +2011,7,20,5,30,1.3896248,,,,,,,,,,,,,, +2011,7,20,6,30,1.0255649,,,,,,,,,,,,,, +2011,7,20,7,30,0.43678802,,,,,,,,,,,,,, +2011,7,20,8,30,0.41284028,,,,,,,,,,,,,, +2011,7,20,9,30,1.1795157,,,,,,,,,,,,,, +2011,7,20,10,30,1.4448147,,,,,,,,,,,,,, +2011,7,20,11,30,1.18075,,,,,,,,,,,,,, +2011,7,20,12,30,0.55042934,,,,,,,,,,,,,, +2011,7,20,13,30,0.388506,,,,,,,,,,,,,, +2011,7,20,14,30,1.433994,,,,,,,,,,,,,, +2011,7,20,15,30,2.190117,,,,,,,,,,,,,, +2011,7,20,16,30,2.4194,,,,,,,,,,,,,, +2011,7,20,17,30,2.2274828,,,,,,,,,,,,,, +2011,7,20,18,30,1.7452209,,,,,,,,,,,,,, +2011,7,20,19,30,0.8264678,,,,,,,,,,,,,, +2011,7,20,20,30,0.63115966,,,,,,,,,,,,,, +2011,7,20,21,30,2.0092084,,,,,,,,,,,,,, +2011,7,20,22,30,2.6539738,,,,,,,,,,,,,, +2011,7,20,23,30,2.5939763,,,,,,,,,,,,,, +2011,7,21,0,30,2.2025633,,,,,,,,,,,,,, +2011,7,21,1,30,1.4789261,,,,,,,,,,,,,, +2011,7,21,2,30,0.42516226,,,,,,,,,,,,,, +2011,7,21,3,30,0.6524655,,,,,,,,,,,,,, +2011,7,21,4,30,1.3957487,,,,,,,,,,,,,, +2011,7,21,5,30,1.6463382,,,,,,,,,,,,,, +2011,7,21,6,30,1.4435005,,,,,,,,,,,,,, +2011,7,21,7,30,0.95806396,,,,,,,,,,,,,, +2011,7,21,8,30,0.22294888,,,,,,,,,,,,,, +2011,7,21,9,30,0.76429164,,,,,,,,,,,,,, +2011,7,21,10,30,1.475813,,,,,,,,,,,,,, +2011,7,21,11,30,1.5533078,,,,,,,,,,,,,, +2011,7,21,12,30,1.1166766,,,,,,,,,,,,,, +2011,7,21,13,30,0.35231596,,,,,,,,,,,,,, +2011,7,21,14,30,0.6959375,,,,,,,,,,,,,, +2011,7,21,15,30,1.7409092,,,,,,,,,,,,,, +2011,7,21,16,30,2.35293,,,,,,,,,,,,,, +2011,7,21,17,30,2.405896,,,,,,,,,,,,,, +2011,7,21,18,30,2.0879536,,,,,,,,,,,,,, +2011,7,21,19,30,1.4560329,,,,,,,,,,,,,, +2011,7,21,20,30,0.33437765,,,,,,,,,,,,,, +2011,7,21,21,30,1.2236378,,,,,,,,,,,,,, +2011,7,21,22,30,2.420156,,,,,,,,,,,,,, +2011,7,21,23,30,2.7476592,,,,,,,,,,,,,, +2011,7,22,0,30,2.4751782,,,,,,,,,,,,,, +2011,7,22,1,30,1.9512936,,,,,,,,,,,,,, +2011,7,22,2,30,1.0801086,,,,,,,,,,,,,, +2011,7,22,3,30,0.109722055,,,,,,,,,,,,,, +2011,7,22,4,30,1.1310375,,,,,,,,,,,,,, +2011,7,22,5,30,1.7330889,,,,,,,,,,,,,, +2011,7,22,6,30,1.7991396,,,,,,,,,,,,,, +2011,7,22,7,30,1.4552429,,,,,,,,,,,,,, +2011,7,22,8,30,0.84593326,,,,,,,,,,,,,, +2011,7,22,9,30,0.12418054,,,,,,,,,,,,,, +2011,7,22,10,30,1.0894613,,,,,,,,,,,,,, +2011,7,22,11,30,1.6881679,,,,,,,,,,,,,, +2011,7,22,12,30,1.5886984,,,,,,,,,,,,,, +2011,7,22,13,30,1.0251939,,,,,,,,,,,,,, +2011,7,22,14,30,0.17023018,,,,,,,,,,,,,, +2011,7,22,15,30,0.9409749,,,,,,,,,,,,,, +2011,7,22,16,30,1.9183315,,,,,,,,,,,,,, +2011,7,22,17,30,2.35882,,,,,,,,,,,,,, +2011,7,22,18,30,2.2612157,,,,,,,,,,,,,, +2011,7,22,19,30,1.8355072,,,,,,,,,,,,,, +2011,7,22,20,30,1.0572551,,,,,,,,,,,,,, +2011,7,22,21,30,0.25330198,,,,,,,,,,,,,, +2011,7,22,22,30,1.7152498,,,,,,,,,,,,,, +2011,7,22,23,30,2.6231227,,,,,,,,,,,,,, +2011,7,23,0,30,2.6621492,,,,,,,,,,,,,, +2011,7,23,1,30,2.249189,,,,,,,,,,,,,, +2011,7,23,2,30,1.6158031,,,,,,,,,,,,,, +2011,7,23,3,30,0.6107425,,,,,,,,,,,,,, +2011,7,23,4,30,0.6153699,,,,,,,,,,,,,, +2011,7,23,5,30,1.5729368,,,,,,,,,,,,,, +2011,7,23,6,30,2.000545,,,,,,,,,,,,,, +2011,7,23,7,30,1.8921833,,,,,,,,,,,,,, +2011,7,23,8,30,1.4260383,,,,,,,,,,,,,, +2011,7,23,9,30,0.70266116,,,,,,,,,,,,,, +2011,7,23,10,30,0.3309498,,,,,,,,,,,,,, +2011,7,23,11,30,1.35596,,,,,,,,,,,,,, +2011,7,23,12,30,1.8235133,,,,,,,,,,,,,, +2011,7,23,13,30,1.5905648,,,,,,,,,,,,,, +2011,7,23,14,30,0.952165,,,,,,,,,,,,,, +2011,7,23,15,30,0.06440045,,,,,,,,,,,,,, +2011,7,23,16,30,1.0737375,,,,,,,,,,,,,, +2011,7,23,17,30,1.9338548,,,,,,,,,,,,,, +2011,7,23,18,30,2.2087893,,,,,,,,,,,,,, +2011,7,23,19,30,2.0021415,,,,,,,,,,,,,, +2011,7,23,20,30,1.4972285,,,,,,,,,,,,,, +2011,7,23,21,30,0.6201772,,,,,,,,,,,,,, +2011,7,23,22,30,0.712702,,,,,,,,,,,,,, +2011,7,23,23,30,2.005192,,,,,,,,,,,,,, +2011,7,24,0,30,2.6051116,,,,,,,,,,,,,, +2011,7,24,1,30,2.4391134,,,,,,,,,,,,,, +2011,7,24,2,30,1.9454229,,,,,,,,,,,,,, +2011,7,24,3,30,1.21049,,,,,,,,,,,,,, +2011,7,24,4,30,0.1294162,,,,,,,,,,,,,, +2011,7,24,5,30,1.1066189,,,,,,,,,,,,,, +2011,7,24,6,30,1.931949,,,,,,,,,,,,,, +2011,7,24,7,30,2.1810658,,,,,,,,,,,,,, +2011,7,24,8,30,1.9264009,,,,,,,,,,,,,, +2011,7,24,9,30,1.364598,,,,,,,,,,,,,, +2011,7,24,10,30,0.55124915,,,,,,,,,,,,,, +2011,7,24,11,30,0.55452096,,,,,,,,,,,,,, +2011,7,24,12,30,1.5524833,,,,,,,,,,,,,, +2011,7,24,13,30,1.9072702,,,,,,,,,,,,,, +2011,7,24,14,30,1.5975106,,,,,,,,,,,,,, +2011,7,24,15,30,0.9299501,,,,,,,,,,,,,, +2011,7,24,16,30,0.058248412,,,,,,,,,,,,,, +2011,7,24,17,30,1.0674046,,,,,,,,,,,,,, +2011,7,24,18,30,1.7836612,,,,,,,,,,,,,, +2011,7,24,19,30,1.9281533,,,,,,,,,,,,,, +2011,7,24,20,30,1.66869,,,,,,,,,,,,,, +2011,7,24,21,30,1.1344585,,,,,,,,,,,,,, +2011,7,24,22,30,0.25050512,,,,,,,,,,,,,, +2011,7,24,23,30,1.0140203,,,,,,,,,,,,,, +2011,7,25,0,30,2.0653372,,,,,,,,,,,,,, +2011,7,25,1,30,2.4107041,,,,,,,,,,,,,, +2011,7,25,2,30,2.129574,,,,,,,,,,,,,, +2011,7,25,3,30,1.5887325,,,,,,,,,,,,,, +2011,7,25,4,30,0.7704569,,,,,,,,,,,,,, +2011,7,25,5,30,0.39671722,,,,,,,,,,,,,, +2011,7,25,6,30,1.5055761,,,,,,,,,,,,,, +2011,7,25,7,30,2.1790836,,,,,,,,,,,,,, +2011,7,25,8,30,2.2742462,,,,,,,,,,,,,, +2011,7,25,9,30,1.9127693,,,,,,,,,,,,,, +2011,7,25,10,30,1.291545,,,,,,,,,,,,,, +2011,7,25,11,30,0.4237128,,,,,,,,,,,,,, +2011,7,25,12,30,0.7230058,,,,,,,,,,,,,, +2011,7,25,13,30,1.6843641,,,,,,,,,,,,,, +2011,7,25,14,30,1.9662737,,,,,,,,,,,,,, +2011,7,25,15,30,1.6315666,,,,,,,,,,,,,, +2011,7,25,16,30,0.97035104,,,,,,,,,,,,,, +2011,7,25,17,30,0.08948791,,,,,,,,,,,,,, +2011,7,25,18,30,0.9150879,,,,,,,,,,,,,, +2011,7,25,19,30,1.4912297,,,,,,,,,,,,,, +2011,7,25,20,30,1.5693867,,,,,,,,,,,,,, +2011,7,25,21,30,1.3265374,,,,,,,,,,,,,, +2011,7,25,22,30,0.8236866,,,,,,,,,,,,,, +2011,7,25,23,30,0.15827635,,,,,,,,,,,,,, +2011,7,26,0,30,1.1145346,,,,,,,,,,,,,, +2011,7,26,1,30,1.9312019,,,,,,,,,,,,,, +2011,7,26,2,30,2.1059456,,,,,,,,,,,,,, +2011,7,26,3,30,1.779856,,,,,,,,,,,,,, +2011,7,26,4,30,1.2172912,,,,,,,,,,,,,, +2011,7,26,5,30,0.361789,,,,,,,,,,,,,, +2011,7,26,6,30,0.77512544,,,,,,,,,,,,,, +2011,7,26,7,30,1.7726017,,,,,,,,,,,,,, +2011,7,26,8,30,2.3116431,,,,,,,,,,,,,, +2011,7,26,9,30,2.2947414,,,,,,,,,,,,,, +2011,7,26,10,30,1.8739202,,,,,,,,,,,,,, +2011,7,26,11,30,1.2383868,,,,,,,,,,,,,, +2011,7,26,12,30,0.34951416,,,,,,,,,,,,,, +2011,7,26,13,30,0.8275193,,,,,,,,,,,,,, +2011,7,26,14,30,1.767705,,,,,,,,,,,,,, +2011,7,26,15,30,2.017882,,,,,,,,,,,,,, +2011,7,26,16,30,1.6974106,,,,,,,,,,,,,, +2011,7,26,17,30,1.0743397,,,,,,,,,,,,,, +2011,7,26,18,30,0.23371656,,,,,,,,,,,,,, +2011,7,26,19,30,0.63257325,,,,,,,,,,,,,, +2011,7,26,20,30,1.113618,,,,,,,,,,,,,, +2011,7,26,21,30,1.2113283,,,,,,,,,,,,,, +2011,7,26,22,30,1.0494508,,,,,,,,,,,,,, +2011,7,26,23,30,0.62123835,,,,,,,,,,,,,, +2011,7,27,0,30,0.18897495,,,,,,,,,,,,,, +2011,7,27,1,30,1.034411,,,,,,,,,,,,,, +2011,7,27,2,30,1.6660076,,,,,,,,,,,,,, +2011,7,27,3,30,1.7556702,,,,,,,,,,,,,, +2011,7,27,4,30,1.4405631,,,,,,,,,,,,,, +2011,7,27,5,30,0.8903615,,,,,,,,,,,,,, +2011,7,27,6,30,0.071469374,,,,,,,,,,,,,, +2011,7,27,7,30,1.013621,,,,,,,,,,,,,, +2011,7,27,8,30,1.9050785,,,,,,,,,,,,,, +2011,7,27,9,30,2.3494618,,,,,,,,,,,,,, +2011,7,27,10,30,2.2696192,,,,,,,,,,,,,, +2011,7,27,11,30,1.8422667,,,,,,,,,,,,,, +2011,7,27,12,30,1.2340775,,,,,,,,,,,,,, +2011,7,27,13,30,0.33717555,,,,,,,,,,,,,, +2011,7,27,14,30,0.8815915,,,,,,,,,,,,,, +2011,7,27,15,30,1.8220985,,,,,,,,,,,,,, +2011,7,27,16,30,2.0712285,,,,,,,,,,,,,, +2011,7,27,17,30,1.7966614,,,,,,,,,,,,,, +2011,7,27,18,30,1.2454071,,,,,,,,,,,,,, +2011,7,27,19,30,0.4891335,,,,,,,,,,,,,, +2011,7,27,20,30,0.27192375,,,,,,,,,,,,,, +2011,7,27,21,30,0.7401604,,,,,,,,,,,,,, +2011,7,27,22,30,0.93837774,,,,,,,,,,,,,, +2011,7,27,23,30,0.8879132,,,,,,,,,,,,,, +2011,7,28,0,30,0.5453552,,,,,,,,,,,,,, +2011,7,28,1,30,0.14793205,,,,,,,,,,,,,, +2011,7,28,2,30,0.8194655,,,,,,,,,,,,,, +2011,7,28,3,30,1.3378961,,,,,,,,,,,,,, +2011,7,28,4,30,1.4255431,,,,,,,,,,,,,, +2011,7,28,5,30,1.1717995,,,,,,,,,,,,,, +2011,7,28,6,30,0.66767716,,,,,,,,,,,,,, +2011,7,28,7,30,0.15027136,,,,,,,,,,,,,, +2011,7,28,8,30,1.1099846,,,,,,,,,,,,,, +2011,7,28,9,30,1.9316797,,,,,,,,,,,,,, +2011,7,28,10,30,2.3283973,,,,,,,,,,,,,, +2011,7,28,11,30,2.2349052,,,,,,,,,,,,,, +2011,7,28,12,30,1.8481175,,,,,,,,,,,,,, +2011,7,28,13,30,1.2863882,,,,,,,,,,,,,, +2011,7,28,14,30,0.36799264,,,,,,,,,,,,,, +2011,7,28,15,30,0.91295594,,,,,,,,,,,,,, +2011,7,28,16,30,1.8680418,,,,,,,,,,,,,, +2011,7,28,17,30,2.139295,,,,,,,,,,,,,, +2011,7,28,18,30,1.9405282,,,,,,,,,,,,,, +2011,7,28,19,30,1.4840631,,,,,,,,,,,,,, +2011,7,28,20,30,0.8093187,,,,,,,,,,,,,, +2011,7,28,21,30,0.11466326,,,,,,,,,,,,,, +2011,7,28,22,30,0.4673118,,,,,,,,,,,,,, +2011,7,28,23,30,0.80599225,,,,,,,,,,,,,, +2011,7,29,0,30,0.8521096,,,,,,,,,,,,,, +2011,7,29,1,30,0.58846796,,,,,,,,,,,,,, +2011,7,29,2,30,0.119315684,,,,,,,,,,,,,, +2011,7,29,3,30,0.52610457,,,,,,,,,,,,,, +2011,7,29,4,30,1.0214359,,,,,,,,,,,,,, +2011,7,29,5,30,1.1844671,,,,,,,,,,,,,, +2011,7,29,6,30,1.0251932,,,,,,,,,,,,,, +2011,7,29,7,30,0.577955,,,,,,,,,,,,,, +2011,7,29,8,30,0.18595989,,,,,,,,,,,,,, +2011,7,29,9,30,1.10211,,,,,,,,,,,,,, +2011,7,29,10,30,1.9015255,,,,,,,,,,,,,, +2011,7,29,11,30,2.2935896,,,,,,,,,,,,,, +2011,7,29,12,30,2.2247791,,,,,,,,,,,,,, +2011,7,29,13,30,1.9028015,,,,,,,,,,,,,, +2011,7,29,14,30,1.3756276,,,,,,,,,,,,,, +2011,7,29,15,30,0.4059635,,,,,,,,,,,,,, +2011,7,29,16,30,0.95399857,,,,,,,,,,,,,, +2011,7,29,17,30,1.9317911,,,,,,,,,,,,,, +2011,7,29,18,30,2.2458339,,,,,,,,,,,,,, +2011,7,29,19,30,2.1399622,,,,,,,,,,,,,, +2011,7,29,20,30,1.7647727,,,,,,,,,,,,,, +2011,7,29,21,30,1.1164856,,,,,,,,,,,,,, +2011,7,29,22,30,0.3496232,,,,,,,,,,,,,, +2011,7,29,23,30,0.35883817,,,,,,,,,,,,,, +2011,7,30,0,30,0.82045394,,,,,,,,,,,,,, +2011,7,30,1,30,0.9233197,,,,,,,,,,,,,, +2011,7,30,2,30,0.7330267,,,,,,,,,,,,,, +2011,7,30,3,30,0.34560397,,,,,,,,,,,,,, +2011,7,30,4,30,0.22688739,,,,,,,,,,,,,, +2011,7,30,5,30,0.7985374,,,,,,,,,,,,,, +2011,7,30,6,30,1.0861433,,,,,,,,,,,,,, +2011,7,30,7,30,1.0166986,,,,,,,,,,,,,, +2011,7,30,8,30,0.6056699,,,,,,,,,,,,,, +2011,7,30,9,30,0.13551041,,,,,,,,,,,,,, +2011,7,30,10,30,1.051306,,,,,,,,,,,,,, +2011,7,30,11,30,1.8724229,,,,,,,,,,,,,, +2011,7,30,12,30,2.2860236,,,,,,,,,,,,,, +2011,7,30,13,30,2.2556207,,,,,,,,,,,,,, +2011,7,30,14,30,1.9923346,,,,,,,,,,,,,, +2011,7,30,15,30,1.464689,,,,,,,,,,,,,, +2011,7,30,16,30,0.41011685,,,,,,,,,,,,,, +2011,7,30,17,30,1.0400643,,,,,,,,,,,,,, +2011,7,30,18,30,2.0457563,,,,,,,,,,,,,, +2011,7,30,19,30,2.41007,,,,,,,,,,,,,, +2011,7,30,20,30,2.377974,,,,,,,,,,,,,, +2011,7,30,21,30,2.0235846,,,,,,,,,,,,,, +2011,7,30,22,30,1.3196123,,,,,,,,,,,,,, +2011,7,30,23,30,0.4271151,,,,,,,,,,,,,, +2011,7,31,0,30,0.4226919,,,,,,,,,,,,,, +2011,7,31,1,30,0.9511248,,,,,,,,,,,,,, +2011,7,31,2,30,1.0745825,,,,,,,,,,,,,, +2011,7,31,3,30,0.951142,,,,,,,,,,,,,, +2011,7,31,4,30,0.6223902,,,,,,,,,,,,,, +2011,7,31,5,30,0.09117926,,,,,,,,,,,,,, +2011,7,31,6,30,0.7353412,,,,,,,,,,,,,, +2011,7,31,7,30,1.1420348,,,,,,,,,,,,,, +2011,7,31,8,30,1.117701,,,,,,,,,,,,,, +2011,7,31,9,30,0.701724,,,,,,,,,,,,,, +2011,7,31,10,30,0.06306573,,,,,,,,,,,,,, +2011,7,31,11,30,1.0253057,,,,,,,,,,,,,, +2011,7,31,12,30,1.8922313,,,,,,,,,,,,,, +2011,7,31,13,30,2.323924,,,,,,,,,,,,,, +2011,7,31,14,30,2.31839,,,,,,,,,,,,,, +2011,7,31,15,30,2.0861413,,,,,,,,,,,,,, +1998,7,31,16,30,1.5108275,,,,,,,,,,,,,, +1998,7,31,17,30,0.34317023,,,,,,,,,,,,,, +1998,7,31,18,30,1.2071731,,,,,,,,,,,,,, +1998,7,31,19,30,2.230083,,,,,,,,,,,,,, +1998,7,31,20,30,2.6171715,,,,,,,,,,,,,, +1998,7,31,21,30,2.5958009,,,,,,,,,,,,,, +1998,7,31,22,30,2.1788664,,,,,,,,,,,,,, +1998,7,31,23,30,1.3538682,,,,,,,,,,,,,, +1998,8,1,0,30,0.32095268,,,,,,,,,,,,,, +1998,8,1,1,30,0.6251578,,,,,,,,,,,,,, +1998,8,1,2,30,1.1568549,,,,,,,,,,,,,, +1998,8,1,3,30,1.2770963,,,,,,,,,,,,,, +1998,8,1,4,30,1.194783,,,,,,,,,,,,,, +1998,8,1,5,30,0.8373025,,,,,,,,,,,,,, +1998,8,1,6,30,0.11835764,,,,,,,,,,,,,, +1998,8,1,7,30,0.84702635,,,,,,,,,,,,,, +1998,8,1,8,30,1.3142812,,,,,,,,,,,,,, +1998,8,1,9,30,1.2698387,,,,,,,,,,,,,, +1998,8,1,10,30,0.80292827,,,,,,,,,,,,,, +1998,8,1,11,30,0.038226563,,,,,,,,,,,,,, +1998,8,1,12,30,1.0750442,,,,,,,,,,,,,, +1998,8,1,13,30,1.9760183,,,,,,,,,,,,,, +1998,8,1,14,30,2.3932433,,,,,,,,,,,,,, +1998,8,1,15,30,2.385584,,,,,,,,,,,,,, +1998,8,1,16,30,2.1463866,,,,,,,,,,,,,, +1998,8,1,17,30,1.4671263,,,,,,,,,,,,,, +1998,8,1,18,30,0.20580152,,,,,,,,,,,,,, +1998,8,1,19,30,1.4733837,,,,,,,,,,,,,, +1998,8,1,20,30,2.4640834,,,,,,,,,,,,,, +1998,8,1,21,30,2.8069282,,,,,,,,,,,,,, +1998,8,1,22,30,2.715303,,,,,,,,,,,,,, +1998,8,1,23,30,2.171159,,,,,,,,,,,,,, +1998,8,2,0,30,1.203256,,,,,,,,,,,,,, +1998,8,2,1,30,0.07887928,,,,,,,,,,,,,, +1998,8,2,2,30,0.9176893,,,,,,,,,,,,,, +1998,8,2,3,30,1.3988785,,,,,,,,,,,,,, +1998,8,2,4,30,1.4932848,,,,,,,,,,,,,, +1998,8,2,5,30,1.3973731,,,,,,,,,,,,,, +1998,8,2,6,30,0.91307557,,,,,,,,,,,,,, +1998,8,2,7,30,0.15519151,,,,,,,,,,,,,, +1998,8,2,8,30,1.0913522,,,,,,,,,,,,,, +1998,8,2,9,30,1.5329125,,,,,,,,,,,,,, +1998,8,2,10,30,1.4079082,,,,,,,,,,,,,, +1998,8,2,11,30,0.8503808,,,,,,,,,,,,,, +1998,8,2,12,30,0.09812029,,,,,,,,,,,,,, +1998,8,2,13,30,1.2093987,,,,,,,,,,,,,, +1998,8,2,14,30,2.0960867,,,,,,,,,,,,,, +1998,8,2,15,30,2.4563406,,,,,,,,,,,,,, +1998,8,2,16,30,2.4210515,,,,,,,,,,,,,, +1998,8,2,17,30,2.1266081,,,,,,,,,,,,,, +1998,8,2,18,30,1.2837574,,,,,,,,,,,,,, +1998,8,2,19,30,0.29076388,,,,,,,,,,,,,, +1998,8,2,20,30,1.8100678,,,,,,,,,,,,,, +1998,8,2,21,30,2.6787205,,,,,,,,,,,,,, +1998,8,2,22,30,2.9007392,,,,,,,,,,,,,, +1998,8,2,23,30,2.6804962,,,,,,,,,,,,,, +1998,8,3,0,30,1.9856141,,,,,,,,,,,,,, +1998,8,3,1,30,0.8901559,,,,,,,,,,,,,, +1998,8,3,2,30,0.33130848,,,,,,,,,,,,,, +1998,8,3,3,30,1.2517246,,,,,,,,,,,,,, +1998,8,3,4,30,1.638794,,,,,,,,,,,,,, +1998,8,3,5,30,1.6763111,,,,,,,,,,,,,, +1998,8,3,6,30,1.4963307,,,,,,,,,,,,,, +1998,8,3,7,30,0.8152258,,,,,,,,,,,,,, +1998,8,3,8,30,0.39744514,,,,,,,,,,,,,, +1998,8,3,9,30,1.3884461,,,,,,,,,,,,,, +1998,8,3,10,30,1.7228409,,,,,,,,,,,,,, +1998,8,3,11,30,1.479203,,,,,,,,,,,,,, +1998,8,3,12,30,0.8078208,,,,,,,,,,,,,, +1998,8,3,13,30,0.24807413,,,,,,,,,,,,,, +1998,8,3,14,30,1.3877147,,,,,,,,,,,,,, +1998,8,3,15,30,2.1960235,,,,,,,,,,,,,, +1998,8,3,16,30,2.4688509,,,,,,,,,,,,,, +1998,8,3,17,30,2.381387,,,,,,,,,,,,,, +1998,8,3,18,30,1.9724705,,,,,,,,,,,,,, +1998,8,3,19,30,0.9297985,,,,,,,,,,,,,, +1998,8,3,20,30,0.7220055,,,,,,,,,,,,,, +1998,8,3,21,30,2.134689,,,,,,,,,,,,,, +1998,8,3,22,30,2.7885566,,,,,,,,,,,,,, +1998,8,3,23,30,2.8462658,,,,,,,,,,,,,, +1998,8,4,0,30,2.479672,,,,,,,,,,,,,, +1998,8,4,1,30,1.6416576,,,,,,,,,,,,,, +1998,8,4,2,30,0.45374733,,,,,,,,,,,,,, +1998,8,4,3,30,0.7668212,,,,,,,,,,,,,, +1998,8,4,4,30,1.579523,,,,,,,,,,,,,, +1998,8,4,5,30,1.8378674,,,,,,,,,,,,,, +1998,8,4,6,30,1.7841747,,,,,,,,,,,,,, +1998,8,4,7,30,1.4602438,,,,,,,,,,,,,, +1998,8,4,8,30,0.56916237,,,,,,,,,,,,,, +1998,8,4,9,30,0.7450296,,,,,,,,,,,,,, +1998,8,4,10,30,1.6505505,,,,,,,,,,,,,, +1998,8,4,11,30,1.8288496,,,,,,,,,,,,,, +1998,8,4,12,30,1.4582719,,,,,,,,,,,,,, +1998,8,4,13,30,0.6773296,,,,,,,,,,,,,, +1998,8,4,14,30,0.44849634,,,,,,,,,,,,,, +1998,8,4,15,30,1.5397452,,,,,,,,,,,,,, +1998,8,4,16,30,2.2178245,,,,,,,,,,,,,, +1998,8,4,17,30,2.3901858,,,,,,,,,,,,,, +1998,8,4,18,30,2.2192209,,,,,,,,,,,,,, +1998,8,4,19,30,1.6454422,,,,,,,,,,,,,, +1998,8,4,20,30,0.4351874,,,,,,,,,,,,,, +1998,8,4,21,30,1.1883562,,,,,,,,,,,,,, +1998,8,4,22,30,2.345655,,,,,,,,,,,,,, +1998,8,4,23,30,2.7405934,,,,,,,,,,,,,, +1998,8,5,0,30,2.638995,,,,,,,,,,,,,, +1998,8,5,1,30,2.133427,,,,,,,,,,,,,, +1998,8,5,2,30,1.1725562,,,,,,,,,,,,,, +1998,8,5,3,30,0.07679109,,,,,,,,,,,,,, +1998,8,5,4,30,1.2067531,,,,,,,,,,,,,, +1998,8,5,5,30,1.8547863,,,,,,,,,,,,,, +1998,8,5,6,30,1.9650561,,,,,,,,,,,,,, +1998,8,5,7,30,1.7952029,,,,,,,,,,,,,, +1998,8,5,8,30,1.2989955,,,,,,,,,,,,,, +1998,8,5,9,30,0.2623543,,,,,,,,,,,,,, +1998,8,5,10,30,1.0754629,,,,,,,,,,,,,, +1998,8,5,11,30,1.8147205,,,,,,,,,,,,,, +1998,8,5,12,30,1.8319676,,,,,,,,,,,,,, +1998,8,5,13,30,1.3551445,,,,,,,,,,,,,, +1998,8,5,14,30,0.50004995,,,,,,,,,,,,,, +1998,8,5,15,30,0.63038695,,,,,,,,,,,,,, +1998,8,5,16,30,1.5992134,,,,,,,,,,,,,, +1998,8,5,17,30,2.1226258,,,,,,,,,,,,,, +1998,8,5,18,30,2.190651,,,,,,,,,,,,,, +1998,8,5,19,30,1.9058628,,,,,,,,,,,,,, +1998,8,5,20,30,1.1625775,,,,,,,,,,,,,, +1998,8,5,21,30,0.18095082,,,,,,,,,,,,,, +1998,8,5,22,30,1.5538025,,,,,,,,,,,,,, +1998,8,5,23,30,2.3769119,,,,,,,,,,,,,, +1998,8,6,0,30,2.5371528,,,,,,,,,,,,,, +1998,8,6,1,30,2.3067043,,,,,,,,,,,,,, +1998,8,6,2,30,1.6730988,,,,,,,,,,,,,, +1998,8,6,3,30,0.6229244,,,,,,,,,,,,,, +1998,8,6,4,30,0.59449345,,,,,,,,,,,,,, +1998,8,6,5,30,1.5880097,,,,,,,,,,,,,, +1998,8,6,6,30,2.0411875,,,,,,,,,,,,,, +1998,8,6,7,30,2.0048041,,,,,,,,,,,,,, +1998,8,6,8,30,1.7113069,,,,,,,,,,,,,, +1998,8,6,9,30,1.0529712,,,,,,,,,,,,,, +1998,8,6,10,30,0.16928644,,,,,,,,,,,,,, +1998,8,6,11,30,1.317599,,,,,,,,,,,,,, +1998,8,6,12,30,1.8636351,,,,,,,,,,,,,, +1998,8,6,13,30,1.7525944,,,,,,,,,,,,,, +1998,8,6,14,30,1.2090516,,,,,,,,,,,,,, +1998,8,6,15,30,0.3362335,,,,,,,,,,,,,, +1998,8,6,16,30,0.7309835,,,,,,,,,,,,,, +1998,8,6,17,30,1.5292625,,,,,,,,,,,,,, +1998,8,6,18,30,1.900428,,,,,,,,,,,,,, +1998,8,6,19,30,1.8677299,,,,,,,,,,,,,, +1998,8,6,20,30,1.4651246,,,,,,,,,,,,,, +1998,8,6,21,30,0.6153637,,,,,,,,,,,,,, +1998,8,6,22,30,0.6313753,,,,,,,,,,,,,, +1998,8,6,23,30,1.7273995,,,,,,,,,,,,,, +1998,8,7,0,30,2.2269986,,,,,,,,,,,,,, +1998,8,7,1,30,2.2179341,,,,,,,,,,,,,, +1998,8,7,2,30,1.883927,,,,,,,,,,,,,, +1998,8,7,3,30,1.1386425,,,,,,,,,,,,,, +1998,8,7,4,30,0.07798534,,,,,,,,,,,,,, +1998,8,7,5,30,1.06022,,,,,,,,,,,,,, +1998,8,7,6,30,1.8594801,,,,,,,,,,,,,, +1998,8,7,7,30,2.1209557,,,,,,,,,,,,,, +1998,8,7,8,30,1.9569867,,,,,,,,,,,,,, +1998,8,7,9,30,1.5514098,,,,,,,,,,,,,, +1998,8,7,10,30,0.77355206,,,,,,,,,,,,,, +1998,8,7,11,30,0.43478543,,,,,,,,,,,,,, +1998,8,7,12,30,1.4515481,,,,,,,,,,,,,, +1998,8,7,13,30,1.8255873,,,,,,,,,,,,,, +1998,8,7,14,30,1.6363726,,,,,,,,,,,,,, +1998,8,7,15,30,1.0669637,,,,,,,,,,,,,, +1998,8,7,16,30,0.2344195,,,,,,,,,,,,,, +1998,8,7,17,30,0.716947,,,,,,,,,,,,,, +1998,8,7,18,30,1.3316402,,,,,,,,,,,,,, +1998,8,7,19,30,1.5773433,,,,,,,,,,,,,, +1998,8,7,20,30,1.4655802,,,,,,,,,,,,,, +1998,8,7,21,30,0.9835846,,,,,,,,,,,,,, +1998,8,7,22,30,0.16505079,,,,,,,,,,,,,, +1998,8,7,23,30,0.9238068,,,,,,,,,,,,,, +1998,8,8,0,30,1.6916158,,,,,,,,,,,,,, +1998,8,8,1,30,1.9439424,,,,,,,,,,,,,, +1998,8,8,2,30,1.8295584,,,,,,,,,,,,,, +1998,8,8,3,30,1.4076791,,,,,,,,,,,,,, +1998,8,8,4,30,0.5904242,,,,,,,,,,,,,, +1998,8,8,5,30,0.45265785,,,,,,,,,,,,,, +1998,8,8,6,30,1.4026552,,,,,,,,,,,,,, +1998,8,8,7,30,1.9975178,,,,,,,,,,,,,, +1998,8,8,8,30,2.096355,,,,,,,,,,,,,, +1998,8,8,9,30,1.8341875,,,,,,,,,,,,,, +1998,8,8,10,30,1.344835,,,,,,,,,,,,,, +1998,8,8,11,30,0.5059603,,,,,,,,,,,,,, +1998,8,8,12,30,0.6495902,,,,,,,,,,,,,, +1998,8,8,13,30,1.5043327,,,,,,,,,,,,,, +1998,8,8,14,30,1.7528903,,,,,,,,,,,,,, +1998,8,8,15,30,1.528436,,,,,,,,,,,,,, +1998,8,8,16,30,0.9625468,,,,,,,,,,,,,, +1998,8,8,17,30,0.20470965,,,,,,,,,,,,,, +1998,8,8,18,30,0.58988565,,,,,,,,,,,,,, +1998,8,8,19,30,1.0471203,,,,,,,,,,,,,, +1998,8,8,20,30,1.2190363,,,,,,,,,,,,,, +1998,8,8,21,30,1.0713265,,,,,,,,,,,,,, +1998,8,8,22,30,0.5739324,,,,,,,,,,,,,, +1998,8,8,23,30,0.24026386,,,,,,,,,,,,,, +1998,8,9,0,30,1.0025004,,,,,,,,,,,,,, +1998,8,9,1,30,1.4935507,,,,,,,,,,,,,, +1998,8,9,2,30,1.5917385,,,,,,,,,,,,,, +1998,8,9,3,30,1.4159288,,,,,,,,,,,,,, +1998,8,9,4,30,0.9295023,,,,,,,,,,,,,, +1998,8,9,5,30,0.11136689,,,,,,,,,,,,,, +1998,8,9,6,30,0.8269127,,,,,,,,,,,,,, +1998,8,9,7,30,1.5963017,,,,,,,,,,,,,, +1998,8,9,8,30,2.0111408,,,,,,,,,,,,,, +1998,8,9,9,30,1.9882189,,,,,,,,,,,,,, +1998,8,9,10,30,1.6628573,,,,,,,,,,,,,, +1998,8,9,11,30,1.125678,,,,,,,,,,,,,, +1998,8,9,12,30,0.28235415,,,,,,,,,,,,,, +1998,8,9,13,30,0.8105356,,,,,,,,,,,,,, +1998,8,9,14,30,1.5246208,,,,,,,,,,,,,, +1998,8,9,15,30,1.6911638,,,,,,,,,,,,,, +1998,8,9,16,30,1.4546721,,,,,,,,,,,,,, +1998,8,9,17,30,0.91186535,,,,,,,,,,,,,, +1998,8,9,18,30,0.23806827,,,,,,,,,,,,,, +1998,8,9,19,30,0.3850028,,,,,,,,,,,,,, +1998,8,9,20,30,0.74979955,,,,,,,,,,,,,, +1998,8,9,21,30,0.91444236,,,,,,,,,,,,,, +1998,8,9,22,30,0.7744087,,,,,,,,,,,,,, +1998,8,9,23,30,0.31297925,,,,,,,,,,,,,, +1998,8,10,0,30,0.35245115,,,,,,,,,,,,,, +1998,8,10,1,30,0.9079291,,,,,,,,,,,,,, +1998,8,10,2,30,1.210233,,,,,,,,,,,,,, +1998,8,10,3,30,1.2324946,,,,,,,,,,,,,, +1998,8,10,4,30,1.0268825,,,,,,,,,,,,,, +1998,8,10,5,30,0.51382583,,,,,,,,,,,,,, +1998,8,10,6,30,0.2672725,,,,,,,,,,,,,, +1998,8,10,7,30,1.0525594,,,,,,,,,,,,,, +1998,8,10,8,30,1.6603512,,,,,,,,,,,,,, +1998,8,10,9,30,1.9376686,,,,,,,,,,,,,, +1998,8,10,10,30,1.8359821,,,,,,,,,,,,,, +1998,8,10,11,30,1.482465,,,,,,,,,,,,,, +1998,8,10,12,30,0.9229461,,,,,,,,,,,,,, +1998,8,10,13,30,0.14988588,,,,,,,,,,,,,, +1998,8,10,14,30,0.94906366,,,,,,,,,,,,,, +1998,8,10,15,30,1.5513918,,,,,,,,,,,,,, +1998,8,10,16,30,1.6621482,,,,,,,,,,,,,, +1998,8,10,17,30,1.4244963,,,,,,,,,,,,,, +1998,8,10,18,30,0.9208406,,,,,,,,,,,,,, +1998,8,10,19,30,0.3342435,,,,,,,,,,,,,, +1998,8,10,20,30,0.16739833,,,,,,,,,,,,,, +1998,8,10,21,30,0.52622515,,,,,,,,,,,,,, +1998,8,10,22,30,0.7347435,,,,,,,,,,,,,, +1998,8,10,23,30,0.61591965,,,,,,,,,,,,,, +1998,8,11,0,30,0.20643732,,,,,,,,,,,,,, +1998,8,11,1,30,0.32544535,,,,,,,,,,,,,, +1998,8,11,2,30,0.7192181,,,,,,,,,,,,,, +1998,8,11,3,30,0.9217582,,,,,,,,,,,,,, +1998,8,11,4,30,0.9265162,,,,,,,,,,,,,, +1998,8,11,5,30,0.7172583,,,,,,,,,,,,,, +1998,8,11,6,30,0.21288213,,,,,,,,,,,,,, +1998,8,11,7,30,0.49219862,,,,,,,,,,,,,, +1998,8,11,8,30,1.158392,,,,,,,,,,,,,, +1998,8,11,9,30,1.6476507,,,,,,,,,,,,,, +1998,8,11,10,30,1.8339756,,,,,,,,,,,,,, +1998,8,11,11,30,1.6920655,,,,,,,,,,,,,, +1998,8,11,12,30,1.3324143,,,,,,,,,,,,,, +1998,8,11,13,30,0.7489927,,,,,,,,,,,,,, +1998,8,11,14,30,0.19708535,,,,,,,,,,,,,, +1998,8,11,15,30,1.090325,,,,,,,,,,,,,, +1998,8,11,16,30,1.600785,,,,,,,,,,,,,, +1998,8,11,17,30,1.6719834,,,,,,,,,,,,,, +1998,8,11,18,30,1.4441975,,,,,,,,,,,,,, +1998,8,11,19,30,0.9853834,,,,,,,,,,,,,, +1998,8,11,20,30,0.46288568,,,,,,,,,,,,,, +1998,8,11,21,30,0.032444596,,,,,,,,,,,,,, +1998,8,11,22,30,0.43850756,,,,,,,,,,,,,, +1998,8,11,23,30,0.6940144,,,,,,,,,,,,,, +1998,8,12,0,30,0.575347,,,,,,,,,,,,,, +1998,8,12,1,30,0.20616357,,,,,,,,,,,,,, +1998,8,12,2,30,0.22536695,,,,,,,,,,,,,, +1998,8,12,3,30,0.5200828,,,,,,,,,,,,,, +1998,8,12,4,30,0.7013473,,,,,,,,,,,,,, +1998,8,12,5,30,0.7272048,,,,,,,,,,,,,, +1998,8,12,6,30,0.52450883,,,,,,,,,,,,,, +1998,8,12,7,30,0.053493302,,,,,,,,,,,,,, +1998,8,12,8,30,0.6132687,,,,,,,,,,,,,, +1998,8,12,9,30,1.2059288,,,,,,,,,,,,,, +1998,8,12,10,30,1.6255922,,,,,,,,,,,,,, +1998,8,12,11,30,1.760698,,,,,,,,,,,,,, +1998,8,12,12,30,1.601924,,,,,,,,,,,,,, +1998,8,12,13,30,1.2312369,,,,,,,,,,,,,, +1998,8,12,14,30,0.5965976,,,,,,,,,,,,,, +1998,8,12,15,30,0.3836704,,,,,,,,,,,,,, +1998,8,12,16,30,1.244764,,,,,,,,,,,,,, +1998,8,12,17,30,1.6786556,,,,,,,,,,,,,, +1998,8,12,18,30,1.7280391,,,,,,,,,,,,,, +1998,8,12,19,30,1.5161889,,,,,,,,,,,,,, +1998,8,12,20,30,1.079526,,,,,,,,,,,,,, +1998,8,12,21,30,0.5578306,,,,,,,,,,,,,, +1998,8,12,22,30,0.046731375,,,,,,,,,,,,,, +1998,8,12,23,30,0.49310628,,,,,,,,,,,,,, +1998,8,13,0,30,0.7508182,,,,,,,,,,,,,, +1998,8,13,1,30,0.60247916,,,,,,,,,,,,,, +1998,8,13,2,30,0.26424974,,,,,,,,,,,,,, +1998,8,13,3,30,0.13384879,,,,,,,,,,,,,, +1998,8,13,4,30,0.38342896,,,,,,,,,,,,,, +1998,8,13,5,30,0.60545963,,,,,,,,,,,,,, +1998,8,13,6,30,0.65810364,,,,,,,,,,,,,, +1998,8,13,7,30,0.44332212,,,,,,,,,,,,,, +1998,8,13,8,30,0.0889813,,,,,,,,,,,,,, +1998,8,13,9,30,0.6905684,,,,,,,,,,,,,, +1998,8,13,10,30,1.2627132,,,,,,,,,,,,,, +1998,8,13,11,30,1.6528127,,,,,,,,,,,,,, +1998,8,13,12,30,1.7571094,,,,,,,,,,,,,, +1998,8,13,13,30,1.5790588,,,,,,,,,,,,,, +1998,8,13,14,30,1.1668805,,,,,,,,,,,,,, +1998,8,13,15,30,0.44721428,,,,,,,,,,,,,, +1998,8,13,16,30,0.59564674,,,,,,,,,,,,,, +1998,8,13,17,30,1.421226,,,,,,,,,,,,,, +1998,8,13,18,30,1.7968441,,,,,,,,,,,,,, +1998,8,13,19,30,1.8366406,,,,,,,,,,,,,, +1998,8,13,20,30,1.6212673,,,,,,,,,,,,,, +1998,8,13,21,30,1.1502244,,,,,,,,,,,,,, +1998,8,13,22,30,0.55453026,,,,,,,,,,,,,, +1998,8,13,23,30,0.090656586,,,,,,,,,,,,,, +1998,8,14,0,30,0.64852667,,,,,,,,,,,,,, +1998,8,14,1,30,0.84984475,,,,,,,,,,,,,, +1998,8,14,2,30,0.659054,,,,,,,,,,,,,, +1998,8,14,3,30,0.34543878,,,,,,,,,,,,,, +1998,8,14,4,30,0.10163741,,,,,,,,,,,,,, +1998,8,14,5,30,0.3651531,,,,,,,,,,,,,, +1998,8,14,6,30,0.650874,,,,,,,,,,,,,, +1998,8,14,7,30,0.6964449,,,,,,,,,,,,,, +1998,8,14,8,30,0.42985973,,,,,,,,,,,,,, +1998,8,14,9,30,0.1364783,,,,,,,,,,,,,, +1998,8,14,10,30,0.78445625,,,,,,,,,,,,,, +1998,8,14,11,30,1.377985,,,,,,,,,,,,,, +1998,8,14,12,30,1.7543774,,,,,,,,,,,,,, +1998,8,14,13,30,1.8199656,,,,,,,,,,,,,, +1998,8,14,14,30,1.5982842,,,,,,,,,,,,,, +1998,8,14,15,30,1.1061342,,,,,,,,,,,,,, +1998,8,14,16,30,0.28310096,,,,,,,,,,,,,, +1998,8,14,17,30,0.8446282,,,,,,,,,,,,,, +1998,8,14,18,30,1.6383791,,,,,,,,,,,,,, +1998,8,14,19,30,1.966115,,,,,,,,,,,,,, +1998,8,14,20,30,1.9810928,,,,,,,,,,,,,, +1998,8,14,21,30,1.7087281,,,,,,,,,,,,,, +1998,8,14,22,30,1.1351777,,,,,,,,,,,,,, +1998,8,14,23,30,0.41898245,,,,,,,,,,,,,, +1998,8,15,0,30,0.3162013,,,,,,,,,,,,,, +1998,8,15,1,30,0.8554252,,,,,,,,,,,,,, +1998,8,15,2,30,0.96228504,,,,,,,,,,,,,, +1998,8,15,3,30,0.7357816,,,,,,,,,,,,,, +1998,8,15,4,30,0.42080417,,,,,,,,,,,,,, +1998,8,15,5,30,0.09954245,,,,,,,,,,,,,, +1998,8,15,6,30,0.48703784,,,,,,,,,,,,,, +1998,8,15,7,30,0.80840605,,,,,,,,,,,,,, +1998,8,15,8,30,0.7933073,,,,,,,,,,,,,, +1998,8,15,9,30,0.4347909,,,,,,,,,,,,,, +1998,8,15,10,30,0.2028229,,,,,,,,,,,,,, +1998,8,15,11,30,0.93407565,,,,,,,,,,,,,, +1998,8,15,12,30,1.5633616,,,,,,,,,,,,,, +1998,8,15,13,30,1.908481,,,,,,,,,,,,,, +1998,8,15,14,30,1.9070761,,,,,,,,,,,,,, +1998,8,15,15,30,1.6141818,,,,,,,,,,,,,, +1998,8,15,16,30,1.0089633,,,,,,,,,,,,,, +1998,8,15,17,30,0.14455605,,,,,,,,,,,,,, +1998,8,15,18,30,1.1572988,,,,,,,,,,,,,, +1998,8,15,19,30,1.910237,,,,,,,,,,,,,, +1998,8,15,20,30,2.1695535,,,,,,,,,,,,,, +1998,8,15,21,30,2.1095834,,,,,,,,,,,,,, +1998,8,15,22,30,1.7137821,,,,,,,,,,,,,, +1998,8,15,23,30,0.9912712,,,,,,,,,,,,,, +1998,8,16,0,30,0.15767439,,,,,,,,,,,,,, +1998,8,16,1,30,0.6291102,,,,,,,,,,,,,, +1998,8,16,2,30,1.0876276,,,,,,,,,,,,,, +1998,8,16,3,30,1.0915129,,,,,,,,,,,,,, +1998,8,16,4,30,0.8325307,,,,,,,,,,,,,, +1998,8,16,5,30,0.45856562,,,,,,,,,,,,,, +1998,8,16,6,30,0.13295338,,,,,,,,,,,,,, +1998,8,16,7,30,0.7291068,,,,,,,,,,,,,, +1998,8,16,8,30,1.0275595,,,,,,,,,,,,,, +1998,8,16,9,30,0.9016159,,,,,,,,,,,,,, +1998,8,16,10,30,0.42401877,,,,,,,,,,,,,, +1998,8,16,11,30,0.31914264,,,,,,,,,,,,,, +1998,8,16,12,30,1.1444066,,,,,,,,,,,,,, +1998,8,16,13,30,1.7869442,,,,,,,,,,,,,, +1998,8,16,14,30,2.059709,,,,,,,,,,,,,, +1998,8,16,15,30,1.9660938,,,,,,,,,,,,,, +1998,8,16,16,30,1.5839472,,,,,,,,,,,,,, +1998,8,16,17,30,0.83471763,,,,,,,,,,,,,, +1998,8,16,18,30,0.3744674,,,,,,,,,,,,,, +1998,8,16,19,30,1.5477061,,,,,,,,,,,,,, +1998,8,16,20,30,2.2142856,,,,,,,,,,,,,, +1998,8,16,21,30,2.3503737,,,,,,,,,,,,,, +1998,8,16,22,30,2.15471,,,,,,,,,,,,,, +1998,8,16,23,30,1.5891874,,,,,,,,,,,,,, +1998,8,17,0,30,0.707106,,,,,,,,,,,,,, +1998,8,17,1,30,0.24809198,,,,,,,,,,,,,, +1998,8,17,2,30,1.0013491,,,,,,,,,,,,,, +1998,8,17,3,30,1.340207,,,,,,,,,,,,,, +1998,8,17,4,30,1.2445471,,,,,,,,,,,,,, +1998,8,17,5,30,0.93089354,,,,,,,,,,,,,, +1998,8,17,6,30,0.42211646,,,,,,,,,,,,,, +1998,8,17,7,30,0.36055642,,,,,,,,,,,,,, +1998,8,17,8,30,1.0491132,,,,,,,,,,,,,, +1998,8,17,9,30,1.2578413,,,,,,,,,,,,,, +1998,8,17,10,30,0.9901926,,,,,,,,,,,,,, +1998,8,17,11,30,0.38271314,,,,,,,,,,,,,, +1998,8,17,12,30,0.4857449,,,,,,,,,,,,,, +1998,8,17,13,30,1.3848205,,,,,,,,,,,,,, +1998,8,17,14,30,1.9903734,,,,,,,,,,,,,, +1998,8,17,15,30,2.1535392,,,,,,,,,,,,,, +1998,8,17,16,30,1.9620011,,,,,,,,,,,,,, +1998,8,17,17,30,1.4744612,,,,,,,,,,,,,, +1998,8,17,18,30,0.54913145,,,,,,,,,,,,,, +1998,8,17,19,30,0.81374246,,,,,,,,,,,,,, +1998,8,17,20,30,1.9817083,,,,,,,,,,,,,, +1998,8,17,21,30,2.480907,,,,,,,,,,,,,, +1998,8,17,22,30,2.4364843,,,,,,,,,,,,,, +1998,8,17,23,30,2.069026,,,,,,,,,,,,,, +1998,8,18,0,30,1.3209692,,,,,,,,,,,,,, +1998,8,18,1,30,0.29593673,,,,,,,,,,,,,, +1998,8,18,2,30,0.7217441,,,,,,,,,,,,,, +1998,8,18,3,30,1.4102253,,,,,,,,,,,,,, +1998,8,18,4,30,1.6038077,,,,,,,,,,,,,, +1998,8,18,5,30,1.4046043,,,,,,,,,,,,,, +1998,8,18,6,30,0.98956406,,,,,,,,,,,,,, +1998,8,18,7,30,0.2846148,,,,,,,,,,,,,, +1998,8,18,8,30,0.70400673,,,,,,,,,,,,,, +1998,8,18,9,30,1.3968294,,,,,,,,,,,,,, +1998,8,18,10,30,1.4620029,,,,,,,,,,,,,, +1998,8,18,11,30,1.0459967,,,,,,,,,,,,,, +1998,8,18,12,30,0.31343022,,,,,,,,,,,,,, +1998,8,18,13,30,0.6776053,,,,,,,,,,,,,, +1998,8,18,14,30,1.6044575,,,,,,,,,,,,,, +1998,8,18,15,30,2.1211693,,,,,,,,,,,,,, +1998,8,18,16,30,2.1632688,,,,,,,,,,,,,, +1998,8,18,17,30,1.8795784,,,,,,,,,,,,,, +1998,8,18,18,30,1.2603681,,,,,,,,,,,,,, +1998,8,18,19,30,0.17245631,,,,,,,,,,,,,, +1998,8,18,20,30,1.3287406,,,,,,,,,,,,,, +1998,8,18,21,30,2.3706682,,,,,,,,,,,,,, +1998,8,18,22,30,2.626007,,,,,,,,,,,,,, +1998,8,18,23,30,2.3819065,,,,,,,,,,,,,, +1998,8,19,0,30,1.8422699,,,,,,,,,,,,,, +1998,8,19,1,30,0.9195889,,,,,,,,,,,,,, +1998,8,19,2,30,0.24797359,,,,,,,,,,,,,, +1998,8,19,3,30,1.2558882,,,,,,,,,,,,,, +1998,8,19,4,30,1.8192132,,,,,,,,,,,,,, +1998,8,19,5,30,1.8479964,,,,,,,,,,,,,, +1998,8,19,6,30,1.5304959,,,,,,,,,,,,,, +1998,8,19,7,30,0.9610726,,,,,,,,,,,,,, +1998,8,19,8,30,0.12286445,,,,,,,,,,,,,, +1998,8,19,9,30,1.1125425,,,,,,,,,,,,,, +1998,8,19,10,30,1.7245481,,,,,,,,,,,,,, +1998,8,19,11,30,1.6198654,,,,,,,,,,,,,, +1998,8,19,12,30,1.0696805,,,,,,,,,,,,,, +1998,8,19,13,30,0.23146515,,,,,,,,,,,,,, +1998,8,19,14,30,0.8574206,,,,,,,,,,,,,, +1998,8,19,15,30,1.7569126,,,,,,,,,,,,,, +1998,8,19,16,30,2.1546636,,,,,,,,,,,,,, +1998,8,19,17,30,2.0871778,,,,,,,,,,,,,, +1998,8,19,18,30,1.7102995,,,,,,,,,,,,,, +1998,8,19,19,30,0.9339673,,,,,,,,,,,,,, +1998,8,19,20,30,0.38905135,,,,,,,,,,,,,, +1998,8,19,21,30,1.8128799,,,,,,,,,,,,,, +1998,8,19,22,30,2.6122983,,,,,,,,,,,,,, +1998,8,19,23,30,2.6010404,,,,,,,,,,,,,, +1998,8,20,0,30,2.1855917,,,,,,,,,,,,,, +1998,8,20,1,30,1.4902222,,,,,,,,,,,,,, +1998,8,20,2,30,0.41059074,,,,,,,,,,,,,, +1998,8,20,3,30,0.8362503,,,,,,,,,,,,,, +1998,8,20,4,30,1.7894671,,,,,,,,,,,,,, +1998,8,20,5,30,2.1750321,,,,,,,,,,,,,, +1998,8,20,6,30,2.0292578,,,,,,,,,,,,,, +1998,8,20,7,30,1.5766659,,,,,,,,,,,,,, +1998,8,20,8,30,0.8163293,,,,,,,,,,,,,, +1998,8,20,9,30,0.3773667,,,,,,,,,,,,,, +1998,8,20,10,30,1.5293864,,,,,,,,,,,,,, +1998,8,20,11,30,1.9936984,,,,,,,,,,,,,, +1998,8,20,12,30,1.7263057,,,,,,,,,,,,,, +1998,8,20,13,30,1.0711887,,,,,,,,,,,,,, +1998,8,20,14,30,0.15851519,,,,,,,,,,,,,, +1998,8,20,15,30,0.9901325,,,,,,,,,,,,,, +1998,8,20,16,30,1.8151811,,,,,,,,,,,,,, +1998,8,20,17,30,2.0891776,,,,,,,,,,,,,, +1998,8,20,18,30,1.9292015,,,,,,,,,,,,,, +1998,8,20,19,30,1.4520315,,,,,,,,,,,,,, +1998,8,20,20,30,0.52768433,,,,,,,,,,,,,, +1998,8,20,21,30,0.8730752,,,,,,,,,,,,,, +1998,8,20,22,30,2.1498508,,,,,,,,,,,,,, +1998,8,20,23,30,2.6483703,,,,,,,,,,,,,, +1998,8,21,0,30,2.4149778,,,,,,,,,,,,,, +1998,8,21,1,30,1.8761158,,,,,,,,,,,,,, +1998,8,21,2,30,1.0396408,,,,,,,,,,,,,, +1998,8,21,3,30,0.19349182,,,,,,,,,,,,,, +1998,8,21,4,30,1.4301887,,,,,,,,,,,,,, +1998,8,21,5,30,2.2478151,,,,,,,,,,,,,, +1998,8,21,6,30,2.4256952,,,,,,,,,,,,,, +1998,8,21,7,30,2.111963,,,,,,,,,,,,,, +1998,8,21,8,30,1.5174592,,,,,,,,,,,,,, +1998,8,21,9,30,0.56586707,,,,,,,,,,,,,, +1998,8,21,10,30,0.78209484,,,,,,,,,,,,,, +1998,8,21,11,30,1.8918854,,,,,,,,,,,,,, +1998,8,21,12,30,2.1810765,,,,,,,,,,,,,, +1998,8,21,13,30,1.7885916,,,,,,,,,,,,,, +1998,8,21,14,30,1.0650007,,,,,,,,,,,,,, +1998,8,21,15,30,0.11436037,,,,,,,,,,,,,, +1998,8,21,16,30,1.0498512,,,,,,,,,,,,,, +1998,8,21,17,30,1.7676862,,,,,,,,,,,,,, +1998,8,21,18,30,1.929573,,,,,,,,,,,,,, +1998,8,21,19,30,1.6945353,,,,,,,,,,,,,, +1998,8,21,20,30,1.1269189,,,,,,,,,,,,,, +1998,8,21,21,30,0.15774688,,,,,,,,,,,,,, +1998,8,21,22,30,1.2411029,,,,,,,,,,,,,, +1998,8,21,23,30,2.2694016,,,,,,,,,,,,,, +1998,8,22,0,30,2.490364,,,,,,,,,,,,,, +1998,8,22,1,30,2.1147027,,,,,,,,,,,,,, +1998,8,22,2,30,1.4893677,,,,,,,,,,,,,, +1998,8,22,3,30,0.53303504,,,,,,,,,,,,,, +1998,8,22,4,30,0.7654327,,,,,,,,,,,,,, +1998,8,22,5,30,1.9388006,,,,,,,,,,,,,, +1998,8,22,6,30,2.567058,,,,,,,,,,,,,, +1998,8,22,7,30,2.5420578,,,,,,,,,,,,,, +1998,8,22,8,30,2.0856729,,,,,,,,,,,,,, +1998,8,22,9,30,1.3644187,,,,,,,,,,,,,, +1998,8,22,10,30,0.2705947,,,,,,,,,,,,,, +1998,8,22,11,30,1.1532485,,,,,,,,,,,,,, +1998,8,22,12,30,2.1510358,,,,,,,,,,,,,, +1998,8,22,13,30,2.2839978,,,,,,,,,,,,,, +1998,8,22,14,30,1.8210783,,,,,,,,,,,,,, +1998,8,22,15,30,1.0639951,,,,,,,,,,,,,, +1998,8,22,16,30,0.10005323,,,,,,,,,,,,,, +1998,8,22,17,30,1.0159636,,,,,,,,,,,,,, +1998,8,22,18,30,1.6102365,,,,,,,,,,,,,, +1998,8,22,19,30,1.6865637,,,,,,,,,,,,,, +1998,8,22,20,30,1.4062672,,,,,,,,,,,,,, +1998,8,22,21,30,0.7922126,,,,,,,,,,,,,, +1998,8,22,22,30,0.26202694,,,,,,,,,,,,,, +1998,8,22,23,30,1.4147023,,,,,,,,,,,,,, +1998,8,23,0,30,2.1745272,,,,,,,,,,,,,, +1998,8,23,1,30,2.1979148,,,,,,,,,,,,,, +1998,8,23,2,30,1.7538639,,,,,,,,,,,,,, +1998,8,23,3,30,1.0664532,,,,,,,,,,,,,, +1998,8,23,4,30,0.080089815,,,,,,,,,,,,,, +1998,8,23,5,30,1.255564,,,,,,,,,,,,,, +1998,8,23,6,30,2.2891092,,,,,,,,,,,,,, +1998,8,23,7,30,2.717457,,,,,,,,,,,,,, +1998,8,23,8,30,2.5272982,,,,,,,,,,,,,, +1998,8,23,9,30,1.9726126,,,,,,,,,,,,,, +1998,8,23,10,30,1.16812,,,,,,,,,,,,,, +1998,8,23,11,30,0.118766464,,,,,,,,,,,,,, +1998,8,23,12,30,1.4227467,,,,,,,,,,,,,, +1998,8,23,13,30,2.2894578,,,,,,,,,,,,,, +1998,8,23,14,30,2.31758,,,,,,,,,,,,,, +1998,8,23,15,30,1.8377609,,,,,,,,,,,,,, +1998,8,23,16,30,1.0795066,,,,,,,,,,,,,, +1998,8,23,17,30,0.11847466,,,,,,,,,,,,,, +1998,8,23,18,30,0.87245595,,,,,,,,,,,,,, +1998,8,23,19,30,1.3538454,,,,,,,,,,,,,, +1998,8,23,20,30,1.3935838,,,,,,,,,,,,,, +1998,8,23,21,30,1.1171157,,,,,,,,,,,,,, +1998,8,23,22,30,0.5224163,,,,,,,,,,,,,, +1998,8,23,23,30,0.42101264,,,,,,,,,,,,,, +1998,8,24,0,30,1.3827131,,,,,,,,,,,,,, +1998,8,24,1,30,1.9219553,,,,,,,,,,,,,, +1998,8,24,2,30,1.8416322,,,,,,,,,,,,,, +1998,8,24,3,30,1.3828766,,,,,,,,,,,,,, +1998,8,24,4,30,0.6644176,,,,,,,,,,,,,, +1998,8,24,5,30,0.406566,,,,,,,,,,,,,, +1998,8,24,6,30,1.5818453,,,,,,,,,,,,,, +1998,8,24,7,30,2.449043,,,,,,,,,,,,,, +1998,8,24,8,30,2.7093449,,,,,,,,,,,,,, +1998,8,24,9,30,2.4150493,,,,,,,,,,,,,, +1998,8,24,10,30,1.8240681,,,,,,,,,,,,,, +1998,8,24,11,30,0.9977597,,,,,,,,,,,,,, +1998,8,24,12,30,0.25456607,,,,,,,,,,,,,, +1998,8,24,13,30,1.5646639,,,,,,,,,,,,,, +1998,8,24,14,30,2.3230186,,,,,,,,,,,,,, +1998,8,24,15,30,2.3050199,,,,,,,,,,,,,, +1998,8,24,16,30,1.8518255,,,,,,,,,,,,,, +1998,8,24,17,30,1.1293945,,,,,,,,,,,,,, +1998,8,24,18,30,0.21579202,,,,,,,,,,,,,, +1998,8,24,19,30,0.62422836,,,,,,,,,,,,,, +1998,8,24,20,30,1.0433215,,,,,,,,,,,,,, +1998,8,24,21,30,1.1146233,,,,,,,,,,,,,, +1998,8,24,22,30,0.8937111,,,,,,,,,,,,,, +1998,8,24,23,30,0.37355912,,,,,,,,,,,,,, +1998,8,25,0,30,0.41825524,,,,,,,,,,,,,, +1998,8,25,1,30,1.185061,,,,,,,,,,,,,, +1998,8,25,2,30,1.5861722,,,,,,,,,,,,,, +1998,8,25,3,30,1.4863892,,,,,,,,,,,,,, +1998,8,25,4,30,1.0568273,,,,,,,,,,,,,, +1998,8,25,5,30,0.35241136,,,,,,,,,,,,,, +1998,8,25,6,30,0.6605837,,,,,,,,,,,,,, +1998,8,25,7,30,1.7129891,,,,,,,,,,,,,, +1998,8,25,8,30,2.433742,,,,,,,,,,,,,, +1998,8,25,9,30,2.5864043,,,,,,,,,,,,,, +1998,8,25,10,30,2.2615433,,,,,,,,,,,,,, +1998,8,25,11,30,1.7021873,,,,,,,,,,,,,, +1998,8,25,12,30,0.90502864,,,,,,,,,,,,,, +1998,8,25,13,30,0.33694905,,,,,,,,,,,,,, +1998,8,25,14,30,1.5981343,,,,,,,,,,,,,, +1998,8,25,15,30,2.2869058,,,,,,,,,,,,,, +1998,8,25,16,30,2.2726183,,,,,,,,,,,,,, +1998,8,25,17,30,1.8840554,,,,,,,,,,,,,, +1998,8,25,18,30,1.237879,,,,,,,,,,,,,, +1998,8,25,19,30,0.41541514,,,,,,,,,,,,,, +1998,8,25,20,30,0.31935373,,,,,,,,,,,,,, +1998,8,25,21,30,0.7591678,,,,,,,,,,,,,, +1998,8,25,22,30,0.9224698,,,,,,,,,,,,,, +1998,8,25,23,30,0.7837253,,,,,,,,,,,,,, +1998,8,26,0,30,0.3641602,,,,,,,,,,,,,, +1998,8,26,1,30,0.26660722,,,,,,,,,,,,,, +1998,8,26,2,30,0.88495445,,,,,,,,,,,,,, +1998,8,26,3,30,1.2417215,,,,,,,,,,,,,, +1998,8,26,4,30,1.1946604,,,,,,,,,,,,,, +1998,8,26,5,30,0.8342369,,,,,,,,,,,,,, +1998,8,26,6,30,0.18553792,,,,,,,,,,,,,, +1998,8,26,7,30,0.7344605,,,,,,,,,,,,,, +1998,8,26,8,30,1.6706756,,,,,,,,,,,,,, +1998,8,26,9,30,2.2970557,,,,,,,,,,,,,, +1998,8,26,10,30,2.414499,,,,,,,,,,,,,, +1998,8,26,11,30,2.1294827,,,,,,,,,,,,,, +1998,8,26,12,30,1.6506803,,,,,,,,,,,,,, +1998,8,26,13,30,0.8980058,,,,,,,,,,,,,, +1998,8,26,14,30,0.343692,,,,,,,,,,,,,, +1998,8,26,15,30,1.5680918,,,,,,,,,,,,,, +1998,8,26,16,30,2.2230802,,,,,,,,,,,,,, +1998,8,26,17,30,2.2538018,,,,,,,,,,,,,, +1998,8,26,18,30,1.9633243,,,,,,,,,,,,,, +1998,8,26,19,30,1.4152329,,,,,,,,,,,,,, +1998,8,26,20,30,0.6756552,,,,,,,,,,,,,, +1998,8,26,21,30,0.059138954,,,,,,,,,,,,,, +1998,8,26,22,30,0.58700573,,,,,,,,,,,,,, +1998,8,26,23,30,0.86094654,,,,,,,,,,,,,, +1998,8,27,0,30,0.7978796,,,,,,,,,,,,,, +1998,8,27,1,30,0.4859117,,,,,,,,,,,,,, +1998,8,27,2,30,0.098263055,,,,,,,,,,,,,, +1998,8,27,3,30,0.55600023,,,,,,,,,,,,,, +1998,8,27,4,30,0.9631634,,,,,,,,,,,,,, +1998,8,27,5,30,1.0236269,,,,,,,,,,,,,, +1998,8,27,6,30,0.75534725,,,,,,,,,,,,,, +1998,8,27,7,30,0.17848852,,,,,,,,,,,,,, +1998,8,27,8,30,0.6546998,,,,,,,,,,,,,, +1998,8,27,9,30,1.5189413,,,,,,,,,,,,,, +1998,8,27,10,30,2.11677,,,,,,,,,,,,,, +1998,8,27,11,30,2.2638361,,,,,,,,,,,,,, +1998,8,27,12,30,2.0628977,,,,,,,,,,,,,, +1998,8,27,13,30,1.6730257,,,,,,,,,,,,,, +1998,8,27,14,30,0.9438256,,,,,,,,,,,,,, +1998,8,27,15,30,0.3215024,,,,,,,,,,,,,, +1998,8,27,16,30,1.5257988,,,,,,,,,,,,,, +1998,8,27,17,30,2.1780179,,,,,,,,,,,,,, +1998,8,27,18,30,2.2869236,,,,,,,,,,,,,, +1998,8,27,19,30,2.105299,,,,,,,,,,,,,, +1998,8,27,20,30,1.6311514,,,,,,,,,,,,,, +1998,8,27,21,30,0.9078684,,,,,,,,,,,,,, +1998,8,27,22,30,0.13202545,,,,,,,,,,,,,, +1998,8,27,23,30,0.5737158,,,,,,,,,,,,,, +1998,8,28,0,30,0.92791814,,,,,,,,,,,,,, +1998,8,28,1,30,0.91882885,,,,,,,,,,,,,, +1998,8,28,2,30,0.709728,,,,,,,,,,,,,, +1998,8,28,3,30,0.3176956,,,,,,,,,,,,,, +1998,8,28,4,30,0.28314066,,,,,,,,,,,,,, +1998,8,28,5,30,0.81767046,,,,,,,,,,,,,, +1998,8,28,6,30,1.0046722,,,,,,,,,,,,,, +1998,8,28,7,30,0.8185198,,,,,,,,,,,,,, +1998,8,28,8,30,0.29629797,,,,,,,,,,,,,, +1998,8,28,9,30,0.49040747,,,,,,,,,,,,,, +1998,8,28,10,30,1.3446144,,,,,,,,,,,,,, +1998,8,28,11,30,1.9718354,,,,,,,,,,,,,, +1998,8,28,12,30,2.182344,,,,,,,,,,,,,, +1998,8,28,13,30,2.066482,,,,,,,,,,,,,, +1998,8,28,14,30,1.7351387,,,,,,,,,,,,,, +1998,8,28,15,30,0.99016273,,,,,,,,,,,,,, +1998,8,28,16,30,0.31741685,,,,,,,,,,,,,, +1998,8,28,17,30,1.5225743,,,,,,,,,,,,,, +1998,8,28,18,30,2.197321,,,,,,,,,,,,,, +1998,8,28,19,30,2.3926435,,,,,,,,,,,,,, +1998,8,28,20,30,2.2838445,,,,,,,,,,,,,, +1998,8,28,21,30,1.8115085,,,,,,,,,,,,,, +1998,8,28,22,30,1.0177927,,,,,,,,,,,,,, +1998,8,28,23,30,0.11386929,,,,,,,,,,,,,, +1998,8,29,0,30,0.7115108,,,,,,,,,,,,,, +1998,8,29,1,30,1.0917225,,,,,,,,,,,,,, +1998,8,29,2,30,1.1177064,,,,,,,,,,,,,, +1998,8,29,3,30,0.9880161,,,,,,,,,,,,,, +1998,8,29,4,30,0.5954617,,,,,,,,,,,,,, +1998,8,29,5,30,0.16921267,,,,,,,,,,,,,, +1998,8,29,6,30,0.8399129,,,,,,,,,,,,,, +1998,8,29,7,30,1.1255258,,,,,,,,,,,,,, +1998,8,29,8,30,0.97964203,,,,,,,,,,,,,, +1998,8,29,9,30,0.4703309,,,,,,,,,,,,,, +1998,8,29,10,30,0.33009744,,,,,,,,,,,,,, +1998,8,29,11,30,1.2292697,,,,,,,,,,,,,, +1998,8,29,12,30,1.911123,,,,,,,,,,,,,, +1998,8,29,13,30,2.173507,,,,,,,,,,,,,, +1998,8,29,14,30,2.1070762,,,,,,,,,,,,,, +1998,8,29,15,30,1.78669,,,,,,,,,,,,,, +1998,8,29,16,30,0.98442113,,,,,,,,,,,,,, +1998,8,29,17,30,0.3765168,,,,,,,,,,,,,, +1998,8,29,18,30,1.6036747,,,,,,,,,,,,,, +1998,8,29,19,30,2.3024478,,,,,,,,,,,,,, +1998,8,29,20,30,2.545107,,,,,,,,,,,,,, +1998,8,29,21,30,2.4276094,,,,,,,,,,,,,, +1998,8,29,22,30,1.8709099,,,,,,,,,,,,,, +1998,8,29,23,30,0.94774324,,,,,,,,,,,,,, +1998,8,30,0,30,0.131141,,,,,,,,,,,,,, +1998,8,30,1,30,0.9599293,,,,,,,,,,,,,, +1998,8,30,2,30,1.3150735,,,,,,,,,,,,,, +1998,8,30,3,30,1.3602314,,,,,,,,,,,,,, +1998,8,30,4,30,1.2575065,,,,,,,,,,,,,, +1998,8,30,5,30,0.7616141,,,,,,,,,,,,,, +1998,8,30,6,30,0.22009185,,,,,,,,,,,,,, +1998,8,30,7,30,1.0152001,,,,,,,,,,,,,, +1998,8,30,8,30,1.335141,,,,,,,,,,,,,, +1998,8,30,9,30,1.1723266,,,,,,,,,,,,,, +1998,8,30,10,30,0.62502563,,,,,,,,,,,,,, +1998,8,30,11,30,0.2521667,,,,,,,,,,,,,, +1998,8,30,12,30,1.2153445,,,,,,,,,,,,,, +1998,8,30,13,30,1.9302164,,,,,,,,,,,,,, +1998,8,30,14,30,2.1986747,,,,,,,,,,,,,, +1998,8,30,15,30,2.135603,,,,,,,,,,,,,, +1998,8,30,16,30,1.778785,,,,,,,,,,,,,, +1998,8,30,17,30,0.87884617,,,,,,,,,,,,,, +1998,8,30,18,30,0.54742706,,,,,,,,,,,,,, +1998,8,30,19,30,1.7854834,,,,,,,,,,,,,, +1998,8,30,20,30,2.4630198,,,,,,,,,,,,,, +1998,8,30,21,30,2.670485,,,,,,,,,,,,,, +1998,8,30,22,30,2.4534965,,,,,,,,,,,,,, +1998,8,30,23,30,1.75473,,,,,,,,,,,,,, +1998,8,31,0,30,0.6914861,,,,,,,,,,,,,, +1998,8,31,1,30,0.4648761,,,,,,,,,,,,,, +1998,8,31,2,30,1.2718508,,,,,,,,,,,,,, +1998,8,31,3,30,1.564622,,,,,,,,,,,,,, +1998,8,31,4,30,1.6039698,,,,,,,,,,,,,, +1998,8,31,5,30,1.4484379,,,,,,,,,,,,,, +1998,8,31,6,30,0.7585783,,,,,,,,,,,,,, +1998,8,31,7,30,0.41747147,,,,,,,,,,,,,, +1998,8,31,8,30,1.288836,,,,,,,,,,,,,, +1998,8,31,9,30,1.5645721,,,,,,,,,,,,,, +1998,8,31,10,30,1.3315871,,,,,,,,,,,,,, +1998,8,31,11,30,0.70179594,,,,,,,,,,,,,, +1998,8,31,12,30,0.282718,,,,,,,,,,,,,, +1998,8,31,13,30,1.2866924,,,,,,,,,,,,,, +1998,8,31,14,30,1.9783386,,,,,,,,,,,,,, +1998,8,31,15,30,2.2041154,,,,,,,,,,,,,, +2014,8,31,16,30,2.107215,,,,,,,,,,,,,, +2014,8,31,17,30,1.6670755,,,,,,,,,,,,,, +2014,8,31,18,30,0.6362991,,,,,,,,,,,,,, +2014,8,31,19,30,0.8466385,,,,,,,,,,,,,, +2014,8,31,20,30,2.0282102,,,,,,,,,,,,,, +2014,8,31,21,30,2.5986507,,,,,,,,,,,,,, +2014,8,31,22,30,2.6841896,,,,,,,,,,,,,, +2014,8,31,23,30,2.309583,,,,,,,,,,,,,, +2014,9,1,0,30,1.4549887,,,,,,,,,,,,,, +2014,9,1,1,30,0.28096703,,,,,,,,,,,,,, +2014,9,1,2,30,0.89227706,,,,,,,,,,,,,, +2014,9,1,3,30,1.6038862,,,,,,,,,,,,,, +2014,9,1,4,30,1.8069975,,,,,,,,,,,,,, +2014,9,1,5,30,1.7995011,,,,,,,,,,,,,, +2014,9,1,6,30,1.5030415,,,,,,,,,,,,,, +2014,9,1,7,30,0.57544076,,,,,,,,,,,,,, +2014,9,1,8,30,0.7461548,,,,,,,,,,,,,, +2014,9,1,9,30,1.5860155,,,,,,,,,,,,,, +2014,9,1,10,30,1.7510011,,,,,,,,,,,,,, +2014,9,1,11,30,1.413122,,,,,,,,,,,,,, +2014,9,1,12,30,0.6789514,,,,,,,,,,,,,, +2014,9,1,13,30,0.39163572,,,,,,,,,,,,,, +2014,9,1,14,30,1.3832765,,,,,,,,,,,,,, +2014,9,1,15,30,1.9934448,,,,,,,,,,,,,, +2014,9,1,16,30,2.148188,,,,,,,,,,,,,, +2014,9,1,17,30,1.9860321,,,,,,,,,,,,,, +2014,9,1,18,30,1.4159117,,,,,,,,,,,,,, +2014,9,1,19,30,0.26744527,,,,,,,,,,,,,, +2014,9,1,20,30,1.223212,,,,,,,,,,,,,, +2014,9,1,21,30,2.2401052,,,,,,,,,,,,,, +2014,9,1,22,30,2.6213403,,,,,,,,,,,,,, +2014,9,1,23,30,2.5370207,,,,,,,,,,,,,, +2014,9,2,0,30,1.9914486,,,,,,,,,,,,,, +2014,9,2,1,30,0.9974057,,,,,,,,,,,,,, +2014,9,2,2,30,0.2534586,,,,,,,,,,,,,, +2014,9,2,3,30,1.3521148,,,,,,,,,,,,,, +2014,9,2,4,30,1.9131308,,,,,,,,,,,,,, +2014,9,2,5,30,2.0048194,,,,,,,,,,,,,, +2014,9,2,6,30,1.8992901,,,,,,,,,,,,,, +2014,9,2,7,30,1.3918127,,,,,,,,,,,,,, +2014,9,2,8,30,0.2752084,,,,,,,,,,,,,, +2014,9,2,9,30,1.128495,,,,,,,,,,,,,, +2014,9,2,10,30,1.83675,,,,,,,,,,,,,, +2014,9,2,11,30,1.8558862,,,,,,,,,,,,,, +2014,9,2,12,30,1.404653,,,,,,,,,,,,,, +2014,9,2,13,30,0.5764507,,,,,,,,,,,,,, +2014,9,2,14,30,0.5257991,,,,,,,,,,,,,, +2014,9,2,15,30,1.4406676,,,,,,,,,,,,,, +2014,9,2,16,30,1.9364849,,,,,,,,,,,,,, +2014,9,2,17,30,2.0091043,,,,,,,,,,,,,, +2014,9,2,18,30,1.7472041,,,,,,,,,,,,,, +2014,9,2,19,30,1.0203149,,,,,,,,,,,,,, +2014,9,2,20,30,0.26848742,,,,,,,,,,,,,, +2014,9,2,21,30,1.570709,,,,,,,,,,,,,, +2014,9,2,22,30,2.3250184,,,,,,,,,,,,,, +2014,9,2,23,30,2.4859052,,,,,,,,,,,,,, +2014,9,3,0,30,2.2317047,,,,,,,,,,,,,, +2014,9,3,1,30,1.5282304,,,,,,,,,,,,,, +2014,9,3,2,30,0.42772332,,,,,,,,,,,,,, +2014,9,3,3,30,0.820495,,,,,,,,,,,,,, +2014,9,3,4,30,1.7800144,,,,,,,,,,,,,, +2014,9,3,5,30,2.1552236,,,,,,,,,,,,,, +2014,9,3,6,30,2.119845,,,,,,,,,,,,,, +2014,9,3,7,30,1.867903,,,,,,,,,,,,,, +2014,9,3,8,30,1.1200325,,,,,,,,,,,,,, +2014,9,3,9,30,0.27600214,,,,,,,,,,,,,, +2014,9,3,10,30,1.4818547,,,,,,,,,,,,,, +2014,9,3,11,30,1.997,,,,,,,,,,,,,, +2014,9,3,12,30,1.8724709,,,,,,,,,,,,,, +2014,9,3,13,30,1.3237967,,,,,,,,,,,,,, +2014,9,3,14,30,0.43834624,,,,,,,,,,,,,, +2014,9,3,15,30,0.6327485,,,,,,,,,,,,,, +2014,9,3,16,30,1.4243786,,,,,,,,,,,,,, +2014,9,3,17,30,1.8004014,,,,,,,,,,,,,, +2014,9,3,18,30,1.7815682,,,,,,,,,,,,,, +2014,9,3,19,30,1.3920262,,,,,,,,,,,,,, +2014,9,3,20,30,0.5329643,,,,,,,,,,,,,, +2014,9,3,21,30,0.72137415,,,,,,,,,,,,,, +2014,9,3,22,30,1.7799727,,,,,,,,,,,,,, +2014,9,3,23,30,2.2379222,,,,,,,,,,,,,, +2014,9,4,0,30,2.206236,,,,,,,,,,,,,, +2014,9,4,1,30,1.8049539,,,,,,,,,,,,,, +2014,9,4,2,30,0.9656714,,,,,,,,,,,,,, +2014,9,4,3,30,0.19960897,,,,,,,,,,,,,, +2014,9,4,4,30,1.3560679,,,,,,,,,,,,,, +2014,9,4,5,30,2.1113317,,,,,,,,,,,,,, +2014,9,4,6,30,2.2910361,,,,,,,,,,,,,, +2014,9,4,7,30,2.1202931,,,,,,,,,,,,,, +2014,9,4,8,30,1.6907943,,,,,,,,,,,,,, +2014,9,4,9,30,0.72766453,,,,,,,,,,,,,, +2014,9,4,10,30,0.695085,,,,,,,,,,,,,, +2014,9,4,11,30,1.7476715,,,,,,,,,,,,,, +2014,9,4,12,30,2.0579355,,,,,,,,,,,,,, +2014,9,4,13,30,1.8197536,,,,,,,,,,,,,, +2014,9,4,14,30,1.2006546,,,,,,,,,,,,,, +2014,9,4,15,30,0.3045505,,,,,,,,,,,,,, +2014,9,4,16,30,0.68550503,,,,,,,,,,,,,, +2014,9,4,17,30,1.3356669,,,,,,,,,,,,,, +2014,9,4,18,30,1.5993922,,,,,,,,,,,,,, +2014,9,4,19,30,1.4800004,,,,,,,,,,,,,, +2014,9,4,20,30,0.9657537,,,,,,,,,,,,,, +2014,9,4,21,30,0.12771925,,,,,,,,,,,,,, +2014,9,4,22,30,1.0509312,,,,,,,,,,,,,, +2014,9,4,23,30,1.798638,,,,,,,,,,,,,, +2014,9,5,0,30,2.0023036,,,,,,,,,,,,,, +2014,9,5,1,30,1.8313481,,,,,,,,,,,,,, +2014,9,5,2,30,1.3039062,,,,,,,,,,,,,, +2014,9,5,3,30,0.36506432,,,,,,,,,,,,,, +2014,9,5,4,30,0.7818133,,,,,,,,,,,,,, +2014,9,5,5,30,1.7771909,,,,,,,,,,,,,, +2014,9,5,6,30,2.298488,,,,,,,,,,,,,, +2014,9,5,7,30,2.2967088,,,,,,,,,,,,,, +2014,9,5,8,30,1.9907076,,,,,,,,,,,,,, +2014,9,5,9,30,1.3834864,,,,,,,,,,,,,, +2014,9,5,10,30,0.29588544,,,,,,,,,,,,,, +2014,9,5,11,30,1.0780805,,,,,,,,,,,,,, +2014,9,5,12,30,1.9043458,,,,,,,,,,,,,, +2014,9,5,13,30,2.0398831,,,,,,,,,,,,,, +2014,9,5,14,30,1.7243025,,,,,,,,,,,,,, +2014,9,5,15,30,1.0574982,,,,,,,,,,,,,, +2014,9,5,16,30,0.1957358,,,,,,,,,,,,,, +2014,9,5,17,30,0.68318653,,,,,,,,,,,,,, +2014,9,5,18,30,1.1952916,,,,,,,,,,,,,, +2014,9,5,19,30,1.3600967,,,,,,,,,,,,,, +2014,9,5,20,30,1.1453187,,,,,,,,,,,,,, +2014,9,5,21,30,0.5511645,,,,,,,,,,,,,, +2014,9,5,22,30,0.35368067,,,,,,,,,,,,,, +2014,9,5,23,30,1.1901159,,,,,,,,,,,,,, +2014,9,6,0,30,1.6511513,,,,,,,,,,,,,, +2014,9,6,1,30,1.6815256,,,,,,,,,,,,,, +2014,9,6,2,30,1.4133283,,,,,,,,,,,,,, +2014,9,6,3,30,0.77968824,,,,,,,,,,,,,, +2014,9,6,4,30,0.21055436,,,,,,,,,,,,,, +2014,9,6,5,30,1.2502395,,,,,,,,,,,,,, +2014,9,6,6,30,2.0307007,,,,,,,,,,,,,, +2014,9,6,7,30,2.3266468,,,,,,,,,,,,,, +2014,9,6,8,30,2.172475,,,,,,,,,,,,,, +2014,9,6,9,30,1.7445158,,,,,,,,,,,,,, +2014,9,6,10,30,0.9960267,,,,,,,,,,,,,, +2014,9,6,11,30,0.21767327,,,,,,,,,,,,,, +2014,9,6,12,30,1.365687,,,,,,,,,,,,,, +2014,9,6,13,30,1.9652113,,,,,,,,,,,,,, +2014,9,6,14,30,1.9731874,,,,,,,,,,,,,, +2014,9,6,15,30,1.6031014,,,,,,,,,,,,,, +2014,9,6,16,30,0.905488,,,,,,,,,,,,,, +2014,9,6,17,30,0.11827115,,,,,,,,,,,,,, +2014,9,6,18,30,0.63443196,,,,,,,,,,,,,, +2014,9,6,19,30,1.0302765,,,,,,,,,,,,,, +2014,9,6,20,30,1.1200457,,,,,,,,,,,,,, +2014,9,6,21,30,0.836051,,,,,,,,,,,,,, +2014,9,6,22,30,0.23286247,,,,,,,,,,,,,, +2014,9,6,23,30,0.5501426,,,,,,,,,,,,,, +2014,9,7,0,30,1.1565294,,,,,,,,,,,,,, +2014,9,7,1,30,1.4088428,,,,,,,,,,,,,, +2014,9,7,2,30,1.338742,,,,,,,,,,,,,, +2014,9,7,3,30,0.99590623,,,,,,,,,,,,,, +2014,9,7,4,30,0.28993228,,,,,,,,,,,,,, +2014,9,7,5,30,0.67021644,,,,,,,,,,,,,, +2014,9,7,6,30,1.5534432,,,,,,,,,,,,,, +2014,9,7,7,30,2.1107364,,,,,,,,,,,,,, +2014,9,7,8,30,2.2181914,,,,,,,,,,,,,, +2014,9,7,9,30,1.9495472,,,,,,,,,,,,,, +2014,9,7,10,30,1.4306653,,,,,,,,,,,,,, +2014,9,7,11,30,0.6014939,,,,,,,,,,,,,, +2014,9,7,12,30,0.5690964,,,,,,,,,,,,,, +2014,9,7,13,30,1.5519611,,,,,,,,,,,,,, +2014,9,7,14,30,1.9608018,,,,,,,,,,,,,, +2014,9,7,15,30,1.8800886,,,,,,,,,,,,,, +2014,9,7,16,30,1.4652755,,,,,,,,,,,,,, +2014,9,7,17,30,0.76052463,,,,,,,,,,,,,, +2014,9,7,18,30,0.072662905,,,,,,,,,,,,,, +2014,9,7,19,30,0.5507926,,,,,,,,,,,,,, +2014,9,7,20,30,0.8725443,,,,,,,,,,,,,, +2014,9,7,21,30,0.9199201,,,,,,,,,,,,,, +2014,9,7,22,30,0.59978366,,,,,,,,,,,,,, +2014,9,7,23,30,0.12864184,,,,,,,,,,,,,, +2014,9,8,0,30,0.6000599,,,,,,,,,,,,,, +2014,9,8,1,30,1.0174601,,,,,,,,,,,,,, +2014,9,8,2,30,1.1449256,,,,,,,,,,,,,, +2014,9,8,3,30,1.0195339,,,,,,,,,,,,,, +2014,9,8,4,30,0.61963063,,,,,,,,,,,,,, +2014,9,8,5,30,0.12473722,,,,,,,,,,,,,, +2014,9,8,6,30,0.98802626,,,,,,,,,,,,,, +2014,9,8,7,30,1.6931589,,,,,,,,,,,,,, +2014,9,8,8,30,2.0562615,,,,,,,,,,,,,, +2014,9,8,9,30,2.027252,,,,,,,,,,,,,, +2014,9,8,10,30,1.688831,,,,,,,,,,,,,, +2014,9,8,11,30,1.1197187,,,,,,,,,,,,,, +2014,9,8,12,30,0.27565807,,,,,,,,,,,,,, +2014,9,8,13,30,0.8467412,,,,,,,,,,,,,, +2014,9,8,14,30,1.6578,,,,,,,,,,,,,, +2014,9,8,15,30,1.9192848,,,,,,,,,,,,,, +2014,9,8,16,30,1.7752771,,,,,,,,,,,,,, +2014,9,8,17,30,1.3305895,,,,,,,,,,,,,, +2014,9,8,18,30,0.6534833,,,,,,,,,,,,,, +2014,9,8,19,30,0.0529181,,,,,,,,,,,,,, +2014,9,8,20,30,0.45501384,,,,,,,,,,,,,, +2014,9,8,21,30,0.7563535,,,,,,,,,,,,,, +2014,9,8,22,30,0.78529775,,,,,,,,,,,,,, +2014,9,8,23,30,0.45047712,,,,,,,,,,,,,, +2014,9,9,0,30,0.14593938,,,,,,,,,,,,,, +2014,9,9,1,30,0.54998416,,,,,,,,,,,,,, +2014,9,9,2,30,0.84445095,,,,,,,,,,,,,, +2014,9,9,3,30,0.9120591,,,,,,,,,,,,,, +2014,9,9,4,30,0.7570249,,,,,,,,,,,,,, +2014,9,9,5,30,0.3241481,,,,,,,,,,,,,, +2014,9,9,6,30,0.40893403,,,,,,,,,,,,,, +2014,9,9,7,30,1.1661094,,,,,,,,,,,,,, +2014,9,9,8,30,1.7127692,,,,,,,,,,,,,, +2014,9,9,9,30,1.9335785,,,,,,,,,,,,,, +2014,9,9,10,30,1.8256931,,,,,,,,,,,,,, +2014,9,9,11,30,1.4609675,,,,,,,,,,,,,, +2014,9,9,12,30,0.8696537,,,,,,,,,,,,,, +2014,9,9,13,30,0.13658208,,,,,,,,,,,,,, +2014,9,9,14,30,1.0466384,,,,,,,,,,,,,, +2014,9,9,15,30,1.7110447,,,,,,,,,,,,,, +2014,9,9,16,30,1.863534,,,,,,,,,,,,,, +2014,9,9,17,30,1.6822878,,,,,,,,,,,,,, +2014,9,9,18,30,1.2365185,,,,,,,,,,,,,, +2014,9,9,19,30,0.6134919,,,,,,,,,,,,,, +2014,9,9,20,30,0.069424465,,,,,,,,,,,,,, +2014,9,9,21,30,0.38587856,,,,,,,,,,,,,, +2014,9,9,22,30,0.7062639,,,,,,,,,,,,,, +2014,9,9,23,30,0.71669006,,,,,,,,,,,,,, +2014,9,10,0,30,0.3769693,,,,,,,,,,,,,, +2014,9,10,1,30,0.13644834,,,,,,,,,,,,,, +2014,9,10,2,30,0.452672,,,,,,,,,,,,,, +2014,9,10,3,30,0.69093764,,,,,,,,,,,,,, +2014,9,10,4,30,0.74535525,,,,,,,,,,,,,, +2014,9,10,5,30,0.5765296,,,,,,,,,,,,,, +2014,9,10,6,30,0.14436288,,,,,,,,,,,,,, +2014,9,10,7,30,0.5807751,,,,,,,,,,,,,, +2014,9,10,8,30,1.2403646,,,,,,,,,,,,,, +2014,9,10,9,30,1.6739995,,,,,,,,,,,,,, +2014,9,10,10,30,1.8138945,,,,,,,,,,,,,, +2014,9,10,11,30,1.6781576,,,,,,,,,,,,,, +2014,9,10,12,30,1.3114936,,,,,,,,,,,,,, +2014,9,10,13,30,0.6964508,,,,,,,,,,,,,, +2014,9,10,14,30,0.2614658,,,,,,,,,,,,,, +2014,9,10,15,30,1.1933706,,,,,,,,,,,,,, +2014,9,10,16,30,1.7397299,,,,,,,,,,,,,, +2014,9,10,17,30,1.8229872,,,,,,,,,,,,,, +2014,9,10,18,30,1.6380091,,,,,,,,,,,,,, +2014,9,10,19,30,1.2141613,,,,,,,,,,,,,, +2014,9,10,20,30,0.6351911,,,,,,,,,,,,,, +2014,9,10,21,30,0.10508249,,,,,,,,,,,,,, +2014,9,10,22,30,0.38666305,,,,,,,,,,,,,, +2014,9,10,23,30,0.72846043,,,,,,,,,,,,,, +2014,9,11,0,30,0.70336455,,,,,,,,,,,,,, +2014,9,11,1,30,0.36904615,,,,,,,,,,,,,, +2014,9,11,2,30,0.108662054,,,,,,,,,,,,,, +2014,9,11,3,30,0.34815305,,,,,,,,,,,,,, +2014,9,11,4,30,0.59648347,,,,,,,,,,,,,, +2014,9,11,5,30,0.66803837,,,,,,,,,,,,,, +2014,9,11,6,30,0.48816577,,,,,,,,,,,,,, +2014,9,11,7,30,0.098334365,,,,,,,,,,,,,, +2014,9,11,8,30,0.65822995,,,,,,,,,,,,,, +2014,9,11,9,30,1.2574604,,,,,,,,,,,,,, +2014,9,11,10,30,1.6355883,,,,,,,,,,,,,, +2014,9,11,11,30,1.7493103,,,,,,,,,,,,,, +2014,9,11,12,30,1.612951,,,,,,,,,,,,,, +2014,9,11,13,30,1.237747,,,,,,,,,,,,,, +2014,9,11,14,30,0.5752116,,,,,,,,,,,,,, +2014,9,11,15,30,0.4195551,,,,,,,,,,,,,, +2014,9,11,16,30,1.3175226,,,,,,,,,,,,,, +2014,9,11,17,30,1.7785835,,,,,,,,,,,,,, +2014,9,11,18,30,1.8350229,,,,,,,,,,,,,, +2014,9,11,19,30,1.6675345,,,,,,,,,,,,,, +2014,9,11,20,30,1.251941,,,,,,,,,,,,,, +2014,9,11,21,30,0.66329604,,,,,,,,,,,,,, +2014,9,11,22,30,0.08854704,,,,,,,,,,,,,, +2014,9,11,23,30,0.48654628,,,,,,,,,,,,,, +2014,9,12,0,30,0.81896716,,,,,,,,,,,,,, +2014,9,12,1,30,0.74522203,,,,,,,,,,,,,, +2014,9,12,2,30,0.4303092,,,,,,,,,,,,,, +2014,9,12,3,30,0.11355702,,,,,,,,,,,,,, +2014,9,12,4,30,0.27490035,,,,,,,,,,,,,, +2014,9,12,5,30,0.59364885,,,,,,,,,,,,,, +2014,9,12,6,30,0.6896173,,,,,,,,,,,,,, +2014,9,12,7,30,0.48618278,,,,,,,,,,,,,, +2014,9,12,8,30,0.09282089,,,,,,,,,,,,,, +2014,9,12,9,30,0.6714126,,,,,,,,,,,,,, +2014,9,12,10,30,1.2612426,,,,,,,,,,,,,, +2014,9,12,11,30,1.6368138,,,,,,,,,,,,,, +2014,9,12,12,30,1.7529981,,,,,,,,,,,,,, +2014,9,12,13,30,1.6106129,,,,,,,,,,,,,, +2014,9,12,14,30,1.2000916,,,,,,,,,,,,,, +2014,9,12,15,30,0.46565142,,,,,,,,,,,,,, +2014,9,12,16,30,0.5807258,,,,,,,,,,,,,, +2014,9,12,17,30,1.4561212,,,,,,,,,,,,,, +2014,9,12,18,30,1.8667781,,,,,,,,,,,,,, +2014,9,12,19,30,1.9201488,,,,,,,,,,,,,, +2014,9,12,20,30,1.7502909,,,,,,,,,,,,,, +2014,9,12,21,30,1.2860876,,,,,,,,,,,,,, +2014,9,12,22,30,0.616639,,,,,,,,,,,,,, +2014,9,12,23,30,0.10207472,,,,,,,,,,,,,, +2014,9,13,0,30,0.69426787,,,,,,,,,,,,,, +2014,9,13,1,30,0.9771469,,,,,,,,,,,,,, +2014,9,13,2,30,0.8564499,,,,,,,,,,,,,, +2014,9,13,3,30,0.5640858,,,,,,,,,,,,,, +2014,9,13,4,30,0.20993297,,,,,,,,,,,,,, +2014,9,13,5,30,0.2810856,,,,,,,,,,,,,, +2014,9,13,6,30,0.7041419,,,,,,,,,,,,,, +2014,9,13,7,30,0.8088891,,,,,,,,,,,,,, +2014,9,13,8,30,0.5630539,,,,,,,,,,,,,, +2014,9,13,9,30,0.060258698,,,,,,,,,,,,,, +2014,9,13,10,30,0.65562093,,,,,,,,,,,,,, +2014,9,13,11,30,1.285126,,,,,,,,,,,,,, +2014,9,13,12,30,1.6859299,,,,,,,,,,,,,, +2014,9,13,13,30,1.7977663,,,,,,,,,,,,,, +2014,9,13,14,30,1.6244009,,,,,,,,,,,,,, +2014,9,13,15,30,1.1542959,,,,,,,,,,,,,, +2014,9,13,16,30,0.33387178,,,,,,,,,,,,,, +2014,9,13,17,30,0.779017,,,,,,,,,,,,,, +2014,9,13,18,30,1.647289,,,,,,,,,,,,,, +2014,9,13,19,30,2.0224485,,,,,,,,,,,,,, +2014,9,13,20,30,2.0515428,,,,,,,,,,,,,, +2014,9,13,21,30,1.8163608,,,,,,,,,,,,,, +2014,9,13,22,30,1.2324244,,,,,,,,,,,,,, +2014,9,13,23,30,0.43153772,,,,,,,,,,,,,, +2014,9,14,0,30,0.39030603,,,,,,,,,,,,,, +2014,9,14,1,30,1.0029032,,,,,,,,,,,,,, +2014,9,14,2,30,1.2046932,,,,,,,,,,,,,, +2014,9,14,3,30,1.0435233,,,,,,,,,,,,,, +2014,9,14,4,30,0.7435749,,,,,,,,,,,,,, +2014,9,14,5,30,0.27582029,,,,,,,,,,,,,, +2014,9,14,6,30,0.41233855,,,,,,,,,,,,,, +2014,9,14,7,30,0.93419105,,,,,,,,,,,,,, +2014,9,14,8,30,1.0148132,,,,,,,,,,,,,, +2014,9,14,9,30,0.70548904,,,,,,,,,,,,,, +2014,9,14,10,30,0.115345374,,,,,,,,,,,,,, +2014,9,14,11,30,0.6483449,,,,,,,,,,,,,, +2014,9,14,12,30,1.3437502,,,,,,,,,,,,,, +2014,9,14,13,30,1.7611315,,,,,,,,,,,,,, +2014,9,14,14,30,1.8397875,,,,,,,,,,,,,, +2014,9,14,15,30,1.615394,,,,,,,,,,,,,, +2014,9,14,16,30,1.0715126,,,,,,,,,,,,,, +2014,9,14,17,30,0.16879979,,,,,,,,,,,,,, +2014,9,14,18,30,1.0476065,,,,,,,,,,,,,, +2014,9,14,19,30,1.9043722,,,,,,,,,,,,,, +2014,9,14,20,30,2.2139208,,,,,,,,,,,,,, +2014,9,14,21,30,2.1561728,,,,,,,,,,,,,, +2014,9,14,22,30,1.7835207,,,,,,,,,,,,,, +2014,9,14,23,30,1.031697,,,,,,,,,,,,,, +2014,9,15,0,30,0.104546115,,,,,,,,,,,,,, +2014,9,15,1,30,0.82108366,,,,,,,,,,,,,, +2014,9,15,2,30,1.390167,,,,,,,,,,,,,, +2014,9,15,3,30,1.4884617,,,,,,,,,,,,,, +2014,9,15,4,30,1.2787827,,,,,,,,,,,,,, +2014,9,15,5,30,0.9030204,,,,,,,,,,,,,, +2014,9,15,6,30,0.23417926,,,,,,,,,,,,,, +2014,9,15,7,30,0.69219315,,,,,,,,,,,,,, +2014,9,15,8,30,1.2673439,,,,,,,,,,,,,, +2014,9,15,9,30,1.2780472,,,,,,,,,,,,,, +2014,9,15,10,30,0.88115627,,,,,,,,,,,,,, +2014,9,15,11,30,0.20537075,,,,,,,,,,,,,, +2014,9,15,12,30,0.67620385,,,,,,,,,,,,,, +2014,9,15,13,30,1.4290891,,,,,,,,,,,,,, +2014,9,15,14,30,1.8286641,,,,,,,,,,,,,, +2014,9,15,15,30,1.849789,,,,,,,,,,,,,, +2014,9,15,16,30,1.567931,,,,,,,,,,,,,, +2014,9,15,17,30,0.9322243,,,,,,,,,,,,,, +2014,9,15,18,30,0.17904839,,,,,,,,,,,,,, +2014,9,15,19,30,1.3930912,,,,,,,,,,,,,, +2014,9,15,20,30,2.188514,,,,,,,,,,,,,, +2014,9,15,21,30,2.364413,,,,,,,,,,,,,, +2014,9,15,22,30,2.1552596,,,,,,,,,,,,,, +2014,9,15,23,30,1.6024587,,,,,,,,,,,,,, +2014,9,16,0,30,0.67066467,,,,,,,,,,,,,, +2014,9,16,1,30,0.42826882,,,,,,,,,,,,,, +2014,9,16,2,30,1.3470299,,,,,,,,,,,,,, +2014,9,16,3,30,1.8121097,,,,,,,,,,,,,, +2014,9,16,4,30,1.7867994,,,,,,,,,,,,,, +2014,9,16,5,30,1.4982381,,,,,,,,,,,,,, +2014,9,16,6,30,0.95925677,,,,,,,,,,,,,, +2014,9,16,7,30,0.12927361,,,,,,,,,,,,,, +2014,9,16,8,30,1.1091726,,,,,,,,,,,,,, +2014,9,16,9,30,1.6573445,,,,,,,,,,,,,, +2014,9,16,10,30,1.5502546,,,,,,,,,,,,,, +2014,9,16,11,30,1.0439198,,,,,,,,,,,,,, +2014,9,16,12,30,0.261499,,,,,,,,,,,,,, +2014,9,16,13,30,0.74324286,,,,,,,,,,,,,, +2014,9,16,14,30,1.5185912,,,,,,,,,,,,,, +2014,9,16,15,30,1.8651873,,,,,,,,,,,,,, +2014,9,16,16,30,1.8219658,,,,,,,,,,,,,, +2014,9,16,17,30,1.4746313,,,,,,,,,,,,,, +2014,9,16,18,30,0.71640503,,,,,,,,,,,,,, +2014,9,16,19,30,0.52254736,,,,,,,,,,,,,, +2014,9,16,20,30,1.7702723,,,,,,,,,,,,,, +2014,9,16,21,30,2.4156675,,,,,,,,,,,,,, +2014,9,16,22,30,2.3959956,,,,,,,,,,,,,, +2014,9,16,23,30,2.0089493,,,,,,,,,,,,,, +2014,9,17,0,30,1.2719724,,,,,,,,,,,,,, +2014,9,17,1,30,0.17995588,,,,,,,,,,,,,, +2014,9,17,2,30,1.0224656,,,,,,,,,,,,,, +2014,9,17,3,30,1.8995603,,,,,,,,,,,,,, +2014,9,17,4,30,2.2043517,,,,,,,,,,,,,, +2014,9,17,5,30,2.0375285,,,,,,,,,,,,,, +2014,9,17,6,30,1.6257298,,,,,,,,,,,,,, +2014,9,17,7,30,0.84789026,,,,,,,,,,,,,, +2014,9,17,8,30,0.4356583,,,,,,,,,,,,,, +2014,9,17,9,30,1.605684,,,,,,,,,,,,,, +2014,9,17,10,30,2.0346565,,,,,,,,,,,,,, +2014,9,17,11,30,1.777878,,,,,,,,,,,,,, +2014,9,17,12,30,1.1536877,,,,,,,,,,,,,, +2014,9,17,13,30,0.25935227,,,,,,,,,,,,,, +2014,9,17,14,30,0.83433914,,,,,,,,,,,,,, +2014,9,17,15,30,1.5887655,,,,,,,,,,,,,, +2014,9,17,16,30,1.8628356,,,,,,,,,,,,,, +2014,9,17,17,30,1.7549124,,,,,,,,,,,,,, +2014,9,17,18,30,1.3196692,,,,,,,,,,,,,, +2014,9,17,19,30,0.41740212,,,,,,,,,,,,,, +2014,9,17,20,30,0.92618835,,,,,,,,,,,,,, +2014,9,17,21,30,2.088866,,,,,,,,,,,,,, +2014,9,17,22,30,2.5030892,,,,,,,,,,,,,, +2014,9,17,23,30,2.27559,,,,,,,,,,,,,, +2014,9,18,0,30,1.7272373,,,,,,,,,,,,,, +2014,9,18,1,30,0.82340467,,,,,,,,,,,,,, +2014,9,18,2,30,0.4286715,,,,,,,,,,,,,, +2014,9,18,3,30,1.6445067,,,,,,,,,,,,,, +2014,9,18,4,30,2.3943107,,,,,,,,,,,,,, +2014,9,18,5,30,2.5001168,,,,,,,,,,,,,, +2014,9,18,6,30,2.1824276,,,,,,,,,,,,,, +2014,9,18,7,30,1.6054945,,,,,,,,,,,,,, +2014,9,18,8,30,0.55735207,,,,,,,,,,,,,, +2014,9,18,9,30,0.9491237,,,,,,,,,,,,,, +2014,9,18,10,30,2.0886016,,,,,,,,,,,,,, +2014,9,18,11,30,2.3290977,,,,,,,,,,,,,, +2014,9,18,12,30,1.9242222,,,,,,,,,,,,,, +2014,9,18,13,30,1.1948977,,,,,,,,,,,,,, +2014,9,18,14,30,0.2082562,,,,,,,,,,,,,, +2014,9,18,15,30,0.92444307,,,,,,,,,,,,,, +2014,9,18,16,30,1.6200736,,,,,,,,,,,,,, +2014,9,18,17,30,1.8147942,,,,,,,,,,,,,, +2014,9,18,18,30,1.6348978,,,,,,,,,,,,,, +2014,9,18,19,30,1.0896627,,,,,,,,,,,,,, +2014,9,18,20,30,0.12960431,,,,,,,,,,,,,, +2014,9,18,21,30,1.2911595,,,,,,,,,,,,,, +2014,9,18,22,30,2.2586927,,,,,,,,,,,,,, +2014,9,18,23,30,2.418011,,,,,,,,,,,,,, +2014,9,19,0,30,2.0243886,,,,,,,,,,,,,, +2014,9,19,1,30,1.3485873,,,,,,,,,,,,,, +2014,9,19,2,30,0.3087373,,,,,,,,,,,,,, +2014,9,19,3,30,1.0391346,,,,,,,,,,,,,, +2014,9,19,4,30,2.2010264,,,,,,,,,,,,,, +2014,9,19,5,30,2.754561,,,,,,,,,,,,,, +2014,9,19,6,30,2.6542747,,,,,,,,,,,,,, +2014,9,19,7,30,2.1898212,,,,,,,,,,,,,, +2014,9,19,8,30,1.4271711,,,,,,,,,,,,,, +2014,9,19,9,30,0.17660642,,,,,,,,,,,,,, +2014,9,19,10,30,1.4738187,,,,,,,,,,,,,, +2014,9,19,11,30,2.4627492,,,,,,,,,,,,,, +2014,9,19,12,30,2.4988968,,,,,,,,,,,,,, +2014,9,19,13,30,1.9842329,,,,,,,,,,,,,, +2014,9,19,14,30,1.1785638,,,,,,,,,,,,,, +2014,9,19,15,30,0.14075695,,,,,,,,,,,,,, +2014,9,19,16,30,0.98321104,,,,,,,,,,,,,, +2014,9,19,17,30,1.5921212,,,,,,,,,,,,,, +2014,9,19,18,30,1.70624,,,,,,,,,,,,,, +2014,9,19,19,30,1.448226,,,,,,,,,,,,,, +2014,9,19,20,30,0.802106,,,,,,,,,,,,,, +2014,9,19,21,30,0.30943042,,,,,,,,,,,,,, +2014,9,19,22,30,1.5235201,,,,,,,,,,,,,, +2014,9,19,23,30,2.2396245,,,,,,,,,,,,,, +2014,9,20,0,30,2.1886578,,,,,,,,,,,,,, +2014,9,20,1,30,1.6923825,,,,,,,,,,,,,, +2014,9,20,2,30,0.91899025,,,,,,,,,,,,,, +2014,9,20,3,30,0.25628304,,,,,,,,,,,,,, +2014,9,20,4,30,1.5863621,,,,,,,,,,,,,, +2014,9,20,5,30,2.607204,,,,,,,,,,,,,, +2014,9,20,6,30,2.9358497,,,,,,,,,,,,,, +2014,9,20,7,30,2.6562572,,,,,,,,,,,,,, +2014,9,20,8,30,2.065598,,,,,,,,,,,,,, +2014,9,20,9,30,1.1351213,,,,,,,,,,,,,, +2014,9,20,10,30,0.35789657,,,,,,,,,,,,,, +2014,9,20,11,30,1.8939903,,,,,,,,,,,,,, +2014,9,20,12,30,2.671022,,,,,,,,,,,,,, +2014,9,20,13,30,2.545803,,,,,,,,,,,,,, +2014,9,20,14,30,1.9787222,,,,,,,,,,,,,, +2014,9,20,15,30,1.1298616,,,,,,,,,,,,,, +2014,9,20,16,30,0.09443536,,,,,,,,,,,,,, +2014,9,20,17,30,0.97732294,,,,,,,,,,,,,, +2014,9,20,18,30,1.4857924,,,,,,,,,,,,,, +2014,9,20,19,30,1.5298066,,,,,,,,,,,,,, +2014,9,20,20,30,1.2097225,,,,,,,,,,,,,, +2014,9,20,21,30,0.51639456,,,,,,,,,,,,,, +2014,9,20,22,30,0.5422239,,,,,,,,,,,,,, +2014,9,20,23,30,1.5725547,,,,,,,,,,,,,, +2014,9,21,0,30,2.0561588,,,,,,,,,,,,,, +2014,9,21,1,30,1.8771569,,,,,,,,,,,,,, +2014,9,21,2,30,1.3320045,,,,,,,,,,,,,, +2014,9,21,3,30,0.4912498,,,,,,,,,,,,,, +2014,9,21,4,30,0.7222892,,,,,,,,,,,,,, +2014,9,21,5,30,1.9840511,,,,,,,,,,,,,, +2014,9,21,6,30,2.8123713,,,,,,,,,,,,,, +2014,9,21,7,30,2.9356058,,,,,,,,,,,,,, +2014,9,21,8,30,2.5291703,,,,,,,,,,,,,, +2014,9,21,9,30,1.8537605,,,,,,,,,,,,,, +2014,9,21,10,30,0.81572855,,,,,,,,,,,,,, +2014,9,21,11,30,0.725445,,,,,,,,,,,,,, +2014,9,21,12,30,2.1381912,,,,,,,,,,,,,, +2014,9,21,13,30,2.7142313,,,,,,,,,,,,,, +2014,9,21,14,30,2.5037498,,,,,,,,,,,,,, +2014,9,21,15,30,1.9361105,,,,,,,,,,,,,, +2014,9,21,16,30,1.0784814,,,,,,,,,,,,,, +2014,9,21,17,30,0.08508632,,,,,,,,,,,,,, +2014,9,21,18,30,0.8813257,,,,,,,,,,,,,, +2014,9,21,19,30,1.3025246,,,,,,,,,,,,,, +2014,9,21,20,30,1.3104812,,,,,,,,,,,,,, +2014,9,21,21,30,0.9724513,,,,,,,,,,,,,, +2014,9,21,22,30,0.30906838,,,,,,,,,,,,,, +2014,9,21,23,30,0.62217677,,,,,,,,,,,,,, +2014,9,22,0,30,1.4488121,,,,,,,,,,,,,, +2014,9,22,1,30,1.7728838,,,,,,,,,,,,,, +2014,9,22,2,30,1.5479902,,,,,,,,,,,,,, +2014,9,22,3,30,0.99305546,,,,,,,,,,,,,, +2014,9,22,4,30,0.13413152,,,,,,,,,,,,,, +2014,9,22,5,30,1.0544916,,,,,,,,,,,,,, +2014,9,22,6,30,2.1788318,,,,,,,,,,,,,, +2014,9,22,7,30,2.8127382,,,,,,,,,,,,,, +2014,9,22,8,30,2.7878606,,,,,,,,,,,,,, +2014,9,22,9,30,2.3234677,,,,,,,,,,,,,, +2014,9,22,10,30,1.6248661,,,,,,,,,,,,,, +2014,9,22,11,30,0.5604289,,,,,,,,,,,,,, +2014,9,22,12,30,0.948851,,,,,,,,,,,,,, +2014,9,22,13,30,2.202981,,,,,,,,,,,,,, +2014,9,22,14,30,2.637084,,,,,,,,,,,,,, +2014,9,22,15,30,2.4142547,,,,,,,,,,,,,, +2014,9,22,16,30,1.8831152,,,,,,,,,,,,,, +2014,9,22,17,30,1.0571811,,,,,,,,,,,,,, +2014,9,22,18,30,0.11680055,,,,,,,,,,,,,, +2014,9,22,19,30,0.7003792,,,,,,,,,,,,,, +2014,9,22,20,30,1.0838125,,,,,,,,,,,,,, +2014,9,22,21,30,1.1076792,,,,,,,,,,,,,, +2014,9,22,22,30,0.8031584,,,,,,,,,,,,,, +2014,9,22,23,30,0.23040882,,,,,,,,,,,,,, +2014,9,23,0,30,0.5391865,,,,,,,,,,,,,, +2014,9,23,1,30,1.206308,,,,,,,,,,,,,, +2014,9,23,2,30,1.4619414,,,,,,,,,,,,,, +2014,9,23,3,30,1.2566506,,,,,,,,,,,,,, +2014,9,23,4,30,0.7273389,,,,,,,,,,,,,, +2014,9,23,5,30,0.13018677,,,,,,,,,,,,,, +2014,9,23,6,30,1.1999279,,,,,,,,,,,,,, +2014,9,23,7,30,2.1667109,,,,,,,,,,,,,, +2014,9,23,8,30,2.6478539,,,,,,,,,,,,,, +2014,9,23,9,30,2.5533226,,,,,,,,,,,,,, +2014,9,23,10,30,2.1062407,,,,,,,,,,,,,, +2014,9,23,11,30,1.4481275,,,,,,,,,,,,,, +2014,9,23,12,30,0.41940498,,,,,,,,,,,,,, +2014,9,23,13,30,1.0219848,,,,,,,,,,,,,, +2014,9,23,14,30,2.1378307,,,,,,,,,,,,,, +2014,9,23,15,30,2.4972777,,,,,,,,,,,,,, +2014,9,23,16,30,2.313869,,,,,,,,,,,,,, +2014,9,23,17,30,1.8487679,,,,,,,,,,,,,, +2014,9,23,18,30,1.0951365,,,,,,,,,,,,,, +2014,9,23,19,30,0.23428616,,,,,,,,,,,,,, +2014,9,23,20,30,0.48671705,,,,,,,,,,,,,, +2014,9,23,21,30,0.90310353,,,,,,,,,,,,,, +2014,9,23,22,30,0.98459417,,,,,,,,,,,,,, +2014,9,23,23,30,0.7457427,,,,,,,,,,,,,, +2014,9,24,0,30,0.28887632,,,,,,,,,,,,,, +2014,9,24,1,30,0.33038193,,,,,,,,,,,,,, +2014,9,24,2,30,0.9148278,,,,,,,,,,,,,, +2014,9,24,3,30,1.1875393,,,,,,,,,,,,,, +2014,9,24,4,30,1.0505183,,,,,,,,,,,,,, +2014,9,24,5,30,0.5808582,,,,,,,,,,,,,, +2014,9,24,6,30,0.2040494,,,,,,,,,,,,,, +2014,9,24,7,30,1.1587946,,,,,,,,,,,,,, +2014,9,24,8,30,1.9916614,,,,,,,,,,,,,, +2014,9,24,9,30,2.389027,,,,,,,,,,,,,, +2014,9,24,10,30,2.3064466,,,,,,,,,,,,,, +2014,9,24,11,30,1.9392574,,,,,,,,,,,,,, +2014,9,24,12,30,1.3574618,,,,,,,,,,,,,, +2014,9,24,13,30,0.38016233,,,,,,,,,,,,,, +2014,9,24,14,30,0.99438363,,,,,,,,,,,,,, +2014,9,24,15,30,2.00937,,,,,,,,,,,,,, +2014,9,24,16,30,2.3470926,,,,,,,,,,,,,, +2014,9,24,17,30,2.2382693,,,,,,,,,,,,,, +2014,9,24,18,30,1.8624538,,,,,,,,,,,,,, +2014,9,24,19,30,1.1981215,,,,,,,,,,,,,, +2014,9,24,20,30,0.40630436,,,,,,,,,,,,,, +2014,9,24,21,30,0.32581815,,,,,,,,,,,,,, +2014,9,24,22,30,0.82721317,,,,,,,,,,,,,, +2014,9,24,23,30,0.9729552,,,,,,,,,,,,,, +2014,9,25,0,30,0.8070736,,,,,,,,,,,,,, +2014,9,25,1,30,0.46868372,,,,,,,,,,,,,, +2014,9,25,2,30,0.09957995,,,,,,,,,,,,,, +2014,9,25,3,30,0.6450709,,,,,,,,,,,,,, +2014,9,25,4,30,1.0027125,,,,,,,,,,,,,, +2014,9,25,5,30,0.9626981,,,,,,,,,,,,,, +2014,9,25,6,30,0.5718689,,,,,,,,,,,,,, +2014,9,25,7,30,0.13050666,,,,,,,,,,,,,, +2014,9,25,8,30,0.97877055,,,,,,,,,,,,,, +2014,9,25,9,30,1.7317044,,,,,,,,,,,,,, +2014,9,25,10,30,2.121662,,,,,,,,,,,,,, +2014,9,25,11,30,2.1127074,,,,,,,,,,,,,, +2014,9,25,12,30,1.850242,,,,,,,,,,,,,, +2014,9,25,13,30,1.3367587,,,,,,,,,,,,,, +2014,9,25,14,30,0.39060372,,,,,,,,,,,,,, +2014,9,25,15,30,0.9303783,,,,,,,,,,,,,, +2014,9,25,16,30,1.87795,,,,,,,,,,,,,, +2014,9,25,17,30,2.2337613,,,,,,,,,,,,,, +2014,9,25,18,30,2.220904,,,,,,,,,,,,,, +2014,9,25,19,30,1.9329408,,,,,,,,,,,,,, +2014,9,25,20,30,1.3278185,,,,,,,,,,,,,, +2014,9,25,21,30,0.5347816,,,,,,,,,,,,,, +2014,9,25,22,30,0.2914378,,,,,,,,,,,,,, +2014,9,25,23,30,0.881396,,,,,,,,,,,,,, +2014,9,26,0,30,1.0667983,,,,,,,,,,,,,, +2014,9,26,1,30,0.96853656,,,,,,,,,,,,,, +2014,9,26,2,30,0.72776073,,,,,,,,,,,,,, +2014,9,26,3,30,0.23149255,,,,,,,,,,,,,, +2014,9,26,4,30,0.46399698,,,,,,,,,,,,,, +2014,9,26,5,30,0.9424656,,,,,,,,,,,,,, +2014,9,26,6,30,0.99973047,,,,,,,,,,,,,, +2014,9,26,7,30,0.6812178,,,,,,,,,,,,,, +2014,9,26,8,30,0.06723748,,,,,,,,,,,,,, +2014,9,26,9,30,0.73813003,,,,,,,,,,,,,, +2014,9,26,10,30,1.4765779,,,,,,,,,,,,,, +2014,9,26,11,30,1.9174473,,,,,,,,,,,,,, +2014,9,26,12,30,2.0001967,,,,,,,,,,,,,, +2014,9,26,13,30,1.8197334,,,,,,,,,,,,,, +2014,9,26,14,30,1.3369744,,,,,,,,,,,,,, +2014,9,26,15,30,0.3951178,,,,,,,,,,,,,, +2014,9,26,16,30,0.88479507,,,,,,,,,,,,,, +2014,9,26,17,30,1.7950032,,,,,,,,,,,,,, +2014,9,26,18,30,2.1961596,,,,,,,,,,,,,, +2014,9,26,19,30,2.2709122,,,,,,,,,,,,,, +2014,9,26,20,30,2.0249305,,,,,,,,,,,,,, +2014,9,26,21,30,1.4068804,,,,,,,,,,,,,, +2014,9,26,22,30,0.53324705,,,,,,,,,,,,,, +2014,9,26,23,30,0.40967378,,,,,,,,,,,,,, +2014,9,27,0,30,1.0498244,,,,,,,,,,,,,, +2014,9,27,1,30,1.2409217,,,,,,,,,,,,,, +2014,9,27,2,30,1.2002916,,,,,,,,,,,,,, +2014,9,27,3,30,1.0094835,,,,,,,,,,,,,, +2014,9,27,4,30,0.4413507,,,,,,,,,,,,,, +2014,9,27,5,30,0.4218762,,,,,,,,,,,,,, +2014,9,27,6,30,1.0143527,,,,,,,,,,,,,, +2014,9,27,7,30,1.1404626,,,,,,,,,,,,,, +2014,9,27,8,30,0.8666302,,,,,,,,,,,,,, +2014,9,27,9,30,0.28313392,,,,,,,,,,,,,, +2014,9,27,10,30,0.5220789,,,,,,,,,,,,,, +2014,9,27,11,30,1.2968382,,,,,,,,,,,,,, +2014,9,27,12,30,1.8041912,,,,,,,,,,,,,, +2014,9,27,13,30,1.9479024,,,,,,,,,,,,,, +2014,9,27,14,30,1.7994759,,,,,,,,,,,,,, +2014,9,27,15,30,1.3087089,,,,,,,,,,,,,, +2014,9,27,16,30,0.35321167,,,,,,,,,,,,,, +2014,9,27,17,30,0.9017731,,,,,,,,,,,,,, +2014,9,27,18,30,1.7989296,,,,,,,,,,,,,, +2014,9,27,19,30,2.242138,,,,,,,,,,,,,, +2014,9,27,20,30,2.3494644,,,,,,,,,,,,,, +2014,9,27,21,30,2.0638814,,,,,,,,,,,,,, +2014,9,27,22,30,1.3561512,,,,,,,,,,,,,, +2014,9,27,23,30,0.3610177,,,,,,,,,,,,,, +2014,9,28,0,30,0.66881555,,,,,,,,,,,,,, +2014,9,28,1,30,1.2976583,,,,,,,,,,,,,, +2014,9,28,2,30,1.4675394,,,,,,,,,,,,,, +2014,9,28,3,30,1.464185,,,,,,,,,,,,,, +2014,9,28,4,30,1.2477515,,,,,,,,,,,,,, +2014,9,28,5,30,0.52311623,,,,,,,,,,,,,, +2014,9,28,6,30,0.52957517,,,,,,,,,,,,,, +2014,9,28,7,30,1.1992804,,,,,,,,,,,,,, +2014,9,28,8,30,1.3465043,,,,,,,,,,,,,, +2014,9,28,9,30,1.076465,,,,,,,,,,,,,, +2014,9,28,10,30,0.47917563,,,,,,,,,,,,,, +2014,9,28,11,30,0.39163786,,,,,,,,,,,,,, +2014,9,28,12,30,1.2155992,,,,,,,,,,,,,, +2014,9,28,13,30,1.7573764,,,,,,,,,,,,,, +2014,9,28,14,30,1.9072266,,,,,,,,,,,,,, +2014,9,28,15,30,1.7465899,,,,,,,,,,,,,, +2014,9,28,16,30,1.2205904,,,,,,,,,,,,,, +2014,9,28,17,30,0.24386051,,,,,,,,,,,,,, +2014,9,28,18,30,1.0127518,,,,,,,,,,,,,, +2014,9,28,19,30,1.8932018,,,,,,,,,,,,,, +2014,9,28,20,30,2.3271425,,,,,,,,,,,,,, +2014,9,28,21,30,2.3782005,,,,,,,,,,,,,, +2014,9,28,22,30,1.9739939,,,,,,,,,,,,,, +2014,9,28,23,30,1.132431,,,,,,,,,,,,,, +2014,9,29,0,30,0.05937598,,,,,,,,,,,,,, +2014,9,29,1,30,1.0310175,,,,,,,,,,,,,, +2014,9,29,2,30,1.5879519,,,,,,,,,,,,,, +2014,9,29,3,30,1.717564,,,,,,,,,,,,,, +2014,9,29,4,30,1.7099333,,,,,,,,,,,,,, +2014,9,29,5,30,1.3740227,,,,,,,,,,,,,, +2014,9,29,6,30,0.4409604,,,,,,,,,,,,,, +2014,9,29,7,30,0.7743473,,,,,,,,,,,,,, +2014,9,29,8,30,1.459342,,,,,,,,,,,,,, +2014,9,29,9,30,1.5723765,,,,,,,,,,,,,, +2014,9,29,10,30,1.2596116,,,,,,,,,,,,,, +2014,9,29,11,30,0.5986403,,,,,,,,,,,,,, +2014,9,29,12,30,0.35706776,,,,,,,,,,,,,, +2014,9,29,13,30,1.2063309,,,,,,,,,,,,,, +2014,9,29,14,30,1.7268794,,,,,,,,,,,,,, +2014,9,29,15,30,1.8395939,,,,,,,,,,,,,, +2014,9,29,16,30,1.6407465,,,,,,,,,,,,,, +2014,9,29,17,30,1.0539668,,,,,,,,,,,,,, +2014,9,29,18,30,0.13545579,,,,,,,,,,,,,, +2014,9,29,19,30,1.2154392,,,,,,,,,,,,,, +2014,9,29,20,30,2.0277457,,,,,,,,,,,,,, +2014,9,29,21,30,2.3683288,,,,,,,,,,,,,, +2014,9,29,22,30,2.2821603,,,,,,,,,,,,,, +2014,9,29,23,30,1.717301,,,,,,,,,,,,,, +2014,9,30,0,30,0.73862183,,,,,,,,,,,,,, +2014,9,30,1,30,0.45960855,,,,,,,,,,,,,, +2014,9,30,2,30,1.4453455,,,,,,,,,,,,,, +2014,9,30,3,30,1.8834072,,,,,,,,,,,,,, +2014,9,30,4,30,1.9529114,,,,,,,,,,,,,, +2014,9,30,5,30,1.8764975,,,,,,,,,,,,,, +2014,9,30,6,30,1.3306843,,,,,,,,,,,,,, +2014,9,30,7,30,0.23557918,,,,,,,,,,,,,, +2014,9,30,8,30,1.1247292,,,,,,,,,,,,,, +2014,9,30,9,30,1.7444175,,,,,,,,,,,,,, +2014,9,30,10,30,1.7721256,,,,,,,,,,,,,, +2014,9,30,11,30,1.374966,,,,,,,,,,,,,, +2014,9,30,12,30,0.6200304,,,,,,,,,,,,,, +2014,9,30,13,30,0.39213425,,,,,,,,,,,,,, +2014,9,30,14,30,1.2223474,,,,,,,,,,,,,, +2014,9,30,15,30,1.6772623,,,,,,,,,,,,,, +2006,9,30,16,30,1.7340963,,,,,,,,,,,,,, +2006,9,30,17,30,1.4745227,,,,,,,,,,,,,, +2006,9,30,18,30,0.79659235,,,,,,,,,,,,,, +2006,9,30,19,30,0.34266046,,,,,,,,,,,,,, +2006,9,30,20,30,1.4561945,,,,,,,,,,,,,, +2006,9,30,21,30,2.117344,,,,,,,,,,,,,, +2006,9,30,22,30,2.2927327,,,,,,,,,,,,,, +2006,9,30,23,30,2.0308979,,,,,,,,,,,,,, +2006,10,1,0,30,1.3032085,,,,,,,,,,,,,, +2006,10,1,1,30,0.21499157,,,,,,,,,,,,,, +2006,10,1,2,30,0.9951245,,,,,,,,,,,,,, +2006,10,1,3,30,1.8534977,,,,,,,,,,,,,, +2006,10,1,4,30,2.1412241,,,,,,,,,,,,,, +2006,10,1,5,30,2.1243024,,,,,,,,,,,,,, +2006,10,1,6,30,1.9024416,,,,,,,,,,,,,, +2006,10,1,7,30,1.0870512,,,,,,,,,,,,,, +2006,10,1,8,30,0.3684771,,,,,,,,,,,,,, +2006,10,1,9,30,1.5208567,,,,,,,,,,,,,, +2006,10,1,10,30,1.9990314,,,,,,,,,,,,,, +2006,10,1,11,30,1.9059277,,,,,,,,,,,,,, +2006,10,1,12,30,1.3994306,,,,,,,,,,,,,, +2006,10,1,13,30,0.55155057,,,,,,,,,,,,,, +2006,10,1,14,30,0.46700445,,,,,,,,,,,,,, +2006,10,1,15,30,1.233162,,,,,,,,,,,,,, +2006,10,1,16,30,1.6044441,,,,,,,,,,,,,, +2006,10,1,17,30,1.5936364,,,,,,,,,,,,,, +2006,10,1,18,30,1.2406973,,,,,,,,,,,,,, +2006,10,1,19,30,0.456007,,,,,,,,,,,,,, +2006,10,1,20,30,0.6890909,,,,,,,,,,,,,, +2006,10,1,21,30,1.6491358,,,,,,,,,,,,,, +2006,10,1,22,30,2.0923011,,,,,,,,,,,,,, +2006,10,1,23,30,2.0787132,,,,,,,,,,,,,, +2006,10,2,0,30,1.644302,,,,,,,,,,,,,, +2006,10,2,1,30,0.7725049,,,,,,,,,,,,,, +2006,10,2,2,30,0.39504272,,,,,,,,,,,,,, +2006,10,2,3,30,1.5256851,,,,,,,,,,,,,, +2006,10,2,4,30,2.1929333,,,,,,,,,,,,,, +2006,10,2,5,30,2.3152084,,,,,,,,,,,,,, +2006,10,2,6,30,2.179336,,,,,,,,,,,,,, +2006,10,2,7,30,1.7425947,,,,,,,,,,,,,, +2006,10,2,8,30,0.6573975,,,,,,,,,,,,,, +2006,10,2,9,30,0.86214066,,,,,,,,,,,,,, +2006,10,2,10,30,1.8863875,,,,,,,,,,,,,, +2006,10,2,11,30,2.173848,,,,,,,,,,,,,, +2006,10,2,12,30,1.9484146,,,,,,,,,,,,,, +2006,10,2,13,30,1.3291042,,,,,,,,,,,,,, +2006,10,2,14,30,0.41589555,,,,,,,,,,,,,, +2006,10,2,15,30,0.562409,,,,,,,,,,,,,, +2006,10,2,16,30,1.2361509,,,,,,,,,,,,,, +2006,10,2,17,30,1.517578,,,,,,,,,,,,,, +2006,10,2,18,30,1.4152714,,,,,,,,,,,,,, +2006,10,2,19,30,0.93876123,,,,,,,,,,,,,, +2006,10,2,20,30,0.13170394,,,,,,,,,,,,,, +2006,10,2,21,30,0.9990824,,,,,,,,,,,,,, +2006,10,2,22,30,1.7251778,,,,,,,,,,,,,, +2006,10,2,23,30,1.938522,,,,,,,,,,,,,, +2006,10,3,0,30,1.7559904,,,,,,,,,,,,,, +2006,10,3,1,30,1.1678845,,,,,,,,,,,,,, +2006,10,3,2,30,0.18386078,,,,,,,,,,,,,, +2006,10,3,3,30,0.9929859,,,,,,,,,,,,,, +2006,10,3,4,30,1.970165,,,,,,,,,,,,,, +2006,10,3,5,30,2.409782,,,,,,,,,,,,,, +2006,10,3,6,30,2.3662186,,,,,,,,,,,,,, +2006,10,3,7,30,2.0773687,,,,,,,,,,,,,, +2006,10,3,8,30,1.388418,,,,,,,,,,,,,, +2006,10,3,9,30,0.18178274,,,,,,,,,,,,,, +2006,10,3,10,30,1.3674676,,,,,,,,,,,,,, +2006,10,3,11,30,2.151744,,,,,,,,,,,,,, +2006,10,3,12,30,2.240641,,,,,,,,,,,,,, +2006,10,3,13,30,1.8927397,,,,,,,,,,,,,, +2006,10,3,14,30,1.1718944,,,,,,,,,,,,,, +2006,10,3,15,30,0.23743364,,,,,,,,,,,,,, +2006,10,3,16,30,0.6704682,,,,,,,,,,,,,, +2006,10,3,17,30,1.2361555,,,,,,,,,,,,,, +2006,10,3,18,30,1.4142191,,,,,,,,,,,,,, +2006,10,3,19,30,1.1914947,,,,,,,,,,,,,, +2006,10,3,20,30,0.5921501,,,,,,,,,,,,,, +2006,10,3,21,30,0.33446258,,,,,,,,,,,,,, +2006,10,3,22,30,1.2003019,,,,,,,,,,,,,, +2006,10,3,23,30,1.6703393,,,,,,,,,,,,,, +2006,10,4,0,30,1.6929146,,,,,,,,,,,,,, +2006,10,4,1,30,1.3723818,,,,,,,,,,,,,, +2006,10,4,2,30,0.6486958,,,,,,,,,,,,,, +2006,10,4,3,30,0.41431624,,,,,,,,,,,,,, +2006,10,4,4,30,1.5087216,,,,,,,,,,,,,, +2006,10,4,5,30,2.2661762,,,,,,,,,,,,,, +2006,10,4,6,30,2.4749436,,,,,,,,,,,,,, +2006,10,4,7,30,2.2737327,,,,,,,,,,,,,, +2006,10,4,8,30,1.8081434,,,,,,,,,,,,,, +2006,10,4,9,30,0.8849889,,,,,,,,,,,,,, +2006,10,4,10,30,0.5500444,,,,,,,,,,,,,, +2006,10,4,11,30,1.7729065,,,,,,,,,,,,,, +2006,10,4,12,30,2.2800624,,,,,,,,,,,,,, +2006,10,4,13,30,2.1996384,,,,,,,,,,,,,, +2006,10,4,14,30,1.7462031,,,,,,,,,,,,,, +2006,10,4,15,30,0.9423016,,,,,,,,,,,,,, +2006,10,4,16,30,0.07737301,,,,,,,,,,,,,, +2006,10,4,17,30,0.77773917,,,,,,,,,,,,,, +2006,10,4,18,30,1.2221152,,,,,,,,,,,,,, +2006,10,4,19,30,1.2796729,,,,,,,,,,,,,, +2006,10,4,20,30,0.92744225,,,,,,,,,,,,,, +2006,10,4,21,30,0.254398,,,,,,,,,,,,,, +2006,10,4,22,30,0.60875106,,,,,,,,,,,,,, +2006,10,4,23,30,1.2709395,,,,,,,,,,,,,, +2006,10,5,0,30,1.5207903,,,,,,,,,,,,,, +2006,10,5,1,30,1.4051344,,,,,,,,,,,,,, +2006,10,5,2,30,0.9648468,,,,,,,,,,,,,, +2006,10,5,3,30,0.1319671,,,,,,,,,,,,,, +2006,10,5,4,30,0.93926495,,,,,,,,,,,,,, +2006,10,5,5,30,1.8805666,,,,,,,,,,,,,, +2006,10,5,6,30,2.3894706,,,,,,,,,,,,,, +2006,10,5,7,30,2.3910692,,,,,,,,,,,,,, +2006,10,5,8,30,2.0456665,,,,,,,,,,,,,, +2006,10,5,9,30,1.4073546,,,,,,,,,,,,,, +2006,10,5,10,30,0.3379411,,,,,,,,,,,,,, +2006,10,5,11,30,1.0630285,,,,,,,,,,,,,, +2006,10,5,12,30,2.0227616,,,,,,,,,,,,,, +2006,10,5,13,30,2.2782815,,,,,,,,,,,,,, +2006,10,5,14,30,2.0718603,,,,,,,,,,,,,, +2006,10,5,15,30,1.5259744,,,,,,,,,,,,,, +2006,10,5,16,30,0.6694552,,,,,,,,,,,,,, +2006,10,5,17,30,0.23611477,,,,,,,,,,,,,, +2006,10,5,18,30,0.8534193,,,,,,,,,,,,,, +2006,10,5,19,30,1.1714675,,,,,,,,,,,,,, +2006,10,5,20,30,1.1069505,,,,,,,,,,,,,, +2006,10,5,21,30,0.6501614,,,,,,,,,,,,,, +2006,10,5,22,30,0.14954321,,,,,,,,,,,,,, +2006,10,5,23,30,0.7749468,,,,,,,,,,,,,, +2006,10,6,0,30,1.2360961,,,,,,,,,,,,,, +2006,10,6,1,30,1.3255465,,,,,,,,,,,,,, +2006,10,6,2,30,1.1069734,,,,,,,,,,,,,, +2006,10,6,3,30,0.558057,,,,,,,,,,,,,, +2006,10,6,4,30,0.35051394,,,,,,,,,,,,,, +2006,10,6,5,30,1.3489358,,,,,,,,,,,,,, +2006,10,6,6,30,2.085438,,,,,,,,,,,,,, +2006,10,6,7,30,2.35593,,,,,,,,,,,,,, +2006,10,6,8,30,2.1897547,,,,,,,,,,,,,, +2006,10,6,9,30,1.7245657,,,,,,,,,,,,,, +2006,10,6,10,30,0.95398223,,,,,,,,,,,,,, +2006,10,6,11,30,0.24481654,,,,,,,,,,,,,, +2006,10,6,12,30,1.4352843,,,,,,,,,,,,,, +2006,10,6,13,30,2.1194222,,,,,,,,,,,,,, +2006,10,6,14,30,2.1835923,,,,,,,,,,,,,, +2006,10,6,15,30,1.8866985,,,,,,,,,,,,,, +2006,10,6,16,30,1.2648913,,,,,,,,,,,,,, +2006,10,6,17,30,0.4073646,,,,,,,,,,,,,, +2006,10,6,18,30,0.3804894,,,,,,,,,,,,,, +2006,10,6,19,30,0.8668479,,,,,,,,,,,,,, +2006,10,6,20,30,1.0757319,,,,,,,,,,,,,, +2006,10,6,21,30,0.9117404,,,,,,,,,,,,,, +2006,10,6,22,30,0.3994062,,,,,,,,,,,,,, +2006,10,6,23,30,0.2905813,,,,,,,,,,,,,, +2006,10,7,0,30,0.83404,,,,,,,,,,,,,, +2006,10,7,1,30,1.1367228,,,,,,,,,,,,,, +2006,10,7,2,30,1.1173856,,,,,,,,,,,,,, +2006,10,7,3,30,0.81389457,,,,,,,,,,,,,, +2006,10,7,4,30,0.18470922,,,,,,,,,,,,,, +2006,10,7,5,30,0.74543357,,,,,,,,,,,,,, +2006,10,7,6,30,1.617697,,,,,,,,,,,,,, +2006,10,7,7,30,2.136538,,,,,,,,,,,,,, +2006,10,7,8,30,2.2088692,,,,,,,,,,,,,, +2006,10,7,9,30,1.9251604,,,,,,,,,,,,,, +2006,10,7,10,30,1.3807724,,,,,,,,,,,,,, +2006,10,7,11,30,0.54056966,,,,,,,,,,,,,, +2006,10,7,12,30,0.6316919,,,,,,,,,,,,,, +2006,10,7,13,30,1.6533203,,,,,,,,,,,,,, +2006,10,7,14,30,2.1051528,,,,,,,,,,,,,, +2006,10,7,15,30,2.0401103,,,,,,,,,,,,,, +2006,10,7,16,30,1.6800944,,,,,,,,,,,,,, +2006,10,7,17,30,1.0172894,,,,,,,,,,,,,, +2006,10,7,18,30,0.22032359,,,,,,,,,,,,,, +2006,10,7,19,30,0.43525892,,,,,,,,,,,,,, +2006,10,7,20,30,0.819528,,,,,,,,,,,,,, +2006,10,7,21,30,0.9570025,,,,,,,,,,,,,, +2006,10,7,22,30,0.72870195,,,,,,,,,,,,,, +2006,10,7,23,30,0.2141269,,,,,,,,,,,,,, +2006,10,8,0,30,0.3730284,,,,,,,,,,,,,, +2006,10,8,1,30,0.8088726,,,,,,,,,,,,,, +2006,10,8,2,30,1.0061425,,,,,,,,,,,,,, +2006,10,8,3,30,0.9152697,,,,,,,,,,,,,, +2006,10,8,4,30,0.5455926,,,,,,,,,,,,,, +2006,10,8,5,30,0.1748235,,,,,,,,,,,,,, +2006,10,8,6,30,1.0266659,,,,,,,,,,,,,, +2006,10,8,7,30,1.743625,,,,,,,,,,,,,, +2006,10,8,8,30,2.0689723,,,,,,,,,,,,,, +2006,10,8,9,30,2.0051672,,,,,,,,,,,,,, +2006,10,8,10,30,1.6626295,,,,,,,,,,,,,, +2006,10,8,11,30,1.0848862,,,,,,,,,,,,,, +2006,10,8,12,30,0.24091351,,,,,,,,,,,,,, +2006,10,8,13,30,0.90088034,,,,,,,,,,,,,, +2006,10,8,14,30,1.7521639,,,,,,,,,,,,,, +2006,10,8,15,30,2.0311391,,,,,,,,,,,,,, +2006,10,8,16,30,1.8886597,,,,,,,,,,,,,, +2006,10,8,17,30,1.4982898,,,,,,,,,,,,,, +2006,10,8,18,30,0.8425355,,,,,,,,,,,,,, +2006,10,8,19,30,0.13740838,,,,,,,,,,,,,, +2006,10,8,20,30,0.41384593,,,,,,,,,,,,,, +2006,10,8,21,30,0.75682074,,,,,,,,,,,,,, +2006,10,8,22,30,0.8596138,,,,,,,,,,,,,, +2006,10,8,23,30,0.5985512,,,,,,,,,,,,,, +2006,10,9,0,30,0.13663839,,,,,,,,,,,,,, +2006,10,9,1,30,0.36852702,,,,,,,,,,,,,, +2006,10,9,2,30,0.7259969,,,,,,,,,,,,,, +2006,10,9,3,30,0.87349904,,,,,,,,,,,,,, +2006,10,9,4,30,0.74352294,,,,,,,,,,,,,, +2006,10,9,5,30,0.3375456,,,,,,,,,,,,,, +2006,10,9,6,30,0.39034238,,,,,,,,,,,,,, +2006,10,9,7,30,1.1727728,,,,,,,,,,,,,, +2006,10,9,8,30,1.7409251,,,,,,,,,,,,,, +2006,10,9,9,30,1.9290667,,,,,,,,,,,,,, +2006,10,9,10,30,1.8037717,,,,,,,,,,,,,, +2006,10,9,11,30,1.4567782,,,,,,,,,,,,,, +2006,10,9,12,30,0.8732195,,,,,,,,,,,,,, +2006,10,9,13,30,0.1324366,,,,,,,,,,,,,, +2006,10,9,14,30,1.0689253,,,,,,,,,,,,,, +2006,10,9,15,30,1.7794235,,,,,,,,,,,,,, +2006,10,9,16,30,1.9418392,,,,,,,,,,,,,, +2006,10,9,17,30,1.7696346,,,,,,,,,,,,,, +2006,10,9,18,30,1.385929,,,,,,,,,,,,,, +2006,10,9,19,30,0.76689374,,,,,,,,,,,,,, +2006,10,9,20,30,0.129635,,,,,,,,,,,,,, +2006,10,9,21,30,0.38803378,,,,,,,,,,,,,, +2006,10,9,22,30,0.7453497,,,,,,,,,,,,,, +2006,10,9,23,30,0.82926047,,,,,,,,,,,,,, +2006,10,10,0,30,0.5583348,,,,,,,,,,,,,, +2006,10,10,1,30,0.14609142,,,,,,,,,,,,,, +2006,10,10,2,30,0.28086072,,,,,,,,,,,,,, +2006,10,10,3,30,0.62258977,,,,,,,,,,,,,, +2006,10,10,4,30,0.7780945,,,,,,,,,,,,,, +2006,10,10,5,30,0.6398014,,,,,,,,,,,,,, +2006,10,10,6,30,0.22718415,,,,,,,,,,,,,, +2006,10,10,7,30,0.47981405,,,,,,,,,,,,,, +2006,10,10,8,30,1.1785982,,,,,,,,,,,,,, +2006,10,10,9,30,1.6403271,,,,,,,,,,,,,, +2006,10,10,10,30,1.769219,,,,,,,,,,,,,, +2006,10,10,11,30,1.6505156,,,,,,,,,,,,,, +2006,10,10,12,30,1.3277302,,,,,,,,,,,,,, +2006,10,10,13,30,0.7367749,,,,,,,,,,,,,, +2006,10,10,14,30,0.21086125,,,,,,,,,,,,,, +2006,10,10,15,30,1.174403,,,,,,,,,,,,,, +2006,10,10,16,30,1.7777469,,,,,,,,,,,,,, +2006,10,10,17,30,1.8775952,,,,,,,,,,,,,, +2006,10,10,18,30,1.7172263,,,,,,,,,,,,,, +2006,10,10,19,30,1.3555267,,,,,,,,,,,,,, +2006,10,10,20,30,0.7554307,,,,,,,,,,,,,, +2006,10,10,21,30,0.12550548,,,,,,,,,,,,,, +2006,10,10,22,30,0.44570583,,,,,,,,,,,,,, +2006,10,10,23,30,0.8376419,,,,,,,,,,,,,, +2006,10,11,0,30,0.8975657,,,,,,,,,,,,,, +2006,10,11,1,30,0.6323115,,,,,,,,,,,,,, +2006,10,11,2,30,0.2667473,,,,,,,,,,,,,, +2006,10,11,3,30,0.15423423,,,,,,,,,,,,,, +2006,10,11,4,30,0.55594903,,,,,,,,,,,,,, +2006,10,11,5,30,0.7695422,,,,,,,,,,,,,, +2006,10,11,6,30,0.6446271,,,,,,,,,,,,,, +2006,10,11,7,30,0.23262708,,,,,,,,,,,,,, +2006,10,11,8,30,0.42372292,,,,,,,,,,,,,, +2006,10,11,9,30,1.066839,,,,,,,,,,,,,, +2006,10,11,10,30,1.4924382,,,,,,,,,,,,,, +2006,10,11,11,30,1.6377165,,,,,,,,,,,,,, +2006,10,11,12,30,1.562052,,,,,,,,,,,,,, +2006,10,11,13,30,1.2578834,,,,,,,,,,,,,, +2006,10,11,14,30,0.643236,,,,,,,,,,,,,, +2006,10,11,15,30,0.31539196,,,,,,,,,,,,,, +2006,10,11,16,30,1.2529511,,,,,,,,,,,,,, +2006,10,11,17,30,1.7877796,,,,,,,,,,,,,, +2006,10,11,18,30,1.8723288,,,,,,,,,,,,,, +2006,10,11,19,30,1.7364118,,,,,,,,,,,,,, +2006,10,11,20,30,1.3659486,,,,,,,,,,,,,, +2006,10,11,21,30,0.7233156,,,,,,,,,,,,,, +2006,10,11,22,30,0.06967072,,,,,,,,,,,,,, +2006,10,11,23,30,0.6430416,,,,,,,,,,,,,, +2006,10,12,0,30,1.0524939,,,,,,,,,,,,,, +2006,10,12,1,30,1.0739071,,,,,,,,,,,,,, +2006,10,12,2,30,0.8195259,,,,,,,,,,,,,, +2006,10,12,3,30,0.47130093,,,,,,,,,,,,,, +2006,10,12,4,30,0.10166448,,,,,,,,,,,,,, +2006,10,12,5,30,0.5933656,,,,,,,,,,,,,, +2006,10,12,6,30,0.89073294,,,,,,,,,,,,,, +2006,10,12,7,30,0.78463644,,,,,,,,,,,,,, +2006,10,12,8,30,0.37417474,,,,,,,,,,,,,, +2006,10,12,9,30,0.24845526,,,,,,,,,,,,,, +2006,10,12,10,30,0.8953171,,,,,,,,,,,,,, +2006,10,12,11,30,1.3577611,,,,,,,,,,,,,, +2006,10,12,12,30,1.5622611,,,,,,,,,,,,,, +2006,10,12,13,30,1.5243747,,,,,,,,,,,,,, +2006,10,12,14,30,1.2152839,,,,,,,,,,,,,, +2006,10,12,15,30,0.5654515,,,,,,,,,,,,,, +2006,10,12,16,30,0.41378888,,,,,,,,,,,,,, +2006,10,12,17,30,1.341361,,,,,,,,,,,,,, +2006,10,12,18,30,1.8466688,,,,,,,,,,,,,, +2006,10,12,19,30,1.9330105,,,,,,,,,,,,,, +2006,10,12,20,30,1.7853775,,,,,,,,,,,,,, +2006,10,12,21,30,1.3381217,,,,,,,,,,,,,, +2006,10,12,22,30,0.58427787,,,,,,,,,,,,,, +2006,10,12,23,30,0.27097994,,,,,,,,,,,,,, +2006,10,13,0,30,0.9883153,,,,,,,,,,,,,, +2006,10,13,1,30,1.3731619,,,,,,,,,,,,,, +2006,10,13,2,30,1.3396533,,,,,,,,,,,,,, +2006,10,13,3,30,1.0820272,,,,,,,,,,,,,, +2006,10,13,4,30,0.67489296,,,,,,,,,,,,,, +2006,10,13,5,30,0.11518501,,,,,,,,,,,,,, +2006,10,13,6,30,0.7855164,,,,,,,,,,,,,, +2006,10,13,7,30,1.1568253,,,,,,,,,,,,,, +2006,10,13,8,30,1.0520282,,,,,,,,,,,,,, +2006,10,13,9,30,0.629017,,,,,,,,,,,,,, +2006,10,13,10,30,0.055001177,,,,,,,,,,,,,, +2006,10,13,11,30,0.74053204,,,,,,,,,,,,,, +2006,10,13,12,30,1.2820847,,,,,,,,,,,,,, +2006,10,13,13,30,1.5418698,,,,,,,,,,,,,, +2006,10,13,14,30,1.5117546,,,,,,,,,,,,,, +2006,10,13,15,30,1.1791558,,,,,,,,,,,,,, +2006,10,13,16,30,0.48742905,,,,,,,,,,,,,, +2006,10,13,17,30,0.5321244,,,,,,,,,,,,,, +2006,10,13,18,30,1.4765937,,,,,,,,,,,,,, +2006,10,13,19,30,1.9660689,,,,,,,,,,,,,, +2006,10,13,20,30,2.0213923,,,,,,,,,,,,,, +2006,10,13,21,30,1.7910044,,,,,,,,,,,,,, +2006,10,13,22,30,1.2007427,,,,,,,,,,,,,, +2006,10,13,23,30,0.29711398,,,,,,,,,,,,,, +2006,10,14,0,30,0.6858204,,,,,,,,,,,,,, +2006,10,14,1,30,1.4446577,,,,,,,,,,,,,, +2006,10,14,2,30,1.753061,,,,,,,,,,,,,, +2006,10,14,3,30,1.6469215,,,,,,,,,,,,,, +2006,10,14,4,30,1.3468779,,,,,,,,,,,,,, +2006,10,14,5,30,0.78234994,,,,,,,,,,,,,, +2006,10,14,6,30,0.21678051,,,,,,,,,,,,,, +2006,10,14,7,30,1.1442368,,,,,,,,,,,,,, +2006,10,14,8,30,1.5389574,,,,,,,,,,,,,, +2006,10,14,9,30,1.3933088,,,,,,,,,,,,,, +2006,10,14,10,30,0.91674125,,,,,,,,,,,,,, +2006,10,14,11,30,0.21001032,,,,,,,,,,,,,, +2006,10,14,12,30,0.6603407,,,,,,,,,,,,,, +2006,10,14,13,30,1.2778937,,,,,,,,,,,,,, +2006,10,14,14,30,1.5573525,,,,,,,,,,,,,, +2006,10,14,15,30,1.5073321,,,,,,,,,,,,,, +2006,10,14,16,30,1.1404322,,,,,,,,,,,,,, +2006,10,14,17,30,0.38868457,,,,,,,,,,,,,, +2006,10,14,18,30,0.70366657,,,,,,,,,,,,,, +2006,10,14,19,30,1.6721966,,,,,,,,,,,,,, +2006,10,14,20,30,2.110593,,,,,,,,,,,,,, +2006,10,14,21,30,2.0677283,,,,,,,,,,,,,, +2006,10,14,22,30,1.6911768,,,,,,,,,,,,,, +2006,10,14,23,30,0.926626,,,,,,,,,,,,,, +2006,10,15,0,30,0.15316339,,,,,,,,,,,,,, +2006,10,15,1,30,1.216406,,,,,,,,,,,,,, +2006,10,15,2,30,1.944124,,,,,,,,,,,,,, +2006,10,15,3,30,2.1269066,,,,,,,,,,,,,, +2006,10,15,4,30,1.9291849,,,,,,,,,,,,,, +2006,10,15,5,30,1.5285919,,,,,,,,,,,,,, +2006,10,15,6,30,0.7159827,,,,,,,,,,,,,, +2006,10,15,7,30,0.57067245,,,,,,,,,,,,,, +2006,10,15,8,30,1.6287464,,,,,,,,,,,,,, +2006,10,15,9,30,1.9643536,,,,,,,,,,,,,, +2006,10,15,10,30,1.725132,,,,,,,,,,,,,, +2006,10,15,11,30,1.1492121,,,,,,,,,,,,,, +2006,10,15,12,30,0.3105587,,,,,,,,,,,,,, +2006,10,15,13,30,0.66988677,,,,,,,,,,,,,, +2006,10,15,14,30,1.327853,,,,,,,,,,,,,, +2006,10,15,15,30,1.5883998,,,,,,,,,,,,,, +2006,10,15,16,30,1.502254,,,,,,,,,,,,,, +2006,10,15,17,30,1.0824655,,,,,,,,,,,,,, +2006,10,15,18,30,0.24193287,,,,,,,,,,,,,, +2006,10,15,19,30,0.94287884,,,,,,,,,,,,,, +2006,10,15,20,30,1.8935988,,,,,,,,,,,,,, +2006,10,15,21,30,2.209772,,,,,,,,,,,,,, +2006,10,15,22,30,2.0124195,,,,,,,,,,,,,, +2006,10,15,23,30,1.4669828,,,,,,,,,,,,,, +2006,10,16,0,30,0.5339571,,,,,,,,,,,,,, +2006,10,16,1,30,0.67696667,,,,,,,,,,,,,, +2006,10,16,2,30,1.7884138,,,,,,,,,,,,,, +2006,10,16,3,30,2.4063823,,,,,,,,,,,,,, +2006,10,16,4,30,2.4288452,,,,,,,,,,,,,, +2006,10,16,5,30,2.1224887,,,,,,,,,,,,,, +2006,10,16,6,30,1.5582078,,,,,,,,,,,,,, +2006,10,16,7,30,0.44917884,,,,,,,,,,,,,, +2006,10,16,8,30,1.0931362,,,,,,,,,,,,,, +2006,10,16,9,30,2.1488304,,,,,,,,,,,,,, +2006,10,16,10,30,2.3392935,,,,,,,,,,,,,, +2006,10,16,11,30,1.9698222,,,,,,,,,,,,,, +2006,10,16,12,30,1.2706665,,,,,,,,,,,,,, +2006,10,16,13,30,0.2996583,,,,,,,,,,,,,, +2006,10,16,14,30,0.74905413,,,,,,,,,,,,,, +2006,10,16,15,30,1.4015983,,,,,,,,,,,,,, +2006,10,16,16,30,1.617348,,,,,,,,,,,,,, +2006,10,16,17,30,1.4789324,,,,,,,,,,,,,, +2006,10,16,18,30,0.9752963,,,,,,,,,,,,,, +2006,10,16,19,30,0.11452715,,,,,,,,,,,,,, +2006,10,16,20,30,1.2178131,,,,,,,,,,,,,, +2006,10,16,21,30,2.0676408,,,,,,,,,,,,,, +2006,10,16,22,30,2.2014968,,,,,,,,,,,,,, +2006,10,16,23,30,1.8393517,,,,,,,,,,,,,, +2006,10,17,0,30,1.1406121,,,,,,,,,,,,,, +2006,10,17,1,30,0.09004797,,,,,,,,,,,,,, +2006,10,17,2,30,1.2468235,,,,,,,,,,,,,, +2006,10,17,3,30,2.3181055,,,,,,,,,,,,,, +2006,10,17,4,30,2.759529,,,,,,,,,,,,,, +2006,10,17,5,30,2.6121488,,,,,,,,,,,,,, +2006,10,17,6,30,2.1840713,,,,,,,,,,,,,, +2006,10,17,7,30,1.4051074,,,,,,,,,,,,,, +2006,10,17,8,30,0.13880464,,,,,,,,,,,,,, +2006,10,17,9,30,1.6748922,,,,,,,,,,,,,, +2006,10,17,10,30,2.5929897,,,,,,,,,,,,,, +2006,10,17,11,30,2.5877268,,,,,,,,,,,,,, +2006,10,17,12,30,2.089994,,,,,,,,,,,,,, +2006,10,17,13,30,1.2763174,,,,,,,,,,,,,, +2006,10,17,14,30,0.20814943,,,,,,,,,,,,,, +2006,10,17,15,30,0.85931414,,,,,,,,,,,,,, +2006,10,17,16,30,1.4672886,,,,,,,,,,,,,, +2006,10,17,17,30,1.6208782,,,,,,,,,,,,,, +2006,10,17,18,30,1.4081247,,,,,,,,,,,,,, +2006,10,17,19,30,0.79876375,,,,,,,,,,,,,, +2006,10,17,20,30,0.27650398,,,,,,,,,,,,,, +2006,10,17,21,30,1.455576,,,,,,,,,,,,,, +2006,10,17,22,30,2.1267552,,,,,,,,,,,,,, +2006,10,17,23,30,2.0696807,,,,,,,,,,,,,, +2006,10,18,0,30,1.5750148,,,,,,,,,,,,,, +2006,10,18,1,30,0.7529322,,,,,,,,,,,,,, +2006,10,18,2,30,0.45839557,,,,,,,,,,,,,, +2006,10,18,3,30,1.7820385,,,,,,,,,,,,,, +2006,10,18,4,30,2.7273068,,,,,,,,,,,,,, +2006,10,18,5,30,2.9591134,,,,,,,,,,,,,, +2006,10,18,6,30,2.6586404,,,,,,,,,,,,,, +2006,10,18,7,30,2.1003795,,,,,,,,,,,,,, +2006,10,18,8,30,1.0890443,,,,,,,,,,,,,, +2006,10,18,9,30,0.5880828,,,,,,,,,,,,,, +2006,10,18,10,30,2.188116,,,,,,,,,,,,,, +2006,10,18,11,30,2.873106,,,,,,,,,,,,,, +2006,10,18,12,30,2.6837394,,,,,,,,,,,,,, +2006,10,18,13,30,2.0969818,,,,,,,,,,,,,, +2006,10,18,14,30,1.1983917,,,,,,,,,,,,,, +2006,10,18,15,30,0.09821894,,,,,,,,,,,,,, +2006,10,18,16,30,0.9578129,,,,,,,,,,,,,, +2006,10,18,17,30,1.4938805,,,,,,,,,,,,,, +2006,10,18,18,30,1.5717672,,,,,,,,,,,,,, +2006,10,18,19,30,1.271352,,,,,,,,,,,,,, +2006,10,18,20,30,0.5714655,,,,,,,,,,,,,, +2006,10,18,21,30,0.5209809,,,,,,,,,,,,,, +2006,10,18,22,30,1.5838244,,,,,,,,,,,,,, +2006,10,18,23,30,2.0503392,,,,,,,,,,,,,, +2006,10,19,0,30,1.8461332,,,,,,,,,,,,,, +2006,10,19,1,30,1.2643524,,,,,,,,,,,,,, +2006,10,19,2,30,0.35070354,,,,,,,,,,,,,, +2006,10,19,3,30,0.930209,,,,,,,,,,,,,, +2006,10,19,4,30,2.2049649,,,,,,,,,,,,,, +2006,10,19,5,30,2.9627516,,,,,,,,,,,,,, +2006,10,19,6,30,2.9952419,,,,,,,,,,,,,, +2006,10,19,7,30,2.575147,,,,,,,,,,,,,, +2006,10,19,8,30,1.8896065,,,,,,,,,,,,,, +2006,10,19,9,30,0.68184924,,,,,,,,,,,,,, +2006,10,19,10,30,1.090342,,,,,,,,,,,,,, +2006,10,19,11,30,2.5274985,,,,,,,,,,,,,, +2006,10,19,12,30,2.9609675,,,,,,,,,,,,,, +2006,10,19,13,30,2.653471,,,,,,,,,,,,,, +2006,10,19,14,30,2.0280077,,,,,,,,,,,,,, +2006,10,19,15,30,1.0779929,,,,,,,,,,,,,, +2006,10,19,16,30,0.10799893,,,,,,,,,,,,,, +2006,10,19,17,30,1.0070608,,,,,,,,,,,,,, +2006,10,19,18,30,1.4577396,,,,,,,,,,,,,, +2006,10,19,19,30,1.4592292,,,,,,,,,,,,,, +2006,10,19,20,30,1.0861957,,,,,,,,,,,,,, +2006,10,19,21,30,0.3527918,,,,,,,,,,,,,, +2006,10,19,22,30,0.67842585,,,,,,,,,,,,,, +2006,10,19,23,30,1.5728977,,,,,,,,,,,,,, +2006,10,20,0,30,1.869775,,,,,,,,,,,,,, +2006,10,20,1,30,1.583953,,,,,,,,,,,,,, +2006,10,20,2,30,0.9520817,,,,,,,,,,,,,, +2006,10,20,3,30,0.06168419,,,,,,,,,,,,,, +2006,10,20,4,30,1.3048046,,,,,,,,,,,,,, +2006,10,20,5,30,2.4554017,,,,,,,,,,,,,, +2006,10,20,6,30,3.0079012,,,,,,,,,,,,,, +2006,10,20,7,30,2.885958,,,,,,,,,,,,,, +2006,10,20,8,30,2.3878188,,,,,,,,,,,,,, +2006,10,20,9,30,1.6022074,,,,,,,,,,,,,, +2006,10,20,10,30,0.29825473,,,,,,,,,,,,,, +2006,10,20,11,30,1.4527082,,,,,,,,,,,,,, +2006,10,20,12,30,2.6532214,,,,,,,,,,,,,, +2006,10,20,13,30,2.890484,,,,,,,,,,,,,, +2006,10,20,14,30,2.5460231,,,,,,,,,,,,,, +2006,10,20,15,30,1.9176203,,,,,,,,,,,,,, +2006,10,20,16,30,0.9508952,,,,,,,,,,,,,, +2006,10,20,17,30,0.17463876,,,,,,,,,,,,,, +2006,10,20,18,30,0.985199,,,,,,,,,,,,,, +2006,10,20,19,30,1.3597643,,,,,,,,,,,,,, +2006,10,20,20,30,1.3074381,,,,,,,,,,,,,, +2006,10,20,21,30,0.9056031,,,,,,,,,,,,,, +2006,10,20,22,30,0.21119472,,,,,,,,,,,,,, +2006,10,20,23,30,0.7056786,,,,,,,,,,,,,, +2006,10,21,0,30,1.4443702,,,,,,,,,,,,,, +2006,10,21,1,30,1.6414112,,,,,,,,,,,,,, +2006,10,21,2,30,1.3321617,,,,,,,,,,,,,, +2006,10,21,3,30,0.68020433,,,,,,,,,,,,,, +2006,10,21,4,30,0.32387346,,,,,,,,,,,,,, +2006,10,21,5,30,1.5245054,,,,,,,,,,,,,, +2006,10,21,6,30,2.5083911,,,,,,,,,,,,,, +2006,10,21,7,30,2.8811007,,,,,,,,,,,,,, +2006,10,21,8,30,2.6680036,,,,,,,,,,,,,, +2006,10,21,9,30,2.141007,,,,,,,,,,,,,, +2006,10,21,10,30,1.3098412,,,,,,,,,,,,,, +2006,10,21,11,30,0.1557242,,,,,,,,,,,,,, +2006,10,21,12,30,1.6261593,,,,,,,,,,,,,, +2006,10,21,13,30,2.5975058,,,,,,,,,,,,,, +2006,10,21,14,30,2.7254434,,,,,,,,,,,,,, +2006,10,21,15,30,2.4024382,,,,,,,,,,,,,, +2006,10,21,16,30,1.7909721,,,,,,,,,,,,,, +2006,10,21,17,30,0.8493255,,,,,,,,,,,,,, +2006,10,21,18,30,0.17837563,,,,,,,,,,,,,, +2006,10,21,19,30,0.9014201,,,,,,,,,,,,,, +2006,10,21,20,30,1.2358776,,,,,,,,,,,,,, +2006,10,21,21,30,1.168321,,,,,,,,,,,,,, +2006,10,21,22,30,0.78878605,,,,,,,,,,,,,, +2006,10,21,23,30,0.1816258,,,,,,,,,,,,,, +2006,10,22,0,30,0.6099258,,,,,,,,,,,,,, +2006,10,22,1,30,1.2483327,,,,,,,,,,,,,, +2006,10,22,2,30,1.4178941,,,,,,,,,,,,,, +2006,10,22,3,30,1.1274987,,,,,,,,,,,,,, +2006,10,22,4,30,0.4881164,,,,,,,,,,,,,, +2006,10,22,5,30,0.4783383,,,,,,,,,,,,,, +2006,10,22,6,30,1.5644381,,,,,,,,,,,,,, +2006,10,22,7,30,2.3784652,,,,,,,,,,,,,, +2006,10,22,8,30,2.6271625,,,,,,,,,,,,,, +2006,10,22,9,30,2.392557,,,,,,,,,,,,,, +2006,10,22,10,30,1.8912073,,,,,,,,,,,,,, +2006,10,22,11,30,1.0755494,,,,,,,,,,,,,, +2006,10,22,12,30,0.27425933,,,,,,,,,,,,,, +2006,10,22,13,30,1.635938,,,,,,,,,,,,,, +2006,10,22,14,30,2.431546,,,,,,,,,,,,,, +2006,10,22,15,30,2.5235085,,,,,,,,,,,,,, +2006,10,22,16,30,2.250175,,,,,,,,,,,,,, +2006,10,22,17,30,1.6746162,,,,,,,,,,,,,, +2006,10,22,18,30,0.7996653,,,,,,,,,,,,,, +2006,10,22,19,30,0.12318196,,,,,,,,,,,,,, +2006,10,22,20,30,0.80201674,,,,,,,,,,,,,, +2006,10,22,21,30,1.1422865,,,,,,,,,,,,,, +2006,10,22,22,30,1.0921013,,,,,,,,,,,,,, +2006,10,22,23,30,0.77134895,,,,,,,,,,,,,, +2006,10,23,0,30,0.2646229,,,,,,,,,,,,,, +2006,10,23,1,30,0.42916328,,,,,,,,,,,,,, +2006,10,23,2,30,1.0379952,,,,,,,,,,,,,, +2006,10,23,3,30,1.2372916,,,,,,,,,,,,,, +2006,10,23,4,30,0.995347,,,,,,,,,,,,,, +2006,10,23,5,30,0.40168232,,,,,,,,,,,,,, +2006,10,23,6,30,0.4869958,,,,,,,,,,,,,, +2006,10,23,7,30,1.4377645,,,,,,,,,,,,,, +2006,10,23,8,30,2.1129806,,,,,,,,,,,,,, +2006,10,23,9,30,2.3094602,,,,,,,,,,,,,, +2006,10,23,10,30,2.1182854,,,,,,,,,,,,,, +2006,10,23,11,30,1.6857601,,,,,,,,,,,,,, +2006,10,23,12,30,0.92204267,,,,,,,,,,,,,, +2006,10,23,13,30,0.33327967,,,,,,,,,,,,,, +2006,10,23,14,30,1.5475321,,,,,,,,,,,,,, +2006,10,23,15,30,2.2243319,,,,,,,,,,,,,, +2006,10,23,16,30,2.3257082,,,,,,,,,,,,,, +2006,10,23,17,30,2.1160462,,,,,,,,,,,,,, +2006,10,23,18,30,1.5968603,,,,,,,,,,,,,, +2006,10,23,19,30,0.80537844,,,,,,,,,,,,,, +2006,10,23,20,30,0.06534015,,,,,,,,,,,,,, +2006,10,23,21,30,0.7509378,,,,,,,,,,,,,, +2006,10,23,22,30,1.1244013,,,,,,,,,,,,,, +2006,10,23,23,30,1.1039727,,,,,,,,,,,,,, +2006,10,24,0,30,0.85890615,,,,,,,,,,,,,, +2006,10,24,1,30,0.44372845,,,,,,,,,,,,,, +2006,10,24,2,30,0.21463498,,,,,,,,,,,,,, +2006,10,24,3,30,0.85992754,,,,,,,,,,,,,, +2006,10,24,4,30,1.125293,,,,,,,,,,,,,, +2006,10,24,5,30,0.94960517,,,,,,,,,,,,,, +2006,10,24,6,30,0.4238842,,,,,,,,,,,,,, +2006,10,24,7,30,0.3624943,,,,,,,,,,,,,, +2006,10,24,8,30,1.1890254,,,,,,,,,,,,,, +2006,10,24,9,30,1.781996,,,,,,,,,,,,,, +2006,10,24,10,30,1.9979637,,,,,,,,,,,,,, +2006,10,24,11,30,1.8921086,,,,,,,,,,,,,, +2006,10,24,12,30,1.5381138,,,,,,,,,,,,,, +2006,10,24,13,30,0.82739735,,,,,,,,,,,,,, +2006,10,24,14,30,0.3389125,,,,,,,,,,,,,, +2006,10,24,15,30,1.4241111,,,,,,,,,,,,,, +2006,10,24,16,30,2.026364,,,,,,,,,,,,,, +2006,10,24,17,30,2.1659179,,,,,,,,,,,,,, +2006,10,24,18,30,2.0267863,,,,,,,,,,,,,, +2006,10,24,19,30,1.5654871,,,,,,,,,,,,,, +2006,10,24,20,30,0.8281776,,,,,,,,,,,,,, +2006,10,24,21,30,0.07051693,,,,,,,,,,,,,, +2006,10,24,22,30,0.79659814,,,,,,,,,,,,,, +2006,10,24,23,30,1.1980029,,,,,,,,,,,,,, +2006,10,25,0,30,1.203875,,,,,,,,,,,,,, +2006,10,25,1,30,1.0361335,,,,,,,,,,,,,, +2006,10,25,2,30,0.6764764,,,,,,,,,,,,,, +2006,10,25,3,30,0.10786545,,,,,,,,,,,,,, +2006,10,25,4,30,0.7545854,,,,,,,,,,,,,, +2006,10,25,5,30,1.0991896,,,,,,,,,,,,,, +2006,10,25,6,30,0.99443495,,,,,,,,,,,,,, +2006,10,25,7,30,0.54677886,,,,,,,,,,,,,, +2006,10,25,8,30,0.14952348,,,,,,,,,,,,,, +2006,10,25,9,30,0.8844444,,,,,,,,,,,,,, +2006,10,25,10,30,1.463011,,,,,,,,,,,,,, +2006,10,25,11,30,1.7473156,,,,,,,,,,,,,, +2006,10,25,12,30,1.7274278,,,,,,,,,,,,,, +2006,10,25,13,30,1.4264998,,,,,,,,,,,,,, +2006,10,25,14,30,0.75281036,,,,,,,,,,,,,, +2006,10,25,15,30,0.3291456,,,,,,,,,,,,,, +2006,10,25,16,30,1.3098946,,,,,,,,,,,,,, +2006,10,25,17,30,1.8760786,,,,,,,,,,,,,, +2006,10,25,18,30,2.0704181,,,,,,,,,,,,,, +2006,10,25,19,30,1.9861253,,,,,,,,,,,,,, +2006,10,25,20,30,1.5458436,,,,,,,,,,,,,, +2006,10,25,21,30,0.79750484,,,,,,,,,,,,,, +2006,10,25,22,30,0.14482224,,,,,,,,,,,,,, +2006,10,25,23,30,0.95416033,,,,,,,,,,,,,, +2006,10,26,0,30,1.3532864,,,,,,,,,,,,,, +2006,10,26,1,30,1.3771424,,,,,,,,,,,,,, +2006,10,26,2,30,1.2716874,,,,,,,,,,,,,, +2006,10,26,3,30,0.9048885,,,,,,,,,,,,,, +2006,10,26,4,30,0.17728207,,,,,,,,,,,,,, +2006,10,26,5,30,0.75460064,,,,,,,,,,,,,, +2006,10,26,6,30,1.169985,,,,,,,,,,,,,, +2006,10,26,7,30,1.1281507,,,,,,,,,,,,,, +2006,10,26,8,30,0.7521121,,,,,,,,,,,,,, +2006,10,26,9,30,0.16650885,,,,,,,,,,,,,, +2006,10,26,10,30,0.5988584,,,,,,,,,,,,,, +2006,10,26,11,30,1.2174191,,,,,,,,,,,,,, +2006,10,26,12,30,1.5758384,,,,,,,,,,,,,, +2006,10,26,13,30,1.6045647,,,,,,,,,,,,,, +2006,10,26,14,30,1.3215505,,,,,,,,,,,,,, +2006,10,26,15,30,0.6745168,,,,,,,,,,,,,, +2006,10,26,16,30,0.32929558,,,,,,,,,,,,,, +2006,10,26,17,30,1.2383969,,,,,,,,,,,,,, +2006,10,26,18,30,1.8001044,,,,,,,,,,,,,, +2006,10,26,19,30,2.0374582,,,,,,,,,,,,,, +2006,10,26,20,30,1.9557072,,,,,,,,,,,,,, +2006,10,26,21,30,1.4715152,,,,,,,,,,,,,, +2006,10,26,22,30,0.64915717,,,,,,,,,,,,,, +2006,10,26,23,30,0.37070298,,,,,,,,,,,,,, +2006,10,27,0,30,1.2083172,,,,,,,,,,,,,, +2006,10,27,1,30,1.5671854,,,,,,,,,,,,,, +2006,10,27,2,30,1.5988655,,,,,,,,,,,,,, +2006,10,27,3,30,1.5162966,,,,,,,,,,,,,, +2006,10,27,4,30,1.0596836,,,,,,,,,,,,,, +2006,10,27,5,30,0.19973798,,,,,,,,,,,,,, +2006,10,27,6,30,0.879881,,,,,,,,,,,,,, +2006,10,27,7,30,1.3407762,,,,,,,,,,,,,, +2006,10,27,8,30,1.338889,,,,,,,,,,,,,, +2006,10,27,9,30,1.000876,,,,,,,,,,,,,, +2006,10,27,10,30,0.40930277,,,,,,,,,,,,,, +2006,10,27,11,30,0.39363307,,,,,,,,,,,,,, +2006,10,27,12,30,1.0703604,,,,,,,,,,,,,, +2006,10,27,13,30,1.4675714,,,,,,,,,,,,,, +2006,10,27,14,30,1.4984821,,,,,,,,,,,,,, +2006,10,27,15,30,1.213513,,,,,,,,,,,,,, +2006,10,27,16,30,0.5873145,,,,,,,,,,,,,, +2006,10,27,17,30,0.36238402,,,,,,,,,,,,,, +2006,10,27,18,30,1.2359294,,,,,,,,,,,,,, +2006,10,27,19,30,1.7962183,,,,,,,,,,,,,, +2006,10,27,20,30,2.0240726,,,,,,,,,,,,,, +2006,10,27,21,30,1.8705359,,,,,,,,,,,,,, +2006,10,27,22,30,1.2835225,,,,,,,,,,,,,, +2006,10,27,23,30,0.35754305,,,,,,,,,,,,,, +2006,10,28,0,30,0.7250103,,,,,,,,,,,,,, +2006,10,28,1,30,1.5239203,,,,,,,,,,,,,, +2006,10,28,2,30,1.8094339,,,,,,,,,,,,,, +2006,10,28,3,30,1.8304027,,,,,,,,,,,,,, +2006,10,28,4,30,1.7039217,,,,,,,,,,,,,, +2006,10,28,5,30,1.070795,,,,,,,,,,,,,, +2006,10,28,6,30,0.20403261,,,,,,,,,,,,,, +2006,10,28,7,30,1.13409,,,,,,,,,,,,,, +2006,10,28,8,30,1.5972234,,,,,,,,,,,,,, +2006,10,28,9,30,1.5926563,,,,,,,,,,,,,, +2006,10,28,10,30,1.2331779,,,,,,,,,,,,,, +2006,10,28,11,30,0.57524884,,,,,,,,,,,,,, +2006,10,28,12,30,0.29606825,,,,,,,,,,,,,, +2006,10,28,13,30,1.0127987,,,,,,,,,,,,,, +2006,10,28,14,30,1.3991535,,,,,,,,,,,,,, +2006,10,28,15,30,1.4038467,,,,,,,,,,,,,, +2006,10,28,16,30,1.108169,,,,,,,,,,,,,, +2006,10,28,17,30,0.48126417,,,,,,,,,,,,,, +2006,10,28,18,30,0.4550426,,,,,,,,,,,,,, +2006,10,28,19,30,1.3061737,,,,,,,,,,,,,, +2006,10,28,20,30,1.8235986,,,,,,,,,,,,,, +2006,10,28,21,30,1.9663112,,,,,,,,,,,,,, +2006,10,28,22,30,1.6795143,,,,,,,,,,,,,, +2006,10,28,23,30,0.96111786,,,,,,,,,,,,,, +2006,10,29,0,30,0.08624074,,,,,,,,,,,,,, +2006,10,29,1,30,1.1591508,,,,,,,,,,,,,, +2006,10,29,2,30,1.854862,,,,,,,,,,,,,, +2006,10,29,3,30,2.0417845,,,,,,,,,,,,,, +2006,10,29,4,30,2.0187352,,,,,,,,,,,,,, +2006,10,29,5,30,1.7626371,,,,,,,,,,,,,, +2006,10,29,6,30,0.8859643,,,,,,,,,,,,,, +2006,10,29,7,30,0.49616426,,,,,,,,,,,,,, +2006,10,29,8,30,1.4925345,,,,,,,,,,,,,, +2006,10,29,9,30,1.8951473,,,,,,,,,,,,,, +2006,10,29,10,30,1.8290546,,,,,,,,,,,,,, +2006,10,29,11,30,1.3816079,,,,,,,,,,,,,, +2006,10,29,12,30,0.6153268,,,,,,,,,,,,,, +2006,10,29,13,30,0.3065073,,,,,,,,,,,,,, +2006,10,29,14,30,1.0236956,,,,,,,,,,,,,, +2006,10,29,15,30,1.3626562,,,,,,,,,,,,,, +2006,10,29,16,30,1.3277447,,,,,,,,,,,,,, +2006,10,29,17,30,0.99861366,,,,,,,,,,,,,, +2006,10,29,18,30,0.33069474,,,,,,,,,,,,,, +2006,10,29,19,30,0.6218412,,,,,,,,,,,,,, +2006,10,29,20,30,1.4173412,,,,,,,,,,,,,, +2006,10,29,21,30,1.8230063,,,,,,,,,,,,,, +2006,10,29,22,30,1.8190941,,,,,,,,,,,,,, +2006,10,29,23,30,1.3723985,,,,,,,,,,,,,, +2006,10,30,0,30,0.522164,,,,,,,,,,,,,, +2006,10,30,1,30,0.58681285,,,,,,,,,,,,,, +2006,10,30,2,30,1.6116356,,,,,,,,,,,,,, +2006,10,30,3,30,2.1496668,,,,,,,,,,,,,, +2006,10,30,4,30,2.2201183,,,,,,,,,,,,,, +2006,10,30,5,30,2.1049304,,,,,,,,,,,,,, +2006,10,30,6,30,1.6325144,,,,,,,,,,,,,, +2006,10,30,7,30,0.49898,,,,,,,,,,,,,, +2006,10,30,8,30,0.97462845,,,,,,,,,,,,,, +2006,10,30,9,30,1.8898809,,,,,,,,,,,,,, +2006,10,30,10,30,2.162109,,,,,,,,,,,,,, +2006,10,30,11,30,1.9773505,,,,,,,,,,,,,, +2006,10,30,12,30,1.3951048,,,,,,,,,,,,,, +2006,10,30,13,30,0.5190973,,,,,,,,,,,,,, +2006,10,30,14,30,0.41555905,,,,,,,,,,,,,, +2006,10,30,15,30,1.0881462,,,,,,,,,,,,,, +2006,10,30,16,30,1.3578961,,,,,,,,,,,,,, +2006,10,30,17,30,1.2601937,,,,,,,,,,,,,, +2006,10,30,18,30,0.8519368,,,,,,,,,,,,,, +2006,10,30,19,30,0.14528227,,,,,,,,,,,,,, +2006,10,30,20,30,0.84297925,,,,,,,,,,,,,, +2006,10,30,21,30,1.515833,,,,,,,,,,,,,, +2006,10,30,22,30,1.7528498,,,,,,,,,,,,,, +2006,10,30,23,30,1.5779915,,,,,,,,,,,,,, +2006,10,31,0,30,0.971986,,,,,,,,,,,,,, +2006,10,31,1,30,0.042045116,,,,,,,,,,,,,, +2006,10,31,2,30,1.1255845,,,,,,,,,,,,,, +2006,10,31,3,30,2.0160136,,,,,,,,,,,,,, +2006,10,31,4,30,2.3608708,,,,,,,,,,,,,, +2006,10,31,5,30,2.3028328,,,,,,,,,,,,,, +2006,10,31,6,30,2.0375047,,,,,,,,,,,,,, +2006,10,31,7,30,1.2861252,,,,,,,,,,,,,, +2006,10,31,8,30,0.19737957,,,,,,,,,,,,,, +2006,10,31,9,30,1.5154588,,,,,,,,,,,,,, +2006,10,31,10,30,2.2326264,,,,,,,,,,,,,, +2006,10,31,11,30,2.3231528,,,,,,,,,,,,,, +2006,10,31,12,30,1.986099,,,,,,,,,,,,,, +2006,10,31,13,30,1.2569739,,,,,,,,,,,,,, +2006,10,31,14,30,0.30608717,,,,,,,,,,,,,, +2006,10,31,15,30,0.6006675,,,,,,,,,,,,,, +2012,10,31,16,30,1.1913122,,,,,,,,,,,,,, +2012,10,31,17,30,1.3653489,,,,,,,,,,,,,, +2012,10,31,18,30,1.1620271,,,,,,,,,,,,,, +2012,10,31,19,30,0.63136,,,,,,,,,,,,,, +2012,10,31,20,30,0.23658681,,,,,,,,,,,,,, +2012,10,31,21,30,1.0684925,,,,,,,,,,,,,, +2012,10,31,22,30,1.5573893,,,,,,,,,,,,,, +2012,10,31,23,30,1.6072693,,,,,,,,,,,,,, +2012,11,1,0,30,1.2653779,,,,,,,,,,,,,, +2012,11,1,1,30,0.50895107,,,,,,,,,,,,,, +2012,11,1,2,30,0.55415905,,,,,,,,,,,,,, +2012,11,1,3,30,1.6262823,,,,,,,,,,,,,, +2012,11,1,4,30,2.3154218,,,,,,,,,,,,,, +2012,11,1,5,30,2.4568055,,,,,,,,,,,,,, +2012,11,1,6,30,2.258767,,,,,,,,,,,,,, +2012,11,1,7,30,1.7870541,,,,,,,,,,,,,, +2012,11,1,8,30,0.7497939,,,,,,,,,,,,,, +2012,11,1,9,30,0.79555684,,,,,,,,,,,,,, +2012,11,1,10,30,1.9922829,,,,,,,,,,,,,, +2012,11,1,11,30,2.4381976,,,,,,,,,,,,,, +2012,11,1,12,30,2.3361466,,,,,,,,,,,,,, +2012,11,1,13,30,1.8434668,,,,,,,,,,,,,, +2012,11,1,14,30,0.98588973,,,,,,,,,,,,,, +2012,11,1,15,30,0.055298895,,,,,,,,,,,,,, +2012,11,1,16,30,0.8249014,,,,,,,,,,,,,, +2012,11,1,17,30,1.2980292,,,,,,,,,,,,,, +2012,11,1,18,30,1.3382058,,,,,,,,,,,,,, +2012,11,1,19,30,0.9889507,,,,,,,,,,,,,, +2012,11,1,20,30,0.33428475,,,,,,,,,,,,,, +2012,11,1,21,30,0.5403515,,,,,,,,,,,,,, +2012,11,1,22,30,1.2452348,,,,,,,,,,,,,, +2012,11,1,23,30,1.5261289,,,,,,,,,,,,,, +2012,11,2,0,30,1.4018965,,,,,,,,,,,,,, +2012,11,2,1,30,0.90239066,,,,,,,,,,,,,, +2012,11,2,2,30,0.02499694,,,,,,,,,,,,,, +2012,11,2,3,30,1.0911534,,,,,,,,,,,,,, +2012,11,2,4,30,2.028483,,,,,,,,,,,,,, +2012,11,2,5,30,2.4774356,,,,,,,,,,,,,, +2012,11,2,6,30,2.4256923,,,,,,,,,,,,,, +2012,11,2,7,30,2.072437,,,,,,,,,,,,,, +2012,11,2,8,30,1.3627044,,,,,,,,,,,,,, +2012,11,2,9,30,0.17843993,,,,,,,,,,,,,, +2012,11,2,10,30,1.404199,,,,,,,,,,,,,, +2012,11,2,11,30,2.3074582,,,,,,,,,,,,,, +2012,11,2,12,30,2.4751456,,,,,,,,,,,,,, +2012,11,2,13,30,2.20768,,,,,,,,,,,,,, +2012,11,2,14,30,1.5749505,,,,,,,,,,,,,, +2012,11,2,15,30,0.62835324,,,,,,,,,,,,,, +2012,11,2,16,30,0.34081352,,,,,,,,,,,,,, +2012,11,2,17,30,1.0328457,,,,,,,,,,,,,, +2012,11,2,18,30,1.3532519,,,,,,,,,,,,,, +2012,11,2,19,30,1.2298024,,,,,,,,,,,,,, +2012,11,2,20,30,0.72994655,,,,,,,,,,,,,, +2012,11,2,21,30,0.13314128,,,,,,,,,,,,,, +2012,11,2,22,30,0.8202202,,,,,,,,,,,,,, +2012,11,2,23,30,1.3404949,,,,,,,,,,,,,, +2012,11,3,0,30,1.4268734,,,,,,,,,,,,,, +2012,11,3,1,30,1.1491128,,,,,,,,,,,,,, +2012,11,3,2,30,0.5000425,,,,,,,,,,,,,, +2012,11,3,3,30,0.50035906,,,,,,,,,,,,,, +2012,11,3,4,30,1.5599209,,,,,,,,,,,,,, +2012,11,3,5,30,2.2926288,,,,,,,,,,,,,, +2012,11,3,6,30,2.496693,,,,,,,,,,,,,, +2012,11,3,7,30,2.2714562,,,,,,,,,,,,,, +2012,11,3,8,30,1.7524573,,,,,,,,,,,,,, +2012,11,3,9,30,0.82417756,,,,,,,,,,,,,, +2012,11,3,10,30,0.59076726,,,,,,,,,,,,,, +2012,11,3,11,30,1.8616478,,,,,,,,,,,,,, +2012,11,3,12,30,2.4289076,,,,,,,,,,,,,, +2012,11,3,13,30,2.371382,,,,,,,,,,,,,, +2012,11,3,14,30,1.9784117,,,,,,,,,,,,,, +2012,11,3,15,30,1.229185,,,,,,,,,,,,,, +2012,11,3,16,30,0.25810272,,,,,,,,,,,,,, +2012,11,3,17,30,0.62567973,,,,,,,,,,,,,, +2012,11,3,18,30,1.1633617,,,,,,,,,,,,,, +2012,11,3,19,30,1.3144,,,,,,,,,,,,,, +2012,11,3,20,30,1.0317097,,,,,,,,,,,,,, +2012,11,3,21,30,0.42487845,,,,,,,,,,,,,, +2012,11,3,22,30,0.35363322,,,,,,,,,,,,,, +2012,11,3,23,30,1.0135379,,,,,,,,,,,,,, +2012,11,4,0,30,1.3454508,,,,,,,,,,,,,, +2012,11,4,1,30,1.2682545,,,,,,,,,,,,,, +2012,11,4,2,30,0.85391396,,,,,,,,,,,,,, +2012,11,4,3,30,0.08434456,,,,,,,,,,,,,, +2012,11,4,4,30,0.97274935,,,,,,,,,,,,,, +2012,11,4,5,30,1.9123724,,,,,,,,,,,,,, +2012,11,4,6,30,2.4030147,,,,,,,,,,,,,, +2012,11,4,7,30,2.3860002,,,,,,,,,,,,,, +2012,11,4,8,30,2.0127814,,,,,,,,,,,,,, +2012,11,4,9,30,1.3415904,,,,,,,,,,,,,, +2012,11,4,10,30,0.28703013,,,,,,,,,,,,,, +2012,11,4,11,30,1.1185052,,,,,,,,,,,,,, +2012,11,4,12,30,2.1204007,,,,,,,,,,,,,, +2012,11,4,13,30,2.3923502,,,,,,,,,,,,,, +2012,11,4,14,30,2.1850164,,,,,,,,,,,,,, +2012,11,4,15,30,1.6976894,,,,,,,,,,,,,, +2012,11,4,16,30,0.86767596,,,,,,,,,,,,,, +2012,11,4,17,30,0.12610705,,,,,,,,,,,,,, +2012,11,4,18,30,0.81007063,,,,,,,,,,,,,, +2012,11,4,19,30,1.185642,,,,,,,,,,,,,, +2012,11,4,20,30,1.1860602,,,,,,,,,,,,,, +2012,11,4,21,30,0.78717256,,,,,,,,,,,,,, +2012,11,4,22,30,0.16122921,,,,,,,,,,,,,, +2012,11,4,23,30,0.5666464,,,,,,,,,,,,,, +2012,11,5,0,30,1.0962322,,,,,,,,,,,,,, +2012,11,5,1,30,1.2683598,,,,,,,,,,,,,, +2012,11,5,2,30,1.0618863,,,,,,,,,,,,,, +2012,11,5,3,30,0.533709,,,,,,,,,,,,,, +2012,11,5,4,30,0.34365398,,,,,,,,,,,,,, +2012,11,5,5,30,1.353815,,,,,,,,,,,,,, +2012,11,5,6,30,2.1117225,,,,,,,,,,,,,, +2012,11,5,7,30,2.36224,,,,,,,,,,,,,, +2012,11,5,8,30,2.1707115,,,,,,,,,,,,,, +2012,11,5,9,30,1.6893501,,,,,,,,,,,,,, +2012,11,5,10,30,0.9128684,,,,,,,,,,,,,, +2012,11,5,11,30,0.27200356,,,,,,,,,,,,,, +2012,11,5,12,30,1.4784834,,,,,,,,,,,,,, +2012,11,5,13,30,2.2044954,,,,,,,,,,,,,, +2012,11,5,14,30,2.2636094,,,,,,,,,,,,,, +2012,11,5,15,30,1.9683641,,,,,,,,,,,,,, +2012,11,5,16,30,1.4116957,,,,,,,,,,,,,, +2012,11,5,17,30,0.5549602,,,,,,,,,,,,,, +2012,11,5,18,30,0.32373405,,,,,,,,,,,,,, +2012,11,5,19,30,0.8768657,,,,,,,,,,,,,, +2012,11,5,20,30,1.1262518,,,,,,,,,,,,,, +2012,11,5,21,30,1.0233947,,,,,,,,,,,,,, +2012,11,5,22,30,0.5698778,,,,,,,,,,,,,, +2012,11,5,23,30,0.13896269,,,,,,,,,,,,,, +2012,11,6,0,30,0.66336143,,,,,,,,,,,,,, +2012,11,6,1,30,1.0751735,,,,,,,,,,,,,, +2012,11,6,2,30,1.1348399,,,,,,,,,,,,,, +2012,11,6,3,30,0.83717,,,,,,,,,,,,,, +2012,11,6,4,30,0.23878746,,,,,,,,,,,,,, +2012,11,6,5,30,0.6721662,,,,,,,,,,,,,, +2012,11,6,6,30,1.5860927,,,,,,,,,,,,,, +2012,11,6,7,30,2.1375084,,,,,,,,,,,,,, +2012,11,6,8,30,2.1903636,,,,,,,,,,,,,, +2012,11,6,9,30,1.8929392,,,,,,,,,,,,,, +2012,11,6,10,30,1.3611023,,,,,,,,,,,,,, +2012,11,6,11,30,0.54228437,,,,,,,,,,,,,, +2012,11,6,12,30,0.6135314,,,,,,,,,,,,,, +2012,11,6,13,30,1.6726726,,,,,,,,,,,,,, +2012,11,6,14,30,2.1714294,,,,,,,,,,,,,, +2012,11,6,15,30,2.0977921,,,,,,,,,,,,,, +2012,11,6,16,30,1.7564957,,,,,,,,,,,,,, +2012,11,6,17,30,1.1627796,,,,,,,,,,,,,, +2012,11,6,18,30,0.33600467,,,,,,,,,,,,,, +2012,11,6,19,30,0.4221682,,,,,,,,,,,,,, +2012,11,6,20,30,0.8747778,,,,,,,,,,,,,, +2012,11,6,21,30,1.0577619,,,,,,,,,,,,,, +2012,11,6,22,30,0.9018701,,,,,,,,,,,,,, +2012,11,6,23,30,0.4480607,,,,,,,,,,,,,, +2012,11,7,0,30,0.15609281,,,,,,,,,,,,,, +2012,11,7,1,30,0.63995993,,,,,,,,,,,,,, +2012,11,7,2,30,0.9880384,,,,,,,,,,,,,, +2012,11,7,3,30,0.99300784,,,,,,,,,,,,,, +2012,11,7,4,30,0.64856344,,,,,,,,,,,,,, +2012,11,7,5,30,0.07948758,,,,,,,,,,,,,, +2012,11,7,6,30,0.8533255,,,,,,,,,,,,,, +2012,11,7,7,30,1.6295468,,,,,,,,,,,,,, +2012,11,7,8,30,1.9969494,,,,,,,,,,,,,, +2012,11,7,9,30,1.9322866,,,,,,,,,,,,,, +2012,11,7,10,30,1.6119372,,,,,,,,,,,,,, +2012,11,7,11,30,1.0873615,,,,,,,,,,,,,, +2012,11,7,12,30,0.27716175,,,,,,,,,,,,,, +2012,11,7,13,30,0.8326972,,,,,,,,,,,,,, +2012,11,7,14,30,1.7404989,,,,,,,,,,,,,, +2012,11,7,15,30,2.0732875,,,,,,,,,,,,,, +2012,11,7,16,30,1.9293792,,,,,,,,,,,,,, +2012,11,7,17,30,1.5764275,,,,,,,,,,,,,, +2012,11,7,18,30,0.9807289,,,,,,,,,,,,,, +2012,11,7,19,30,0.20926397,,,,,,,,,,,,,, +2012,11,7,20,30,0.46688086,,,,,,,,,,,,,, +2012,11,7,21,30,0.89163,,,,,,,,,,,,,, +2012,11,7,22,30,1.0567526,,,,,,,,,,,,,, +2012,11,7,23,30,0.8802597,,,,,,,,,,,,,, +2012,11,8,0,30,0.45821238,,,,,,,,,,,,,, +2012,11,8,1,30,0.10753842,,,,,,,,,,,,,, +2012,11,8,2,30,0.5393964,,,,,,,,,,,,,, +2012,11,8,3,30,0.89922154,,,,,,,,,,,,,, +2012,11,8,4,30,0.9075211,,,,,,,,,,,,,, +2012,11,8,5,30,0.5607001,,,,,,,,,,,,,, +2012,11,8,6,30,0.09721378,,,,,,,,,,,,,, +2012,11,8,7,30,0.842334,,,,,,,,,,,,,, +2012,11,8,8,30,1.4843318,,,,,,,,,,,,,, +2012,11,8,9,30,1.7385143,,,,,,,,,,,,,, +2012,11,8,10,30,1.6574442,,,,,,,,,,,,,, +2012,11,8,11,30,1.3858883,,,,,,,,,,,,,, +2012,11,8,12,30,0.8986368,,,,,,,,,,,,,, +2012,11,8,13,30,0.14196596,,,,,,,,,,,,,, +2012,11,8,14,30,0.94434273,,,,,,,,,,,,,, +2012,11,8,15,30,1.7241471,,,,,,,,,,,,,, +2012,11,8,16,30,1.9487798,,,,,,,,,,,,,, +2012,11,8,17,30,1.7864786,,,,,,,,,,,,,, +2012,11,8,18,30,1.4491676,,,,,,,,,,,,,, +2012,11,8,19,30,0.8638654,,,,,,,,,,,,,, +2012,11,8,20,30,0.12526292,,,,,,,,,,,,,, +2012,11,8,21,30,0.54712486,,,,,,,,,,,,,, +2012,11,8,22,30,1.0030174,,,,,,,,,,,,,, +2012,11,8,23,30,1.1664027,,,,,,,,,,,,,, +2012,11,9,0,30,0.9808432,,,,,,,,,,,,,, +2012,11,9,1,30,0.5984687,,,,,,,,,,,,,, +2012,11,9,2,30,0.14046274,,,,,,,,,,,,,, +2012,11,9,3,30,0.4365942,,,,,,,,,,,,,, +2012,11,9,4,30,0.8827373,,,,,,,,,,,,,, +2012,11,9,5,30,0.93817425,,,,,,,,,,,,,, +2012,11,9,6,30,0.6220189,,,,,,,,,,,,,, +2012,11,9,7,30,0.07180479,,,,,,,,,,,,,, +2012,11,9,8,30,0.6461056,,,,,,,,,,,,,, +2012,11,9,9,30,1.206895,,,,,,,,,,,,,, +2012,11,9,10,30,1.4483006,,,,,,,,,,,,,, +2012,11,9,11,30,1.4374366,,,,,,,,,,,,,, +2012,11,9,12,30,1.2448938,,,,,,,,,,,,,, +2012,11,9,13,30,0.7900726,,,,,,,,,,,,,, +2012,11,9,14,30,0.113400206,,,,,,,,,,,,,, +2012,11,9,15,30,0.97757643,,,,,,,,,,,,,, +2012,11,9,16,30,1.662735,,,,,,,,,,,,,, +2012,11,9,17,30,1.8370628,,,,,,,,,,,,,, +2012,11,9,18,30,1.6956863,,,,,,,,,,,,,, +2012,11,9,19,30,1.374328,,,,,,,,,,,,,, +2012,11,9,20,30,0.7711976,,,,,,,,,,,,,, +2012,11,9,21,30,0.047118533,,,,,,,,,,,,,, +2012,11,9,22,30,0.7324663,,,,,,,,,,,,,, +2012,11,9,23,30,1.2376096,,,,,,,,,,,,,, +2012,11,10,0,30,1.3852637,,,,,,,,,,,,,, +2012,11,10,1,30,1.1880311,,,,,,,,,,,,,, +2012,11,10,2,30,0.82837325,,,,,,,,,,,,,, +2012,11,10,3,30,0.31065583,,,,,,,,,,,,,, +2012,11,10,4,30,0.41530052,,,,,,,,,,,,,, +2012,11,10,5,30,0.9961108,,,,,,,,,,,,,, +2012,11,10,6,30,1.1163734,,,,,,,,,,,,,, +2012,11,10,7,30,0.84343684,,,,,,,,,,,,,, +2012,11,10,8,30,0.32529938,,,,,,,,,,,,,, +2012,11,10,9,30,0.33617938,,,,,,,,,,,,,, +2012,11,10,10,30,0.8993559,,,,,,,,,,,,,, +2012,11,10,11,30,1.2177669,,,,,,,,,,,,,, +2012,11,10,12,30,1.313339,,,,,,,,,,,,,, +2012,11,10,13,30,1.1826866,,,,,,,,,,,,,, +2012,11,10,14,30,0.74086833,,,,,,,,,,,,,, +2012,11,10,15,30,0.115548566,,,,,,,,,,,,,, +2012,11,10,16,30,0.9653452,,,,,,,,,,,,,, +2012,11,10,17,30,1.6033528,,,,,,,,,,,,,, +2012,11,10,18,30,1.7782984,,,,,,,,,,,,,, +2012,11,10,19,30,1.6638426,,,,,,,,,,,,,, +2012,11,10,20,30,1.3186129,,,,,,,,,,,,,, +2012,11,10,21,30,0.64288664,,,,,,,,,,,,,, +2012,11,10,22,30,0.23520657,,,,,,,,,,,,,, +2012,11,10,23,30,1.0427586,,,,,,,,,,,,,, +2012,11,11,0,30,1.5746078,,,,,,,,,,,,,, +2012,11,11,1,30,1.6764971,,,,,,,,,,,,,, +2012,11,11,2,30,1.4565766,,,,,,,,,,,,,, +2012,11,11,3,30,1.0772107,,,,,,,,,,,,,, +2012,11,11,4,30,0.41796383,,,,,,,,,,,,,, +2012,11,11,5,30,0.53743327,,,,,,,,,,,,,, +2012,11,11,6,30,1.2609785,,,,,,,,,,,,,, +2012,11,11,7,30,1.4316074,,,,,,,,,,,,,, +2012,11,11,8,30,1.1860602,,,,,,,,,,,,,, +2012,11,11,9,30,0.6816673,,,,,,,,,,,,,, +2012,11,11,10,30,0.08686438,,,,,,,,,,,,,, +2012,11,11,11,30,0.6659213,,,,,,,,,,,,,, +2012,11,11,12,30,1.1015353,,,,,,,,,,,,,, +2012,11,11,13,30,1.2824411,,,,,,,,,,,,,, +2012,11,11,14,30,1.1749591,,,,,,,,,,,,,, +2012,11,11,15,30,0.7332467,,,,,,,,,,,,,, +2012,11,11,16,30,0.118657984,,,,,,,,,,,,,, +2012,11,11,17,30,0.9535471,,,,,,,,,,,,,, +2012,11,11,18,30,1.5959442,,,,,,,,,,,,,, +2012,11,11,19,30,1.7887428,,,,,,,,,,,,,, +2012,11,11,20,30,1.6613948,,,,,,,,,,,,,, +2012,11,11,21,30,1.2305843,,,,,,,,,,,,,, +2012,11,11,22,30,0.4359003,,,,,,,,,,,,,, +2012,11,11,23,30,0.55884194,,,,,,,,,,,,,, +2012,11,12,0,30,1.4512348,,,,,,,,,,,,,, +2012,11,12,1,30,1.9609588,,,,,,,,,,,,,, +2012,11,12,2,30,1.9851065,,,,,,,,,,,,,, +2012,11,12,3,30,1.7256426,,,,,,,,,,,,,, +2012,11,12,4,30,1.2661831,,,,,,,,,,,,,, +2012,11,12,5,30,0.3867682,,,,,,,,,,,,,, +2012,11,12,6,30,0.8269895,,,,,,,,,,,,,, +2012,11,12,7,30,1.6562698,,,,,,,,,,,,,, +2012,11,12,8,30,1.8305649,,,,,,,,,,,,,, +2012,11,12,9,30,1.5684403,,,,,,,,,,,,,, +2012,11,12,10,30,1.016094,,,,,,,,,,,,,, +2012,11,12,11,30,0.25823992,,,,,,,,,,,,,, +2012,11,12,12,30,0.5638549,,,,,,,,,,,,,, +2012,11,12,13,30,1.0999689,,,,,,,,,,,,,, +2012,11,12,14,30,1.315387,,,,,,,,,,,,,, +2012,11,12,15,30,1.2004082,,,,,,,,,,,,,, +2012,11,12,16,30,0.75028074,,,,,,,,,,,,,, +2012,11,12,17,30,0.11999567,,,,,,,,,,,,,, +2012,11,12,18,30,0.9935931,,,,,,,,,,,,,, +2012,11,12,19,30,1.6631969,,,,,,,,,,,,,, +2012,11,12,20,30,1.8399966,,,,,,,,,,,,,, +2012,11,12,21,30,1.6352831,,,,,,,,,,,,,, +2012,11,12,22,30,1.0719874,,,,,,,,,,,,,, +2012,11,12,23,30,0.14905968,,,,,,,,,,,,,, +2012,11,13,0,30,0.97194415,,,,,,,,,,,,,, +2012,11,13,1,30,1.904012,,,,,,,,,,,,,, +2012,11,13,2,30,2.332892,,,,,,,,,,,,,, +2012,11,13,3,30,2.255734,,,,,,,,,,,,,, +2012,11,13,4,30,1.9363607,,,,,,,,,,,,,, +2012,11,13,5,30,1.3301079,,,,,,,,,,,,,, +2012,11,13,6,30,0.21208104,,,,,,,,,,,,,, +2012,11,13,7,30,1.2662547,,,,,,,,,,,,,, +2012,11,13,8,30,2.120273,,,,,,,,,,,,,, +2012,11,13,9,30,2.2297363,,,,,,,,,,,,,, +2012,11,13,10,30,1.8955777,,,,,,,,,,,,,, +2012,11,13,11,30,1.2372134,,,,,,,,,,,,,, +2012,11,13,12,30,0.33109584,,,,,,,,,,,,,, +2012,11,13,13,30,0.5908444,,,,,,,,,,,,,, +2012,11,13,14,30,1.1771008,,,,,,,,,,,,,, +2012,11,13,15,30,1.3813484,,,,,,,,,,,,,, +2012,11,13,16,30,1.2414118,,,,,,,,,,,,,, +2012,11,13,17,30,0.7622865,,,,,,,,,,,,,, +2012,11,13,18,30,0.13599315,,,,,,,,,,,,,, +2012,11,13,19,30,1.1112937,,,,,,,,,,,,,, +2012,11,13,20,30,1.7775857,,,,,,,,,,,,,, +2012,11,13,21,30,1.8736769,,,,,,,,,,,,,, +2012,11,13,22,30,1.5430634,,,,,,,,,,,,,, +2012,11,13,23,30,0.8359186,,,,,,,,,,,,,, +2012,11,14,0,30,0.24142513,,,,,,,,,,,,,, +2012,11,14,1,30,1.4314083,,,,,,,,,,,,,, +2012,11,14,2,30,2.3379388,,,,,,,,,,,,,, +2012,11,14,3,30,2.6336906,,,,,,,,,,,,,, +2012,11,14,4,30,2.4475534,,,,,,,,,,,,,, +2012,11,14,5,30,2.0448675,,,,,,,,,,,,,, +2012,11,14,6,30,1.2297138,,,,,,,,,,,,,, +2012,11,14,7,30,0.2827008,,,,,,,,,,,,,, +2012,11,14,8,30,1.7926506,,,,,,,,,,,,,, +2012,11,14,9,30,2.562692,,,,,,,,,,,,,, +2012,11,14,10,30,2.5425096,,,,,,,,,,,,,, +2012,11,14,11,30,2.0981052,,,,,,,,,,,,,, +2012,11,14,12,30,1.3083446,,,,,,,,,,,,,, +2012,11,14,13,30,0.2721101,,,,,,,,,,,,,, +2012,11,14,14,30,0.70703924,,,,,,,,,,,,,, +2012,11,14,15,30,1.2906142,,,,,,,,,,,,,, +2012,11,14,16,30,1.4551809,,,,,,,,,,,,,, +2012,11,14,17,30,1.2720528,,,,,,,,,,,,,, +2012,11,14,18,30,0.72949564,,,,,,,,,,,,,, +2012,11,14,19,30,0.23179062,,,,,,,,,,,,,, +2012,11,14,20,30,1.2826748,,,,,,,,,,,,,, +2012,11,14,21,30,1.8772911,,,,,,,,,,,,,, +2012,11,14,22,30,1.8413435,,,,,,,,,,,,,, +2012,11,14,23,30,1.3759083,,,,,,,,,,,,,, +2012,11,15,0,30,0.54042244,,,,,,,,,,,,,, +2012,11,15,1,30,0.64830494,,,,,,,,,,,,,, +2012,11,15,2,30,1.884724,,,,,,,,,,,,,, +2012,11,15,3,30,2.6929588,,,,,,,,,,,,,, +2012,11,15,4,30,2.8269508,,,,,,,,,,,,,, +2012,11,15,5,30,2.5401692,,,,,,,,,,,,,, +2012,11,15,6,30,2.0248437,,,,,,,,,,,,,, +2012,11,15,7,30,0.9582819,,,,,,,,,,,,,, +2012,11,15,8,30,0.7836915,,,,,,,,,,,,,, +2012,11,15,9,30,2.3071024,,,,,,,,,,,,,, +2012,11,15,10,30,2.8913434,,,,,,,,,,,,,, +2012,11,15,11,30,2.713444,,,,,,,,,,,,,, +2012,11,15,12,30,2.1578472,,,,,,,,,,,,,, +2012,11,15,13,30,1.2481682,,,,,,,,,,,,,, +2012,11,15,14,30,0.1325249,,,,,,,,,,,,,, +2012,11,15,15,30,0.86334294,,,,,,,,,,,,,, +2012,11,15,16,30,1.4060842,,,,,,,,,,,,,, +2012,11,15,17,30,1.5098085,,,,,,,,,,,,,, +2012,11,15,18,30,1.2592881,,,,,,,,,,,,,, +2012,11,15,19,30,0.62689644,,,,,,,,,,,,,, +2012,11,15,20,30,0.41231117,,,,,,,,,,,,,, +2012,11,15,21,30,1.4474443,,,,,,,,,,,,,, +2012,11,15,22,30,1.9091511,,,,,,,,,,,,,, +2012,11,15,23,30,1.7327254,,,,,,,,,,,,,, +2012,11,16,0,30,1.1539007,,,,,,,,,,,,,, +2012,11,16,1,30,0.21704681,,,,,,,,,,,,,, +2012,11,16,2,30,1.0609916,,,,,,,,,,,,,, +2012,11,16,3,30,2.2732,,,,,,,,,,,,,, +2012,11,16,4,30,2.9243166,,,,,,,,,,,,,, +2012,11,16,5,30,2.9009266,,,,,,,,,,,,,, +2012,11,16,6,30,2.527219,,,,,,,,,,,,,, +2012,11,16,7,30,1.8665416,,,,,,,,,,,,,, +2012,11,16,8,30,0.55267125,,,,,,,,,,,,,, +2012,11,16,9,30,1.3260385,,,,,,,,,,,,,, +2012,11,16,10,30,2.7018106,,,,,,,,,,,,,, +2012,11,16,11,30,3.0483594,,,,,,,,,,,,,, +2012,11,16,12,30,2.738169,,,,,,,,,,,,,, +2012,11,16,13,30,2.0999823,,,,,,,,,,,,,, +2012,11,16,14,30,1.1000378,,,,,,,,,,,,,, +2012,11,16,15,30,0.095552996,,,,,,,,,,,,,, +2012,11,16,16,30,1.0195729,,,,,,,,,,,,,, +2012,11,16,17,30,1.4938706,,,,,,,,,,,,,, +2012,11,16,18,30,1.5172918,,,,,,,,,,,,,, +2012,11,16,19,30,1.1834275,,,,,,,,,,,,,, +2012,11,16,20,30,0.46738863,,,,,,,,,,,,,, +2012,11,16,21,30,0.6031951,,,,,,,,,,,,,, +2012,11,16,22,30,1.5491749,,,,,,,,,,,,,, +2012,11,16,23,30,1.8592966,,,,,,,,,,,,,, +2012,11,17,0,30,1.5713503,,,,,,,,,,,,,, +2012,11,17,1,30,0.90742886,,,,,,,,,,,,,, +2012,11,17,2,30,0.13799207,,,,,,,,,,,,,, +2012,11,17,3,30,1.4270537,,,,,,,,,,,,,, +2012,11,17,4,30,2.5426326,,,,,,,,,,,,,, +2012,11,17,5,30,3.0111613,,,,,,,,,,,,,, +2012,11,17,6,30,2.8602324,,,,,,,,,,,,,, +2012,11,17,7,30,2.4075782,,,,,,,,,,,,,, +2012,11,17,8,30,1.5833623,,,,,,,,,,,,,, +2012,11,17,9,30,0.16226898,,,,,,,,,,,,,, +2012,11,17,10,30,1.7824056,,,,,,,,,,,,,, +2012,11,17,11,30,2.903076,,,,,,,,,,,,,, +2012,11,17,12,30,3.033223,,,,,,,,,,,,,, +2012,11,17,13,30,2.6514163,,,,,,,,,,,,,, +2012,11,17,14,30,1.9613724,,,,,,,,,,,,,, +2012,11,17,15,30,0.9026984,,,,,,,,,,,,,, +2012,11,17,16,30,0.27764815,,,,,,,,,,,,,, +2012,11,17,17,30,1.1442604,,,,,,,,,,,,,, +2012,11,17,18,30,1.5301591,,,,,,,,,,,,,, +2012,11,17,19,30,1.4653203,,,,,,,,,,,,,, +2012,11,17,20,30,1.0574408,,,,,,,,,,,,,, +2012,11,17,21,30,0.29904282,,,,,,,,,,,,,, +2012,11,17,22,30,0.7423755,,,,,,,,,,,,,, +2012,11,17,23,30,1.5652759,,,,,,,,,,,,,, +2012,11,18,0,30,1.7490776,,,,,,,,,,,,,, +2012,11,18,1,30,1.3908354,,,,,,,,,,,,,, +2012,11,18,2,30,0.6660499,,,,,,,,,,,,,, +2012,11,18,3,30,0.42628747,,,,,,,,,,,,,, +2012,11,18,4,30,1.6928513,,,,,,,,,,,,,, +2012,11,18,5,30,2.6573985,,,,,,,,,,,,,, +2012,11,18,6,30,2.9542012,,,,,,,,,,,,,, +2012,11,18,7,30,2.714014,,,,,,,,,,,,,, +2012,11,18,8,30,2.1881447,,,,,,,,,,,,,, +2012,11,18,9,30,1.2212863,,,,,,,,,,,,,, +2012,11,18,10,30,0.42041993,,,,,,,,,,,,,, +2012,11,18,11,30,2.0639555,,,,,,,,,,,,,, +2012,11,18,12,30,2.902753,,,,,,,,,,,,,, +2012,11,18,13,30,2.8919246,,,,,,,,,,,,,, +2012,11,18,14,30,2.4939904,,,,,,,,,,,,,, +2012,11,18,15,30,1.7681013,,,,,,,,,,,,,, +2012,11,18,16,30,0.68697804,,,,,,,,,,,,,, +2012,11,18,17,30,0.43862718,,,,,,,,,,,,,, +2012,11,18,18,30,1.2157257,,,,,,,,,,,,,, +2012,11,18,19,30,1.5100993,,,,,,,,,,,,,, +2012,11,18,20,30,1.3709608,,,,,,,,,,,,,, +2012,11,18,21,30,0.9240473,,,,,,,,,,,,,, +2012,11,18,22,30,0.17976645,,,,,,,,,,,,,, +2012,11,18,23,30,0.79736936,,,,,,,,,,,,,, +2012,11,19,0,30,1.5061653,,,,,,,,,,,,,, +2012,11,19,1,30,1.6103151,,,,,,,,,,,,,, +2012,11,19,2,30,1.217686,,,,,,,,,,,,,, +2012,11,19,3,30,0.4580626,,,,,,,,,,,,,, +2012,11,19,4,30,0.6411609,,,,,,,,,,,,,, +2012,11,19,5,30,1.817071,,,,,,,,,,,,,, +2012,11,19,6,30,2.6063457,,,,,,,,,,,,,, +2012,11,19,7,30,2.7670712,,,,,,,,,,,,,, +2012,11,19,8,30,2.4753404,,,,,,,,,,,,,, +2012,11,19,9,30,1.8956999,,,,,,,,,,,,,, +2012,11,19,10,30,0.85185766,,,,,,,,,,,,,, +2012,11,19,11,30,0.73829514,,,,,,,,,,,,,, +2012,11,19,12,30,2.1486812,,,,,,,,,,,,,, +2012,11,19,13,30,2.7512956,,,,,,,,,,,,,, +2012,11,19,14,30,2.6808267,,,,,,,,,,,,,, +2012,11,19,15,30,2.2912204,,,,,,,,,,,,,, +2012,11,19,16,30,1.5411376,,,,,,,,,,,,,, +2012,11,19,17,30,0.48570067,,,,,,,,,,,,,, +2012,11,19,18,30,0.5480784,,,,,,,,,,,,,, +2012,11,19,19,30,1.2342846,,,,,,,,,,,,,, +2012,11,19,20,30,1.4563346,,,,,,,,,,,,,, +2012,11,19,21,30,1.2744712,,,,,,,,,,,,,, +2012,11,19,22,30,0.83290637,,,,,,,,,,,,,, +2012,11,19,23,30,0.14526704,,,,,,,,,,,,,, +2012,11,20,0,30,0.7656219,,,,,,,,,,,,,, +2012,11,20,1,30,1.3969119,,,,,,,,,,,,,, +2012,11,20,2,30,1.467864,,,,,,,,,,,,,, +2012,11,20,3,30,1.0700047,,,,,,,,,,,,,, +2012,11,20,4,30,0.30972755,,,,,,,,,,,,,, +2012,11,20,5,30,0.7436892,,,,,,,,,,,,,, +2012,11,20,6,30,1.780186,,,,,,,,,,,,,, +2012,11,20,7,30,2.4003172,,,,,,,,,,,,,, +2012,11,20,8,30,2.474559,,,,,,,,,,,,,, +2012,11,20,9,30,2.1717744,,,,,,,,,,,,,, +2012,11,20,10,30,1.5783383,,,,,,,,,,,,,, +2012,11,20,11,30,0.54226905,,,,,,,,,,,,,, +2012,11,20,12,30,0.9148194,,,,,,,,,,,,,, +2012,11,20,13,30,2.077638,,,,,,,,,,,,,, +2012,11,20,14,30,2.5180144,,,,,,,,,,,,,, +2012,11,20,15,30,2.4389973,,,,,,,,,,,,,, +2012,11,20,16,30,2.0605712,,,,,,,,,,,,,, +2012,11,20,17,30,1.3119133,,,,,,,,,,,,,, +2012,11,20,18,30,0.3293919,,,,,,,,,,,,,, +2012,11,20,19,30,0.60577166,,,,,,,,,,,,,, +2012,11,20,20,30,1.2283337,,,,,,,,,,,,,, +2012,11,20,21,30,1.4085515,,,,,,,,,,,,,, +2012,11,20,22,30,1.2183574,,,,,,,,,,,,,, +2012,11,20,23,30,0.8188856,,,,,,,,,,,,,, +2012,11,21,0,30,0.1855699,,,,,,,,,,,,,, +2012,11,21,1,30,0.6662169,,,,,,,,,,,,,, +2012,11,21,2,30,1.2653339,,,,,,,,,,,,,, +2012,11,21,3,30,1.3400826,,,,,,,,,,,,,, +2012,11,21,4,30,0.9639142,,,,,,,,,,,,,, +2012,11,21,5,30,0.24171844,,,,,,,,,,,,,, +2012,11,21,6,30,0.7136181,,,,,,,,,,,,,, +2012,11,21,7,30,1.5861958,,,,,,,,,,,,,, +2012,11,21,8,30,2.0720916,,,,,,,,,,,,,, +2012,11,21,9,30,2.1193147,,,,,,,,,,,,,, +2012,11,21,10,30,1.8491704,,,,,,,,,,,,,, +2012,11,21,11,30,1.285784,,,,,,,,,,,,,, +2012,11,21,12,30,0.3268432,,,,,,,,,,,,,, +2012,11,21,13,30,0.9670865,,,,,,,,,,,,,, +2012,11,21,14,30,1.9148241,,,,,,,,,,,,,, +2012,11,21,15,30,2.2557454,,,,,,,,,,,,,, +2012,11,21,16,30,2.1905634,,,,,,,,,,,,,, +2012,11,21,17,30,1.8290933,,,,,,,,,,,,,, +2012,11,21,18,30,1.117322,,,,,,,,,,,,,, +2012,11,21,19,30,0.22587733,,,,,,,,,,,,,, +2012,11,21,20,30,0.64423496,,,,,,,,,,,,,, +2012,11,21,21,30,1.2405616,,,,,,,,,,,,,, +2012,11,21,22,30,1.4024045,,,,,,,,,,,,,, +2012,11,21,23,30,1.2305382,,,,,,,,,,,,,, +2012,11,22,0,30,0.8937386,,,,,,,,,,,,,, +2012,11,22,1,30,0.30278185,,,,,,,,,,,,,, +2012,11,22,2,30,0.5351614,,,,,,,,,,,,,, +2012,11,22,3,30,1.1427515,,,,,,,,,,,,,, +2012,11,22,4,30,1.247688,,,,,,,,,,,,,, +2012,11,22,5,30,0.91941404,,,,,,,,,,,,,, +2012,11,22,6,30,0.27492425,,,,,,,,,,,,,, +2012,11,22,7,30,0.5491377,,,,,,,,,,,,,, +2012,11,22,8,30,1.266318,,,,,,,,,,,,,, +2012,11,22,9,30,1.6804768,,,,,,,,,,,,,, +2012,11,22,10,30,1.7617476,,,,,,,,,,,,,, +2012,11,22,11,30,1.5559547,,,,,,,,,,,,,, +2012,11,22,12,30,1.0461613,,,,,,,,,,,,,, +2012,11,22,13,30,0.20668547,,,,,,,,,,,,,, +2012,11,22,14,30,0.9349421,,,,,,,,,,,,,, +2012,11,22,15,30,1.710489,,,,,,,,,,,,,, +2012,11,22,16,30,1.9976038,,,,,,,,,,,,,, +2012,11,22,17,30,1.9610958,,,,,,,,,,,,,, +2012,11,22,18,30,1.6295372,,,,,,,,,,,,,, +2012,11,22,19,30,0.97211915,,,,,,,,,,,,,, +2012,11,22,20,30,0.14809296,,,,,,,,,,,,,, +2012,11,22,21,30,0.712129,,,,,,,,,,,,,, +2012,11,22,22,30,1.3048742,,,,,,,,,,,,,, +2012,11,22,23,30,1.4560279,,,,,,,,,,,,,, +2012,11,23,0,30,1.3190707,,,,,,,,,,,,,, +2012,11,23,1,30,1.0438174,,,,,,,,,,,,,, +2012,11,23,2,30,0.46013513,,,,,,,,,,,,,, +2012,11,23,3,30,0.42457232,,,,,,,,,,,,,, +2012,11,23,4,30,1.0670693,,,,,,,,,,,,,, +2012,11,23,5,30,1.2188047,,,,,,,,,,,,,, +2012,11,23,6,30,0.96160996,,,,,,,,,,,,,, +2012,11,23,7,30,0.42541498,,,,,,,,,,,,,, +2012,11,23,8,30,0.27982584,,,,,,,,,,,,,, +2012,11,23,9,30,0.88508475,,,,,,,,,,,,,, +2012,11,23,10,30,1.3046949,,,,,,,,,,,,,, +2012,11,23,11,30,1.4615301,,,,,,,,,,,,,, +2012,11,23,12,30,1.3214742,,,,,,,,,,,,,, +2012,11,23,13,30,0.8649405,,,,,,,,,,,,,, +2012,11,23,14,30,0.15472081,,,,,,,,,,,,,, +2012,11,23,15,30,0.8490211,,,,,,,,,,,,,, +2012,11,23,16,30,1.4986004,,,,,,,,,,,,,, +2012,11,23,17,30,1.7730758,,,,,,,,,,,,,, +2012,11,23,18,30,1.7772363,,,,,,,,,,,,,, +2012,11,23,19,30,1.4744837,,,,,,,,,,,,,, +2012,11,23,20,30,0.8503149,,,,,,,,,,,,,, +2012,11,23,21,30,0.06327402,,,,,,,,,,,,,, +2012,11,23,22,30,0.8476837,,,,,,,,,,,,,, +2012,11,23,23,30,1.4329392,,,,,,,,,,,,,, +2012,11,24,0,30,1.5688622,,,,,,,,,,,,,, +2012,11,24,1,30,1.4710526,,,,,,,,,,,,,, +2012,11,24,2,30,1.2277712,,,,,,,,,,,,,, +2012,11,24,3,30,0.59173876,,,,,,,,,,,,,, +2012,11,24,4,30,0.39241394,,,,,,,,,,,,,, +2012,11,24,5,30,1.0789188,,,,,,,,,,,,,, +2012,11,24,6,30,1.2844586,,,,,,,,,,,,,, +2012,11,24,7,30,1.1099349,,,,,,,,,,,,,, +2012,11,24,8,30,0.67820454,,,,,,,,,,,,,, +2012,11,24,9,30,0.15321477,,,,,,,,,,,,,, +2012,11,24,10,30,0.5330492,,,,,,,,,,,,,, +2012,11,24,11,30,1.0199221,,,,,,,,,,,,,, +2012,11,24,12,30,1.253442,,,,,,,,,,,,,, +2012,11,24,13,30,1.1531575,,,,,,,,,,,,,, +2012,11,24,14,30,0.7430788,,,,,,,,,,,,,, +2012,11,24,15,30,0.13814849,,,,,,,,,,,,,, +2012,11,24,16,30,0.73490155,,,,,,,,,,,,,, +2012,11,24,17,30,1.3151802,,,,,,,,,,,,,, +2012,11,24,18,30,1.6111053,,,,,,,,,,,,,, +2012,11,24,19,30,1.6466253,,,,,,,,,,,,,, +2012,11,24,20,30,1.3405625,,,,,,,,,,,,,, +2012,11,24,21,30,0.7010408,,,,,,,,,,,,,, +2012,11,24,22,30,0.17799929,,,,,,,,,,,,,, +2012,11,24,23,30,1.0630519,,,,,,,,,,,,,, +2012,11,25,0,30,1.6149204,,,,,,,,,,,,,, +2012,11,25,1,30,1.7247505,,,,,,,,,,,,,, +2012,11,25,2,30,1.6517242,,,,,,,,,,,,,, +2012,11,25,3,30,1.3811998,,,,,,,,,,,,,, +2012,11,25,4,30,0.6254821,,,,,,,,,,,,,, +2012,11,25,5,30,0.4787067,,,,,,,,,,,,,, +2012,11,25,6,30,1.2103602,,,,,,,,,,,,,, +2012,11,25,7,30,1.4624959,,,,,,,,,,,,,, +2012,11,25,8,30,1.3546121,,,,,,,,,,,,,, +2012,11,25,9,30,0.97659856,,,,,,,,,,,,,, +2012,11,25,10,30,0.40890127,,,,,,,,,,,,,, +2012,11,25,11,30,0.29630235,,,,,,,,,,,,,, +2012,11,25,12,30,0.8685565,,,,,,,,,,,,,, +2012,11,25,13,30,1.1418222,,,,,,,,,,,,,, +2012,11,25,14,30,1.0513878,,,,,,,,,,,,,, +2012,11,25,15,30,0.685036,,,,,,,,,,,,,, +2012,11,25,16,30,0.14080715,,,,,,,,,,,,,, +2012,11,25,17,30,0.6336214,,,,,,,,,,,,,, +2012,11,25,18,30,1.2019585,,,,,,,,,,,,,, +2012,11,25,19,30,1.5228101,,,,,,,,,,,,,, +2012,11,25,20,30,1.5458436,,,,,,,,,,,,,, +2012,11,25,21,30,1.183966,,,,,,,,,,,,,, +2012,11,25,22,30,0.48202187,,,,,,,,,,,,,, +2012,11,25,23,30,0.45436892,,,,,,,,,,,,,, +2012,11,26,0,30,1.3443625,,,,,,,,,,,,,, +2012,11,26,1,30,1.8263581,,,,,,,,,,,,,, +2012,11,26,2,30,1.8943523,,,,,,,,,,,,,, +2012,11,26,3,30,1.8091469,,,,,,,,,,,,,, +2012,11,26,4,30,1.4325796,,,,,,,,,,,,,, +2012,11,26,5,30,0.50563645,,,,,,,,,,,,,, +2012,11,26,6,30,0.7105345,,,,,,,,,,,,,, +2012,11,26,7,30,1.4682122,,,,,,,,,,,,,, +2012,11,26,8,30,1.7345263,,,,,,,,,,,,,, +2012,11,26,9,30,1.6385629,,,,,,,,,,,,,, +2012,11,26,10,30,1.2280966,,,,,,,,,,,,,, +2012,11,26,11,30,0.56834185,,,,,,,,,,,,,, +2012,11,26,12,30,0.22140655,,,,,,,,,,,,,, +2012,11,26,13,30,0.85139525,,,,,,,,,,,,,, +2012,11,26,14,30,1.1147039,,,,,,,,,,,,,, +2012,11,26,15,30,1.0154101,,,,,,,,,,,,,, +2012,11,26,16,30,0.6793856,,,,,,,,,,,,,, +2012,11,26,17,30,0.15071279,,,,,,,,,,,,,, +2012,11,26,18,30,0.6028393,,,,,,,,,,,,,, +2012,11,26,19,30,1.1841738,,,,,,,,,,,,,, +2012,11,26,20,30,1.4880399,,,,,,,,,,,,,, +2012,11,26,21,30,1.4341782,,,,,,,,,,,,,, +2012,11,26,22,30,0.9694406,,,,,,,,,,,,,, +2012,11,26,23,30,0.18133494,,,,,,,,,,,,,, +2012,11,27,0,30,0.8156009,,,,,,,,,,,,,, +2012,11,27,1,30,1.6600599,,,,,,,,,,,,,, +2012,11,27,2,30,2.0343432,,,,,,,,,,,,,, +2012,11,27,3,30,2.04,,,,,,,,,,,,,, +2012,11,27,4,30,1.8867514,,,,,,,,,,,,,, +2012,11,27,5,30,1.3229076,,,,,,,,,,,,,, +2012,11,27,6,30,0.2460614,,,,,,,,,,,,,, +2012,11,27,7,30,1.0918151,,,,,,,,,,,,,, +2012,11,27,8,30,1.8158424,,,,,,,,,,,,,, +2012,11,27,9,30,2.0337608,,,,,,,,,,,,,, +2012,11,27,10,30,1.8675721,,,,,,,,,,,,,, +2012,11,27,11,30,1.3387096,,,,,,,,,,,,,, +2012,11,27,12,30,0.5480594,,,,,,,,,,,,,, +2012,11,27,13,30,0.31140882,,,,,,,,,,,,,, +2012,11,27,14,30,0.9408984,,,,,,,,,,,,,, +2012,11,27,15,30,1.1536927,,,,,,,,,,,,,, +2012,11,27,16,30,1.0270298,,,,,,,,,,,,,, +2012,11,27,17,30,0.6763817,,,,,,,,,,,,,, +2012,11,27,18,30,0.13193505,,,,,,,,,,,,,, +2012,11,27,19,30,0.6857232,,,,,,,,,,,,,, +2012,11,27,20,30,1.2481394,,,,,,,,,,,,,, +2012,11,27,21,30,1.46467,,,,,,,,,,,,,, +2012,11,27,22,30,1.2781371,,,,,,,,,,,,,, +2012,11,27,23,30,0.68269265,,,,,,,,,,,,,, +2012,11,28,0,30,0.2251821,,,,,,,,,,,,,, +2012,11,28,1,30,1.2291143,,,,,,,,,,,,,, +2012,11,28,2,30,1.9689173,,,,,,,,,,,,,, +2012,11,28,3,30,2.2042222,,,,,,,,,,,,,, +2012,11,28,4,30,2.1242335,,,,,,,,,,,,,, +2012,11,28,5,30,1.8357731,,,,,,,,,,,,,, +2012,11,28,6,30,1.0202897,,,,,,,,,,,,,, +2012,11,28,7,30,0.3834334,,,,,,,,,,,,,, +2012,11,28,8,30,1.5679057,,,,,,,,,,,,,, +2012,11,28,9,30,2.1703029,,,,,,,,,,,,,, +2012,11,28,10,30,2.2638216,,,,,,,,,,,,,, +2012,11,28,11,30,1.951484,,,,,,,,,,,,,, +2012,11,28,12,30,1.2571323,,,,,,,,,,,,,, +2012,11,28,13,30,0.34991834,,,,,,,,,,,,,, +2012,11,28,14,30,0.5291872,,,,,,,,,,,,,, +2012,11,28,15,30,1.0965691,,,,,,,,,,,,,, +2012,11,28,16,30,1.225939,,,,,,,,,,,,,, +2012,11,28,17,30,1.0345198,,,,,,,,,,,,,, +2012,11,28,18,30,0.6011194,,,,,,,,,,,,,, +2012,11,28,19,30,0.15428312,,,,,,,,,,,,,, +2012,11,28,20,30,0.8746084,,,,,,,,,,,,,, +2012,11,28,21,30,1.3452053,,,,,,,,,,,,,, +2012,11,28,22,30,1.4109335,,,,,,,,,,,,,, +2012,11,28,23,30,1.0610676,,,,,,,,,,,,,, +2012,11,29,0,30,0.32230282,,,,,,,,,,,,,, +2012,11,29,1,30,0.67782694,,,,,,,,,,,,,, +2012,11,29,2,30,1.6516823,,,,,,,,,,,,,, +2012,11,29,3,30,2.2281833,,,,,,,,,,,,,, +2012,11,29,4,30,2.307529,,,,,,,,,,,,,, +2012,11,29,5,30,2.114873,,,,,,,,,,,,,, +2012,11,29,6,30,1.621368,,,,,,,,,,,,,, +2012,11,29,7,30,0.5357045,,,,,,,,,,,,,, +2012,11,29,8,30,0.9706377,,,,,,,,,,,,,, +2012,11,29,9,30,2.0373685,,,,,,,,,,,,,, +2012,11,29,10,30,2.4312282,,,,,,,,,,,,,, +2012,11,29,11,30,2.3448825,,,,,,,,,,,,,, +2012,11,29,12,30,1.8485224,,,,,,,,,,,,,, +2012,11,29,13,30,0.99395657,,,,,,,,,,,,,, +2012,11,29,14,30,0.046089638,,,,,,,,,,,,,, +2012,11,29,15,30,0.81288034,,,,,,,,,,,,,, +2012,11,29,16,30,1.2671907,,,,,,,,,,,,,, +2012,11,29,17,30,1.275971,,,,,,,,,,,,,, +2012,11,29,18,30,0.96786916,,,,,,,,,,,,,, +2012,11,29,19,30,0.40071902,,,,,,,,,,,,,, +2012,11,29,20,30,0.41230384,,,,,,,,,,,,,, +2012,11,29,21,30,1.1108493,,,,,,,,,,,,,, +2012,11,29,22,30,1.4169638,,,,,,,,,,,,,, +2012,11,29,23,30,1.2985262,,,,,,,,,,,,,, +2012,11,30,0,30,0.7745356,,,,,,,,,,,,,, +2012,11,30,1,30,0.11778854,,,,,,,,,,,,,, +2012,11,30,2,30,1.1675996,,,,,,,,,,,,,, +2012,11,30,3,30,2.0324423,,,,,,,,,,,,,, +2012,11,30,4,30,2.403331,,,,,,,,,,,,,, +2012,11,30,5,30,2.3242543,,,,,,,,,,,,,, +2012,11,30,6,30,1.9834108,,,,,,,,,,,,,, +2012,11,30,7,30,1.2296691,,,,,,,,,,,,,, +2012,11,30,8,30,0.19279447,,,,,,,,,,,,,, +2012,11,30,9,30,1.581559,,,,,,,,,,,,,, +2012,11,30,10,30,2.3910546,,,,,,,,,,,,,, +2012,11,30,11,30,2.5302508,,,,,,,,,,,,,, +2012,11,30,12,30,2.2533123,,,,,,,,,,,,,, +2012,11,30,13,30,1.5781053,,,,,,,,,,,,,, +2012,11,30,14,30,0.6065316,,,,,,,,,,,,,, +2012,11,30,15,30,0.37385038,,,,,,,,,,,,,, +2012,11,30,16,30,1.0949044,,,,,,,,,,,,,, +2012,11,30,17,30,1.3916738,,,,,,,,,,,,,, +2012,11,30,18,30,1.2429599,,,,,,,,,,,,,, +2012,11,30,19,30,0.78223217,,,,,,,,,,,,,, +2012,11,30,20,30,0.13146678,,,,,,,,,,,,,, +2012,11,30,21,30,0.7546522,,,,,,,,,,,,,, +2012,11,30,22,30,1.3168374,,,,,,,,,,,,,, +2012,11,30,23,30,1.418236,,,,,,,,,,,,,, +2012,12,1,0,30,1.1109171,,,,,,,,,,,,,, +2012,12,1,1,30,0.41328484,,,,,,,,,,,,,, +2012,12,1,2,30,0.6022944,,,,,,,,,,,,,, +2012,12,1,3,30,1.6417434,,,,,,,,,,,,,, +2012,12,1,4,30,2.3223634,,,,,,,,,,,,,, +2012,12,1,5,30,2.4727085,,,,,,,,,,,,,, +2012,12,1,6,30,2.237193,,,,,,,,,,,,,, +2012,12,1,7,30,1.7079451,,,,,,,,,,,,,, +2012,12,1,8,30,0.6860694,,,,,,,,,,,,,, +2012,12,1,9,30,0.837438,,,,,,,,,,,,,, +2012,12,1,10,30,2.0833163,,,,,,,,,,,,,, +2012,12,1,11,30,2.5619552,,,,,,,,,,,,,, +2012,12,1,12,30,2.4635935,,,,,,,,,,,,,, +2012,12,1,13,30,2.0221066,,,,,,,,,,,,,, +2012,12,1,14,30,1.1976452,,,,,,,,,,,,,, +2012,12,1,15,30,0.1797764,,,,,,,,,,,,,, +2012,12,1,16,30,0.7453847,,,,,,,,,,,,,, +2012,12,1,17,30,1.3102667,,,,,,,,,,,,,, +2012,12,1,18,30,1.4185534,,,,,,,,,,,,,, +2012,12,1,19,30,1.0979276,,,,,,,,,,,,,, +2012,12,1,20,30,0.49369588,,,,,,,,,,,,,, +2012,12,1,21,30,0.3192677,,,,,,,,,,,,,, +2012,12,1,22,30,1.0631248,,,,,,,,,,,,,, +2012,12,1,23,30,1.4313631,,,,,,,,,,,,,, +2012,12,2,0,30,1.3267515,,,,,,,,,,,,,, +2012,12,2,1,30,0.8432385,,,,,,,,,,,,,, +2012,12,2,2,30,0.028771043,,,,,,,,,,,,,, +2012,12,2,3,30,1.1003785,,,,,,,,,,,,,, +2012,12,2,4,30,2.0373247,,,,,,,,,,,,,, +2012,12,2,5,30,2.483701,,,,,,,,,,,,,, +2012,12,2,6,30,2.42358,,,,,,,,,,,,,, +2012,12,2,7,30,2.0309849,,,,,,,,,,,,,, +2012,12,2,8,30,1.2912327,,,,,,,,,,,,,, +2012,12,2,9,30,0.15737881,,,,,,,,,,,,,, +2012,12,2,10,30,1.4514612,,,,,,,,,,,,,, +2012,12,2,11,30,2.394406,,,,,,,,,,,,,, +2012,12,2,12,30,2.5531018,,,,,,,,,,,,,, +2012,12,2,13,30,2.279549,,,,,,,,,,,,,, +2012,12,2,14,30,1.7067394,,,,,,,,,,,,,, +2012,12,2,15,30,0.77173245,,,,,,,,,,,,,, +2012,12,2,16,30,0.27650192,,,,,,,,,,,,,, +2012,12,2,17,30,1.0398666,,,,,,,,,,,,,, +2012,12,2,18,30,1.4168428,,,,,,,,,,,,,, +2012,12,2,19,30,1.3360019,,,,,,,,,,,,,, +2012,12,2,20,30,0.8679646,,,,,,,,,,,,,, +2012,12,2,21,30,0.18604904,,,,,,,,,,,,,, +2012,12,2,22,30,0.6421056,,,,,,,,,,,,,, +2012,12,2,23,30,1.2655504,,,,,,,,,,,,,, +2012,12,3,0,30,1.4306333,,,,,,,,,,,,,, +2012,12,3,1,30,1.1472324,,,,,,,,,,,,,, +2012,12,3,2,30,0.51431245,,,,,,,,,,,,,, +2012,12,3,3,30,0.45930114,,,,,,,,,,,,,, +2012,12,3,4,30,1.5379825,,,,,,,,,,,,,, +2012,12,3,5,30,2.2937884,,,,,,,,,,,,,, +2012,12,3,6,30,2.4935322,,,,,,,,,,,,,, +2012,12,3,7,30,2.2503092,,,,,,,,,,,,,, +2012,12,3,8,30,1.707669,,,,,,,,,,,,,, +2012,12,3,9,30,0.7824362,,,,,,,,,,,,,, +2012,12,3,10,30,0.60486734,,,,,,,,,,,,,, +2012,12,3,11,30,1.9008272,,,,,,,,,,,,,, +2012,12,3,12,30,2.5029857,,,,,,,,,,,,,, +2012,12,3,13,30,2.4191642,,,,,,,,,,,,,, +2012,12,3,14,30,2.034712,,,,,,,,,,,,,, +2012,12,3,15,30,1.3532892,,,,,,,,,,,,,, +2012,12,3,16,30,0.360651,,,,,,,,,,,,,, +2012,12,3,17,30,0.617585,,,,,,,,,,,,,, +2012,12,3,18,30,1.2236707,,,,,,,,,,,,,, +2012,12,3,19,30,1.4181267,,,,,,,,,,,,,, +2012,12,3,20,30,1.1835757,,,,,,,,,,,,,, +2012,12,3,21,30,0.6240013,,,,,,,,,,,,,, +2012,12,3,22,30,0.16602871,,,,,,,,,,,,,, +2012,12,3,23,30,0.86030304,,,,,,,,,,,,,, +2012,12,4,0,30,1.339442,,,,,,,,,,,,,, +2012,12,4,1,30,1.3333881,,,,,,,,,,,,,, +2012,12,4,2,30,0.91557586,,,,,,,,,,,,,, +2012,12,4,3,30,0.17935215,,,,,,,,,,,,,, +2012,12,4,4,30,0.8497402,,,,,,,,,,,,,, +2012,12,4,5,30,1.8367608,,,,,,,,,,,,,, +2012,12,4,6,30,2.367532,,,,,,,,,,,,,, +2012,12,4,7,30,2.347304,,,,,,,,,,,,,, +2012,12,4,8,30,1.9660591,,,,,,,,,,,,,, +2012,12,4,9,30,1.3075434,,,,,,,,,,,,,, +2012,12,4,10,30,0.28333455,,,,,,,,,,,,,, +2012,12,4,11,30,1.091024,,,,,,,,,,,,,, +2012,12,4,12,30,2.145085,,,,,,,,,,,,,, +2012,12,4,13,30,2.452758,,,,,,,,,,,,,, +2012,12,4,14,30,2.2197113,,,,,,,,,,,,,, +2012,12,4,15,30,1.7626331,,,,,,,,,,,,,, +2012,12,4,16,30,0.99454564,,,,,,,,,,,,,, +2012,12,4,17,30,0.078785524,,,,,,,,,,,,,, +2012,12,4,18,30,0.8606346,,,,,,,,,,,,,, +2012,12,4,19,30,1.3111341,,,,,,,,,,,,,, +2012,12,4,20,30,1.3638132,,,,,,,,,,,,,, +2012,12,4,21,30,1.0313627,,,,,,,,,,,,,, +2012,12,4,22,30,0.44194,,,,,,,,,,,,,, +2012,12,4,23,30,0.28677753,,,,,,,,,,,,,, +2012,12,5,0,30,0.9505464,,,,,,,,,,,,,, +2012,12,5,1,30,1.3138435,,,,,,,,,,,,,, +2012,12,5,2,30,1.1938533,,,,,,,,,,,,,, +2012,12,5,3,30,0.69489455,,,,,,,,,,,,,, +2012,12,5,4,30,0.11437528,,,,,,,,,,,,,, +2012,12,5,5,30,1.10306,,,,,,,,,,,,,, +2012,12,5,6,30,1.9366173,,,,,,,,,,,,,, +2012,12,5,7,30,2.245917,,,,,,,,,,,,,, +2012,12,5,8,30,2.0699873,,,,,,,,,,,,,, +2012,12,5,9,30,1.6183771,,,,,,,,,,,,,, +2012,12,5,10,30,0.90744704,,,,,,,,,,,,,, +2012,12,5,11,30,0.2029314,,,,,,,,,,,,,, +2012,12,5,12,30,1.4016937,,,,,,,,,,,,,, +2012,12,5,13,30,2.204258,,,,,,,,,,,,,, +2012,12,5,14,30,2.301396,,,,,,,,,,,,,, +2012,12,5,15,30,1.989322,,,,,,,,,,,,,, +2012,12,5,16,30,1.47955,,,,,,,,,,,,,, +2012,12,5,17,30,0.661356,,,,,,,,,,,,,, +2012,12,5,18,30,0.31506926,,,,,,,,,,,,,, +2012,12,5,19,30,1.018245,,,,,,,,,,,,,, +2012,12,5,20,30,1.3571595,,,,,,,,,,,,,, +2012,12,5,21,30,1.3217015,,,,,,,,,,,,,, +2012,12,5,22,30,0.94337237,,,,,,,,,,,,,, +2012,12,5,23,30,0.36708468,,,,,,,,,,,,,, +2012,12,6,0,30,0.31755313,,,,,,,,,,,,,, +2012,12,6,1,30,0.9454544,,,,,,,,,,,,,, +2012,12,6,2,30,1.2530006,,,,,,,,,,,,,, +2012,12,6,3,30,1.0827986,,,,,,,,,,,,,, +2012,12,6,4,30,0.55601054,,,,,,,,,,,,,, +2012,12,6,5,30,0.24400559,,,,,,,,,,,,,, +2012,12,6,6,30,1.1596342,,,,,,,,,,,,,, +2012,12,6,7,30,1.8185723,,,,,,,,,,,,,, +2012,12,6,8,30,1.9616524,,,,,,,,,,,,,, +2012,12,6,9,30,1.7253134,,,,,,,,,,,,,, +2012,12,6,10,30,1.2835772,,,,,,,,,,,,,, +2012,12,6,11,30,0.5859333,,,,,,,,,,,,,, +2012,12,6,12,30,0.4665691,,,,,,,,,,,,,, +2012,12,6,13,30,1.5337927,,,,,,,,,,,,,, +2012,12,6,14,30,2.1260414,,,,,,,,,,,,,, +2012,12,6,15,30,2.0926585,,,,,,,,,,,,,, +2012,12,6,16,30,1.7468933,,,,,,,,,,,,,, +2012,12,6,17,30,1.2066455,,,,,,,,,,,,,, +2012,12,6,18,30,0.38197303,,,,,,,,,,,,,, +2012,12,6,19,30,0.51757616,,,,,,,,,,,,,, +2012,12,6,20,30,1.141722,,,,,,,,,,,,,, +2012,12,6,21,30,1.4251387,,,,,,,,,,,,,, +2012,12,6,22,30,1.3426471,,,,,,,,,,,,,, +2012,12,6,23,30,0.95321894,,,,,,,,,,,,,, +2012,12,7,0,30,0.40630174,,,,,,,,,,,,,, +2012,12,7,1,30,0.26058397,,,,,,,,,,,,,, +2012,12,7,2,30,0.9101184,,,,,,,,,,,,,, +2012,12,7,3,30,1.2284824,,,,,,,,,,,,,, +2012,12,7,4,30,1.0613158,,,,,,,,,,,,,, +2012,12,7,5,30,0.5512141,,,,,,,,,,,,,, +2012,12,7,6,30,0.2002972,,,,,,,,,,,,,, +2012,12,7,7,30,1.0065724,,,,,,,,,,,,,, +2012,12,7,8,30,1.5210811,,,,,,,,,,,,,, +2012,12,7,9,30,1.5964984,,,,,,,,,,,,,, +2012,12,7,10,30,1.4023638,,,,,,,,,,,,,, +2012,12,7,11,30,1.0318182,,,,,,,,,,,,,, +2012,12,7,12,30,0.382928,,,,,,,,,,,,,, +2012,12,7,13,30,0.59715164,,,,,,,,,,,,,, +2012,12,7,14,30,1.5215176,,,,,,,,,,,,,, +2012,12,7,15,30,1.9598713,,,,,,,,,,,,,, +2012,12,7,16,30,1.8625495,,,,,,,,,,,,,, +2012,12,7,17,30,1.5194652,,,,,,,,,,,,,, +2012,12,7,18,30,0.9733922,,,,,,,,,,,,,, +2012,12,7,19,30,0.16748394,,,,,,,,,,,,,, +2012,12,7,20,30,0.6855568,,,,,,,,,,,,,, +2012,12,7,21,30,1.287611,,,,,,,,,,,,,, +2012,12,7,22,30,1.5539267,,,,,,,,,,,,,, +2012,12,7,23,30,1.4434985,,,,,,,,,,,,,, +2012,12,8,0,30,1.0608997,,,,,,,,,,,,,, +2012,12,8,1,30,0.53527105,,,,,,,,,,,,,, +2012,12,8,2,30,0.17482857,,,,,,,,,,,,,, +2012,12,8,3,30,0.91370267,,,,,,,,,,,,,, +2012,12,8,4,30,1.291741,,,,,,,,,,,,,, +2012,12,8,5,30,1.1610196,,,,,,,,,,,,,, +2012,12,8,6,30,0.698342,,,,,,,,,,,,,, +2012,12,8,7,30,0.044559587,,,,,,,,,,,,,, +2012,12,8,8,30,0.6904039,,,,,,,,,,,,,, +2012,12,8,9,30,1.138582,,,,,,,,,,,,,, +2012,12,8,10,30,1.2581217,,,,,,,,,,,,,, +2012,12,8,11,30,1.1766427,,,,,,,,,,,,,, +2012,12,8,12,30,0.8914151,,,,,,,,,,,,,, +2012,12,8,13,30,0.29286423,,,,,,,,,,,,,, +2012,12,8,14,30,0.60712713,,,,,,,,,,,,,, +2012,12,8,15,30,1.4102137,,,,,,,,,,,,,, +2012,12,8,16,30,1.75707,,,,,,,,,,,,,, +2012,12,8,17,30,1.6560061,,,,,,,,,,,,,, +2012,12,8,18,30,1.3427541,,,,,,,,,,,,,, +2012,12,8,19,30,0.7970704,,,,,,,,,,,,,, +2012,12,8,20,30,0.04531084,,,,,,,,,,,,,, +2012,12,8,21,30,0.8629166,,,,,,,,,,,,,, +2012,12,8,22,30,1.487579,,,,,,,,,,,,,, +2012,12,8,23,30,1.7465616,,,,,,,,,,,,,, +2012,12,9,0,30,1.611413,,,,,,,,,,,,,, +2012,12,9,1,30,1.2400566,,,,,,,,,,,,,, +2012,12,9,2,30,0.7022192,,,,,,,,,,,,,, +2012,12,9,3,30,0.13536455,,,,,,,,,,,,,, +2012,12,9,4,30,1.0047334,,,,,,,,,,,,,, +2012,12,9,5,30,1.461689,,,,,,,,,,,,,, +2012,12,9,6,30,1.380547,,,,,,,,,,,,,, +2012,12,9,7,30,0.9781011,,,,,,,,,,,,,, +2012,12,9,8,30,0.37244907,,,,,,,,,,,,,, +2012,12,9,9,30,0.31253082,,,,,,,,,,,,,, +2012,12,9,10,30,0.79060835,,,,,,,,,,,,,, +2012,12,9,11,30,1.0341121,,,,,,,,,,,,,, +2012,12,9,12,30,1.0747769,,,,,,,,,,,,,, +2012,12,9,13,30,0.8482795,,,,,,,,,,,,,, +2012,12,9,14,30,0.28983968,,,,,,,,,,,,,, +2012,12,9,15,30,0.5294344,,,,,,,,,,,,,, +2012,12,9,16,30,1.2529444,,,,,,,,,,,,,, +2012,12,9,17,30,1.5784361,,,,,,,,,,,,,, +2012,12,9,18,30,1.5198164,,,,,,,,,,,,,, +2012,12,9,19,30,1.2355698,,,,,,,,,,,,,, +2012,12,9,20,30,0.66613686,,,,,,,,,,,,,, +2012,12,9,21,30,0.1952913,,,,,,,,,,,,,, +2012,12,9,22,30,1.0788901,,,,,,,,,,,,,, +2012,12,9,23,30,1.7410357,,,,,,,,,,,,,, +2012,12,10,0,30,1.9801931,,,,,,,,,,,,,, +2012,12,10,1,30,1.8167095,,,,,,,,,,,,,, +2012,12,10,2,30,1.4479152,,,,,,,,,,,,,, +2012,12,10,3,30,0.84607315,,,,,,,,,,,,,, +2012,12,10,4,30,0.17532097,,,,,,,,,,,,,, +2012,12,10,5,30,1.2025683,,,,,,,,,,,,,, +2012,12,10,6,30,1.7297693,,,,,,,,,,,,,, +2012,12,10,7,30,1.6922462,,,,,,,,,,,,,, +2012,12,10,8,30,1.3367499,,,,,,,,,,,,,, +2012,12,10,9,30,0.74834883,,,,,,,,,,,,,, +2012,12,10,10,30,0.096026,,,,,,,,,,,,,, +2012,12,10,11,30,0.57100207,,,,,,,,,,,,,, +2012,12,10,12,30,0.95513725,,,,,,,,,,,,,, +2012,12,10,13,30,1.075574,,,,,,,,,,,,,, +2012,12,10,14,30,0.87424004,,,,,,,,,,,,,, +2012,12,10,15,30,0.35270172,,,,,,,,,,,,,, +2012,12,10,16,30,0.40576512,,,,,,,,,,,,,, +2012,12,10,17,30,1.1140885,,,,,,,,,,,,,, +2012,12,10,18,30,1.48078,,,,,,,,,,,,,, +2012,12,10,19,30,1.4730469,,,,,,,,,,,,,, +2012,12,10,20,30,1.1811485,,,,,,,,,,,,,, +2012,12,10,21,30,0.54865175,,,,,,,,,,,,,, +2012,12,10,22,30,0.3817023,,,,,,,,,,,,,, +2012,12,10,23,30,1.3397274,,,,,,,,,,,,,, +2012,12,11,0,30,2.026329,,,,,,,,,,,,,, +2012,12,11,1,30,2.2214766,,,,,,,,,,,,,, +2012,12,11,2,30,2.0238767,,,,,,,,,,,,,, +2012,12,11,3,30,1.6372178,,,,,,,,,,,,,, +2012,12,11,4,30,0.91394645,,,,,,,,,,,,,, +2012,12,11,5,30,0.32354861,,,,,,,,,,,,,, +2012,12,11,6,30,1.503805,,,,,,,,,,,,,, +2012,12,11,7,30,2.0689282,,,,,,,,,,,,,, +2012,12,11,8,30,2.0471976,,,,,,,,,,,,,, +2012,12,11,9,30,1.695583,,,,,,,,,,,,,, +2012,12,11,10,30,1.0557282,,,,,,,,,,,,,, +2012,12,11,11,30,0.2507933,,,,,,,,,,,,,, +2012,12,11,12,30,0.5120705,,,,,,,,,,,,,, +2012,12,11,13,30,0.9970559,,,,,,,,,,,,,, +2012,12,11,14,30,1.1416385,,,,,,,,,,,,,, +2012,12,11,15,30,0.94850034,,,,,,,,,,,,,, +2012,12,11,16,30,0.4584764,,,,,,,,,,,,,, +2012,12,11,17,30,0.29188365,,,,,,,,,,,,,, +2012,12,11,18,30,1.0552156,,,,,,,,,,,,,, +2012,12,11,19,30,1.4858685,,,,,,,,,,,,,, +2012,12,11,20,30,1.4907575,,,,,,,,,,,,,, +2012,12,11,21,30,1.1390513,,,,,,,,,,,,,, +2012,12,11,22,30,0.41463193,,,,,,,,,,,,,, +2012,12,11,23,30,0.6057162,,,,,,,,,,,,,, +2012,12,12,0,30,1.6360229,,,,,,,,,,,,,, +2012,12,12,1,30,2.3129325,,,,,,,,,,,,,, +2012,12,12,2,30,2.4369485,,,,,,,,,,,,,, +2012,12,12,3,30,2.2005086,,,,,,,,,,,,,, +2012,12,12,4,30,1.7668161,,,,,,,,,,,,,, +2012,12,12,5,30,0.86757725,,,,,,,,,,,,,, +2012,12,12,6,30,0.6009967,,,,,,,,,,,,,, +2012,12,12,7,30,1.8870245,,,,,,,,,,,,,, +2012,12,12,8,30,2.434221,,,,,,,,,,,,,, +2012,12,12,9,30,2.3795645,,,,,,,,,,,,,, +2012,12,12,10,30,1.973162,,,,,,,,,,,,,, +2012,12,12,11,30,1.2225852,,,,,,,,,,,,,, +2012,12,12,12,30,0.27495778,,,,,,,,,,,,,, +2012,12,12,13,30,0.58971924,,,,,,,,,,,,,, +2012,12,12,14,30,1.1145208,,,,,,,,,,,,,, +2012,12,12,15,30,1.2451923,,,,,,,,,,,,,, +2012,12,12,16,30,1.053009,,,,,,,,,,,,,, +2012,12,12,17,30,0.5642943,,,,,,,,,,,,,, +2012,12,12,18,30,0.24689977,,,,,,,,,,,,,, +2012,12,12,19,30,1.1046731,,,,,,,,,,,,,, +2012,12,12,20,30,1.5663561,,,,,,,,,,,,,, +2012,12,12,21,30,1.5224435,,,,,,,,,,,,,, +2012,12,12,22,30,1.0734713,,,,,,,,,,,,,, +2012,12,12,23,30,0.24924524,,,,,,,,,,,,,, +2012,12,13,0,30,0.8691738,,,,,,,,,,,,,, +2012,12,13,1,30,1.9478576,,,,,,,,,,,,,, +2012,12,13,2,30,2.5672479,,,,,,,,,,,,,, +2012,12,13,3,30,2.6003637,,,,,,,,,,,,,, +2012,12,13,4,30,2.323528,,,,,,,,,,,,,, +2012,12,13,5,30,1.8040167,,,,,,,,,,,,,, +2012,12,13,6,30,0.68360937,,,,,,,,,,,,,, +2012,12,13,7,30,0.99834394,,,,,,,,,,,,,, +2012,12,13,8,30,2.3064215,,,,,,,,,,,,,, +2012,12,13,9,30,2.7617395,,,,,,,,,,,,,, +2012,12,13,10,30,2.6219726,,,,,,,,,,,,,, +2012,12,13,11,30,2.1151586,,,,,,,,,,,,,, +2012,12,13,12,30,1.2305605,,,,,,,,,,,,,, +2012,12,13,13,30,0.16724026,,,,,,,,,,,,,, +2012,12,13,14,30,0.756346,,,,,,,,,,,,,, +2012,12,13,15,30,1.2701766,,,,,,,,,,,,,, +2012,12,13,16,30,1.3660104,,,,,,,,,,,,,, +2012,12,13,17,30,1.1565882,,,,,,,,,,,,,, +2012,12,13,18,30,0.6161114,,,,,,,,,,,,,, +2012,12,13,19,30,0.30941048,,,,,,,,,,,,,, +2012,12,13,20,30,1.2413839,,,,,,,,,,,,,, +2012,12,13,21,30,1.6670297,,,,,,,,,,,,,, +2012,12,13,22,30,1.5259644,,,,,,,,,,,,,, +2012,12,13,23,30,0.969211,,,,,,,,,,,,,, +2012,12,14,0,30,0.06558141,,,,,,,,,,,,,, +2012,12,14,1,30,1.1637521,,,,,,,,,,,,,, +2012,12,14,2,30,2.243773,,,,,,,,,,,,,, +2012,12,14,3,30,2.7580476,,,,,,,,,,,,,, +2012,12,14,4,30,2.6976357,,,,,,,,,,,,,, +2012,12,14,5,30,2.3763022,,,,,,,,,,,,,, +2012,12,14,6,30,1.7203245,,,,,,,,,,,,,, +2012,12,14,7,30,0.36851782,,,,,,,,,,,,,, +2012,12,14,8,30,1.4714818,,,,,,,,,,,,,, +2012,12,14,9,30,2.6877131,,,,,,,,,,,,,, +2012,12,14,10,30,2.9832208,,,,,,,,,,,,,, +2012,12,14,11,30,2.7310824,,,,,,,,,,,,,, +2012,12,14,12,30,2.1106303,,,,,,,,,,,,,, +2012,12,14,13,30,1.1037772,,,,,,,,,,,,,, +2012,12,14,14,30,0.061784707,,,,,,,,,,,,,, +2012,12,14,15,30,0.97002316,,,,,,,,,,,,,, +2012,12,14,16,30,1.4360324,,,,,,,,,,,,,, +2012,12,14,17,30,1.476646,,,,,,,,,,,,,, +2012,12,14,18,30,1.2163872,,,,,,,,,,,,,, +2012,12,14,19,30,0.57574314,,,,,,,,,,,,,, +2012,12,14,20,30,0.4684609,,,,,,,,,,,,,, +2012,12,14,21,30,1.4116143,,,,,,,,,,,,,, +2012,12,14,22,30,1.7398258,,,,,,,,,,,,,, +2012,12,14,23,30,1.4853852,,,,,,,,,,,,,, +2012,12,15,0,30,0.8271963,,,,,,,,,,,,,, +2012,12,15,1,30,0.21152464,,,,,,,,,,,,,, +2012,12,15,2,30,1.4642118,,,,,,,,,,,,,, +2012,12,15,3,30,2.4836142,,,,,,,,,,,,,, +2012,12,15,4,30,2.8635314,,,,,,,,,,,,,, +2012,12,15,5,30,2.7224755,,,,,,,,,,,,,, +2012,12,15,6,30,2.338266,,,,,,,,,,,,,, +2012,12,15,7,30,1.4946449,,,,,,,,,,,,,, +2012,12,15,8,30,0.19067535,,,,,,,,,,,,,, +2012,12,15,9,30,1.9367195,,,,,,,,,,,,,, +2012,12,15,10,30,2.9472728,,,,,,,,,,,,,, +2012,12,15,11,30,3.0559077,,,,,,,,,,,,,, +2012,12,15,12,30,2.7025743,,,,,,,,,,,,,, +2012,12,15,13,30,1.9802201,,,,,,,,,,,,,, +2012,12,15,14,30,0.87841254,,,,,,,,,,,,,, +2012,12,15,15,30,0.31356582,,,,,,,,,,,,,, +2012,12,15,16,30,1.196833,,,,,,,,,,,,,, +2012,12,15,17,30,1.5817524,,,,,,,,,,,,,, +2012,12,15,18,30,1.5431044,,,,,,,,,,,,,, +2012,12,15,19,30,1.2005583,,,,,,,,,,,,,, +2012,12,15,20,30,0.44432956,,,,,,,,,,,,,, +2012,12,15,21,30,0.6761998,,,,,,,,,,,,,, +2012,12,15,22,30,1.5602758,,,,,,,,,,,,,, +2012,12,15,23,30,1.762133,,,,,,,,,,,,,, +2012,12,16,0,30,1.4041677,,,,,,,,,,,,,, +2012,12,16,1,30,0.6550542,,,,,,,,,,,,,, +2012,12,16,2,30,0.46590868,,,,,,,,,,,,,, +2012,12,16,3,30,1.7278786,,,,,,,,,,,,,, +2012,12,16,4,30,2.6287534,,,,,,,,,,,,,, +2012,12,16,5,30,2.8717299,,,,,,,,,,,,,, +2012,12,16,6,30,2.6635847,,,,,,,,,,,,,, +2012,12,16,7,30,2.183332,,,,,,,,,,,,,, +2012,12,16,8,30,1.1322309,,,,,,,,,,,,,, +2012,12,16,9,30,0.6447834,,,,,,,,,,,,,, +2012,12,16,10,30,2.2933028,,,,,,,,,,,,,, +2012,12,16,11,30,3.0313916,,,,,,,,,,,,,, +2012,12,16,12,30,2.9820974,,,,,,,,,,,,,, +2012,12,16,13,30,2.5595481,,,,,,,,,,,,,, +2012,12,16,14,30,1.7503805,,,,,,,,,,,,,, +2012,12,16,15,30,0.5860557,,,,,,,,,,,,,, +2012,12,16,16,30,0.5962163,,,,,,,,,,,,,, +2012,12,16,17,30,1.4012369,,,,,,,,,,,,,, +2012,12,16,18,30,1.6768728,,,,,,,,,,,,,, +2012,12,16,19,30,1.5438449,,,,,,,,,,,,,, +2012,12,16,20,30,1.1103075,,,,,,,,,,,,,, +2012,12,16,21,30,0.2649138,,,,,,,,,,,,,, +2012,12,16,22,30,0.87316924,,,,,,,,,,,,,, +2012,12,16,23,30,1.650844,,,,,,,,,,,,,, +2012,12,17,0,30,1.7315524,,,,,,,,,,,,,, +2012,12,17,1,30,1.2913034,,,,,,,,,,,,,, +2012,12,17,2,30,0.4666391,,,,,,,,,,,,,, +2012,12,17,3,30,0.70300084,,,,,,,,,,,,,, +2012,12,17,4,30,1.9052824,,,,,,,,,,,,,, +2012,12,17,5,30,2.650382,,,,,,,,,,,,,, +2012,12,17,6,30,2.7723782,,,,,,,,,,,,,, +2012,12,17,7,30,2.5003376,,,,,,,,,,,,,, +2012,12,17,8,30,1.8987261,,,,,,,,,,,,,, +2012,12,17,9,30,0.6845914,,,,,,,,,,,,,, +2012,12,17,10,30,1.0796965,,,,,,,,,,,,,, +2012,12,17,11,30,2.4698014,,,,,,,,,,,,,, +2012,12,17,12,30,2.9430754,,,,,,,,,,,,,, +2012,12,17,13,30,2.7972379,,,,,,,,,,,,,, +2012,12,17,14,30,2.3271756,,,,,,,,,,,,,, +2012,12,17,15,30,1.4428861,,,,,,,,,,,,,, +2012,12,17,16,30,0.2652218,,,,,,,,,,,,,, +2012,12,17,17,30,0.86151445,,,,,,,,,,,,,, +2012,12,17,18,30,1.5511607,,,,,,,,,,,,,, +2012,12,17,19,30,1.707386,,,,,,,,,,,,,, +2012,12,17,20,30,1.486143,,,,,,,,,,,,,, +2012,12,17,21,30,0.9810565,,,,,,,,,,,,,, +2012,12,17,22,30,0.12667142,,,,,,,,,,,,,, +2012,12,17,23,30,1.0101279,,,,,,,,,,,,,, +2012,12,18,0,30,1.6681535,,,,,,,,,,,,,, +2012,12,18,1,30,1.6544892,,,,,,,,,,,,,, +2012,12,18,2,30,1.1579487,,,,,,,,,,,,,, +2012,12,18,3,30,0.28675053,,,,,,,,,,,,,, +2012,12,18,4,30,0.8756406,,,,,,,,,,,,,, +2012,12,18,5,30,1.953319,,,,,,,,,,,,,, +2012,12,18,6,30,2.5305917,,,,,,,,,,,,,, +2012,12,18,7,30,2.5546448,,,,,,,,,,,,,, +2012,12,18,8,30,2.2204375,,,,,,,,,,,,,, +2012,12,18,9,30,1.5103714,,,,,,,,,,,,,, +2012,12,18,10,30,0.25757188,,,,,,,,,,,,,, +2012,12,18,11,30,1.3765467,,,,,,,,,,,,,, +2012,12,18,12,30,2.4570343,,,,,,,,,,,,,, +2012,12,18,13,30,2.7296176,,,,,,,,,,,,,, +2012,12,18,14,30,2.538912,,,,,,,,,,,,,, +2012,12,18,15,30,2.022821,,,,,,,,,,,,,, +2012,12,18,16,30,1.0872552,,,,,,,,,,,,,, +2012,12,18,17,30,0.0833117,,,,,,,,,,,,,, +2012,12,18,18,30,1.0722377,,,,,,,,,,,,,, +2012,12,18,19,30,1.6347393,,,,,,,,,,,,,, +2012,12,18,20,30,1.6859146,,,,,,,,,,,,,, +2012,12,18,21,30,1.4031875,,,,,,,,,,,,,, +2012,12,18,22,30,0.86357754,,,,,,,,,,,,,, +2012,12,18,23,30,0.11488278,,,,,,,,,,,,,, +2012,12,19,0,30,1.0615089,,,,,,,,,,,,,, +2012,12,19,1,30,1.6158539,,,,,,,,,,,,,, +2012,12,19,2,30,1.544137,,,,,,,,,,,,,, +2012,12,19,3,30,1.0230054,,,,,,,,,,,,,, +2012,12,19,4,30,0.15287937,,,,,,,,,,,,,, +2012,12,19,5,30,0.93841046,,,,,,,,,,,,,, +2012,12,19,6,30,1.8439648,,,,,,,,,,,,,, +2012,12,19,7,30,2.2660441,,,,,,,,,,,,,, +2012,12,19,8,30,2.2230806,,,,,,,,,,,,,, +2012,12,19,9,30,1.8468008,,,,,,,,,,,,,, +2012,12,19,10,30,1.0859663,,,,,,,,,,,,,, +2012,12,19,11,30,0.19595475,,,,,,,,,,,,,, +2012,12,19,12,30,1.5016701,,,,,,,,,,,,,, +2012,12,19,13,30,2.297577,,,,,,,,,,,,,, +2012,12,19,14,30,2.444363,,,,,,,,,,,,,, +2012,12,19,15,30,2.2305503,,,,,,,,,,,,,, +2012,12,19,16,30,1.6702335,,,,,,,,,,,,,, +2012,12,19,17,30,0.73134375,,,,,,,,,,,,,, +2012,12,19,18,30,0.3357461,,,,,,,,,,,,,, +2012,12,19,19,30,1.2148398,,,,,,,,,,,,,, +2012,12,19,20,30,1.6670063,,,,,,,,,,,,,, +2012,12,19,21,30,1.6435993,,,,,,,,,,,,,, +2012,12,19,22,30,1.3362302,,,,,,,,,,,,,, +2012,12,19,23,30,0.8003682,,,,,,,,,,,,,, +2012,12,20,0,30,0.13201794,,,,,,,,,,,,,, +2012,12,20,1,30,1.0325341,,,,,,,,,,,,,, +2012,12,20,2,30,1.5166893,,,,,,,,,,,,,, +2012,12,20,3,30,1.4250652,,,,,,,,,,,,,, +2012,12,20,4,30,0.9166101,,,,,,,,,,,,,, +2012,12,20,5,30,0.110354766,,,,,,,,,,,,,, +2012,12,20,6,30,0.8576722,,,,,,,,,,,,,, +2012,12,20,7,30,1.5746237,,,,,,,,,,,,,, +2012,12,20,8,30,1.8829851,,,,,,,,,,,,,, +2012,12,20,9,30,1.819493,,,,,,,,,,,,,, +2012,12,20,10,30,1.4435503,,,,,,,,,,,,,, +2012,12,20,11,30,0.70662636,,,,,,,,,,,,,, +2012,12,20,12,30,0.41254765,,,,,,,,,,,,,, +2012,12,20,13,30,1.4731925,,,,,,,,,,,,,, +2012,12,20,14,30,2.0465164,,,,,,,,,,,,,, +2012,12,20,15,30,2.1230419,,,,,,,,,,,,,, +2012,12,20,16,30,1.8937279,,,,,,,,,,,,,, +2012,12,20,17,30,1.3130654,,,,,,,,,,,,,, +2012,12,20,18,30,0.42669398,,,,,,,,,,,,,, +2012,12,20,19,30,0.5263955,,,,,,,,,,,,,, +2012,12,20,20,30,1.305618,,,,,,,,,,,,,, +2012,12,20,21,30,1.6780056,,,,,,,,,,,,,, +2012,12,20,22,30,1.6128199,,,,,,,,,,,,,, +2012,12,20,23,30,1.3164413,,,,,,,,,,,,,, +2012,12,21,0,30,0.8081207,,,,,,,,,,,,,, +2012,12,21,1,30,0.134487,,,,,,,,,,,,,, +2012,12,21,2,30,0.95984316,,,,,,,,,,,,,, +2012,12,21,3,30,1.4109792,,,,,,,,,,,,,, +2012,12,21,4,30,1.3337144,,,,,,,,,,,,,, +2012,12,21,5,30,0.8767802,,,,,,,,,,,,,, +2012,12,21,6,30,0.17927934,,,,,,,,,,,,,, +2012,12,21,7,30,0.627092,,,,,,,,,,,,,, +2012,12,21,8,30,1.1846462,,,,,,,,,,,,,, +2012,12,21,9,30,1.4507568,,,,,,,,,,,,,, +2012,12,21,10,30,1.4222213,,,,,,,,,,,,,, +2012,12,21,11,30,1.0887632,,,,,,,,,,,,,, +2012,12,21,12,30,0.4319459,,,,,,,,,,,,,, +2012,12,21,13,30,0.5059083,,,,,,,,,,,,,, +2012,12,21,14,30,1.3290366,,,,,,,,,,,,,, +2012,12,21,15,30,1.7469597,,,,,,,,,,,,,, +2012,12,21,16,30,1.7936348,,,,,,,,,,,,,, +2012,12,21,17,30,1.5652614,,,,,,,,,,,,,, +2012,12,21,18,30,1.0022681,,,,,,,,,,,,,, +2012,12,21,19,30,0.19900858,,,,,,,,,,,,,, +2012,12,21,20,30,0.663442,,,,,,,,,,,,,, +2012,12,21,21,30,1.3767967,,,,,,,,,,,,,, +2012,12,21,22,30,1.6952426,,,,,,,,,,,,,, +2012,12,21,23,30,1.6150137,,,,,,,,,,,,,, +2012,12,22,0,30,1.3532985,,,,,,,,,,,,,, +2012,12,22,1,30,0.8686492,,,,,,,,,,,,,, +2012,12,22,2,30,0.1530409,,,,,,,,,,,,,, +2012,12,22,3,30,0.9001978,,,,,,,,,,,,,, +2012,12,22,4,30,1.3474488,,,,,,,,,,,,,, +2012,12,22,5,30,1.3110833,,,,,,,,,,,,,, +2012,12,22,6,30,0.9382513,,,,,,,,,,,,,, +2012,12,22,7,30,0.36581695,,,,,,,,,,,,,, +2012,12,22,8,30,0.29169452,,,,,,,,,,,,,, +2012,12,22,9,30,0.7630018,,,,,,,,,,,,,, +2012,12,22,10,30,1.069094,,,,,,,,,,,,,, +2012,12,22,11,30,1.1126107,,,,,,,,,,,,,, +2012,12,22,12,30,0.837581,,,,,,,,,,,,,, +2012,12,22,13,30,0.28544003,,,,,,,,,,,,,, +2012,12,22,14,30,0.47680458,,,,,,,,,,,,,, +2012,12,22,15,30,1.1094028,,,,,,,,,,,,,, +2012,12,22,16,30,1.4394963,,,,,,,,,,,,,, +2012,12,22,17,30,1.495466,,,,,,,,,,,,,, +2012,12,22,18,30,1.2899611,,,,,,,,,,,,,, +2012,12,22,19,30,0.765975,,,,,,,,,,,,,, +2012,12,22,20,30,0.04333359,,,,,,,,,,,,,, +2012,12,22,21,30,0.78355116,,,,,,,,,,,,,, +2012,12,22,22,30,1.4578441,,,,,,,,,,,,,, +2012,12,22,23,30,1.7350432,,,,,,,,,,,,,, +2012,12,23,0,30,1.6563126,,,,,,,,,,,,,, +2012,12,23,1,30,1.4293916,,,,,,,,,,,,,, +2012,12,23,2,30,0.9319216,,,,,,,,,,,,,, +2012,12,23,3,30,0.16909006,,,,,,,,,,,,,, +2012,12,23,4,30,0.90946895,,,,,,,,,,,,,, +2012,12,23,5,30,1.369174,,,,,,,,,,,,,, +2012,12,23,6,30,1.3894203,,,,,,,,,,,,,, +2012,12,23,7,30,1.112066,,,,,,,,,,,,,, +2012,12,23,8,30,0.64650595,,,,,,,,,,,,,, +2012,12,23,9,30,0.15121928,,,,,,,,,,,,,, +2012,12,23,10,30,0.42516318,,,,,,,,,,,,,, +2012,12,23,11,30,0.8254442,,,,,,,,,,,,,, +2012,12,23,12,30,0.93515587,,,,,,,,,,,,,, +2012,12,23,13,30,0.7073265,,,,,,,,,,,,,, +2012,12,23,14,30,0.25587294,,,,,,,,,,,,,, +2012,12,23,15,30,0.3589274,,,,,,,,,,,,,, +2012,12,23,16,30,0.86655015,,,,,,,,,,,,,, +2012,12,23,17,30,1.1791672,,,,,,,,,,,,,, +2012,12,23,18,30,1.2742101,,,,,,,,,,,,,, +2012,12,23,19,30,1.0933251,,,,,,,,,,,,,, +2012,12,23,20,30,0.5933287,,,,,,,,,,,,,, +2012,12,23,21,30,0.12444635,,,,,,,,,,,,,, +2012,12,23,22,30,0.9232251,,,,,,,,,,,,,, +2012,12,23,23,30,1.5670382,,,,,,,,,,,,,, +2012,12,24,0,30,1.8027022,,,,,,,,,,,,,, +2012,12,24,1,30,1.7266448,,,,,,,,,,,,,, +2012,12,24,2,30,1.5045261,,,,,,,,,,,,,, +2012,12,24,3,30,0.9350971,,,,,,,,,,,,,, +2012,12,24,4,30,0.1724062,,,,,,,,,,,,,, +2012,12,24,5,30,1.0253221,,,,,,,,,,,,,, +2012,12,24,6,30,1.5001576,,,,,,,,,,,,,, +2012,12,24,7,30,1.5738564,,,,,,,,,,,,,, +2012,12,24,8,30,1.3639042,,,,,,,,,,,,,, +2012,12,24,9,30,0.93588626,,,,,,,,,,,,,, +2012,12,24,10,30,0.3760336,,,,,,,,,,,,,, +2012,12,24,11,30,0.26218188,,,,,,,,,,,,,, +2012,12,24,12,30,0.75315195,,,,,,,,,,,,,, +2012,12,24,13,30,0.886083,,,,,,,,,,,,,, +2012,12,24,14,30,0.68561256,,,,,,,,,,,,,, +2012,12,24,15,30,0.3162024,,,,,,,,,,,,,, +2012,12,24,16,30,0.21818466,,,,,,,,,,,,,, +2012,12,24,17,30,0.67512,,,,,,,,,,,,,, +2012,12,24,18,30,1.0251777,,,,,,,,,,,,,, +2012,12,24,19,30,1.1538182,,,,,,,,,,,,,, +2012,12,24,20,30,0.9638976,,,,,,,,,,,,,, +2012,12,24,21,30,0.44546112,,,,,,,,,,,,,, +2012,12,24,22,30,0.29551485,,,,,,,,,,,,,, +2012,12,24,23,30,1.1082184,,,,,,,,,,,,,, +2012,12,25,0,30,1.7112474,,,,,,,,,,,,,, +2012,12,25,1,30,1.8932451,,,,,,,,,,,,,, +2012,12,25,2,30,1.8020538,,,,,,,,,,,,,, +2012,12,25,3,30,1.5304811,,,,,,,,,,,,,, +2012,12,25,4,30,0.82731724,,,,,,,,,,,,,, +2012,12,25,5,30,0.33556128,,,,,,,,,,,,,, +2012,12,25,6,30,1.259771,,,,,,,,,,,,,, +2012,12,25,7,30,1.7330055,,,,,,,,,,,,,, +2012,12,25,8,30,1.8255771,,,,,,,,,,,,,, +2012,12,25,9,30,1.6107843,,,,,,,,,,,,,, +2012,12,25,10,30,1.1215419,,,,,,,,,,,,,, +2012,12,25,11,30,0.44470906,,,,,,,,,,,,,, +2012,12,25,12,30,0.30033147,,,,,,,,,,,,,, +2012,12,25,13,30,0.8251702,,,,,,,,,,,,,, +2012,12,25,14,30,0.9303011,,,,,,,,,,,,,, +2012,12,25,15,30,0.7391721,,,,,,,,,,,,,, +2012,12,25,16,30,0.41322488,,,,,,,,,,,,,, +2012,12,25,17,30,0.13911708,,,,,,,,,,,,,, +2012,12,25,18,30,0.61260116,,,,,,,,,,,,,, +2012,12,25,19,30,1.0048339,,,,,,,,,,,,,, +2012,12,25,20,30,1.1162194,,,,,,,,,,,,,, +2012,12,25,21,30,0.86109006,,,,,,,,,,,,,, +2012,12,25,22,30,0.276592,,,,,,,,,,,,,, +2012,12,25,23,30,0.5265774,,,,,,,,,,,,,, +2012,12,26,0,30,1.3502867,,,,,,,,,,,,,, +2012,12,26,1,30,1.8845301,,,,,,,,,,,,,, +2012,12,26,2,30,1.9909881,,,,,,,,,,,,,, +2012,12,26,3,30,1.8519971,,,,,,,,,,,,,, +2012,12,26,4,30,1.4663675,,,,,,,,,,,,,, +2012,12,26,5,30,0.5838932,,,,,,,,,,,,,, +2012,12,26,6,30,0.67075914,,,,,,,,,,,,,, +2012,12,26,7,30,1.593084,,,,,,,,,,,,,, +2012,12,26,8,30,2.02019,,,,,,,,,,,,,, +2012,12,26,9,30,2.0636897,,,,,,,,,,,,,, +2012,12,26,10,30,1.7511959,,,,,,,,,,,,,, +2012,12,26,11,30,1.1206958,,,,,,,,,,,,,, +2012,12,26,12,30,0.30764878,,,,,,,,,,,,,, +2012,12,26,13,30,0.49886507,,,,,,,,,,,,,, +2012,12,26,14,30,0.9808444,,,,,,,,,,,,,, +2012,12,26,15,30,1.0206741,,,,,,,,,,,,,, +2012,12,26,16,30,0.813046,,,,,,,,,,,,,, +2012,12,26,17,30,0.4599557,,,,,,,,,,,,,, +2012,12,26,18,30,0.13805327,,,,,,,,,,,,,, +2012,12,26,19,30,0.7114486,,,,,,,,,,,,,, +2012,12,26,20,30,1.0892869,,,,,,,,,,,,,, +2012,12,26,21,30,1.1093041,,,,,,,,,,,,,, +2012,12,26,22,30,0.7356413,,,,,,,,,,,,,, +2012,12,26,23,30,0.06414558,,,,,,,,,,,,,, +2012,12,27,0,30,0.8369628,,,,,,,,,,,,,, +2012,12,27,1,30,1.6413647,,,,,,,,,,,,,, +2012,12,27,2,30,2.0653872,,,,,,,,,,,,,, +2012,12,27,3,30,2.0723891,,,,,,,,,,,,,, +2012,12,27,4,30,1.8460125,,,,,,,,,,,,,, +2012,12,27,5,30,1.282018,,,,,,,,,,,,,, +2012,12,27,6,30,0.23820905,,,,,,,,,,,,,, +2012,12,27,7,30,1.1288313,,,,,,,,,,,,,, +2012,12,27,8,30,1.9693073,,,,,,,,,,,,,, +2012,12,27,9,30,2.28124,,,,,,,,,,,,,, +2012,12,27,10,30,2.1969907,,,,,,,,,,,,,, +2012,12,27,11,30,1.7151874,,,,,,,,,,,,,, +2012,12,27,12,30,0.9188081,,,,,,,,,,,,,, +2012,12,27,13,30,0.03931398,,,,,,,,,,,,,, +2012,12,27,14,30,0.78050506,,,,,,,,,,,,,, +2012,12,27,15,30,1.1568899,,,,,,,,,,,,,, +2012,12,27,16,30,1.1056887,,,,,,,,,,,,,, +2012,12,27,17,30,0.8368942,,,,,,,,,,,,,, +2012,12,27,18,30,0.37860316,,,,,,,,,,,,,, +2012,12,27,19,30,0.31498963,,,,,,,,,,,,,, +2012,12,27,20,30,0.93121994,,,,,,,,,,,,,, +2012,12,27,21,30,1.207523,,,,,,,,,,,,,, +2012,12,27,22,30,1.0727575,,,,,,,,,,,,,, +2012,12,27,23,30,0.5446761,,,,,,,,,,,,,, +2012,12,28,0,30,0.2877285,,,,,,,,,,,,,, +2012,12,28,1,30,1.2208331,,,,,,,,,,,,,, +2012,12,28,2,30,1.9481701,,,,,,,,,,,,,, +2012,12,28,3,30,2.2204504,,,,,,,,,,,,,, +2012,12,28,4,30,2.1106884,,,,,,,,,,,,,, +2012,12,28,5,30,1.7520916,,,,,,,,,,,,,, +2012,12,28,6,30,0.95436734,,,,,,,,,,,,,, +2012,12,28,7,30,0.400908,,,,,,,,,,,,,, +2012,12,28,8,30,1.6405461,,,,,,,,,,,,,, +2012,12,28,9,30,2.3052678,,,,,,,,,,,,,, +2012,12,28,10,30,2.4343765,,,,,,,,,,,,,, +2012,12,28,11,30,2.1692524,,,,,,,,,,,,,, +2012,12,28,12,30,1.4958693,,,,,,,,,,,,,, +2012,12,28,13,30,0.5636828,,,,,,,,,,,,,, +2012,12,28,14,30,0.38063878,,,,,,,,,,,,,, +2012,12,28,15,30,1.0720801,,,,,,,,,,,,,, +2012,12,28,16,30,1.3017758,,,,,,,,,,,,,, +2012,12,28,17,30,1.1349887,,,,,,,,,,,,,, +2012,12,28,18,30,0.752421,,,,,,,,,,,,,, +2012,12,28,19,30,0.16158755,,,,,,,,,,,,,, +2012,12,28,20,30,0.6396095,,,,,,,,,,,,,, +2012,12,28,21,30,1.1836387,,,,,,,,,,,,,, +2012,12,28,22,30,1.2828197,,,,,,,,,,,,,, +2012,12,28,23,30,0.9603896,,,,,,,,,,,,,, +2012,12,29,0,30,0.26178962,,,,,,,,,,,,,, +2012,12,29,1,30,0.69813836,,,,,,,,,,,,,, +2012,12,29,2,30,1.6374747,,,,,,,,,,,,,, +2012,12,29,3,30,2.2183669,,,,,,,,,,,,,, +2012,12,29,4,30,2.314495,,,,,,,,,,,,,, +2012,12,29,5,30,2.0756822,,,,,,,,,,,,,, +2012,12,29,6,30,1.5335062,,,,,,,,,,,,,, +2012,12,29,7,30,0.48185268,,,,,,,,,,,,,, +2012,12,29,8,30,1.0067841,,,,,,,,,,,,,, +2012,12,29,9,30,2.115291,,,,,,,,,,,,,, +2012,12,29,10,30,2.520619,,,,,,,,,,,,,, +2012,12,29,11,30,2.4364574,,,,,,,,,,,,,, +2012,12,29,12,30,1.9818037,,,,,,,,,,,,,, +2012,12,29,13,30,1.1377373,,,,,,,,,,,,,, +2012,12,29,14,30,0.1352413,,,,,,,,,,,,,, +2012,12,29,15,30,0.776847,,,,,,,,,,,,,, +2012,12,29,16,30,1.3205049,,,,,,,,,,,,,, +2012,12,29,17,30,1.3789655,,,,,,,,,,,,,, +2012,12,29,18,30,1.0752852,,,,,,,,,,,,,, +2012,12,29,19,30,0.5459529,,,,,,,,,,,,,, +2012,12,29,20,30,0.23477249,,,,,,,,,,,,,, +2012,12,29,21,30,0.998391,,,,,,,,,,,,,, +2012,12,29,22,30,1.3782885,,,,,,,,,,,,,, +2012,12,29,23,30,1.2648858,,,,,,,,,,,,,, +2012,12,30,0,30,0.75284576,,,,,,,,,,,,,, +2012,12,30,1,30,0.11360959,,,,,,,,,,,,,, +2012,12,30,2,30,1.1574237,,,,,,,,,,,,,, +2012,12,30,3,30,2.018153,,,,,,,,,,,,,, +2012,12,30,4,30,2.3985085,,,,,,,,,,,,,, +2012,12,30,5,30,2.3171878,,,,,,,,,,,,,, +2012,12,30,6,30,1.9325832,,,,,,,,,,,,,, +2012,12,30,7,30,1.1619494,,,,,,,,,,,,,, +2012,12,30,8,30,0.21490929,,,,,,,,,,,,,, +2012,12,30,9,30,1.6198349,,,,,,,,,,,,,, +2012,12,30,10,30,2.46051,,,,,,,,,,,,,, +2012,12,30,11,30,2.575246,,,,,,,,,,,,,, +2012,12,30,12,30,2.2979085,,,,,,,,,,,,,, +2012,12,30,13,30,1.6750126,,,,,,,,,,,,,, +2012,12,30,14,30,0.6992261,,,,,,,,,,,,,, +2012,12,30,15,30,0.34813854,,,,,,,,,,,,,, +2012,12,30,16,30,1.1356553,,,,,,,,,,,,,, +2012,12,30,17,30,1.4935455,,,,,,,,,,,,,, +2012,12,30,18,30,1.3733197,,,,,,,,,,,,,, +2012,12,30,19,30,0.92785186,,,,,,,,,,,,,, +2012,12,30,20,30,0.26132327,,,,,,,,,,,,,, +2012,12,30,21,30,0.60957134,,,,,,,,,,,,,, +2012,12,30,22,30,1.2952645,,,,,,,,,,,,,, +2012,12,30,23,30,1.4625921,,,,,,,,,,,,,, +2012,12,31,0,30,1.1452478,,,,,,,,,,,,,, +2012,12,31,1,30,0.46553835,,,,,,,,,,,,,, +2012,12,31,2,30,0.5316762,,,,,,,,,,,,,, +2012,12,31,3,30,1.5886081,,,,,,,,,,,,,, +2012,12,31,4,30,2.2899947,,,,,,,,,,,,,, +2012,12,31,5,30,2.4501832,,,,,,,,,,,,,, +2012,12,31,6,30,2.2045972,,,,,,,,,,,,,, +2012,12,31,7,30,1.6543872,,,,,,,,,,,,,, +2012,12,31,8,30,0.65037763,,,,,,,,,,,,,, +2012,12,31,9,30,0.8383921,,,,,,,,,,,,,, +2012,12,31,10,30,2.12047,,,,,,,,,,,,,, +2012,12,31,11,30,2.620574,,,,,,,,,,,,,, +2012,12,31,12,30,2.4828808,,,,,,,,,,,,,, +2012,12,31,13,30,2.058798,,,,,,,,,,,,,, +2012,12,31,14,30,1.2911476,,,,,,,,,,,,,, +2012,12,31,15,30,0.23505875,,,,,,,,,,,,,, +2008,12,31,16,30,0.78573483,,,,,,,,,,,,,, +2008,12,31,17,30,1.423305,,,,,,,,,,,,,, +2008,12,31,18,30,1.5817568,,,,,,,,,,,,,, +2008,12,31,19,30,1.2973683,,,,,,,,,,,,,, +2008,12,31,20,30,0.7285456,,,,,,,,,,,,,, +2008,12,31,21,30,0.13518524,,,,,,,,,,,,,, +2008,12,31,22,30,0.93706787,,,,,,,,,,,,,, +2008,12,31,23,30,1.4786706,,,,,,,,,,,,,, diff --git a/resource_files/wind/-28.454864_114.551749_2024_openmeteo_archive_60min_local_tz.csv b/resource_files/wind/-28.454864_114.551749_2024_openmeteo_archive_60min_local_tz.csv new file mode 100644 index 000000000..6fc17bb5b --- /dev/null +++ b/resource_files/wind/-28.454864_114.551749_2024_openmeteo_archive_60min_local_tz.csv @@ -0,0 +1,8836 @@ +latitude,longitude,elevation,utc_offset_seconds,timezone,timezone_abbreviation +-28.43585205078125,114.54545593261719,71.0,28800,Australia/Perth,GMT+8 + +time,wind_speed_10m (m/s),wind_speed_100m (m/s),wind_direction_10m (deg),wind_direction_100m (deg),temperature_2m (degC),surface_pressure (hPa),precipitation (mm/h),relative_humidity_2m (unitless),is_day (percent) +2023-12-30 16:00:00,2.7802877,4.763402,232.3057,230.9645,20.8,1005.47546,0.0,90.28737,0.0 +2023-12-30 17:00:00,2.86007,4.7801676,233.53067,232.65057,20.85,1004.9811,0.0,90.01005,0.0 +2023-12-30 18:00:00,3.4409301,5.7801385,234.46223,232.73352,20.75,1004.8791,0.0,90.002846,0.0 +2023-12-30 19:00:00,4.0360875,6.652819,228.01286,227.43669,20.55,1004.7743,0.0,90.26981,0.0 +2023-12-30 20:00:00,4.4598207,7.1505246,222.27362,222.16582,20.75,1004.8791,0.0,88.60926,0.0 +2023-12-30 21:00:00,4.327817,7.029225,220.31403,219.80553,20.6,1005.07306,0.0,88.87449,0.0 +2023-12-30 22:00:00,4.4687805,7.017834,220.46214,220.95541,20.85,1005.77454,0.0,86.971245,1.0 +2023-12-30 23:00:00,4.9819674,6.4031243,218.48022,218.65984,22.2,1006.2092,0.0,78.337654,1.0 +2023-12-31 00:00:00,4.816638,6.0207973,221.63345,221.63345,23.45,1006.73987,0.0,70.15413,1.0 +2023-12-31 01:00:00,5.0990195,6.236986,221.82008,221.09941,24.35,1007.1613,0.0,66.8793,1.0 +2023-12-31 02:00:00,5.0931325,6.296825,223.4089,223.06943,25.15,1007.18335,0.0,62.170498,1.0 +2023-12-31 03:00:00,5.4451814,6.6483083,224.25603,223.7812,25.65,1007.1969,0.0,60.923904,1.0 +2023-12-31 04:00:00,5.5865912,6.7178864,225.72514,225.60301,26.0,1007.0084,0.0,60.240345,1.0 +2023-12-31 05:00:00,5.8898215,7.170077,229.82083,230.09216,26.0,1006.4132,0.0,62.35997,1.0 +2023-12-31 06:00:00,6.3031735,7.7833157,228.21558,227.08257,26.05,1005.91846,0.0,62.76333,1.0 +2023-12-31 07:00:00,6.529931,8.168843,220.0302,219.53612,25.9,1005.8152,0.0,62.337738,1.0 +2023-12-31 08:00:00,6.4899926,8.237719,213.6901,213.11134,25.2,1005.3,0.0,65.39256,1.0 +2023-12-31 09:00:00,6.400781,8.188406,208.96756,208.44283,24.45,1005.18024,0.0,67.5336,1.0 +2023-12-31 10:00:00,6.2241464,8.023092,203.6821,202.72977,23.7,1005.4574,0.0,70.422295,1.0 +2023-12-31 11:00:00,5.597321,7.4946647,198.75874,198.6768,22.7,1005.9255,0.0,75.75499,1.0 +2023-12-31 12:00:00,5.6320515,7.788453,196.50444,195.6423,22.05,1006.10565,0.0,80.05436,0.0 +2023-12-31 13:00:00,5.491812,7.7278714,190.49142,190.43742,21.45,1006.8823,0.0,82.52451,0.0 +2023-12-31 14:00:00,4.924429,7.0611615,192.90741,192.26476,21.1,1007.0709,0.0,86.18267,0.0 +2023-12-31 15:00:00,4.554119,7.071068,188.84174,188.13002,20.7,1007.0595,0.0,88.32867,0.0 +2023-12-31 16:00:00,4.9162993,7.623647,184.66678,184.5139,20.85,1006.96466,0.0,86.15829,0.0 +2023-12-31 17:00:00,4.604346,7.5059977,182.4895,182.29056,20.8,1006.26886,0.0,86.15338,0.0 +2023-12-31 18:00:00,4.7010636,7.6006575,178.78116,179.24617,20.6,1005.86646,0.0,89.15273,0.0 +2023-12-31 19:00:00,4.7518415,7.8638415,171.52895,172.69434,20.6,1005.569,0.0,89.992004,0.0 +2023-12-31 20:00:00,4.002499,6.963476,167.00539,167.56046,20.45,1005.26733,0.0,91.96863,0.0 +2023-12-31 21:00:00,3.2984846,6.139218,165.96373,167.77489,20.25,1005.36084,0.0,92.82157,0.0 +2023-12-31 22:00:00,3.710795,6.5115285,165.96373,169.3804,20.5,1005.86365,0.0,92.25849,1.0 +2023-12-31 23:00:00,4.2579336,5.67186,170.53775,170.8699,22.45,1006.2161,0.0,83.16008,1.0 +2024-01-01 00:00:00,4.501111,5.707889,178.727,176.98727,24.35,1006.36774,0.0,73.235176,1.0 +2024-01-01 01:00:00,4.8507733,6.0207973,188.29706,184.76355,26.0,1006.51245,0.0,65.35576,1.0 +2024-01-01 02:00:00,5.536244,6.7720013,200.07161,196.29411,26.75,1006.53253,0.0,64.90528,1.0 +2024-01-01 03:00:00,6.1717095,7.615773,206.98015,203.19861,27.3,1006.5474,0.0,62.06594,1.0 +2024-01-01 04:00:00,7.068239,8.969392,205.1148,202.27594,27.7,1006.1613,0.0,55.37373,1.0 +2024-01-01 05:00:00,7.788453,9.968951,195.6423,193.33926,28.2,1005.8773,0.0,49.53985,1.0 +2024-01-01 06:00:00,8.354639,10.720075,191.0409,188.58354,28.35,1005.8815,0.0,46.223347,1.0 +2024-01-01 07:00:00,8.631338,11.214723,190.00792,188.20227,27.4,1005.6575,0.0,51.909107,1.0 +2024-01-01 08:00:00,8.881442,11.761377,187.76508,185.85593,25.9,1005.51764,0.0,62.533733,1.0 +2024-01-01 09:00:00,8.620905,11.410959,183.99083,182.5113,24.75,1005.5852,0.0,67.593735,1.0 +2024-01-01 10:00:00,8.20061,11.200446,180.69868,179.48845,23.65,1005.75336,0.0,70.63466,1.0 +2024-01-01 11:00:00,8.009994,11.328283,177.13765,175.9505,22.25,1006.11127,0.0,74.73486,1.0 +2024-01-01 12:00:00,7.4545293,11.002727,173.06575,172.16457,21.4,1006.2859,0.0,79.714745,0.0 +2024-01-01 13:00:00,7.467262,11.130589,172.30405,171.21478,21.3,1006.5806,0.0,73.40047,0.0 +2024-01-01 14:00:00,7.2993145,10.965857,170.53775,170.02235,20.8,1006.7648,0.0,81.156166,0.0 +2024-01-01 15:00:00,6.726812,10.198039,168.85715,168.69011,20.4,1006.4558,0.0,84.77017,0.0 +2024-01-01 16:00:00,6.8249536,10.296116,169.0194,168.79924,20.2,1005.85516,0.0,85.01642,0.0 +2024-01-01 17:00:00,7.119691,10.787029,169.47926,169.31514,20.3,1005.3621,0.0,83.16997,0.0 +2024-01-01 18:00:00,7.0611615,10.728001,167.73524,168.16638,20.6,1005.17224,0.0,77.60865,0.0 +2024-01-01 19:00:00,6.9123073,10.5019045,165.76268,166.22838,20.9,1004.88324,0.0,74.27285,0.0 +2024-01-01 20:00:00,6.5734315,10.06628,166.80939,166.79207,20.95,1004.7856,0.0,72.64034,0.0 +2024-01-01 21:00:00,6.236986,9.806121,167.96942,168.23174,20.95,1004.7856,0.0,72.40854,0.0 +2024-01-01 22:00:00,6.1,9.4541,169.61119,169.641,21.1,1005.18646,0.0,74.54346,1.0 +2024-01-01 23:00:00,6.661081,8.994442,172.23492,171.6898,22.65,1005.428,0.0,67.81438,1.0 +2024-01-02 00:00:00,5.2630787,6.6483083,165.69969,164.2913,24.1,1005.56757,0.0,59.228016,1.0 +2024-01-02 01:00:00,5.345091,6.706713,162.58194,159.94382,24.75,1005.6844,0.0,50.2347,1.0 +2024-01-02 02:00:00,6.1008196,7.632169,179.06084,174.7377,26.25,1005.3286,0.0,44.48039,1.0 +2024-01-02 03:00:00,7.668768,9.617692,192.04256,188.97255,26.1,1004.9278,0.0,48.67024,1.0 +2024-01-02 04:00:00,9.289241,11.86634,194.33546,192.16219,25.45,1004.51337,0.0,52.915802,1.0 +2024-01-02 05:00:00,9.241753,11.747766,193.13403,191.78816,25.6,1003.92236,0.0,51.44401,1.0 +2024-01-02 06:00:00,8.876937,11.280514,194.34937,192.80426,25.85,1003.8301,0.0,51.343594,1.0 +2024-01-02 07:00:00,9.178235,11.968291,191.30989,189.61966,25.15,1003.41406,0.0,55.269012,1.0 +2024-01-02 08:00:00,8.657945,11.253888,186.63242,185.60918,24.85,1002.71155,0.0,56.80942,1.0 +2024-01-02 09:00:00,8.5,11.175867,188.79733,186.6798,24.5,1002.3054,0.0,62.22186,1.0 +2024-01-02 10:00:00,7.8638415,10.557462,187.30566,185.9805,24.0,1002.29156,0.0,66.17789,1.0 +2024-01-02 11:00:00,6.6910386,9.390421,189.46225,187.95743,23.15,1002.3671,0.0,72.34181,1.0 +2024-01-02 12:00:00,5.8008623,9.213577,180.98773,176.88922,23.05,1002.2655,0.0,76.04839,0.0 +2024-01-02 13:00:00,7.692204,12.020815,164.15686,163.0724,23.3,1002.47076,0.0,69.90495,0.0 +2024-01-02 14:00:00,7.17844,11.194642,161.31256,161.24126,22.95,1002.8577,0.0,71.62567,0.0 +2024-01-02 15:00:00,6.4257298,10.733592,159.02643,158.69415,22.8,1002.7544,0.0,73.89084,0.0 +2024-01-02 16:00:00,5.5036354,10.1965685,155.29759,153.18373,23.1,1002.465,0.0,63.919964,0.0 +2024-01-02 17:00:00,5.920304,10.615084,142.54935,137.29063,24.15,1002.09717,0.0,44.93044,0.0 +2024-01-02 18:00:00,6.6483083,10.9877205,133.7812,130.94055,24.35,1002.20184,0.0,46.79939,0.0 +2024-01-02 19:00:00,6.529931,11.0435505,130.0302,125.41714,23.9,1002.3879,0.0,49.359287,0.0 +2024-01-02 20:00:00,6.6030297,11.1139555,125.13428,120.256355,23.65,1002.6786,0.0,50.271786,0.0 +2024-01-02 21:00:00,6.9771056,11.555085,117.29949,113.459045,23.25,1003.0643,0.0,52.00758,0.0 +2024-01-02 22:00:00,7.2449985,11.609049,110.1859,107.03024,22.8,1003.8454,0.0,54.85789,1.0 +2024-01-02 23:00:00,7.955501,11.454257,104.56032,102.09474,23.85,1004.3703,0.0,52.84682,1.0 +2024-01-03 00:00:00,8.386298,11.584905,98.22664,96.94089,25.4,1004.7106,0.0,48.326183,1.0 +2024-01-03 01:00:00,7.746612,10.340696,101.16484,99.46225,27.6,1004.7701,0.0,42.447083,1.0 +2024-01-03 02:00:00,7.6118326,9.914131,99.8335,98.70214,29.6,1004.62506,0.0,36.46427,1.0 +2024-01-03 03:00:00,7.236712,9.338094,101.154625,99.865746,31.55,1004.27985,0.0,31.154144,1.0 +2024-01-03 04:00:00,6.9857,8.962701,103.24053,100.93378,33.3,1003.3331,0.0,26.336803,1.0 +2024-01-03 05:00:00,6.332456,8.149233,111.297424,104.2068,34.6,1002.573,0.0,22.53952,1.0 +2024-01-03 06:00:00,5.0931325,6.6850576,133.4089,124.641014,34.85,1001.98413,0.0,20.370222,1.0 +2024-01-03 07:00:00,4.837354,6.8242216,150.2552,145.14548,35.0,1001.39246,0.0,19.463575,1.0 +2024-01-03 08:00:00,6.2968245,8.683317,169.93938,165.32356,33.9,1000.86816,0.0,22.588383,1.0 +2024-01-03 09:00:00,7.3437047,10.983624,173.74606,169.50858,31.4,1000.9027,0.0,39.790394,1.0 +2024-01-03 10:00:00,6.926038,11.217843,175.03035,168.69011,29.7,1001.15564,0.0,53.48665,1.0 +2024-01-03 11:00:00,5.6885853,9.425497,169.8754,162.71841,28.7,1001.5258,0.0,56.49291,1.0 +2024-01-03 12:00:00,5.3,8.627862,148.10925,135.9391,29.45,1002.04193,0.0,37.875324,0.0 +2024-01-03 13:00:00,6.9999995,11.371895,126.86999,124.24909,30.55,1002.4677,0.0,19.657352,0.0 +2024-01-03 14:00:00,6.6603303,10.621204,131.34769,127.733116,29.35,1003.1304,0.0,21.061085,0.0 +2024-01-03 15:00:00,7.340981,11.676472,127.806595,123.8262,28.15,1003.3961,0.0,22.975538,0.0 +2024-01-03 16:00:00,8.450444,13.218926,110.79419,108.983315,27.35,1003.3747,0.0,26.432938,0.0 +2024-01-03 17:00:00,8.316851,13.160547,108.217186,106.78272,26.4,1003.34894,0.0,29.428024,0.0 +2024-01-03 18:00:00,8.420215,13.218548,105.852,104.456795,25.6,1003.5256,0.0,30.854763,0.0 +2024-01-03 19:00:00,8.041144,12.872451,100.750916,99.38908,24.75,1004.09735,0.0,32.567825,0.0 +2024-01-03 20:00:00,8.075271,12.788276,97.82899,96.73592,24.0,1004.4737,0.0,35.00775,0.0 +2024-01-03 21:00:00,8.130191,12.824976,94.93913,93.57626,23.35,1005.05084,0.0,38.179874,0.0 +2024-01-03 22:00:00,8.030566,12.514392,95.00056,92.74803,23.0,1005.7353,0.0,40.338253,1.0 +2024-01-03 23:00:00,9.313432,13.405969,93.07739,91.70978,24.05,1006.2604,0.0,39.42616,1.0 +2024-01-04 00:00:00,10.301942,14.308739,88.887634,87.99751,25.1,1006.38855,0.0,37.90643,1.0 +2024-01-04 01:00:00,9.319335,12.514392,93.691315,92.74803,27.7,1005.36774,0.0,32.40634,1.0 +2024-01-04 02:00:00,9.202173,12.20041,91.24534,90.46962,29.5,1005.01917,0.0,28.608877,1.0 +2024-01-04 03:00:00,8.602325,11.200446,91.33219,90.51155,31.55,1004.27985,0.0,24.105291,1.0 +2024-01-04 04:00:00,7.7103825,9.904544,92.97367,91.73567,33.4,1003.7325,0.0,20.70858,1.0 +2024-01-04 05:00:00,6.8183575,8.70919,94.205284,92.632385,34.85,1003.07544,0.0,18.460146,1.0 +2024-01-04 06:00:00,5.80517,7.5538073,100.92277,96.84268,35.9,1002.5069,0.0,16.833527,1.0 +2024-01-04 07:00:00,4.560702,5.95399,127.875046,119.14798,35.6,1001.80475,0.0,16.536215,1.0 +2024-01-04 08:00:00,4.967897,6.3126855,139.89915,130.50276,35.7,1001.41046,0.0,15.669406,1.0 +2024-01-04 09:00:00,5.3665633,6.9065185,153.43501,145.6196,35.05,1001.29456,0.0,16.074577,1.0 +2024-01-04 10:00:00,5.9506307,7.803204,155.15764,149.16223,33.6,1001.75354,0.0,17.426226,1.0 +2024-01-04 11:00:00,6.041523,8.459906,155.55606,147.06131,31.4,1002.3908,0.0,20.004469,1.0 +2024-01-04 12:00:00,6.0,9.350936,143.13002,131.53168,30.45,1003.0604,0.0,20.117556,0.0 +2024-01-04 13:00:00,5.500909,9.741663,152.96922,144.18875,27.0,1003.5637,0.0,48.440586,0.0 +2024-01-04 14:00:00,6.296825,10.463747,133.06943,128.4033,28.1,1003.79144,0.0,25.125982,0.0 +2024-01-04 15:00:00,7.2449985,11.859595,116.21132,114.40396,27.95,1003.6884,0.0,21.905268,0.0 +2024-01-04 16:00:00,8.032434,12.778107,108.886185,107.30062,27.05,1003.36646,0.0,25.105455,0.0 +2024-01-04 17:00:00,8.561542,13.439122,104.198586,102.89875,26.1,1003.2416,0.0,29.24425,0.0 +2024-01-04 18:00:00,8.766414,13.810142,101.18172,100.00792,25.35,1003.22107,0.0,31.747679,0.0 +2024-01-04 19:00:00,8.414867,13.923002,93.40637,93.2939,24.7,1003.69946,0.0,33.68456,0.0 +2024-01-04 20:00:00,8.448076,13.5624485,83.88459,84.49969,24.05,1004.1774,0.0,35.623257,0.0 +2024-01-04 21:00:00,8.620905,13.829317,86.00917,86.26868,23.5,1004.55896,0.0,37.70784,0.0 +2024-01-04 22:00:00,8.329466,13.254433,85.17932,84.805664,23.15,1004.946,0.0,39.570755,1.0 +2024-01-04 23:00:00,8.030566,11.7515955,84.99945,84.6291,24.3,1005.47375,0.0,38.062984,1.0 +2024-01-05 00:00:00,8.174351,11.214723,82.266495,81.79774,26.25,1005.52704,0.0,35.525475,1.0 +2024-01-05 01:00:00,6.8249536,8.884255,79.019394,78.31066,29.7,1004.92535,0.0,27.997152,1.0 +2024-01-05 02:00:00,5.8694124,7.4148498,81.1797,79.90256,32.15,1004.4937,0.0,23.696175,1.0 +2024-01-05 03:00:00,4.00125,4.90408,88.56794,87.66274,33.95,1003.9454,0.0,19.809546,1.0 +2024-01-05 04:00:00,2.3259406,2.828427,154.5367,135.0001,34.4,1003.5598,0.0,18.734476,1.0 +2024-01-05 05:00:00,6.1351447,7.9075913,199.0257,193.15755,33.8,1003.24677,0.0,24.124062,1.0 +2024-01-05 06:00:00,9.425497,12.757743,197.28159,193.60056,32.1,1003.0043,0.0,30.596258,1.0 +2024-01-05 07:00:00,10.316008,14.750255,191.7456,188.18495,30.5,1002.9624,0.0,35.426167,1.0 +2024-01-05 08:00:00,10.100495,14.000357,180.56726,179.59076,29.5,1002.936,0.0,35.845703,1.0 +2024-01-05 09:00:00,9.300538,13.230646,179.38396,176.09958,29.0,1002.8236,0.0,38.999725,1.0 +2024-01-05 10:00:00,8.329466,11.795762,175.17932,172.69434,27.0,1003.2661,0.0,49.223984,1.0 +2024-01-05 11:00:00,7.3979726,10.526157,166.71512,165.69969,25.45,1003.2239,0.0,54.640152,1.0 +2024-01-05 12:00:00,7.4946647,12.048652,161.3232,161.11382,24.5,1003.2973,0.0,59.511845,0.0 +2024-01-05 13:00:00,6.5551505,10.400001,158.52315,157.3801,24.4,1003.9888,0.0,57.8009,0.0 +2024-01-05 14:00:00,4.802083,8.848164,148.62704,145.59148,24.45,1003.79156,0.0,55.808064,0.0 +2024-01-05 15:00:00,4.6690474,9.295698,133.26433,130.2001,24.9,1003.40717,0.0,46.034996,0.0 +2024-01-05 16:00:00,4.992995,9.588014,122.73522,120.04128,26.4,1002.95215,0.0,27.759579,0.0 +2024-01-05 17:00:00,5.3712196,9.8234415,114.1791,112.12639,26.4,1002.4562,0.0,27.285038,0.0 +2024-01-05 18:00:00,5.7870545,10.440307,108.121956,106.699326,25.9,1002.34344,0.0,28.690958,0.0 +2024-01-05 19:00:00,6.2968245,11.146299,100.06063,99.293236,25.55,1002.2348,0.0,29.903471,0.0 +2024-01-05 20:00:00,6.6030297,11.403946,91.73567,91.50741,25.2,1002.52264,0.0,30.954374,0.0 +2024-01-05 21:00:00,6.8066144,11.815245,87.47394,87.089226,24.85,1002.8107,0.0,32.04326,0.0 +2024-01-05 22:00:00,7.034913,12.368509,84.2895,83.96684,24.65,1003.4005,0.0,32.763027,1.0 +2024-01-05 23:00:00,6.562012,12.233152,82.11695,81.538795,26.4,1003.7457,0.0,30.24337,1.0 +2024-01-06 00:00:00,7.4525166,10.2391405,78.38854,77.5926,28.75,1003.80896,0.0,27.551052,1.0 +2024-01-06 01:00:00,6.293648,8.190848,72.42865,72.22859,32.05,1003.1022,0.0,23.590385,1.0 +2024-01-06 02:00:00,4.3863425,5.5036354,65.77226,65.29759,34.8,1002.57806,0.0,19.153173,1.0 +2024-01-06 03:00:00,1.1,1.1401755,180.0,142.12495,35.0,1002.2854,0.0,17.15293,1.0 +2024-01-06 04:00:00,5.936329,7.169379,212.61923,210.1413,34.35,1001.77277,0.0,24.835928,1.0 +2024-01-06 05:00:00,7.602631,9.889894,206.56499,204.49188,32.85,1001.8332,0.0,30.204386,1.0 +2024-01-06 06:00:00,7.467262,10.220078,200.37651,196.48453,32.45,1001.8229,0.0,29.703478,1.0 +2024-01-06 07:00:00,7.3082147,10.022474,196.69933,192.09474,32.2,1001.4198,0.0,32.160183,1.0 +2024-01-06 08:00:00,7.4464755,10.554619,194.78278,189.81923,31.1,1001.1925,0.0,35.823853,1.0 +2024-01-06 09:00:00,7.1344237,9.904544,185.63058,181.73567,29.85,1001.2586,0.0,38.982964,1.0 +2024-01-06 10:00:00,7.302739,10.4043255,181.56932,178.34773,27.9,1001.70276,0.0,47.603165,1.0 +2024-01-06 11:00:00,6.4629717,9.124144,171.99536,170.53775,26.2,1001.95483,0.0,52.09794,1.0 +2024-01-06 12:00:00,6.281719,9.656605,166.18495,164.38055,24.9,1002.4153,0.0,55.56207,0.0 +2024-01-06 13:00:00,5.903389,9.394147,169.26115,168.33125,23.6,1003.1732,0.0,66.51505,0.0 +2024-01-06 14:00:00,5.770615,9.355747,171.02745,169.53088,23.45,1003.2684,0.0,62.983902,0.0 +2024-01-06 15:00:00,4.341659,7.531268,172.05663,169.28693,22.9,1002.757,0.0,68.51379,0.0 +2024-01-06 16:00:00,3.4785054,6.203225,161.56496,159.22766,22.1,1002.2391,0.0,76.377495,0.0 +2024-01-06 17:00:00,2.505993,5.0537114,151.38963,152.92801,21.5,1001.62726,0.0,80.73759,0.0 +2024-01-06 18:00:00,2.0124612,4.5177426,153.43501,152.30061,21.0,1001.1173,0.0,82.9904,0.0 +2024-01-06 19:00:00,1.8788295,4.565085,154.7989,151.1893,20.55,1001.10474,0.0,84.51986,0.0 +2024-01-06 20:00:00,1.7691805,4.172529,132.70937,134.02907,19.8,1001.3812,0.0,83.11128,0.0 +2024-01-06 21:00:00,2.4596748,5.1078367,116.56499,113.05133,19.8,1001.48035,0.0,67.45458,0.0 +2024-01-06 22:00:00,2.9410882,5.333854,107.818985,96.458725,20.85,1002.2041,0.0,45.9927,1.0 +2024-01-06 23:00:00,2.4698179,5.0447993,158.62932,103.76081,26.25,1002.74963,0.0,30.6166,1.0 +2024-01-07 00:00:00,2.408319,3.1144822,175.23645,137.60262,29.25,1002.92944,0.0,27.222633,1.0 +2024-01-07 01:00:00,2.6019223,2.9410882,182.20255,162.18102,31.45,1002.6897,0.0,25.758884,1.0 +2024-01-07 02:00:00,3.7161808,4.0792155,203.80595,191.30989,33.2,1002.4376,0.0,27.1942,1.0 +2024-01-07 03:00:00,5.5758405,6.621178,212.54999,205.01686,32.35,1002.2173,0.0,37.46476,1.0 +2024-01-07 04:00:00,7.392564,9.534149,210.03319,204.14554,31.0,1001.88446,0.0,40.44839,1.0 +2024-01-07 05:00:00,7.2235723,9.867117,201.94876,197.70052,31.05,1001.58795,0.0,35.81,1.0 +2024-01-07 06:00:00,7.0342026,9.963935,194.82652,190.40765,31.1,1001.1925,0.0,38.5797,1.0 +2024-01-07 07:00:00,7.6902537,10.7354555,192.77124,189.11128,30.55,1000.4836,0.0,42.573524,1.0 +2024-01-07 08:00:00,7.4330344,10.493807,190.85637,187.66672,29.3,999.9546,0.0,47.67267,1.0 +2024-01-07 09:00:00,6.9584484,9.019978,187.43132,183.814,29.2,999.8529,0.0,49.95852,1.0 +2024-01-07 10:00:00,6.8117547,9.602083,183.3664,178.80653,28.05,1000.11975,0.0,51.258633,1.0 +2024-01-07 11:00:00,5.9,8.63713,180.0,174.68555,26.65,1000.37994,0.0,56.885715,1.0 +2024-01-07 12:00:00,5.885576,10.700468,170.21767,164.27519,25.55,1000.74695,0.0,56.798813,0.0 +2024-01-07 13:00:00,5.0249376,9.321481,185.7105,170.73985,25.3,1001.4344,0.0,54.079884,0.0 +2024-01-07 14:00:00,4.148494,8.105554,195.37631,177.87895,24.65,1001.31757,0.0,62.452995,0.0 +2024-01-07 15:00:00,3.1400635,6.846897,189.16228,173.29025,24.5,1001.1151,0.0,64.63043,0.0 +2024-01-07 16:00:00,3.7,7.21734,198.92474,183.97241,24.25,1000.9098,0.0,66.64858,0.0 +2024-01-07 17:00:00,3.2557642,6.600757,190.6196,179.13197,23.85,1000.6012,0.0,69.78956,0.0 +2024-01-07 18:00:00,3.0805843,6.4031243,193.13403,178.21013,23.2,1000.2858,0.0,76.31008,0.0 +2024-01-07 19:00:00,1.7720045,4.8093657,196.38962,176.42374,22.35,1000.1631,0.0,82.632545,0.0 +2024-01-07 20:00:00,1.746425,4.119466,203.6294,185.5721,21.7,1000.44244,0.0,87.59211,0.0 +2024-01-07 21:00:00,1.9235383,4.6010866,188.97255,181.24533,21.75,1000.5432,0.0,88.41581,0.0 +2024-01-07 22:00:00,2.0880613,4.8052053,163.30067,167.98854,21.9,1000.94403,0.0,86.52875,1.0 +2024-01-07 23:00:00,2.8231187,5.3310413,157.06787,156.80139,24.65,1001.11914,0.0,67.36203,1.0 +2024-01-08 00:00:00,2.7,3.4234486,180.0,173.29025,27.8,1001.00586,0.0,50.38771,1.0 +2024-01-08 01:00:00,4.022437,4.837354,214.8754,209.7448,28.35,1000.9215,0.0,60.215534,1.0 +2024-01-08 02:00:00,5.0990195,6.220129,221.82008,216.50153,28.65,1000.83014,0.0,59.175175,1.0 +2024-01-08 03:00:00,5.672742,7.140028,220.71075,217.03047,28.9,1000.9359,0.0,52.952984,1.0 +2024-01-08 04:00:00,6.046487,7.666159,214.21576,210.57915,29.6,1000.6569,0.0,50.69492,1.0 +2024-01-08 05:00:00,6.8007355,8.736704,216.02747,213.32631,28.7,1000.7322,0.0,56.14198,1.0 +2024-01-08 06:00:00,7.6216793,9.822932,218.07283,215.46996,27.7,1000.70544,0.0,62.54115,1.0 +2024-01-08 07:00:00,7.184706,9.349332,214.7961,212.33017,26.9,1000.98175,0.0,66.5657,1.0 +2024-01-08 08:00:00,7.291776,9.625487,205.15927,203.90205,25.8,1001.05115,0.0,67.80296,1.0 +2024-01-08 09:00:00,7.31642,9.585927,201.65605,200.13638,24.95,1001.1273,0.0,72.88494,1.0 +2024-01-08 10:00:00,7.05762,9.330059,200.74615,199.40607,23.95,1001.49677,0.0,78.34688,1.0 +2024-01-08 11:00:00,6.360031,8.516455,196.44046,195.66823,23.0,1002.2638,0.0,81.69061,1.0 +2024-01-08 12:00:00,6.332456,8.902247,195.5726,194.97292,22.45,1002.6455,0.0,83.16008,0.0 +2024-01-08 13:00:00,5.59017,7.990619,190.3048,188.63705,21.8,1003.3215,0.0,84.91871,0.0 +2024-01-08 14:00:00,5.632051,8.030566,186.1154,185.00055,21.65,1003.71423,0.0,85.70066,0.0 +2024-01-08 15:00:00,5.8077536,8.705171,182.96088,181.97488,21.3,1003.6052,0.0,87.55684,0.0 +2024-01-08 16:00:00,6.0033326,9.002222,181.9091,181.273,21.1,1003.2029,0.0,86.723015,0.0 +2024-01-08 17:00:00,6.3007936,9.4,180.90936,180.0,21.15,1002.7082,0.0,83.26905,0.0 +2024-01-08 18:00:00,6.400781,9.500526,180.89516,180.60307,20.95,1002.50446,0.0,82.984505,0.0 +2024-01-08 19:00:00,6.2128897,9.219544,176.30869,176.26868,20.75,1002.3004,0.0,82.43981,0.0 +2024-01-08 20:00:00,6.328507,9.044888,174.55975,174.2895,20.85,1002.3033,0.0,80.39756,0.0 +2024-01-08 21:00:00,6.412488,9.013878,176.42374,176.82024,20.85,1002.50165,0.0,80.14393,0.0 +2024-01-08 22:00:00,6.503076,9.004998,178.23764,178.0909,21.0,1003.2,0.0,78.16227,1.0 +2024-01-08 23:00:00,6.6030297,8.805112,178.26433,178.04753,21.65,1003.61505,0.0,73.928764,1.0 +2024-01-09 00:00:00,6.600757,8.605231,179.13197,178.00217,23.2,1003.7573,0.0,64.96941,1.0 +2024-01-09 01:00:00,6.449806,8.338465,187.12492,185.50539,23.6,1004.1651,0.0,64.64253,1.0 +2024-01-09 02:00:00,6.5924196,8.188407,189.60513,188.42688,25.0,1004.0052,0.0,57.39329,1.0 +2024-01-09 03:00:00,6.9123073,8.6122,194.23732,192.74529,25.3,1003.815,0.0,60.269066,1.0 +2024-01-09 04:00:00,7.5286117,9.4371605,196.9909,195.36168,25.45,1003.42224,0.0,60.11326,1.0 +2024-01-09 05:00:00,7.912016,9.920181,196.14441,194.59662,25.5,1003.2252,0.0,59.36848,1.0 +2024-01-09 06:00:00,8.20061,10.404807,195.56157,193.90271,25.6,1003.02966,0.0,59.3919,1.0 +2024-01-09 07:00:00,8.246211,10.575916,194.03627,193.11644,25.15,1002.62054,0.0,62.367092,1.0 +2024-01-09 08:00:00,8.354639,10.867382,191.0409,190.069,24.6,1002.20874,0.0,64.448105,1.0 +2024-01-09 09:00:00,8.657945,11.363539,186.63242,186.06169,23.9,1001.99115,0.0,68.27869,1.0 +2024-01-09 10:00:00,8.509407,11.410959,182.69423,182.5113,23.05,1002.3646,0.0,71.64384,1.0 +2024-01-09 11:00:00,8.1,11.200446,180.0,179.48845,22.05,1002.6343,0.0,76.85219,1.0 +2024-01-09 12:00:00,7.0007143,10.0,180.81844,180.0,21.3,1002.8117,0.0,80.711296,0.0 +2024-01-09 13:00:00,6.6068144,9.912618,177.39749,177.1088,20.85,1003.29504,0.0,82.45195,0.0 +2024-01-09 14:00:00,6.7742157,10.309704,171.51114,171.6342,20.6,1003.387,0.0,84.25974,0.0 +2024-01-09 15:00:00,6.432729,9.904039,168.34074,168.34973,20.5,1003.1858,0.0,85.58451,0.0 +2024-01-09 16:00:00,6.041523,9.631718,167.57407,167.40668,20.25,1002.7822,0.0,87.73858,0.0 +2024-01-09 17:00:00,5.7271285,9.121951,167.90526,167.33495,20.2,1002.1856,0.0,88.28685,0.0 +2024-01-09 18:00:00,5.824946,9.317188,168.11136,167.6046,20.15,1001.49005,0.0,88.005875,0.0 +2024-01-09 19:00:00,5.846366,9.219544,167.1523,167.4712,20.1,1000.9926,0.0,88.00155,0.0 +2024-01-09 20:00:00,5.0921507,8.381527,160.49747,162.64589,20.1,1000.9926,0.0,87.72546,0.0 +2024-01-09 21:00:00,3.9357338,6.894201,152.78398,156.0375,19.7,1001.2792,0.0,90.20975,0.0 +2024-01-09 22:00:00,2.8017852,5.3712196,145.17545,151.0491,19.25,1001.66296,0.0,92.477585,1.0 +2024-01-09 23:00:00,2.5806975,3.7215588,144.46223,149.30035,20.95,1002.3061,0.0,82.984505,1.0 +2024-01-10 00:00:00,2.2203605,2.7658634,172.23492,167.4712,23.35,1002.5712,0.0,68.38575,1.0 +2024-01-10 01:00:00,2.7166157,3.3,186.3401,180.0,26.2,1002.2525,0.0,51.434456,1.0 +2024-01-10 02:00:00,3.7,4.3931766,198.92474,191.82146,28.4,1002.1132,0.0,45.35708,1.0 +2024-01-10 03:00:00,5.5470715,6.670832,207.95087,203.87529,28.65,1001.82214,0.0,49.657734,1.0 +2024-01-10 04:00:00,6.8883963,8.5,207.68097,205.05759,28.1,1001.41064,0.0,49.98772,1.0 +2024-01-10 05:00:00,7.0007143,8.825531,201.80147,199.87227,27.9,1001.00836,0.0,48.215546,1.0 +2024-01-10 06:00:00,7.3736014,9.360556,200.64706,198.04791,27.85,1000.6104,0.0,46.984207,1.0 +2024-01-10 07:00:00,7.4040527,9.507892,196.47696,194.62091,27.35,1000.2996,0.0,50.27029,1.0 +2024-01-10 08:00:00,7.495332,9.669023,193.1092,190.7288,26.8,999.5902,0.0,53.940907,1.0 +2024-01-10 09:00:00,6.760177,8.836288,187.65056,185.19434,25.85,999.4656,0.0,58.332935,1.0 +2024-01-10 10:00:00,6.6910386,9.066973,189.46225,186.96815,24.2,999.4204,0.0,69.2018,1.0 +2024-01-10 11:00:00,5.6142673,7.602631,184.08554,181.5074,23.1,999.9854,0.0,75.58181,1.0 +2024-01-10 12:00:00,5.308484,8.0,183.23964,180.0,22.25,1000.06104,0.0,80.33216,0.0 +2024-01-10 13:00:00,5.508176,8.4,183.12207,180.0,21.9,1000.24976,0.0,81.807915,0.0 +2024-01-10 14:00:00,5.423099,8.602325,185.29,181.33218,21.8,1000.34607,0.0,79.76968,0.0 +2024-01-10 15:00:00,6.500769,9.802041,180.88138,178.83089,21.65,1000.14374,0.0,79.000244,0.0 +2024-01-10 16:00:00,5.821512,9.254189,175.07298,173.79665,21.2,999.9327,0.0,82.49432,0.0 +2024-01-10 17:00:00,5.8034477,9.019978,178.02512,176.186,20.95,999.7275,0.0,86.168015,0.0 +2024-01-10 18:00:00,5.770615,8.926926,171.02745,170.3267,20.75,999.7218,0.0,88.886475,0.0 +2024-01-10 19:00:00,5.3935146,8.649278,169.31514,169.3397,20.55,999.4187,0.0,90.26981,0.0 +2024-01-10 20:00:00,5.333854,8.570881,173.54128,172.62633,20.4,999.6126,0.0,91.3938,0.0 +2024-01-10 21:00:00,5.408327,8.720665,176.82024,176.05489,20.45,999.7134,0.0,92.832115,0.0 +2024-01-10 22:00:00,5.5226803,8.736704,174.80566,174.74629,20.75,1000.31683,0.0,90.84821,1.0 +2024-01-10 23:00:00,6.873136,9.390421,171.6342,172.04257,22.0,1000.6493,0.0,81.82038,1.0 +2024-01-11 00:00:00,7.0028567,9.300538,181.63654,180.61604,23.5,1000.5915,0.0,74.24119,1.0 +2024-01-11 01:00:00,6.661081,8.448076,187.76508,186.1154,24.4,1001.0131,0.0,70.113,1.0 +2024-01-11 02:00:00,6.760177,8.547514,187.65056,186.04399,25.45,1000.94244,0.0,65.65015,1.0 +2024-01-11 03:00:00,7.0092797,8.786353,194.03627,191.82146,26.15,1000.46564,0.0,62.785374,1.0 +2024-01-11 04:00:00,7.3736014,9.202717,200.64706,199.0257,26.05,1000.26447,0.0,63.753475,1.0 +2024-01-11 05:00:00,7.738863,9.757561,205.2405,204.20097,25.75,1000.2563,0.0,66.537964,1.0 +2024-01-11 06:00:00,7.7472577,9.730879,203.58704,202.34816,25.7,1000.1559,0.0,65.70223,1.0 +2024-01-11 07:00:00,7.7472577,9.916148,203.58704,201.90877,25.3,999.6489,0.0,66.862816,1.0 +2024-01-11 08:00:00,7.31642,9.433981,201.65605,201.12479,24.8,999.2387,0.0,69.53406,1.0 +2024-01-11 09:00:00,7.116881,9.108238,199.70807,199.23076,24.15,999.31995,0.0,73.88823,1.0 +2024-01-11 10:00:00,7.05195,9.20489,198.17812,197.05705,23.2,999.78986,0.0,77.99491,1.0 +2024-01-11 11:00:00,6.963476,9.394147,192.43954,191.66875,22.3,1000.0624,0.0,81.85773,1.0 +2024-01-11 12:00:00,6.661081,9.476286,187.76508,187.27492,21.6,1000.53876,0.0,85.162895,0.0 +2024-01-11 13:00:00,5.813777,8.309633,183.94511,182.75905,21.1,1000.8226,0.0,85.64528,0.0 +2024-01-11 14:00:00,5.4332314,7.8409185,186.3401,185.85593,21.0,1000.8197,0.0,86.442894,0.0 +2024-01-11 15:00:00,4.704253,7.602631,182.4366,181.5074,20.8,1000.7149,0.0,85.883804,0.0 +2024-01-11 16:00:00,4.604346,7.5059977,177.5105,177.70944,20.5,1000.508,0.0,89.424126,0.0 +2024-01-11 17:00:00,4.4011364,7.4027023,178.69807,178.45187,20.35,999.90894,0.0,89.133224,0.0 +2024-01-11 18:00:00,4.6270943,7.752419,186.20335,186.66656,20.5,999.2187,0.0,87.76043,0.0 +2024-01-11 19:00:00,4.110961,7.1175838,184.18483,184.02818,20.45,999.01917,0.0,89.141045,0.0 +2024-01-11 20:00:00,3.522783,6.2289643,173.4803,174.47255,20.3,998.7172,0.0,90.81832,0.0 +2024-01-11 21:00:00,3.206244,5.9076223,183.57626,182.91078,20.2,998.9128,0.0,91.38123,0.0 +2024-01-11 22:00:00,2.9017239,5.3037724,181.97488,182.16103,20.4,999.51337,0.0,90.259285,1.0 +2024-01-11 23:00:00,3.6496572,4.652956,189.46225,188.65247,22.15,999.95905,0.0,80.82279,1.0 +2024-01-12 00:00:00,3.0083218,3.7,201.4478,198.92474,23.55,999.7004,0.0,74.01776,1.0 +2024-01-12 01:00:00,2.9546573,3.51141,203.9625,199.9832,24.8,999.93304,0.0,69.31721,1.0 +2024-01-12 02:00:00,2.9732137,3.3241541,227.72638,226.2188,25.8,999.76166,0.0,66.7559,1.0 +2024-01-12 03:00:00,4.159327,4.7413077,242.81897,242.35411,26.35,999.7767,0.0,65.63276,1.0 +2024-01-12 04:00:00,4.88467,5.8309517,247.1094,247.8336,26.6,999.18805,0.0,63.475418,1.0 +2024-01-12 05:00:00,5.515433,6.6850576,247.61981,248.03938,26.75,998.89453,0.0,63.310513,1.0 +2024-01-12 06:00:00,5.3665633,6.574192,243.43501,243.82477,26.5,998.59045,0.0,64.85252,1.0 +2024-01-12 07:00:00,5.4037023,6.529931,231.009,229.9698,26.35,998.09033,0.0,67.28347,1.0 +2024-01-12 08:00:00,5.7688823,7.1021123,213.6901,212.34741,25.35,998.16223,0.0,70.29106,1.0 +2024-01-12 09:00:00,5.7775426,7.31642,203.45905,201.65605,24.85,997.9504,0.0,69.76099,1.0 +2024-01-12 10:00:00,5.8872743,7.7162166,200.89784,198.90466,23.5,998.5086,0.0,76.11925,1.0 +2024-01-12 11:00:00,5.7584724,7.7491937,200.32323,199.60417,22.5,998.97705,0.0,84.46686,1.0 +2024-01-12 12:00:00,4.9335585,6.8308125,197.70052,197.90454,21.85,999.3558,0.0,88.42406,0.0 +2024-01-12 13:00:00,5.2773094,7.595393,189.81923,189.0902,21.35,999.9368,0.0,86.20703,0.0 +2024-01-12 14:00:00,4.304649,6.503076,177.33705,178.23764,21.35,999.9368,0.0,87.56126,0.0 +2024-01-12 15:00:00,2.8792362,5.1546097,159.67677,161.91646,20.6,999.7174,0.0,92.83996,0.0 +2024-01-12 16:00:00,1.5297059,3.5693135,168.69011,168.69011,20.1,999.0091,0.0,94.86132,0.0 +2024-01-12 17:00:00,1.9924859,2.7892652,162.47433,165.4655,19.2,998.58704,0.0,96.022415,0.0 +2024-01-12 18:00:00,1.7720045,2.376973,196.38962,194.62091,19.25,997.99347,0.0,94.82876,0.0 +2024-01-12 19:00:00,2.408319,2.9068882,221.63345,220.81499,18.65,997.2824,0.0,96.00604,0.0 +2024-01-12 20:00:00,2.4758837,2.8999999,226.63654,226.39711,18.45,997.27673,0.0,96.60608,0.0 +2024-01-12 21:00:00,1.8384775,3.9623227,224.9999,227.04541,19.7,997.4113,0.0,95.44005,0.0 +2024-01-12 22:00:00,1.6155494,3.577709,201.80147,206.56499,20.2,998.4169,0.0,95.456955,1.0 +2024-01-12 23:00:00,2.6400757,3.2802439,217.30403,217.56866,21.8,998.85834,0.0,87.32941,1.0 +2024-01-13 00:00:00,2.6172504,3.1827662,226.54811,226.27295,23.35,998.8021,0.0,78.50382,1.0 +2024-01-13 01:00:00,3.3421547,4.060788,218.92755,217.99878,24.65,999.2346,0.0,71.263,1.0 +2024-01-13 02:00:00,3.8209944,4.4553337,227.12111,225.90929,25.5,999.2575,0.0,69.02067,1.0 +2024-01-13 03:00:00,4.4407206,5.220153,234.16226,233.56905,26.0,998.8746,0.0,66.79651,1.0 +2024-01-13 04:00:00,4.743417,5.742821,235.30478,234.92616,26.35,998.5863,0.0,65.63276,1.0 +2024-01-13 05:00:00,4.992995,5.990826,237.26477,236.57516,26.55,998.5916,0.0,65.47068,1.0 +2024-01-13 06:00:00,5.077401,6.074537,237.87503,237.09476,26.5,998.19366,0.0,65.86817,1.0 +2024-01-13 07:00:00,5.269725,6.463745,236.61147,235.08052,26.15,997.9858,0.0,67.66209,1.0 +2024-01-13 08:00:00,4.9648767,6.021628,235.66972,234.46223,25.7,997.7753,0.0,71.232895,1.0 +2024-01-13 09:00:00,4.8259716,5.882177,235.9806,234.6887,25.05,997.65814,0.0,73.81096,1.0 +2024-01-13 10:00:00,4.327817,5.456189,229.68597,228.7154,24.0,997.8281,0.0,79.57509,1.0 +2024-01-13 11:00:00,3.679674,4.7423625,222.79738,222.43619,22.95,998.1961,0.0,85.56587,1.0 +2024-01-13 12:00:00,3.4655447,4.6669044,226.16905,224.9999,22.55,998.5818,0.0,87.66661,0.0 +2024-01-13 13:00:00,3.9597979,5.4451814,224.9999,224.25603,21.75,999.1547,0.0,87.86884,0.0 +2024-01-13 14:00:00,3.275668,4.614109,211.26367,209.8988,21.75,999.2539,0.0,87.32489,0.0 +2024-01-13 15:00:00,2.8792362,3.8275316,200.32323,199.8553,21.85,999.455,0.0,86.793205,0.0 +2024-01-13 16:00:00,2.7784889,3.6715121,210.25635,209.35765,21.9,998.9604,0.0,86.26035,0.0 +2024-01-13 17:00:00,2.9068882,4.0459857,229.18501,230.01317,21.5,998.35425,0.0,88.39515,0.0 +2024-01-13 18:00:00,3.2202482,4.8600416,233.84172,233.3658,21.45,997.6585,0.0,89.21868,0.0 +2024-01-13 19:00:00,2.8999999,4.8795495,226.39711,225.83023,21.05,997.74634,0.0,91.7186,0.0 +2024-01-13 20:00:00,3.1890438,4.8270073,221.18582,219.95749,21.35,997.854,0.0,90.04597,0.0 +2024-01-13 21:00:00,3.4999998,5.0,216.86998,216.86998,21.45,997.95605,0.0,89.21868,0.0 +2024-01-13 22:00:00,3.4,5.0089917,208.07239,206.05344,21.45,998.2536,0.0,88.94202,1.0 +2024-01-13 23:00:00,3.8910153,4.8754487,205.90645,205.51382,22.35,998.477,0.0,82.89014,1.0 +2024-01-14 00:00:00,3.7443287,4.604346,214.11452,214.3804,23.05,998.49646,0.0,77.972916,1.0 +2024-01-14 01:00:00,3.7443287,4.494441,214.11452,212.27562,24.5,998.437,0.0,73.48912,1.0 +2024-01-14 02:00:00,3.8600519,4.604346,216.57312,214.3804,25.65,998.5672,0.0,68.40877,1.0 +2024-01-14 03:00:00,4.263801,5.0328918,230.7106,229.02835,26.3,998.38635,0.0,66.85731,1.0 +2024-01-14 04:00:00,5.249762,6.3126855,229.63554,229.49724,26.5,997.99524,0.0,66.48424,1.0 +2024-01-14 05:00:00,5.663921,6.868042,227.86247,227.95085,26.6,997.89856,0.0,64.873634,1.0 +2024-01-14 06:00:00,5.728001,6.9296465,225.70723,224.9999,26.35,997.69354,0.0,65.63276,1.0 +2024-01-14 07:00:00,5.9396963,7.2835426,224.9999,224.44382,25.75,997.1813,0.0,68.854744,1.0 +2024-01-14 08:00:00,5.7801385,7.2201114,217.26648,216.55257,25.15,997.16504,0.0,71.1327,1.0 +2024-01-14 09:00:00,5.8591805,7.4242845,207.43964,207.25525,24.7,997.1529,0.0,73.523254,1.0 +2024-01-14 10:00:00,5.9135437,7.589466,198.74144,198.43504,23.85,997.4272,0.0,77.60714,1.0 +2024-01-14 11:00:00,5.2392745,6.865857,193.24052,192.61932,23.3,997.809,0.0,79.726006,1.0 +2024-01-14 12:00:00,4.707441,6.2169123,192.26476,191.12915,22.9,997.897,0.0,81.67813,0.0 +2024-01-14 13:00:00,4.440721,5.9539905,187.76508,187.72174,22.15,998.4713,0.0,84.166824,0.0 +2024-01-14 14:00:00,4.3104525,5.9135437,183.99083,183.87845,22.15,999.0664,0.0,84.69192,0.0 +2024-01-14 15:00:00,3.9,5.500909,180.0,178.95839,21.9,998.762,0.0,86.26035,0.0 +2024-01-14 16:00:00,3.8052595,5.2038445,183.01273,182.20255,21.95,998.3666,0.0,85.99758,0.0 +2024-01-14 17:00:00,3.5128336,4.8259716,175.101,174.05324,21.9,997.671,0.0,85.459526,0.0 +2024-01-14 18:00:00,3.5057096,5.10392,176.72958,177.7543,21.55,997.3638,0.0,87.5789,0.0 +2024-01-14 19:00:00,3.7054014,5.6142673,176.906,175.91446,21.3,997.05927,0.0,89.2071,0.0 +2024-01-14 20:00:00,3.4234486,5.632051,173.29025,173.8846,21.2,997.05646,0.0,89.477196,0.0 +2024-01-14 21:00:00,3.1575305,5.1971145,169.04597,168.90631,21.25,997.05774,0.0,88.64993,0.0 +2024-01-14 22:00:00,2.8635643,4.9030604,167.90526,168.23174,21.2,997.55237,0.0,88.92221,1.0 +2024-01-14 23:00:00,3.49285,4.535416,166.75948,165.96373,22.55,997.8875,0.0,81.888756,1.0 +2024-01-15 00:00:00,3.2,3.8052595,180.0,176.98727,24.4,997.93823,0.0,72.56277,1.0 +2024-01-15 01:00:00,4.0521603,4.924429,195.75124,192.90741,25.55,998.26715,0.0,69.46065,1.0 +2024-01-15 02:00:00,5.0990195,6.1465435,205.55992,201.97456,26.2,998.1855,0.0,68.09292,1.0 +2024-01-15 03:00:00,5.7306194,6.931811,209.24873,206.56499,26.5,997.6977,0.0,66.690704,1.0 +2024-01-15 04:00:00,6.105735,7.392564,211.60745,210.03319,26.75,997.2082,0.0,65.71578,1.0 +2024-01-15 05:00:00,6.242595,7.6550636,215.21768,213.2749,26.9,997.11316,0.0,64.9369,1.0 +2024-01-15 06:00:00,6.2128897,7.6850505,213.17853,212.24243,26.65,997.2057,0.0,66.30906,1.0 +2024-01-15 07:00:00,6.2433968,7.7175126,211.90807,211.21834,26.4,997.0005,0.0,67.71174,1.0 +2024-01-15 08:00:00,5.866856,7.3824115,209.62366,208.30066,25.95,996.39307,0.0,69.32171,1.0 +2024-01-15 09:00:00,5.5946403,7.077429,204.27443,203.30492,25.1,995.9736,0.0,73.59135,1.0 +2024-01-15 10:00:00,5.2201533,6.5787535,200.17073,199.53674,24.1,995.94635,0.0,78.85463,1.0 +2024-01-15 11:00:00,4.6840153,6.140033,196.1135,196.07364,23.25,996.1213,0.0,83.25267,1.0 +2024-01-15 12:00:00,4.1231055,5.6515484,194.03627,193.29858,22.75,996.3059,0.0,85.81048,0.0 +2024-01-15 13:00:00,4.2720017,5.920304,196.31393,195.67958,21.9,996.97675,0.0,89.52992,0.0 +2024-01-15 14:00:00,4.3416586,6.20967,194.67644,194.93147,21.75,997.27026,0.0,90.07456,0.0 +2024-01-15 15:00:00,4.1785164,6.2625875,201.03758,199.59238,21.65,997.3666,0.0,90.90762,0.0 +2024-01-15 16:00:00,3.6055512,5.345091,199.44012,197.41806,21.6,996.869,0.0,90.623405,0.0 +2024-01-15 17:00:00,2.8635643,4.197618,192.09474,192.38075,21.45,996.17084,0.0,90.894424,0.0 +2024-01-15 18:00:00,3.0016663,4.204759,178.0909,177.27374,21.5,995.97394,0.0,90.3363,0.0 +2024-01-15 19:00:00,2.236068,3.1400635,190.3048,189.16228,21.6,995.4805,0.0,88.95389,0.0 +2024-01-15 20:00:00,2.376973,3.7,202.24907,198.92474,21.15,995.5672,0.0,91.44055,0.0 +2024-01-15 21:00:00,2.7784889,4.2059484,210.25635,208.39293,21.3,995.76996,0.0,90.88459,0.0 +2024-01-15 22:00:00,2.9681644,4.4418464,212.61923,211.18492,21.3,996.46423,0.0,91.16683,1.0 +2024-01-15 23:00:00,3.11127,3.9597979,224.9999,224.9999,21.95,996.978,0.0,86.80251,1.0 +2024-01-16 00:00:00,2.828427,3.3941126,224.9999,224.9999,22.7,997.0981,0.0,82.16229,1.0 +2024-01-16 01:00:00,3.001666,3.535534,240.01845,241.2603,23.2,997.4094,0.0,78.72691,1.0 +2024-01-16 02:00:00,3.1906114,3.6891732,237.80429,237.17146,24.45,997.4435,0.0,72.12074,1.0 +2024-01-16 03:00:00,3.8587563,4.527693,238.78166,239.47037,25.55,997.3744,0.0,66.91356,1.0 +2024-01-16 04:00:00,4.4777226,5.420332,240.57263,240.12408,25.95,997.1866,0.0,65.3453,1.0 +2024-01-16 05:00:00,4.8764744,5.770615,241.85849,242.10283,26.2,997.19354,0.0,64.18551,1.0 +2024-01-16 06:00:00,4.924429,5.9093146,246.0375,246.0375,26.25,997.19476,0.0,63.796696,1.0 +2024-01-16 07:00:00,4.976947,6.053924,247.5572,247.6713,25.85,996.88654,0.0,65.73345,1.0 +2024-01-16 08:00:00,4.4944406,5.4424257,249.14546,249.56708,25.4,996.47766,0.0,67.30214,1.0 +2024-01-16 09:00:00,3.7161808,4.4777226,246.19405,246.29735,24.75,996.36053,0.0,70.61792,1.0 +2024-01-16 10:00:00,3.6359317,4.5793014,238.49579,238.39255,23.85,996.6337,0.0,75.23183,1.0 +2024-01-16 11:00:00,3.5468295,4.4687805,229.574,229.53786,23.0,997.20544,0.0,79.437294,1.0 +2024-01-16 12:00:00,3.0413814,4.244997,223.66785,223.09087,22.35,997.48517,0.0,82.89014,0.0 +2024-01-16 13:00:00,3.0528674,4.527693,211.60745,210.52963,22.0,998.07056,0.0,81.82038,0.0 +2024-01-16 14:00:00,2.6832817,4.5617976,206.56499,206.0033,21.7,998.35956,0.0,83.59347,0.0 +2024-01-16 15:00:00,2.9154758,4.792703,157.8336,156.64442,21.6,998.7535,0.0,84.36924,0.0 +2024-01-16 16:00:00,1.4866068,2.6870058,137.72638,135.0001,21.6,997.9601,0.0,83.84376,0.0 +2024-01-16 17:00:00,1.4560219,2.408319,285.94547,274.76355,19.9,996.8219,0.0,92.22447,0.0 +2024-01-16 18:00:00,1.360147,1.6552945,162.89719,205.01686,19.8,996.6208,0.0,90.21685,0.0 +2024-01-16 19:00:00,1.9104972,2.385372,227.12111,236.97612,19.4,996.4108,0.0,91.330826,0.0 +2024-01-16 20:00:00,2.184033,2.607681,195.94547,212.47118,18.9,996.5951,0.0,93.33601,0.0 +2024-01-16 21:00:00,2.1931713,2.9068882,226.8476,229.18501,19.05,996.897,0.0,93.050285,0.0 +2024-01-16 22:00:00,1.5811387,3.5510561,235.30478,237.65257,20.2,997.3259,0.0,90.52801,1.0 +2024-01-16 23:00:00,2.624881,3.2649655,229.63554,229.9698,22.4,998.08154,0.0,79.85172,1.0 +2024-01-17 00:00:00,2.7802877,3.3421547,232.3057,231.07245,23.65,998.11597,0.0,73.803566,1.0 +2024-01-17 01:00:00,3.6055512,4.243819,236.3099,235.56094,24.3,998.5306,0.0,68.57254,1.0 +2024-01-17 02:00:00,3.920459,4.62277,232.25313,231.14662,24.95,998.7468,0.0,66.374016,1.0 +2024-01-17 03:00:00,4.6400433,5.6400356,232.88306,232.92683,25.45,998.85944,0.0,64.42741,1.0 +2024-01-17 04:00:00,4.9406476,5.940539,234.0578,233.90163,25.85,998.5729,0.0,62.522633,1.0 +2024-01-17 05:00:00,5.140039,6.280127,232.90707,232.76509,25.95,998.37695,0.0,62.348854,1.0 +2024-01-17 06:00:00,5.672742,6.9526978,229.28925,229.66693,25.85,998.37445,0.0,63.710182,1.0 +2024-01-17 07:00:00,5.9413805,7.2835426,226.36386,225.55618,25.5,998.2656,0.0,65.04683,1.0 +2024-01-17 08:00:00,6.16198,7.648529,221.71066,221.82008,25.0,998.0538,0.0,66.176414,1.0 +2024-01-17 09:00:00,6.2008066,7.840918,217.794,217.74687,24.5,997.9411,0.0,67.96909,1.0 +2024-01-17 10:00:00,6.105735,7.803204,211.60745,210.83777,23.85,998.02234,0.0,69.5705,1.0 +2024-01-17 11:00:00,5.59017,7.4686007,206.56499,206.22191,23.1,998.5968,0.0,72.33292,1.0 +2024-01-17 12:00:00,5.2554736,7.3736014,201.19412,200.64706,22.9,998.8888,0.0,73.21379,0.0 +2024-01-17 13:00:00,4.846648,7.093659,201.80147,201.5015,22.45,999.0749,0.0,74.29833,0.0 +2024-01-17 14:00:00,4.588028,6.992138,196.4601,196.62083,22.35,999.36957,0.0,74.987335,0.0 +2024-01-17 15:00:00,4.464303,7.088018,195.59286,196.38962,22.35,999.36957,0.0,74.987335,0.0 +2024-01-17 16:00:00,4.9030604,7.648529,191.76826,191.30989,22.15,999.2648,0.0,78.0849,0.0 +2024-01-17 17:00:00,4.9162993,7.324616,184.66678,184.6986,22.15,999.0664,0.0,78.823395,0.0 +2024-01-17 18:00:00,5.0159745,7.8230433,175.42616,175.60138,21.55,999.14905,0.0,81.76416,0.0 +2024-01-17 19:00:00,4.9335585,7.558439,162.29948,162.28412,21.25,999.33887,0.0,85.12647,0.0 +2024-01-17 20:00:00,3.939543,6.2769423,156.0375,157.52052,21.1,999.4341,0.0,84.84471,0.0 +2024-01-17 21:00:00,3.2649658,5.59017,152.6502,153.43501,20.7,999.6211,0.0,86.685356,0.0 +2024-01-17 22:00:00,2.5,4.661545,143.13002,144.60512,20.5,1000.21045,0.0,88.035835,1.0 +2024-01-17 23:00:00,2.751363,3.6055512,160.90642,160.55988,21.9,1000.54724,0.0,80.03402,1.0 +2024-01-18 00:00:00,4.440721,5.5326304,187.76508,186.22574,23.55,1000.69226,0.0,71.50947,1.0 +2024-01-18 01:00:00,5.096077,6.281719,195.94547,193.81505,24.85,1000.7278,0.0,63.492657,1.0 +2024-01-18 02:00:00,5.7939625,7.116881,201.25058,199.70807,25.5,1000.9437,0.0,58.99343,1.0 +2024-01-18 03:00:00,6.5924196,8.263776,202.28563,201.28648,25.85,1000.85425,0.0,56.332172,1.0 +2024-01-18 04:00:00,7.2449985,8.9810915,200.18588,198.83853,26.25,1000.6665,0.0,55.18998,1.0 +2024-01-18 05:00:00,7.655063,9.708244,199.8553,198.62167,26.15,1000.36646,0.0,56.584717,1.0 +2024-01-18 06:00:00,7.81089,9.837174,198.667,197.14563,26.05,1000.1652,0.0,56.56035,1.0 +2024-01-18 07:00:00,7.7491937,9.780082,197.2659,196.02594,25.7,999.85834,0.0,57.7452,1.0 +2024-01-18 08:00:00,7.7620873,9.895453,194.93147,194.03627,25.3,999.6489,0.0,57.64905,1.0 +2024-01-18 09:00:00,7.930952,10.261091,193.86105,192.95276,24.6,999.53064,0.0,60.87653,1.0 +2024-01-18 10:00:00,7.5802374,9.9985,188.34381,188.04898,23.55,999.7004,0.0,64.42661,1.0 +2024-01-18 11:00:00,7.7317524,10.538501,185.19434,184.899,22.75,999.8765,0.0,67.40425,1.0 +2024-01-18 12:00:00,7.4,10.2,180.0,180.0,21.95,1000.25104,0.0,73.28028,0.0 +2024-01-18 13:00:00,6.129437,9.044888,174.3825,174.2895,21.3,1000.72894,0.0,69.52157,0.0 +2024-01-18 14:00:00,5.8549128,8.881442,172.14677,172.23492,21.0,1000.8197,0.0,70.13558,0.0 +2024-01-18 15:00:00,5.4589376,8.485281,171.57312,171.86998,20.75,1000.71356,0.0,70.7666,0.0 +2024-01-18 16:00:00,5.080354,8.237719,169.79608,169.50858,20.6,1000.2133,0.0,70.966125,0.0 +2024-01-18 17:00:00,5.1195703,8.374366,167.59259,168.28755,20.3,999.9074,0.0,72.524536,0.0 +2024-01-18 18:00:00,5.2392745,8.29759,166.75948,167.4712,20.05,999.702,0.0,73.89116,0.0 +2024-01-18 19:00:00,5.0,7.981228,163.73972,164.74483,19.7,999.6924,0.0,75.51129,0.0 +2024-01-18 20:00:00,4.4598203,7.368175,160.34608,161.81087,19.4,999.88196,0.0,76.19396,0.0 +2024-01-18 21:00:00,4.031129,6.931811,150.2552,153.43501,19.15,1000.1725,0.0,76.893,0.0 +2024-01-18 22:00:00,3.9824615,6.9065185,141.1155,145.6196,18.7,1000.55634,0.0,78.576096,1.0 +2024-01-18 23:00:00,4.7201695,6.5734315,143.61555,146.79341,20.1,1000.9926,0.0,71.331116,1.0 +2024-01-19 00:00:00,5.1478148,6.6309876,155.9245,156.91484,22.0,1001.44275,0.0,63.679153,1.0 +2024-01-19 01:00:00,5.3160133,6.705222,163.61038,162.64589,23.6,1001.58624,0.0,56.320705,1.0 +2024-01-19 02:00:00,5.2086463,6.428064,176.6982,174.64427,25.25,1001.43304,0.0,50.69339,1.0 +2024-01-19 03:00:00,6.166036,7.5239615,188.39284,184.57384,26.2,1001.26056,0.0,49.012135,1.0 +2024-01-19 04:00:00,7.0092797,8.747571,194.03627,190.53912,26.4,1000.5715,0.0,48.75008,1.0 +2024-01-19 05:00:00,7.42159,9.296236,194.03627,191.7934,26.55,1000.27795,0.0,47.39427,1.0 +2024-01-19 06:00:00,7.615773,9.610411,193.67133,192.01146,26.3,999.87427,0.0,49.514843,1.0 +2024-01-19 07:00:00,7.5186434,9.534149,193.85144,192.72435,25.85,999.56476,0.0,51.343594,1.0 +2024-01-19 08:00:00,7.495332,9.512624,193.1092,192.13681,25.25,999.3501,0.0,54.58999,1.0 +2024-01-19 09:00:00,7.3164196,9.420192,190.23474,189.16228,24.55,999.33093,0.0,57.652252,1.0 +2024-01-19 10:00:00,7.244308,9.642096,186.3401,185.35573,23.8,999.70703,0.0,62.860924,1.0 +2024-01-19 11:00:00,7.0007143,9.6,180.81844,180.0,22.7,999.8752,0.0,70.23431,1.0 +2024-01-19 12:00:00,6.2128897,9.326307,176.30869,175.69562,22.05,1000.353,0.0,74.466095,0.0 +2024-01-19 13:00:00,4.9365983,7.764663,173.01904,172.6005,21.35,1000.92865,0.0,79.207016,0.0 +2024-01-19 14:00:00,4.9365983,7.9630394,173.01904,172.78583,21.05,1001.3168,0.0,82.73589,0.0 +2024-01-19 15:00:00,5.1971145,8.318653,168.90631,170.31128,20.85,1000.81555,0.0,85.35196,0.0 +2024-01-19 16:00:00,5.2392745,8.6122,166.75948,167.25471,20.7,1000.4145,0.0,86.414116,0.0 +2024-01-19 17:00:00,5.508176,8.832327,164.19742,164.23276,20.6,999.8166,0.0,87.769165,0.0 +2024-01-19 18:00:00,5.565968,8.888757,162.21602,162.99197,20.35,999.21466,0.0,89.133224,0.0 +2024-01-19 19:00:00,5.2810984,8.507056,161.22188,162.20392,20.25,999.4102,0.0,89.405075,0.0 +2024-01-19 20:00:00,4.7169905,7.8434687,158.87521,160.64091,20.05,999.702,0.0,89.95222,0.0 +2024-01-19 21:00:00,4.0706263,7.026379,152.176,155.62355,19.75,999.8919,0.0,90.49702,0.0 +2024-01-19 22:00:00,3.577709,6.462198,153.43501,158.19853,19.25,1000.5721,0.0,91.32129,1.0 +2024-01-19 23:00:00,4.3863425,6.2769423,155.77226,157.52052,20.75,1000.9119,0.0,81.14969,1.0 +2024-01-20 00:00:00,4.016217,5.186521,161.11382,160.86626,22.65,1001.1631,0.0,72.024925,1.0 +2024-01-20 01:00:00,4.2426405,5.2952805,171.86998,169.11452,25.15,1001.1326,0.0,59.098347,1.0 +2024-01-20 02:00:00,4.604346,5.6035705,182.4895,177.95464,27.3,1000.6948,0.0,53.555653,1.0 +2024-01-20 03:00:00,5.096077,6.1188235,195.94547,191.30989,28.55,1000.33167,0.0,53.030853,1.0 +2024-01-20 04:00:00,6.397656,7.8185678,204.96275,200.98497,28.25,999.92664,0.0,58.53359,1.0 +2024-01-20 05:00:00,7.4732857,9.415413,204.50739,202.47948,27.4,999.90405,0.0,60.372963,1.0 +2024-01-20 06:00:00,7.4464755,9.492102,202.08722,200.3442,27.35,999.8036,0.0,60.739105,1.0 +2024-01-20 07:00:00,7.725283,9.90202,201.25058,200.08206,26.55,999.782,0.0,64.46078,1.0 +2024-01-20 08:00:00,7.4946647,9.616652,198.6768,196.9276,26.05,999.57007,0.0,66.39229,1.0 +2024-01-20 09:00:00,6.888396,8.982204,193.43105,191.5601,25.4,999.3542,0.0,69.43204,1.0 +2024-01-20 10:00:00,6.264982,8.161495,188.25935,187.03784,24.35,999.52374,0.0,74.61442,1.0 +2024-01-20 11:00:00,5.830952,7.8313475,185.90605,185.1281,23.1,1000.0846,0.0,82.978226,1.0 +2024-01-20 12:00:00,5.3009434,7.510659,178.9191,176.94717,22.4,1000.462,0.0,87.11334,0.0 +2024-01-20 13:00:00,4.101219,6.1131005,178.60284,176.24835,21.8,1000.7428,0.0,90.357155,0.0 +2024-01-20 14:00:00,4.501111,7.0,181.273,180.0,21.5,1000.933,0.0,92.31474,0.0 +2024-01-20 15:00:00,4.8,7.4,180.0,180.0,21.45,1000.6339,0.0,91.45914,0.0 +2024-01-20 16:00:00,4.8010416,7.4027023,178.80653,178.45187,21.35,1000.2344,0.0,90.32584,0.0 +2024-01-20 17:00:00,5.0159745,7.4242845,175.42616,175.36462,21.45,999.93964,0.0,88.1166,0.0 +2024-01-20 18:00:00,4.8507733,7.1847057,171.70294,171.19328,21.35,999.4409,0.0,87.56126,0.0 +2024-01-20 19:00:00,4.785394,7.35459,169.15974,168.23174,21.25,999.23975,0.0,87.27989,0.0 +2024-01-20 20:00:00,5.0635953,7.6118326,170.9098,170.1665,21.35,999.4409,0.0,87.017334,0.0 +2024-01-20 21:00:00,4.7675986,7.3164196,170.34018,169.76526,21.4,999.6408,0.0,86.75119,0.0 +2024-01-20 22:00:00,4.491102,7.0405965,168.4399,168.5305,21.3,1000.23303,0.0,87.28443,1.0 +2024-01-20 23:00:00,5.885576,7.8262377,170.21767,169.6952,22.4,1000.462,0.0,81.108055,1.0 +2024-01-21 00:00:00,6.1032777,7.905694,178.12216,177.8253,23.9,1000.7017,0.0,71.797485,1.0 +2024-01-21 01:00:00,6.537584,8.329466,186.14653,184.82068,25.0,1001.12866,0.0,68.06816,1.0 +2024-01-21 02:00:00,6.7896976,8.485281,189.32352,188.13002,25.6,1000.9466,0.0,66.09323,1.0 +2024-01-21 03:00:00,6.888396,8.668333,193.43105,191.30989,26.1,1000.6625,0.0,63.565197,1.0 +2024-01-21 04:00:00,6.992138,8.780091,196.62083,194.5111,26.5,1000.4751,0.0,61.309048,1.0 +2024-01-21 05:00:00,7.3054776,9.20489,199.17911,197.05705,26.55,1000.37714,0.0,61.705418,1.0 +2024-01-21 06:00:00,7.8447437,9.972463,197.04912,195.7087,26.25,1000.17053,0.0,63.597736,1.0 +2024-01-21 07:00:00,8.008121,10.307764,195.94547,194.03627,25.9,1000.1612,0.0,65.13116,1.0 +2024-01-21 08:00:00,8.319857,10.651291,193.2011,192.47046,25.4,1000.1477,0.0,67.092354,1.0 +2024-01-21 09:00:00,8.041144,10.473777,190.75092,190.45158,24.75,1000.12976,0.0,70.838425,1.0 +2024-01-21 10:00:00,8.386298,11.200893,188.22664,187.69595,23.75,1000.30096,0.0,75.68577,1.0 +2024-01-21 11:00:00,7.8160095,10.716809,183.66771,183.20943,22.75,1000.86835,0.0,80.398766,1.0 +2024-01-21 12:00:00,7.1028166,9.80459,178.38649,178.24663,22.3,1001.25256,0.0,82.36959,0.0 +2024-01-21 13:00:00,6.412488,9.319335,176.42374,176.30869,21.8,1001.4371,0.0,81.53977,0.0 +2024-01-21 14:00:00,7.025667,9.832599,175.101,175.33322,21.65,1001.6314,0.0,81.01112,0.0 +2024-01-21 15:00:00,6.8593006,9.57549,172.46065,172.80086,21.65,1001.5322,0.0,78.751976,0.0 +2024-01-21 16:00:00,6.363961,9.617692,171.86998,171.02745,21.05,1000.9201,0.0,81.7014,0.0 +2024-01-21 17:00:00,6.063827,9.43663,166.65126,167.1419,20.55,1000.3113,0.0,83.72527,0.0 +2024-01-21 18:00:00,6.016644,9.411164,164.57777,165.2254,20.2,999.90454,0.0,84.74875,0.0 +2024-01-21 19:00:00,6.47611,10.06628,166.60748,166.79207,20.0,999.89886,0.0,84.99531,0.0 +2024-01-21 20:00:00,7.0092797,10.720075,165.96373,165.96373,20.25,1000.30273,0.0,82.11869,0.0 +2024-01-21 21:00:00,6.519202,9.995998,159.341,160.11475,20.25,1000.60034,0.0,79.30314,0.0 +2024-01-21 22:00:00,6.2649817,9.534149,155.48038,155.85446,20.1,1001.29016,0.0,78.52837,1.0 +2024-01-21 23:00:00,6.1294374,8.635392,151.76265,151.6544,21.05,1001.9119,0.0,71.50619,1.0 +2024-01-22 00:00:00,5.99333,7.915807,154.2901,153.75871,22.55,1001.9541,0.0,61.385025,1.0 +2024-01-22 01:00:00,4.753946,5.8821764,165.37909,162.18102,24.65,1002.70624,0.0,50.045277,1.0 +2024-01-22 02:00:00,6.4070277,8.000625,182.68372,179.28386,25.75,1002.6369,0.0,47.951103,1.0 +2024-01-22 03:00:00,7.21734,9.10055,183.97241,180.62958,26.45,1002.35815,0.0,46.306053,1.0 +2024-01-22 04:00:00,7.6941533,9.651943,188.97255,185.94676,26.8,1001.7725,0.0,46.85277,1.0 +2024-01-22 05:00:00,7.930952,10.002,193.86105,191.53459,26.6,1001.17194,0.0,49.434948,1.0 +2024-01-22 06:00:00,8.036168,10.235722,196.63103,194.71512,26.3,1000.8662,0.0,50.15605,1.0 +2024-01-22 07:00:00,8.160883,10.480935,197.10281,195.4949,25.95,1000.75757,0.0,52.200653,1.0 +2024-01-22 08:00:00,8.780091,11.400438,194.5111,193.18297,25.2,1000.5388,0.0,56.17269,1.0 +2024-01-22 09:00:00,9.141116,12.165525,190.08054,189.46225,24.15,1000.6094,0.0,60.773193,1.0 +2024-01-22 10:00:00,8.728115,11.827087,184.6,183.87845,23.2,1000.9801,0.0,64.3511,1.0 +2024-01-22 11:00:00,8.3,11.5,180.0,180.0,22.15,1001.4468,0.0,69.02263,1.0 +2024-01-22 12:00:00,7.2339478,10.557462,174.44713,174.0195,21.6,1001.9273,0.0,71.83529,0.0 +2024-01-22 13:00:00,6.8264194,10.34843,174.95764,174.45477,21.1,1002.2111,0.0,74.30661,0.0 +2024-01-22 14:00:00,6.760177,10.2956295,172.34944,172.1848,20.8,1002.6984,0.0,76.65866,0.0 +2024-01-22 15:00:00,6.946222,10.667708,173.38664,173.54128,20.55,1002.88995,0.0,78.096016,0.0 +2024-01-22 16:00:00,7.4545293,11.386395,173.06575,172.9375,20.4,1002.6871,0.0,79.07277,0.0 +2024-01-22 17:00:00,7.6118326,11.557248,170.1665,170.53775,20.2,1002.48315,0.0,79.80178,0.0 +2024-01-22 18:00:00,7.6295476,11.591807,169.42653,169.56258,20.1,1002.5795,0.0,80.04204,0.0 +2024-01-22 19:00:00,7.495332,11.303097,166.8908,166.70142,20.1,1002.4803,0.0,78.27856,0.0 +2024-01-22 20:00:00,6.992138,10.632027,163.37917,163.61038,20.3,1002.9819,0.0,74.88694,0.0 +2024-01-22 21:00:00,7.088018,10.728001,163.61038,163.7611,20.1,1003.2737,0.0,74.85372,0.0 +2024-01-22 22:00:00,6.648308,10.252805,158.83867,159.44388,19.85,1003.7626,0.0,75.05262,1.0 +2024-01-22 23:00:00,6.7542577,9.484725,154.57317,155.05612,20.55,1004.17926,0.0,70.50198,1.0 +2024-01-23 00:00:00,7.186793,9.563472,158.79071,158.53229,21.9,1004.11786,0.0,62.84086,1.0 +2024-01-23 01:00:00,7.4330344,9.740637,162.78384,160.82089,23.65,1003.5712,0.0,50.271786,1.0 +2024-01-23 02:00:00,7.170077,9.178235,171.983,168.69011,25.4,1003.1235,0.0,45.27402,1.0 +2024-01-23 03:00:00,7.6164293,9.6,183.76396,180.0,26.2,1002.7484,0.0,46.388653,1.0 +2024-01-23 04:00:00,8.649278,10.917875,190.6603,188.42688,25.75,1002.4385,0.0,50.98827,1.0 +2024-01-23 05:00:00,9.178235,11.771152,191.30989,189.78233,25.75,1002.1409,0.0,50.173042,1.0 +2024-01-23 06:00:00,9.669023,12.461541,190.7288,189.23549,25.6,1001.6409,0.0,50.133568,1.0 +2024-01-23 07:00:00,9.815294,12.813274,188.79047,187.6241,25.4,1001.338,0.0,52.226696,1.0 +2024-01-23 08:00:00,9.662815,12.756567,186.53654,185.39766,24.8,1001.3217,0.0,55.53723,1.0 +2024-01-23 09:00:00,9.525754,12.625372,184.2141,183.63287,23.9,1001.396,0.0,61.10475,1.0 +2024-01-23 10:00:00,9.3085985,12.703543,182.46277,181.35316,22.9,1001.5668,0.0,64.69839,1.0 +2024-01-23 11:00:00,8.800569,12.300406,180.65105,179.5342,21.75,1001.9318,0.0,71.17962,1.0 +2024-01-23 12:00:00,8.4053545,12.414508,177.95464,177.22984,21.1,1002.2111,0.0,74.30661,0.0 +2024-01-23 13:00:00,7.8313475,11.871394,174.8719,173.7132,20.85,1002.40247,0.0,74.977974,0.0 +2024-01-23 14:00:00,7.641989,11.684178,173.99109,173.11838,20.65,1002.6943,0.0,77.12438,0.0 +2024-01-23 15:00:00,7.851752,11.98207,173.41815,173.29025,20.4,1002.19116,0.0,79.57645,0.0 +2024-01-23 16:00:00,7.9075913,11.968291,170.53775,170.38034,20.15,1001.6884,0.0,81.07186,0.0 +2024-01-23 17:00:00,7.81025,12.007498,166.67546,167.00539,19.95,1001.286,0.0,81.82154,0.0 +2024-01-23 18:00:00,7.7620873,11.981653,165.06853,165.4998,19.85,1001.28314,0.0,81.29077,0.0 +2024-01-23 19:00:00,7.17844,11.067972,161.31256,161.56496,19.6,1001.57385,0.0,81.77748,0.0 +2024-01-23 20:00:00,7.088018,11.0440035,163.61038,163.69823,19.45,1001.9662,0.0,80.98048,0.0 +2024-01-23 21:00:00,7.3082147,11.360017,163.30067,163.63884,19.3,1002.061,0.0,81.73964,0.0 +2024-01-23 22:00:00,7.093659,11.107204,158.4985,159.44388,19.2,1002.6532,0.0,81.72698,1.0 +2024-01-23 23:00:00,7.2235723,10.324728,158.05124,158.40463,20.35,1003.4793,0.0,74.89523,1.0 +2024-01-24 00:00:00,7.6537576,10.309219,162.51192,161.91646,21.85,1003.5214,0.0,67.653305,1.0 +2024-01-24 01:00:00,7.8771825,10.357606,171.97285,169.99208,23.6,1002.97485,0.0,58.354404,1.0 +2024-01-24 02:00:00,8.809087,11.435471,177.39749,175.4861,24.65,1002.70624,0.0,55.499954,1.0 +2024-01-24 03:00:00,9.2,11.910499,180.0,177.59409,25.45,1002.4303,0.0,53.256798,1.0 +2024-01-24 04:00:00,9.3085985,12.000417,182.46277,180.47745,26.0,1001.85034,0.0,51.54782,1.0 +2024-01-24 05:00:00,9.563472,12.332883,186.60474,184.18483,26.15,1001.4576,0.0,50.92871,1.0 +2024-01-24 06:00:00,9.662815,12.548306,186.53654,185.02899,26.0,1001.0568,0.0,51.217766,1.0 +2024-01-24 07:00:00,9.687621,12.67754,187.7118,186.3401,25.5,1000.7454,0.0,55.17946,1.0 +2024-01-24 08:00:00,9.972462,13.164347,186.91113,185.66719,24.6,1000.3241,0.0,59.7253,1.0 +2024-01-24 09:00:00,9.832599,13.22422,184.66678,183.46815,23.8,1000.20294,0.0,63.86885,1.0 +2024-01-24 10:00:00,9.60833,13.106106,182.3859,181.7489,22.75,1000.76917,0.0,66.97649,1.0 +2024-01-24 11:00:00,9.0,12.801562,180.0,179.10484,21.8,1001.2387,0.0,72.100395,1.0 +2024-01-24 12:00:00,8.800569,13.106106,179.34895,178.2511,21.45,1001.62573,0.0,72.960785,0.0 +2024-01-24 13:00:00,8.400595,12.703543,179.31796,178.64684,21.1,1001.9136,0.0,74.07039,0.0 +2024-01-24 14:00:00,8.221922,12.539936,175.81517,175.42616,20.65,1002.1984,0.0,81.13676,0.0 +2024-01-24 15:00:00,8.558621,12.80039,173.29025,172.81956,20.3,1001.8909,0.0,83.16997,0.0 +2024-01-24 16:00:00,8.757282,13.296616,173.44315,173.08887,20.1,1001.29016,0.0,83.14651,0.0 +2024-01-24 17:00:00,8.514693,12.831991,167.10626,166.93845,19.95,1000.9885,0.0,84.18797,0.0 +2024-01-24 18:00:00,8.343262,12.563438,166.1303,166.18495,19.9,1000.9873,0.0,83.9165,0.0 +2024-01-24 19:00:00,8.296988,12.54193,164.62369,164.74483,19.75,1001.08203,0.0,83.10537,0.0 +2024-01-24 20:00:00,7.981228,12.033288,164.74483,164.57777,19.7,1001.6759,0.0,82.57353,0.0 +2024-01-24 21:00:00,7.6655073,11.813974,164.87595,164.78737,19.45,1001.9662,0.0,82.80627,0.0 +2024-01-24 22:00:00,7.3756356,11.258775,167.4712,167.692,19.35,1002.45917,0.0,83.0582,1.0 +2024-01-24 23:00:00,7.864477,11.1400175,168.26146,168.08487,20.55,1003.0883,0.0,75.649185,1.0 +2024-01-25 00:00:00,7.766595,10.456099,168.11136,167.2929,22.15,1003.62885,0.0,65.37097,1.0 +2024-01-25 01:00:00,6.537584,8.401191,173.85347,171.09836,24.15,1003.1883,0.0,53.268272,1.0 +2024-01-25 02:00:00,7.5,9.513149,180.0,176.98727,25.15,1003.01733,0.0,50.17729,1.0 +2024-01-25 03:00:00,8.620905,11.001818,183.99083,181.04161,25.55,1003.0283,0.0,50.608402,1.0 +2024-01-25 04:00:00,8.956003,11.527793,186.41075,183.97931,25.8,1002.7374,0.0,50.837376,1.0 +2024-01-25 05:00:00,9.588535,12.457929,187.79199,185.52745,25.8,1002.539,0.0,51.828045,1.0 +2024-01-25 06:00:00,9.873197,12.856128,186.98096,185.35573,25.6,1002.0377,0.0,54.32913,1.0 +2024-01-25 07:00:00,9.75141,12.839004,185.8859,184.46707,25.25,1001.82983,0.0,56.725662,1.0 +2024-01-25 08:00:00,10.239629,13.729529,185.04236,183.75848,24.3,1001.90295,0.0,61.78307,1.0 +2024-01-25 09:00:00,10.10198,13.7,181.1344,180.0,23.35,1001.97614,0.0,64.17866,1.0 +2024-01-25 10:00:00,9.502105,13.206059,178.79398,178.26433,22.35,1002.2459,0.0,68.1875,1.0 +2024-01-25 11:00:00,8.908984,12.625372,177.4267,176.36713,21.25,1003.00854,0.0,73.625824,1.0 +2024-01-25 12:00:00,9.108788,13.723337,177.48318,176.65813,20.95,1003.69464,0.0,74.28129,0.0 +2024-01-25 13:00:00,9.178781,13.875518,172.48795,170.87718,20.6,1004.67633,0.0,73.044495,0.0 +2024-01-25 14:00:00,9.124144,13.908629,170.53775,170.06367,20.3,1004.767,0.0,77.81093,0.0 +2024-01-25 15:00:00,8.732124,13.315404,166.75948,165.65063,19.95,1004.658,0.0,82.60376,0.0 +2024-01-25 16:00:00,7.558439,11.827087,162.28412,161.25856,19.7,1004.35364,0.0,83.36357,0.0 +2024-01-25 17:00:00,6.35059,10.331021,153.8385,152.93898,19.6,1004.44995,0.0,79.718895,0.0 +2024-01-25 18:00:00,5.333854,9.158603,149.589,148.39255,19.5,1004.2487,0.0,74.513405,0.0 +2024-01-25 19:00:00,3.8587563,7.4632435,148.78166,144.81921,19.35,1004.2443,0.0,69.5924,0.0 +2024-01-25 20:00:00,3.2449963,7.170077,146.3099,140.09216,19.2,1004.1408,0.0,64.736916,0.0 +2024-01-25 21:00:00,3.2649655,7.441102,139.9698,131.18584,19.85,1004.35767,0.0,53.566338,0.0 +2024-01-25 22:00:00,3.0,7.4249578,126.86998,115.529655,20.75,1004.58154,0.0,41.083855,1.0 +2024-01-25 23:00:00,4.1761227,7.623647,106.699326,94.5139,24.3,1004.97784,0.0,35.69427,1.0 +2024-01-26 00:00:00,5.0447993,7.2339478,103.76081,95.55288,27.15,1005.25385,0.0,46.947033,1.0 +2024-01-26 01:00:00,4.4922156,5.885576,106.821495,99.78234,28.95,1004.9055,0.0,42.543972,1.0 +2024-01-26 02:00:00,4.4384685,5.7558665,104.349365,97.98924,31.2,1004.568,0.0,34.821278,1.0 +2024-01-26 03:00:00,4.0249224,5.2201533,116.56499,106.699326,32.9,1004.31476,0.0,29.43812,1.0 +2024-01-26 04:00:00,3.8999999,4.8826222,157.3801,145.0079,33.65,1003.73914,0.0,26.429623,1.0 +2024-01-26 05:00:00,7.6243033,10.080674,196.7713,190.86401,31.95,1003.1989,0.0,36.291584,1.0 +2024-01-26 06:00:00,8.852683,12.218838,193.72232,187.99739,30.45,1002.86206,0.0,40.686146,1.0 +2024-01-26 07:00:00,9.198369,13.086252,191.92072,186.58185,29.55,1002.4413,0.0,40.699417,1.0 +2024-01-26 08:00:00,8.814193,12.800391,183.25188,179.5524,28.7,1002.41864,0.0,43.723633,1.0 +2024-01-26 09:00:00,8.700575,12.519585,180.65852,176.79485,27.95,1002.498,0.0,47.01104,1.0 +2024-01-26 10:00:00,8.273452,11.442465,172.35968,170.94936,25.55,1002.82996,0.0,53.453453,1.0 +2024-01-26 11:00:00,7.1021123,10.336827,170.27249,167.71169,24.1,1003.28625,0.0,59.799107,1.0 +2024-01-26 12:00:00,6.6940274,10.04241,166.17133,164.99503,22.85,1003.6484,0.0,63.25481,0.0 +2024-01-26 13:00:00,6.7720013,10.785639,163.70589,162.74097,21.7,1004.01294,0.0,66.12053,0.0 +2024-01-26 14:00:00,6.47611,10.139033,166.60748,165.14134,21.3,1004.29944,0.0,70.41764,0.0 +2024-01-26 15:00:00,5.440588,8.9810915,162.89719,161.16147,20.95,1003.9922,0.0,73.80916,0.0 +2024-01-26 16:00:00,3.8832977,7.184706,145.49142,145.2039,20.65,1003.6861,0.0,74.706154,0.0 +2024-01-26 17:00:00,2.9206164,6.940461,128.04709,126.20955,20.7,1002.9931,0.0,66.98549,0.0 +2024-01-26 18:00:00,3.733631,8.6977005,110.37652,109.47667,22.4,1002.3464,0.0,44.148376,0.0 +2024-01-26 19:00:00,5.2038445,10.104455,92.20255,91.70132,24.5,1001.9086,0.0,27.046812,0.0 +2024-01-26 20:00:00,5.124451,9.885849,84.40076,82.44375,24.35,1001.8051,0.0,26.722868,0.0 +2024-01-26 21:00:00,5.188449,9.848858,62.447273,60.832493,23.6,1001.983,0.0,39.832165,0.0 +2024-01-26 22:00:00,5.4708314,10.1242285,59.215923,57.094753,23.1,1002.36584,0.0,55.291954,1.0 +2024-01-26 23:00:00,4.837354,9.912618,60.255207,59.03632,24.45,1002.89886,0.0,52.31904,1.0 +2024-01-27 00:00:00,5.011986,7.119691,61.389645,60.55467,27.0,1003.3653,0.0,42.41942,1.0 +2024-01-27 01:00:00,3.2202485,4.565085,64.23073,61.189304,29.95,1002.94794,0.0,31.644688,1.0 +2024-01-27 02:00:00,2.5495098,3.51141,78.6901,70.01681,31.9,1002.8009,0.0,24.857437,1.0 +2024-01-27 03:00:00,1.2727922,1.9235383,135.0001,98.97255,32.7,1002.12714,0.0,21.686398,1.0 +2024-01-27 04:00:00,3.7443287,3.9357338,214.11452,207.21602,33.2,1001.5447,0.0,25.367292,1.0 +2024-01-27 05:00:00,6.1846585,7.640026,219.09386,217.01997,31.65,1000.9093,0.0,35.97612,1.0 +2024-01-27 06:00:00,6.300793,8.127115,215.9606,214.47227,31.2,1000.4013,0.0,35.967674,1.0 +2024-01-27 07:00:00,6.140033,8.421995,210.32352,209.91356,30.2,1000.07764,0.0,37.715885,1.0 +2024-01-27 08:00:00,5.8137765,7.7820306,206.56499,205.90645,29.7,999.56836,0.0,40.219368,1.0 +2024-01-27 09:00:00,5.5470715,7.741447,207.95087,208.5513,28.2,999.4294,0.0,46.035233,1.0 +2024-01-27 10:00:00,3.6878178,5.1923018,192.5288,195.6423,27.15,999.79803,0.0,49.579945,1.0 +2024-01-27 11:00:00,3.5128336,5.1478148,184.899,187.8152,25.75,1000.0579,0.0,55.772415,1.0 +2024-01-27 12:00:00,3.733631,6.537584,172.30405,173.85347,24.8,1000.42896,0.0,56.43469,0.0 +2024-01-27 13:00:00,3.6055512,6.4,183.17976,180.0,23.5,1000.69073,0.0,63.803486,0.0 +2024-01-27 14:00:00,3.522783,6.3788714,173.4803,170.98076,22.85,1001.16876,0.0,68.939926,0.0 +2024-01-27 15:00:00,3.324154,6.609841,173.08887,169.54015,22.15,1001.05005,0.0,70.13022,0.0 +2024-01-27 16:00:00,3.0083218,6.2241464,158.5522,156.3179,21.45,1000.93146,0.0,71.35146,0.0 +2024-01-27 17:00:00,2.8231187,6.315853,157.06787,156.68227,20.85,1000.61725,0.0,71.69878,0.0 +2024-01-27 18:00:00,2.9120438,6.3245554,164.05453,161.56496,20.45,1000.50684,0.0,72.551315,0.0 +2024-01-27 19:00:00,2.376973,5.5542774,157.75093,156.66594,19.8,1000.5878,0.0,78.48472,0.0 +2024-01-27 20:00:00,2.0248458,5.060632,147.09476,150.39565,19.1,1000.5677,0.0,81.97571,0.0 +2024-01-27 21:00:00,1.7492856,4.837354,149.03632,150.2552,18.35,1000.74457,0.0,83.74068,0.0 +2024-01-27 22:00:00,1.8384776,4.401136,157.61983,158.68202,17.7,1001.32117,0.0,86.12124,1.0 +2024-01-27 23:00:00,2.5317976,4.3931766,170.9098,168.17854,20.6,1001.9985,0.0,72.34583,1.0 +2024-01-28 00:00:00,3.3015149,4.20119,181.73567,178.63611,22.75,1002.5545,0.0,66.33932,1.0 +2024-01-28 01:00:00,2.6076808,3.1016126,184.39862,178.15244,24.75,1003.30383,0.0,57.332752,1.0 +2024-01-28 02:00:00,6.7542577,8.285529,205.42683,203.47101,24.5,1003.7933,0.0,67.756065,1.0 +2024-01-28 03:00:00,7.9075913,10.099999,193.15755,191.42116,24.6,1003.99414,0.0,61.459435,1.0 +2024-01-28 04:00:00,8.041144,10.225947,190.75092,189.00168,25.3,1003.815,0.0,56.37698,1.0 +2024-01-28 05:00:00,7.5504966,9.617692,191.45872,188.97255,25.85,1003.4332,0.0,52.007706,1.0 +2024-01-28 06:00:00,7.324616,9.198369,194.226,191.92072,25.7,1003.13165,0.0,55.58262,1.0 +2024-01-28 07:00:00,7.495332,9.590098,193.1092,191.42706,25.1,1002.81775,0.0,55.611668,1.0 +2024-01-28 08:00:00,7.5504966,9.650907,191.45872,190.14548,24.35,1002.797,0.0,59.097862,1.0 +2024-01-28 09:00:00,7.2993145,9.489468,189.46225,187.87384,23.6,1002.7765,0.0,63.420082,1.0 +2024-01-28 10:00:00,7.125307,9.419129,184.83034,183.65215,22.55,1002.9459,0.0,67.794304,1.0 +2024-01-28 11:00:00,6.7007456,9.304837,179.14493,178.15244,21.35,1003.3089,0.0,74.822464,1.0 +2024-01-28 12:00:00,5.821512,8.646965,175.07298,174.02577,20.9,1004.08984,0.0,76.18857,0.0 +2024-01-28 13:00:00,6.264982,9.617692,171.74065,171.02745,20.55,1004.17926,0.0,77.354774,0.0 +2024-01-28 14:00:00,6.760177,10.40865,172.34944,171.7143,20.35,1004.37195,0.0,81.61302,0.0 +2024-01-28 15:00:00,6.2169123,9.806121,168.87085,168.23174,20.0,1004.26263,0.0,85.80382,0.0 +2024-01-28 16:00:00,6.20967,9.752948,165.06853,164.53873,19.6,1004.1524,0.0,88.794266,0.0 +2024-01-28 17:00:00,6.484597,10.183319,162.96214,162.27667,19.4,1003.849,0.0,85.47213,0.0 +2024-01-28 18:00:00,6.5787535,10.440307,160.46326,159.82927,19.2,1003.7441,0.0,82.77629,0.0 +2024-01-28 19:00:00,6.6309876,10.492378,156.91484,157.59012,18.9,1003.73553,0.0,82.476326,0.0 +2024-01-28 20:00:00,5.8137765,9.347192,153.43501,153.98328,18.6,1003.92535,0.0,81.38935,0.0 +2024-01-28 21:00:00,5.1429563,8.363014,153.43501,153.74141,18.25,1004.4112,0.0,80.56252,0.0 +2024-01-28 22:00:00,4.830114,8.13941,152.90453,153.74982,18.05,1004.90137,0.0,81.31827,1.0 +2024-01-28 23:00:00,4.2059484,6.2177167,151.60707,152.19864,19.25,1005.7291,0.0,75.19516,1.0 +2024-01-29 00:00:00,4.215448,5.4626,157.69374,156.2505,21.25,1005.98395,0.0,65.60146,1.0 +2024-01-29 01:00:00,2.7784889,3.4205263,149.74365,142.12495,24.05,1005.56604,0.0,50.707455,1.0 +2024-01-29 02:00:00,2.5495098,2.9,191.30989,180.0,26.55,1005.33685,0.0,43.41569,1.0 +2024-01-29 03:00:00,4.770744,5.5946403,213.02386,208.85556,27.05,1005.152,0.0,47.9892,1.0 +2024-01-29 04:00:00,6.242595,7.600658,215.21768,212.64462,26.25,1004.6343,0.0,55.718437,1.0 +2024-01-29 05:00:00,7.068239,8.772685,205.1148,204.22774,25.85,1004.5244,0.0,53.87311,1.0 +2024-01-29 06:00:00,7.4094534,9.392017,201.37068,198.62796,26.8,1004.35156,0.0,47.76831,1.0 +2024-01-29 07:00:00,7.18401,9.192388,196.16457,194.4898,26.8,1003.9548,0.0,46.85277,1.0 +2024-01-29 08:00:00,7.3979726,9.767292,193.28488,190.6196,26.45,1003.6477,0.0,51.499237,1.0 +2024-01-29 09:00:00,7.8230433,10.611786,184.39862,182.70058,24.95,1003.7063,0.0,59.61724,1.0 +2024-01-29 10:00:00,7.6006575,10.304368,180.75383,178.3317,23.85,1003.7752,0.0,65.52161,1.0 +2024-01-29 11:00:00,6.648308,9.404786,173.08887,171.4392,22.25,1004.12756,0.0,74.26475,1.0 +2024-01-29 12:00:00,6.477654,9.650907,171.11942,169.85452,21.3,1004.597,0.0,76.01051,0.0 +2024-01-29 13:00:00,7.1021123,11.10045,170.27249,169.09502,20.75,1005.27576,0.0,77.63122,0.0 +2024-01-29 14:00:00,8.178631,11.91008,168.00313,166.8972,20.65,1005.37213,0.0,76.63529,0.0 +2024-01-29 15:00:00,7.472616,10.948059,164.47583,163.55132,20.25,1005.26166,0.0,80.82819,0.0 +2024-01-29 16:00:00,5.8821764,9.518929,162.18102,160.99393,20.15,1005.2588,0.0,78.53564,0.0 +2024-01-29 17:00:00,4.7434163,8.134495,161.56496,159.11412,20.0,1004.7585,0.0,75.0774,0.0 +2024-01-29 18:00:00,4.237924,7.5026665,160.70985,158.9076,19.75,1004.454,0.0,74.55546,0.0 +2024-01-29 19:00:00,3.992493,7.291776,157.93205,154.84073,19.5,1004.4471,0.0,73.79655,0.0 +2024-01-29 20:00:00,3.9812057,7.4242845,154.72232,152.74475,19.35,1004.34357,0.0,72.35404,0.0 +2024-01-29 21:00:00,3.4132097,6.8818603,148.17259,144.46223,19.25,1004.53906,0.0,68.67282,0.0 +2024-01-29 22:00:00,3.0610456,7.0007143,141.63248,134.42136,19.45,1004.8423,0.0,59.672253,1.0 +2024-01-29 23:00:00,3.4205263,6.6030297,142.12495,125.13428,22.55,1005.42554,0.0,40.074677,1.0 +2024-01-30 00:00:00,2.720294,5.3,162.89719,121.890755,26.9,1005.54474,0.0,27.140327,1.0 +2024-01-30 01:00:00,3.1016126,3.8209944,159.22766,137.12111,30.75,1005.35004,0.0,23.016182,1.0 +2024-01-30 02:00:00,3.324154,3.8483763,173.08887,155.43285,33.9,1005.1344,0.0,20.274654,1.0 +2024-01-30 03:00:00,4.2720017,4.816638,196.31393,184.76355,35.05,1004.6679,0.0,23.496752,1.0 +2024-01-30 04:00:00,5.239275,6.6219335,203.6294,194.87573,34.95,1003.77246,0.0,28.389248,1.0 +2024-01-30 05:00:00,6.2241464,8.489994,203.6821,195.01842,34.8,1003.17334,0.0,30.833012,1.0 +2024-01-30 06:00:00,7.937884,11.303097,199.11981,193.29858,34.7,1002.6748,0.0,31.40551,1.0 +2024-01-30 07:00:00,8.417244,12.059851,189.57416,185.7105,34.25,1002.26636,0.0,29.419744,1.0 +2024-01-30 08:00:00,7.406079,10.40048,182.32149,179.44911,33.5,1001.9495,0.0,31.996649,1.0 +2024-01-30 09:00:00,7.1028166,9.918165,181.61351,176.53185,31.75,1002.00305,0.0,39.88661,1.0 +2024-01-30 10:00:00,6.61211,10.012991,176.53185,171.38443,29.7,1002.6437,0.0,41.93584,1.0 +2024-01-30 11:00:00,5.5731497,8.7,189.29323,180.0,28.05,1003.0957,0.0,45.847412,1.0 +2024-01-30 12:00:00,5.508176,12.658989,183.12207,170.9098,26.3,1003.5445,0.0,51.79112,0.0 +2024-01-30 13:00:00,6.2968245,10.575916,169.93938,166.88356,25.85,1004.1276,0.0,49.395805,0.0 +2024-01-30 14:00:00,5.491812,9.492103,169.50858,163.47412,25.5,1004.41547,0.0,51.583954,0.0 +2024-01-30 15:00:00,4.8270073,8.509407,166.82744,160.07433,25.2,1004.3081,0.0,52.85178,0.0 +2024-01-30 16:00:00,4.2201896,7.7999997,166.29301,157.3801,24.85,1004.00104,0.0,53.966057,0.0 +2024-01-30 17:00:00,3.905125,7.615773,166.67546,156.80139,24.65,1003.4005,0.0,53.052357,0.0 +2024-01-30 18:00:00,3.4481878,6.9778223,163.14153,154.5367,24.3,1003.2916,0.0,52.450096,0.0 +2024-01-30 19:00:00,2.863564,6.280127,155.22488,142.76509,24.1,1003.28625,0.0,49.574467,0.0 +2024-01-30 20:00:00,2.3600848,6.003332,143.61555,119.98155,24.35,1003.3921,0.0,42.240185,0.0 +2024-01-30 21:00:00,2.4698179,6.806614,111.3707,79.845795,25.35,1003.5186,0.0,32.40434,0.0 +2024-01-30 22:00:00,2.9732137,7.940403,70.346085,58.912556,27.7,1004.0782,0.0,28.794434,1.0 +2024-01-30 23:00:00,4.3382025,8.421995,64.025665,60.086445,31.55,1004.9743,0.0,24.93289,1.0 +2024-01-31 00:00:00,4.9658837,7.4242845,64.98315,62.744755,34.85,1005.3574,0.0,21.641638,1.0 +2024-01-31 01:00:00,4.3908997,6.296825,59.93151,57.319454,37.25,1005.1209,0.0,20.140762,1.0 +2024-01-31 02:00:00,3.8275318,5.5,56.725105,53.13002,39.5,1004.8797,0.0,17.248024,1.0 +2024-01-31 03:00:00,2.641969,4.080441,60.524208,53.972538,40.6,1004.7083,0.0,15.310637,1.0 +2024-01-31 04:00:00,1.8248286,1.5524175,189.46225,165.06853,40.8,1003.9195,0.0,16.252996,1.0 +2024-01-31 05:00:00,4.838388,6.20967,198.06056,194.93147,39.7,1003.5947,0.0,23.301754,1.0 +2024-01-31 06:00:00,5.9774575,8.17435,197.52565,194.8863,38.75,1003.17395,0.0,26.56767,1.0 +2024-01-31 07:00:00,6.4132676,9.518929,190.78426,189.06642,36.2,1002.9113,0.0,31.013971,1.0 +2024-01-31 08:00:00,6.576473,9.75141,188.74608,185.8859,36.05,1002.60986,0.0,29.241499,1.0 +2024-01-31 09:00:00,6.600757,10.417293,179.13197,176.6982,34.8,1002.37964,0.0,28.257183,1.0 +2024-01-31 10:00:00,6.551336,9.920181,167.66092,165.40338,32.95,1002.7287,0.0,32.57608,1.0 +2024-01-31 11:00:00,5.903389,10.530432,169.26115,161.73701,31.0,1003.37256,0.0,40.19089,1.0 +2024-01-31 12:00:00,7.242237,12.465152,162.31552,159.82045,29.4,1003.9255,0.0,42.25869,0.0 +2024-01-31 13:00:00,6.1741395,11.049435,155.09526,154.8265,28.45,1004.0984,0.0,42.543686,0.0 +2024-01-31 14:00:00,3.51141,7.066117,160.0168,153.0724,27.9,1004.5795,0.0,45.07616,0.0 +2024-01-31 15:00:00,1.7720045,5.0,163.61038,143.13002,26.8,1004.35156,0.0,47.00428,0.0 +2024-01-31 16:00:00,2.3194828,5.6400356,172.56868,142.92683,26.65,1003.7526,0.0,45.91199,0.0 +2024-01-31 17:00:00,2.6832817,6.5115285,153.43501,137.4896,26.6,1003.1559,0.0,43.999626,0.0 +2024-01-31 18:00:00,2.2627418,6.4140472,135.0001,120.963684,25.9,1002.74023,0.0,40.613533,0.0 +2024-01-31 19:00:00,3.0232434,6.5787535,124.21575,109.53674,25.7,1002.4373,0.0,30.56744,0.0 +2024-01-31 20:00:00,2.751363,7.034913,109.09359,95.7105,26.35,1002.65326,0.0,23.726313,0.0 +2024-01-31 21:00:00,4.002499,9.550917,77.00539,72.3238,29.0,1003.022,0.0,18.085268,0.0 +2024-01-31 22:00:00,5.412947,10.833743,64.855255,66.037506,30.5,1003.35925,0.0,16.47155,1.0 +2024-01-31 23:00:00,6.664083,11.493477,64.204025,63.65795,32.1,1003.9964,0.0,17.440748,1.0 +2024-02-01 00:00:00,6.88767,12.70118,64.17907,63.8385,35.6,1004.1859,0.0,16.479378,1.0 +2024-02-01 01:00:00,7.5802374,10.324728,59.03632,58.46526,38.35,1003.8588,0.0,19.419281,1.0 +2024-02-01 02:00:00,7.640026,10.0,52.98003,53.13002,41.3,1003.73334,0.0,15.722024,1.0 +2024-02-01 03:00:00,6.9065185,8.875247,55.6196,56.48896,43.35,1003.38635,0.0,10.648402,1.0 +2024-02-01 04:00:00,4.9396358,6.203225,68.62931,69.22767,44.7,1002.7245,0.0,8.279973,1.0 +2024-02-01 05:00:00,3.4058774,4.2107005,86.63361,85.91447,45.3,1002.04425,0.0,7.5857825,1.0 +2024-02-01 06:00:00,3.7013512,4.501111,181.54813,181.273,42.9,1001.39075,0.0,10.531382,1.0 +2024-02-01 07:00:00,6.306346,9.167878,194.69736,193.88469,39.7,1001.21326,0.0,22.272175,1.0 +2024-02-01 08:00:00,7.093659,10.252805,201.5015,200.55612,38.9,1000.79626,0.0,21.434778,1.0 +2024-02-01 09:00:00,5.6293874,9.264988,192.308,193.73628,36.5,1000.5379,0.0,24.262146,1.0 +2024-02-01 10:00:00,2.720294,5.869412,197.10281,193.79951,34.0,1000.8709,0.0,30.615913,1.0 +2024-02-01 11:00:00,1.5033296,4.7010636,176.186,178.78116,31.8,1001.3099,0.0,36.7192,1.0 +2024-02-01 12:00:00,4.4922156,8.732124,163.17851,156.3706,31.6,1001.99927,0.0,34.259624,0.0 +2024-02-01 13:00:00,7.430343,12.432619,151.02039,153.22893,31.6,1002.1977,0.0,28.324522,0.0 +2024-02-01 14:00:00,6.0901566,10.515226,150.4886,147.82137,30.45,1002.4652,0.0,30.954,0.0 +2024-02-01 15:00:00,4.9658837,9.571835,154.98314,147.80429,30.35,1002.16473,0.0,29.325874,0.0 +2024-02-01 16:00:00,5.1971145,10.020979,149.98172,143.9305,32.0,1001.8113,0.0,20.50216,0.0 +2024-02-01 17:00:00,5.1739736,9.903535,138.91835,136.63654,32.4,1001.524,0.0,20.39071,0.0 +2024-02-01 18:00:00,4.6690474,9.202173,133.26433,132.3574,32.0,1001.31525,0.0,20.714506,0.0 +2024-02-01 19:00:00,4.8259716,9.626007,124.019394,124.8458,31.3,1001.1978,0.0,21.628368,0.0 +2024-02-01 20:00:00,4.830114,9.674708,117.095474,119.74479,30.9,1000.8895,0.0,21.60128,0.0 +2024-02-01 21:00:00,4.5122056,9.272,102.80426,106.284996,30.4,1001.075,0.0,21.033457,0.0 +2024-02-01 22:00:00,4.6389656,9.633795,97.43131,99.56003,30.2,1001.3674,0.0,20.407923,1.0 +2024-02-01 23:00:00,5.5145264,9.712878,94.15957,92.95072,31.8,1002.0044,0.0,18.052486,1.0 +2024-02-02 00:00:00,5.5036354,9.525754,87.91749,85.785904,35.15,1001.9916,0.0,13.706123,1.0 +2024-02-02 01:00:00,4.2755113,6.198387,79.21575,72.1496,39.45,1001.207,0.0,9.438215,1.0 +2024-02-02 02:00:00,3.4539833,5.0249376,67.8905,58.840755,41.8,1000.96704,0.0,10.966726,1.0 +2024-02-02 03:00:00,1.9235383,3.176476,81.02746,61.821507,42.55,1000.29065,0.0,9.695092,1.0 +2024-02-02 04:00:00,3.6674242,4.1785164,205.8663,201.03758,42.4,999.39404,0.0,13.143339,1.0 +2024-02-02 05:00:00,6.2769423,8.720665,210.65059,206.56499,40.1,998.84155,0.0,19.90184,1.0 +2024-02-02 06:00:00,7.9924965,11.764777,211.70139,207.87186,37.15,998.37134,0.0,23.186035,1.0 +2024-02-02 07:00:00,6.6730804,10.440307,199.24962,196.69933,35.5,998.13116,0.0,26.227196,1.0 +2024-02-02 08:00:00,4.464303,6.5115285,195.59286,190.6196,35.7,998.03705,0.0,25.939384,1.0 +2024-02-02 09:00:00,4.909175,7.100704,183.50346,180.80692,34.35,997.80414,0.0,29.734343,1.0 +2024-02-02 10:00:00,6.5490456,10.062305,172.9836,169.6952,31.85,998.1364,0.0,38.91045,1.0 +2024-02-02 11:00:00,6.676077,10.381715,163.46509,159.12091,30.5,998.59735,0.0,37.193127,1.0 +2024-02-02 12:00:00,7.8771825,13.333041,159.95467,158.43793,29.35,999.1623,0.0,38.467773,0.0 +2024-02-02 13:00:00,7.4946647,12.51599,161.3232,157.94351,30.75,999.29846,0.0,26.627892,0.0 +2024-02-02 14:00:00,6.20967,10.467568,165.06853,161.04567,28.5,999.8341,0.0,40.016735,0.0 +2024-02-02 15:00:00,5.021952,8.854377,167.34744,161.56496,26.75,1000.08484,0.0,49.47454,0.0 +2024-02-02 16:00:00,4.368066,7.8924017,164.05453,157.6593,25.55,1000.0526,0.0,55.015854,0.0 +2024-02-02 17:00:00,3.1953092,6.621178,159.86362,154.98314,24.9,999.63794,0.0,55.56207,0.0 +2024-02-02 18:00:00,2.529822,5.770615,161.56496,152.10281,24.3,999.62164,0.0,55.591618,0.0 +2024-02-02 19:00:00,3.1575305,6.545991,169.04597,161.28816,23.8,999.4094,0.0,58.028095,0.0 +2024-02-02 20:00:00,3.2572994,6.854196,162.12122,156.80139,23.2,999.5915,0.0,62.127945,0.0 +2024-02-02 21:00:00,3.1016126,6.7542577,159.22766,154.57317,22.75,999.9757,0.0,65.08094,0.0 +2024-02-02 22:00:00,2.863564,6.3953104,155.22488,153.03436,22.3,1000.26074,0.0,66.2458,1.0 +2024-02-02 23:00:00,3.1064448,5.60803,146.82147,140.06367,23.9,1000.50336,0.0,58.802452,1.0 +2024-02-03 00:00:00,3.4234486,4.2,186.70975,180.0,26.45,1000.87024,0.0,52.496567,1.0 +2024-02-03 01:00:00,5.5226803,7.006426,185.19434,182.45398,27.05,1000.29144,0.0,63.17907,1.0 +2024-02-03 02:00:00,5.9841456,7.532596,189.61966,185.33206,28.75,1000.13855,0.0,55.28529,1.0 +2024-02-03 03:00:00,7.203471,9.222798,193.65044,189.36012,29.2,1000.0513,0.0,53.528267,1.0 +2024-02-03 04:00:00,8.188407,10.656923,188.42688,185.92448,28.6,1000.1345,0.0,57.712597,1.0 +2024-02-03 05:00:00,7.7103825,9.75141,189.70659,185.8859,29.75,999.5697,0.0,53.167084,1.0 +2024-02-03 06:00:00,8.302409,10.756393,189.00842,185.8695,28.7,999.145,0.0,56.845745,1.0 +2024-02-03 07:00:00,8.747571,11.399123,190.53912,187.56134,27.85,998.8249,0.0,60.663956,1.0 +2024-02-03 08:00:00,9.334346,12.419743,184.91647,183.23094,26.2,999.2767,0.0,65.80606,1.0 +2024-02-03 09:00:00,9.3085985,12.401612,182.46277,180.92403,25.35,999.4517,0.0,69.422485,1.0 +2024-02-03 10:00:00,9.408506,12.806249,182.4366,181.78987,23.55,999.9979,0.0,78.53258,1.0 +2024-02-03 11:00:00,9.8,13.800363,180.0,179.58482,22.1,1000.4538,0.0,83.63891,1.0 +2024-02-03 12:00:00,10.301942,14.70034,181.11238,180.38976,21.6,1000.8363,0.0,84.63305,0.0 +2024-02-03 13:00:00,10.100495,14.5,180.56726,180.0,21.3,1001.72076,0.0,84.33651,0.0 +2024-02-03 14:00:00,9.912618,14.32236,177.1088,176.79805,21.1,1002.0127,0.0,82.74184,0.0 +2024-02-03 15:00:00,9.542536,13.960659,174.58823,174.65703,20.85,1002.3033,0.0,84.02285,0.0 +2024-02-03 16:00:00,9.353609,13.483693,173.86284,173.61298,20.85,1002.3033,0.0,80.651855,0.0 +2024-02-03 17:00:00,9.885849,14.142136,172.44376,171.86998,20.65,1002.29755,0.0,80.370766,0.0 +2024-02-03 18:00:00,9.355747,13.453624,169.53088,168.85715,20.55,1002.1957,0.0,78.59365,0.0 +2024-02-03 19:00:00,9.296236,13.395895,168.2066,167.93513,20.45,1002.292,0.0,76.84855,0.0 +2024-02-03 20:00:00,9.095604,13.412308,165.35258,165.7565,20.25,1002.58386,0.0,76.81753,0.0 +2024-02-03 21:00:00,8.973851,13.072872,165.80887,166.28264,20.25,1003.17896,0.0,75.35928,0.0 +2024-02-03 22:00:00,8.70919,12.734991,164.68712,164.98158,20.0,1003.9651,0.0,74.12018,1.0 +2024-02-03 23:00:00,8.876937,12.39395,165.65063,165.51523,20.4,1004.96814,0.0,67.358574,1.0 +2024-02-04 00:00:00,8.008121,10.756393,164.05453,163.24965,21.4,1005.19495,0.0,58.20242,1.0 +2024-02-04 01:00:00,8.060397,10.456099,168.55069,167.2929,23.3,1005.04956,0.0,50.344013,1.0 +2024-02-04 02:00:00,8.547514,11.115754,173.95601,171.7242,24.15,1005.17206,0.0,47.67618,1.0 +2024-02-04 03:00:00,8.902246,11.428036,178.71269,175.9859,25.05,1004.9983,0.0,44.882202,1.0 +2024-02-04 04:00:00,10.407689,13.50037,182.20255,180.4244,24.6,1004.8868,0.0,47.954346,1.0 +2024-02-04 05:00:00,10.301942,13.4003725,181.11238,179.57243,25.15,1004.40594,0.0,44.469185,1.0 +2024-02-04 06:00:00,10.507616,13.700364,182.1816,180.4182,25.3,1004.11255,0.0,42.928078,1.0 +2024-02-04 07:00:00,10.807405,14.301398,182.12105,180.80127,24.55,1003.99286,0.0,47.16216,1.0 +2024-02-04 08:00:00,10.9,14.603082,180.0,178.82288,23.7,1003.87036,0.0,50.94725,1.0 +2024-02-04 09:00:00,10.801852,14.612324,178.93912,177.64676,22.8,1004.0438,0.0,55.39683,1.0 +2024-02-04 10:00:00,10.511898,14.422205,177.27374,176.82024,21.75,1004.4113,0.0,59.63146,1.0 +2024-02-04 11:00:00,10.049875,14.1795635,174.2895,173.92764,20.5,1004.8718,0.0,65.65475,1.0 +2024-02-04 12:00:00,9.436631,13.810142,170.2383,169.99208,20.1,1005.4556,0.0,67.297134,0.0 +2024-02-04 13:00:00,9.002777,13.493702,167.81636,168.0239,19.55,1006.2335,0.0,68.50937,0.0 +2024-02-04 14:00:00,8.852683,13.267253,166.27768,166.48746,19.5,1006.62897,0.0,69.84794,0.0 +2024-02-04 15:00:00,8.572631,12.969194,163.0446,162.96214,19.3,1006.4246,0.0,71.41373,0.0 +2024-02-04 16:00:00,7.8924017,12.107848,157.6593,157.6713,18.95,1006.11725,0.0,68.166145,0.0 +2024-02-04 17:00:00,6.931811,10.822661,153.43501,153.67177,18.45,1005.8056,0.0,66.51744,0.0 +2024-02-04 18:00:00,6.264982,10.111874,151.38963,151.66096,18.0,1005.6934,0.0,65.55058,0.0 +2024-02-04 19:00:00,5.6938567,9.501578,149.38147,149.65683,17.6,1005.68176,0.0,64.600876,0.0 +2024-02-04 20:00:00,5.269725,8.904493,146.61147,147.38077,17.3,1005.8716,0.0,64.320335,0.0 +2024-02-04 21:00:00,4.8600416,8.58021,143.3658,143.53067,17.0,1006.25946,0.0,64.03967,0.0 +2024-02-04 22:00:00,4.4598207,8.280701,137.72638,137.4471,16.9,1006.75244,0.0,61.49376,1.0 +2024-02-04 23:00:00,4.738143,8.579627,135.85501,130.74608,18.75,1007.4009,0.0,49.793705,1.0 +2024-02-05 00:00:00,5.517246,7.528612,133.53127,129.61066,22.0,1007.7904,0.0,35.038506,1.0 +2024-02-05 01:00:00,6.6850576,8.850988,124.641014,122.07397,24.85,1007.9686,0.0,28.796919,1.0 +2024-02-05 02:00:00,6.71193,8.746428,123.45334,120.96369,27.4,1007.83984,0.0,24.938894,1.0 +2024-02-05 03:00:00,6.551336,8.324061,121.26367,118.72023,29.6,1007.2043,0.0,21.494677,1.0 +2024-02-05 04:00:00,5.8051705,7.2801104,132.20723,127.18479,31.15,1006.5508,0.0,18.536602,1.0 +2024-02-05 05:00:00,5.818075,7.1281133,151.23245,145.86401,31.95,1005.7783,0.0,16.864397,1.0 +2024-02-05 06:00:00,6.726812,8.420215,168.85715,164.14801,32.1,1005.2861,0.0,17.198116,1.0 +2024-02-05 07:00:00,9.213577,12.2,183.11078,180.0,28.7,1004.9978,0.0,38.411972,1.0 +2024-02-05 08:00:00,10.307764,13.800363,182.2239,179.58482,27.05,1004.9536,0.0,42.85031,1.0 +2024-02-05 09:00:00,10.317461,14.043148,176.66621,175.5075,24.7,1004.9889,0.0,47.2028,1.0 +2024-02-05 10:00:00,9.159148,12.649506,169.30354,168.60127,23.75,1005.7562,0.0,53.338768,1.0 +2024-02-05 11:00:00,7.808969,11.217843,170.41713,168.69011,22.45,1006.4145,0.0,63.573456,1.0 +2024-02-05 12:00:00,8.028076,11.594827,166.30994,165.00487,21.6,1007.0847,0.0,65.46444,0.0 +2024-02-05 13:00:00,6.8308125,9.835141,162.09546,161.01228,20.75,1007.9536,0.0,68.30597,0.0 +2024-02-05 14:00:00,5.8600345,9.570789,154.74687,153.97047,20.55,1008.14636,0.0,68.930145,0.0 +2024-02-05 15:00:00,5.080354,8.800568,143.8067,143.78107,20.0,1008.3289,0.0,68.37704,0.0 +2024-02-05 16:00:00,4.5221677,8.886507,144.90411,140.93742,20.15,1007.8374,0.0,59.838737,0.0 +2024-02-05 17:00:00,4.8414874,9.417537,141.7098,138.01286,20.85,1007.5598,0.0,42.977383,0.0 +2024-02-05 18:00:00,4.8795495,9.501578,135.83023,130.73203,21.5,1007.37976,0.0,27.566048,0.0 +2024-02-05 19:00:00,5.1739736,9.904545,131.08165,125.13427,21.8,1007.388,0.0,26.02135,0.0 +2024-02-05 20:00:00,5.4405885,10.03444,126.027466,119.886444,21.65,1007.3839,0.0,25.886963,0.0 +2024-02-05 21:00:00,5.456189,10.312129,116.09537,109.84079,21.45,1007.6757,0.0,26.394392,0.0 +2024-02-05 22:00:00,5.772348,10.834205,104.03627,99.027534,21.4,1008.17035,0.0,26.76153,1.0 +2024-02-05 23:00:00,6.9180923,11.401753,94.14455,91.005066,22.95,1008.80884,0.0,24.438305,1.0 +2024-02-06 00:00:00,7.100704,10.0005,89.19309,89.42708,25.55,1009.07904,0.0,20.392406,1.0 +2024-02-06 01:00:00,7.7278714,10.296116,79.56258,78.79925,28.9,1008.47516,0.0,18.190294,1.0 +2024-02-06 02:00:00,7.6295476,10.080674,79.42653,79.13599,31.1,1008.4346,0.0,15.4138155,1.0 +2024-02-06 03:00:00,7.125307,9.1350975,85.16967,84.97601,32.75,1008.081,0.0,13.303439,1.0 +2024-02-06 04:00:00,6.7,8.500588,90.0,89.32598,34.15,1007.1252,0.0,11.864528,1.0 +2024-02-06 05:00:00,6.303174,8.000625,91.81827,90.71615,35.45,1006.26575,0.0,10.417337,1.0 +2024-02-06 06:00:00,6.129437,7.91012,95.61749,92.89851,36.55,1005.6986,0.0,9.250052,1.0 +2024-02-06 07:00:00,4.7885275,6.296825,118.70586,110.44964,35.8,1004.98486,0.0,9.156692,1.0 +2024-02-06 08:00:00,3.9446166,5.315073,149.53453,138.81418,35.8,1004.58795,0.0,8.9896345,1.0 +2024-02-06 09:00:00,6.0133185,8.570297,176.186,168.55899,32.65,1004.5069,0.0,17.877842,1.0 +2024-02-06 10:00:00,6.802941,10.160708,178.31535,169.79608,29.55,1004.82214,0.0,41.094448,1.0 +2024-02-06 11:00:00,7.532596,12.831991,174.66794,166.93845,26.65,1005.1413,0.0,43.870235,1.0 +2024-02-06 12:00:00,6.928925,14.466859,159.73422,158.93398,24.15,1005.76715,0.0,50.89938,0.0 +2024-02-06 13:00:00,5.59017,9.353609,153.43501,151.24298,23.75,1006.0538,0.0,51.294342,0.0 +2024-02-06 14:00:00,4.080441,7.9246454,143.97253,132.95459,24.35,1006.36774,0.0,43.66612,0.0 +2024-02-06 15:00:00,4.110961,8.547514,131.05472,118.663864,25.6,1006.2038,0.0,26.32277,0.0 +2024-02-06 16:00:00,4.652956,9.340771,118.21727,111.345856,26.4,1005.9279,0.0,17.08634,0.0 +2024-02-06 17:00:00,5.2952805,10.143471,100.88548,99.64798,26.2,1005.5259,0.0,17.542849,0.0 +2024-02-06 18:00:00,6.3007936,11.30177,89.090645,88.986046,26.35,1005.3315,0.0,17.642685,0.0 +2024-02-06 19:00:00,6.946222,11.994164,83.386635,82.81583,26.5,1005.4348,0.0,17.487253,0.0 +2024-02-06 20:00:00,7.3824115,12.298374,81.43095,79.69521,26.25,1005.6262,0.0,19.146822,0.0 +2024-02-06 21:00:00,7.227724,12.272326,75.57919,75.850494,25.7,1006.00824,0.0,21.174807,0.0 +2024-02-06 22:00:00,7.242237,12.238056,72.31551,71.41691,25.15,1006.489,0.0,22.672247,1.0 +2024-02-06 23:00:00,7.7201037,12.1757965,73.442856,72.30902,26.0,1007.10754,0.0,22.099203,1.0 +2024-02-07 00:00:00,8.052329,11.594827,75.61857,75.004875,28.1,1007.26337,0.0,19.674377,1.0 +2024-02-07 01:00:00,7.4094534,10.084642,68.62931,67.24899,31.3,1006.45575,0.0,15.961778,1.0 +2024-02-07 02:00:00,6.7542577,8.765843,64.57317,62.850407,34.15,1006.13306,0.0,13.498049,1.0 +2024-02-07 03:00:00,5.8180757,7.291776,65.63756,64.84074,36.25,1005.98834,0.0,12.017317,1.0 +2024-02-07 04:00:00,4.5617976,5.769748,63.996716,64.32324,38.35,1005.2479,0.0,10.7557745,1.0 +2024-02-07 05:00:00,1.0816654,1.603122,123.6901,86.423744,37.7,1004.43774,0.0,11.261029,1.0 +2024-02-07 06:00:00,6.103278,8.132035,198.13817,196.42938,36.45,1003.91003,0.0,16.785864,1.0 +2024-02-07 07:00:00,8.374366,11.296903,191.71245,190.71307,35.3,1003.5832,0.0,17.88318,1.0 +2024-02-07 08:00:00,9.453041,13.553228,186.07236,185.07951,33.65,1003.44147,0.0,19.269623,1.0 +2024-02-07 09:00:00,8.1154175,12.169635,176.46777,173.86787,33.2,1003.2313,0.0,19.359406,1.0 +2024-02-07 10:00:00,7.119691,10.429286,169.47926,165.564,32.15,1003.3032,0.0,21.918215,1.0 +2024-02-07 11:00:00,6.708204,11.513471,169.6952,162.824,29.85,1003.4411,0.0,30.079565,1.0 +2024-02-07 12:00:00,6.456005,10.884851,163.81073,159.5671,28.3,1003.79675,0.0,33.121346,0.0 +2024-02-07 13:00:00,4.609772,8.1154175,167.4712,157.54301,27.1,1004.35974,0.0,34.591858,0.0 +2024-02-07 14:00:00,2.7856774,6.280127,158.96242,142.76509,26.75,1004.4494,0.0,32.032173,0.0 +2024-02-07 15:00:00,2.1213202,6.203225,135.0001,110.77233,26.35,1004.1412,0.0,24.400782,0.0 +2024-02-07 16:00:00,2.570992,7.324616,103.49575,94.6986,27.4,1004.0704,0.0,18.02376,0.0 +2024-02-07 17:00:00,3.1144822,8.062258,84.47256,82.875084,28.95,1003.9135,0.0,14.296885,0.0 +2024-02-07 18:00:00,3.905125,8.881442,87.064384,82.234924,29.4,1003.6279,0.0,12.291379,0.0 +2024-02-07 19:00:00,5.5362444,10.850346,73.201546,70.06192,29.85,1003.5403,0.0,11.713062,0.0 +2024-02-07 20:00:00,7.5591,12.889143,62.418053,61.24773,30.15,1003.6477,0.0,11.903651,0.0 +2024-02-07 21:00:00,8.609298,14.066271,59.264584,57.77876,29.85,1004.23474,0.0,12.612753,0.0 +2024-02-07 22:00:00,8.300603,13.591174,58.799557,57.011467,29.4,1005.0167,0.0,13.039754,1.0 +2024-02-07 23:00:00,8.15414,13.124405,56.50479,54.614483,30.2,1005.83154,0.0,12.407307,1.0 +2024-02-08 00:00:00,8.070935,11.985408,56.113,54.851242,32.45,1006.0889,0.0,10.716793,1.0 +2024-02-08 01:00:00,8.6977005,11.955333,44.534245,43.305397,35.25,1005.46704,0.0,10.119533,1.0 +2024-02-08 02:00:00,8.324061,11.1040535,38.65983,38.418095,38.1,1005.5392,0.0,8.469763,1.0 +2024-02-08 03:00:00,7.2201114,9.360022,36.552567,36.747566,40.25,1005.3944,0.0,7.768603,1.0 +2024-02-08 04:00:00,5.3413477,6.5604877,38.157276,37.568665,41.9,1004.9389,0.0,7.8495154,1.0 +2024-02-08 05:00:00,2.5238857,3.2802439,33.6901,37.568665,42.6,1004.26135,0.0,8.187432,1.0 +2024-02-08 06:00:00,4.3462625,5.0328918,203.02553,200.95586,40.1,1003.803,0.0,12.213055,1.0 +2024-02-08 07:00:00,7.1309185,9.654015,194.62091,193.17256,38.4,1003.5623,0.0,14.5865755,1.0 +2024-02-08 08:00:00,7.81025,11.198661,193.32454,190.80818,37.7,1003.4455,0.0,14.892809,1.0 +2024-02-08 09:00:00,6.736468,10.423531,185.96439,183.85056,35.95,1003.59955,0.0,15.724661,1.0 +2024-02-08 10:00:00,5.308484,8.900561,183.23964,179.35626,34.45,1004.0572,0.0,19.59579,1.0 +2024-02-08 11:00:00,5.3037724,8.884255,177.83897,168.31065,32.0,1004.8868,0.0,26.784002,1.0 +2024-02-08 12:00:00,4.9010205,8.829496,178.83089,166.9081,30.8,1005.4504,0.0,25.32821,0.0 +2024-02-08 13:00:00,4.3,7.9075913,180.0,166.84245,29.5,1006.3089,0.0,27.475367,0.0 +2024-02-08 14:00:00,3.1016126,6.5787535,181.84756,160.46326,28.85,1006.3907,0.0,27.6719,0.0 +2024-02-08 15:00:00,2.0099752,5.60803,174.2895,148.86108,27.9,1006.0675,0.0,25.596405,0.0 +2024-02-08 16:00:00,2.4698176,3.9698865,148.24057,130.91429,27.25,1005.7527,0.0,22.502762,0.0 +2024-02-08 17:00:00,2.5079873,3.8327534,94.57384,97.495766,27.0,1005.5476,0.0,18.58477,0.0 +2024-02-08 18:00:00,3.238827,5.315073,81.11942,85.68405,25.05,1005.0974,0.0,18.577995,0.0 +2024-02-08 19:00:00,2.8635643,6.334824,77.90526,78.15795,25.6,1004.81506,0.0,15.352914,0.0 +2024-02-08 20:00:00,3.104835,8.17435,75.068535,75.113686,27.25,1004.95905,0.0,13.321486,0.0 +2024-02-08 21:00:00,4.4944406,9.76934,69.14546,67.10942,28.6,1005.29297,0.0,12.497185,0.0 +2024-02-08 22:00:00,5.5226803,10.789809,58.324585,55.573467,29.1,1005.70294,0.0,12.18552,1.0 +2024-02-08 23:00:00,6.4660654,11.264546,58.276447,54.75789,30.5,1006.4346,0.0,11.581114,1.0 +2024-02-09 00:00:00,6.4350605,10.625441,57.05078,54.963737,33.75,1006.8172,0.0,10.072904,1.0 +2024-02-09 01:00:00,6.529931,8.852683,49.969803,48.205307,37.65,1006.71857,0.0,9.506103,1.0 +2024-02-09 02:00:00,6.0207973,7.874643,41.63345,40.364468,40.65,1006.59503,0.0,7.8294916,1.0 +2024-02-09 03:00:00,3.8418746,4.967897,38.65983,40.10085,42.15,1006.3342,0.0,6.846836,1.0 +2024-02-09 04:00:00,0.53851646,1.104536,158.19853,84.805664,41.15,1005.51575,0.0,8.226296,1.0 +2024-02-09 05:00:00,4.4654226,5.860034,214.04597,216.67444,40.9,1005.0136,0.0,12.199193,1.0 +2024-02-09 06:00:00,6.6400304,9.104943,217.04256,218.7581,38.8,1004.56433,0.0,15.129314,1.0 +2024-02-09 07:00:00,6.6887965,9.604166,211.55133,211.37296,37.5,1004.2342,0.0,17.140053,1.0 +2024-02-09 08:00:00,6.1351447,9.284934,199.0257,202.14523,35.8,1003.9927,0.0,18.55896,1.0 +2024-02-09 09:00:00,4.8259716,7.6118326,185.94676,189.8335,35.35,1004.08044,0.0,20.150927,1.0 +2024-02-09 10:00:00,4.7296934,8.008121,193.44862,195.94547,33.1,1004.4194,0.0,25.93741,1.0 +2024-02-09 11:00:00,4.237924,7.496666,160.70985,170.78905,30.95,1005.2561,0.0,30.08178,1.0 +2024-02-09 12:00:00,4.850773,8.888757,165.67725,162.99197,31.0,1005.55505,0.0,24.043139,0.0 +2024-02-09 13:00:00,5.3712196,9.841239,155.82089,154.73694,30.9,1006.3459,0.0,18.934687,0.0 +2024-02-09 14:00:00,5.60803,10.288343,148.86108,152.18968,30.25,1006.7255,0.0,19.652145,0.0 +2024-02-09 15:00:00,4.7010636,9.228218,150.70874,150.1012,29.65,1006.5114,0.0,20.555937,0.0 +2024-02-09 16:00:00,3.5846896,7.9611554,149.8587,147.30803,28.7,1006.18823,0.0,20.750734,0.0 +2024-02-09 17:00:00,3.1144822,7.5166483,137.60262,139.31612,28.3,1005.78076,0.0,18.305813,0.0 +2024-02-09 18:00:00,2.7658632,7.0724816,130.60121,133.85432,27.75,1005.36945,0.0,17.78593,0.0 +2024-02-09 19:00:00,2.657066,6.896376,109.798965,119.53869,27.3,1005.35706,0.0,17.299427,0.0 +2024-02-09 20:00:00,2.942788,7.212489,99.78234,106.9276,27.35,1005.2594,0.0,16.2762,0.0 +2024-02-09 21:00:00,3.8052595,8.720665,93.012726,93.945114,28.0,1005.2768,0.0,15.053145,0.0 +2024-02-09 22:00:00,4.509989,9.408506,86.186005,87.56341,28.5,1005.48846,0.0,14.408956,1.0 +2024-02-09 23:00:00,5.4571056,9.729337,76.21838,77.53508,30.3,1005.9332,0.0,13.178723,1.0 +2024-02-10 00:00:00,5.6921,11.423222,71.564964,69.50258,34.2,1006.23364,0.0,11.084555,1.0 +2024-02-10 01:00:00,6.0827627,8.372574,62.59251,60.67962,38.65,1006.24744,0.0,10.470456,1.0 +2024-02-10 02:00:00,6.0207973,7.8568444,48.366554,47.579197,41.45,1006.1188,0.0,9.015004,1.0 +2024-02-10 03:00:00,4.1868844,5.5317264,40.15594,40.601215,43.2,1005.6654,0.0,7.8775253,1.0 +2024-02-10 04:00:00,0.94868326,0.6708204,198.43504,153.43501,42.1,1005.04285,0.0,8.286172,1.0 +2024-02-10 05:00:00,5.905929,7.6157727,208.30066,209.93143,40.65,1004.51117,0.0,13.889621,1.0 +2024-02-10 06:00:00,7.1589108,10.288343,204.77512,205.31964,38.7,1004.1649,0.0,19.055487,1.0 +2024-02-10 07:00:00,7.912016,11.552056,196.14441,196.08173,36.0,1003.7992,0.0,21.567911,1.0 +2024-02-10 08:00:00,6.1131005,9.044888,183.75165,185.7105,35.15,1003.38055,0.0,22.528536,1.0 +2024-02-10 09:00:00,5.622277,8.20975,185.10208,182.79265,33.9,1003.2493,0.0,27.561232,1.0 +2024-02-10 10:00:00,5.5226803,8.657945,174.80566,173.36758,32.2,1003.404,0.0,29.15201,1.0 +2024-02-10 11:00:00,5.2773094,9.904039,170.18077,163.57774,30.3,1003.8499,0.0,35.255497,1.0 +2024-02-10 12:00:00,6.2361846,10.184301,164.18074,160.49747,29.9,1004.4348,0.0,30.802439,0.0 +2024-02-10 13:00:00,5.9481087,10.030454,163.39294,159.57759,28.3,1005.08636,0.0,31.397266,0.0 +2024-02-10 14:00:00,5.1662364,9.108238,165.42575,160.76924,27.0,1005.25006,0.0,40.78667,0.0 +2024-02-10 15:00:00,4.753946,8.810222,157.75093,153.72585,26.45,1004.9372,0.0,42.6844,0.0 +2024-02-10 16:00:00,4.0718546,8.026207,155.32315,149.28117,26.4,1004.7377,0.0,39.95513,0.0 +2024-02-10 17:00:00,3.130495,7.1028166,153.43501,144.74356,26.1,1004.33264,0.0,37.683468,0.0 +2024-02-10 18:00:00,2.0880613,5.6859474,163.30067,145.75092,25.1,1004.1072,0.0,37.526974,0.0 +2024-02-10 19:00:00,2.0024984,5.188449,177.13765,152.44728,24.1,1004.0798,0.0,42.029892,0.0 +2024-02-10 20:00:00,2.4186773,5.7384667,172.87508,157.4569,23.6,1003.96674,0.0,46.90386,0.0 +2024-02-10 21:00:00,2.5632012,6.1294374,159.44388,151.76265,23.3,1004.1569,0.0,45.596195,0.0 +2024-02-10 22:00:00,2.2825425,5.7688823,151.1893,146.3099,22.85,1004.34265,0.0,42.95891,0.0 +2024-02-10 23:00:00,2.5238857,5.0931325,146.3099,136.5911,25.1,1004.99994,0.0,32.223633,1.0 +2024-02-11 00:00:00,1.6552945,3.8013155,154.98314,116.56499,29.05,1005.3048,0.0,22.034649,1.0 +2024-02-11 01:00:00,2.630589,3.1256998,188.74608,172.64772,30.05,1005.33136,0.0,36.948,1.0 +2024-02-11 02:00:00,3.0364454,3.1,197.24155,180.0,33.05,1005.0134,0.0,31.770456,1.0 +2024-02-11 03:00:00,3.5846896,3.6878178,202.98874,192.5288,35.05,1004.5687,0.0,32.31627,1.0 +2024-02-11 04:00:00,4.5793014,5.2325897,211.60745,206.0753,35.6,1003.6899,0.0,34.478424,1.0 +2024-02-11 05:00:00,5.7454333,7.3824115,211.47679,208.30066,34.95,1003.1771,0.0,33.123184,1.0 +2024-02-11 06:00:00,6.307139,8.955445,205.34613,203.70265,33.5,1002.54474,0.0,32.72684,1.0 +2024-02-11 07:00:00,5.8523498,8.658521,196.88687,194.03627,32.55,1002.2222,0.0,37.519844,1.0 +2024-02-11 08:00:00,6.1983867,9.265528,190.2221,186.81812,31.05,1001.8856,0.0,46.505577,1.0 +2024-02-11 09:00:00,6.412488,8.902246,183.57626,181.28731,28.9,1002.0271,0.0,53.95719,1.0 +2024-02-11 10:00:00,6.7186303,9.3,184.2678,180.0,27.4,1001.9872,0.0,63.25524,1.0 +2024-02-11 11:00:00,5.0249376,7.2993145,174.2895,170.53775,25.15,1002.62054,0.0,72.69416,1.0 +2024-02-11 12:00:00,3.2015622,4.8507733,181.78987,171.70294,24.0,1003.28345,0.0,78.8405,0.0 +2024-02-11 13:00:00,3.324154,5.1971145,173.08887,168.90631,23.45,1004.3594,0.0,81.24256,0.0 +2024-02-11 14:00:00,4.440721,8.271033,172.23492,165.29166,23.5,1004.16223,0.0,72.85947,0.0 +2024-02-11 15:00:00,4.318565,7.3979726,174.68555,170.66507,22.7,1003.54504,0.0,77.4353,0.0 +2024-02-11 16:00:00,3.981206,7.324616,168.40785,165.774,22.3,1003.2362,0.0,80.33886,0.0 +2024-02-11 17:00:00,1.9723083,4.494441,149.53453,147.72438,21.75,1003.02277,0.0,82.560616,0.0 +2024-02-11 18:00:00,1.8439089,4.531004,167.4712,157.96371,21.3,1002.7126,0.0,84.33651,0.0 +2024-02-11 19:00:00,2.2022717,4.8259716,182.60251,174.05324,21.05,1002.50696,0.0,87.26185,0.0 +2024-02-11 20:00:00,2.9017239,5.707889,178.02512,176.98727,20.9,1002.8005,0.0,90.85816,0.0 +2024-02-11 21:00:00,3.306055,6.2128897,176.53185,176.30869,20.95,1003.00037,0.0,91.99784,0.0 +2024-02-11 22:00:00,3.7215588,6.8359346,173.82993,174.1227,21.0,1003.39844,0.0,93.1492,0.0 +2024-02-11 23:00:00,3.8587563,6.484597,148.78166,153.43501,21.95,1004.01996,0.0,89.257195,1.0 +2024-02-12 00:00:00,2.7856774,3.5846896,158.96242,157.01126,24.05,1004.2766,0.0,76.680016,1.0 +2024-02-12 01:00:00,4.204759,5.3,182.72626,180.0,25.65,1004.51874,0.0,69.26436,1.0 +2024-02-12 02:00:00,5.178803,6.449806,190.00792,187.12492,27.25,1004.6615,0.0,62.441963,1.0 +2024-02-12 03:00:00,6.1611686,7.5133214,193.13403,189.96375,27.95,1004.48193,0.0,60.498608,1.0 +2024-02-12 04:00:00,6.676077,8.22253,196.53491,193.36023,28.0,1003.9872,0.0,59.762833,1.0 +2024-02-12 05:00:00,6.9892774,8.793179,199.21277,197.19862,27.6,1003.8773,0.0,62.51914,1.0 +2024-02-12 06:00:00,7.1168814,9.024965,197.162,195.42223,27.45,1003.7741,0.0,63.070297,1.0 +2024-02-12 07:00:00,7.0830784,9.042676,193.05525,190.19144,27.55,1003.4793,0.0,62.702274,1.0 +2024-02-12 08:00:00,7.808969,10.097525,189.58287,187.96953,26.45,1003.15173,0.0,66.68056,1.0 +2024-02-12 09:00:00,7.256032,9.533625,187.12492,184.81346,25.75,1003.0337,0.0,70.583824,1.0 +2024-02-12 10:00:00,7.017834,9.404785,184.08554,181.82793,24.45,1003.494,0.0,75.56253,1.0 +2024-02-12 11:00:00,5.9008474,8.109871,179.029,177.17294,22.9,1003.848,0.0,82.954834,1.0 +2024-02-12 12:00:00,6.0074954,8.628442,177.13765,175.34674,22.1,1004.12354,0.0,87.08602,0.0 +2024-02-12 13:00:00,5.9413805,9.166243,173.23392,173.10767,21.75,1004.4113,0.0,81.78918,0.0 +2024-02-12 14:00:00,5.323533,8.260751,174.61078,173.04713,21.65,1004.8052,0.0,80.75733,0.0 +2024-02-12 15:00:00,5.0358715,8.188407,173.15732,171.57312,21.5,1004.6027,0.0,82.27229,0.0 +2024-02-12 16:00:00,4.7296934,7.930952,166.55138,166.13895,21.2,1004.2966,0.0,84.85527,0.0 +2024-02-12 17:00:00,3.4176016,6.332456,159.44388,158.70258,20.7,1003.88574,0.0,88.32867,0.0 +2024-02-12 18:00:00,2.7294688,5.635601,151.55717,152.52565,20.15,1003.47363,0.0,91.092804,0.0 +2024-02-12 19:00:00,2.842534,6.1846585,129.28938,129.09386,20.0,1003.46924,0.0,88.27004,0.0 +2024-02-12 20:00:00,2.1931713,6.4899926,136.8476,123.690094,20.45,1003.28375,0.0,76.60408,0.0 +2024-02-12 21:00:00,2.2825425,6.296825,151.1893,122.68055,21.2,1003.70154,0.0,63.2971,0.0 +2024-02-12 22:00:00,3.5846896,8.104321,120.141304,105.75124,23.65,1003.8688,0.0,45.240467,0.0 +2024-02-12 23:00:00,5.2924476,9.217917,112.20353,105.09163,25.85,1004.02844,0.0,39.80097,1.0 +2024-02-13 00:00:00,5.27731,7.7162166,117.05052,108.90467,28.45,1004.396,0.0,32.18333,1.0 +2024-02-13 01:00:00,4.6669044,6.080296,135.0001,126.30459,29.2,1005.01135,0.0,32.824467,1.0 +2024-02-13 02:00:00,4.750789,6.0141497,139.26799,132.97864,32.0,1004.8868,0.0,27.597534,1.0 +2024-02-13 03:00:00,4.7853947,5.882177,153.97047,144.6887,34.2,1004.54694,0.0,24.067268,1.0 +2024-02-13 04:00:00,5.315073,6.7446275,175.68405,164.5213,35.35,1003.882,0.0,22.805304,1.0 +2024-02-13 05:00:00,7.368175,10.002,187.8001,178.85426,33.5,1003.04083,0.0,33.36435,1.0 +2024-02-13 06:00:00,8.590692,11.827087,192.09474,183.87845,31.9,1002.90015,0.0,40.824512,1.0 +2024-02-13 07:00:00,8.994442,13.013839,188.3102,182.64249,30.45,1002.4652,0.0,39.40167,1.0 +2024-02-13 08:00:00,8.100618,12.220065,180.7073,176.7162,30.15,1001.96124,0.0,39.700348,1.0 +2024-02-13 09:00:00,7.5006666,10.358571,179.23611,173.90424,29.3,1001.9386,0.0,45.45528,1.0 +2024-02-13 10:00:00,7.2,10.557462,180.0,174.0195,27.6,1002.1909,0.0,51.46822,1.0 +2024-02-13 11:00:00,6.1131005,10.456099,176.24835,170.08731,25.75,1002.4385,0.0,57.574234,1.0 +2024-02-13 12:00:00,6.067125,10.852188,171.46931,163.40182,25.45,1002.6287,0.0,55.5207,0.0 +2024-02-13 13:00:00,6.2297673,10.6775465,161.27412,157.99925,25.65,1003.13,0.0,50.962162,0.0 +2024-02-13 14:00:00,4.8754487,9.042676,154.48618,147.18864,25.65,1003.22925,0.0,48.70785,0.0 +2024-02-13 15:00:00,4.5177426,8.902246,152.30061,141.84273,26.65,1002.66144,0.0,40.157112,0.0 +2024-02-13 16:00:00,4.909175,9.552486,146.63362,137.12111,27.85,1002.0984,0.0,27.493244,0.0 +2024-02-13 17:00:00,4.6647615,9.078547,120.96369,116.84721,28.4,1002.014,0.0,23.853298,0.0 +2024-02-13 18:00:00,4.167733,8.709191,120.256355,111.557144,28.35,1001.81433,0.0,23.922743,0.0 +2024-02-13 19:00:00,4.2544093,8.829496,113.55228,103.0919,28.2,1001.61176,0.0,25.942688,0.0 +2024-02-13 20:00:00,4.4922156,9.15478,106.821495,96.27098,28.3,1001.3168,0.0,28.280685,0.0 +2024-02-13 21:00:00,5.8,10.816654,90.0,86.82024,28.65,1001.3261,0.0,29.649206,0.0 +2024-02-13 22:00:00,6.905071,12.066896,79.99209,80.459694,28.6,1001.62256,0.0,30.751335,0.0 +2024-02-13 23:00:00,7.955501,12.806249,75.43969,75.52967,29.4,1002.1399,0.0,29.755955,1.0 +2024-02-14 00:00:00,8.271033,12.129716,75.29166,74.7034,31.9,1002.3048,0.0,25.878395,1.0 +2024-02-14 01:00:00,4.4045434,6.258594,87.3975,77.074,34.1,1002.8578,0.0,21.81836,1.0 +2024-02-14 02:00:00,4.0261645,5.4626,75.61857,66.2505,37.2,1002.63904,0.0,18.082283,1.0 +2024-02-14 03:00:00,2.8231187,3.940812,67.06787,54.293217,39.6,1002.0046,0.0,14.541731,1.0 +2024-02-14 04:00:00,1.5,0.86023253,216.86998,215.53777,40.55,1001.13477,0.0,13.821878,1.0 +2024-02-14 05:00:00,5.8137765,7.9479556,206.56499,201.39987,38.6,1000.3922,0.0,25.447641,1.0 +2024-02-14 06:00:00,7.8771825,11.428473,200.04533,195.73886,36.65,999.8471,0.0,28.203732,1.0 +2024-02-14 07:00:00,7.119691,10.282509,190.52074,187.26315,35.8,999.32935,0.0,26.911406,1.0 +2024-02-14 08:00:00,6.041523,8.459313,192.42593,186.78888,34.5,999.2964,0.0,31.553251,1.0 +2024-02-14 09:00:00,6.9007244,9.9408245,180.83029,174.80566,33.65,999.0761,0.0,33.620422,1.0 +2024-02-14 10:00:00,6.7067127,9.924716,182.56372,175.9556,31.05,999.0086,0.0,40.204662,1.0 +2024-02-14 11:00:00,5.0990195,9.679876,168.69011,160.06738,29.15,999.2561,0.0,46.290886,1.0 +2024-02-14 12:00:00,6.0728908,10.640489,162.75845,158.4985,28.0,999.4241,0.0,48.39623,0.0 +2024-02-14 13:00:00,6.0083275,10.176934,161.56496,157.4667,27.55,1000.50336,0.0,45.565025,0.0 +2024-02-14 14:00:00,5.1195703,8.854377,167.59259,161.56496,26.65,1000.77673,0.0,51.55101,0.0 +2024-02-14 15:00:00,3.6687872,6.71193,162.55272,151.5259,26.45,1000.77106,0.0,54.19655,0.0 +2024-02-14 16:00:00,2.4186773,5.0249376,172.87508,148.84076,25.9,1000.4588,0.0,55.63208,0.0 +2024-02-14 17:00:00,1.4866068,3.3837848,199.65392,145.84026,25.6,999.75635,0.0,57.355564,0.0 +2024-02-14 18:00:00,1.6124516,1.8027756,240.2552,176.82024,23.55,999.4028,0.0,73.78659,0.0 +2024-02-14 19:00:00,1.0440307,1.0770329,253.30067,158.19853,22.65,999.17944,0.0,86.066216,0.0 +2024-02-14 20:00:00,0.92195445,2.5079873,192.5288,94.57384,23.25,998.8985,0.0,85.33286,0.0 +2024-02-14 21:00:00,2.4020824,6.530697,87.614105,78.51804,26.45,998.688,0.0,52.329166,0.0 +2024-02-14 22:00:00,6.484597,11.738825,70.167786,66.929565,31.8,998.6313,0.0,21.532967,0.0 +2024-02-14 23:00:00,8.13941,13.188252,63.749832,58.9618,33.1,998.7643,0.0,18.55246,1.0 +2024-02-15 00:00:00,5.7999997,10.630146,43.602894,48.814175,36.5,999.248,0.0,13.507568,1.0 +2024-02-15 01:00:00,3.6235344,4.9193497,297.97937,296.56497,26.4,1001.36505,0.0,62.840405,1.0 +2024-02-15 02:00:00,3.471311,4.1,281.6336,282.68036,28.8,1001.5286,0.0,54.440735,1.0 +2024-02-15 03:00:00,3.238827,3.8832974,278.88058,281.88864,27.8,1001.8987,0.0,59.531017,1.0 +2024-02-15 04:00:00,3.7215588,4.428318,276.17007,276.48297,28.5,1001.8181,0.0,56.268715,1.0 +2024-02-15 05:00:00,3.748333,4.570558,279.21094,280.08054,27.55,1001.89215,0.0,58.55146,1.0 +2024-02-15 06:00:00,4.219004,5.234501,275.44025,276.58185,27.1,1001.979,0.0,62.99387,1.0 +2024-02-15 07:00:00,3.9623227,4.883646,259.82455,259.3804,27.4,1001.9872,0.0,60.750484,1.0 +2024-02-15 08:00:00,3.8639357,4.707441,259.56256,257.73523,27.1,1002.2767,0.0,62.798317,1.0 +2024-02-15 09:00:00,2.84605,3.5846896,251.56496,247.01126,25.85,1002.9373,0.0,67.60236,1.0 +2024-02-15 10:00:00,2.404163,3.2202485,253.0724,244.23071,24.65,1003.4005,0.0,73.514755,1.0 +2024-02-15 11:00:00,2.0248456,2.641969,249.77505,240.5242,24.0,1003.9778,0.0,76.67229,1.0 +2024-02-15 12:00:00,1.421267,2.059126,219.28938,209.0545,23.8,1004.56714,0.0,77.8409,0.0 +2024-02-15 13:00:00,2.4413111,3.8013155,214.9921,206.56499,23.25,1004.6513,0.0,82.7396,0.0 +2024-02-15 14:00:00,2.0615528,2.886174,165.96373,165.96373,23.15,1004.64844,0.0,81.70937,0.0 +2024-02-15 15:00:00,1.7088008,2.4698179,159.44388,158.62932,23.15,1004.4501,0.0,80.45184,0.0 +2024-02-15 16:00:00,3.026549,4.964876,172.40544,161.20001,23.1,1003.9528,0.0,77.737434,0.0 +2024-02-15 17:00:00,2.7166157,5.3,186.3401,180.0,22.2,1003.8288,0.0,82.6146,0.0 +2024-02-15 18:00:00,0.9433981,1.104536,32.005356,95.19434,22.0,1004.21985,0.0,82.59063,0.0 +2024-02-15 19:00:00,1.2806249,2.2135942,218.65984,198.43504,20.75,1003.8873,0.0,90.002846,0.0 +2024-02-15 20:00:00,2.059126,3.49285,209.0545,203.6294,21.8,1004.3133,0.0,88.969666,0.0 +2024-02-15 21:00:00,1.9313208,3.640055,201.25058,195.94547,21.75,1004.4113,0.0,90.07456,0.0 +2024-02-15 22:00:00,1.4422206,3.2449963,213.6901,213.6901,21.6,1005.20026,0.0,90.343254,0.0 +2024-02-15 23:00:00,0.60827625,1.2529964,80.53775,118.61037,21.8,1006.09863,0.0,88.69444,1.0 +2024-02-16 00:00:00,1.6643317,2.1400933,147.26479,142.59457,22.6,1006.81537,0.0,83.4361,1.0 +2024-02-16 01:00:00,3.905125,5.10392,182.93561,182.2457,23.65,1006.64606,0.0,78.06084,1.0 +2024-02-16 02:00:00,2.6476402,3.49285,100.88548,103.24053,26.35,1006.3234,0.0,63.61941,1.0 +2024-02-16 03:00:00,4.0816665,5.5758405,59.03632,57.45001,30.85,1005.94775,0.0,39.259605,1.0 +2024-02-16 04:00:00,3.2802439,3.2449963,217.56866,213.6901,31.8,1005.7743,0.0,37.915287,1.0 +2024-02-16 05:00:00,4.964876,5.59017,198.79999,190.3048,30.6,1004.94904,0.0,53.545414,1.0 +2024-02-16 06:00:00,6.2393913,7.816009,201.63095,196.34825,29.65,1004.6266,0.0,58.319664,1.0 +2024-02-16 07:00:00,6.562012,9.035485,187.88304,185.07951,26.55,1004.8409,0.0,58.68348,1.0 +2024-02-16 08:00:00,5.408327,7.406079,183.17976,177.67851,27.75,1004.57587,0.0,54.350124,1.0 +2024-02-16 09:00:00,5.4451814,7.5,187.38596,180.0,27.55,1004.8681,0.0,57.103012,1.0 +2024-02-16 10:00:00,6.2201285,9.004998,184.61057,178.0909,26.3,1005.0324,0.0,63.212425,1.0 +2024-02-16 11:00:00,4.925444,8.080842,174.17375,167.85574,24.75,1005.28766,0.0,67.8059,1.0 +2024-02-16 12:00:00,3.4481878,5.9506307,163.14153,155.15764,24.65,1005.9795,0.0,69.072014,0.0 +2024-02-16 13:00:00,3.764306,6.726812,129.61066,131.98714,24.65,1006.4754,0.0,61.27599,0.0 +2024-02-16 14:00:00,3.4539833,6.6573267,157.8905,147.26479,24.45,1006.56885,0.0,60.07204,0.0 +2024-02-16 15:00:00,3.224903,6.519202,150.2552,147.52882,23.3,1006.3389,0.0,67.51541,0.0 +2024-02-16 16:00:00,2.8301945,5.940539,147.99466,143.90163,22.75,1006.02594,0.0,69.5793,0.0 +2024-02-16 17:00:00,3.1780498,6.664833,155.85446,152.28159,22.2,1005.4158,0.0,75.43686,0.0 +2024-02-16 18:00:00,3.535534,7.3573093,151.2603,148.90276,21.95,1004.81335,0.0,78.05551,0.0 +2024-02-16 19:00:00,2.2671568,4.103657,131.42357,136.97493,20.7,1005.27423,0.0,83.21668,0.0 +2024-02-16 20:00:00,2.2135942,3.764306,161.56496,129.61066,20.15,1005.8539,0.0,82.106346,0.0 +2024-02-16 21:00:00,3.6055512,7.212489,146.3099,135.0001,22.15,1005.3149,0.0,65.16156,0.0 +2024-02-16 22:00:00,3.4655447,7.5802374,133.83095,126.41647,24.55,1005.6791,0.0,43.14641,0.0 +2024-02-16 23:00:00,2.184033,5.7271285,105.945465,102.09474,25.15,1006.6874,0.0,38.3034,1.0 +2024-02-17 00:00:00,4.3931766,8.0025,101.821465,88.56794,28.25,1006.6722,0.0,32.127625,1.0 +2024-02-17 01:00:00,5.0990195,7.6275816,138.17992,124.31515,31.5,1005.7663,0.0,28.67545,1.0 +2024-02-17 02:00:00,5.0990195,6.87968,131.82008,122.53506,35.45,1005.47205,0.0,20.243336,1.0 +2024-02-17 03:00:00,4.2190046,5.6302757,121.42952,109.722374,38.85,1005.06177,0.0,15.5577,1.0 +2024-02-17 04:00:00,4.140048,5.4626,127.14677,113.749504,40.6,1004.21216,0.0,12.610819,1.0 +2024-02-17 05:00:00,3.231099,3.9698865,158.19853,139.08571,41.5,1003.14294,0.0,11.817222,1.0 +2024-02-17 06:00:00,5.0635953,6.7029843,189.0902,181.70978,39.3,1002.7908,0.0,20.037537,1.0 +2024-02-17 07:00:00,6.1846585,8.372574,194.03627,187.54933,37.25,1002.3427,0.0,31.495213,1.0 +2024-02-17 08:00:00,7.81025,11.363539,193.32454,186.06169,34.95,1001.9866,0.0,36.42232,1.0 +2024-02-17 09:00:00,7.8230433,11.503912,184.39862,178.5057,32.9,1002.03296,0.0,34.953056,1.0 +2024-02-17 10:00:00,6.0299253,9.159148,174.2895,169.30354,31.65,1002.39746,0.0,37.631958,1.0 +2024-02-17 11:00:00,5.423099,10.165136,174.71,164.59651,30.25,1002.65814,0.0,43.72675,1.0 +2024-02-17 12:00:00,5.8523498,10.754068,163.11313,157.01126,28.8,1003.01666,0.0,45.03126,0.0 +2024-02-17 13:00:00,7.291776,12.253979,154.84073,153.85323,27.05,1003.9616,0.0,47.9892,0.0 +2024-02-17 14:00:00,5.077401,9.180958,147.87503,147.00229,27.1,1003.96295,0.0,47.69495,0.0 +2024-02-17 15:00:00,3.482815,7.212489,140.82635,135.0001,27.55,1003.6777,0.0,44.260105,0.0 +2024-02-17 16:00:00,3.4655447,7.6216793,133.83095,128.07283,27.9,1003.29,0.0,40.373627,0.0 +2024-02-17 17:00:00,4.565085,9.848858,118.8107,113.962494,30.05,1002.65283,0.0,28.759064,0.0 +2024-02-17 18:00:00,7.256721,12.592855,101.929306,102.38075,34.4,1002.1708,0.0,14.288686,0.0 +2024-02-17 19:00:00,7.915807,13.164347,93.621414,95.6672,34.5,1002.0744,0.0,13.52273,0.0 +2024-02-17 20:00:00,7.8,13.003461,90.0,91.32195,33.35,1001.9454,0.0,14.47087,0.0 +2024-02-17 21:00:00,7.8160095,13.138113,86.33228,85.63483,33.15,1002.03955,0.0,14.530705,0.0 +2024-02-17 22:00:00,7.6118326,13.081667,80.166504,78.088806,32.85,1002.23004,0.0,14.312371,0.0 +2024-02-17 23:00:00,8.381527,13.692699,72.64589,71.69728,33.8,1002.3538,0.0,13.329939,1.0 +2024-02-18 00:00:00,7.8924017,13.577187,67.65931,67.023026,36.25,1002.5156,0.0,12.017317,1.0 +2024-02-18 01:00:00,8.21523,11.650322,58.43824,57.264786,39.6,1002.4015,0.0,10.567168,1.0 +2024-02-18 02:00:00,8.438602,11.402192,49.325157,48.199623,42.6,1002.2767,0.0,9.140417,1.0 +2024-02-18 03:00:00,9.183136,12.322742,38.367523,38.078938,45.0,1001.83856,0.0,7.8418226,1.0 +2024-02-18 04:00:00,8.184132,10.643778,26.878069,26.805723,46.85,1001.0887,0.0,6.834411,1.0 +2024-02-18 05:00:00,5.6293874,7.0604534,12.308005,15.611057,47.9,1000.4187,0.0,6.2749066,1.0 +2024-02-18 06:00:00,4.1,5.4120235,12.680387,16.09089,48.75,999.7437,0.0,5.883867,1.0 +2024-02-18 07:00:00,5.9908266,8.998889,255.49979,255.19157,39.15,999.8103,0.0,20.199783,1.0 +2024-02-18 08:00:00,2.9832869,5.72014,193.57045,216.46933,35.8,999.82544,0.0,25.796824,1.0 +2024-02-18 09:00:00,2.7,3.5014284,180.0,178.36346,38.35,1000.18744,0.0,17.806,1.0 +2024-02-18 10:00:00,3.1064448,5.0159745,213.17853,203.49858,36.4,1000.93225,0.0,23.224154,1.0 +2024-02-18 11:00:00,3.275668,5.830952,192.33908,174.09395,34.0,1001.2678,0.0,26.175364,1.0 +2024-02-18 12:00:00,4.3324356,8.256513,161.14674,168.8262,31.85,1001.8071,0.0,29.637667,0.0 +2024-02-18 13:00:00,2.6172504,6.3560996,173.41815,155.85446,32.9,1001.8345,0.0,20.867523,0.0 +2024-02-18 14:00:00,2.209072,6.040695,174.80566,160.6651,31.35,1001.7943,0.0,23.171312,0.0 +2024-02-18 15:00:00,3.001666,4.9648767,150.01845,152.4028,29.45,1001.4467,0.0,25.660696,0.0 +2024-02-18 16:00:00,1.8357561,3.3734255,209.35765,168.0239,30.55,1001.37646,0.0,25.347586,0.0 +2024-02-18 17:00:00,2.2203603,3.4058774,215.83774,183.3664,27.05,1000.6882,0.0,42.571884,0.0 +2024-02-18 18:00:00,1.9924859,3.2695565,107.52566,156.57129,26.25,1000.36896,0.0,43.7601,0.0 +2024-02-18 19:00:00,2.0024984,3.0,92.86235,143.13002,26.05,999.96686,0.0,39.463066,0.0 +2024-02-18 20:00:00,2.302173,4.7127485,87.5105,107.281586,27.4,1000.1025,0.0,27.653131,0.0 +2024-02-18 21:00:00,4.0249224,7.7155685,63.435013,47.62646,28.6,1000.33295,0.0,20.58044,0.0 +2024-02-18 22:00:00,5.4451814,10.495713,45.74398,30.963696,32.1,1000.9209,0.0,15.037841,0.0 +2024-02-18 23:00:00,5.8137765,10.24207,40.814987,27.315529,33.65,1001.7549,0.0,13.110006,1.0 +2024-02-19 00:00:00,5.728001,10.733592,45.707233,33.986217,36.85,1002.53107,0.0,10.749589,1.0 +2024-02-19 01:00:00,7.072482,9.847842,33.465405,32.56043,40.8,1002.431,0.0,8.471664,1.0 +2024-02-19 02:00:00,7.915807,10.645187,26.24129,25.602148,43.05,1002.3869,0.0,6.897979,1.0 +2024-02-19 03:00:00,8.132035,10.756393,16.429382,16.750347,45.7,1001.8553,0.0,5.7550826,1.0 +2024-02-19 04:00:00,6.6,8.705171,360.0,1.9748993,47.1,1000.8961,0.0,5.377108,1.0 +2024-02-19 05:00:00,4.365776,5.5470715,290.0953,297.95087,44.95,1000.15027,0.0,7.669346,1.0 +2024-02-19 06:00:00,6.8308125,9.669023,252.09546,259.27118,39.6,999.9208,0.0,17.04146,1.0 +2024-02-19 07:00:00,6.0728908,8.7097645,252.75845,257.39984,37.2,999.66235,0.0,22.52404,1.0 +2024-02-19 08:00:00,3.405877,4.8010416,229.76372,234.3235,34.75,999.89795,0.0,32.963337,1.0 +2024-02-19 09:00:00,1.6643317,2.758623,212.73521,223.53127,33.2,999.95734,0.0,33.71304,1.0 +2024-02-19 10:00:00,2.720294,3.4481878,197.10281,196.85847,33.3,1000.1583,0.0,34.506588,1.0 +2024-02-19 11:00:00,1.5264337,2.745906,148.39255,146.88864,32.65,1001.03455,0.0,33.34577,1.0 +2024-02-19 12:00:00,1.5297059,3.3734255,191.30989,168.0239,30.9,1001.0879,0.0,36.117764,0.0 +2024-02-19 13:00:00,0.8544004,1.3892444,290.55612,210.25635,30.95,1001.78394,0.0,33.747944,0.0 +2024-02-19 14:00:00,1.4142135,2.751363,278.13,250.9064,28.25,1001.91064,0.0,40.470867,0.0 +2024-02-19 15:00:00,1.7262677,2.385372,259.9921,213.02386,28.2,1001.61176,0.0,41.792614,0.0 +2024-02-19 16:00:00,0.56568545,1.6763055,44.999897,197.35411,27.95,1001.7044,0.0,41.58818,0.0 +2024-02-19 17:00:00,0.60827625,1.8027756,80.53775,183.17976,27.7,1001.39984,0.0,40.981354,0.0 +2024-02-19 18:00:00,0.72801095,1.9104973,105.945465,173.99109,27.0,1000.8854,0.0,42.976322,0.0 +2024-02-19 19:00:00,0.98488575,1.8439089,66.037506,139.39879,26.85,1000.5837,0.0,41.418438,0.0 +2024-02-19 20:00:00,2.4738634,4.7518415,75.96373,98.47106,24.25,1000.61224,0.0,42.21222,0.0 +2024-02-19 21:00:00,2.4738634,4.90408,75.96373,92.33726,24.1,1000.50903,0.0,39.307976,0.0 +2024-02-19 22:00:00,2.408319,6.3198104,85.23644,85.46231,24.95,1000.5322,0.0,33.412422,0.0 +2024-02-19 23:00:00,2.1023796,5.9841456,87.27374,80.38034,27.85,1000.7096,0.0,25.6712,1.0 +2024-02-20 00:00:00,1.2041595,1.3038404,228.36655,85.60138,31.5,1001.4012,0.0,21.902834,1.0 +2024-02-20 01:00:00,1.3892444,0.94868326,210.25635,108.43504,33.65,1001.2588,0.0,25.233414,1.0 +2024-02-20 02:00:00,2.4207437,1.7720045,218.2902,196.38962,35.7,1000.91437,0.0,27.502388,1.0 +2024-02-20 03:00:00,3.8183768,3.8418746,224.9999,218.65984,35.45,1000.70953,0.0,33.89756,1.0 +2024-02-20 04:00:00,5.2430906,6.4660654,214.90257,211.72356,34.75,999.9972,0.0,33.706528,1.0 +2024-02-20 05:00:00,5.4120235,7.291776,207.51192,205.15927,34.35,999.78845,0.0,30.61204,1.0 +2024-02-20 06:00:00,5.011986,7.038466,208.61037,202.55728,33.3,999.56305,0.0,36.78032,1.0 +2024-02-20 07:00:00,6.0083275,8.29759,198.43504,192.5288,32.25,999.3376,0.0,41.440342,1.0 +2024-02-20 08:00:00,5.6515484,7.496666,193.29858,189.21095,31.95,999.2306,0.0,38.19993,1.0 +2024-02-20 09:00:00,4.237924,5.8694124,199.29015,188.8203,30.85,999.2017,0.0,44.30782,1.0 +2024-02-20 10:00:00,3.748333,5.500909,189.21095,178.95839,30.25,999.48364,0.0,41.818676,1.0 +2024-02-20 11:00:00,3.667424,6.0827627,191.0035,170.53775,28.75,999.6426,0.0,45.161976,1.0 +2024-02-20 12:00:00,3.5341196,5.903389,205.1148,181.94144,27.05,1000.29144,0.0,54.003746,0.0 +2024-02-20 13:00:00,2.1023796,4.3,205.34613,180.0,25.2,1001.7291,0.0,64.37387,0.0 +2024-02-20 14:00:00,1.9697715,4.6389656,203.9625,187.43132,24.25,1001.9017,0.0,72.53638,0.0 +2024-02-20 15:00:00,1.8027756,4.6872168,199.44012,191.07016,23.65,1001.7859,0.0,78.79094,0.0 +2024-02-20 16:00:00,1.6492423,4.539824,194.03627,187.59456,23.0,1001.47034,0.0,83.48176,0.0 +2024-02-20 17:00:00,2.0808651,3.4234486,144.78232,173.29025,21.9,1001.2416,0.0,88.97757,0.0 +2024-02-20 18:00:00,2.4738634,4.0199504,165.96373,174.2895,21.5,1001.3297,0.0,88.39515,0.0 +2024-02-20 19:00:00,1.9849433,4.401136,130.91429,158.68202,21.5,1000.53625,0.0,86.76054,0.0 +2024-02-20 20:00:00,2.2472203,4.5221677,110.854546,144.90411,21.3,1000.3322,0.0,79.19999,0.0 +2024-02-20 21:00:00,2.9206164,4.1231055,141.95291,165.96373,20.9,1000.7177,0.0,71.93783,0.0 +2024-02-20 22:00:00,2.8017852,3.8327534,182.04536,187.49576,20.35,1001.4957,0.0,78.56466,0.0 +2024-02-20 23:00:00,1.3,3.354102,180.0,190.3048,23.0,1002.56134,0.0,76.27881,1.0 +2024-02-21 00:00:00,1.104536,2.1023796,174.80566,177.27374,25.75,1003.1329,0.0,66.537964,1.0 +2024-02-21 01:00:00,3.275668,4.1629314,211.26367,204.10223,29.0,1003.31964,0.0,42.013218,1.0 +2024-02-21 02:00:00,3.9115214,4.9658837,212.47118,205.01686,29.5,1003.72955,0.0,43.106953,1.0 +2024-02-21 03:00:00,5.2430906,6.5764737,214.90257,208.12364,29.55,1003.83014,0.0,45.812862,1.0 +2024-02-21 04:00:00,5.866856,7.515318,209.62366,205.2011,29.5,1003.432,0.0,49.879494,1.0 +2024-02-21 05:00:00,6.307139,7.8924017,205.34613,202.3407,29.3,1003.129,0.0,54.73482,1.0 +2024-02-21 06:00:00,6.462198,8.000625,201.80147,198.20857,28.95,1002.6239,0.0,59.61202,1.0 +2024-02-21 07:00:00,6.5787535,8.256513,199.53674,196.89873,28.4,1002.41077,0.0,63.082226,1.0 +2024-02-21 08:00:00,6.2625875,7.9699435,199.59238,197.52567,27.65,1002.29144,0.0,66.71769,1.0 +2024-02-21 09:00:00,6.0440054,7.788453,196.33612,195.6423,26.5,1002.459,0.0,72.482414,1.0 +2024-02-21 10:00:00,5.772348,7.495332,194.03627,193.1092,25.3,1002.92224,0.0,79.02322,1.0 +2024-02-21 11:00:00,5.557877,7.566373,188.2758,187.59456,24.1,1003.38544,0.0,85.94359,1.0 +2024-02-21 12:00:00,5.414795,7.6164293,184.23631,183.76396,23.75,1004.07,0.0,87.50259,0.0 +2024-02-21 13:00:00,6.000833,8.300603,180.95482,180.69026,23.75,1004.8635,0.1,81.28076,0.0 +2024-02-21 14:00:00,6.5069194,9.019978,177.35751,176.186,23.65,1005.15826,0.1,84.85073,0.0 +2024-02-21 15:00:00,6.9231496,9.590098,169.17703,168.57294,23.55,1005.2548,0.0,81.25533,0.0 +2024-02-21 16:00:00,7.3979726,10.261091,166.71512,167.04724,23.15,1005.04517,0.0,78.71983,0.0 +2024-02-21 17:00:00,7.8262377,10.768937,169.6952,169.83798,22.8,1004.8373,0.0,76.48674,0.0 +2024-02-21 18:00:00,8.104937,11.229425,170.77019,171.29271,22.45,1004.6292,0.0,74.29833,0.0 +2024-02-21 19:00:00,7.9246454,11.18034,169.82455,169.6952,22.15,1004.5214,0.0,72.62204,0.0 +2024-02-21 20:00:00,7.3756356,10.965857,167.4712,167.35785,21.5,1004.5035,0.0,73.668816,0.0 +2024-02-21 21:00:00,6.9857,10.478549,166.75948,166.75948,21.05,1004.49054,0.0,75.48949,0.0 +2024-02-21 22:00:00,6.8308125,10.374005,162.09546,162.61295,20.8,1004.682,0.0,75.4489,0.0 +2024-02-21 23:00:00,6.6241984,9.482615,151.11351,152.35411,21.15,1005.2868,0.0,72.21339,1.0 +2024-02-22 00:00:00,6.0901566,8.013114,150.4886,150.87604,22.55,1005.8222,0.0,63.799847,1.0 +2024-02-22 01:00:00,5.056679,6.484597,155.4623,153.43501,24.6,1005.482,0.0,55.845207,1.0 +2024-02-22 02:00:00,4.3324356,5.280152,161.14674,155.37645,27.25,1004.85986,0.0,47.429314,1.0 +2024-02-22 03:00:00,4.7095647,5.80517,176.34785,169.07724,29.55,1004.22687,0.0,41.094448,1.0 +2024-02-22 04:00:00,6.3788714,7.7929454,193.60056,188.85788,29.95,1003.6424,0.0,42.545246,1.0 +2024-02-22 05:00:00,7.558439,9.507892,197.71588,194.62091,28.9,1003.2175,0.0,48.634224,1.0 +2024-02-22 06:00:00,8.228001,10.599057,196.23242,193.64293,28.0,1002.6976,0.0,50.12053,1.0 +2024-02-22 07:00:00,7.746612,10.111875,191.16484,188.53069,28.1,1002.30347,0.0,49.51362,1.0 +2024-02-22 08:00:00,7.7103825,10.060318,189.70659,186.2772,28.15,1001.80896,0.0,52.266087,1.0 +2024-02-22 09:00:00,7.496666,10.049875,189.21095,185.7105,26.7,1001.77,0.0,60.212315,1.0 +2024-02-22 10:00:00,6.4070277,8.800569,182.68372,180.65105,25.3,1001.63275,0.0,65.82479,1.0 +2024-02-22 11:00:00,5.234501,7.610519,186.58185,183.01273,24.4,1001.80664,0.0,71.66341,1.0 +2024-02-22 12:00:00,5.0,8.130191,180.0,175.06087,24.05,1001.89606,0.0,72.049416,0.0 +2024-02-22 13:00:00,4.7010636,8.238932,178.78116,174.4279,23.8,1002.1867,0.0,73.36917,0.0 +2024-02-22 14:00:00,3.0413814,6.332456,170.53775,164.4274,23.6,1001.8838,0.0,74.4903,0.0 +2024-02-22 15:00:00,2.3345237,4.89183,133.26433,130.85529,22.6,1001.3602,0.0,74.79271,0.0 +2024-02-22 16:00:00,2.2022715,6.1717095,140.52757,130.39983,23.6,1000.59436,0.0,61.82177,0.0 +2024-02-22 17:00:00,2.6870058,7.1281133,135.0001,124.135994,25.65,999.9558,0.0,43.025196,0.0 +2024-02-22 18:00:00,2.7018511,7.1175838,128.991,114.04423,26.25,999.27783,0.0,36.856186,0.0 +2024-02-22 19:00:00,2.6172504,6.8949256,133.45189,109.48622,26.35,998.7847,0.0,36.761604,0.0 +2024-02-22 20:00:00,2.385372,6.7186303,123.02387,94.267815,25.95,998.5753,0.0,37.515877,0.0 +2024-02-22 21:00:00,2.6683328,7.531268,102.99462,79.28693,26.65,998.5945,0.0,35.164886,0.0 +2024-02-22 22:00:00,3.733631,9.139474,82.30404,72.159706,29.2,998.76166,0.0,29.502357,0.0 +2024-02-22 23:00:00,5.4708314,10.510947,71.89614,68.80588,31.35,999.21497,0.0,26.080318,1.0 +2024-02-23 00:00:00,5.3758717,9.176056,71.564964,69.59004,34.0,999.5811,0.0,22.918913,1.0 +2024-02-23 01:00:00,3.7854989,5.700877,77.79955,68.38517,36.05,999.5341,0.0,21.082966,1.0 +2024-02-23 02:00:00,2.624881,3.9357338,72.25524,62.783974,38.65,999.50006,0.0,18.543741,1.0 +2024-02-23 03:00:00,0.28284273,0.56568545,224.9999,44.999897,40.1,999.04,0.0,17.852234,1.0 +2024-02-23 04:00:00,4.4553337,4.883646,225.90929,222.5104,39.4,998.3281,0.0,23.679766,1.0 +2024-02-23 05:00:00,5.879626,7.5604234,221.55252,217.47626,37.85,997.59503,0.0,27.45218,1.0 +2024-02-23 06:00:00,5.860034,8.2927685,216.67444,213.6901,35.95,997.05115,0.0,30.94646,1.0 +2024-02-23 07:00:00,4.8414874,6.8264194,218.2902,211.82741,35.3,996.7372,0.0,34.50548,1.0 +2024-02-23 08:00:00,2.9546573,3.8013155,246.0375,234.63745,33.65,997.38947,0.0,38.66687,1.0 +2024-02-23 09:00:00,2.5317976,3.1953092,260.9098,249.86362,32.65,997.6614,0.0,39.25449,1.0 +2024-02-23 10:00:00,2.5019991,3.0066593,267.70944,266.186,31.35,998.5205,0.0,43.472862,1.0 +2024-02-23 11:00:00,2.4839485,3.6359317,319.89914,328.4958,30.65,999.792,0.0,43.83533,1.0 +2024-02-23 12:00:00,2.3,3.354102,270.0,280.30478,29.55,1000.06036,0.0,50.36491,0.0 +2024-02-23 13:00:00,1.3928387,1.0630146,291.03757,318.81415,27.85,999.61847,0.0,55.410645,0.0 +2024-02-23 14:00:00,1.0,1.9416488,53.13002,34.50859,27.55,1000.50336,0.0,57.28234,0.0 +2024-02-23 15:00:00,1.5264337,1.8384776,238.39255,292.3802,26.9,1000.3866,0.0,62.559223,0.0 +2024-02-23 16:00:00,2.7730849,4.9648767,334.35904,332.4028,26.55,1001.3691,0.0,63.266968,0.0 +2024-02-23 17:00:00,5.1224995,8.711487,308.65982,318.25732,27.8,1001.8987,0.0,54.534042,0.0 +2024-02-23 18:00:00,4.219004,6.873136,5.4402504,8.365798,27.9,1001.2068,0.0,52.86626,0.0 +2024-02-23 19:00:00,1.118034,3.3301651,10.304792,41.347687,26.1,1000.6625,0.5,76.0564,0.0 +2024-02-23 20:00:00,0.3,1.6401219,180.0,52.431335,25.35,1000.54285,1.0,81.980934,0.0 +2024-02-23 21:00:00,2.0,2.4207437,180.0,141.7098,24.6,1000.12573,1.1,90.82313,0.0 +2024-02-23 22:00:00,2.7856774,4.14367,201.03758,188.32556,23.95,1000.8024,0.4,92.1699,0.0 +2024-02-23 23:00:00,2.4515302,4.060788,191.76826,189.92618,23.7,1001.7874,0.0,89.9376,1.0 +2024-02-24 00:00:00,2.6019223,4.609772,182.20255,183.73132,24.25,1002.3976,0.0,85.69603,1.0 +2024-02-24 01:00:00,2.0615528,2.5495098,230.90614,221.82008,24.6,1003.00226,0.0,85.46984,1.0 +2024-02-24 02:00:00,2.2022715,2.5238857,219.47243,213.6901,26.3,1003.44525,0.4,74.020775,1.0 +2024-02-24 03:00:00,1.8973665,2.158703,198.43504,193.39252,26.4,1003.6465,0.7,72.6878,1.0 +2024-02-24 04:00:00,2.9068882,3.354102,206.56499,206.56499,26.1,1003.14233,0.7,73.30873,1.0 +2024-02-24 05:00:00,3.1384711,3.758989,210.65059,208.61037,25.9,1002.8394,0.4,74.868286,1.0 +2024-02-24 06:00:00,4.5891175,5.885576,191.30989,189.78233,23.85,1002.18823,1.7,91.88469,1.0 +2024-02-24 07:00:00,4.86621,6.5115285,170.53775,169.3804,23.7,1001.6883,1.6,92.15578,1.0 +2024-02-24 08:00:00,6.332456,8.70919,164.4274,164.68712,23.4,1000.4895,1.3,91.299675,1.0 +2024-02-24 09:00:00,5.59017,7.5591,153.43501,152.41806,24.8,1000.82574,0.1,80.421486,1.0 +2024-02-24 10:00:00,5.283938,7.529276,150.5242,149.68887,24.1,1000.8066,0.0,84.379196,1.0 +2024-02-24 11:00:00,4.5617976,6.983552,153.9967,150.8658,23.95,1001.2984,0.0,84.88217,1.0 +2024-02-24 12:00:00,5.4037023,8.852683,141.009,138.2053,23.55,1001.089,0.6,91.03114,0.0 +2024-02-24 13:00:00,4.6690474,8.309633,133.26433,129.62897,24.15,1001.1053,0.1,91.623924,0.0 +2024-02-24 14:00:00,5.7454333,9.4667845,121.47678,121.17128,24.9,1000.9274,0.0,85.7605,0.0 +2024-02-24 15:00:00,5.5946403,9.442987,114.27443,114.39373,24.85,1000.8269,0.2,84.4598,0.0 +2024-02-24 16:00:00,4.792703,8.53815,113.35559,108.43504,24.35,1000.81323,0.6,89.16798,0.0 +2024-02-24 17:00:00,3.905125,7.2897186,129.80553,116.91648,24.1,1000.90576,1.0,87.800766,0.0 +2024-02-24 18:00:00,3.9597979,7.072482,135.0001,123.4654,23.8,1000.5005,1.2,87.77497,0.0 +2024-02-24 19:00:00,5.517246,9.231468,136.46873,129.72606,23.6,999.9,0.5,85.10667,0.0 +2024-02-24 20:00:00,4.6669044,8.080223,135.0001,126.444534,23.55,999.6012,0.0,82.52008,0.0 +2024-02-24 21:00:00,2.996665,5.4671745,154.2901,140.19447,23.5,1000.9883,0.6,84.05503,0.0 +2024-02-24 22:00:00,3.8209944,6.6068144,137.12111,129.47243,23.35,1000.98425,0.0,85.08076,0.0 +2024-02-24 23:00:00,4.4418464,7.291776,121.18491,115.15927,23.85,1001.09717,0.0,82.55593,1.0 +2024-02-25 00:00:00,5.6320515,7.864477,106.50443,101.73855,25.9,1001.35156,0.0,71.2692,1.0 +2024-02-25 01:00:00,4.6572523,6.280127,104.93147,99.16227,28.15,1001.0153,0.0,69.52589,1.0 +2024-02-25 02:00:00,6.5924196,8.766414,80.39487,78.81828,29.6,1001.0537,0.0,62.19135,1.0 +2024-02-25 03:00:00,7.106335,9.217917,76.15928,74.90838,30.7,1000.5868,0.0,57.675842,1.0 +2024-02-25 04:00:00,6.1983867,8.004998,79.77789,77.00539,31.7,999.81915,0.0,53.325428,1.0 +2024-02-25 05:00:00,5.2392745,6.6483083,76.75947,74.2913,32.45,999.1442,0.1,49.86713,1.0 +2024-02-25 06:00:00,4.401136,5.571355,68.68202,68.96242,33.3,998.47174,0.1,46.236294,1.0 +2024-02-25 07:00:00,1.9235383,2.8160257,81.02746,73.49557,32.5,997.8558,0.0,48.21543,1.0 +2024-02-25 08:00:00,0.5,1.029563,90.0,60.94549,31.05,997.71893,0.0,56.882053,1.0 +2024-02-25 09:00:00,1.0440307,1.9723083,106.699326,59.53454,29.85,997.9849,0.0,64.95664,1.0 +2024-02-25 10:00:00,1.603122,2.9206164,86.423744,51.952908,29.75,998.47845,0.2,68.36708,1.0 +2024-02-25 11:00:00,1.9104973,3.4481878,96.00892,73.14152,28.45,999.23755,0.0,71.94431,0.0 +2024-02-25 12:00:00,2.8160257,5.186521,73.49557,70.866264,28.1,999.92267,0.0,69.09367,0.0 +2024-02-25 13:00:00,3.6055512,6.503076,93.17977,91.76235,26.5,1001.0703,0.0,72.92847,0.0 +2024-02-25 14:00:00,3.622154,6.7007456,96.340096,90.85508,26.05,1001.058,0.0,73.979,0.0 +2024-02-25 15:00:00,3.5510561,6.6272163,99.72751,95.19434,25.65,1000.94775,0.0,74.82758,0.0 +2024-02-25 16:00:00,3.4234486,6.6068144,96.70974,92.60251,25.45,1000.84326,0.0,75.256966,0.0 +2024-02-25 17:00:00,3.1256998,6.412488,97.35229,93.57626,25.35,1000.7413,0.0,75.24087,0.0 +2024-02-25 18:00:00,2.745906,6.0074954,100.491425,92.86235,25.25,1000.6395,0.0,74.53191,0.0 +2024-02-25 19:00:00,2.3537204,5.3037724,102.26476,92.16103,25.2,1000.34045,0.0,72.92834,0.0 +2024-02-25 20:00:00,2.1023796,4.6270943,115.34614,96.203354,25.3,1000.64087,0.0,72.04801,0.0 +2024-02-25 21:00:00,1.9313208,4.4102154,111.25058,93.90042,25.1,1000.6355,0.0,72.460464,0.0 +2024-02-25 22:00:00,1.5,3.6345563,126.86998,97.907074,24.55,1001.01715,0.0,74.64741,0.0 +2024-02-25 23:00:00,2.0,3.354102,126.86999,100.30479,25.1,1001.8258,0.0,73.36395,1.0 +2024-02-26 00:00:00,1.8248286,2.5,99.46225,90.0,26.4,1002.2578,0.0,68.13223,1.0 +2024-02-26 01:00:00,0.5,0.9,126.86999,90.0,27.85,1002.4952,0.0,63.745403,1.0 +2024-02-26 02:00:00,1.6124516,1.3892444,240.2552,239.74365,28.95,1002.52466,0.0,61.85758,1.0 +2024-02-26 03:00:00,3.130495,3.231099,243.43501,248.19853,29.2,1002.2337,0.0,63.643723,1.0 +2024-02-26 04:00:00,4.159327,4.661545,242.81897,247.28555,29.05,1001.93195,0.0,63.806587,1.0 +2024-02-26 05:00:00,4.429447,5.456189,241.69934,243.90463,28.55,1001.7204,0.0,62.727604,1.0 +2024-02-26 06:00:00,4.8259716,6.046487,235.9806,235.78424,28.55,1001.7204,0.0,63.69951,1.0 +2024-02-26 07:00:00,5.658622,7.2835426,226.43204,225.55618,27.35,1001.6883,0.0,68.73896,1.0 +2024-02-26 08:00:00,6.0307546,7.7620873,220.29207,218.19873,26.8,1001.5741,0.0,71.21303,1.0 +2024-02-26 09:00:00,5.5946403,7.247069,208.85556,207.97939,25.8,1001.94385,0.0,75.77681,1.0 +2024-02-26 10:00:00,5.597321,7.368175,198.75874,198.18913,24.65,1002.4086,0.0,82.14643,1.0 +2024-02-26 11:00:00,5.0990195,6.9231496,191.30989,190.82297,23.7,1002.9777,0.0,87.230774,0.0 +2024-02-26 12:00:00,4.8373547,6.736468,187.12492,185.96439,23.25,1003.3618,0.0,89.356384,0.0 +2024-02-26 13:00:00,4.704253,6.503076,182.4366,181.76236,22.85,1004.0451,0.0,89.05197,0.0 +2024-02-26 14:00:00,5.1,7.302739,180.0,178.43068,22.65,1004.2378,0.0,89.58596,0.0 +2024-02-26 15:00:00,5.6008925,8.205485,178.97699,177.9048,22.45,1004.1333,0.0,90.40211,0.0 +2024-02-26 16:00:00,6.512296,9.334346,176.47862,175.08353,22.4,1004.1317,0.0,88.742676,0.0 +2024-02-26 17:00:00,7.244308,10.480935,173.6599,172.87508,22.2,1004.1264,0.0,87.365204,0.0 +2024-02-26 18:00:00,7.5504966,10.825895,168.54128,168.27492,22.2,1004.02716,0.0,86.02215,0.0 +2024-02-26 19:00:00,6.992138,10.02846,163.37917,163.19122,22.25,1004.0284,0.0,82.87835,0.0 +2024-02-26 20:00:00,6.6850576,9.563472,158.03938,158.53229,21.9,1003.9195,0.0,80.53737,0.0 +2024-02-26 21:00:00,5.59017,8.318654,153.43501,152.81897,21.2,1004.09827,0.0,81.97757,0.0 +2024-02-26 22:00:00,4.9648767,7.694154,152.4028,152.10283,20.65,1004.3804,0.0,82.42767,0.0 +2024-02-26 23:00:00,5.3665633,7.692204,153.43501,153.76813,21.0,1004.9852,0.0,79.65957,1.0 +2024-02-27 00:00:00,8.005623,10.697663,159.52763,159.19313,22.45,1005.42267,0.0,72.216995,1.0 +2024-02-27 01:00:00,8.127115,10.689247,161.34201,160.88693,23.05,1005.3402,0.0,71.418365,1.0 +2024-02-27 02:00:00,7.7620873,10.0,165.06853,163.73972,23.7,1005.35815,0.0,66.32533,1.0 +2024-02-27 03:00:00,6.8622155,8.766413,161.30092,159.29088,25.4,1004.80975,0.0,59.722324,1.0 +2024-02-27 04:00:00,5.7870545,7.3006845,161.87805,156.59529,27.2,1004.1642,0.0,55.250366,1.0 +2024-02-27 05:00:00,4.816638,5.8077536,184.76355,177.03912,29.25,1003.4255,0.0,50.44559,1.0 +2024-02-27 06:00:00,8.354639,10.948973,191.0409,189.46225,24.2,1003.4872,0.0,66.219315,1.0 +2024-02-27 07:00:00,7.6006575,9.80459,179.24617,178.24663,25.65,1002.9316,0.0,59.780533,1.0 +2024-02-27 08:00:00,7.6164293,9.904544,183.76396,181.73567,25.4,1002.42914,0.0,60.101696,1.0 +2024-02-27 09:00:00,7.5006666,9.918165,179.23611,176.53185,24.75,1002.41113,0.0,61.493458,1.0 +2024-02-27 10:00:00,7.7162166,10.647066,176.28479,174.61078,23.15,1002.4664,0.0,67.699524,1.0 +2024-02-27 11:00:00,7.119691,10.27716,169.47926,169.34615,21.5,1002.71826,0.0,70.90677,0.0 +2024-02-27 12:00:00,6.4132676,9.982485,169.21574,169.0278,21.25,1003.1078,0.0,73.158394,0.0 +2024-02-27 13:00:00,5.824946,9.631718,168.11136,167.40668,21.3,1003.1093,0.0,74.10436,0.0 +2024-02-27 14:00:00,5.7974133,8.640023,165.00487,163.87234,21.05,1003.10205,0.0,76.454605,0.0 +2024-02-27 15:00:00,5.0289164,8.160883,162.64589,162.89719,20.75,1002.69714,0.0,80.38418,0.0 +2024-02-27 16:00:00,4.7434163,7.7794604,161.56496,162.03076,20.5,1002.2932,0.0,82.931305,0.0 +2024-02-27 17:00:00,4.031129,6.9079666,156.61476,157.8905,20.0,1001.7832,0.0,82.3484,0.0 +2024-02-27 18:00:00,3.448188,6.352952,150.46132,151.8215,19.55,1001.6715,0.0,78.1976,0.0 +2024-02-27 19:00:00,3.0805843,5.936329,144.24602,147.38077,19.1,1001.65857,0.0,73.25192,0.0 +2024-02-27 20:00:00,3.1622775,6.268173,145.30478,146.05637,18.85,1001.45337,0.0,67.70145,0.0 +2024-02-27 21:00:00,3.0413814,6.3031735,136.33215,138.21558,18.65,1001.4477,0.0,59.87812,0.0 +2024-02-27 22:00:00,2.8844411,6.4350605,123.690094,122.94922,18.55,1001.54407,0.0,49.402027,0.0 +2024-02-27 23:00:00,3.0232434,5.99333,124.21575,115.70991,19.6,1002.1689,0.0,44.71926,1.0 +2024-02-28 00:00:00,2.8178005,4.2426405,152.52565,135.0001,22.1,1002.6358,0.0,41.466927,1.0 +2024-02-28 01:00:00,3.2280025,3.992493,163.81073,157.93205,24.65,1001.71436,0.0,40.397346,1.0 +2024-02-28 02:00:00,3.8013155,4.609772,181.5074,176.26868,26.4,1001.76184,0.0,39.561234,1.0 +2024-02-28 03:00:00,4.6872168,5.6435804,191.07016,187.12492,27.4,1001.7888,0.0,41.706978,1.0 +2024-02-28 04:00:00,5.4424257,6.6483083,200.4329,195.7087,27.85,1001.5032,0.0,45.35362,1.0 +2024-02-28 05:00:00,6.407808,8.005623,202.9638,200.47237,27.4,1001.29285,0.0,48.54688,1.0 +2024-02-28 06:00:00,6.8007355,8.602325,199.76726,197.59251,27.0,1001.183,0.0,47.058086,1.0 +2024-02-28 07:00:00,7.088018,9.121404,196.38962,195.25517,26.45,1000.9694,0.0,50.1954,1.0 +2024-02-28 08:00:00,7.1589108,9.3744335,192.09474,191.07016,25.9,1000.7564,0.0,50.70004,1.0 +2024-02-28 09:00:00,7.045566,9.343447,186.5197,185.52745,25.2,1000.638,0.0,56.713478,1.0 +2024-02-28 10:00:00,7.2,9.9020195,180.0,178.8427,23.85,1000.89874,0.0,66.77722,1.0 +2024-02-28 11:00:00,6.618912,10.049875,175.66777,174.2895,22.55,1001.35895,0.0,76.20821,0.0 +2024-02-28 12:00:00,6.449806,9.9985,172.87508,171.95102,22.1,1001.644,0.0,76.85988,0.0 +2024-02-28 13:00:00,7.071068,11.031772,171.86998,171.13545,21.45,1002.02246,0.0,80.73102,0.0 +2024-02-28 14:00:00,6.8249536,10.707941,169.0194,168.69011,21.1,1002.0127,0.0,83.525,0.0 +2024-02-28 15:00:00,6.332456,10.096039,164.4274,163.89864,20.85,1001.8074,0.0,84.02285,0.0 +2024-02-28 16:00:00,5.7567353,9.234717,162.824,162.3498,20.55,1001.60065,0.0,83.72527,0.0 +2024-02-28 17:00:00,5.345091,8.633076,162.58194,161.77483,20.3,1001.29584,0.0,80.323746,0.0 +2024-02-28 18:00:00,4.9335585,8.316851,162.29948,161.7828,20.05,1001.2889,0.0,77.52575,0.0 +2024-02-28 19:00:00,4.7127485,8.036168,162.71841,163.36897,19.9,1001.08655,0.0,76.27339,0.0 +2024-02-28 20:00:00,4.4922156,7.692204,163.17851,164.15686,19.7,1001.0809,0.0,77.970024,0.0 +2024-02-28 21:00:00,4.3011627,7.4999995,162.40749,163.73972,19.6,1001.1771,0.0,80.742424,0.0 +2024-02-28 22:00:00,4.4271884,7.788453,161.56496,164.3577,19.6,1001.2763,0.0,84.684296,0.0 +2024-02-28 23:00:00,4.6840153,7.6655073,163.8865,164.87595,20.3,1001.79175,0.0,83.43304,1.0 +2024-02-29 00:00:00,5.080354,6.9231496,169.79608,169.17703,22.25,1001.94556,0.0,76.64162,1.0 +2024-02-29 01:00:00,5.6142673,7.1449285,175.91446,173.57135,23.95,1001.8935,0.0,70.248276,1.0 +2024-02-29 02:00:00,5.2086463,6.5,183.3018,180.0,25.6,1001.7402,0.0,61.491463,1.0 +2024-02-29 03:00:00,5.7280016,6.9857,196.22026,193.24052,26.35,1001.3637,0.0,58.82137,1.0 +2024-02-29 04:00:00,6.484597,8.095677,199.83221,197.98743,26.25,1000.9641,0.0,57.512184,1.0 +2024-02-29 05:00:00,6.706713,8.507056,200.05618,197.79608,26.5,1000.6735,0.0,53.18356,1.0 +2024-02-29 06:00:00,6.9892774,8.984431,199.21277,196.82149,26.35,1000.27264,0.0,53.485508,1.0 +2024-02-29 07:00:00,7.212489,9.340771,196.9276,195.52417,25.9,999.9628,0.0,58.529755,1.0 +2024-02-29 08:00:00,7.2532754,9.534149,195.18588,192.72435,25.2,999.94366,0.0,64.57648,1.0 +2024-02-29 09:00:00,6.6490602,8.828363,192.15492,189.78233,24.3,999.9192,0.0,71.19911,1.0 +2024-02-29 10:00:00,6.067125,8.260751,188.53069,186.95287,23.2,1000.38495,0.0,77.02822,1.0 +2024-02-29 11:00:00,5.261178,7.764663,188.74608,187.3995,22.0,1000.84766,0.0,83.62756,0.0 +2024-02-29 12:00:00,5.3600373,8.448076,188.58354,186.1154,21.9,1001.1424,0.0,82.57865,0.0 +2024-02-29 13:00:00,4.924429,7.891768,192.90741,188.74608,21.75,1001.9318,0.0,82.30277,0.0 +2024-02-29 14:00:00,4.9819674,8.050466,190.40765,186.41869,21.65,1001.8298,0.0,83.06678,0.0 +2024-02-29 15:00:00,4.9365983,8.20975,186.98096,182.79265,21.55,1001.52936,0.0,83.05504,0.0 +2024-02-29 16:00:00,5.0039983,8.300603,182.29056,179.30974,21.45,1001.1298,0.0,82.78354,0.0 +2024-02-29 17:00:00,4.9010205,8.21523,178.83089,176.51074,21.4,1000.7318,0.0,82.777626,0.0 +2024-02-29 18:00:00,4.8,8.005623,180.0,177.85246,21.2,1000.4286,0.0,85.38793,0.0 +2024-02-29 19:00:00,4.7,7.902531,180.0,178.54982,21.0,1000.1255,0.0,88.35367,0.0 +2024-02-29 20:00:00,4.6010866,7.8057675,178.75467,177.79745,20.9,1000.02344,0.0,90.85816,0.0 +2024-02-29 21:00:00,4.3011627,7.3109508,178.66782,176.86371,20.9,1000.2218,0.0,91.99493,0.0 +2024-02-29 22:00:00,3.6055512,6.618912,176.82024,175.66777,20.8,1000.41736,0.0,92.85047,0.0 +2024-02-29 23:00:00,3.3136082,5.5443664,174.80566,172.7469,21.4,1000.7318,0.0,89.77055,1.0 +2024-03-01 00:00:00,3.1016126,4.2107005,178.15244,175.91446,23.0,1001.1728,0.0,80.682304,1.0 +2024-03-01 01:00:00,3.2015622,4.0112343,178.21013,175.71092,24.55,1001.2156,0.0,70.80152,1.0 +2024-03-01 02:00:00,3.7215588,4.6010866,186.17007,181.24533,26.85,1001.2781,0.0,58.938957,1.0 +2024-03-01 03:00:00,4.244997,5.1478148,195.01842,187.8152,28.3,1000.92,0.0,52.801132,1.0 +2024-03-01 04:00:00,5.6462374,6.9375787,202.93213,195.03787,28.7,1000.43463,0.0,52.241722,1.0 +2024-03-01 05:00:00,6.2769423,8.008121,202.47948,195.94547,28.55,999.83563,0.0,51.06422,1.0 +2024-03-01 06:00:00,6.835203,9.024965,200.55612,195.42223,28.1,999.5258,0.0,52.584225,1.0 +2024-03-01 07:00:00,7.0213957,9.264988,197.40279,193.73628,27.45,999.0126,0.0,57.258312,1.0 +2024-03-01 08:00:00,6.9231496,9.277931,190.82297,187.43132,26.8,998.79663,0.0,62.148254,1.0 +2024-03-01 09:00:00,6.2513995,8.20975,187.35228,182.79265,26.0,998.67615,0.0,66.38206,1.0 +2024-03-01 10:00:00,5.1,7.006426,180.0,177.54602,24.8,998.64355,0.0,69.53406,1.0 +2024-03-01 11:00:00,4.4102154,7.665507,183.90042,172.50424,23.75,998.8131,0.0,72.6753,0.0 +2024-03-01 12:00:00,4.101219,8.050466,181.39716,173.58131,23.45,998.9042,0.0,72.62258,0.0 +2024-03-01 13:00:00,2.433105,5.7035074,189.46225,177.9905,22.85,999.28424,0.0,77.457825,0.0 +2024-03-01 14:00:00,1.7,4.652956,180.0,171.34753,22.25,998.9701,0.0,80.58366,0.0 +2024-03-01 15:00:00,2.059126,3.4985712,150.9455,149.03632,21.5,998.2551,0.0,83.83252,0.0 +2024-03-01 16:00:00,2.2135942,4.7201695,108.43504,126.384445,21.05,997.9447,0.0,82.73589,0.0 +2024-03-01 17:00:00,2.3430748,6.0959,129.80553,131.00899,22.15,996.9836,0.0,66.42693,0.0 +2024-03-01 18:00:00,2.3430748,6.3031735,140.19447,131.78442,23.05,996.61194,0.0,50.443306,0.0 +2024-03-01 19:00:00,2.280351,6.0108232,142.12495,135.67395,22.95,996.4107,0.0,47.193768,0.0 +2024-03-01 20:00:00,2.2671568,5.517246,131.42357,133.53127,22.15,996.0909,0.0,50.37063,0.0 +2024-03-01 21:00:00,2.3345237,4.750789,133.26433,139.26799,21.15,996.36066,0.0,55.16249,0.0 +2024-03-01 22:00:00,2.1023796,4.3863425,115.34614,133.1524,20.8,996.5494,0.0,58.056755,0.0 +2024-03-01 23:00:00,1.3,3.001666,90.0,119.98155,22.35,996.89,0.0,56.01076,1.0 +2024-03-02 00:00:00,1.0198039,1.9798989,11.3098955,44.999897,25.25,997.56464,0.0,49.396618,1.0 +2024-03-02 01:00:00,0.9055385,0.7211103,263.6599,303.6901,28.0,997.53925,0.0,42.972733,1.0 +2024-03-02 02:00:00,2.0880613,2.4207437,286.6993,308.2902,29.9,997.8874,0.0,40.145218,1.0 +2024-03-02 03:00:00,2.2561028,2.3194828,257.19574,277.4313,30.8,997.71234,0.0,40.78241,1.0 +2024-03-02 04:00:00,3.4539833,3.667424,247.8905,258.9965,31.15,997.4238,0.0,41.533966,1.0 +2024-03-02 05:00:00,4.2544093,5.1662364,246.44772,255.42574,30.65,997.1134,0.0,42.46556,1.0 +2024-03-02 06:00:00,3.667424,5.261178,258.9965,261.2539,28.5,996.9573,0.0,48.993088,1.0 +2024-03-02 07:00:00,2.8160255,3.6124783,263.88458,265.23645,29.8,996.4957,0.0,48.10761,1.0 +2024-03-02 08:00:00,2.758623,3.4999998,226.46873,233.13002,28.65,996.46533,0.0,52.22897,1.0 +2024-03-02 09:00:00,1.7029386,2.2627418,220.23628,224.9999,28.05,996.6478,0.0,47.03784,1.0 +2024-03-02 10:00:00,1.118034,1.7204651,169.6952,144.46223,27.9,997.04047,0.0,46.99763,1.0 +2024-03-02 11:00:00,1.7029387,0.9433981,273.3664,302.00534,27.0,997.4136,0.0,51.14973,0.0 +2024-03-02 12:00:00,2.9274564,3.733631,262.1468,262.30405,24.8,998.4452,0.0,68.02859,0.0 +2024-03-02 13:00:00,1.8867962,1.9723083,302.00534,300.46545,24.25,999.8187,0.0,70.52497,0.0 +2024-03-02 14:00:00,2.2671568,3.0528674,48.57643,58.392544,24.4,999.8229,0.0,69.675476,0.0 +2024-03-02 15:00:00,3.3955853,3.3615472,283.627,292.751,24.45,1000.5184,0.1,70.12238,0.0 +2024-03-02 16:00:00,0.4,1.8027756,270.0,93.17977,23.45,999.59845,0.0,83.79087,0.0 +2024-03-02 17:00:00,3.008322,3.4176016,285.4222,290.55612,22.9,999.97986,0.0,92.110306,0.0 +2024-03-02 18:00:00,2.0396078,1.811077,258.6901,263.6599,22.15,999.5623,0.0,95.52211,0.0 +2024-03-02 19:00:00,2.2022717,2.8017852,267.3975,267.95465,21.3,999.53876,0.0,99.69391,0.0 +2024-03-02 20:00:00,0.7615773,1.2165525,293.1986,260.53775,20.85,999.22876,0.0,99.69285,0.0 +2024-03-02 21:00:00,0.41231057,0.36055514,14.036275,303.6901,20.85,999.3279,0.0,99.69285,0.0 +2024-03-02 22:00:00,0.5830952,1.1,329.03632,270.0,20.65,999.8181,0.0,99.69241,0.0 +2024-03-02 23:00:00,0.82462114,1.7492856,284.03625,239.03632,20.9,1000.42017,0.0,98.47309,1.0 +2024-03-03 00:00:00,1.2206556,1.421267,235.0079,230.71062,22.7,1000.86707,0.0,91.53602,1.0 +2024-03-03 01:00:00,2.0248458,2.3600848,237.09476,233.61555,25.0,1000.93024,0.0,80.69453,1.0 +2024-03-03 02:00:00,3.0610456,3.5468295,231.63248,229.574,26.2,1001.1613,0.0,74.45929,1.0 +2024-03-03 03:00:00,3.6359317,4.1340055,238.49579,237.84773,26.9,1001.08093,0.0,71.44984,1.0 +2024-03-03 04:00:00,4.8332186,5.727128,245.55606,245.22488,26.65,1000.8759,0.0,72.06535,1.0 +2024-03-03 05:00:00,5.3225937,6.440497,244.39786,244.23071,26.5,1000.97107,0.0,72.26031,1.0 +2024-03-03 06:00:00,5.7454333,6.9971423,238.52321,239.03632,26.3,1001.1638,0.0,72.447464,1.0 +2024-03-03 07:00:00,5.6222773,6.96563,231.49931,230.82635,25.5,1001.04297,0.0,75.26501,1.0 +2024-03-03 08:00:00,5.5154333,6.788225,224.9999,224.9999,25.1,1000.8339,0.0,76.13396,1.0 +2024-03-03 09:00:00,5.3263493,6.6843095,219.6678,218.92755,24.3,1000.8119,0.0,79.12665,1.0 +2024-03-03 10:00:00,5.3535037,6.8264194,212.79953,211.82741,23.5,1001.18665,0.0,82.76917,1.0 +2024-03-03 11:00:00,4.9193497,6.664083,206.56499,205.79597,22.85,1001.86304,0.0,85.8204,0.0 +2024-03-03 12:00:00,4.88467,6.5924196,202.89058,202.28563,22.6,1002.4513,0.0,86.59497,0.0 +2024-03-03 13:00:00,4.701064,6.6309876,203.83875,203.08516,22.15,1002.9345,0.0,88.99723,0.0 +2024-03-03 14:00:00,4.8332186,6.7542577,204.44394,205.42683,22.1,1003.33,0.0,87.89899,0.0 +2024-03-03 15:00:00,5.440588,7.4040527,197.10281,196.47696,22.15,1003.33124,0.0,86.2845,0.0 +2024-03-03 16:00:00,5.3160133,7.4040527,196.38962,196.47696,22.05,1003.52686,0.1,86.811874,0.0 +2024-03-03 17:00:00,5.5731497,7.6941533,189.29323,188.97255,22.1,1003.42926,0.0,85.21471,0.0 +2024-03-03 18:00:00,5.1478148,7.467262,187.8152,187.69595,21.75,1003.6179,0.0,88.96573,0.0 +2024-03-03 19:00:00,5.200961,7.5,181.10168,180.0,21.65,1003.61505,0.0,88.68234,0.0 +2024-03-03 20:00:00,5.0249376,7.324616,185.7105,184.6986,21.65,1003.51587,0.0,87.31594,0.0 +2024-03-03 21:00:00,5.0089917,7.605919,183.43356,182.26045,21.4,1003.7072,0.0,88.112404,0.0 +2024-03-03 22:00:00,5.0039983,7.81025,182.29056,182.93561,21.15,1004.09674,0.0,90.03165,0.0 +2024-03-03 23:00:00,5.414795,8.022469,184.23631,184.28908,21.6,1004.6052,0.0,85.695625,1.0 +2024-03-04 00:00:00,5.5226803,7.2249565,185.19434,184.76355,22.95,1005.33734,0.0,74.61591,1.0 +2024-03-04 01:00:00,5.7428217,7.2339478,187.00117,185.55287,23.7,1006.25085,0.0,66.53564,1.0 +2024-03-04 02:00:00,5.714018,7.206247,184.0141,182.3859,24.75,1006.4779,0.0,60.91091,1.0 +2024-03-04 03:00:00,6.2513995,7.8313475,187.35228,185.1281,25.4,1006.1984,0.0,58.041027,1.0 +2024-03-04 04:00:00,6.670832,8.354639,192.99461,191.0409,25.55,1005.8057,0.0,58.632347,1.0 +2024-03-04 05:00:00,7.5186434,9.512624,193.85144,192.13681,25.8,1005.2172,0.0,58.50603,1.0 +2024-03-04 06:00:00,7.8262377,9.914131,190.3048,188.70215,25.75,1004.9183,0.0,59.803776,1.0 +2024-03-04 07:00:00,8.121576,10.40865,189.92618,188.2857,25.2,1004.60565,0.0,61.98567,1.0 +2024-03-04 08:00:00,8.547514,11.144955,186.04399,185.1478,24.6,1004.39087,0.0,65.26633,1.0 +2024-03-04 09:00:00,8.4053545,11.201785,182.04536,181.02301,24.15,1004.08093,0.0,64.76021,1.0 +2024-03-04 10:00:00,8.40238,11.307077,178.63611,177.97272,22.85,1004.4419,0.0,72.516624,1.0 +2024-03-04 11:00:00,8.221922,11.543396,175.81517,175.03035,22.0,1005.2117,0.0,79.547264,0.0 +2024-03-04 12:00:00,8.041144,11.414026,169.24908,168.887,22.0,1006.1044,0.0,78.801994,0.0 +2024-03-04 13:00:00,7.6941533,11.442465,171.02745,170.94936,21.25,1006.6782,0.0,82.24173,0.0 +2024-03-04 14:00:00,7.746612,11.61034,168.83516,169.07724,21.15,1006.9729,0.0,83.00807,0.0 +2024-03-04 15:00:00,7.3979726,11.326517,166.71512,166.2091,20.9,1006.76764,0.0,82.97859,0.0 +2024-03-04 16:00:00,6.992138,10.756393,163.37917,163.24965,20.45,1006.5567,0.0,84.508995,0.0 +2024-03-04 17:00:00,5.7939625,9.304837,158.74942,159.22766,20.05,1006.0494,0.0,84.19906,0.0 +2024-03-04 18:00:00,5.636488,9.17878,154.7989,156.22765,19.85,1005.647,0.0,85.78876,0.0 +2024-03-04 19:00:00,5.0089917,8.367198,153.94656,155.2727,19.7,1005.54376,0.0,86.86435,0.0 +2024-03-04 20:00:00,4.3908997,7.5591,149.9315,152.41806,19.6,1005.3425,0.0,86.85499,0.0 +2024-03-04 21:00:00,3.6400552,6.6573267,142.81522,147.26479,19.35,1005.2361,0.0,87.10674,0.0 +2024-03-04 22:00:00,3.405877,6.5604877,139.76372,142.43134,19.15,1005.4287,0.0,86.26393,0.0 +2024-03-04 23:00:00,3.920459,6.8883963,142.25313,140.30096,20.05,1005.5535,0.0,82.354546,1.0 +2024-03-05 00:00:00,3.535534,5.5217752,151.2603,144.58286,22.7,1005.7271,0.0,72.7191,1.0 +2024-03-05 01:00:00,4.3965893,5.7384667,162.80138,157.4569,25.25,1005.6983,0.0,64.99398,1.0 +2024-03-05 02:00:00,5.1478148,6.47611,172.1848,166.60748,27.5,1005.164,0.0,60.395836,1.0 +2024-03-05 03:00:00,5.93043,7.4525166,174.19337,168.38855,29.55,1004.5245,0.0,54.966984,1.0 +2024-03-05 04:00:00,7.496666,9.718539,189.21095,183.53949,29.2,1003.72174,0.0,57.85487,1.0 +2024-03-05 05:00:00,8.29759,10.98954,192.5288,187.31892,28.75,1003.51135,0.0,57.03489,1.0 +2024-03-05 06:00:00,8.962701,12.379419,190.93378,186.49342,27.85,1002.99115,0.0,58.07572,1.0 +2024-03-05 07:00:00,8.820431,11.90672,183.90042,181.92514,27.6,1002.4885,0.0,59.484615,1.0 +2024-03-05 08:00:00,8.714355,11.800424,183.28917,180.48553,27.3,1001.9844,0.0,61.107468,1.0 +2024-03-05 09:00:00,8.509407,11.742658,177.30577,175.11488,25.9,1001.6491,0.0,66.56861,1.0 +2024-03-05 10:00:00,8.089499,11.771152,171.46931,170.21767,24.35,1001.8051,0.0,72.55396,1.0 +2024-03-05 11:00:00,6.5115285,10.511898,169.3804,168.47632,23.0,1002.56134,0.0,80.682304,0.0 +2024-03-05 12:00:00,7.6902537,14.024621,167.22876,164.279,23.15,1003.2598,0.0,79.70549,0.0 +2024-03-05 13:00:00,7.242237,12.431009,162.31552,160.25307,23.85,1003.7752,0.0,73.14884,0.0 +2024-03-05 14:00:00,5.964059,10.280078,145.24402,142.90709,23.95,1003.97644,0.0,71.358215,0.0 +2024-03-05 15:00:00,4.909175,8.993887,146.63362,138.15494,25.3,1003.7158,0.0,64.80093,0.0 +2024-03-05 16:00:00,5.2009616,9.055386,142.02834,133.21011,26.3,1003.2469,0.0,58.99527,0.0 +2024-03-05 17:00:00,5.315073,9.403191,131.18582,122.845055,26.7,1002.6627,0.0,57.620174,0.0 +2024-03-05 18:00:00,5.5470715,9.714422,117.950874,110.4871,27.05,1002.4737,0.0,56.803337,0.0 +2024-03-05 19:00:00,6.281719,10.636729,103.81505,99.19659,27.3,1002.18274,0.0,57.04278,0.0 +2024-03-05 20:00:00,6.9354167,11.415778,95.79271,93.012726,27.3,1001.9844,0.0,57.94511,0.0 +2024-03-05 21:00:00,7.125307,11.615507,94.83033,92.96088,27.05,1002.2753,0.0,59.171036,0.0 +2024-03-05 22:00:00,7.5026665,12.100413,91.52749,90.473495,26.75,1002.7631,0.0,60.602287,0.0 +2024-03-05 23:00:00,7.902531,12.410076,88.54982,87.69099,27.0,1003.1669,0.0,60.092995,1.0 +2024-03-06 00:00:00,8.102469,11.806778,88.58562,88.058556,28.6,1003.5073,0.0,55.59471,1.0 +2024-03-06 01:00:00,7.4242845,10.248902,85.364624,84.40076,30.75,1003.1675,0.0,50.8324,1.0 +2024-03-06 02:00:00,7.6941533,10.357606,81.02746,79.99209,32.85,1003.02374,0.0,45.125385,1.0 +2024-03-06 03:00:00,7.531268,9.884331,79.28693,78.91747,34.85,1002.6786,0.0,39.361355,1.0 +2024-03-06 04:00:00,6.873136,8.895505,81.6342,81.59672,36.4,1001.92444,0.0,35.1337,1.0 +2024-03-06 05:00:00,5.7,7.302739,90.0,88.43069,37.65,1001.36053,0.0,30.430069,1.0 +2024-03-06 06:00:00,4.118252,5.440588,119.05451,107.10281,37.65,1000.46747,0.0,27.7521,1.0 +2024-03-06 07:00:00,4.318565,5.508176,174.68555,164.19742,36.55,999.6462,0.0,31.009857,1.0 +2024-03-06 08:00:00,5.6008925,7.8230433,181.02301,175.60138,34.95,999.2085,0.0,37.939312,1.0 +2024-03-06 09:00:00,5.9413805,8.982204,173.23392,168.4399,32.95,999.3555,0.0,47.446465,1.0 +2024-03-06 10:00:00,6.0406957,9.924716,173.34567,167.7843,32.0,999.62866,0.0,49.90507,1.0 +2024-03-06 11:00:00,6.4257298,10.241582,159.02643,153.9354,31.2,1000.2029,0.0,46.98482,0.0 +2024-03-06 12:00:00,5.3814497,9.013878,138.01286,130.04967,31.4,1000.9027,0.0,40.947063,0.0 +2024-03-06 13:00:00,5.186521,9.30215,123.996506,116.84043,31.8,1000.9131,0.0,32.68344,0.0 +2024-03-06 14:00:00,5.531727,9.716481,102.5288,98.88058,31.85,1001.0135,0.0,34.10712,0.0 +2024-03-06 15:00:00,6.600757,11.016352,89.131966,86.87794,31.25,1000.8989,0.0,39.749104,0.0 +2024-03-06 16:00:00,8.434453,13.159407,79.755974,78.60471,30.05,1001.06555,0.0,46.53184,0.0 +2024-03-06 17:00:00,8.246211,12.928264,75.96373,75.21128,29.4,1000.9494,0.0,48.612244,0.0 +2024-03-06 18:00:00,8.004998,12.563438,77.00539,76.18495,28.7,1000.9306,0.0,50.781563,0.0 +2024-03-06 19:00:00,7.6902537,12.224974,77.22876,76.75947,27.9,1001.1076,0.0,53.201057,0.0 +2024-03-06 20:00:00,7.2780495,11.52085,77.30042,76.44622,27.15,1001.286,0.0,56.293293,0.0 +2024-03-06 21:00:00,6.888396,11.060289,76.56896,75.335495,26.5,1001.46704,0.0,59.228264,0.0 +2024-03-06 22:00:00,6.6219335,10.756393,75.124275,73.24966,25.95,1001.65027,0.0,61.958584,0.0 +2024-03-06 23:00:00,6.5802736,10.373042,73.21728,70.866264,26.05,1001.9507,0.0,62.371067,1.0 +2024-03-07 00:00:00,6.6098413,9.330059,72.38734,70.59394,27.7,1002.09424,0.0,57.498013,1.0 +2024-03-07 01:00:00,6.8007355,9.080198,53.972538,53.508617,30.85,1001.0866,0.0,48.535496,1.0 +2024-03-07 02:00:00,6.3126855,8.146779,49.497234,48.483376,32.95,1000.94293,0.0,43.22492,1.0 +2024-03-07 03:00:00,4.9497476,6.293648,44.999897,44.35633,35.1,1000.6013,0.0,37.74331,1.0 +2024-03-07 04:00:00,0.6708204,1.2529964,116.56499,61.389645,34.95,999.6054,0.0,34.409897,1.0 +2024-03-07 05:00:00,5.1312766,6.2265563,213.07068,209.85892,34.2,998.8917,0.0,43.02492,1.0 +2024-03-07 06:00:00,6.7542577,9.047099,205.42683,203.44807,32.9,998.56055,0.0,48.61854,1.0 +2024-03-07 07:00:00,7.116881,10.119288,199.70807,198.43504,31.4,998.02563,0.0,52.760952,1.0 +2024-03-07 08:00:00,6.1611686,8.884255,193.13403,191.68935,30.9,997.81415,0.0,51.34688,1.0 +2024-03-07 09:00:00,4.883646,7.05762,190.6196,187.32631,30.55,997.80505,0.0,52.060207,1.0 +2024-03-07 10:00:00,4.925444,7.915807,185.82625,183.62141,28.95,997.9614,0.0,59.244804,1.0 +2024-03-07 11:00:00,5.0358715,9.552486,173.15732,169.74886,27.3,998.41327,0.0,65.020966,0.0 +2024-03-07 12:00:00,4.9497476,8.246211,171.86998,165.96373,26.95,998.70154,0.0,63.157265,0.0 +2024-03-07 13:00:00,3.9319208,7.18401,172.69434,163.83543,26.1,998.7779,0.0,64.3648,0.0 +2024-03-07 14:00:00,3.5128336,6.356099,175.101,167.27565,25.4,998.8583,0.0,67.72349,0.0 +2024-03-07 15:00:00,3.4,6.053098,180.0,172.40544,24.55,998.33905,0.0,73.269615,0.0 +2024-03-07 16:00:00,2.5961509,4.8703184,164.3577,160.82089,24.35,998.03595,0.0,75.0792,0.0 +2024-03-07 17:00:00,0.94868326,2.8178005,161.56496,117.47435,23.55,997.5183,0.0,79.51325,0.0 +2024-03-07 18:00:00,2.2135942,6.664083,71.564964,64.204025,24.9,996.7615,0.0,68.68975,0.0 +2024-03-07 19:00:00,4.1773195,8.711487,47.91091,48.25731,28.5,996.6597,0.0,51.21273,0.0 +2024-03-07 20:00:00,4.6861496,9.002777,39.805527,40.946358,29.05,996.7735,0.0,50.55275,0.0 +2024-03-07 21:00:00,4.5793014,8.70919,31.607454,34.237514,28.85,997.0658,0.0,52.940327,0.0 +2024-03-07 22:00:00,1.8027756,5.080354,340.55988,10.203924,27.25,997.7177,0.0,59.775875,0.0 +2024-03-07 23:00:00,2.751363,3.3376637,250.9064,278.61557,25.75,998.27246,0.0,70.80259,1.0 +2024-03-08 00:00:00,2.408319,3.5341196,228.36655,244.8852,27.0,998.8023,0.0,65.76753,1.0 +2024-03-08 01:00:00,1.2206556,1.7492856,325.0079,329.03632,29.85,998.77856,0.0,54.531048,1.0 +2024-03-08 02:00:00,3.5902646,4.0447497,257.125,261.46933,29.65,999.1704,0.0,56.897434,1.0 +2024-03-08 03:00:00,5.234501,6.5053825,226.54811,224.9999,28.65,999.14374,0.0,61.79098,1.0 +2024-03-08 04:00:00,6.536819,9.080198,209.3099,205.43617,27.45,999.4094,0.0,68.54759,1.0 +2024-03-08 05:00:00,7.5186434,9.786215,193.85144,191.19507,28.1,999.32745,0.0,63.799095,1.0 +2024-03-08 06:00:00,8.174351,10.746627,187.7335,185.33914,27.6,999.11584,0.0,63.88889,1.0 +2024-03-08 07:00:00,8.386298,10.955363,188.22664,185.76254,26.95,998.8008,0.0,66.9885,1.0 +2024-03-08 08:00:00,8.809087,11.603879,182.60251,181.48143,25.7,999.16394,0.0,72.11902,1.0 +2024-03-08 09:00:00,8.9,11.801695,180.0,179.029,24.9,999.63794,0.0,74.70493,1.0 +2024-03-08 10:00:00,8.814193,12.0415945,176.74812,175.23645,23.5,1000.3931,0.0,80.00087,1.0 +2024-03-08 11:00:00,8.5,11.85327,171.20267,170.77615,22.55,1000.5655,0.0,82.39984,0.0 +2024-03-08 12:00:00,8.13941,11.61034,169.3804,169.07724,22.1,1001.24725,0.0,84.1613,0.0 +2024-03-08 13:00:00,8.121576,11.475626,170.07382,169.96317,21.6,1002.1257,0.0,83.582085,0.0 +2024-03-08 14:00:00,8.318653,12.083873,170.31128,169.99208,21.45,1002.12164,0.0,80.9851,0.0 +2024-03-08 15:00:00,8.13941,12.022063,169.3804,168.9705,21.1,1002.5086,0.0,82.74184,0.0 +2024-03-08 16:00:00,8.472308,12.453513,168.42484,168.4194,20.8,1002.50006,0.0,79.88419,0.0 +2024-03-08 17:00:00,8.036168,11.992081,163.36897,163.5295,20.65,1002.59515,0.0,73.75768,0.0 +2024-03-08 18:00:00,7.169379,10.807867,157.01126,157.70633,20.25,1002.58386,0.0,75.11861,0.0 +2024-03-08 19:00:00,6.931811,10.555094,153.43501,154.1633,20.05,1002.479,0.0,75.81049,0.0 +2024-03-08 20:00:00,6.9771056,10.55462,152.70052,152.94948,19.3,1002.5569,0.0,79.422714,0.0 +2024-03-08 21:00:00,7.515318,11.140018,154.7989,155.04527,18.7,1003.03564,0.0,75.34768,0.0 +2024-03-08 22:00:00,6.551336,10.084641,148.73633,149.62096,17.7,1003.6021,0.0,72.76593,0.0 +2024-03-08 23:00:00,6.3134775,9.402127,150.59291,150.70874,17.65,1004.0966,0.0,71.574234,1.0 +2024-03-09 00:00:00,6.621178,8.989995,154.98314,154.2901,19.05,1004.5333,0.0,64.06912,1.0 +2024-03-09 01:00:00,6.6309876,8.640602,156.91484,156.10483,20.8,1004.7812,0.0,56.547974,1.0 +2024-03-09 02:00:00,6.3890533,8.065358,162.69939,160.44165,22.65,1004.53534,0.0,50.837387,1.0 +2024-03-09 03:00:00,6.4132676,8.077747,169.21574,164.93146,24.4,1004.08795,0.0,45.74737,1.0 +2024-03-09 04:00:00,7.1028166,8.845903,178.38649,174.1606,25.45,1003.6206,0.0,43.396202,1.0 +2024-03-09 05:00:00,8.782369,11.136427,187.85323,184.63538,24.8,1003.1071,0.0,47.851643,1.0 +2024-03-09 06:00:00,9.762172,12.747549,186.46973,184.95018,23.85,1002.8825,0.0,52.333683,1.0 +2024-03-09 07:00:00,9.60833,12.701574,182.3859,180.9022,23.9,1002.2887,0.0,50.99983,1.0 +2024-03-09 08:00:00,9.802041,13.0,181.16911,180.0,23.55,1002.0809,0.0,53.98516,1.0 +2024-03-09 09:00:00,9.513149,12.824976,176.98727,176.42374,22.55,1002.35077,0.0,57.913525,1.0 +2024-03-09 10:00:00,9.254189,12.887591,173.79665,173.31624,21.35,1002.71387,0.0,64.15567,1.0 +2024-03-09 11:00:00,8.614523,12.790622,170.6471,170.09589,20.35,1003.3801,0.0,69.33709,0.0 +2024-03-09 12:00:00,8.440379,12.612692,166.29301,165.30264,20.1,1004.26544,0.0,70.18978,0.0 +2024-03-09 13:00:00,7.05195,10.941663,161.82188,161.89615,19.65,1004.7488,0.0,76.478615,0.0 +2024-03-09 14:00:00,6.4257298,10.288343,159.02643,158.92244,19.55,1004.6467,0.0,75.97347,0.0 +2024-03-09 15:00:00,5.456189,9.037699,153.90463,155.13632,19.15,1004.23865,0.0,73.73612,0.0 +2024-03-09 16:00:00,4.8877397,8.372574,149.23735,150.67963,18.55,1004.32086,0.0,71.0423,0.0 +2024-03-09 17:00:00,4.360046,7.8492036,143.39284,145.90497,17.9,1004.203,0.0,69.08117,0.0 +2024-03-09 18:00:00,4.0,7.5,143.13002,143.13002,17.55,1003.79626,0.0,65.02056,0.0 +2024-03-09 19:00:00,3.720215,7.106335,143.74608,140.71062,17.45,1003.3965,0.0,60.193787,0.0 +2024-03-09 20:00:00,3.2802439,6.5795135,142.43134,136.8476,17.35,1003.0961,0.0,55.679398,0.0 +2024-03-09 21:00:00,2.9068882,6.220129,139.18501,126.50153,17.3,1003.4916,0.0,53.62525,0.0 +2024-03-09 22:00:00,2.6172504,5.99333,133.45189,115.70991,17.45,1003.89233,0.0,54.398663,0.0 +2024-03-09 23:00:00,3.0805843,6.3245554,125.753975,108.43504,18.65,1004.6212,0.0,53.25396,1.0 +2024-03-10 00:00:00,4.0706263,6.040695,117.824005,109.3349,21.5,1004.90027,0.0,52.932636,1.0 +2024-03-10 01:00:00,5.554278,7.334848,103.53587,101.003494,24.55,1004.2904,0.0,48.413544,1.0 +2024-03-10 02:00:00,5.3160133,7.0092797,106.38962,104.03627,26.95,1004.3557,0.0,41.99207,1.0 +2024-03-10 03:00:00,5.0089917,6.2769423,116.05344,112.47948,28.8,1004.1079,0.0,37.32624,1.0 +2024-03-10 04:00:00,4.482187,5.5865912,141.34016,135.72514,30.0,1003.54443,0.0,31.868677,1.0 +2024-03-10 05:00:00,4.9335585,6.3560996,162.29948,155.85446,30.55,1002.66614,0.0,29.088642,1.0 +2024-03-10 06:00:00,6.207254,8.109871,182.77016,177.17294,30.3,1002.16345,0.0,32.697113,1.0 +2024-03-10 07:00:00,8.273452,11.221853,187.64032,183.57626,28.25,1001.7122,0.0,43.460175,1.0 +2024-03-10 08:00:00,9.464143,12.839004,186.67438,184.46707,26.55,1001.46826,0.0,46.033848,1.0 +2024-03-10 09:00:00,9.3,12.703543,180.0,178.64684,25.0,1001.7238,0.0,49.813328,1.0 +2024-03-10 10:00:00,8.3600235,11.723907,173.1301,171.66264,24.05,1001.89606,0.0,58.462105,1.0 +2024-03-10 11:00:00,7.8160095,11.344162,176.33229,174.94284,22.5,1002.4485,0.0,68.87155,0.0 +2024-03-10 12:00:00,8.570297,12.159769,168.55899,168.13564,22.0,1003.1289,0.0,69.8788,0.0 +2024-03-10 13:00:00,7.3756356,11.229425,167.4712,166.08748,21.7,1003.517,0.0,71.170395,0.0 +2024-03-10 14:00:00,6.8007355,10.756394,160.23274,159.88028,21.65,1003.71423,0.0,71.616005,0.0 +2024-03-10 15:00:00,5.9506307,9.617692,155.15764,154.76721,21.4,1003.9056,0.0,71.34229,0.0 +2024-03-10 16:00:00,5.3235326,8.858894,151.99092,151.69934,21.15,1003.79913,0.0,71.06852,0.0 +2024-03-10 17:00:00,4.8548946,8.321658,147.61934,147.26479,21.0,1003.6959,0.0,65.33671,0.0 +2024-03-10 18:00:00,4.3011627,7.9202275,144.46223,142.69597,20.9,1003.39557,0.0,57.134327,0.0 +2024-03-10 19:00:00,3.828838,7.5690155,139.23648,136.60596,20.75,1003.0939,0.0,55.06115,0.0 +2024-03-10 20:00:00,3.3941126,7.18401,135.0001,128.78438,20.85,1002.8984,0.0,54.54259,0.0 +2024-03-10 21:00:00,2.9410884,6.854196,125.311295,113.198616,21.15,1002.90656,0.0,54.6191,0.0 +2024-03-10 22:00:00,2.6925824,6.6483083,121.328636,105.7087,21.25,1003.3061,0.0,58.932392,0.0 +2024-03-10 23:00:00,3.1384711,6.456005,120.65059,106.18928,22.05,1003.7253,0.0,61.66791,1.0 +2024-03-11 00:00:00,3.5805027,5.515433,125.90981,112.38018,24.45,1004.18835,0.0,58.184174,1.0 +2024-03-11 01:00:00,4.3416586,5.5461698,118.92633,115.64096,26.65,1003.7526,0.0,53.22168,1.0 +2024-03-11 02:00:00,4.243819,5.420332,124.43905,119.87591,28.65,1003.5085,0.0,47.955147,1.0 +2024-03-11 03:00:00,3.940812,5.091169,144.29323,135.0001,30.25,1002.95575,0.0,44.145443,1.0 +2024-03-11 04:00:00,4.6957426,6.351378,153.43501,146.56012,31.65,1002.0006,0.0,37.752758,1.0 +2024-03-11 05:00:00,4.9162993,6.888396,175.33322,166.56895,32.3,1001.4223,0.0,33.901215,1.0 +2024-03-11 06:00:00,7.467262,10.301942,187.69595,181.11238,30.0,1000.86597,0.0,48.46433,1.0 +2024-03-11 07:00:00,8.714355,12.103719,183.28917,178.57977,28.8,1000.63586,0.0,49.072,1.0 +2024-03-11 08:00:00,9.102198,13.013839,181.25902,177.35751,27.5,1000.60095,0.0,50.149418,1.0 +2024-03-11 09:00:00,7.91012,11.399123,177.10149,172.43866,26.8,1000.7805,0.0,55.32625,1.0 +2024-03-11 10:00:00,7.045566,10.316008,173.4803,168.2544,26.1,1001.15845,0.0,58.948227,1.0 +2024-03-11 11:00:00,5.770615,10.220078,171.02745,163.51547,24.95,1001.92084,0.0,63.314426,0.0 +2024-03-11 12:00:00,4.753946,8.367198,165.37909,155.2727,24.55,1002.40576,0.0,65.461815,0.0 +2024-03-11 13:00:00,4.1231055,8.723532,157.1663,154.90378,22.85,1002.25977,0.0,73.43588,0.0 +2024-03-11 14:00:00,3.2202485,6.236986,154.23073,131.09941,24.4,1002.1042,0.0,66.88952,0.0 +2024-03-11 15:00:00,3.0083218,5.728001,158.5522,135.70723,25.9,1001.4507,0.0,61.173145,0.0 +2024-03-11 16:00:00,2.7018511,5.9816384,141.009,128.21107,25.65,1001.4437,0.0,61.116333,0.0 +2024-03-11 17:00:00,2.8653097,6.4257298,119.24873,110.97357,25.45,1001.24005,0.0,60.303707,0.0 +2024-03-11 18:00:00,4.738143,8.40238,97.27491,91.3639,26.0,1001.3544,0.0,56.90818,0.0 +2024-03-11 19:00:00,4.6389656,8.022469,97.43131,94.28908,25.0,1001.12866,0.0,60.968113,0.0 +2024-03-11 20:00:00,4.5177426,8.000625,95.07952,90.71615,24.2,1001.00745,0.0,64.56624,0.0 +2024-03-11 21:00:00,4.4553337,7.81025,99.039406,92.935616,23.7,1001.2915,0.0,66.53564,0.0 +2024-03-11 22:00:00,4.491102,7.8313475,101.560104,95.128105,23.25,1001.874,0.0,68.14992,0.0 +2024-03-11 23:00:00,4.6389656,7.7025967,97.43131,91.48784,23.4,1002.27484,0.0,67.74968,1.0 +2024-03-12 00:00:00,5.408327,7.5006666,93.17977,90.763885,25.05,1002.6177,0.0,61.756443,1.0 +2024-03-12 01:00:00,5.135173,6.8183575,96.70974,94.205284,28.35,1002.0127,0.0,53.819637,1.0 +2024-03-12 02:00:00,4.8507733,6.129437,98.297066,95.61749,30.1,1001.9597,0.0,48.490612,1.0 +2024-03-12 03:00:00,3.4014702,4.368066,114.30454,105.945465,32.0,1001.1168,0.0,43.511818,1.0 +2024-03-12 04:00:00,3.310589,4.243819,154.98314,145.56096,31.7,1000.5137,0.0,43.43067,1.0 +2024-03-12 05:00:00,3.0463092,3.7802117,156.80138,142.52374,33.0,999.7539,0.0,38.733208,1.0 +2024-03-12 06:00:00,4.14367,5.124451,171.67444,162.97939,33.65,999.1753,0.0,36.066147,1.0 +2024-03-12 07:00:00,6.6068144,8.602325,182.60251,178.66782,32.15,998.7396,0.0,42.204235,1.0 +2024-03-12 08:00:00,8.309633,11.403946,182.75905,178.4926,31.0,998.5114,0.0,47.971592,1.0 +2024-03-12 09:00:00,9.81835,14.301398,176.49654,173.17323,28.2,998.6358,0.0,54.80514,1.0 +2024-03-12 10:00:00,8.354639,12.202457,168.9591,167.21655,26.25,998.9802,0.0,59.356464,1.0 +2024-03-12 11:00:00,6.76757,12.646343,161.0295,157.69374,25.0,999.6408,0.0,64.53376,0.0 +2024-03-12 12:00:00,8.363014,14.71394,153.74141,152.9126,24.55,1000.22363,0.0,65.66842,0.0 +2024-03-12 13:00:00,6.9462223,10.783784,157.1263,155.33621,23.9,1001.09845,0.0,69.14386,0.0 +2024-03-12 14:00:00,5.3712196,9.13017,155.82089,151.1893,23.7,1000.7956,0.0,69.760994,0.0 +2024-03-12 15:00:00,4.204759,7.494665,154.65387,148.64297,23.2,1000.68256,0.0,73.03601,0.0 +2024-03-12 16:00:00,3.6674242,6.741661,154.1337,147.72438,22.7,1000.7679,0.0,76.7112,0.0 +2024-03-12 17:00:00,3.0528674,6.360031,148.39255,143.31018,22.4,1000.462,0.0,78.6125,0.0 +2024-03-12 18:00:00,2.408319,5.872819,138.36655,132.92996,22.45,1000.2651,0.0,75.47724,0.0 +2024-03-12 19:00:00,1.9849433,5.5470715,130.91429,117.950874,22.5,999.9689,0.0,69.974144,0.0 +2024-03-12 20:00:00,2.641969,6.7446275,119.4758,105.4787,23.55,999.7004,0.0,62.20675,0.0 +2024-03-12 21:00:00,3.2557642,7.406079,100.619606,92.32148,24.55,999.6285,0.0,59.713627,0.0 +2024-03-12 22:00:00,4.110961,8.161495,85.81516,82.96216,24.85,1000.03345,0.0,63.09295,0.0 +2024-03-12 23:00:00,5.2952805,9.198369,79.11452,78.079285,25.5,1000.84454,0.0,64.64045,1.0 +2024-03-13 00:00:00,6.258594,8.973851,77.074,75.80887,27.6,1001.39734,0.0,58.198177,1.0 +2024-03-13 01:00:00,5.2392745,7.0092797,76.75947,75.96373,30.45,1001.0763,0.0,50.125996,1.0 +2024-03-13 02:00:00,3.8327534,5.0,97.495766,90.0,32.35,1001.02673,0.0,43.606365,1.0 +2024-03-13 03:00:00,3.3970575,4.356604,132.61403,121.865944,33.35,1000.55634,0.0,37.26428,1.0 +2024-03-13 04:00:00,4.0249224,5.10392,153.43501,145.37578,34.2,1000.0823,0.0,33.879055,1.0 +2024-03-13 05:00:00,5.001,6.449806,178.85426,172.87508,34.35,999.59,0.0,34.68429,1.0 +2024-03-13 06:00:00,7.0405965,9.420192,191.4695,189.16228,32.6,999.2475,0.0,45.199184,1.0 +2024-03-13 07:00:00,8.041144,11.002727,190.75092,187.83543,31.6,999.0231,0.0,48.883286,1.0 +2024-03-13 08:00:00,9.019978,12.509996,183.814,182.29056,29.4,998.76697,0.0,52.419674,1.0 +2024-03-13 09:00:00,8.238932,11.088733,174.4279,172.7469,28.85,999.14905,0.0,53.776142,1.0 +2024-03-13 10:00:00,7.808969,11.454257,170.41713,167.90526,26.8,999.2926,0.0,60.61371,1.0 +2024-03-13 11:00:00,6.1351447,10.0657835,160.9743,159.04414,25.0,999.74,0.0,65.76233,0.0 +2024-03-13 12:00:00,5.3488317,9.693296,159.19313,158.19853,24.1,1000.2115,0.0,70.71825,0.0 +2024-03-13 13:00:00,5.571355,10.993179,158.96242,158.10175,23.05,1000.48016,0.0,77.00536,0.0 +2024-03-13 14:00:00,5.60803,9.442987,158.00882,155.60628,23.25,1000.2871,0.0,75.60587,0.0 +2024-03-13 15:00:00,3.6715121,7.465253,150.64235,140.9806,23.85,1000.20447,0.0,70.229485,0.0 +2024-03-13 16:00:00,3.2015622,7.300685,141.34016,126.08517,24.55,1000.12445,0.0,62.43069,0.0 +2024-03-13 17:00:00,4.527693,8.7464285,120.529625,112.1664,26.55,999.782,0.0,51.03289,0.0 +2024-03-13 18:00:00,5.6921,10.0,108.43504,106.26028,26.9,999.39465,0.0,53.45461,0.0 +2024-03-13 19:00:00,6.0207973,10.27716,101.49654,100.653854,26.7,999.29016,0.0,55.476887,0.0 +2024-03-13 20:00:00,6.1204576,10.323759,94.68582,93.88783,26.5,999.48315,0.0,57.209793,0.0 +2024-03-13 21:00:00,5.903389,10.002,91.94145,91.14574,26.3,1000.1719,0.0,59.181465,0.0 +2024-03-13 22:00:00,5.9135437,10.012492,93.87845,92.86235,26.1,1000.6625,0.0,61.604248,0.0 +2024-03-13 23:00:00,6.0299253,9.732934,95.7105,94.71467,26.2,1001.26056,0.0,62.9932,1.0 +2024-03-14 00:00:00,5.7428217,8.348653,97.001175,96.18852,28.0,1001.408,0.0,58.292755,1.0 +2024-03-14 01:00:00,6.4,8.600582,90.0,89.33382,30.4,1000.9758,0.0,52.18407,1.0 +2024-03-14 02:00:00,5.60803,7.302739,93.06642,91.56932,32.7,1001.135,0.0,44.80535,1.0 +2024-03-14 03:00:00,4.3462625,5.508176,113.02553,105.80258,34.3,1000.68005,0.0,37.171684,1.0 +2024-03-14 04:00:00,3.753665,4.701064,138.23979,128.08882,34.85,999.9998,0.0,34.71102,1.0 +2024-03-14 05:00:00,3.8078866,4.792703,166.32867,156.64442,35.5,999.22253,0.0,33.06272,1.0 +2024-03-14 06:00:00,6.139218,7.9630394,192.22511,187.21417,34.5,998.70105,0.0,39.759968,1.0 +2024-03-14 07:00:00,7.334848,10.060318,191.0035,186.2772,32.7,998.4564,0.0,48.866966,1.0 +2024-03-14 08:00:00,7.9075913,11.128792,189.46225,184.12222,31.1,998.2163,0.0,52.84854,1.0 +2024-03-14 09:00:00,7.802564,11.244554,178.53123,174.89792,29.7,998.0803,0.0,52.168976,1.0 +2024-03-14 10:00:00,6.8249536,9.920181,169.0194,165.40338,28.3,998.2416,0.0,54.829914,1.0 +2024-03-14 11:00:00,5.508176,11.346365,164.19742,157.72969,27.05,998.7043,0.0,60.292755,0.0 +2024-03-14 12:00:00,5.60803,10.692988,158.00882,155.11261,26.5,999.1856,0.0,63.25606,0.0 +2024-03-14 13:00:00,5.239275,8.363014,156.3706,153.74141,25.4,999.6518,0.0,65.84554,0.0 +2024-03-14 14:00:00,4.360046,8.028075,143.39284,140.55998,25.55,999.25903,0.0,63.845207,0.0 +2024-03-14 15:00:00,3.9661064,8.143709,123.6901,114.67685,26.9,998.9978,0.0,52.779335,0.0 +2024-03-14 16:00:00,4.317406,8.321658,103.39252,94.1346,28.45,998.94,0.0,49.605373,0.0 +2024-03-14 17:00:00,5.622277,9.708244,95.10208,92.36133,28.4,998.83966,0.0,54.17113,0.0 +2024-03-14 18:00:00,6.512296,10.737783,86.47862,85.19214,27.65,999.0179,0.0,57.127064,0.0 +2024-03-14 19:00:00,7.1112585,11.543396,86.77554,85.03035,27.0,999.0999,0.0,59.717995,0.0 +2024-03-14 20:00:00,7.542546,12.081391,83.911575,83.34567,26.3,998.9815,0.0,62.8184,0.0 +2024-03-14 21:00:00,7.8638415,12.515989,82.694336,82.19369,25.75,999.16516,0.0,65.507706,0.0 +2024-03-14 22:00:00,7.9630394,12.714166,82.785835,82.31612,25.3,999.2522,0.0,67.28203,0.0 +2024-03-14 23:00:00,8.188407,12.54472,81.57312,81.28865,25.4,999.6518,0.0,67.092354,1.0 +2024-03-15 00:00:00,7.6118326,10.965857,80.166504,80.022354,27.25,1000.19763,0.0,60.52723,1.0 +2024-03-15 01:00:00,5.9481087,7.905694,73.39294,71.564964,30.75,1000.09204,0.0,52.92416,1.0 +2024-03-15 02:00:00,4.964876,6.3906183,71.20003,69.86362,33.7,1000.1686,0.0,45.072315,1.0 +2024-03-15 03:00:00,3.0594118,4.016217,78.6901,71.11382,35.7,999.6245,0.0,38.50137,1.0 +2024-03-15 04:00:00,1.746425,1.9798989,156.3706,135.0001,35.8,999.1309,0.0,34.532948,1.0 +2024-03-15 05:00:00,4.997999,6.016644,199.88525,195.42223,35.75,998.832,0.0,38.157253,1.0 +2024-03-15 06:00:00,6.8007355,9.013879,199.76726,197.42995,34.3,998.59656,0.0,45.371243,1.0 +2024-03-15 07:00:00,7.35459,9.914131,191.76826,188.70215,33.9,998.1894,0.0,46.25221,1.0 +2024-03-15 08:00:00,7.7781744,10.937092,188.13002,184.72005,33.15,998.1703,0.0,46.627182,1.0 +2024-03-15 09:00:00,7.7006493,11.415778,180.74405,176.98727,31.7,998.33105,0.0,48.15547,1.0 +2024-03-15 10:00:00,7.1021123,10.478549,170.27249,166.75948,29.85,998.6794,0.0,53.85797,1.0 +2024-03-15 11:00:00,6.676077,11.903782,163.46509,158.82419,28.6,999.0433,0.0,57.712597,0.0 +2024-03-15 12:00:00,6.053924,10.198039,157.6713,154.44008,27.5,999.7081,0.0,58.723,0.0 +2024-03-15 13:00:00,7.2897186,12.75343,153.08353,151.42549,26.9,1000.58496,0.0,55.8783,0.0 +2024-03-15 14:00:00,4.701064,8.440379,141.91118,143.67308,26.9,1000.88257,0.0,54.65466,0.0 +2024-03-15 15:00:00,2.828427,6.1522355,135.0001,134.34154,26.9,1001.08093,0.0,51.61561,0.0 +2024-03-15 16:00:00,2.842534,6.1522355,140.71062,134.34154,26.65,1001.2727,0.0,51.058876,0.0 +2024-03-15 17:00:00,3.7696154,6.9339743,158.19853,146.76828,26.25,1000.9641,0.0,52.277813,0.0 +2024-03-15 18:00:00,2.8301945,5.7384667,147.99466,138.5324,25.6,1000.9466,0.0,55.204334,0.0 +2024-03-15 19:00:00,1.6124516,4.031129,150.2552,133.99501,24.65,1000.9208,0.0,59.168686,0.0 +2024-03-15 20:00:00,1.7492856,4.0459857,149.03632,129.98683,24.15,1000.7086,0.0,62.738873,0.0 +2024-03-15 21:00:00,1.8439089,4.429447,130.60121,118.30067,24.0,1000.8037,0.0,61.91216,0.0 +2024-03-15 22:00:00,2.0099752,4.6173587,95.7105,94.96966,24.35,1000.81323,0.0,57.788834,0.0 +2024-03-15 23:00:00,2.9154758,5.903389,67.83361,63.86906,26.0,1001.0568,0.0,52.549206,1.0 +2024-03-16 00:00:00,2.5238857,6.3126855,56.3099,49.497234,29.8,1001.55505,0.0,48.564346,1.0 +2024-03-16 01:00:00,2.158703,1.746425,193.39252,166.75948,31.45,1001.89606,0.0,41.61601,1.0 +2024-03-16 02:00:00,3.231099,3.420526,201.80147,195.25517,32.9,1001.8345,0.0,40.32863,1.0 +2024-03-16 03:00:00,4.304649,4.924429,210.73541,209.16751,34.05,1001.5667,0.0,38.171295,1.0 +2024-03-16 04:00:00,5.8523498,7.324616,213.147,212.17119,33.55,1001.05774,0.0,41.40374,1.0 +2024-03-16 05:00:00,5.8309517,7.9479556,202.1664,201.39987,33.1,1000.5501,0.0,41.9337,1.0 +2024-03-16 06:00:00,5.7870545,8.220098,189.95056,189.80603,32.6,1000.1403,0.1,42.860966,1.0 +2024-03-16 07:00:00,6.1814237,8.338465,189.30986,185.50539,33.15,999.55927,0.0,42.608494,1.0 +2024-03-16 08:00:00,6.166036,8.528774,188.39284,184.70776,31.5,999.81384,0.0,48.10302,1.0 +2024-03-16 09:00:00,5.707889,7.905694,183.01273,177.8253,29.85,1000.1674,0.0,53.35796,1.0 +2024-03-16 10:00:00,4.304649,6.1814237,177.33705,170.69014,28.45,1000.6264,0.0,57.497692,1.0 +2024-03-16 11:00:00,3.3376637,5.9615436,171.38443,157.30617,27.5,1001.1961,0.0,60.773224,0.0 +2024-03-16 12:00:00,3.6878178,6.2393913,167.4712,158.36905,27.2,1001.4859,0.0,59.577713,0.0 +2024-03-16 13:00:00,4.2544093,7.4706087,156.44772,152.06294,26.35,1002.1573,0.0,57.718292,0.0 +2024-03-16 14:00:00,4.838388,8.228001,161.93944,159.36237,25.85,1002.14374,0.0,58.517895,0.0 +2024-03-16 15:00:00,5.0921507,8.5615425,160.49747,157.32861,25.35,1001.634,0.0,60.471664,0.0 +2024-03-16 16:00:00,4.8703184,8.458132,160.82089,155.55606,24.9,1001.0266,0.0,61.13878,0.0 +2024-03-16 17:00:00,4.6872168,8.475848,168.92984,160.70985,24.45,1000.61755,0.0,62.013523,0.0 +2024-03-16 18:00:00,4.6572523,8.509407,165.06853,160.07433,24.05,1000.20996,0.0,62.916344,0.0 +2024-03-16 19:00:00,3.9824615,7.5802374,151.50446,149.03632,24.05,1000.01154,0.0,57.531334,0.0 +2024-03-16 20:00:00,3.1400635,6.670832,142.76509,139.86458,24.0,1000.01025,0.0,51.359806,0.0 +2024-03-16 21:00:00,3.11127,6.6603303,135.0001,131.34769,24.0,999.911,0.0,45.48702,0.0 +2024-03-16 22:00:00,2.86007,6.3655324,143.53067,133.72705,23.95,1000.1081,0.0,43.699947,0.0 +2024-03-16 23:00:00,2.6925824,5.4451814,148.67137,135.74397,24.3,1000.51434,0.0,42.791626,1.0 +2024-03-17 00:00:00,3.1064448,4.4271884,176.30869,161.56496,26.35,1000.6694,0.0,39.02732,1.0 +2024-03-17 01:00:00,4.925444,6.166036,174.17375,171.60716,26.8,1001.1773,0.0,53.940907,1.0 +2024-03-17 02:00:00,5.6008925,7.106335,181.02301,177.58054,27.95,1001.20844,0.0,56.842476,1.0 +2024-03-17 03:00:00,6.419502,8.1,184.46707,180.0,28.9,1000.9359,0.0,55.322132,1.0 +2024-03-17 04:00:00,7.496666,9.4429865,189.21095,185.46901,28.65,1000.6317,0.0,57.188583,1.0 +2024-03-17 05:00:00,7.333485,9.508417,185.47728,182.41098,28.6,1000.2337,0.0,53.043488,1.0 +2024-03-17 06:00:00,7.7929454,10.049875,188.85788,185.7105,28.35,999.9295,0.0,52.15243,1.0 +2024-03-17 07:00:00,7.6791925,10.060318,188.23553,186.2772,27.2,999.79956,0.0,59.391644,1.0 +2024-03-17 08:00:00,7.4330344,9.912618,185.4037,182.8912,26.3,999.77515,0.0,61.456272,1.0 +2024-03-17 09:00:00,7.610519,10.312129,176.98727,177.22089,24.3,1000.316,0.0,73.68393,1.0 +2024-03-17 10:00:00,6.5924196,9.0609045,170.39487,169.18617,23.8,1000.6989,0.0,73.1402,1.0 +2024-03-17 11:00:00,6.428064,8.945389,174.64427,174.22577,22.55,1001.0614,0.0,85.26113,0.0 +2024-03-17 12:00:00,6.2968245,8.845902,169.93938,169.57935,22.15,1001.64514,0.0,86.2845,0.0 +2024-03-17 13:00:00,6.6753273,9.602604,171.38443,171.61684,21.85,1001.9345,0.0,84.65984,0.0 +2024-03-17 14:00:00,6.236986,8.982204,167.96942,168.4399,21.65,1002.02814,0.0,83.84937,0.0 +2024-03-17 15:00:00,6.236986,9.100549,167.96942,167.94923,21.45,1002.02246,0.0,83.564964,0.0 +2024-03-17 16:00:00,6.530697,9.590098,168.51804,168.57294,21.5,1001.8256,0.0,80.23166,0.0 +2024-03-17 17:00:00,6.315061,9.472592,169.04597,169.04597,21.45,1001.82404,0.0,77.73598,0.0 +2024-03-17 18:00:00,6.356099,9.534149,167.27565,167.27565,21.3,1001.5224,0.0,76.97966,0.0 +2024-03-17 19:00:00,6.140033,9.340771,163.92636,164.47583,21.05,1001.6144,0.0,76.9412,0.0 +2024-03-17 20:00:00,5.7939625,8.766413,158.74942,159.29088,20.95,1001.71106,0.0,75.95472,0.0 +2024-03-17 21:00:00,5.3851647,8.386298,148.67137,149.15349,20.85,1002.00574,0.0,75.45703,0.0 +2024-03-17 22:00:00,4.8259716,7.6850505,145.9806,147.75757,20.5,1002.68994,0.0,77.10139,0.0 +2024-03-17 23:00:00,4.8826222,7.2111025,145.0079,146.3099,20.6,1002.8911,0.0,75.89878,1.0 +2024-03-18 00:00:00,5.6859474,7.56439,156.13982,155.8068,21.75,1003.41956,0.0,71.406624,1.0 +2024-03-18 01:00:00,6.5000005,8.367796,165.74994,165.4655,24.15,1003.48584,0.0,60.19414,1.0 +2024-03-18 02:00:00,6.736468,8.584288,174.03561,171.96439,25.2,1003.6137,0.0,57.258823,1.0 +2024-03-18 03:00:00,6.419502,8.161495,175.53293,172.96216,26.05,1003.53784,0.0,54.095963,1.0 +2024-03-18 04:00:00,7.542546,9.6187315,186.08844,183.57626,25.45,1003.2239,0.0,59.35676,1.0 +2024-03-18 05:00:00,7.8771825,10.060318,188.02715,186.2772,25.75,1002.5377,0.0,59.239395,1.0 +2024-03-18 06:00:00,7.7103825,9.80051,189.70659,188.21269,25.8,1002.1422,0.0,59.626797,1.0 +2024-03-18 07:00:00,8.372574,10.855874,187.54933,185.81554,25.35,1001.9315,0.0,63.80189,1.0 +2024-03-18 08:00:00,8.702298,11.400438,181.31688,179.49744,24.95,1002.0201,0.0,62.125725,1.0 +2024-03-18 09:00:00,9.019978,12.050311,176.186,174.76262,24.25,1002.1993,0.0,65.19241,1.0 +2024-03-18 10:00:00,8.570881,12.00708,172.62633,172.34238,23.0,1002.6606,0.0,71.63475,1.0 +2024-03-18 11:00:00,8.121576,11.985408,170.07382,169.90901,21.9,1003.22516,0.0,79.78341,0.0 +2024-03-18 12:00:00,8.158431,12.355566,168.69011,168.32632,21.6,1003.8117,0.0,81.51443,0.0 +2024-03-18 13:00:00,8.052329,12.129716,165.61858,164.7034,21.4,1004.30225,0.0,80.21821,0.0 +2024-03-18 14:00:00,7.905694,11.987077,161.56496,160.50685,21.35,1004.5983,0.0,76.501526,0.0 +2024-03-18 15:00:00,7.2615423,11.240107,157.3194,156.3998,21.45,1004.7003,0.0,69.99698,0.0 +2024-03-18 16:00:00,6.440497,10.376898,154.23073,152.44728,21.3,1004.597,0.0,66.2499,0.0 +2024-03-18 17:00:00,5.491812,9.241754,146.88864,144.24602,21.2,1004.3958,0.0,62.480698,0.0 +2024-03-18 18:00:00,4.750789,8.7,139.26799,133.60289,21.45,1004.50195,0.0,59.754894,0.0 +2024-03-18 19:00:00,5.2801514,9.604166,127.30403,121.372955,22.35,1004.62634,0.0,54.209026,0.0 +2024-03-18 20:00:00,6.3953104,11.030866,116.96564,112.38018,22.4,1004.9252,0.0,54.22178,0.0 +2024-03-18 21:00:00,6.8029404,11.294689,114.30454,110.1999,22.0,1005.41003,0.0,58.347427,0.0 +2024-03-18 22:00:00,7.026379,11.329608,114.376465,110.67451,21.6,1006.0929,0.0,59.985264,0.0 +2024-03-18 23:00:00,7.4464755,11.732434,112.08723,108.898346,21.35,1006.87946,0.0,60.318314,1.0 +2024-03-19 00:00:00,8.065358,11.448144,109.55834,107.80196,22.5,1007.40765,0.0,55.14121,1.0 +2024-03-19 01:00:00,7.4732857,10.176934,114.50739,112.533295,24.05,1008.0457,0.0,47.492764,1.0 +2024-03-19 02:00:00,7.66942,10.312129,112.21764,109.84079,26.3,1007.8098,0.0,41.81156,1.0 +2024-03-19 03:00:00,7.81089,10.316007,108.66701,106.326935,28.4,1007.2716,0.0,37.953835,1.0 +2024-03-19 04:00:00,7.6537576,9.945853,107.48808,105.15412,30.2,1006.42676,0.0,35.112904,1.0 +2024-03-19 05:00:00,7.7794604,10.068764,107.96923,105.554634,31.65,1005.67126,0.0,33.0703,1.0 +2024-03-19 06:00:00,7.6243033,10.016985,106.77131,104.45247,32.65,1005.1022,0.0,31.048712,1.0 +2024-03-19 07:00:00,7.692204,9.992497,105.843155,103.8972,33.0,1004.81366,0.0,29.852982,1.0 +2024-03-19 08:00:00,6.8308125,9.070832,107.90454,104.03627,33.35,1004.624,0.0,28.89188,1.0 +2024-03-19 09:00:00,7.4946647,10.089599,108.676796,103.76081,32.4,1004.7979,0.0,30.478287,1.0 +2024-03-19 10:00:00,7.543209,10.770794,104.58897,102.87501,31.35,1005.465,0.0,32.241497,1.0 +2024-03-19 11:00:00,5.99333,9.4541,115.70991,113.03947,29.65,1006.1146,0.0,35.305237,0.0 +2024-03-19 12:00:00,6.2265563,9.980982,119.858925,114.253914,28.55,1006.77966,0.0,37.01284,0.0 +2024-03-19 13:00:00,5.656854,9.4429865,98.13002,95.469,27.7,1007.3517,0.0,37.263645,0.0 +2024-03-19 14:00:00,7.653104,11.98207,83.24652,83.29026,26.4,1007.9118,0.0,44.232265,0.0 +2024-03-19 15:00:00,8.836288,13.572399,84.805664,84.079475,25.05,1008.17236,0.0,49.023766,0.0 +2024-03-19 16:00:00,8.584288,13.251793,81.96438,81.319664,23.85,1008.23865,0.0,53.018856,0.0 +2024-03-19 17:00:00,8.683318,13.283449,82.056625,80.46684,22.6,1008.1048,0.0,57.55083,0.0 +2024-03-19 18:00:00,9.159148,13.905755,79.303535,77.96282,21.8,1008.0823,0.0,60.423546,0.0 +2024-03-19 19:00:00,9.339165,14.236924,77.00539,75.76851,21.35,1007.8713,0.0,61.90869,0.0 +2024-03-19 20:00:00,9.148224,14.108862,74.14057,73.10619,20.95,1007.86017,0.0,63.036297,0.0 +2024-03-19 21:00:00,8.902247,13.792751,75.027084,73.14152,20.65,1008.3475,0.0,63.794567,0.0 +2024-03-19 22:00:00,8.832327,13.601471,74.23275,72.89719,20.4,1008.93524,0.0,64.1561,0.0 +2024-03-19 23:00:00,8.683317,13.228001,75.32356,73.75705,20.4,1009.332,0.0,63.73939,1.0 +2024-03-20 00:00:00,8.94986,12.709446,76.42955,75.41702,21.5,1009.6609,0.0,58.992245,1.0 +2024-03-20 01:00:00,7.472616,10.248902,74.47583,72.97939,25.05,1009.2634,0.0,49.665092,1.0 +2024-03-20 02:00:00,8.065358,10.662552,70.44166,69.69544,27.2,1009.02484,0.0,43.736443,1.0 +2024-03-20 03:00:00,7.7833157,10.195097,69.70235,68.72033,29.35,1008.78485,0.0,38.844215,1.0 +2024-03-20 04:00:00,7.116881,9.1181135,70.29193,68.78196,31.25,1008.2402,0.0,35.0618,1.0 +2024-03-20 05:00:00,6.203225,7.8549347,69.22767,68.333984,32.75,1007.4857,0.0,32.626648,1.0 +2024-03-20 06:00:00,4.9335585,6.1351447,72.299484,70.974304,33.85,1007.0181,0.0,30.87344,1.0 +2024-03-20 07:00:00,3.535534,4.632494,81.86999,76.26372,34.05,1006.329,0.0,30.728657,1.0 +2024-03-20 08:00:00,2.8160255,3.8052595,96.11541,86.98728,33.4,1006.01434,0.0,31.969303,1.0 +2024-03-20 09:00:00,2.385372,3.352611,123.02387,107.35411,32.85,1006.1985,0.0,32.97229,1.0 +2024-03-20 10:00:00,3.354102,5.323533,116.56499,95.38922,32.1,1006.2782,0.0,34.397736,1.0 +2024-03-20 11:00:00,4.86621,8.009994,99.46225,92.86235,31.25,1006.9505,0.0,35.86541,0.0 +2024-03-20 12:00:00,5.261178,8.537564,98.74608,95.37662,30.05,1007.5138,0.0,37.91911,0.0 +2024-03-20 13:00:00,5.9908266,9.848858,104.500206,102.90741,28.4,1007.96594,0.0,39.600216,0.0 +2024-03-20 14:00:00,6.2289643,10.212247,95.52745,92.80631,27.85,1007.85187,0.0,39.966297,0.0 +2024-03-20 15:00:00,6.3198104,10.369668,85.46231,83.35482,27.2,1007.7353,0.0,40.842354,0.0 +2024-03-20 16:00:00,6.3788714,10.577333,76.399445,74.64981,26.55,1007.7175,0.0,44.417854,0.0 +2024-03-20 17:00:00,6.868042,11.101802,73.93995,72.707466,26.0,1007.6035,0.0,46.788376,0.0 +2024-03-20 18:00:00,7.083784,11.482595,71.053406,70.1447,25.35,1007.48627,0.0,48.785934,0.0 +2024-03-20 19:00:00,7.2449985,11.587925,69.81411,68.74943,24.65,1007.3681,0.0,50.700233,0.0 +2024-03-20 20:00:00,7.4094534,11.79237,68.62931,67.56696,24.0,1007.54846,0.0,51.863983,0.0 +2024-03-20 21:00:00,7.484651,11.962023,67.203445,66.86428,23.35,1007.92725,0.0,53.06287,0.0 +2024-03-20 22:00:00,7.2235723,12.054045,68.05125,67.05104,22.65,1008.5027,0.0,55.17896,0.0 +2024-03-20 23:00:00,7.3539104,11.686745,67.61982,66.2864,22.4,1009.19006,0.0,55.840736,1.0 +2024-03-21 00:00:00,7.28011,10.454664,69.075424,68.09677,23.75,1009.6246,0.0,50.960396,1.0 +2024-03-21 01:00:00,5.60803,7.392564,68.00882,66.90315,27.3,1009.5233,0.0,40.736694,1.0 +2024-03-21 02:00:00,4.4922156,5.5362444,73.17851,73.201546,29.8,1009.4913,0.0,35.347004,1.0 +2024-03-21 03:00:00,2.7856774,3.5902646,111.03758,102.87501,31.4,1009.2361,0.0,32.04488,1.0 +2024-03-21 04:00:00,3.275668,3.8999999,167.66092,157.3801,31.75,1008.2532,0.0,30.802412,1.0 +2024-03-21 05:00:00,5.0990195,6.428064,191.30989,185.35573,31.8,1007.4608,0.0,32.155003,1.0 +2024-03-21 06:00:00,7.1470275,9.414882,197.92801,192.26476,30.5,1006.8314,0.0,37.434486,1.0 +2024-03-21 07:00:00,7.930952,10.834205,193.86105,189.02754,29.75,1006.2163,0.0,38.578884,1.0 +2024-03-21 08:00:00,8.489994,12.28088,195.01842,189.84575,28.25,1006.077,0.0,44.024082,1.0 +2024-03-21 09:00:00,8.30542,12.503599,182.06999,178.6252,26.3,1006.52026,0.0,49.196957,1.0 +2024-03-21 10:00:00,6.8883963,9.884331,170.81123,168.91747,25.35,1006.89105,0.0,52.551044,1.0 +2024-03-21 11:00:00,6.4536815,9.808159,167.4712,163.41258,24.55,1007.36523,0.0,58.208153,0.0 +2024-03-21 12:00:00,6.6128664,9.8792715,159.64668,158.62932,23.85,1007.84186,0.0,58.040123,0.0 +2024-03-21 13:00:00,5.2924476,9.534149,157.79648,155.85446,23.05,1008.61334,0.0,61.302135,0.0 +2024-03-21 14:00:00,3.8832977,7.683749,145.49142,141.34016,22.85,1008.5084,0.0,60.084057,0.0 +2024-03-21 15:00:00,3.0413814,7.017834,136.33215,130.95541,22.65,1008.10596,0.0,55.53998,0.0 +2024-03-21 16:00:00,2.842534,7.0491138,129.28938,121.660706,22.95,1007.81696,0.0,45.348366,0.0 +2024-03-21 17:00:00,3.275668,7.4732857,121.26367,114.50739,23.45,1007.63257,0.0,37.950188,0.0 +2024-03-21 18:00:00,3.8999999,8.381527,112.61991,107.35411,23.55,1007.5361,0.0,37.722065,0.0 +2024-03-21 19:00:00,4.6872168,9.277931,101.07016,97.43131,23.55,1007.43695,0.0,37.722065,0.0 +2024-03-21 20:00:00,5.7,10.20049,90.0,89.43831,23.6,1007.5374,0.0,37.86435,0.0 +2024-03-21 21:00:00,6.8264194,11.462984,84.95764,83.99109,23.75,1008.1367,0.0,38.81425,0.0 +2024-03-21 22:00:00,7.3824115,12.119819,81.43095,81.93685,23.55,1008.7264,0.0,42.01608,0.0 +2024-03-21 23:00:00,7.368175,12.233152,82.199905,81.538795,23.3,1009.5129,0.0,44.54691,1.0 +2024-03-22 00:00:00,7.8409185,11.462984,84.14409,83.99109,24.65,1010.34375,0.0,41.765446,1.0 +2024-03-22 01:00:00,7.595393,10.225947,80.9098,80.99833,27.3,1010.0193,0.0,33.96066,1.0 +2024-03-22 02:00:00,7.156815,9.3771,82.77578,82.64771,29.45,1009.9781,0.0,29.670227,1.0 +2024-03-22 03:00:00,6.8007355,8.8,90.84251,90.0,31.0,1009.5233,0.0,26.60554,1.0 +2024-03-22 04:00:00,6.4381676,8.238932,96.24182,95.572105,32.25,1008.76245,0.0,24.125168,1.0 +2024-03-22 05:00:00,6.067125,7.752419,98.530685,96.666565,33.35,1007.9973,0.0,22.29762,1.0 +2024-03-22 06:00:00,5.7870545,7.467262,99.95056,97.69597,34.05,1007.32117,0.0,21.011404,1.0 +2024-03-22 07:00:00,5.6044626,7.3164196,105.52418,100.23475,34.2,1007.02734,0.0,20.41747,1.0 +2024-03-22 08:00:00,5.280152,7.0213957,114.62355,107.402794,33.7,1006.8159,0.0,20.782959,1.0 +2024-03-22 09:00:00,5.060632,6.9079666,119.604355,112.109505,33.2,1006.8029,0.0,21.373465,1.0 +2024-03-22 10:00:00,4.4553337,6.9778223,134.09071,115.4633,31.8,1007.1632,0.0,23.765654,1.0 +2024-03-22 11:00:00,4.9396353,8.285529,121.75944,113.47101,30.8,1007.7321,0.0,25.072554,0.0 +2024-03-22 12:00:00,5.8309517,9.577055,120.96369,118.70586,30.1,1008.6064,0.0,26.098095,0.0 +2024-03-22 13:00:00,6.6241984,10.778683,118.88649,115.85181,28.9,1009.368,0.0,27.779444,0.0 +2024-03-22 14:00:00,6.7230945,10.911004,112.751015,109.26536,28.2,1009.54767,0.0,28.157497,0.0 +2024-03-22 15:00:00,7.0342026,11.433722,104.82652,101.60473,27.7,1009.7325,0.0,28.308605,0.0 +2024-03-22 16:00:00,7.5538073,12.133425,96.84268,94.25375,27.05,1009.6158,0.0,29.30726,0.0 +2024-03-22 17:00:00,8.20061,13.000384,90.698685,89.55929,26.35,1009.7952,0.0,30.959116,0.0 +2024-03-22 18:00:00,9.002222,14.008925,88.727,87.95464,25.5,1010.16864,0.0,34.025764,0.0 +2024-03-22 19:00:00,9.213577,14.328294,86.88923,86.398796,24.5,1010.24054,0.0,38.119617,0.0 +2024-03-22 20:00:00,9.208692,14.32236,87.5105,86.79805,23.55,1010.7101,0.0,41.456768,0.0 +2024-03-22 21:00:00,9.11976,14.242542,86.22779,85.570526,22.7,1011.2814,0.0,43.643154,0.0 +2024-03-22 22:00:00,9.4429865,14.488616,84.531,83.659904,21.95,1012.1529,0.0,44.769512,0.0 +2024-03-22 23:00:00,9.662815,14.599315,83.46346,83.31319,21.45,1013.03156,0.0,45.541862,1.0 +2024-03-23 00:00:00,10.394711,14.73635,82.25975,82.199905,22.2,1013.54877,0.0,43.503296,1.0 +2024-03-23 01:00:00,10.14002,14.060227,84.90798,84.694984,24.95,1013.03015,0.0,35.03927,1.0 +2024-03-23 02:00:00,9.861542,13.197349,83.59574,83.03663,26.85,1012.88385,0.0,31.204294,1.0 +2024-03-23 03:00:00,9.353609,12.379419,83.86284,83.50658,28.95,1012.544,0.0,27.605453,1.0 +2024-03-23 04:00:00,8.63713,11.253888,84.68555,84.390816,30.75,1011.7984,0.0,25.059324,1.0 +2024-03-23 05:00:00,7.8230433,10.02447,85.60138,85.9959,32.25,1011.1435,0.0,22.93378,1.0 +2024-03-23 06:00:00,7.2,9.2,90.0,90.0,33.2,1010.2753,0.0,21.446095,1.0 +2024-03-23 07:00:00,6.8264194,8.720665,95.04236,93.945114,33.75,1010.09125,0.0,20.032146,1.0 +2024-03-23 08:00:00,6.315061,8.273452,100.95402,97.64032,33.5,1009.88654,0.0,19.565605,1.0 +2024-03-23 09:00:00,6.1684685,8.319857,106.96623,103.201096,32.6,1010.16064,0.0,20.300644,1.0 +2024-03-23 10:00:00,6.0083275,8.860023,108.43504,106.38962,31.4,1010.52576,0.0,21.139488,1.0 +2024-03-23 11:00:00,5.59017,9.213577,116.56499,115.73065,29.65,1011.17395,0.0,22.96802,0.0 +2024-03-23 12:00:00,6.177378,10.151848,119.05451,116.312584,28.5,1012.03564,0.0,24.211773,0.0 +2024-03-23 13:00:00,6.5299315,10.783784,117.34979,114.663795,27.15,1012.4951,0.0,22.007479,0.0 +2024-03-23 14:00:00,6.76757,11.168259,108.970505,106.650185,26.4,1012.77234,0.0,20.607924,0.0 +2024-03-23 15:00:00,7.4330344,12.050726,100.85637,99.07142,25.65,1012.8508,0.0,20.126617,0.0 +2024-03-23 16:00:00,8.309633,13.206059,92.75905,91.73567,24.6,1012.82196,0.0,23.679937,0.0 +2024-03-23 17:00:00,8.736704,13.671869,84.74629,84.1227,23.55,1012.79297,0.0,27.165583,0.0 +2024-03-23 18:00:00,8.459313,13.633048,83.21112,81.98886,22.4,1012.5623,0.0,31.680147,0.0 +2024-03-23 19:00:00,8.28734,13.184839,81.67444,80.39487,21.5,1012.3388,0.0,36.375935,0.0 +2024-03-23 20:00:00,7.9075913,12.551495,80.53775,78.511055,20.65,1012.513,0.0,39.3973,0.0 +2024-03-23 21:00:00,7.496666,11.923925,80.78905,78.878586,19.85,1012.78766,0.0,42.988316,0.0 +2024-03-23 22:00:00,6.8883963,11.198661,80.81124,79.191826,19.2,1013.26483,0.0,45.53318,0.0 +2024-03-23 23:00:00,6.33877,10.225947,83.659904,80.99833,18.95,1013.6544,0.0,47.206593,1.0 +2024-03-24 00:00:00,6.946222,9.914131,83.386635,81.29787,20.3,1014.1889,0.0,43.857677,1.0 +2024-03-24 01:00:00,7.2780495,9.79847,77.30042,75.82191,22.8,1013.6647,0.0,34.30965,1.0 +2024-03-24 02:00:00,6.964194,9.176056,74.16755,73.53991,24.85,1013.4241,0.0,29.503384,1.0 +2024-03-24 03:00:00,6.2641835,8.190848,73.300674,72.22859,26.85,1012.68555,0.0,24.878212,1.0 +2024-03-24 04:00:00,5.6044626,7.18401,74.47583,73.835434,28.6,1011.6417,0.0,21.240448,1.0 +2024-03-24 05:00:00,5.0990195,6.4536815,78.6901,77.4712,30.05,1010.4899,0.0,18.466927,1.0 +2024-03-24 06:00:00,4.4045434,5.7428217,87.3975,82.99883,31.05,1009.9213,0.0,16.597977,1.0 +2024-03-24 07:00:00,3.5735137,4.7518415,107.92801,98.47106,30.95,1009.1252,0.0,15.826166,1.0 +2024-03-24 08:00:00,3.8078864,5.0921507,119.93143,109.50254,30.9,1008.82605,0.0,15.424351,1.0 +2024-03-24 09:00:00,4.294182,5.6044626,117.75845,105.52418,30.4,1008.91223,0.0,15.815056,1.0 +2024-03-24 10:00:00,4.118252,5.7974133,119.05451,104.99513,29.3,1009.0812,0.0,16.668053,1.0 +2024-03-24 11:00:00,3.3421547,6.040695,128.92755,109.3349,27.3,1009.5233,0.0,18.52463,0.0 +2024-03-24 12:00:00,3.0610456,6.198387,128.36752,107.85041,25.8,1009.97845,0.0,20.529192,0.0 +2024-03-24 13:00:00,3.4669871,6.811754,146.76828,139.76372,22.3,1010.179,0.0,55.09082,0.0 +2024-03-24 14:00:00,3.0870697,7.1309185,114.90474,104.62092,22.35,1010.1806,0.0,36.368767,0.0 +2024-03-24 15:00:00,5.0089917,9.600521,93.43356,89.403206,23.2,1009.80756,0.0,24.244434,0.0 +2024-03-24 16:00:00,5.500909,9.924716,88.9584,85.9556,23.1,1009.70557,0.0,24.654451,0.0 +2024-03-24 17:00:00,5.414795,9.850888,85.76369,84.17376,22.2,1009.2839,0.0,26.601875,0.0 +2024-03-24 18:00:00,5.80517,10.553673,79.07724,77.412315,21.65,1008.9708,0.0,27.706446,0.0 +2024-03-24 19:00:00,6.016644,10.785639,74.57778,72.74096,21.2,1008.56134,0.0,28.991793,0.0 +2024-03-24 20:00:00,6.4195013,11.260551,71.847206,70.27763,20.8,1008.55005,0.0,30.460539,0.0 +2024-03-24 21:00:00,6.5787535,11.494781,70.46326,68.56877,20.3,1008.8334,0.0,32.43034,0.0 +2024-03-24 22:00:00,6.4257298,11.423659,69.026436,66.80139,19.75,1009.11523,0.0,34.756813,0.0 +2024-03-24 23:00:00,6.307139,11.001818,64.65388,62.969223,19.55,1009.50635,0.0,36.320515,1.0 +2024-03-25 00:00:00,6.2177167,10.257679,62.198643,60.185936,21.6,1009.5643,0.0,33.03258,1.0 +2024-03-25 01:00:00,6.1717095,8.5,63.019848,61.92762,24.65,1009.5503,0.0,29.042122,1.0 +2024-03-25 02:00:00,5.5217752,7.1028166,54.58287,54.743572,27.25,1009.4229,0.0,23.468279,1.0 +2024-03-25 03:00:00,2.4839485,2.9832866,49.899166,50.440376,28.9,1009.1696,0.0,18.648218,1.0 +2024-03-25 04:00:00,0.6708204,0.5830952,243.43501,239.0363,29.75,1008.59717,0.0,17.257523,1.0 +2024-03-25 05:00:00,4.244997,4.738143,226.90913,224.14499,29.85,1007.8061,0.0,17.968666,1.0 +2024-03-25 06:00:00,7.184706,9.042676,214.7961,212.81136,28.5,1007.2741,0.0,19.358463,1.0 +2024-03-25 07:00:00,6.762396,8.947067,203.53236,205.13292,27.75,1007.0558,0.0,19.727222,1.0 +2024-03-25 08:00:00,6.8007355,9.272,197.10281,196.28499,26.95,1007.1332,0.0,25.606041,1.0 +2024-03-25 09:00:00,6.432729,8.747571,191.65926,190.53912,26.15,1007.2108,0.0,24.092665,1.0 +2024-03-25 10:00:00,5.414795,7.8313475,184.23631,185.1281,23.8,1007.5428,0.0,38.04962,1.0 +2024-03-25 11:00:00,3.9319208,6.7896976,172.69434,170.67648,22.55,1008.0043,0.0,48.032673,0.0 +2024-03-25 12:00:00,3.613862,6.596969,165.5792,165.96373,21.8,1008.47894,0.0,54.24673,0.0 +2024-03-25 13:00:00,3.522783,6.896376,145.40765,150.46132,21.05,1009.4495,0.0,48.91871,0.0 +2024-03-25 14:00:00,3.2802439,6.9339743,142.43134,146.76828,20.55,1009.7332,0.0,46.692326,0.0 +2024-03-25 15:00:00,2.842534,6.6287255,140.71062,146.07016,19.95,1009.91437,0.0,45.277927,0.0 +2024-03-25 16:00:00,2.828427,6.6610813,135.0001,144.16226,19.45,1009.7018,0.0,44.983913,0.0 +2024-03-25 17:00:00,2.607681,6.43506,122.471176,135.62952,18.95,1009.1916,0.0,43.626366,0.0 +2024-03-25 18:00:00,2.4596748,5.9816384,116.56499,128.21107,18.3,1009.17303,0.0,46.067,0.0 +2024-03-25 19:00:00,1.9416487,5.0990195,101.88863,115.55992,17.2,1008.943,0.0,49.37176,0.0 +2024-03-25 20:00:00,2.209072,5.4744864,84.805664,99.46225,17.05,1008.9386,0.0,47.82259,0.0 +2024-03-25 21:00:00,2.5179358,6.3007936,83.15732,90.90936,17.5,1009.14984,0.0,42.466743,0.0 +2024-03-25 22:00:00,3.2280025,7.218033,73.81073,79.624214,18.4,1009.3742,0.0,37.41195,0.0 +2024-03-25 23:00:00,4.237924,8.22253,70.70986,76.63977,19.45,1009.7018,0.0,33.466908,1.0 +2024-03-26 00:00:00,5.4708314,10.1242285,71.89614,69.775055,22.95,1010.2966,0.0,26.619808,1.0 +2024-03-26 01:00:00,3.535534,6.046487,61.26031,55.78425,28.05,1010.8332,0.0,20.155317,1.0 +2024-03-26 02:00:00,2.3706539,3.4669871,27.645891,33.231728,31.2,1010.6196,0.0,17.23049,1.0 +2024-03-26 03:00:00,0.92195445,0.781025,257.4712,309.8055,31.5,1010.3299,0.0,15.837416,1.0 +2024-03-26 04:00:00,3.753665,3.9698865,228.23979,229.08571,31.2,1009.42914,0.0,24.424171,1.0 +2024-03-26 05:00:00,5.234501,6.6483083,223.45189,226.2188,30.6,1008.81805,0.0,27.680557,1.0 +2024-03-26 06:00:00,5.5217752,6.9999995,215.41714,216.86998,29.95,1008.4041,0.0,29.907103,1.0 +2024-03-26 07:00:00,5.8600345,7.920227,205.25313,204.62355,28.85,1008.5731,0.0,31.235544,1.0 +2024-03-26 08:00:00,5.2773094,7.2835426,189.81923,188.68628,28.55,1008.7636,0.0,30.737488,1.0 +2024-03-26 09:00:00,5.2952805,7.641989,190.88548,186.00891,27.45,1009.0315,0.0,40.645336,1.0 +2024-03-26 10:00:00,4.9,8.827797,180.0,175.45204,25.1,1009.3643,0.0,43.72963,1.0 +2024-03-26 11:00:00,4.535416,8.507056,165.96373,162.20392,24.3,1010.03644,0.0,41.80649,0.0 +2024-03-26 12:00:00,4.3863425,8.458132,155.77226,155.55606,23.65,1010.41516,0.0,44.792362,0.0 +2024-03-26 13:00:00,3.8948684,8.062258,150.80261,150.2552,23.0,1010.7937,0.0,41.861473,0.0 +2024-03-26 14:00:00,3.4999998,7.738863,143.13002,147.13133,22.4,1010.8762,0.0,40.441593,0.0 +2024-03-26 15:00:00,2.9068882,7.3,130.81499,138.888,22.05,1010.9656,0.0,35.663208,0.0 +2024-03-26 16:00:00,2.4413111,6.7178864,124.992096,134.39699,21.4,1010.749,0.0,31.617105,0.0 +2024-03-26 17:00:00,2.3323808,6.2482,120.96369,129.80553,20.75,1010.6315,0.0,31.542805,0.0 +2024-03-26 18:00:00,2.34094,5.4708314,109.98319,120.78408,19.6,1010.30133,0.0,33.867233,0.0 +2024-03-26 19:00:00,2.5961509,5.056679,105.64231,114.53771,18.65,1010.17487,0.0,36.315426,0.0 +2024-03-26 20:00:00,2.433105,5.0289164,99.46225,107.35411,18.15,1009.96204,0.0,37.736515,0.0 +2024-03-26 21:00:00,2.7018514,6.8066144,92.12105,92.52606,19.2,1010.09125,0.0,35.213783,0.0 +2024-03-26 22:00:00,3.3136082,8.249242,84.805664,83.73661,20.25,1010.2205,0.0,32.30166,0.0 +2024-03-26 23:00:00,3.794733,8.53815,71.564964,71.564964,21.25,1010.74457,0.0,30.37317,1.0 +2024-03-27 00:00:00,3.5846896,8.15414,59.8587,56.50479,24.6,1011.3341,0.0,25.326855,1.0 +2024-03-27 01:00:00,0.50990194,2.059126,258.6901,29.054508,27.8,1011.5209,0.0,22.725029,1.0 +2024-03-27 02:00:00,1.118034,1.6492423,296.56497,345.9637,30.55,1011.49536,0.0,20.353437,1.0 +2024-03-27 03:00:00,2.5079873,2.3537204,246.50142,257.73523,31.45,1011.1224,0.0,23.355375,1.0 +2024-03-27 04:00:00,3.8600519,4.2720017,233.42688,237.42595,31.45,1010.52704,0.0,26.54789,1.0 +2024-03-27 05:00:00,4.967897,6.021628,229.89915,234.46223,31.4,1009.93054,0.0,26.623484,1.0 +2024-03-27 06:00:00,5.4451814,7.0035706,224.25603,226.73567,31.0,1009.32495,0.0,28.44485,1.0 +2024-03-27 07:00:00,5.6400356,7.81025,217.07317,219.80553,29.75,1008.99396,0.0,30.863543,1.0 +2024-03-27 08:00:00,4.0718546,5.6797886,204.67685,206.11385,29.0,1008.8749,0.0,33.64908,1.0 +2024-03-27 09:00:00,3.9217343,5.5785303,199.35909,194.5345,28.0,1009.1455,0.0,38.97552,1.0 +2024-03-27 10:00:00,3.4014704,6.4,181.68465,180.0,26.15,1009.2939,0.0,39.753395,1.0 +2024-03-27 11:00:00,3.471311,6.5253353,168.3664,164.89885,25.05,1009.46185,0.0,41.051983,0.0 +2024-03-27 12:00:00,3.1953092,6.7779055,159.86362,158.3555,24.45,1009.7429,0.0,43.405384,0.0 +2024-03-27 13:00:00,2.9274564,6.3890533,172.14677,162.69939,23.5,1010.0142,0.0,38.482143,0.0 +2024-03-27 14:00:00,2.2825425,6.140033,151.1893,149.67648,22.35,1009.9822,0.0,44.2828,0.0 +2024-03-27 15:00:00,2.147091,5.6938567,152.24155,149.38147,21.3,1009.8536,0.0,50.816113,0.0 +2024-03-27 16:00:00,2.0615528,5.481788,140.90616,141.66663,20.55,1009.2373,0.0,55.192936,0.0 +2024-03-27 17:00:00,2.3345237,4.763402,136.73567,140.9645,19.1,1008.9975,0.0,58.025608,0.0 +2024-03-27 18:00:00,2.5495098,4.62277,131.82008,141.14662,18.45,1008.78076,0.0,59.037693,0.0 +2024-03-27 19:00:00,2.5495098,3.7443287,101.3099,124.11452,18.1,1008.47314,0.0,52.39452,0.0 +2024-03-27 20:00:00,2.4166093,3.4713109,114.44395,131.49637,18.4,1008.2833,0.0,42.872345,0.0 +2024-03-27 21:00:00,2.5942245,3.482815,117.552734,140.82635,17.35,1008.5505,0.0,45.012913,0.0 +2024-03-27 22:00:00,2.7166157,3.3421547,96.340096,128.92755,16.45,1008.92114,0.0,47.490623,0.0 +2024-03-27 23:00:00,2.236068,3.130495,100.30479,116.56499,17.2,1009.2405,0.0,45.59981,1.0 +2024-03-28 00:00:00,1.0,2.184033,90.0,74.054535,22.0,1009.8732,0.0,31.67706,1.0 +2024-03-28 01:00:00,1.1401755,0.98488575,217.87505,203.9625,24.8,1009.75287,0.0,29.796839,1.0 +2024-03-28 02:00:00,2.1931713,1.9849433,223.1524,220.91429,27.5,1009.62787,0.0,27.585947,1.0 +2024-03-28 03:00:00,3.5468295,3.6124785,220.426,221.63345,28.6,1009.3601,0.0,30.23959,1.0 +2024-03-28 04:00:00,4.4204073,4.920366,217.64769,217.56866,29.0,1009.0733,0.0,31.59163,1.0 +2024-03-28 05:00:00,5.077401,6.140033,212.12497,210.32352,28.75,1008.6698,0.0,33.468212,1.0 +2024-03-28 06:00:00,5.8523498,7.5286117,199.9832,196.9909,27.95,1008.2515,0.0,38.328205,1.0 +2024-03-28 07:00:00,6.5253353,8.492938,195.10115,192.2361,26.75,1008.1196,0.0,46.688175,1.0 +2024-03-28 08:00:00,6.9231496,9.192389,190.82297,188.13002,25.7,1007.8929,0.0,58.29725,1.0 +2024-03-28 09:00:00,7.0114193,9.508417,183.27042,182.41098,24.2,1007.9506,0.0,68.76863,1.0 +2024-03-28 10:00:00,6.4031243,9.11976,178.21013,176.2278,23.0,1008.01654,0.0,72.08771,1.0 +2024-03-28 11:00:00,5.4571056,8.780091,166.21838,165.4889,22.2,1008.29205,0.0,66.86375,0.0 +2024-03-28 12:00:00,5.239275,8.915716,156.3706,156.88577,21.65,1008.77246,0.0,64.84542,0.0 +2024-03-28 13:00:00,4.648656,8.190848,161.1752,162.22859,21.15,1009.55164,0.0,61.062695,0.0 +2024-03-28 14:00:00,3.9357338,7.615773,152.78398,156.80139,20.75,1009.838,0.0,61.973503,0.0 +2024-03-28 15:00:00,3.6069376,7.324616,136.12321,141.09586,20.35,1009.6283,0.0,57.187088,0.0 +2024-03-28 16:00:00,3.0232434,7.017834,145.78424,147.21573,19.85,1009.2173,0.0,53.566338,0.0 +2024-03-28 17:00:00,2.842534,6.940461,140.71062,143.79045,19.6,1008.81366,0.0,48.524414,0.0 +2024-03-28 18:00:00,2.2203603,5.8309517,144.16226,149.03632,18.65,1009.084,0.0,46.641983,0.0 +2024-03-28 19:00:00,2.5806975,6.306346,144.46223,152.62238,18.55,1008.982,0.0,45.03998,0.0 +2024-03-28 20:00:00,2.842534,6.6241984,140.71062,151.11351,18.15,1008.8711,0.0,47.797916,0.0 +2024-03-28 21:00:00,2.5455844,6.185467,135.0001,145.53912,17.65,1008.956,0.0,47.82389,0.0 +2024-03-28 22:00:00,2.3345237,5.8249464,133.26433,145.49142,17.0,1009.532,0.0,47.64366,0.0 +2024-03-28 23:00:00,2.5553863,5.7999997,120.57915,136.39711,17.35,1009.93884,0.0,42.72137,1.0 +2024-03-29 00:00:00,2.9206164,5.879626,128.04709,131.55252,20.45,1010.22626,0.0,35.327023,1.0 +2024-03-29 01:00:00,2.4698179,3.3120992,158.62932,151.11351,23.55,1010.7101,0.0,33.358402,1.0 +2024-03-29 02:00:00,2.8017852,3.354102,177.95464,169.6952,26.5,1010.39453,0.0,28.956009,1.0 +2024-03-29 03:00:00,3.794733,4.491102,198.43504,191.5601,28.0,1009.8399,0.0,31.630861,1.0 +2024-03-29 04:00:00,4.830114,5.571355,207.09547,201.03758,27.9,1009.5394,0.0,43.364185,1.0 +2024-03-29 05:00:00,5.3,6.35059,211.89075,206.1615,27.65,1008.9376,0.0,48.303345,1.0 +2024-03-29 06:00:00,5.507268,6.9778223,209.35765,205.4633,27.3,1008.63055,0.0,42.91929,1.0 +2024-03-29 07:00:00,5.2924476,6.8007355,202.20352,199.76726,26.5,1008.5099,0.0,45.57444,1.0 +2024-03-29 08:00:00,5.4120235,6.9857,196.09088,193.24052,25.35,1008.6766,0.0,54.266205,1.0 +2024-03-29 09:00:00,5.124451,6.7186303,185.59924,184.2678,24.05,1008.83923,0.0,60.17091,1.0 +2024-03-29 10:00:00,5.124451,7.1175838,185.59924,184.02818,22.4,1009.28925,0.0,74.289955,1.0 +2024-03-29 11:00:00,4.8010416,7.7103825,178.80653,177.02634,21.4,1009.658,0.0,82.260086,0.0 +2024-03-29 12:00:00,4.669047,7.6295476,170.13426,169.42653,20.85,1010.3368,0.0,86.15829,0.0 +2024-03-29 13:00:00,4.5122056,7.5709977,167.19574,167.79955,20.1,1010.81116,0.0,90.2381,0.0 +2024-03-29 14:00:00,3.8483763,6.9079666,155.43285,157.8905,19.7,1010.9984,0.0,89.92673,0.0 +2024-03-29 15:00:00,3.1780498,6.332456,155.85446,158.70258,19.2,1010.78546,0.0,92.47483,0.0 +2024-03-29 16:00:00,3.2015622,6.296825,141.34016,147.31946,18.85,1010.67645,0.0,93.04003,0.0 +2024-03-29 17:00:00,3.1827662,6.4202805,136.27295,142.59457,18.45,1010.56586,0.0,91.55983,0.0 +2024-03-29 18:00:00,2.302173,5.5317264,124.3804,130.60121,17.85,1010.4493,0.0,87.24633,0.0 +2024-03-29 19:00:00,1.8439089,5.0249376,130.60121,137.41954,16.85,1010.222,0.0,84.38378,0.0 +2024-03-29 20:00:00,1.8867962,4.967897,122.00535,130.10085,16.55,1010.3123,0.0,79.031166,0.0 +2024-03-29 21:00:00,2.3323808,4.110961,120.96369,131.05472,15.5,1010.5791,0.0,79.92504,0.0 +2024-03-29 22:00:00,2.118962,5.1478148,109.290146,114.07549,16.3,1011.0983,0.0,71.79666,0.0 +2024-03-29 23:00:00,2.184033,5.5108986,105.945465,101.5138,17.4,1011.1304,0.0,62.231503,1.0 +2024-03-30 00:00:00,2.4207437,5.178803,128.2902,100.00792,20.65,1011.8187,0.0,48.320713,1.0 +2024-03-30 01:00:00,1.8357561,2.641969,150.64235,119.4758,24.8,1012.3317,0.0,37.56823,1.0 +2024-03-30 02:00:00,2.3194828,2.607681,172.56868,147.52882,27.35,1012.30237,0.0,32.308517,1.0 +2024-03-30 03:00:00,3.0675724,3.1144822,199.0257,185.52745,28.85,1011.94586,0.0,32.40227,1.0 +2024-03-30 04:00:00,4.3382025,4.9335585,205.97433,197.70052,28.95,1011.552,0.0,40.533512,1.0 +2024-03-30 05:00:00,5.280152,6.514599,204.62355,197.87878,28.15,1011.13367,0.0,49.52675,1.0 +2024-03-30 06:00:00,6.0728908,7.8854294,197.24155,192.44998,28.0,1010.5343,0.0,47.02443,1.0 +2024-03-30 07:00:00,6.1814237,8.139411,189.30986,185.64046,27.75,1010.42847,0.0,44.745895,1.0 +2024-03-30 08:00:00,6.129437,8.40238,185.6175,181.36389,27.1,1010.4107,0.0,47.084988,1.0 +2024-03-30 09:00:00,6.6068144,9.700516,182.60251,179.40936,25.55,1010.26935,0.0,56.07962,1.0 +2024-03-30 10:00:00,6.239391,9.390421,173.5585,172.04257,23.45,1010.4098,0.0,72.62258,1.0 +2024-03-30 11:00:00,7.156815,11.208925,164.6044,164.47583,22.45,1011.2744,0.0,82.387726,0.0 +2024-03-30 12:00:00,7.3389373,11.510863,160.08351,161.25015,21.6,1012.04376,0.0,90.623405,0.0 +2024-03-30 13:00:00,6.1465435,9.972463,158.02544,158.83867,21.25,1013.12494,0.0,87.55242,0.0 +2024-03-30 14:00:00,5.60803,9.17878,148.86108,150.64235,20.85,1013.21295,0.0,90.01005,0.0 +2024-03-30 15:00:00,4.8548946,8.130191,147.61934,148.06935,20.45,1013.1024,0.0,91.96863,0.0 +2024-03-30 16:00:00,4.494441,7.738863,147.72438,147.13133,20.3,1012.70123,0.0,89.68922,0.0 +2024-03-30 17:00:00,4.167733,7.3573093,149.74365,148.90276,19.7,1012.2877,0.0,91.92451,0.0 +2024-03-30 18:00:00,3.9446166,7.0491138,149.53453,148.3393,19.3,1012.276,0.0,93.35569,0.0 +2024-03-30 19:00:00,3.9661064,7.156116,146.3099,146.97612,19.05,1011.9714,0.0,93.63732,0.0 +2024-03-30 20:00:00,3.5608988,6.7007465,141.84273,142.27495,18.75,1011.9629,0.0,93.3286,0.0 +2024-03-30 21:00:00,3.5805027,6.9999995,144.09018,143.13002,18.4,1012.0519,0.0,93.016884,0.0 +2024-03-30 22:00:00,3.8209944,7.2138753,137.12111,136.12321,18.15,1012.6396,0.0,91.83216,0.0 +2024-03-30 23:00:00,3.482815,6.6483083,140.82635,136.2188,18.1,1013.035,0.0,90.3822,1.0 +2024-03-31 00:00:00,4.2190046,6.220129,148.57048,143.49847,20.2,1013.591,0.0,77.795975,1.0 +2024-03-31 01:00:00,4.429447,5.7454333,151.69934,148.52321,22.6,1014.3534,0.0,64.6339,1.0 +2024-03-31 02:00:00,4.560702,5.724509,164.74483,160.61539,25.4,1014.1338,0.0,53.759243,1.0 +2024-03-31 03:00:00,5.4037027,6.648308,177.87895,173.08887,27.2,1013.48865,0.0,48.962254,1.0 +2024-03-31 04:00:00,6.562012,8.21523,187.88304,183.48926,27.35,1012.8975,0.0,52.559467,1.0 +2024-03-31 05:00:00,7.4330344,9.3771,190.85637,187.35228,27.1,1011.99786,0.0,55.75117,1.0 +2024-03-31 06:00:00,7.990619,10.369668,188.63705,186.64519,26.5,1011.5849,0.0,55.780003,1.0 +2024-03-31 07:00:00,7.8313475,10.20784,185.1281,182.2457,26.5,1011.2873,0.0,55.251972,1.0 +2024-03-31 08:00:00,7.7058415,10.401922,182.23112,178.89832,26.05,1011.2749,0.0,58.196186,1.0 +2024-03-31 09:00:00,7.410803,10.239629,176.906,174.95764,24.65,1011.3357,0.0,63.85123,1.0 +2024-03-31 10:00:00,6.726812,9.786726,174.88278,172.36676,23.25,1011.5943,0.0,71.905945,1.0 +2024-03-31 11:00:00,6.551336,10.623088,167.66092,165.83292,22.0,1011.8569,0.0,77.57347,0.0 +2024-03-31 12:00:00,6.4536815,10.5019045,167.4712,166.22838,21.8,1012.1487,0.0,78.27943,0.0 +2024-03-31 13:00:00,5.8523498,9.741664,163.11313,162.68097,20.95,1012.9183,0.0,82.984505,0.0 +2024-03-31 14:00:00,4.651881,8.095678,154.5367,154.38457,20.7,1012.61346,0.0,84.00612,0.0 +2024-03-31 15:00:00,3.0805843,6.4202805,144.24602,142.59457,20.3,1012.0071,0.0,83.43304,0.0 +2024-03-31 16:00:00,2.4758837,6.3411355,133.36346,127.95429,20.25,1011.5098,0.0,76.81753,0.0 +2024-03-31 17:00:00,2.408319,6.860029,131.63345,120.67721,20.5,1011.0209,0.0,62.935547,0.0 +2024-03-31 18:00:00,3.0232434,7.5769386,124.21575,112.50357,21.7,1010.9556,0.0,48.28276,0.0 +2024-03-31 19:00:00,3.8078866,8.271033,113.198616,104.70835,22.15,1010.7699,0.0,47.605873,0.0 +2024-03-31 20:00:00,4.632494,9.404786,103.73629,98.56081,22.4,1010.6778,0.0,46.88711,0.0 +2024-03-31 21:00:00,5.2392745,10.111875,103.24053,98.530685,22.4,1010.8762,0.0,46.73112,0.0 +2024-03-31 22:00:00,5.3600373,10.394711,104.03627,97.74025,22.25,1011.16956,0.0,47.316883,0.0 +2024-03-31 23:00:00,5.491812,10.223991,100.491425,93.925835,22.4,1011.2729,0.0,47.673977,1.0 +2024-04-01 00:00:00,4.588028,8.63713,110.409966,95.31445,24.45,1011.62756,0.0,43.69388,1.0 +2024-04-01 01:00:00,5.2810984,7.4525166,108.77813,101.61146,26.25,1011.8754,0.0,40.443752,1.0 +2024-04-01 02:00:00,5.408327,7.306162,93.17977,87.64676,29.1,1011.65497,0.0,34.01239,1.0 +2024-04-01 03:00:00,4.509989,6.1204576,93.814,85.314186,31.6,1011.02716,0.0,28.702587,1.0 +2024-04-01 04:00:00,3.0413814,4.204759,99.46225,87.27374,33.0,1010.2703,0.0,25.653902,1.0 +2024-04-01 05:00:00,1.9646883,2.280351,165.2564,142.12495,33.7,1009.2962,0.0,23.541414,1.0 +2024-04-01 06:00:00,6.016644,7.7929454,195.42223,188.85788,31.6,1008.84467,0.0,38.594135,1.0 +2024-04-01 07:00:00,7.218033,10.517129,190.3758,183.27042,29.65,1008.69385,0.0,47.91654,1.0 +2024-04-01 08:00:00,8.260751,12.40645,186.95287,181.84756,27.95,1008.74756,0.0,53.046085,1.0 +2024-04-01 09:00:00,7.605919,11.661904,177.73955,174.09395,26.25,1008.8004,0.0,54.49225,1.0 +2024-04-01 10:00:00,6.670832,9.876234,167.00539,164.13423,25.15,1009.1672,0.0,57.796783,1.0 +2024-04-01 11:00:00,7.0092797,10.756393,165.96373,163.24965,24.3,1009.838,0.0,60.228977,0.0 +2024-04-01 12:00:00,6.8709536,11.8473625,158.66307,158.19853,23.7,1010.3175,0.0,58.94388,0.0 +2024-04-01 13:00:00,6.6730804,11.7046995,160.75038,160.0168,23.15,1010.8971,0.0,59.768257,0.0 +2024-04-01 14:00:00,5.0328918,8.989995,159.04414,154.2901,22.55,1010.8806,0.0,65.45577,0.0 +2024-04-01 15:00:00,3.9824615,8.909546,141.1155,135.0001,23.0,1010.5954,0.0,57.648094,0.0 +2024-04-01 16:00:00,5.770615,10.555094,117.89718,115.8367,25.5,1010.36694,0.0,37.639988,0.0 +2024-04-01 17:00:00,6.484597,11.332254,107.03786,105.876015,25.7,1010.2735,0.0,37.445374,0.0 +2024-04-01 18:00:00,7.034913,11.871394,95.7105,96.286804,25.6,1010.07227,0.0,36.91945,0.0 +2024-04-01 19:00:00,7.1175838,11.933985,85.97182,85.675026,25.45,1009.96893,0.0,37.500145,0.0 +2024-04-01 20:00:00,7.119691,11.825819,79.47927,78.785126,25.4,1009.7693,0.0,38.5023,0.0 +2024-04-01 21:00:00,7.180529,12.030378,77.125,76.5413,25.05,1010.05695,0.0,40.50977,0.0 +2024-04-01 22:00:00,7.106335,11.840608,76.15928,74.32042,24.55,1010.7377,0.0,42.43678,0.0 +2024-04-01 23:00:00,6.992138,11.700428,73.379166,71.564964,24.25,1011.1262,0.0,43.92862,1.0 +2024-04-02 00:00:00,6.706713,11.086027,69.943825,68.2945,25.9,1011.6676,0.0,40.74799,1.0 +2024-04-02 01:00:00,6.296825,8.709191,69.55037,68.44286,28.5,1012.03564,0.0,36.276463,1.0 +2024-04-02 02:00:00,5.249762,7.05762,72.25524,69.253845,31.3,1012.01135,0.0,30.277327,1.0 +2024-04-02 03:00:00,3.905125,5.333854,92.935616,83.54128,32.65,1011.74927,0.0,24.88759,1.0 +2024-04-02 04:00:00,3.8483763,5.124451,114.56716,107.020615,33.45,1010.9765,0.0,20.510578,1.0 +2024-04-02 05:00:00,3.623534,4.816638,140.59937,131.63345,33.85,1010.3914,0.0,19.9205,1.0 +2024-04-02 06:00:00,5.315073,7.1028166,184.31595,178.38649,32.45,1009.85895,0.0,28.087368,1.0 +2024-04-02 07:00:00,6.4938436,9.319335,189.75235,183.69131,30.45,1009.608,0.0,45.620323,1.0 +2024-04-02 08:00:00,7.0035706,10.423531,189.86574,183.85056,29.5,1009.4833,0.0,47.57507,1.0 +2024-04-02 09:00:00,7.6006575,11.452947,179.24617,174.48862,27.65,1009.73126,0.0,46.930527,1.0 +2024-04-02 10:00:00,6.8949256,11.365298,160.51378,158.85384,26.55,1009.999,0.0,45.884827,1.0 +2024-04-02 11:00:00,7.3006845,11.818629,156.59529,156.0375,25.8,1010.6728,0.0,47.809196,0.0 +2024-04-02 12:00:00,6.8029404,11.1892805,155.69547,155.72557,25.15,1011.2501,0.0,49.853024,0.0 +2024-04-02 13:00:00,5.770615,10.159724,152.10281,151.1646,24.15,1012.016,0.0,53.268272,0.0 +2024-04-02 14:00:00,4.9406476,9.090654,144.0578,140.35587,24.15,1012.11523,0.0,48.30604,0.0 +2024-04-02 15:00:00,5.1623635,9.6208105,135.78474,133.31535,24.65,1011.93085,0.0,40.26273,0.0 +2024-04-02 16:00:00,5.60803,10.159724,121.13891,118.8354,25.35,1011.75146,0.0,30.15717,0.0 +2024-04-02 17:00:00,6.2769423,10.920164,112.47948,110.924576,25.25,1011.3522,0.0,30.025742,0.0 +2024-04-02 18:00:00,6.865857,11.670903,102.619316,102.36905,25.0,1011.3452,0.0,30.58125,0.0 +2024-04-02 19:00:00,7.333485,12.258874,95.47728,95.61749,24.85,1011.1427,0.0,31.498745,0.0 +2024-04-02 20:00:00,7.6164293,12.532358,86.236046,85.88189,24.75,1011.13983,0.0,32.679386,0.0 +2024-04-02 21:00:00,7.35459,12.083046,78.231735,77.57407,24.45,1011.62756,0.0,34.192024,0.0 +2024-04-02 22:00:00,7.156815,11.800424,74.60439,73.254166,24.0,1012.01196,0.0,35.367435,0.0 +2024-04-02 23:00:00,7.18401,11.829624,73.835434,72.79036,23.75,1012.4018,0.0,35.41696,1.0 +2024-04-03 00:00:00,7.05195,11.510863,71.821884,71.25015,25.1,1012.9352,0.0,32.223633,1.0 +2024-04-03 01:00:00,7.116881,9.843272,70.29193,69.17137,26.8,1013.47754,0.0,29.639868,1.0 +2024-04-03 02:00:00,6.648308,8.802272,68.83867,68.68202,29.0,1013.53735,0.0,25.891655,1.0 +2024-04-03 03:00:00,6.1684685,8.005623,70.09616,69.52764,31.1,1012.99805,0.0,22.71573,1.0 +2024-04-03 04:00:00,5.4120235,6.8963757,73.90912,73.14152,32.45,1012.3392,0.0,20.333237,1.0 +2024-04-03 05:00:00,4.5177426,5.731492,84.92049,83.99109,33.5,1011.3747,0.0,17.953806,1.0 +2024-04-03 06:00:00,4.1303754,5.4037027,96.952866,92.12105,34.3,1010.5023,0.0,16.018114,1.0 +2024-04-03 07:00:00,3.2015622,4.3908997,128.65984,120.0685,33.4,1010.1813,0.0,15.872245,1.0 +2024-04-03 08:00:00,3.231099,4.4102154,158.19853,147.0306,32.65,1010.0627,0.0,16.613806,1.0 +2024-04-03 09:00:00,3.51141,4.8826222,160.0168,145.0079,31.15,1010.12225,0.0,19.736315,1.0 +2024-04-03 10:00:00,2.8017852,5.1971145,145.17545,120.01828,29.6,1010.3788,0.0,19.560778,1.0 +2024-04-03 11:00:00,3.1890438,6.6309876,131.18582,113.08516,28.6,1010.74896,0.0,17.670965,0.0 +2024-04-03 12:00:00,3.5608988,7.2498274,128.15727,114.44395,27.7,1011.1212,0.0,17.583204,0.0 +2024-04-03 13:00:00,3.5846896,7.6902537,112.98875,102.77125,26.15,1011.2778,0.0,20.108267,0.0 +2024-04-03 14:00:00,4.318565,8.814193,95.31445,93.251884,25.9,1011.37,0.0,19.688482,0.0 +2024-04-03 15:00:00,4.9,9.500526,90.0,89.39693,25.3,1011.25433,0.0,19.538477,0.0 +2024-04-03 16:00:00,5.5326304,10.0841465,83.77426,82.593185,24.8,1010.9431,0.0,18.788591,0.0 +2024-04-03 17:00:00,6.2169123,10.890822,78.87085,76.72935,24.6,1010.63983,0.0,19.01448,0.0 +2024-04-03 18:00:00,6.705222,11.3842,72.64589,71.564964,24.2,1010.5295,0.0,20.123291,0.0 +2024-04-03 19:00:00,6.741662,11.438969,69.14547,67.9195,23.6,1010.31464,0.0,21.16715,0.0 +2024-04-03 20:00:00,6.7230945,11.810588,67.24899,64.95383,23.0,1010.2978,0.0,22.027773,0.0 +2024-04-03 21:00:00,6.670832,11.806778,66.12472,63.86906,22.5,1010.4823,0.0,22.37903,0.0 +2024-04-03 22:00:00,6.9857,12.030378,66.37061,63.861,21.95,1010.7643,0.0,22.890387,0.0 +2024-04-03 23:00:00,7.077429,12.120231,66.69509,64.06925,21.65,1010.75604,0.0,23.65453,1.0 +2024-04-04 00:00:00,6.7230945,11.6297035,67.24899,64.5367,23.3,1011.1991,0.0,22.427965,1.0 +2024-04-04 01:00:00,6.842514,9.394147,63.060555,62.071106,25.7,1011.067,0.0,21.7875,1.0 +2024-04-04 02:00:00,6.551336,8.5440035,58.736336,57.42595,28.15,1011.0345,0.0,18.798452,1.0 +2024-04-04 03:00:00,5.6035705,7.184706,55.175446,55.2039,30.3,1010.695,0.0,15.792472,1.0 +2024-04-04 04:00:00,4.5221677,5.661272,54.90411,54.344578,32.0,1009.748,0.0,13.533615,1.0 +2024-04-04 05:00:00,3.720215,4.661545,53.74608,54.605125,33.25,1008.6893,0.0,11.817495,1.0 +2024-04-04 06:00:00,1.7029387,2.5632012,86.63361,69.44388,33.1,1007.69336,0.0,11.079146,1.0 +2024-04-04 07:00:00,2.5179358,2.9068885,186.84268,176.05489,32.65,1007.1856,0.0,12.002861,1.0 +2024-04-04 08:00:00,5.217279,7.0859013,192.17145,188.93051,30.3,1006.82605,0.0,25.453222,1.0 +2024-04-04 09:00:00,5.375872,8.030566,189.63747,185.00055,28.9,1006.7888,0.0,32.201237,1.0 +2024-04-04 10:00:00,5.4589376,9.908077,188.42688,182.31367,26.4,1006.82074,0.0,42.950848,1.0 +2024-04-04 11:00:00,5.115662,8.492938,175.51547,167.7639,25.3,1007.1875,0.0,46.295177,0.0 +2024-04-04 12:00:00,3.1780498,6.046487,155.85446,145.78424,24.65,1007.4673,0.0,41.904476,0.0 +2024-04-04 13:00:00,2.6076808,6.6370173,94.39862,83.94591,23.3,1007.7276,0.0,21.553669,0.0 +2024-04-04 14:00:00,4.414748,9.176056,76.908104,73.53991,24.35,1007.6572,0.0,15.183234,0.0 +2024-04-04 15:00:00,5.3600373,10.139033,75.96373,75.14134,24.0,1007.3501,0.0,15.505404,0.0 +2024-04-04 16:00:00,5.7584724,10.6775465,69.67678,67.999245,23.6,1006.8431,0.0,16.062248,0.0 +2024-04-04 17:00:00,6.35059,11.560277,63.8385,59.88635,23.65,1006.4477,0.0,16.56071,0.0 +2024-04-04 18:00:00,7.0491138,12.370934,58.3393,55.539124,23.8,1006.4517,0.0,17.35152,0.0 +2024-04-04 19:00:00,7.323933,12.682271,55.0079,52.045715,23.5,1006.146,0.0,18.81077,0.0 +2024-04-04 20:00:00,7.6216793,13.038404,51.92717,48.731503,23.25,1005.9407,0.0,20.028444,0.0 +2024-04-04 21:00:00,7.798718,13.296617,49.15974,46.2188,23.0,1006.03284,0.0,20.708061,0.0 +2024-04-04 22:00:00,7.451845,13.293607,49.899166,44.999897,22.55,1006.3181,0.0,21.28078,0.0 +2024-04-04 23:00:00,7.5166483,13.152946,49.316113,44.384018,22.35,1006.70917,0.0,21.384405,1.0 +2024-04-05 00:00:00,7.017834,14.301049,49.044586,42.16582,24.45,1007.0648,0.0,18.97727,1.0 +2024-04-05 01:00:00,7.359348,10.857717,42.797382,40.143333,27.5,1007.2472,0.0,16.31087,1.0 +2024-04-05 02:00:00,7.080254,9.5692215,36.38445,34.354393,30.7,1007.1344,0.0,13.803135,1.0 +2024-04-05 03:00:00,5.1478148,6.8249536,7.8152027,10.980613,33.6,1006.8134,0.0,12.146671,1.0 +2024-04-05 04:00:00,5.178803,6.2128897,259.9921,266.3087,31.9,1006.37244,0.0,20.477337,1.0 +2024-04-05 05:00:00,5.6859474,7.4330344,246.13982,250.34608,29.55,1006.0125,0.0,26.127743,1.0 +2024-04-05 06:00:00,4.925444,6.503076,264.17374,268.23764,29.55,1005.81415,0.0,27.21179,1.0 +2024-04-05 07:00:00,5.314132,7.1168814,250.20103,252.838,28.35,1005.68304,0.0,29.169802,1.0 +2024-04-05 08:00:00,3.6769552,4.792703,247.61981,246.64441,27.35,1005.85455,0.0,31.238192,1.0 +2024-04-05 09:00:00,3.3600597,4.763402,233.47105,230.9645,25.65,1005.8082,0.0,43.88165,1.0 +2024-04-05 10:00:00,2.3600848,3.522783,216.38445,214.59235,24.0,1006.06067,0.0,57.519207,1.0 +2024-04-05 11:00:00,1.6763055,4.016217,197.35411,198.88618,22.65,1006.6182,0.0,70.002655,0.0 +2024-04-05 12:00:00,1.6124516,4.1773195,187.12492,191.0409,21.9,1006.9941,0.0,76.82908,0.0 +2024-04-05 13:00:00,1.9235383,3.5014284,171.02745,181.63654,20.3,1007.3457,0.0,90.53488,0.0 +2024-04-05 14:00:00,1.8027756,3.8209946,160.55988,173.99109,19.95,1007.3358,0.0,91.65196,0.0 +2024-04-05 15:00:00,1.9924859,2.8071337,162.47433,175.91446,19.75,1007.3301,0.0,91.06684,0.0 +2024-04-05 16:00:00,1.9416487,2.5317976,191.88864,189.0902,19.45,1007.1233,0.0,93.65607,0.0 +2024-04-05 17:00:00,1.8027756,2.3345234,146.3099,170.13426,19.05,1006.71515,0.0,95.41788,0.0 +2024-04-05 18:00:00,1.9104972,2.376973,132.87889,165.37909,18.3,1006.3962,0.0,96.602295,0.0 +2024-04-05 19:00:00,1.2369317,1.5811388,104.03627,161.56496,18.55,1006.00684,0.0,95.40074,0.0 +2024-04-05 20:00:00,1.104536,1.2083046,84.805664,155.55606,17.8,1005.7867,0.0,96.28454,0.0 +2024-04-05 21:00:00,0.22360681,0.9433981,63.435013,212.00534,19.35,1005.9303,0.0,94.240364,0.0 +2024-04-05 22:00:00,0.5,0.5,53.13002,216.86998,18.15,1006.1934,0.0,97.20924,0.0 +2024-04-05 23:00:00,0.64031243,0.1,38.65983,360.0,18.95,1006.6131,0.0,96.01496,1.0 +2024-04-06 00:00:00,0.86023253,0.5830952,35.537766,30.963696,19.5,1007.0257,0.0,97.237465,1.0 +2024-04-06 01:00:00,0.31622776,0.28284273,288.43503,315.0001,21.4,1007.3769,0.0,78.468216,1.0 +2024-04-06 02:00:00,1.9697715,2.1931713,246.0375,245.77226,23.5,1007.237,0.0,70.38482,1.0 +2024-04-06 03:00:00,3.0413814,3.448188,242.5925,240.4613,24.55,1007.0677,0.0,65.87559,1.0 +2024-04-06 04:00:00,3.4885528,4.0706263,242.7005,242.176,25.15,1006.2906,0.0,62.56422,1.0 +2024-04-06 05:00:00,4.031129,4.750789,240.2552,239.65683,25.45,1005.60443,0.0,59.733944,1.0 +2024-04-06 06:00:00,4.243819,5.161395,235.56094,234.46223,25.25,1005.3015,0.0,61.41225,1.0 +2024-04-06 07:00:00,4.172529,5.091169,225.97093,224.9999,25.15,1005.1003,0.0,60.809578,1.0 +2024-04-06 08:00:00,3.2557642,3.9698865,222.5104,220.91429,24.6,1005.0852,0.0,60.106907,1.0 +2024-04-06 09:00:00,3.8209944,4.675468,222.87889,221.53168,23.5,1004.95575,0.0,72.85947,1.0 +2024-04-06 10:00:00,2.5238857,3.4132097,213.6901,211.82741,21.95,1005.30927,0.0,81.81414,1.0 +2024-04-06 11:00:00,2.9206164,5.0,218.04709,216.86998,21.35,1005.88763,0.0,91.452934,0.0 +2024-04-06 12:00:00,1.3038404,3.4014704,175.60138,178.31535,20.65,1006.4631,0.0,93.711975,0.0 +2024-04-06 13:00:00,2.0615528,4.295346,165.96373,167.90526,20.15,1007.1432,0.0,93.98118,0.0 +2024-04-06 14:00:00,2.0,4.428318,143.13002,154.59233,19.85,1007.23376,0.0,94.55633,0.0 +2024-04-06 15:00:00,1.5524175,3.9623227,165.06853,169.82455,19.25,1006.7208,0.0,95.12634,0.0 +2024-04-06 16:00:00,1.6124516,3.640055,150.2552,164.05453,18.65,1006.20795,0.0,96.00604,0.0 +2024-04-06 17:00:00,1.5811387,3.6687872,145.30478,162.55272,18.4,1005.9032,0.0,95.69665,0.0 +2024-04-06 18:00:00,1.6970563,3.4539833,135.0001,157.8905,17.85,1005.689,0.0,95.98196,0.0 +2024-04-06 19:00:00,2.3345237,2.9832869,136.73567,166.42955,17.05,1005.26935,0.0,96.57009,0.0 +2024-04-06 20:00:00,1.8439089,2.5019991,130.60121,177.70944,17.3,1004.78076,0.0,96.57658,0.0 +2024-04-06 21:00:00,1.5524175,2.404163,104.93147,163.0724,16.9,1004.8682,0.0,98.426094,0.0 +2024-04-06 22:00:00,1.0049876,1.6552945,95.7105,154.98314,17.85,1005.39154,0.0,98.12752,0.0 +2024-04-06 23:00:00,1.5297059,2.0124612,101.3099,153.43501,18.2,1005.69916,0.0,98.44161,1.0 +2024-04-07 00:00:00,1.431782,1.7492856,114.775116,149.03632,19.2,1006.12427,0.0,97.53551,1.0 +2024-04-07 01:00:00,1.9235383,2.3194828,171.02745,172.56868,21.2,1006.77606,0.0,84.85527,1.0 +2024-04-07 02:00:00,2.34094,2.720294,199.9832,197.10281,23.65,1006.8444,0.0,71.52763,1.0 +2024-04-07 03:00:00,3.6891732,4.3416586,212.82854,208.92633,25.0,1006.5841,0.0,65.76233,1.0 +2024-04-07 04:00:00,4.022437,4.802083,214.8754,211.37296,25.6,1006.10455,0.0,63.059097,1.0 +2024-04-07 05:00:00,4.8600416,5.7688823,216.6342,213.6901,25.7,1005.51227,0.0,61.320614,1.0 +2024-04-07 06:00:00,4.909175,5.9682493,213.36638,211.29298,25.7,1004.9171,0.0,60.743458,1.0 +2024-04-07 07:00:00,5.1107726,6.352952,210.57915,208.1785,25.35,1004.6097,0.0,64.00269,1.0 +2024-04-07 08:00:00,5.0089917,6.397656,206.05344,204.96275,24.4,1004.2864,0.0,69.45762,1.0 +2024-04-07 09:00:00,5.147815,6.441273,209.0545,207.75845,23.35,1004.1582,0.0,80.2291,1.0 +2024-04-07 10:00:00,5.1078367,6.9462223,203.05133,202.8737,21.6,1004.1093,0.0,88.67825,1.0 +2024-04-07 11:00:00,2.5961509,4.3011627,195.6423,197.59251,21.2,1004.99084,0.0,90.31535,0.0 +2024-04-07 12:00:00,3.4539833,5.8694124,157.8905,156.92957,21.2,1005.6851,0.0,92.01239,0.0 +2024-04-07 13:00:00,2.6925824,5.188449,148.67137,152.44728,20.6,1005.86646,0.0,91.121864,0.0 +2024-04-07 14:00:00,2.236068,4.924429,153.43501,156.0375,19.9,1006.1445,0.0,90.79161,0.0 +2024-04-07 15:00:00,2.3323808,5.060632,149.03632,150.39565,19.5,1006.03394,0.0,91.91266,0.0 +2024-04-07 16:00:00,2.3345237,5.2801514,136.73567,142.69597,19.25,1005.33246,0.0,91.034225,0.0 +2024-04-07 17:00:00,1.9924859,5.5946403,107.52566,118.85556,18.55,1004.9159,0.0,87.86748,0.0 +2024-04-07 18:00:00,2.118962,6.040695,109.290146,109.3349,18.3,1004.9086,0.0,79.02621,0.0 +2024-04-07 19:00:00,2.9274564,8.009994,97.853226,87.13766,19.95,1004.658,0.0,60.583973,0.0 +2024-04-07 20:00:00,5.6293874,11.208925,77.692,74.47583,22.8,1004.53973,0.0,35.877613,0.0 +2024-04-07 21:00:00,7.35459,12.95222,78.231735,76.60749,23.95,1005.0675,0.0,24.972908,0.0 +2024-04-07 22:00:00,7.8447433,13.453624,78.97659,78.85715,23.95,1005.76184,0.0,22.92557,0.0 +2024-04-07 23:00:00,7.5286117,12.965339,73.009094,71.564964,24.5,1006.37213,0.0,22.023367,1.0 +2024-04-08 00:00:00,7.5272837,12.59365,70.6021,69.55037,26.45,1007.41705,0.0,19.68455,1.0 +2024-04-08 01:00:00,8.246211,12.20041,75.96373,75.2803,28.35,1007.9646,0.0,17.993748,1.0 +2024-04-08 02:00:00,8.640023,11.800424,73.87235,73.254166,31.35,1008.0444,0.0,15.1959305,1.0 +2024-04-08 03:00:00,8.728115,11.637869,71.98014,70.94221,33.55,1007.8042,0.0,13.517676,1.0 +2024-04-08 04:00:00,8.633076,11.510863,71.77483,71.25015,34.85,1007.34174,0.0,12.438935,1.0 +2024-04-08 05:00:00,7.9075913,10.381233,76.84245,76.63306,35.3,1006.7581,0.0,11.050577,1.0 +2024-04-08 06:00:00,7.7317524,10.248902,84.805664,84.40076,35.5,1006.1678,0.0,9.94432,1.0 +2024-04-08 07:00:00,7.6,10.0,90.0,90.0,35.35,1005.86633,0.0,10.323793,1.0 +2024-04-08 08:00:00,6.9584484,9.353609,97.43131,96.13717,35.1,1006.0582,0.0,10.429533,1.0 +2024-04-08 09:00:00,7.1589108,9.847842,102.09474,99.940506,34.15,1006.3315,0.0,11.401647,1.0 +2024-04-08 10:00:00,5.060632,8.234683,119.604355,114.38637,32.25,1006.8775,0.0,13.343547,1.0 +2024-04-08 11:00:00,4.382921,8.184131,124.77791,125.04945,29.6,1007.2043,0.0,16.033201,0.0 +2024-04-08 12:00:00,4.7127485,8.919641,107.281586,109.653915,28.8,1007.6791,0.0,17.157309,0.0 +2024-04-08 13:00:00,6.332456,10.900459,111.297424,112.094284,28.55,1008.56525,0.0,18.170889,0.0 +2024-04-08 14:00:00,6.5802736,11.112605,106.78272,105.66217,28.2,1009.1509,0.0,19.421915,0.0 +2024-04-08 15:00:00,5.7870545,10.096039,108.121956,106.10137,27.0,1009.11865,0.0,21.508387,0.0 +2024-04-08 16:00:00,7.116881,11.926861,109.70808,110.10632,25.75,1009.0844,0.0,25.459862,0.0 +2024-04-08 17:00:00,7.227724,11.957007,104.420815,104.03627,25.45,1008.87775,0.0,28.467741,0.0 +2024-04-08 18:00:00,7.0035706,11.6559,99.865746,99.38144,24.95,1008.66583,0.0,29.327866,0.0 +2024-04-08 19:00:00,7.125307,11.827087,94.83033,93.87845,24.5,1008.45514,0.0,29.507761,0.0 +2024-04-08 20:00:00,7.5006666,12.4,90.763885,90.0,24.2,1008.34735,0.0,29.423887,0.0 +2024-04-08 21:00:00,8.0025,13.009612,88.56794,87.79745,23.9,1008.43835,0.0,30.167551,0.0 +2024-04-08 22:00:00,8.130191,13.055267,85.060875,84.7262,23.5,1008.6256,0.0,32.214138,0.0 +2024-04-08 23:00:00,8.188407,12.955308,81.57312,81.11942,23.35,1009.1175,0.0,33.416443,1.0 +2024-04-09 00:00:00,7.7103825,11.905041,80.29342,79.35084,24.45,1009.64374,0.0,32.150463,1.0 +2024-04-09 01:00:00,8.256513,11.292918,73.101265,73.009094,26.65,1009.7043,0.0,26.700825,1.0 +2024-04-09 02:00:00,8.065358,10.756394,70.44166,69.88028,28.7,1009.75946,0.0,23.76763,1.0 +2024-04-09 03:00:00,7.615773,10.031949,66.80139,66.50142,30.6,1009.3141,0.0,21.011023,1.0 +2024-04-09 04:00:00,6.844706,8.810222,64.93257,63.725857,32.1,1008.56,0.0,18.69991,1.0 +2024-04-09 05:00:00,5.727128,7.201389,65.22488,64.502495,33.2,1007.39825,0.0,16.798273,1.0 +2024-04-09 06:00:00,4.661545,5.7775426,67.28555,66.54096,33.9,1006.7218,0.0,15.542978,1.0 +2024-04-09 07:00:00,3.2984846,4.401136,75.96373,68.68202,34.25,1006.1357,0.0,14.459437,1.0 +2024-04-09 08:00:00,2.2135942,3.026549,108.43504,97.59455,32.6,1005.9938,0.0,16.370846,1.0 +2024-04-09 09:00:00,3.306055,4.14367,183.46815,171.67444,31.2,1006.0561,0.0,20.515251,1.0 +2024-04-09 10:00:00,4.6173587,7.0405965,175.03035,168.5305,28.75,1006.289,0.0,30.179577,1.0 +2024-04-09 11:00:00,3.7443287,6.621933,145.88548,128.25447,28.05,1006.6668,0.0,23.596788,0.0 +2024-04-09 12:00:00,5.2000003,9.300537,112.61991,106.87635,28.1,1007.06494,0.0,21.262266,0.0 +2024-04-09 13:00:00,4.924429,8.949302,113.962494,108.23258,26.3,1007.71063,0.0,25.787266,0.0 +2024-04-09 14:00:00,5.80517,10.0841465,100.92277,97.40682,26.0,1007.70276,0.0,27.55423,0.0 +2024-04-09 15:00:00,7.200694,12.000417,90.79571,89.52256,25.85,1007.59937,0.0,28.97485,0.0 +2024-04-09 16:00:00,8.238932,13.086252,84.4279,83.41815,25.45,1007.1915,0.0,29.773003,0.0 +2024-04-09 17:00:00,8.5,13.595954,81.202675,80.26063,24.9,1007.0772,0.0,30.976473,0.0 +2024-04-09 18:00:00,8.94986,14.140014,76.42955,75.66889,24.3,1006.9616,0.0,32.329464,0.0 +2024-04-09 19:00:00,8.91852,14.135416,72.37762,71.436775,23.75,1007.1449,0.0,33.415195,0.0 +2024-04-09 20:00:00,8.28734,13.892804,70.253075,69.347336,23.15,1007.12805,0.0,34.885357,0.0 +2024-04-09 21:00:00,8.263776,13.76154,68.71353,67.34807,22.6,1007.50964,0.0,36.816574,0.0 +2024-04-09 22:00:00,8.207923,13.565028,67.80967,66.08039,22.1,1007.99164,0.0,38.60785,0.0 +2024-04-09 23:00:00,8.246211,13.514807,67.16631,65.52097,21.8,1008.2806,0.0,39.99764,1.0 +2024-04-10 00:00:00,7.9479556,12.369317,68.60013,67.16631,23.15,1008.8142,0.0,37.226242,1.0 +2024-04-10 01:00:00,8.300603,11.4057,58.799557,58.260902,25.65,1008.4864,0.0,32.48882,1.0 +2024-04-10 02:00:00,7.907591,10.484751,57.917847,57.067776,28.2,1008.65485,0.0,27.49489,1.0 +2024-04-10 03:00:00,7.017834,9.013878,57.215733,56.3099,30.6,1008.6196,0.0,23.214424,1.0 +2024-04-10 04:00:00,5.882177,7.5802374,54.688713,53.583534,32.5,1008.0744,0.0,19.999447,1.0 +2024-04-10 05:00:00,4.3011627,5.4405885,54.46224,53.972538,33.8,1007.31445,0.0,17.292189,1.0 +2024-04-10 06:00:00,1.9235383,2.640076,81.02746,65.37646,32.9,1006.79504,0.0,17.444904,1.0 +2024-04-10 07:00:00,3.026549,3.8052595,187.59456,176.98727,32.3,1006.48193,0.0,19.745308,1.0 +2024-04-10 08:00:00,6.152235,8.309633,187.47147,182.75905,30.4,1006.53125,0.0,30.331182,1.0 +2024-04-10 09:00:00,8.01561,11.801695,183.57626,180.971,27.8,1006.561,0.0,43.4772,1.0 +2024-04-10 10:00:00,8.13941,13.341664,169.3804,167.00539,26.2,1006.91455,0.0,43.889565,1.0 +2024-04-10 11:00:00,7.5610843,12.070211,159.88733,158.11038,25.25,1007.28534,0.0,46.7375,0.0 +2024-04-10 12:00:00,6.809552,11.027693,150.04648,149.48184,25.05,1007.478,0.0,45.62505,0.0 +2024-04-10 13:00:00,4.8754487,9.141664,115.513824,109.822556,25.4,1008.08307,0.0,35.885,0.0 +2024-04-10 14:00:00,6.5115285,11.047624,100.619606,99.37699,26.15,1008.20276,0.0,26.749456,0.0 +2024-04-10 15:00:00,7.1028166,11.90378,91.6135,91.44409,25.7,1007.8929,0.0,26.71936,0.0 +2024-04-10 16:00:00,7.5059977,12.410076,87.70944,87.69099,25.25,1007.58295,0.0,26.969883,0.0 +2024-04-10 17:00:00,7.6164293,12.625372,86.236046,86.36713,24.75,1007.4698,0.0,27.68933,0.0 +2024-04-10 18:00:00,7.7491937,12.459535,70.39582,71.27412,24.15,1007.7509,0.0,28.802225,0.0 +2024-04-10 19:00:00,7.4,11.926861,71.075264,69.893684,23.9,1007.744,0.0,29.339964,0.0 +2024-04-10 20:00:00,6.6098413,11.132834,72.38734,70.588425,23.2,1007.62555,0.0,30.711067,0.0 +2024-04-10 21:00:00,4.438468,8.810222,67.47939,63.725857,22.25,1008.0949,0.0,32.87379,0.0 +2024-04-10 22:00:00,2.9068882,6.7675695,63.435013,55.840256,21.5,1008.76825,0.0,35.016567,0.0 +2024-04-10 23:00:00,3.0675724,6.5863495,70.974304,59.93151,21.1,1009.0545,0.0,36.63989,1.0 +2024-04-11 00:00:00,4.2953463,8.21523,65.22488,58.43824,23.5,1009.4191,0.0,32.88803,1.0 +2024-04-11 01:00:00,3.5608988,4.9648767,38.157276,34.33027,26.15,1009.59143,0.0,33.751064,1.0 +2024-04-11 02:00:00,4.0249224,5.0089917,26.564985,26.053446,28.9,1009.46716,0.0,29.51899,1.0 +2024-04-11 03:00:00,3.4,4.118252,28.072395,29.054508,30.45,1009.11194,0.0,26.36906,1.0 +2024-04-11 04:00:00,1.2529964,1.7492856,61.389645,59.03632,31.2,1008.4371,0.0,23.770609,1.0 +2024-04-11 05:00:00,2.4186773,2.6076808,187.12492,175.60138,30.95,1007.9347,0.0,23.464584,1.0 +2024-04-11 06:00:00,5.0921507,6.4513564,199.50253,198.99675,29.15,1007.58905,0.0,36.458015,1.0 +2024-04-11 07:00:00,5.6921,7.4464755,198.43504,194.78278,28.4,1007.56915,0.0,39.600216,1.0 +2024-04-11 08:00:00,5.9439044,8.104937,192.63336,189.22981,27.85,1007.65344,0.0,39.7059,1.0 +2024-04-11 09:00:00,5.4589376,8.348653,188.42688,186.18852,26.45,1007.6154,0.0,44.6805,1.0 +2024-04-11 10:00:00,5.508176,9.11976,176.87793,176.2278,24.9,1007.9699,0.0,49.625324,1.0 +2024-04-11 11:00:00,4.554119,7.6844,160.76924,161.80075,24.3,1008.0527,0.0,47.094315,0.0 +2024-04-11 12:00:00,4.6238513,8.1541395,158.42863,156.89365,23.95,1008.4399,0.0,47.936207,0.0 +2024-04-11 13:00:00,3.6235344,6.8,152.02061,151.92761,23.2,1008.71655,0.0,54.78031,0.0 +2024-04-11 14:00:00,2.8071337,5.9539905,85.91447,97.72173,22.65,1008.8995,0.0,50.171417,0.0 +2024-04-11 15:00:00,3.0870697,6.5551505,65.09527,68.52315,22.2,1008.5896,0.0,45.44423,0.0 +2024-04-11 16:00:00,4.743417,8.736704,34.69522,33.326313,22.45,1008.29895,0.0,51.289326,0.0 +2024-04-11 17:00:00,5.1623635,9.406913,45.78474,43.707912,21.65,1008.27655,0.0,56.38802,0.0 +2024-04-11 18:00:00,5.481788,9.730879,51.666626,50.420635,21.2,1008.46216,0.0,58.344715,0.0 +2024-04-11 19:00:00,5.8137765,9.908582,49.185013,47.45408,20.6,1008.5443,0.0,61.13476,0.0 +2024-04-11 20:00:00,5.544367,9.501578,50.856018,49.267986,20.05,1008.5288,0.0,64.49903,0.0 +2024-04-11 21:00:00,5.220153,8.9810915,53.569054,52.236866,19.6,1009.012,0.0,65.89205,0.0 +2024-04-11 22:00:00,4.992995,8.875247,57.264786,56.48896,19.25,1009.29944,0.0,66.25006,0.0 +2024-04-11 23:00:00,4.5617976,8.453402,63.996716,62.525658,19.05,1009.5912,0.0,65.99125,1.0 +2024-04-12 00:00:00,4.4598203,6.9641943,70.346085,68.96242,20.85,1009.5434,0.0,58.06891,1.0 +2024-04-12 01:00:00,3.2449963,4.022437,146.3099,145.1246,22.65,1010.4864,0.0,55.90308,1.0 +2024-04-12 02:00:00,2.302173,2.828427,145.6196,135.0001,24.65,1010.2446,0.0,48.91702,1.0 +2024-04-12 03:00:00,2.1931713,2.8017852,136.8476,124.82456,26.55,1009.4038,0.0,42.29478,1.0 +2024-04-12 04:00:00,2.4839485,3.0610456,139.89915,128.36752,28.15,1008.0585,0.0,34.886356,1.0 +2024-04-12 05:00:00,3.0,3.9623227,143.13002,132.95459,29.05,1006.892,0.0,28.775433,1.0 +2024-04-12 06:00:00,3.1144822,4.2801867,132.39738,127.40543,29.2,1006.4002,0.0,28.144753,1.0 +2024-04-12 07:00:00,3.6013885,4.738143,178.40889,172.72508,28.35,1006.27826,0.0,31.096834,1.0 +2024-04-12 08:00:00,5.2201533,7.0213957,196.69933,190.66974,26.1,1006.3165,0.0,49.461967,1.0 +2024-04-12 09:00:00,4.4011364,5.9539905,181.30193,172.27826,26.55,1006.2296,0.0,44.7079,1.0 +2024-04-12 10:00:00,3.443835,5.3535037,154.17906,147.20047,24.85,1007.2743,0.0,49.935642,1.0 +2024-04-12 11:00:00,2.624881,4.3011627,162.25523,144.46223,24.3,1007.4575,0.0,52.450096,0.0 +2024-04-12 12:00:00,2.745906,5.2810984,123.11135,108.77813,23.95,1007.8447,0.0,44.875248,0.0 +2024-04-12 13:00:00,2.8160255,6.000833,96.11541,89.04518,22.15,1008.29034,0.0,48.727665,0.0 +2024-04-12 14:00:00,3.8470767,7.138627,81.02746,78.6901,21.75,1008.2794,0.0,51.444252,0.0 +2024-04-12 15:00:00,4.0199504,7.170077,84.2895,81.983,20.95,1008.25684,0.0,55.476986,0.0 +2024-04-12 16:00:00,4.3289723,7.5802374,83.367584,81.6562,20.1,1008.13336,0.0,58.462345,0.0 +2024-04-12 17:00:00,4.753946,8.296988,75.37909,74.623695,19.5,1007.8191,0.0,59.881832,0.0 +2024-04-12 18:00:00,5.0447993,8.80568,76.2392,74.85897,18.95,1007.8032,0.0,61.968445,0.0 +2024-04-12 19:00:00,5.0447993,8.70919,76.2392,74.687126,18.5,1007.49286,0.0,64.79767,0.0 +2024-04-12 20:00:00,4.707441,8.246211,77.735245,75.96373,18.05,1007.3807,0.0,68.20797,0.0 +2024-04-12 21:00:00,4.414748,7.981228,76.908104,74.74483,17.7,1007.4697,0.0,70.418,0.0 +2024-04-12 22:00:00,4.317406,7.858753,76.60749,75.25639,17.3,1007.55743,0.0,72.69415,0.0 +2024-04-12 23:00:00,4.244997,7.692204,74.98159,74.15685,17.2,1007.65375,0.0,73.155205,1.0 +2024-04-13 00:00:00,3.7854989,6.306346,77.79955,75.302635,19.2,1008.0086,0.0,64.10218,1.0 +2024-04-13 01:00:00,1.555635,2.0248458,135.0001,122.90524,21.7,1008.37695,0.0,58.656437,1.0 +2024-04-13 02:00:00,1.9416487,2.2472203,168.11136,159.14546,23.8,1008.53467,0.0,50.973564,1.0 +2024-04-13 03:00:00,2.9120438,3.3376637,195.94547,188.61557,25.0,1008.2704,0.0,45.164314,1.0 +2024-04-13 04:00:00,4.118252,4.701064,209.0545,203.83875,25.3,1007.6835,0.1,44.803677,1.0 +2024-04-13 05:00:00,6.046487,7.4094534,214.21576,211.75943,24.45,1007.2632,0.0,53.00107,1.0 +2024-04-13 06:00:00,6.306346,8.005623,207.37762,205.92485,24.3,1007.16,0.0,52.450096,1.0 +2024-04-13 07:00:00,6.074537,7.558439,200.22495,197.71588,24.25,1007.2579,0.0,51.76057,1.0 +2024-04-13 08:00:00,5.9665737,7.5504966,193.57045,191.45872,23.75,1007.244,0.0,54.74124,1.0 +2024-04-13 09:00:00,6.1188235,8.121576,191.30989,189.92618,22.7,1007.5124,0.0,60.82871,1.0 +2024-04-13 10:00:00,5.6008925,7.9,181.02301,180.0,21.5,1008.1732,0.0,68.455284,1.0 +2024-04-13 11:00:00,4.9819674,7.766595,169.59235,168.11136,21.0,1008.7541,0.0,71.955956,0.0 +2024-04-13 12:00:00,4.4271884,7.4632435,161.56496,162.0505,20.6,1009.2385,0.0,73.74906,0.0 +2024-04-13 13:00:00,4.4777226,7.5769386,156.29735,157.49643,20.15,1009.821,0.0,75.102165,0.0 +2024-04-13 14:00:00,4.609772,7.930952,155.65892,156.9911,20.0,1010.0149,0.0,78.26386,0.0 +2024-04-13 15:00:00,4.3829217,7.6967525,152.8504,155.43285,19.85,1010.10986,0.0,81.54951,0.0 +2024-04-13 16:00:00,3.4205263,6.6287255,142.12495,146.07016,19.3,1009.995,0.0,83.84878,0.0 +2024-04-13 17:00:00,2.9154758,6.1032777,120.96369,124.992096,18.6,1009.8757,0.0,81.91302,0.0 +2024-04-13 18:00:00,2.7658634,6.356099,102.5288,102.72436,18.3,1009.86725,0.0,72.636055,0.0 +2024-04-13 19:00:00,2.8160255,6.7029843,96.11541,91.70978,18.3,1009.76807,0.0,62.85335,0.0 +2024-04-13 20:00:00,2.8,6.7,90.0,90.0,18.05,1010.0583,0.0,61.14687,0.0 +2024-04-13 21:00:00,3.0,6.8,90.0,90.0,17.65,1010.146,0.0,61.462677,0.0 +2024-04-13 22:00:00,3.214032,7.1112585,84.644264,86.77554,17.25,1010.6301,0.0,62.614475,0.0 +2024-04-13 23:00:00,3.522783,7.5166483,83.48029,86.186005,17.2,1011.0255,0.0,62.603054,1.0 +2024-04-14 00:00:00,3.7121422,7.8230433,85.364624,85.60138,19.55,1011.7874,0.0,54.390793,1.0 +2024-04-14 01:00:00,2.84605,3.905125,108.43504,103.32455,22.5,1012.5652,0.0,46.603024,1.0 +2024-04-14 02:00:00,3.3941126,4.3416586,135.0001,128.45374,25.1,1012.34,0.0,36.408615,1.0 +2024-04-14 03:00:00,4.14367,5.2325897,160.25307,153.9247,26.45,1012.1784,0.0,29.847134,1.0 +2024-04-14 04:00:00,4.7095647,5.903389,176.34785,169.26115,26.95,1011.597,0.0,29.884218,1.0 +2024-04-14 05:00:00,5.903389,7.532596,190.73885,185.33206,26.85,1010.8008,0.0,35.103706,1.0 +2024-04-14 06:00:00,7.8339005,10.27716,194.03627,190.65385,26.15,1010.2858,0.0,38.20253,1.0 +2024-04-14 07:00:00,8.276473,10.834205,191.85298,189.02754,25.25,1010.3602,0.0,43.483814,1.0 +2024-04-14 08:00:00,8.438008,11.328283,185.44025,184.0495,24.35,1010.4345,0.0,44.68935,1.0 +2024-04-14 09:00:00,7.6164293,10.530432,176.23604,175.64311,23.45,1010.4098,0.0,51.720596,1.0 +2024-04-14 10:00:00,6.7896976,10.1789,170.67648,169.24208,22.6,1010.88196,0.0,57.737965,1.0 +2024-04-14 11:00:00,6.360031,9.849365,163.55954,164.6938,21.65,1011.54956,0.0,62.17811,0.0 +2024-04-14 12:00:00,5.99333,9.716995,154.2901,156.33685,21.4,1012.0384,0.0,61.71934,0.0 +2024-04-14 13:00:00,5.6462374,9.247703,157.06787,158.42863,20.65,1012.7113,0.0,70.29452,0.0 +2024-04-14 14:00:00,4.830114,8.458132,152.90453,155.55606,20.15,1012.6971,0.0,75.34295,0.0 +2024-04-14 15:00:00,3.8013155,7.1021123,144.63745,147.65259,19.45,1012.3796,0.0,77.93277,0.0 +2024-04-14 16:00:00,3.1144822,6.360031,137.60262,143.31018,18.7,1011.66364,0.0,75.83663,0.0 +2024-04-14 17:00:00,3.1384711,6.7201195,120.65059,126.528946,18.1,1011.44824,0.0,71.190285,0.0 +2024-04-14 18:00:00,3.4014702,7.56439,114.30454,114.19321,18.4,1011.35767,0.0,58.632668,0.0 +2024-04-14 19:00:00,3.956008,8.420215,106.14441,105.852,18.8,1010.87317,0.0,51.87377,0.0 +2024-04-14 20:00:00,4.1773195,8.570297,101.0409,101.44101,18.8,1010.97235,0.0,52.57923,0.0 +2024-04-14 21:00:00,4.2107005,8.528774,94.08554,94.70777,18.45,1011.1609,0.0,54.841087,0.0 +2024-04-14 22:00:00,4.4,8.8,90.0,90.0,18.15,1011.6479,0.0,56.83033,0.0 +2024-04-14 23:00:00,4.9162993,9.319335,85.33323,86.308685,18.15,1012.2429,0.0,57.79207,1.0 +2024-04-15 00:00:00,5.0089917,10.1242285,86.56644,86.03542,20.35,1012.9012,0.0,51.244812,1.0 +2024-04-15 01:00:00,5.3009434,7.300685,91.0809,90.78481,23.55,1012.99133,0.0,42.01608,1.0 +2024-04-15 02:00:00,5.2153616,6.8117547,94.39862,93.366394,26.3,1012.86865,0.0,35.184097,1.0 +2024-04-15 03:00:00,4.9648767,6.363961,99.27253,98.13002,28.15,1012.32404,0.0,29.611229,1.0 +2024-04-15 04:00:00,3.9661064,5.0990195,123.6901,115.55992,28.95,1011.552,0.0,27.512077,1.0 +2024-04-15 05:00:00,3.5846896,4.9406476,149.8587,144.0578,29.2,1010.4674,0.0,27.209084,1.0 +2024-04-15 06:00:00,3.794733,5.456189,161.56496,153.90463,29.65,1009.88434,0.0,25.539822,1.0 +2024-04-15 07:00:00,4.8010416,6.576473,178.80653,171.25392,29.45,1009.38293,0.0,27.929153,1.0 +2024-04-15 08:00:00,6.4070277,9.019978,182.68372,176.186,27.6,1009.53156,0.0,42.447083,1.0 +2024-04-15 09:00:00,7.5,10.837436,180.0,175.23645,25.95,1009.68494,0.0,52.704956,1.0 +2024-04-15 10:00:00,7.3552704,12.757743,172.9717,170.98076,23.15,1010.2028,0.0,59.1935,1.0 +2024-04-15 11:00:00,7.3054776,11.637869,160.82089,160.9422,22.95,1010.69336,0.0,60.495827,0.0 +2024-04-15 12:00:00,6.356886,10.568822,160.70985,159.50732,22.8,1010.68915,0.0,62.83946,0.0 +2024-04-15 13:00:00,4.750789,8.438009,149.65683,148.57048,22.25,1011.0704,0.0,62.918983,0.0 +2024-04-15 14:00:00,3.4713109,7.465253,131.49637,129.0194,21.85,1010.96,0.0,56.994083,0.0 +2024-04-15 15:00:00,3.4669871,7.823043,123.23173,122.471176,22.05,1010.76715,0.0,41.734608,0.0 +2024-04-15 16:00:00,4.1231055,8.600581,112.833694,113.28609,22.25,1010.27686,0.0,39.048065,0.0 +2024-04-15 17:00:00,4.3324356,8.6977005,108.85326,109.47667,21.75,1010.1639,0.0,40.94814,0.0 +2024-04-15 18:00:00,4.464303,9.024965,105.59287,105.42222,21.35,1010.2515,0.0,41.962708,0.0 +2024-04-15 19:00:00,4.5891175,9.159148,101.3099,100.696465,20.95,1010.0421,0.0,42.71393,0.0 +2024-04-15 20:00:00,4.8093657,9.408506,93.57626,92.4366,20.65,1010.2319,0.0,43.80689,0.0 +2024-04-15 21:00:00,5.3009434,10.201961,91.0809,88.876724,20.55,1010.3283,0.0,45.599586,0.0 +2024-04-15 22:00:00,6.0074954,11.02225,87.13766,86.35889,20.5,1010.7233,0.0,47.955727,0.0 +2024-04-15 23:00:00,6.8264194,12.050311,84.95764,84.76262,20.5,1010.8225,0.0,49.429367,1.0 +2024-04-16 00:00:00,6.6272163,13.263861,84.805664,84.375465,22.3,1011.17084,0.0,44.86684,1.0 +2024-04-16 01:00:00,6.902898,9.508417,88.33975,87.58903,25.2,1011.05304,0.0,37.555244,1.0 +2024-04-16 02:00:00,6.2,8.20061,90.0,89.30132,27.85,1011.0262,0.0,32.016113,1.0 +2024-04-16 03:00:00,5.115662,6.7007456,94.48453,90.85508,30.3,1010.3974,0.0,27.414639,1.0 +2024-04-16 04:00:00,3.4176016,4.472136,110.55613,100.30479,32.15,1009.4542,0.0,24.099112,1.0 +2024-04-16 05:00:00,2.4166093,2.8999999,155.55606,133.60289,32.7,1008.179,0.0,21.908499,1.0 +2024-04-16 06:00:00,5.059644,6.258594,198.43504,192.926,32.3,1007.57324,0.0,27.678234,1.0 +2024-04-16 07:00:00,6.315061,8.895505,190.95403,188.40329,30.7,1007.432,0.0,36.06228,1.0 +2024-04-16 08:00:00,6.926038,10.4043255,184.96965,181.65227,29.45,1007.49805,0.0,40.020763,1.0 +2024-04-16 09:00:00,7.7162166,12.6,183.71521,180.0,27.4,1007.443,0.0,46.863335,1.0 +2024-04-16 10:00:00,7.1847057,14.1014185,171.19328,168.1323,25.9,1007.9975,0.0,50.050884,1.0 +2024-04-16 11:00:00,6.706713,11.200892,159.94382,159.62347,26.2,1008.3033,0.0,42.75511,0.0 +2024-04-16 12:00:00,4.8600416,9.002777,143.3658,139.05365,26.35,1008.60486,0.0,42.796654,0.0 +2024-04-16 13:00:00,5.5803227,10.36002,126.25393,126.75938,27.25,1009.22455,0.0,29.86589,0.0 +2024-04-16 14:00:00,6.0835843,10.688779,115.301346,116.08554,27.45,1009.3291,0.0,26.826302,0.0 +2024-04-16 15:00:00,6.7446275,11.621101,105.4787,105.47139,27.35,1009.3265,0.0,26.61547,0.0 +2024-04-16 16:00:00,7.106335,12.010412,92.41946,92.385895,27.1,1009.3195,0.0,27.101597,0.0 +2024-04-16 17:00:00,7.1175838,12.033703,85.97182,85.71093,26.75,1009.31,0.0,28.63061,0.0 +2024-04-16 18:00:00,7.21734,12.149898,86.02759,84.805664,26.3,1009.4961,0.0,30.630568,0.0 +2024-04-16 19:00:00,7.665507,12.788276,82.50424,83.264084,25.9,1009.58453,0.0,33.228012,0.0 +2024-04-16 20:00:00,7.7781744,12.742449,81.86999,81.42486,25.35,1009.8668,0.0,35.991825,0.0 +2024-04-16 21:00:00,7.9762144,13.152946,82.073166,81.25392,24.85,1009.8532,0.0,37.582375,0.0 +2024-04-16 22:00:00,8.2,13.341664,77.319626,77.00539,24.7,1010.2459,0.0,37.920563,0.0 +2024-04-16 23:00:00,7.9831076,13.146863,77.70475,76.80939,24.3,1010.6316,0.0,38.97,1.0 +2024-04-17 00:00:00,7.8262377,13.140015,79.69521,79.03217,25.6,1011.06415,0.0,36.06251,1.0 +2024-04-17 01:00:00,8.1024685,11.447707,77.16439,75.84234,28.65,1011.1469,0.0,30.559566,1.0 +2024-04-17 02:00:00,7.7491937,10.475209,70.39582,69.31584,30.95,1011.2085,0.0,27.406343,1.0 +2024-04-17 03:00:00,7.169379,9.518929,59.8587,58.313683,33.05,1010.86694,0.0,24.99252,1.0 +2024-04-17 04:00:00,6.0207973,7.7833157,48.366554,47.082573,35.1,1010.1261,0.0,22.893602,1.0 +2024-04-17 05:00:00,4.022437,5.060632,55.1246,52.22426,36.25,1008.9649,0.0,20.302536,1.0 +2024-04-17 06:00:00,3.794733,4.753946,71.564964,67.75093,36.45,1008.1765,0.0,19.418783,1.0 +2024-04-17 07:00:00,4.2720017,5.515433,69.44387,67.61982,36.6,1008.1803,0.0,18.372492,1.0 +2024-04-17 08:00:00,4.8332186,6.441273,24.443953,27.758451,34.2,1008.714,0.0,23.046875,1.0 +2024-04-17 09:00:00,3.8639357,5.661272,10.437421,17.474865,32.85,1008.9764,0.0,23.638346,1.0 +2024-04-17 10:00:00,2.385372,3.8832977,56.976128,34.50859,29.95,1009.19775,0.0,27.504627,1.0 +2024-04-17 11:00:00,1.4560219,3.9357338,105.945465,62.783974,28.15,1009.7449,0.0,30.01377,0.0 +2024-04-17 12:00:00,1.8248286,5.0089917,80.53775,63.946568,27.5,1010.2231,0.0,30.138693,0.0 +2024-04-17 13:00:00,2.184033,5.565968,74.054535,72.21602,26.4,1010.78845,0.0,31.503801,0.0 +2024-04-17 14:00:00,3.7,8.000625,71.075264,71.79142,27.2,1011.20715,0.0,28.951534,0.0 +2024-04-17 15:00:00,5.5461698,10.335377,64.35905,61.69934,27.6,1011.1187,0.0,29.861567,0.0 +2024-04-17 16:00:00,5.3,9.683491,58.10924,54.66859,27.45,1011.21387,0.0,31.371677,0.0 +2024-04-17 17:00:00,5.161395,9.577578,54.46224,49.658333,26.65,1011.09296,0.0,32.991608,0.0 +2024-04-17 18:00:00,5.0447993,9.411164,50.630707,47.152977,26.15,1011.1786,0.0,33.865078,0.0 +2024-04-17 19:00:00,4.661545,8.711487,54.605125,48.25731,25.45,1011.25836,0.0,35.06227,0.0 +2024-04-17 20:00:00,5.0921507,9.099999,70.49747,67.3801,24.35,1011.92236,0.0,37.063416,0.0 +2024-04-17 21:00:00,5.283938,9.552486,60.524208,59.13918,24.0,1012.2103,0.0,37.46796,0.0 +2024-04-17 22:00:00,5.9464273,10.381715,70.346085,69.12091,23.5,1012.5931,0.0,38.612553,0.0 +2024-04-17 23:00:00,6.462198,11.108555,68.19853,66.66594,23.4,1013.0861,0.0,39.242107,1.0 +2024-04-18 00:00:00,6.5,12.300406,67.3801,64.476616,25.2,1013.43365,0.0,35.34808,1.0 +2024-04-18 01:00:00,7.1021123,10.095543,57.652576,56.3099,28.45,1013.6215,0.0,26.549034,1.0 +2024-04-18 02:00:00,6.8883963,9.360556,50.300972,49.332397,31.05,1013.7904,0.0,20.336678,1.0 +2024-04-18 03:00:00,6.438167,8.354639,43.111843,42.08909,33.25,1013.1538,0.0,16.86847,1.0 +2024-04-18 04:00:00,5.3814497,6.794115,41.98713,42.614033,34.6,1012.3953,0.0,16.085367,1.0 +2024-04-18 05:00:00,4.2801867,5.3413477,52.594578,51.842735,35.45,1011.5243,0.0,15.560107,1.0 +2024-04-18 06:00:00,3.3615472,4.428318,67.24899,64.59232,35.8,1010.7395,0.0,14.8958025,1.0 +2024-04-18 07:00:00,2.1213202,2.745906,135.0001,123.11135,34.5,1010.4085,0.0,15.56698,1.0 +2024-04-18 08:00:00,4.604346,6.512296,182.4895,183.52138,32.75,1010.46204,0.0,23.93206,1.0 +2024-04-18 09:00:00,5.4332314,8.429115,186.3401,184.76355,30.75,1010.4095,0.0,31.139168,1.0 +2024-04-18 10:00:00,5.2153616,8.914033,184.39862,183.21542,28.15,1010.63763,0.0,39.91944,1.0 +2024-04-18 11:00:00,4.464303,8.041144,164.40714,158.8601,27.5,1011.3142,0.0,39.09184,0.0 +2024-04-18 12:00:00,4.8877397,8.405355,149.23735,145.17545,27.2,1011.7031,0.0,35.2021,0.0 +2024-04-18 13:00:00,3.9824615,8.19329,118.495544,109.98319,26.9,1012.29004,0.0,23.788694,0.0 +2024-04-18 14:00:00,5.3150725,9.831073,101.94416,99.36644,26.95,1012.2914,0.0,23.14479,0.0 +2024-04-18 15:00:00,5.9,10.401922,90.0,88.89832,26.45,1012.07916,0.0,23.669632,0.0 +2024-04-18 16:00:00,6.363961,10.903669,81.86999,82.09293,25.9,1011.86597,0.0,24.366055,0.0 +2024-04-18 17:00:00,6.6940274,11.350771,76.171326,75.71888,25.35,1011.9499,0.0,25.086264,0.0 +2024-04-18 18:00:00,7.083784,11.798729,71.053406,70.18276,24.7,1012.0313,0.0,25.894823,0.0 +2024-04-18 19:00:00,7.291776,11.985408,64.84074,63.22123,23.9,1011.81067,0.0,25.95053,0.0 +2024-04-18 20:00:00,7.111962,12.093387,62.354122,60.255207,23.1,1012.1852,0.0,24.654451,0.0 +2024-04-18 21:00:00,7.0830784,12.010829,59.45251,57.236126,22.35,1012.4618,0.0,23.671524,0.0 +2024-04-18 22:00:00,6.774216,11.676472,58.89126,56.1738,21.65,1012.7397,0.0,24.174143,0.0 +2024-04-18 23:00:00,6.6241984,11.576268,61.113514,58.781662,21.1,1013.12085,0.0,25.275236,1.0 +2024-04-19 00:00:00,6.5299315,11.8207445,62.65021,60.61595,22.45,1013.5557,0.0,24.042313,1.0 +2024-04-19 01:00:00,7.4060783,10.32279,55.451576,54.46224,24.55,1013.3166,0.0,24.695204,1.0 +2024-04-19 02:00:00,7.140028,9.481033,52.969524,52.283966,26.8,1013.2791,0.0,21.230288,1.0 +2024-04-19 03:00:00,6.438167,8.275868,46.888172,46.468742,28.6,1013.0305,0.0,17.295427,1.0 +2024-04-19 04:00:00,5.1662364,6.5115285,47.353336,47.489597,29.95,1012.37225,0.0,14.672955,1.0 +2024-04-19 05:00:00,4.060788,4.9819674,52.001225,51.51978,30.95,1011.4069,0.0,13.169586,1.0 +2024-04-19 06:00:00,3.0870697,3.9824615,65.09527,61.504463,31.5,1010.6275,0.0,12.306226,1.0 +2024-04-19 07:00:00,2.1213202,2.745906,135.0001,123.11135,30.75,1010.4095,0.0,12.796727,1.0 +2024-04-19 08:00:00,4.609772,6.000833,183.73132,180.95482,29.25,1010.36957,0.0,21.183073,1.0 +2024-04-19 09:00:00,5.414795,8.000625,184.23631,180.71614,27.05,1010.80615,0.0,34.34735,1.0 +2024-04-19 10:00:00,5.0039983,8.505292,182.29056,177.97868,24.75,1011.04065,0.0,51.722786,1.0 +2024-04-19 11:00:00,4.2201896,7.7077885,166.29301,157.0942,24.2,1011.52136,0.0,48.79662,0.0 +2024-04-19 12:00:00,4.0718546,7.653757,155.32315,151.09091,23.55,1011.8011,0.0,37.213543,0.0 +2024-04-19 13:00:00,2.7802877,5.8523498,127.694305,123.14701,21.8,1012.5454,0.0,33.553947,0.0 +2024-04-19 14:00:00,3.0,7.017834,90.0,85.91447,21.2,1012.72687,0.0,23.193008,0.0 +2024-04-19 15:00:00,4.295346,8.697701,77.90526,81.404175,21.65,1012.5414,0.0,22.39857,0.0 +2024-04-19 16:00:00,4.341659,8.448076,82.056625,83.88459,21.45,1012.23804,0.0,22.674347,0.0 +2024-04-19 17:00:00,4.539824,8.811923,82.40546,80.85844,21.0,1012.02704,0.0,23.394102,0.0 +2024-04-19 18:00:00,4.883646,9.276314,79.380394,78.81124,20.55,1012.1135,0.0,24.138947,0.0 +2024-04-19 19:00:00,5.440588,10.245975,72.89719,71.21129,20.3,1012.1062,0.0,24.87402,0.0 +2024-04-19 20:00:00,5.8309517,10.7354555,67.83361,64.62848,20.15,1012.102,0.0,26.223598,0.0 +2024-04-19 21:00:00,6.0008335,11.001818,66.425285,62.969223,19.95,1012.2946,0.0,28.43376,0.0 +2024-04-19 22:00:00,6.0008335,11.047625,66.425285,62.507256,19.7,1012.4861,0.0,30.255106,0.0 +2024-04-19 23:00:00,6.1326995,11.141365,65.94266,61.594852,19.55,1012.8783,0.0,31.199362,1.0 +2024-04-20 00:00:00,6.397656,12.193851,65.03724,59.439243,21.5,1013.42975,0.0,27.862434,1.0 +2024-04-20 01:00:00,6.5,9.349332,59.48984,57.66984,24.55,1013.6142,0.0,24.090496,1.0 +2024-04-20 02:00:00,6.481512,8.60523,51.89238,51.132217,27.3,1013.4912,0.0,20.253574,1.0 +2024-04-20 03:00:00,6.0108232,7.7103825,44.326046,43.423504,29.8,1013.0626,0.0,17.269264,1.0 +2024-04-20 04:00:00,4.7201695,5.882177,36.38445,35.311302,31.4,1012.1131,0.0,14.831011,1.0 +2024-04-20 05:00:00,2.4698176,3.0528674,31.75944,31.607454,32.1,1011.23865,0.0,13.603474,1.0 +2024-04-20 06:00:00,0.70710677,1.1661904,98.13002,59.03632,32.15,1010.3471,0.0,13.274772,1.0 +2024-04-20 07:00:00,2.5019991,2.7073975,182.29056,175.76369,31.55,1010.0339,0.0,14.1357565,1.0 +2024-04-20 08:00:00,5.346027,7.170077,187.52373,188.017,29.9,1009.9902,0.0,23.755396,1.0 +2024-04-20 09:00:00,6.200806,9.10055,180.92403,180.62958,28.05,1010.3372,0.0,27.174374,1.0 +2024-04-20 10:00:00,6.530697,10.621205,168.51804,171.33595,25.8,1010.9704,0.0,29.973196,0.0 +2024-04-20 11:00:00,5.420332,9.4371605,150.1241,154.24957,25.2,1011.64825,0.0,27.429575,0.0 +2024-04-20 12:00:00,4.90408,8.962701,140.79282,144.53656,24.45,1012.1235,0.0,28.190561,0.0 +2024-04-20 13:00:00,5.4037023,9.741663,141.009,144.18875,23.3,1011.8934,0.0,32.046333,0.0 +2024-04-20 14:00:00,4.604346,8.668333,124.3804,129.3824,22.35,1011.66833,0.0,32.22273,0.0 +2024-04-20 15:00:00,3.1320918,6.9570107,106.699326,108.43504,20.75,1011.42487,0.0,30.880793,0.0 +2024-04-20 16:00:00,3.1064448,7.2993145,86.308685,80.53775,20.1,1011.2078,0.0,24.281572,0.0 +2024-04-20 17:00:00,3.9217343,8.616263,70.640915,68.19853,21.05,1011.1356,0.0,20.206993,0.0 +2024-04-20 18:00:00,4.4777226,8.9,66.29735,64.010826,21.0,1010.83685,0.0,20.571634,0.0 +2024-04-20 19:00:00,4.4777226,8.5,66.29735,64.94241,20.65,1010.43024,0.0,21.570147,0.0 +2024-04-20 20:00:00,4.588028,8.672947,69.59004,69.057274,19.85,1010.4074,0.0,23.169888,0.0 +2024-04-20 21:00:00,4.661545,8.955445,67.28555,66.29735,19.35,1010.59155,0.0,24.343998,0.0 +2024-04-20 22:00:00,4.9193497,9.158603,63.435013,58.392544,19.15,1010.68494,0.0,25.105392,0.0 +2024-04-20 23:00:00,5.3235326,9.7652445,61.99092,55.0079,19.1,1010.98096,0.0,25.742975,1.0 +2024-04-21 00:00:00,5.866856,10.080179,60.376347,53.471054,21.4,1011.7408,0.0,23.077967,1.0 +2024-04-21 01:00:00,5.3,8.9810915,58.10924,52.236866,25.0,1011.54364,0.0,20.770092,1.0 +2024-04-21 02:00:00,5.517246,7.224957,43.53127,41.63345,28.3,1011.73267,0.0,17.41126,1.0 +2024-04-21 03:00:00,5.011986,6.26099,28.610369,26.564985,30.4,1011.39233,0.0,14.878434,1.0 +2024-04-21 04:00:00,2.7073975,3.4,355.76367,360.0,31.55,1010.4307,0.0,12.866983,1.0 +2024-04-21 05:00:00,3.4539833,3.794733,247.8905,251.56496,30.55,1009.70966,0.0,17.445461,1.0 +2024-04-21 06:00:00,6.0605283,7.988116,232.3737,235.71307,28.85,1009.0691,0.0,26.839134,1.0 +2024-04-21 07:00:00,5.879626,8.091971,228.44748,230.01317,27.9,1009.04346,0.0,28.751698,1.0 +2024-04-21 08:00:00,4.8414874,6.96563,218.2902,219.17365,26.9,1009.215,0.0,31.536839,1.0 +2024-04-21 09:00:00,4.215448,6.2393913,202.30626,201.63095,25.2,1009.466,0.0,44.191433,1.0 +2024-04-21 10:00:00,3.6055512,6.307139,183.17976,182.72626,23.35,1009.81177,0.0,54.28627,0.0 +2024-04-21 11:00:00,3.640055,7.138627,164.05453,168.69011,22.35,1010.1806,0.0,57.865013,0.0 +2024-04-21 12:00:00,3.640055,7.495332,164.05453,166.8908,21.9,1010.5647,0.0,57.755676,0.0 +2024-04-21 13:00:00,3.4132097,7.5591,148.17259,152.41806,21.1,1010.74054,0.0,60.259686,0.0 +2024-04-21 14:00:00,3.0,7.03278,143.13002,150.15416,20.3,1010.8169,0.0,64.13417,0.0 +2024-04-21 15:00:00,3.0413814,7.060453,133.66785,142.48082,19.9,1010.6074,0.0,60.373184,0.0 +2024-04-21 16:00:00,2.5806975,6.3812227,144.46223,147.80429,19.25,1010.4895,0.0,54.313606,0.0 +2024-04-21 17:00:00,2.745906,6.574192,146.88864,153.82477,18.8,1010.4765,0.0,51.003708,0.0 +2024-04-21 18:00:00,2.7018511,6.618912,141.009,153.0479,18.35,1010.36426,0.0,51.578934,0.0 +2024-04-21 19:00:00,2.4839485,6.046487,130.10085,145.78424,17.65,1010.2452,0.0,51.042282,0.0 +2024-04-21 20:00:00,2.6627054,6.5924196,145.71307,157.71437,17.35,1010.13715,0.0,51.311504,0.0 +2024-04-21 21:00:00,3.2202482,7.209022,143.84172,156.2796,17.4,1010.2379,0.0,56.451057,0.0 +2024-04-21 22:00:00,3.7013512,7.6059184,141.58191,151.75037,17.2,1010.728,0.0,62.39395,0.0 +2024-04-21 23:00:00,4.404543,8.352844,140.52757,148.21278,17.1,1011.22076,0.0,63.848362,1.0 +2024-04-22 00:00:00,4.661545,8.682165,144.60512,147.22513,18.8,1011.9641,0.0,56.61268,1.0 +2024-04-22 01:00:00,6.5795135,8.99611,155.77226,155.71419,21.0,1012.72125,0.0,59.259262,1.0 +2024-04-22 02:00:00,6.926038,9.2358,162.3498,160.38782,23.35,1012.6882,0.0,50.027737,1.0 +2024-04-22 03:00:00,7.7278714,10.163661,169.56258,166.92087,25.3,1012.2462,0.0,39.383232,1.0 +2024-04-22 04:00:00,8.21523,10.6794195,176.51074,173.00816,26.0,1011.37286,0.0,40.10765,1.0 +2024-04-22 05:00:00,8.600582,11.116204,179.33382,176.906,26.2,1010.3863,0.0,43.603493,1.0 +2024-04-22 06:00:00,9.002222,11.90168,181.273,179.03716,25.75,1009.8779,0.0,49.051006,1.0 +2024-04-22 07:00:00,9.104944,12.220065,178.11185,176.7162,25.05,1009.6602,0.0,52.64336,1.0 +2024-04-22 08:00:00,9.008884,12.233151,177.45525,175.78099,24.15,1009.9331,0.0,60.002193,1.0 +2024-04-22 09:00:00,8.945389,12.379419,174.22577,173.50658,22.7,1010.19037,0.0,67.39415,1.0 +2024-04-22 10:00:00,8.492938,12.614675,167.7639,167.1756,21.2,1010.545,0.0,77.69864,0.0 +2024-04-22 11:00:00,8.381527,12.712986,162.64589,162.13506,20.8,1011.0295,0.0,78.629776,0.0 +2024-04-22 12:00:00,8.000625,12.364869,161.79143,161.12535,20.9,1011.62744,0.0,75.225365,0.0 +2024-04-22 13:00:00,7.3006845,11.240107,156.59529,156.3998,20.6,1012.6106,0.0,70.73845,0.0 +2024-04-22 14:00:00,6.2769423,10.084641,149.34941,149.62096,20.7,1012.71265,0.0,61.962086,0.0 +2024-04-22 15:00:00,7.093659,11.248555,139.574,136.80113,21.15,1012.72534,0.0,46.54356,0.0 +2024-04-22 16:00:00,7.0724816,10.912378,133.85432,131.2846,20.25,1012.79913,0.0,51.218254,0.0 +2024-04-22 17:00:00,6.981404,10.7415085,128.019,125.90981,19.4,1013.1714,0.0,53.449497,0.0 +2024-04-22 18:00:00,6.742403,10.515226,125.340195,122.17863,18.85,1013.1558,0.0,54.210453,0.0 +2024-04-22 19:00:00,6.87968,10.617438,122.53506,119.945595,18.35,1013.14105,0.0,55.00036,0.0 +2024-04-22 20:00:00,7.071068,11.0923395,118.7397,115.64096,17.65,1013.2203,0.0,56.32364,0.0 +2024-04-22 21:00:00,7.03278,10.956734,119.84584,116.56499,17.15,1013.89984,0.0,56.963604,0.0 +2024-04-22 22:00:00,6.860029,10.599056,120.67721,116.323235,16.75,1014.384,0.0,57.444878,0.0 +2024-04-22 23:00:00,6.708204,10.584895,116.56499,112.20353,16.5,1014.77325,0.0,57.96995,1.0 +2024-04-23 00:00:00,6.7535176,9.716995,117.323814,113.663155,17.3,1014.9951,0.0,54.544827,1.0 +2024-04-23 01:00:00,8.440379,11.747766,103.706985,101.78816,18.45,1014.5328,0.0,48.044724,1.0 +2024-04-23 02:00:00,8.1024685,10.983624,102.83562,100.491425,20.55,1014.49384,0.0,40.606655,1.0 +2024-04-23 03:00:00,7.7278714,10.40865,100.43742,98.28571,22.45,1013.8533,0.0,35.046265,1.0 +2024-04-23 04:00:00,7.3979726,9.873197,99.33492,96.980965,24.1,1013.1059,0.0,31.179583,1.0 +2024-04-23 05:00:00,6.9720874,9.144398,98.24623,95.648155,25.75,1012.15936,0.0,28.062147,1.0 +2024-04-23 06:00:00,6.576473,8.670064,98.74608,97.28886,26.55,1011.18933,0.0,26.306942,1.0 +2024-04-23 07:00:00,6.530697,8.614523,101.48196,99.352905,27.05,1010.80615,0.0,24.931755,1.0 +2024-04-23 08:00:00,6.2361846,8.440379,105.81926,103.706985,26.65,1010.7954,0.0,25.172771,1.0 +2024-04-23 09:00:00,5.9464273,8.477028,109.653915,107.15251,26.05,1010.9773,0.0,25.719608,1.0 +2024-04-23 10:00:00,5.4708314,8.631338,120.78408,116.86185,25.1,1011.3481,0.0,27.022814,0.0 +2024-04-23 11:00:00,5.6824293,9.087354,118.36895,114.02651,24.65,1012.1292,0.0,27.37357,0.0 +2024-04-23 12:00:00,6.3890533,10.113852,107.30062,104.31108,24.4,1012.41986,0.0,27.496336,0.0 +2024-04-23 13:00:00,6.6219335,10.825895,104.87573,101.72509,23.55,1012.39624,0.0,29.54979,0.0 +2024-04-23 14:00:00,7.5538073,12.440257,96.84268,94.610565,23.2,1012.18805,0.0,30.180603,0.0 +2024-04-23 15:00:00,7.902531,13.109539,88.54982,87.81425,22.3,1012.06354,0.0,31.984764,0.0 +2024-04-23 16:00:00,8.139411,12.975746,84.35954,83.8062,21.85,1011.8527,0.0,32.64554,0.0 +2024-04-23 17:00:00,7.8230433,12.457929,85.60138,84.47256,21.15,1011.9319,0.0,34.19381,0.0 +2024-04-23 18:00:00,8.009994,12.725172,87.13766,86.39566,20.5,1011.7151,0.0,35.837994,0.0 +2024-04-23 19:00:00,7.940403,12.776933,84.217705,83.70943,19.9,1011.5992,0.0,37.32202,0.0 +2024-04-23 20:00:00,7.9762144,12.856516,82.073166,81.05062,19.35,1011.68243,0.0,38.618496,0.0 +2024-04-23 21:00:00,7.891768,12.675173,81.25392,80.46344,19.05,1011.8722,0.0,39.760098,0.0 +2024-04-23 22:00:00,7.8262377,12.551495,79.69521,78.511055,19.0,1012.069,0.0,40.44287,0.0 +2024-04-23 23:00:00,7.7103825,12.433825,80.29342,78.87085,18.75,1012.4588,0.0,41.653564,1.0 +2024-04-24 00:00:00,7.7103825,11.708544,80.29342,79.16997,20.0,1012.99023,0.0,39.075394,1.0 +2024-04-24 01:00:00,9.848858,13.776792,77.09259,76.56896,22.0,1012.2536,0.0,36.393723,1.0 +2024-04-24 02:00:00,9.876234,13.544003,74.134224,73.70589,24.05,1012.3108,0.0,32.705463,1.0 +2024-04-24 03:00:00,9.646243,12.934064,72.50415,71.985214,25.9,1011.9652,0.0,29.694138,1.0 +2024-04-24 04:00:00,9.075792,11.987077,71.365326,70.50685,27.6,1011.2179,0.0,26.959364,1.0 +2024-04-24 05:00:00,8.25409,10.816653,70.90642,70.559875,28.9,1010.1616,0.0,24.738873,1.0 +2024-04-24 06:00:00,7.5286117,9.771899,73.009094,72.12121,29.75,1009.2916,0.0,23.073225,1.0 +2024-04-24 07:00:00,6.7911706,8.876937,76.37299,75.650635,30.05,1009.00183,0.0,22.291409,1.0 +2024-04-24 08:00:00,6.3788714,8.434453,80.98076,79.755974,29.65,1008.7931,0.0,22.420008,1.0 +2024-04-24 09:00:00,5.9135437,8.238932,86.12155,84.4279,28.65,1008.66693,0.0,23.428232,1.0 +2024-04-24 10:00:00,4.491102,7.566373,101.560104,97.59455,26.85,1009.2137,0.0,25.667913,0.0 +2024-04-24 11:00:00,4.7423625,8.159657,114.94388,109.32328,25.4,1010.1661,0.0,27.199596,0.0 +2024-04-24 12:00:00,5.3310413,9.265528,113.198616,108.239494,24.5,1010.7365,0.0,28.401571,0.0 +2024-04-24 13:00:00,5.8189344,9.701546,109.0578,104.32276,24.45,1010.6357,0.0,29.188408,0.0 +2024-04-24 14:00:00,7.045566,11.321661,96.519714,93.5447,23.9,1010.6205,0.0,30.801718,0.0 +2024-04-24 15:00:00,8.20975,12.938702,87.20736,85.56741,23.45,1010.509,0.0,32.311417,0.0 +2024-04-24 16:00:00,8.729835,14.06165,80.10615,78.92985,22.65,1010.3872,0.0,34.62319,0.0 +2024-04-24 17:00:00,9.241753,14.333876,76.865974,75.866776,22.1,1010.57043,0.0,35.80071,0.0 +2024-04-24 18:00:00,8.94986,13.727709,76.42955,75.66004,21.75,1010.6598,0.0,36.953323,0.0 +2024-04-24 19:00:00,8.926926,13.582341,77.05349,76.37299,21.2,1010.44574,0.0,38.615284,0.0 +2024-04-24 20:00:00,8.6977005,13.18977,72.60659,72.80138,20.75,1010.5323,0.0,40.247345,0.0 +2024-04-24 21:00:00,8.041144,12.646343,68.86011,67.69375,19.75,1011.2971,0.2,45.376476,0.0 +2024-04-24 22:00:00,7.3375745,11.479111,72.55273,71.7228,19.75,1011.793,0.1,42.373917,0.0 +2024-04-24 23:00:00,7.5610843,11.552056,69.88733,69.21168,19.4,1012.1796,0.0,41.695126,1.0 +2024-04-25 00:00:00,8.1024685,12.265399,65.96571,65.94266,19.35,1012.37665,0.0,41.825005,1.0 +2024-04-25 01:00:00,8.229217,11.851161,64.05776,63.435013,19.45,1011.88367,0.1,42.288597,1.0 +2024-04-25 02:00:00,8.045496,11.151681,57.692696,57.45001,21.7,1011.84827,0.0,35.68614,1.0 +2024-04-25 03:00:00,6.87968,9.403191,57.46495,57.154957,23.9,1011.41394,0.0,31.339153,1.0 +2024-04-25 04:00:00,4.701064,6.4031243,51.911175,51.34017,24.4,1011.13043,0.0,30.623774,1.0 +2024-04-25 05:00:00,3.0805843,4.0,54.246033,53.13002,26.45,1010.1945,0.0,27.487686,1.0 +2024-04-25 06:00:00,0.1,0.36055514,270.0,33.6901,27.35,1009.3265,0.0,26.707155,1.0 +2024-04-25 07:00:00,4.404543,5.3413477,219.47243,218.15727,25.85,1009.18646,0.0,34.355625,1.0 +2024-04-25 08:00:00,5.9464273,7.905694,199.65392,198.43504,23.35,1009.41504,0.0,49.700127,1.0 +2024-04-25 09:00:00,5.4451814,7.467262,172.61404,172.30405,22.4,1009.4876,0.0,54.936142,1.0 +2024-04-25 10:00:00,5.3851643,8.2,164.93146,167.31963,21.3,1009.65515,0.0,58.17819,0.0 +2024-04-25 11:00:00,4.9658837,8.469357,154.98314,157.06787,21.0,1009.9442,0.0,60.829144,0.0 +2024-04-25 12:00:00,5.2430906,8.5440035,145.09743,147.42595,20.85,1010.1384,0.0,60.993156,0.0 +2024-04-25 13:00:00,4.3863425,7.582216,133.1524,138.74309,20.3,1010.7177,0.0,60.865276,0.0 +2024-04-25 14:00:00,5.8137765,9.404786,130.81499,134.56926,20.95,1010.33966,0.0,56.58524,0.0 +2024-04-25 15:00:00,5.6044626,9.272,105.52418,106.284996,20.35,1010.52094,0.0,55.142193,0.0 +2024-04-25 16:00:00,4.482187,7.877182,128.65984,123.08486,18.4,1009.5726,0.0,65.85309,0.0 +2024-04-25 17:00:00,2.5,5.903389,126.86999,116.13094,18.1,1009.36566,0.0,66.44383,0.0 +2024-04-25 18:00:00,2.3600848,5.8523498,126.384445,106.88687,17.85,1009.2592,0.0,64.655685,0.0 +2024-04-25 19:00:00,2.3537204,6.0,102.26476,90.0,17.65,1008.7576,0.0,61.668327,0.0 +2024-04-25 20:00:00,2.408319,6.0207973,94.76356,78.50347,17.25,1008.4484,0.0,63.245346,0.0 +2024-04-25 21:00:00,2.5079873,6.4536815,94.57384,77.4712,17.25,1008.4484,0.0,65.60679,0.0 +2024-04-25 22:00:00,3.0413814,7.3389373,80.53775,70.0835,17.55,1008.1597,0.0,67.43468,0.0 +2024-04-25 23:00:00,3.6687872,8.011242,72.55273,65.67444,17.65,1008.2618,0.0,67.902405,1.0 +2024-04-26 00:00:00,4.0853395,8.906739,68.45896,61.132942,19.6,1008.6153,0.0,60.10375,1.0 +2024-04-26 01:00:00,5.664804,8.1541395,69.3255,66.89365,22.65,1008.80023,0.0,45.72096,1.0 +2024-04-26 02:00:00,4.5617976,5.8591805,63.996716,62.560368,25.95,1008.693,0.0,35.799496,1.0 +2024-04-26 03:00:00,2.4596748,2.8653097,63.435013,60.75127,28.15,1008.2569,0.0,28.625654,1.0 +2024-04-26 04:00:00,0.9055385,1.0,173.6599,143.13002,28.95,1007.5839,0.0,26.144447,1.0 +2024-04-26 05:00:00,3.1064448,3.2202485,213.17853,205.76927,29.0,1006.69244,0.0,26.426544,1.0 +2024-04-26 06:00:00,5.700877,6.963476,217.87505,215.05951,28.0,1006.3679,0.0,32.927402,1.0 +2024-04-26 07:00:00,5.8591805,7.4732857,207.43964,204.50739,27.05,1006.24316,0.0,36.229607,1.0 +2024-04-26 08:00:00,5.531727,7.4525166,192.5288,191.61145,25.85,1006.40906,0.0,41.004097,1.0 +2024-04-26 09:00:00,4.609772,6.7029843,183.73132,181.70978,24.65,1006.4754,0.0,46.421837,1.0 +2024-04-26 10:00:00,4.00125,7.3109508,178.56793,176.86371,22.7,1006.52057,0.0,60.243076,0.0 +2024-04-26 11:00:00,3.5171013,6.9123073,165.17348,165.76268,21.85,1007.092,0.0,64.47197,0.0 +2024-04-26 12:00:00,3.1016126,6.648308,159.22766,158.83867,21.25,1007.8684,0.0,63.92654,0.0 +2024-04-26 13:00:00,3.224903,6.847627,150.2552,151.1893,20.0,1008.5273,0.0,68.821625,0.0 +2024-04-26 14:00:00,2.8999999,6.5,136.39711,143.13002,19.2,1008.60364,0.0,70.47397,0.0 +2024-04-26 15:00:00,2.8999999,6.5604877,136.39711,142.43134,18.55,1008.48615,0.0,71.0423,0.0 +2024-04-26 16:00:00,2.9732137,6.6610813,137.72638,144.16226,18.05,1008.0749,0.0,69.56623,0.0 +2024-04-26 17:00:00,3.2202482,7.119691,143.84172,150.55467,17.75,1007.7688,0.0,69.05143,0.0 +2024-04-26 18:00:00,2.3086793,5.3,94.96966,121.890755,16.95,1008.04315,0.0,73.59329,0.0 +2024-04-26 19:00:00,2.376973,5.660389,104.62092,122.00535,16.4,1008.0271,0.0,76.71174,0.0 +2024-04-26 20:00:00,2.7313,6.280127,113.749504,127.23492,16.35,1007.92664,0.0,77.71798,0.0 +2024-04-26 21:00:00,2.4738634,5.9682493,104.03627,121.292984,16.05,1007.8186,0.0,79.47869,0.0 +2024-04-26 22:00:00,2.433105,5.635601,99.46225,117.47435,15.75,1007.71063,0.0,79.95987,0.0 +2024-04-26 23:00:00,2.6076808,5.3160133,85.60138,106.38962,15.6,1007.9046,0.0,78.63391,1.0 +2024-04-27 00:00:00,3.224903,5.2086463,82.875084,93.301796,18.4,1008.4817,0.0,63.084644,1.0 +2024-04-27 01:00:00,1.9849433,4.244997,130.91429,105.01841,22.05,1009.577,0.0,48.53894,1.0 +2024-04-27 02:00:00,2.5,3.224903,163.73972,150.2552,25.25,1009.76514,0.0,39.36915,1.0 +2024-04-27 03:00:00,2.9614186,3.5341196,168.31065,154.8852,27.4,1009.1294,0.0,32.4313,1.0 +2024-04-27 04:00:00,3.306055,3.748333,183.46815,170.78905,28.65,1008.4685,0.0,27.711348,1.0 +2024-04-27 05:00:00,5.2201533,6.1983867,196.69933,190.2221,28.65,1007.57574,0.0,32.562805,1.0 +2024-04-27 06:00:00,6.5253353,8.220098,195.10115,189.80603,27.8,1007.1561,0.0,40.2143,1.0 +2024-04-27 07:00:00,7.0859013,9.419129,188.93051,183.65215,26.95,1007.1332,0.0,42.683254,1.0 +2024-04-27 08:00:00,7.1112585,10.0005,183.22446,179.42708,25.7,1007.49615,0.0,44.474667,1.0 +2024-04-27 09:00:00,6.166036,9.0609045,171.60716,169.18617,24.45,1007.85834,0.0,51.81259,1.0 +2024-04-27 10:00:00,6.2361846,9.929752,164.18074,161.20001,23.0,1008.2149,0.0,56.905975,0.0 +2024-04-27 11:00:00,6.1741395,9.615093,155.09526,153.43501,22.6,1008.799,0.0,52.35135,0.0 +2024-04-27 12:00:00,5.95399,9.936296,150.85202,151.11351,21.75,1009.3704,0.0,52.475212,0.0 +2024-04-27 13:00:00,5.6035705,9.602083,145.17545,144.3235,21.55,1010.25726,0.0,49.712,0.0 +2024-04-27 14:00:00,4.8010416,9.0,144.3235,143.13002,20.9,1010.33813,0.0,48.878082,0.0 +2024-04-27 15:00:00,4.384062,8.414867,135.0001,134.5186,20.6,1010.3295,0.0,46.391605,0.0 +2024-04-27 16:00:00,3.9597979,7.939773,135.0001,130.91429,20.3,1010.1227,0.0,44.610966,0.0 +2024-04-27 17:00:00,3.676955,7.7897367,135.0001,131.87779,19.85,1009.8124,0.0,43.58144,0.0 +2024-04-27 18:00:00,3.847077,8.0062475,117.89718,117.52514,19.55,1010.1014,0.0,40.88235,0.0 +2024-04-27 19:00:00,4.1231055,8.450444,112.833694,110.79419,19.6,1010.30133,0.0,38.15569,0.0 +2024-04-27 20:00:00,4.031129,8.228001,113.38525,110.63763,19.3,1010.2925,0.0,38.33581,0.0 +2024-04-27 21:00:00,4.0853395,8.316851,111.541046,108.217186,19.0,1010.38306,0.0,39.46983,0.0 +2024-04-27 22:00:00,4.2059484,8.125269,108.00426,103.523186,19.3,1010.58997,0.0,38.87402,0.0 +2024-04-27 23:00:00,4.3011627,7.9831076,107.592514,102.29526,19.7,1010.9984,0.0,38.05184,1.0 +2024-04-28 00:00:00,4.1785164,8.472308,111.03758,101.57516,20.75,1011.5241,0.0,35.90994,1.0 +2024-04-28 01:00:00,5.0695167,6.8622155,112.01134,108.69908,22.7,1012.4716,0.0,31.32591,1.0 +2024-04-28 02:00:00,5.4230986,7.2449985,112.78245,110.1859,25.2,1012.3425,0.0,27.144655,1.0 +2024-04-28 03:00:00,5.9093146,7.539231,113.962494,111.801476,27.75,1011.7181,0.0,23.4362,1.0 +2024-04-28 04:00:00,5.186521,6.71193,123.996506,118.47411,29.3,1010.86676,0.0,20.756563,1.0 +2024-04-28 05:00:00,4.545327,5.8051705,140.35587,132.20723,29.9,1009.7918,0.0,20.333107,1.0 +2024-04-28 06:00:00,4.5188494,5.714018,155.13632,147.14429,30.15,1009.10394,0.0,21.189825,1.0 +2024-04-28 07:00:00,6.6068144,9.042676,177.39749,169.80856,28.6,1008.76495,0.0,29.73537,1.0 +2024-04-28 08:00:00,7.3,10.667708,180.0,173.54128,26.4,1008.90375,0.0,44.521557,1.0 +2024-04-28 09:00:00,7.8409185,12.101652,174.14407,169.52582,24.1,1009.0392,0.0,51.05233,1.0 +2024-04-28 10:00:00,7.2111025,12.033287,160.55988,158.5522,22.3,1009.48474,0.0,57.47772,0.0 +2024-04-28 11:00:00,6.854196,11.148542,156.80139,156.19405,21.85,1009.96826,0.0,61.6222,0.0 +2024-04-28 12:00:00,6.306346,10.376898,152.62238,152.44728,21.5,1010.5536,0.0,63.774876,0.0 +2024-04-28 13:00:00,5.4708314,9.2439165,149.21593,148.7174,20.45,1011.4164,0.0,71.3958,0.0 +2024-04-28 14:00:00,4.545327,8.429116,140.35587,138.36656,20.25,1011.31146,0.0,66.892586,0.0 +2024-04-28 15:00:00,3.753665,8.0,131.76021,126.86999,20.4,1011.2163,0.0,48.415333,0.0 +2024-04-28 16:00:00,4.031129,8.508819,119.74479,113.55228,20.85,1010.63434,0.0,35.68964,0.0 +2024-04-28 17:00:00,5.0,9.688137,106.26028,101.3099,21.1,1010.54224,0.0,36.01054,0.0 +2024-04-28 18:00:00,5.921149,11.016352,94.84392,93.12207,21.2,1010.3466,0.0,37.050846,0.0 +2024-04-28 19:00:00,6.503076,11.701709,91.76235,90.9793,21.25,1010.24866,0.0,37.84026,0.0 +2024-04-28 20:00:00,6.9,12.101653,90.0,90.94693,21.25,1010.05035,0.0,38.233128,0.0 +2024-04-28 21:00:00,7.006426,12.103719,87.54603,88.579765,21.05,1010.1438,0.0,38.705315,0.0 +2024-04-28 22:00:00,7.106335,12.2147455,87.58054,87.1845,20.8,1010.33527,0.0,39.440235,0.0 +2024-04-28 23:00:00,6.906519,11.827087,87.5105,86.12155,20.5,1010.4258,0.0,41.012638,1.0 +2024-04-29 00:00:00,6.5276337,11.822859,84.7262,81.73291,21.75,1010.85815,0.0,38.905468,1.0 +2024-04-29 01:00:00,6.661081,9.633795,82.234924,80.43998,24.25,1010.92786,0.0,33.32821,1.0 +2024-04-29 02:00:00,6.9857,9.533625,76.75947,74.79754,27.05,1010.40936,0.0,31.366014,1.0 +2024-04-29 03:00:00,6.296825,8.300602,69.55037,68.070366,29.75,1009.88684,0.0,32.116978,1.0 +2024-04-29 04:00:00,4.924429,6.484597,66.03751,63.435013,31.4,1009.1369,0.0,31.317959,1.0 +2024-04-29 05:00:00,3.6619666,4.8270073,55.0079,50.04252,32.85,1007.88513,0.0,27.280445,1.0 +2024-04-29 06:00:00,3.324154,4.3416586,68.83867,61.07368,31.85,1007.1644,0.0,27.557177,1.0 +2024-04-29 07:00:00,4.104875,5.3935146,87.20736,79.31514,32.5,1006.58624,0.0,26.124483,1.0 +2024-04-29 08:00:00,4.838388,6.5795135,71.93944,65.77226,32.15,1006.67633,0.0,26.646172,1.0 +2024-04-29 09:00:00,4.9477267,6.648308,75.96373,68.83867,31.5,1006.6592,0.0,26.828993,1.0 +2024-04-29 10:00:00,6.0827627,9.518929,99.46225,99.06643,29.9,1006.9149,0.0,30.904934,0.0 +2024-04-29 11:00:00,6.2513995,10.060318,97.35229,96.27721,28.9,1007.2848,0.0,32.63241,0.0 +2024-04-29 12:00:00,6.7896976,10.903669,80.67649,82.09293,28.1,1007.8585,0.0,34.641838,0.0 +2024-04-29 13:00:00,6.6219335,11.011357,75.124275,76.34235,27.25,1007.5382,0.0,38.765892,0.0 +2024-04-29 14:00:00,5.948109,10.111874,63.00425,61.66097,26.9,1007.62787,0.0,39.963314,0.0 +2024-04-29 15:00:00,5.5973206,9.767292,48.621593,47.489597,26.1,1007.70526,0.0,41.618706,0.0 +2024-04-29 16:00:00,4.596738,8.626702,44.118694,44.999897,25.35,1007.28784,0.0,43.654934,0.0 +2024-04-29 17:00:00,4.816638,8.79659,41.63345,40.389275,25.1,1007.4797,0.0,45.938843,0.0 +2024-04-29 18:00:00,3.764306,7.3878274,39.61066,39.50765,24.15,1007.8501,0.0,49.58778,0.0 +2024-04-29 19:00:00,3.8275318,7.6844,33.27491,34.93101,23.8,1008.0387,0.0,51.811916,0.0 +2024-04-29 20:00:00,4.701064,8.560373,38.088825,37.405437,23.95,1007.944,0.0,53.38998,0.0 +2024-04-29 21:00:00,5.544367,9.5,39.143982,36.86999,24.05,1008.24414,0.0,54.463455,0.0 +2024-04-29 22:00:00,6.0,10.12571,36.86998,34.94575,24.0,1008.7388,0.0,55.51692,0.0 +2024-04-29 23:00:00,6.6850576,10.929318,34.641014,32.672226,23.8,1008.9314,0.0,56.18844,1.0 +2024-04-30 00:00:00,6.7675695,10.568822,34.159744,32.6375,24.7,1009.254,0.0,52.553284,1.0 +2024-04-30 01:00:00,7.566373,10.870603,29.275164,27.979382,26.7,1009.3088,0.0,44.17064,1.0 +2024-04-30 02:00:00,6.1269894,8.05295,26.146788,24.973894,28.65,1009.1629,0.0,37.16239,1.0 +2024-04-30 03:00:00,4.7518415,5.9413805,8.471065,6.7660856,30.55,1009.41205,0.0,32.12633,1.0 +2024-04-30 04:00:00,3.679674,4.661545,317.2026,324.6051,31.65,1008.7467,0.0,29.778938,1.0 +2024-04-30 05:00:00,5.824946,7.244308,258.11136,263.6599,29.45,1008.0933,0.0,42.13694,1.0 +2024-04-30 06:00:00,5.7974133,7.6118326,255.00487,260.1665,27.9,1007.9522,0.0,43.928383,1.0 +2024-04-30 07:00:00,3.1575305,4.148494,280.954,285.3763,27.7,1008.5421,0.0,42.890175,1.0 +2024-04-30 08:00:00,2.2022717,2.7166157,272.6025,276.3401,26.8,1009.1129,0.0,51.097855,1.0 +2024-04-30 09:00:00,2.433105,3.0149627,260.53775,264.2895,25.15,1009.5639,0.0,67.0418,1.0 +2024-04-30 10:00:00,1.2206556,1.5811387,235.0079,235.30478,23.8,1009.82404,0.0,80.28911,0.0 +2024-04-30 11:00:00,1.0816654,0.36055514,236.3099,236.3099,22.55,1010.7814,0.8,88.48157,0.0 +2024-04-30 12:00:00,1.7804494,4.110961,38.157276,48.94529,22.7,1010.8847,0.0,83.7067,0.0 +2024-04-30 13:00:00,4.9406476,8.823264,54.057793,54.688713,22.25,1010.17773,0.0,66.02369,0.0 +2024-04-30 14:00:00,6.3820057,10.904127,54.5666,54.706566,22.7,1009.5953,0.0,59.85541,0.0 +2024-04-30 15:00:00,6.794115,11.335784,42.614033,41.42357,22.95,1009.5031,0.0,57.26377,0.0 +2024-04-30 16:00:00,6.6843095,11.300443,38.92756,36.36296,22.6,1008.99744,0.0,55.346653,0.0 +2024-04-30 17:00:00,6.789698,11.41096,43.806595,41.091362,22.7,1008.80176,0.0,52.37737,0.0 +2024-04-30 18:00:00,6.576473,11.175867,45.615982,43.54985,22.7,1008.901,0.0,50.850597,0.0 +2024-04-30 19:00:00,5.4405885,9.513149,53.972538,50.117374,22.4,1008.79333,0.0,51.27617,0.0 +2024-04-30 20:00:00,6.6603303,10.962208,48.65233,46.108738,22.4,1008.595,0.0,50.603924,0.0 +2024-04-30 21:00:00,7.0092793,11.638728,42.108665,40.120655,22.15,1008.78625,0.0,50.705017,0.0 +2024-04-30 22:00:00,6.536819,11.237883,29.309916,29.302116,21.8,1009.37164,0.0,51.28738,0.0 +2024-04-30 23:00:00,6.8818603,11.490867,35.537766,31.476793,21.75,1009.4696,0.0,51.444252,1.0 +2024-05-01 00:00:00,6.902898,11.56633,38.530205,33.00311,22.1,1009.8761,0.3,53.61437,1.0 +2024-05-01 01:00:00,7.998125,13.480727,42.46639,37.46501,23.2,1009.11334,0.1,51.65525,1.0 +2024-05-01 02:00:00,6.983552,10.018482,29.134203,27.332275,25.95,1009.8833,0.0,43.53448,1.0 +2024-05-01 03:00:00,6.9339743,9.4667845,33.231728,31.171293,27.9,1009.73785,0.0,37.442738,1.0 +2024-05-01 04:00:00,6.046487,8.237719,34.215755,33.111355,28.5,1009.35724,0.0,35.33261,1.0 +2024-05-01 05:00:00,6.2169123,8.417244,11.129155,9.574167,30.35,1008.5138,0.0,27.798779,1.0 +2024-05-01 06:00:00,4.997999,6.6940274,340.11475,346.17133,31.55,1007.95056,0.0,24.765394,1.0 +2024-05-01 07:00:00,6.4031243,8.683317,231.34016,231.54626,27.45,1008.5355,0.0,47.48287,1.0 +2024-05-01 08:00:00,5.2801514,7.324616,217.30403,218.90414,25.35,1009.37085,0.0,61.048,1.0 +2024-05-01 09:00:00,4.0804415,5.7939625,197.10281,201.25058,24.65,1009.947,0.0,60.88801,1.0 +2024-05-01 10:00:00,3.577709,5.9481087,153.43501,163.39294,23.55,1010.41254,0.0,66.50476,0.0 +2024-05-01 11:00:00,3.4234486,6.0033326,173.29025,178.0909,23.3,1011.2982,0.0,64.78416,0.0 +2024-05-01 12:00:00,4.5177426,7.3824115,152.30061,155.17068,23.4,1011.8959,0.0,64.59964,0.0 +2024-05-01 13:00:00,2.9614186,4.609772,101.68935,114.34108,22.55,1012.6659,0.1,78.8803,0.0 +2024-05-01 14:00:00,4.5177426,7.5006666,84.92049,89.23612,22.45,1012.663,0.0,76.913635,0.0 +2024-05-01 15:00:00,5.1923018,8.29759,74.3577,77.4712,22.3,1012.75775,0.0,74.039154,0.0 +2024-05-01 16:00:00,6.109828,10.057833,68.89509,72.64589,22.2,1012.3586,0.0,69.03237,0.0 +2024-05-01 17:00:00,6.0440054,10.278619,73.66389,72.44637,22.25,1011.963,0.0,65.60209,0.0 +2024-05-01 18:00:00,6.105735,10.324728,58.392544,58.46526,21.9,1012.3499,0.0,67.23151,0.0 +2024-05-01 19:00:00,5.2478566,8.958795,59.03632,56.842064,21.5,1011.8429,0.0,69.78305,0.0 +2024-05-01 20:00:00,5.215362,8.861715,57.528828,49.118282,21.35,1011.73926,0.0,68.42549,0.0 +2024-05-01 21:00:00,5.6859474,10.026465,55.750916,51.072456,21.1,1012.0299,0.0,68.15623,0.0 +2024-05-01 22:00:00,6.529931,11.260994,49.969803,48.2398,21.55,1012.34015,0.0,62.966015,0.0 +2024-05-01 23:00:00,6.576473,11.317244,44.384018,43.567978,21.65,1012.8389,0.0,59.220802,1.0 +2024-05-02 00:00:00,6.9310894,12.465152,43.83095,41.747963,22.4,1013.45496,0.0,54.577927,1.0 +2024-05-02 01:00:00,7.3824115,11.053506,28.30066,28.651731,24.4,1013.90765,0.0,54.72793,1.0 +2024-05-02 02:00:00,6.9065185,9.3744335,34.3804,33.6901,26.05,1013.9531,0.0,46.197548,1.0 +2024-05-02 03:00:00,6.5459914,8.570297,34.418434,34.060966,27.6,1013.20184,0.0,40.820126,1.0 +2024-05-02 04:00:00,6.0415235,7.741447,28.68606,28.5513,29.4,1012.15924,0.0,35.235577,1.0 +2024-05-02 05:00:00,5.9464273,7.6216793,19.653913,19.148233,30.5,1011.1964,0.0,30.459425,1.0 +2024-05-02 06:00:00,5.096077,6.5253353,15.945463,15.101156,31.0,1010.6146,0.0,27.145987,1.0 +2024-05-02 07:00:00,3.4132097,4.219004,5.0423646,5.4402504,31.2,1010.7188,0.0,25.692465,1.0 +2024-05-02 08:00:00,1.9697715,2.529822,336.0375,341.56494,30.75,1010.9055,0.0,26.183722,1.0 +2024-05-02 09:00:00,1.56205,2.1931713,309.8055,316.8476,29.5,1011.07056,0.0,29.09322,1.0 +2024-05-02 10:00:00,1.6492423,2.4738634,345.9637,345.9637,26.75,1011.4923,0.0,35.193024,0.0 +2024-05-02 11:00:00,0.9055385,1.6492423,353.6599,345.9637,26.15,1012.17053,0.0,35.97619,0.0 +2024-05-02 12:00:00,1.8357561,1.5033296,150.64235,176.186,22.75,1012.57214,0.0,47.769142,0.0 +2024-05-02 13:00:00,2.3537204,5.1088157,167.73524,176.6336,22.65,1013.16437,0.0,61.804554,0.0 +2024-05-02 14:00:00,2.7784889,5.8189344,149.74365,160.9422,22.45,1013.0598,0.0,59.603436,0.0 +2024-05-02 15:00:00,3.405877,6.774216,139.76372,148.89125,21.9,1012.64746,0.0,63.862698,0.0 +2024-05-02 16:00:00,3.4999998,7.2180333,126.86999,137.24576,21.2,1012.3302,0.0,70.39874,0.0 +2024-05-02 17:00:00,3.4999998,7.4249578,126.86999,134.4544,20.85,1012.3204,0.0,75.69755,0.0 +2024-05-02 18:00:00,3.1384711,6.8600287,120.65059,126.70295,20.6,1012.31305,0.0,78.103355,0.0 +2024-05-02 19:00:00,2.8792362,6.352952,110.32322,118.1785,20.15,1012.00287,0.0,79.7949,0.0 +2024-05-02 20:00:00,2.5495098,5.8830266,115.55992,121.79887,19.7,1012.08936,0.0,81.7901,0.0 +2024-05-02 21:00:00,2.2847319,5.408327,113.198616,123.6901,19.25,1012.27466,0.0,82.51894,0.0 +2024-05-02 22:00:00,1.9313208,4.8826222,111.25058,124.992096,18.75,1012.5579,0.0,82.45797,0.0 +2024-05-02 23:00:00,1.868154,4.7201695,105.52418,126.384445,18.4,1013.0436,0.0,83.47865,1.0 +2024-05-03 00:00:00,2.6925824,4.8414874,111.801476,128.2902,20.8,1013.509,0.0,72.61367,1.0 +2024-05-03 01:00:00,2.7658632,3.920459,130.60121,127.74687,23.95,1013.9944,0.0,63.094517,1.0 +2024-05-03 02:00:00,3.1064448,3.828838,146.82147,139.23648,26.55,1013.7684,0.0,49.58083,1.0 +2024-05-03 03:00:00,3.0413814,3.640055,170.53775,159.07542,28.05,1013.3132,0.0,42.022945,1.0 +2024-05-03 04:00:00,4.7434163,5.7870545,198.43504,189.95056,27.95,1012.41785,0.0,48.075092,1.0 +2024-05-03 05:00:00,6.942622,9.390421,191.6336,187.95743,25.55,1012.05475,0.0,65.26135,1.0 +2024-05-03 06:00:00,6.264982,7.922752,188.25935,184.34315,26.15,1011.77374,0.0,59.896626,1.0 +2024-05-03 07:00:00,6.207254,8.20061,182.77016,180.69868,25.6,1012.0561,0.0,59.768887,1.0 +2024-05-03 08:00:00,6.7186303,8.908984,184.2678,182.5733,24.35,1012.1207,0.0,66.66907,1.0 +2024-05-03 09:00:00,6.500769,8.809087,179.11862,177.39749,22.95,1012.47864,0.0,75.085526,1.0 +2024-05-03 10:00:00,6.1983867,9.159148,169.7779,169.30354,21.55,1012.9352,0.0,83.05504,0.0 +2024-05-03 11:00:00,6.0728908,9.013879,162.75845,162.57005,20.75,1013.40845,0.0,84.8075,0.0 +2024-05-03 12:00:00,5.8821764,9.139474,162.18102,162.1597,20.3,1013.4947,0.0,83.43304,0.0 +2024-05-03 13:00:00,5.8821764,9.013879,162.18102,162.57005,20.1,1013.58813,0.0,80.808464,0.0 +2024-05-03 14:00:00,5.3851647,8.5440035,158.19853,159.44388,19.75,1013.5782,0.0,80.50553,0.0 +2024-05-03 15:00:00,5.1107726,8.188406,149.42085,151.55717,19.35,1013.46765,0.0,79.68421,0.0 +2024-05-03 16:00:00,4.6400433,7.7665954,142.88306,145.49142,18.85,1013.3542,0.0,76.35219,0.0 +2024-05-03 17:00:00,4.4598207,7.605919,137.72638,140.8696,18.45,1013.1443,0.0,72.19117,0.0 +2024-05-03 18:00:00,4.750789,8.060397,139.26799,142.56136,18.15,1013.13544,0.0,70.27345,0.0 +2024-05-03 19:00:00,5.020956,8.421994,134.19316,137.406,17.9,1012.8309,0.0,69.30869,0.0 +2024-05-03 20:00:00,4.6861496,8.065978,129.80553,132.99045,17.4,1012.91547,0.0,71.292984,0.0 +2024-05-03 21:00:00,4.4102154,7.742093,122.969406,125.537766,16.75,1013.0947,0.0,74.53269,0.0 +2024-05-03 22:00:00,3.9357338,7.256032,117.216034,119.74478,16.3,1013.28,0.0,76.44416,0.0 +2024-05-03 23:00:00,3.6769552,6.931811,112.38018,116.56499,15.85,1013.5642,0.0,78.154686,1.0 +2024-05-04 00:00:00,3.9560082,6.854196,110.72565,113.198616,17.2,1013.9014,0.0,71.02113,1.0 +2024-05-04 01:00:00,4.565085,6.3134775,118.8107,119.4071,19.6,1014.1691,0.0,57.572136,1.0 +2024-05-04 02:00:00,5.1739736,6.6603303,138.91835,138.65233,21.85,1014.0347,0.0,46.11434,1.0 +2024-05-04 03:00:00,5.1923018,6.514599,164.3577,162.12122,23.15,1013.6743,0.0,39.704742,1.0 +2024-05-04 04:00:00,5.4037027,6.736468,177.87895,174.03561,23.9,1012.80255,0.0,36.68595,1.0 +2024-05-04 05:00:00,6.0074954,7.5006666,182.86235,179.23611,24.1,1011.7173,0.0,37.496346,1.0 +2024-05-04 06:00:00,6.726812,8.505292,185.11722,182.02132,23.8,1010.91516,0.0,41.666233,1.0 +2024-05-04 07:00:00,7.4330344,9.613012,185.4037,182.9814,22.95,1010.69336,0.0,50.749516,1.0 +2024-05-04 08:00:00,7.3109508,9.602083,183.13629,181.19347,22.2,1010.47406,0.0,57.26644,1.0 +2024-05-04 09:00:00,7.206247,9.908077,177.6141,177.68633,20.9,1010.7348,0.0,64.68362,1.0 +2024-05-04 10:00:00,5.9228373,9.100549,168.31065,167.94923,20.25,1010.91473,0.0,68.64867,0.0 +2024-05-04 11:00:00,5.1923018,8.464632,164.3577,165.63538,20.0,1011.4033,0.0,69.71842,0.0 +2024-05-04 12:00:00,5.0289164,8.296988,162.64589,164.62369,19.65,1011.5919,0.0,73.585014,0.0 +2024-05-04 13:00:00,4.1231055,7.2201114,140.90616,143.44743,18.65,1011.76166,0.0,78.06421,0.0 +2024-05-04 14:00:00,3.3421547,6.4031243,141.07245,141.34016,18.0,1011.84204,0.0,77.46347,0.0 +2024-05-04 15:00:00,3.4205263,6.6610813,142.12495,144.16226,17.4,1011.6262,0.0,71.527794,0.0 +2024-05-04 16:00:00,4.2801867,7.742093,142.59457,144.46223,16.95,1011.6132,0.0,65.32401,0.0 +2024-05-04 17:00:00,4.172529,7.864477,135.97093,138.60857,16.3,1011.3959,0.0,65.84107,0.0 +2024-05-04 18:00:00,4.244997,7.864477,136.90913,138.60857,15.8,1011.3813,0.0,70.75526,0.0 +2024-05-04 19:00:00,4.384062,8.065978,135.0001,137.00955,15.25,1011.3652,0.0,75.52018,0.0 +2024-05-04 20:00:00,4.318565,7.990619,132.18437,134.49303,15.0,1011.35785,0.0,77.768555,0.0 +2024-05-04 21:00:00,4.356604,8.160882,121.865944,126.027466,14.7,1011.64636,0.0,79.28584,0.0 +2024-05-04 22:00:00,4.0853395,7.692204,111.541046,116.23188,14.3,1011.73346,0.0,80.55518,0.0 +2024-05-04 23:00:00,4.0261645,7.7833157,104.38144,110.29765,13.9,1011.92004,0.0,82.94471,1.0 +2024-05-05 00:00:00,4.295346,8.159657,102.09474,109.32328,15.55,1012.36566,0.0,75.07063,1.0 +2024-05-05 01:00:00,3.6235344,5.1429563,117.979385,116.56499,18.05,1012.6367,0.0,63.847595,1.0 +2024-05-05 02:00:00,4.110961,5.307542,138.94528,137.29063,20.4,1012.704,0.0,48.252537,1.0 +2024-05-05 03:00:00,3.7735925,4.6872168,147.99466,146.3099,21.75,1012.1475,0.0,41.649757,1.0 +2024-05-05 04:00:00,2.8792362,3.4885528,159.67677,152.70052,22.75,1011.08435,0.0,38.530167,1.0 +2024-05-05 05:00:00,3.306055,3.905125,183.46815,177.06439,23.35,1009.911,0.0,37.283184,1.0 +2024-05-05 06:00:00,4.5891175,5.5443664,191.30989,187.2531,23.3,1009.3145,0.0,40.016396,1.0 +2024-05-05 07:00:00,6.9123073,8.7097645,194.23732,192.60016,22.1,1009.0827,0.0,52.913662,1.0 +2024-05-05 08:00:00,7.7414465,10.131634,185.93143,184.52873,20.95,1009.24866,0.0,56.77183,1.0 +2024-05-05 09:00:00,7.2,9.9,180.0,180.0,19.8,1009.81116,0.0,59.36246,1.0 +2024-05-05 10:00:00,6.1611686,9.339165,166.86597,167.00539,19.05,1010.48376,0.0,61.991432,0.0 +2024-05-05 11:00:00,5.6320515,8.902247,163.49556,165.02708,18.6,1011.1649,0.0,65.89566,0.0 +2024-05-05 12:00:00,5.5542774,8.969392,156.66594,157.72406,18.35,1011.5543,0.0,67.59918,0.0 +2024-05-05 13:00:00,5.2325897,8.772685,153.9247,155.77226,17.5,1012.12494,0.0,72.0178,0.0 +2024-05-05 14:00:00,5.147815,8.631338,150.9455,153.13815,17.35,1012.31885,0.0,71.049416,0.0 +2024-05-05 15:00:00,4.1868844,7.6216793,139.84407,141.92717,16.45,1012.49115,0.0,71.350395,0.0 +2024-05-05 16:00:00,3.482815,7.0035706,129.17365,133.26433,15.6,1012.4661,0.0,70.48135,0.0 +2024-05-05 17:00:00,2.9120438,6.2177167,105.945465,117.80137,14.75,1011.9452,0.0,70.08098,0.0 +2024-05-05 18:00:00,2.828427,6.1684685,98.13002,109.90384,14.15,1011.8282,0.0,69.02363,0.0 +2024-05-05 19:00:00,2.5317976,5.8523498,99.090195,109.98319,13.7,1011.6166,0.0,67.77122,0.0 +2024-05-05 20:00:00,2.5317976,5.8694124,99.090195,113.07044,13.2,1011.6017,0.0,69.53889,0.0 +2024-05-05 21:00:00,2.7018514,5.9615436,92.12105,112.69383,13.05,1011.5972,0.0,70.22314,0.0 +2024-05-05 22:00:00,2.5,5.412947,90.0,115.14475,12.75,1011.985,0.0,71.61437,0.0 +2024-05-05 23:00:00,2.6476402,5.2201533,79.11452,110.17074,12.75,1012.1833,0.0,71.37087,1.0 +2024-05-06 00:00:00,3.1256998,4.7759814,82.64771,109.57322,15.3,1012.75464,0.0,60.703186,1.0 +2024-05-06 01:00:00,2.3194828,3.794733,97.43131,108.43504,19.05,1013.16144,0.0,49.537853,1.0 +2024-05-06 02:00:00,2.86007,3.6400552,143.53067,142.81522,21.4,1013.0302,0.0,44.616234,1.0 +2024-05-06 03:00:00,3.8639357,4.8270073,169.56258,166.82744,22.75,1012.6713,0.0,46.67156,1.0 +2024-05-06 04:00:00,5.1923018,6.315061,195.6423,190.95403,23.3,1011.99255,0.0,45.596195,1.0 +2024-05-06 05:00:00,5.936329,7.3430243,212.61923,209.35765,22.35,1011.3708,0.0,53.32745,1.0 +2024-05-06 06:00:00,6.484597,8.276473,206.56499,205.01686,21.35,1011.1442,0.0,60.122063,1.0 +2024-05-06 07:00:00,6.3788714,8.178631,193.60056,191.99687,21.8,1011.25604,0.0,58.680458,1.0 +2024-05-06 08:00:00,5.440588,6.9375787,197.10281,195.03787,21.05,1011.23474,0.0,64.090096,1.0 +2024-05-06 09:00:00,4.6840153,6.20967,196.1135,194.93147,20.15,1011.60614,0.0,68.18584,1.0 +2024-05-06 10:00:00,3.748333,6.166036,189.21095,188.39284,19.0,1011.8706,0.0,76.13016,0.0 +2024-05-06 11:00:00,3.945884,6.661081,171.25392,172.23492,18.55,1012.2547,0.0,81.38293,0.0 +2024-05-06 12:00:00,3.8897302,6.9375787,162.03076,164.96213,18.35,1012.4469,0.0,80.57591,0.0 +2024-05-06 13:00:00,3.8999999,7.083784,157.3801,161.0534,17.5,1012.72003,0.0,82.30424,0.0 +2024-05-06 14:00:00,3.7735925,7.111259,147.99466,154.15567,17.25,1012.8118,0.0,80.4277,0.0 +2024-05-06 15:00:00,3.405877,6.9339743,139.76372,146.76828,16.85,1012.80035,0.0,81.956955,0.0 +2024-05-06 16:00:00,3.2015622,6.7357254,128.65984,139.21428,16.25,1012.5843,0.0,82.148544,0.0 +2024-05-06 17:00:00,2.7294688,6.0307546,118.442825,130.29207,15.4,1012.262,0.0,80.439095,0.0 +2024-05-06 18:00:00,2.624881,5.9506307,107.74477,114.84236,14.65,1012.23975,0.0,81.13788,0.0 +2024-05-06 19:00:00,2.280351,5.664804,105.25517,110.67451,14.0,1012.2204,0.0,80.246796,0.0 +2024-05-06 20:00:00,2.3537204,5.7870545,102.26476,108.121956,13.75,1012.51056,0.0,78.09744,0.0 +2024-05-06 21:00:00,2.745906,6.47611,100.491425,103.39252,13.6,1012.80365,0.0,75.7525,0.0 +2024-05-06 22:00:00,3.3136082,7.0859013,95.19434,98.93051,13.5,1012.70123,0.0,73.47365,0.0 +2024-05-06 23:00:00,3.4014704,7.3437047,91.68465,96.253944,13.55,1012.90125,0.0,71.5224,1.0 +2024-05-07 00:00:00,4.501111,7.930952,91.273,95.06353,15.35,1013.25214,0.0,63.240322,1.0 +2024-05-07 01:00:00,3.0083218,4.3965893,111.44781,107.19863,17.9,1013.5251,0.0,54.88492,1.0 +2024-05-07 02:00:00,2.6627054,3.3301651,145.71307,138.65233,20.5,1013.5995,0.0,45.431404,1.0 +2024-05-07 03:00:00,3.4,4.243819,151.92761,145.56096,22.6,1012.8656,0.0,36.94279,1.0 +2024-05-07 04:00:00,4.0804415,5.056679,162.89719,155.4623,24.1,1012.01483,0.0,30.964893,1.0 +2024-05-07 05:00:00,4.570558,5.565968,169.91946,162.21602,24.9,1010.74725,0.0,27.538284,1.0 +2024-05-07 06:00:00,5.1088157,6.4629717,176.6336,171.99536,25.2,1009.86273,0.0,28.695013,1.0 +2024-05-07 07:00:00,5.813777,7.467262,176.05489,172.30405,24.3,1009.7389,0.0,43.076824,1.0 +2024-05-07 08:00:00,5.5145264,7.0859013,175.84044,171.06949,23.9,1009.7278,0.0,46.523094,1.0 +2024-05-07 09:00:00,5.7428217,7.7058415,187.00117,182.23112,22.55,1010.08716,0.0,59.820168,1.0 +2024-05-07 10:00:00,5.8034477,9.200543,181.97488,179.37726,20.45,1010.623,0.0,72.31891,0.0 +2024-05-07 11:00:00,4.8373547,8.188407,172.87508,171.57312,20.05,1010.8099,0.0,76.05346,0.0 +2024-05-07 12:00:00,3.104835,6.3245554,165.06853,161.56496,19.35,1010.9883,0.0,80.96737,0.0 +2024-05-07 13:00:00,2.280351,5.656854,127.875046,135.0001,17.95,1011.54297,0.0,80.00384,0.0 +2024-05-07 14:00:00,2.8231187,6.780118,112.93214,127.208,17.9,1011.6408,0.0,57.536674,0.0 +2024-05-07 15:00:00,3.324154,7.4242845,111.16133,117.25525,17.95,1011.44385,0.0,49.070236,0.0 +2024-05-07 16:00:00,3.436568,7.668768,98.3658,102.042564,17.7,1011.2382,0.0,48.002506,0.0 +2024-05-07 17:00:00,4.4045434,9.035485,92.60251,95.07952,17.65,1011.0385,0.0,46.20312,0.0 +2024-05-07 18:00:00,5.0089917,9.912618,93.43356,92.89121,17.85,1010.6476,0.0,44.842644,0.0 +2024-05-07 19:00:00,5.3037724,10.104455,92.16103,91.70132,17.6,1010.54114,0.0,45.083538,0.0 +2024-05-07 20:00:00,6.0074954,11.016352,87.13766,86.87794,17.65,1010.0468,0.0,44.786133,0.0 +2024-05-07 21:00:00,6.207254,11.12205,87.22985,86.39161,17.65,1010.0468,0.0,45.41109,0.0 +2024-05-07 22:00:00,6.203225,11.016352,88.15243,86.87794,17.35,1010.03796,0.0,47.576374,0.0 +2024-05-07 23:00:00,6.0074954,10.82959,87.13766,85.76369,17.0,1010.42456,0.0,50.000763,1.0 +2024-05-08 00:00:00,6.1131005,10.248902,86.24835,84.40076,18.3,1011.0573,0.0,48.167973,1.0 +2024-05-08 01:00:00,6.3505907,8.994442,82.763176,81.68981,21.5,1010.95026,0.0,40.323254,1.0 +2024-05-08 02:00:00,6.609841,8.884255,79.540146,78.31066,23.6,1010.61224,0.0,34.893997,1.0 +2024-05-08 03:00:00,6.360031,8.411897,73.55955,71.99575,25.7,1009.8767,0.0,29.334383,1.0 +2024-05-08 04:00:00,5.8872743,7.632169,69.10216,68.47733,27.5,1009.0327,0.0,25.313438,1.0 +2024-05-08 05:00:00,5.4626,6.9354167,66.2505,65.28258,29.05,1007.9832,0.0,21.058714,1.0 +2024-05-08 06:00:00,5.7245083,7.4242845,62.98742,62.744755,30.2,1007.0219,0.0,17.4867,1.0 +2024-05-08 07:00:00,6.400781,8.459906,61.03244,61.01128,30.5,1006.13696,0.0,15.724739,1.0 +2024-05-08 08:00:00,5.7982755,8.077747,57.680416,58.671368,29.95,1006.02325,0.0,15.657116,1.0 +2024-05-08 09:00:00,3.2649658,5.7306194,62.65021,60.75127,28.95,1005.8975,0.0,17.131126,1.0 +2024-05-08 10:00:00,2.1023796,4.876474,87.27374,74.53873,24.55,1005.7782,0.0,22.514702,0.0 +2024-05-08 11:00:00,2.8,5.4744864,90.0,80.53775,23.15,1006.037,0.0,25.022627,0.0 +2024-05-08 12:00:00,3.5,6.537584,90.0,83.85348,22.35,1006.0149,0.0,26.26636,0.0 +2024-05-08 13:00:00,3.9293766,7.3979726,75.25639,76.715126,20.8,1006.86395,0.0,29.713156,0.0 +2024-05-08 14:00:00,4.7169905,9.062008,68.87521,67.963715,20.8,1006.7648,0.0,28.673634,0.0 +2024-05-08 15:00:00,5.636488,10.431683,64.79892,60.732105,21.2,1006.4785,0.0,26.801943,0.0 +2024-05-08 16:00:00,5.940539,10.893117,53.901627,46.487812,21.6,1006.29126,0.0,25.503962,0.0 +2024-05-08 17:00:00,6.155485,11.060289,46.97493,37.28441,21.95,1006.20197,0.0,22.559978,0.0 +2024-05-08 18:00:00,6.0307546,10.385568,49.70793,38.745987,22.1,1006.1072,0.0,20.70353,0.0 +2024-05-08 19:00:00,6.5802736,11.469089,53.65245,47.827198,21.6,1005.9937,0.0,23.300238,0.0 +2024-05-08 20:00:00,6.762396,11.967038,51.6048,48.04846,21.3,1006.1839,0.0,25.976807,0.0 +2024-05-08 21:00:00,6.7357254,11.951987,49.214275,46.016884,21.4,1006.5835,0.0,28.334612,0.0 +2024-05-08 22:00:00,6.9310894,12.169634,46.169064,43.002136,21.2,1007.1728,0.0,30.0385,0.0 +2024-05-08 23:00:00,7.1421285,12.531959,44.432816,42.08909,21.1,1007.8643,0.0,30.871344,1.0 +2024-05-09 00:00:00,7.017834,11.884864,40.955414,38.509266,22.05,1008.2876,0.0,29.64662,1.0 +2024-05-09 01:00:00,5.9033885,10.220078,38.81139,36.645744,24.35,1008.3515,0.0,27.290836,1.0 +2024-05-09 02:00:00,6.140033,8.372574,30.32353,29.32038,26.8,1008.7162,0.0,23.679247,1.0 +2024-05-09 03:00:00,5.9439044,7.81025,12.633354,13.324542,28.75,1008.5706,0.0,20.402103,1.0 +2024-05-09 04:00:00,5.6293874,7.2993145,347.692,350.53775,29.6,1007.5019,0.0,20.471798,1.0 +2024-05-09 05:00:00,4.992995,6.466065,302.7352,309.3517,29.15,1006.89465,0.0,22.917421,1.0 +2024-05-09 06:00:00,6.041523,8.032434,282.42593,288.88617,27.4,1006.947,0.0,35.7302,1.0 +2024-05-09 07:00:00,6.551336,9.265528,282.33908,288.2395,26.25,1007.2133,0.0,43.90333,1.0 +2024-05-09 08:00:00,5.9135437,8.692525,288.74142,293.0255,25.1,1007.6781,0.0,52.48673,1.0 +2024-05-09 09:00:00,5.3225937,7.6059184,295.60214,298.24963,24.1,1008.0473,0.0,59.038734,1.0 +2024-05-09 10:00:00,4.0496917,6.9339743,302.90524,303.23172,23.05,1008.51416,0.0,65.352806,0.0 +2024-05-09 11:00:00,2.8999999,5.59017,316.3971,312.82523,22.5,1009.09375,0.0,69.31074,0.0 +2024-05-09 12:00:00,2.3323808,5.108816,329.03632,319.7637,21.95,1009.07825,0.0,71.67067,0.0 +2024-05-09 13:00:00,1.7,4.167733,360.0,329.74365,20.9,1009.94135,0.0,71.02206,0.0 +2024-05-09 14:00:00,1.4560219,3.4885528,15.945477,332.7005,20.4,1009.7287,0.0,70.473625,0.0 +2024-05-09 15:00:00,1.7262677,2.828427,10.007925,315.0001,19.75,1009.61115,0.0,72.19273,0.0 +2024-05-09 16:00:00,1.746425,2.9410882,23.629398,342.18103,20.4,1009.43115,0.0,69.12342,0.0 +2024-05-09 17:00:00,1.6278821,3.2202485,10.61961,334.2307,20.0,1009.4198,0.0,72.00558,0.0 +2024-05-09 18:00:00,1.6155494,2.8792362,21.801476,339.6768,19.8,1009.5137,0.0,73.61101,0.0 +2024-05-09 19:00:00,2.3259406,3.9319208,25.463305,352.69434,19.95,1009.5177,0.0,74.11165,0.0 +2024-05-09 20:00:00,2.6832817,4.804165,26.564985,357.6141,20.3,1009.03174,0.0,72.7578,0.0 +2024-05-09 21:00:00,2.2472203,4.9365983,20.854538,353.01904,20.15,1008.92834,0.0,71.34038,0.0 +2024-05-09 22:00:00,2.1023796,4.418144,25.346138,354.80566,20.0,1009.4198,0.0,69.94423,0.0 +2024-05-09 23:00:00,2.302173,4.7675986,34.3804,9.659832,19.25,1009.99365,0.0,72.10213,1.0 +2024-05-10 00:00:00,3.1016126,4.7169905,20.772345,355.13556,20.9,1010.5365,0.0,64.265434,1.0 +2024-05-10 01:00:00,3.640055,6.0406957,20.924576,6.65433,25.1,1010.6538,0.0,44.018673,1.0 +2024-05-10 02:00:00,4.0199504,5.124451,354.2895,354.40076,27.85,1010.72864,0.0,35.975285,1.0 +2024-05-10 03:00:00,4.031129,5.1429563,330.25522,333.43503,29.2,1010.86426,0.0,34.15274,1.0 +2024-05-10 04:00:00,4.3462625,5.3851647,293.0255,301.32864,29.5,1009.8801,0.0,34.236324,1.0 +2024-05-10 05:00:00,4.7265205,5.8240876,276.07236,285.94547,29.15,1009.1763,0.0,36.458015,1.0 +2024-05-10 06:00:00,5.3600373,6.8883963,255.96373,260.81125,27.3,1009.5233,0.0,49.46107,1.0 +2024-05-10 07:00:00,4.7675986,6.33877,260.34018,263.6599,26.3,1009.8928,0.0,54.504772,1.0 +2024-05-10 08:00:00,4.652956,6.129437,261.34753,264.3825,25.8,1010.4744,0.0,60.194202,1.0 +2024-05-10 09:00:00,2.2472205,2.996665,237.72438,244.2901,24.6,1010.44147,0.0,66.72021,1.0 +2024-05-10 10:00:00,1.2041595,2.842534,221.63345,230.71062,22.95,1010.9909,0.0,76.74973,0.0 +2024-05-10 11:00:00,1.2529964,2.6870058,208.61037,224.9999,23.25,1011.7926,0.0,77.03583,0.0 +2024-05-10 12:00:00,1.7720045,3.275668,196.38962,211.26367,23.05,1011.5889,0.0,79.94005,0.0 +2024-05-10 13:00:00,2.3537204,3.04795,192.26476,221.00899,20.65,1011.8187,0.0,88.3245,0.0 +2024-05-10 14:00:00,2.0615528,4.9819674,202.8337,218.48022,21.35,1012.136,0.0,89.76689,0.0 +2024-05-10 15:00:00,2.7658634,5.6302757,192.5288,199.72237,21.35,1012.33435,0.0,92.02112,0.0 +2024-05-10 16:00:00,2.4020824,4.8093657,177.6141,183.57626,21.3,1012.0355,0.0,89.76321,0.0 +2024-05-10 17:00:00,2.0615528,4.244997,112.833694,136.90913,20.85,1012.122,0.0,90.85482,0.0 +2024-05-10 18:00:00,1.7492856,4.0360875,120.963684,138.01286,20.65,1012.2154,0.0,91.40942,0.0 +2024-05-10 19:00:00,2.4738634,4.2296567,75.96373,96.78888,20.6,1012.1147,0.0,90.83823,0.0 +2024-05-10 20:00:00,2.9546573,5.7567353,66.03751,72.82401,20.5,1012.40936,0.0,89.70409,0.0 +2024-05-10 21:00:00,2.624881,5.2630787,72.25524,75.69969,20.15,1012.39954,0.0,89.678055,0.0 +2024-05-10 22:00:00,2.280351,4.5891175,74.74483,78.6901,20.5,1012.8061,0.0,86.93885,0.0 +2024-05-10 23:00:00,2.5079873,5.3712196,66.50142,65.8209,20.5,1013.302,0.0,86.12401,1.0 +2024-05-11 00:00:00,2.8160257,5.2000003,73.49557,67.3801,21.55,1013.53033,0.0,80.23839,1.0 +2024-05-11 01:00:00,2.624881,6.519202,72.25524,69.34101,23.25,1013.97473,0.0,71.23022,1.0 +2024-05-11 02:00:00,2.5632012,3.4539833,69.44388,67.8905,26.85,1014.27264,0.0,50.46141,1.0 +2024-05-11 03:00:00,1.3000001,1.9235384,67.3801,62.10283,28.5,1013.62286,0.0,39.62802,1.0 +2024-05-11 04:00:00,0.36055514,0.22360681,236.3099,26.564985,28.95,1012.74243,0.0,34.99458,1.0 +2024-05-11 05:00:00,3.6124785,3.9824615,221.63345,218.8845,28.05,1011.9243,0.0,50.292984,1.0 +2024-05-11 06:00:00,5.011986,6.2177167,208.61037,207.80136,26.9,1011.6949,0.0,59.694817,1.0 +2024-05-11 07:00:00,5.7271285,7.6295476,192.09474,190.57347,25.9,1011.6676,0.0,60.598045,1.0 +2024-05-11 08:00:00,4.8259716,6.61211,185.94676,183.46815,25.8,1011.66473,0.0,55.607365,1.0 +2024-05-11 09:00:00,4.110961,5.8694124,175.81517,171.1797,24.85,1011.6387,0.0,61.907036,1.0 +2024-05-11 10:00:00,3.9115217,7.1589108,175.60138,167.90526,23.15,1011.59143,0.0,71.43662,0.0 +2024-05-11 11:00:00,4.031129,7.605919,156.61476,155.11966,22.35,1011.66833,0.0,72.42792,0.0 +2024-05-11 12:00:00,3.8078864,7.529276,150.06857,149.68887,21.7,1011.5508,0.0,72.77313,0.0 +2024-05-11 13:00:00,3.6055512,7.324616,146.3099,147.82881,21.5,1012.04126,0.0,70.45537,0.0 +2024-05-11 14:00:00,3.3301651,7.0434365,138.65233,141.34016,20.9,1011.8258,0.0,71.93783,0.0 +2024-05-11 15:00:00,3.482815,7.1505246,129.17365,132.16582,20.6,1011.61884,0.0,70.5114,0.0 +2024-05-11 16:00:00,2.8653097,6.4350605,119.24873,122.94922,20.3,1011.3128,0.0,70.68207,0.0 +2024-05-11 17:00:00,2.2472203,5.6462374,110.854546,112.93214,19.75,1010.8013,0.0,73.8396,0.0 +2024-05-11 18:00:00,1.9313208,5.2201533,111.25058,106.699326,19.7,1010.89923,0.0,73.357,0.0 +2024-05-11 19:00:00,2.376973,6.067125,104.62092,98.530685,19.5,1010.1992,0.0,71.21978,0.0 +2024-05-11 20:00:00,3.224903,7.5133214,82.875084,80.03627,19.7,1009.8083,0.0,60.127407,0.0 +2024-05-11 21:00:00,4.1231055,8.720665,67.16631,63.435013,20.15,1009.72174,0.0,47.377014,0.0 +2024-05-11 22:00:00,5.0249376,9.904545,58.840755,54.865738,20.95,1009.6454,0.0,37.23587,0.0 +2024-05-11 23:00:00,6.021628,10.846658,54.46224,49.112328,21.75,1009.9655,0.0,31.605892,1.0 +2024-05-12 00:00:00,6.8249545,11.526057,50.94686,45.351475,22.35,1009.7838,0.0,28.399754,1.0 +2024-05-12 01:00:00,6.0811186,13.946325,44.999897,38.59567,24.15,1009.43713,0.0,27.427275,1.0 +2024-05-12 02:00:00,6.670832,10.182829,40.135426,38.220486,26.5,1009.3034,0.0,21.91696,1.0 +2024-05-12 03:00:00,7.0213957,9.847335,35.727493,34.658417,28.4,1008.95795,0.0,17.813663,1.0 +2024-05-12 04:00:00,7.602631,10.375452,26.564985,26.31802,30.45,1007.52466,0.0,14.623388,1.0 +2024-05-12 05:00:00,7.826238,10.331021,26.564985,27.061035,31.25,1006.25604,0.0,14.9046545,1.0 +2024-05-12 06:00:00,6.3953104,8.453402,26.965645,27.474344,31.5,1005.86554,0.0,14.64163,1.0 +2024-05-12 07:00:00,5.636488,7.4732857,25.201094,24.507391,31.6,1005.27313,0.0,14.197414,1.0 +2024-05-12 08:00:00,5.5036354,7.539231,24.702408,21.801476,31.15,1004.9635,0.0,14.203069,1.0 +2024-05-12 09:00:00,4.0718546,6.854196,24.67685,23.198618,30.15,1004.6398,0.0,15.312223,1.0 +2024-05-12 10:00:00,2.5806975,3.828838,35.537766,40.763515,26.1,1004.7295,0.0,20.605341,0.0 +2024-05-12 11:00:00,2.1931713,2.8231187,294.22772,292.93213,22.5,1005.52313,0.0,33.988266,0.0 +2024-05-12 12:00:00,3.238827,7.227724,261.11942,255.5792,22.65,1006.0231,0.0,61.40793,0.0 +2024-05-12 13:00:00,2.2203603,4.924429,125.837746,156.0375,21.0,1005.5804,0.0,71.955956,0.0 +2024-05-12 14:00:00,1.3000001,1.6401219,67.3801,127.568665,19.85,1005.15106,0.0,65.51633,0.0 +2024-05-12 15:00:00,1.5811387,1.7720045,34.69522,16.389616,19.25,1004.4398,0.0,61.021706,0.0 +2024-05-12 16:00:00,2.0615528,3.667424,22.833694,348.9965,18.35,1004.11646,0.0,61.83031,0.0 +2024-05-12 17:00:00,1.9697715,4.382921,336.0375,304.7779,17.8,1004.6958,0.0,69.97589,0.0 +2024-05-12 18:00:00,0.6324555,1.9849433,18.435053,229.08571,19.95,1004.1622,0.0,72.22886,0.0 +2024-05-12 19:00:00,2.0024984,2.9154758,87.13766,157.8336,17.3,1003.39233,0.0,86.08151,0.0 +2024-05-12 20:00:00,1.5652475,2.529822,63.435013,108.43504,17.6,1003.8967,0.0,80.47503,0.0 +2024-05-12 21:00:00,1.4764823,2.2561028,61.69934,102.80426,18.25,1004.0146,0.0,70.75414,0.0 +2024-05-12 22:00:00,4.924429,6.8183575,77.09259,94.205284,19.5,1003.85205,0.0,65.4415,0.0 +2024-05-12 23:00:00,3.2015622,5.821512,75.52967,85.07298,19.65,1004.05457,0.4,62.128807,1.0 +2024-05-13 00:00:00,4.219004,6.503076,84.55976,91.76235,20.25,1004.3691,0.0,61.455223,1.0 +2024-05-13 01:00:00,1.2806249,0.41231057,231.34016,104.03627,20.65,1005.37213,0.4,77.616196,1.0 +2024-05-13 02:00:00,2.2825425,2.657066,208.8107,199.79897,21.95,1005.11096,0.0,71.21653,1.0 +2024-05-13 03:00:00,3.544009,4.3011627,253.61038,252.40749,23.1,1005.5398,0.0,63.716087,1.0 +2024-05-13 04:00:00,2.863564,3.354102,245.22488,243.43501,23.05,1004.3483,0.0,59.74477,1.0 +2024-05-13 05:00:00,1.9697715,2.2847319,246.0375,246.80139,22.85,1003.25165,0.0,63.661324,1.0 +2024-05-13 06:00:00,1.3601471,1.421267,233.97253,230.71062,23.9,1002.98303,0.0,59.75231,1.0 +2024-05-13 07:00:00,3.2649655,3.720215,220.0302,216.25392,23.45,1003.1692,0.0,65.02268,1.0 +2024-05-13 08:00:00,3.9597979,4.9517674,224.9999,223.36346,22.15,1003.5296,0.0,74.71833,1.0 +2024-05-13 09:00:00,3.3615475,4.4777226,210.37904,209.42737,20.9,1003.49475,0.0,79.64576,1.0 +2024-05-13 10:00:00,1.5132746,3.0805843,187.59456,193.13403,20.2,1003.6733,0.0,82.63392,0.0 +2024-05-13 11:00:00,0.8544004,1.1401755,69.44387,105.25517,19.7,1004.2544,0.0,84.69505,0.0 +2024-05-13 12:00:00,1.7691805,1.5,312.70938,306.86996,18.6,1004.22284,2.1,89.84602,0.0 +2024-05-13 13:00:00,2.1260293,4.0459857,41.185837,39.98684,19.0,1005.52356,0.0,89.87547,0.0 +2024-05-13 14:00:00,3.9357338,6.8,62.783974,61.92762,19.15,1005.72626,0.0,63.253216,0.0 +2024-05-13 15:00:00,4.3908997,7.600658,59.93151,57.35538,18.95,1005.42303,0.0,61.968445,0.0 +2024-05-13 16:00:00,3.8418746,6.8767724,51.34017,49.12768,18.8,1004.8236,0.0,63.17467,0.0 +2024-05-13 17:00:00,3.758989,7.0491138,61.389645,58.3393,18.5,1004.41846,0.0,66.309456,0.0 +2024-05-13 18:00:00,3.920459,7.2346387,52.253136,49.484695,18.4,1004.8123,0.0,68.27865,0.0 +2024-05-13 19:00:00,3.5608988,6.935416,51.842735,47.337337,17.65,1004.0966,0.0,72.99559,0.0 +2024-05-13 20:00:00,3.0528674,6.4070277,58.392544,55.813835,17.2,1004.4804,0.0,75.84007,0.0 +2024-05-13 21:00:00,1.6278821,4.2201896,42.510403,36.326923,16.05,1004.9429,0.0,81.5884,0.0 +2024-05-13 22:00:00,1.746425,3.8948684,66.37061,48.122223,16.15,1005.4415,0.0,81.06961,0.0 +2024-05-13 23:00:00,3.679674,6.185467,47.20262,34.460888,16.35,1006.43915,0.1,82.16107,1.0 +2024-05-14 00:00:00,3.7215588,5.672742,59.300358,49.28924,17.4,1006.5686,0.1,80.97108,1.0 +2024-05-14 01:00:00,3.436568,4.90408,98.3658,92.33726,19.8,1006.7367,0.0,66.36565,1.0 +2024-05-14 02:00:00,4.0447497,5.178803,81.46932,79.99209,21.35,1007.0778,0.0,60.122063,1.0 +2024-05-14 03:00:00,4.1231055,5.239275,67.16631,66.37061,22.75,1006.8194,0.0,55.56499,1.0 +2024-05-14 04:00:00,3.49285,4.4777226,66.37061,66.29735,23.4,1005.4488,0.0,53.59698,1.0 +2024-05-14 05:00:00,2.8178005,3.535534,62.525658,61.26031,24.0,1005.0688,0.0,49.873043,1.0 +2024-05-14 06:00:00,2.7018514,3.4058774,87.87895,86.63361,24.5,1004.9835,0.0,48.40011,1.0 +2024-05-14 07:00:00,3.1256998,3.9204593,82.64771,84.14409,24.35,1005.37585,0.0,48.996693,1.0 +2024-05-14 08:00:00,4.7759814,6.103278,70.42679,71.86183,23.6,1005.95044,0.4,52.098675,1.0 +2024-05-14 09:00:00,2.9120438,4.1761227,74.054535,73.300674,21.15,1006.477,0.5,65.15776,1.0 +2024-05-14 10:00:00,1.9646883,4.4598203,75.25639,70.346085,20.25,1007.0469,0.0,68.42696,0.0 +2024-05-14 11:00:00,1.8248286,3.275668,99.46225,77.660934,18.9,1007.70245,0.0,74.894905,0.0 +2024-05-14 12:00:00,1.6124516,2.9732137,150.2552,137.72638,18.4,1007.98584,0.0,78.026955,0.0 +2024-05-14 13:00:00,3.49285,6.928925,66.37061,69.73422,18.8,1008.8897,0.0,71.32092,0.0 +2024-05-14 14:00:00,2.5961509,5.6320515,74.3577,73.49557,18.15,1009.4661,0.0,74.28449,0.0 +2024-05-14 15:00:00,2.2022717,5.261178,92.60251,81.25392,17.4,1009.6428,0.0,76.86903,0.0 +2024-05-14 16:00:00,2.3,5.423099,90.0,84.710014,16.9,1009.3308,0.0,78.311325,0.0 +2024-05-14 17:00:00,2.7658634,6.334824,77.4712,78.15795,16.7,1009.0276,0.0,79.05279,0.0 +2024-05-14 18:00:00,3.1953092,6.8622155,69.86362,71.30093,16.45,1009.2186,0.0,79.795746,0.0 +2024-05-14 19:00:00,3.0,6.5276337,90.0,84.7262,16.05,1009.50446,0.0,80.527466,0.0 +2024-05-14 20:00:00,2.7166157,5.9682493,83.659904,81.32691,15.5,1009.7858,0.0,82.59421,0.0 +2024-05-14 21:00:00,2.2022717,5.346027,87.3975,82.47627,14.95,1010.16626,0.0,85.00426,0.0 +2024-05-14 22:00:00,2.6019223,5.714018,87.79745,85.98591,14.75,1011.0527,0.0,86.10633,0.0 +2024-05-14 23:00:00,3.1575305,6.576473,79.04598,81.25392,14.7,1011.44806,0.0,86.384346,1.0 +2024-05-15 00:00:00,3.8118236,6.9584484,85.4861,82.56869,16.4,1011.59705,0.0,77.7256,1.0 +2024-05-15 01:00:00,3.5014284,5.500909,91.63654,88.9584,19.25,1011.67957,0.0,66.033585,1.0 +2024-05-15 02:00:00,4.004997,5.3037724,92.86235,92.16103,22.0,1011.95605,0.0,55.01509,1.0 +2024-05-15 03:00:00,4.295346,5.5108986,102.09474,101.5138,23.8,1011.7086,0.0,47.42498,1.0 +2024-05-15 04:00:00,4.9648767,6.397656,117.597206,114.96276,25.4,1010.7612,0.0,40.74289,1.0 +2024-05-15 05:00:00,4.327817,5.5803227,130.31403,126.25393,25.7,1009.8767,0.0,38.715534,1.0 +2024-05-15 06:00:00,3.5510561,4.527693,147.65259,136.78989,25.25,1009.9635,0.0,40.29722,1.0 +2024-05-15 07:00:00,3.482815,4.5343137,140.82635,131.42357,25.85,1009.7816,0.0,37.991238,1.0 +2024-05-15 08:00:00,3.9698865,5.186521,130.91429,123.996506,25.75,1009.77875,0.0,36.838295,1.0 +2024-05-15 09:00:00,3.7735925,5.727128,122.00535,114.775116,24.9,1010.2513,0.0,38.8785,1.0 +2024-05-15 10:00:00,2.2627418,5.0249376,135.0001,121.15924,23.15,1010.7979,0.0,44.95247,0.0 +2024-05-15 11:00:00,2.5079873,5.235456,156.50142,151.47697,21.4,1011.4433,0.0,56.325855,0.0 +2024-05-15 12:00:00,3.088689,6.2241464,150.9455,156.3179,20.35,1011.4135,0.0,71.37734,0.0 +2024-05-15 13:00:00,3.1827662,6.6030297,133.72705,144.86572,19.8,1012.0922,0.0,71.73735,0.0 +2024-05-15 14:00:00,2.5553863,5.7999997,120.57915,136.39711,18.9,1012.26447,0.0,75.38054,0.0 +2024-05-15 15:00:00,2.2472203,5.234501,110.854546,133.45189,18.1,1011.94415,0.0,75.985725,0.0 +2024-05-15 16:00:00,2.1213202,4.763402,98.13002,129.0355,17.45,1011.5284,0.0,73.922325,0.0 +2024-05-15 17:00:00,2.5179358,5.408327,96.84268,123.6901,17.3,1011.42505,0.0,69.64865,0.0 +2024-05-15 18:00:00,3.0066593,6.369458,93.814,112.135544,17.55,1011.4324,0.0,63.736145,0.0 +2024-05-15 19:00:00,3.4058774,6.9231496,86.63361,100.82296,17.4,1011.32874,0.0,62.231503,0.0 +2024-05-15 20:00:00,4.4553337,8.836288,80.960594,84.805664,17.2,1011.52136,0.0,62.812775,0.0 +2024-05-15 21:00:00,4.554119,8.945389,81.15827,84.22577,16.95,1011.51404,0.0,66.20043,0.0 +2024-05-15 22:00:00,4.8259716,9.234717,84.05324,85.03035,16.8,1012.1046,0.0,70.47783,0.0 +2024-05-15 23:00:00,5.0249376,9.633276,84.2895,85.23644,17.0,1012.6062,0.0,72.16331,1.0 +2024-05-16 00:00:00,5.414795,9.518929,85.76369,86.3862,18.5,1013.1456,0.0,66.96682,1.0 +2024-05-16 01:00:00,4.90408,7.800641,92.33726,90.734505,21.15,1013.2212,0.0,56.078735,1.0 +2024-05-16 02:00:00,5.308484,7.1028166,93.23964,91.6135,23.8,1013.39484,0.0,45.281815,1.0 +2024-05-16 03:00:00,6.1032777,8.1154175,88.12216,86.46777,26.1,1013.06165,0.0,35.841824,1.0 +2024-05-16 04:00:00,6.61211,8.720665,86.531845,86.05489,27.2,1012.2983,0.0,33.1459,1.0 +2024-05-16 05:00:00,6.5,8.5,90.0,90.0,27.95,1011.62427,0.0,31.616941,1.0 +2024-05-16 06:00:00,6.61211,8.514693,93.46816,93.366394,28.3,1011.13745,0.0,29.853342,1.0 +2024-05-16 07:00:00,6.736468,8.845903,95.96439,95.83939,28.15,1010.93524,0.0,29.611229,1.0 +2024-05-16 08:00:00,6.6272163,8.945389,95.19434,95.77424,27.6,1011.2179,0.0,30.268646,1.0 +2024-05-16 09:00:00,5.7035074,8.609298,92.009514,92.66295,26.65,1011.6882,0.0,32.43977,1.0 +2024-05-16 10:00:00,4.4011364,7.8,88.69808,90.0,24.85,1012.13464,0.0,36.707314,0.0 +2024-05-16 11:00:00,3.0066593,6.61211,86.186005,86.531845,23.3,1012.6869,0.0,41.109123,0.0 +2024-05-16 12:00:00,2.7294688,6.2201285,98.42689,94.610565,21.85,1013.1421,0.0,45.499752,0.0 +2024-05-16 13:00:00,3.7854989,7.787811,102.200455,102.608604,21.3,1013.3249,0.0,44.437904,0.0 +2024-05-16 14:00:00,3.9319208,8.238932,97.30567,95.572105,20.65,1013.3064,0.0,46.09284,0.0 +2024-05-16 15:00:00,4.1231055,8.318653,104.03627,99.68872,19.95,1013.2864,0.0,48.45596,0.0 +2024-05-16 16:00:00,4.3737855,8.697701,100.53913,98.59583,19.25,1013.06805,0.0,50.438046,0.0 +2024-05-16 17:00:00,4.6389656,9.1350975,97.43131,95.02399,18.85,1012.9575,0.0,51.53749,0.0 +2024-05-16 18:00:00,5.124451,9.812747,95.59925,92.92066,18.75,1012.95465,0.0,51.8605,0.0 +2024-05-16 19:00:00,5.6035705,10.401922,92.045364,88.89832,18.75,1012.7563,0.0,51.336826,0.0 +2024-05-16 20:00:00,5.5036354,10.239629,87.91749,84.95764,18.55,1012.75055,0.0,52.336086,0.0 +2024-05-16 21:00:00,5.813777,10.592922,86.05489,82.40546,18.25,1012.64246,0.0,54.789738,0.0 +2024-05-16 22:00:00,6.2201285,11.101802,85.38944,82.234924,18.1,1012.8366,0.0,57.200867,0.0 +2024-05-16 23:00:00,6.618912,11.584905,85.66777,83.05912,17.95,1013.5264,0.0,59.51136,1.0 +2024-05-17 00:00:00,7.045566,11.936499,83.48029,81.32691,19.0,1013.9533,0.0,56.85221,1.0 +2024-05-17 01:00:00,7.752419,11.4982605,83.333435,82.50424,22.05,1014.33777,0.0,46.169514,1.0 +2024-05-17 02:00:00,7.9429216,11.021797,79.11452,78.486206,24.4,1014.4036,0.0,42.25418,1.0 +2024-05-17 03:00:00,8.509407,11.458621,70.07433,69.03421,26.4,1013.9627,0.0,40.485703,1.0 +2024-05-17 04:00:00,8.723532,11.583177,64.90378,63.877445,27.9,1013.2098,0.0,37.074615,1.0 +2024-05-17 05:00:00,8.364807,11.053506,62.209652,61.34827,28.9,1012.5424,0.0,34.181866,1.0 +2024-05-17 06:00:00,7.829432,10.335377,61.798473,61.69934,29.35,1012.35614,0.0,32.86618,1.0 +2024-05-17 07:00:00,7.379024,9.794896,63.435013,62.65021,29.55,1012.1631,0.0,30.705881,1.0 +2024-05-17 08:00:00,7.111259,9.749359,64.15567,63.172203,29.05,1012.3481,0.0,31.18676,1.0 +2024-05-17 09:00:00,6.2769423,9.402128,67.52052,66.161255,28.05,1012.71796,0.0,33.27276,1.0 +2024-05-17 10:00:00,5.0921507,8.766413,70.49747,69.290886,26.35,1013.0686,0.0,36.639202,0.0 +2024-05-17 11:00:00,4.808326,8.603488,73.07241,70.30129,25.25,1013.53436,0.0,39.10747,0.0 +2024-05-17 12:00:00,4.7296934,8.572631,76.55138,73.0446,24.4,1013.90765,0.0,40.86953,0.0 +2024-05-17 13:00:00,5.2086463,9.563472,86.698204,83.39526,23.45,1013.7821,0.0,43.41568,0.0 +2024-05-17 14:00:00,6.576473,11.458621,81.25392,80.45554,23.3,1013.97626,0.0,41.525635,0.0 +2024-05-17 15:00:00,7.324616,12.472369,75.77401,74.18075,23.2,1014.07263,0.0,39.58492,0.0 +2024-05-17 16:00:00,7.937884,13.296616,70.88018,68.83867,23.05,1013.77094,0.0,39.54239,0.0 +2024-05-17 17:00:00,8.207923,13.616534,67.80967,66.63564,22.8,1013.8631,0.0,39.471428,0.0 +2024-05-17 18:00:00,8.1939,13.641848,66.2505,64.37419,22.4,1013.8517,0.0,39.626255,0.0 +2024-05-17 19:00:00,8.234683,13.774252,65.61364,63.249,21.85,1013.7371,0.0,40.422802,0.0 +2024-05-17 20:00:00,8.234683,13.640015,65.61364,63.435013,21.15,1013.7171,0.0,41.90608,0.0 +2024-05-17 21:00:00,8.185964,13.641848,64.68715,62.49585,20.55,1013.9979,0.0,42.166374,0.0 +2024-05-17 22:00:00,8.5,13.819551,64.94241,62.878777,20.0,1014.37866,0.0,42.44492,0.0 +2024-05-17 23:00:00,8.676405,14.089003,64.025665,62.525658,19.55,1014.8618,0.0,43.050953,1.0 +2024-05-18 00:00:00,9.078547,13.782961,63.15279,61.389645,20.2,1015.4754,0.0,41.068058,1.0 +2024-05-18 01:00:00,8.868484,12.776933,60.255207,59.420856,22.3,1015.8324,0.0,35.73474,1.0 +2024-05-18 02:00:00,8.935883,12.317467,58.26653,57.600174,24.5,1015.8943,0.0,30.336014,1.0 +2024-05-18 03:00:00,8.800568,12.0,53.781075,53.13002,26.55,1015.35547,0.0,26.673586,1.0 +2024-05-18 04:00:00,8.221922,10.978616,48.94529,48.323223,28.2,1014.6068,0.0,24.21607,1.0 +2024-05-18 05:00:00,7.2862887,9.548298,46.668293,46.272964,29.2,1013.84033,0.0,22.85127,1.0 +2024-05-18 06:00:00,6.224147,8.134495,46.301884,46.49429,29.7,1013.3576,0.0,21.745163,1.0 +2024-05-18 07:00:00,5.456189,7.017834,48.715385,49.044586,29.7,1013.1592,0.0,21.37121,1.0 +2024-05-18 08:00:00,4.9406476,6.5,54.057793,53.13002,29.1,1013.34143,0.0,22.04748,1.0 +2024-05-18 09:00:00,3.8078864,6.074537,60.068577,57.094753,27.8,1013.5048,0.0,24.026728,1.0 +2024-05-18 10:00:00,3.1622777,6.5551505,71.564964,68.52315,25.15,1013.82904,0.0,27.703348,0.0 +2024-05-18 11:00:00,4.060788,7.930952,80.07382,76.138954,23.6,1014.2821,0.0,29.770615,0.0 +2024-05-18 12:00:00,4.535416,8.91852,75.96373,72.37762,22.75,1014.65497,0.0,30.583942,0.0 +2024-05-18 13:00:00,3.7696154,7.915807,68.19853,63.75871,21.75,1014.8254,0.0,31.605892,0.0 +2024-05-18 14:00:00,3.51141,7.6967525,70.01681,65.432846,20.7,1014.8946,0.0,33.35562,0.0 +2024-05-18 15:00:00,4.472136,8.973851,79.69521,75.80887,19.9,1014.7728,0.0,35.168507,0.0 +2024-05-18 16:00:00,5.8189344,10.920164,70.94221,69.075424,19.95,1014.5757,0.0,34.692482,0.0 +2024-05-18 17:00:00,6.2649817,11.403946,65.48038,63.435013,19.9,1014.277,0.0,33.83434,0.0 +2024-05-18 18:00:00,6.5299315,11.697008,62.65021,59.708397,19.65,1014.26965,0.0,34.242104,0.0 +2024-05-18 19:00:00,6.847627,12.073938,61.189304,58.548,19.3,1014.1603,0.0,34.87204,0.0 +2024-05-18 20:00:00,7.03278,12.287392,60.15416,56.95658,19.05,1014.054,0.0,35.294716,0.0 +2024-05-18 21:00:00,7.0491138,12.314625,58.3393,55.922764,18.6,1014.2393,0.0,36.4292,0.0 +2024-05-18 22:00:00,7.324616,12.56702,57.828808,55.04526,18.15,1014.42474,0.0,37.869698,0.0 +2024-05-18 23:00:00,7.6550636,12.903488,56.725105,54.46224,17.75,1014.8099,0.0,38.561653,1.0 +2024-05-19 00:00:00,8.266196,12.720062,55.348618,53.31019,18.5,1015.0299,0.0,36.52888,1.0 +2024-05-19 01:00:00,7.7801027,11.401754,52.83545,52.124958,20.95,1015.1003,0.0,32.048298,1.0 +2024-05-19 02:00:00,8.221922,11.402192,48.94529,48.199623,23.3,1014.96814,0.0,26.154924,1.0 +2024-05-19 03:00:00,8.202439,11.1731825,44.999897,44.27486,25.4,1014.3321,0.0,21.401909,1.0 +2024-05-19 04:00:00,7.7336926,10.282509,40.279785,40.661648,26.9,1013.4804,0.0,18.295086,1.0 +2024-05-19 05:00:00,6.466065,8.527602,39.35174,39.289394,28.05,1012.6188,0.0,15.968313,1.0 +2024-05-19 06:00:00,5.0447993,6.5436993,39.36931,38.79657,28.75,1012.241,0.0,14.463535,1.0 +2024-05-19 07:00:00,4.244997,5.448853,43.09086,42.768803,28.9,1012.04645,0.0,13.62119,1.0 +2024-05-19 08:00:00,3.04795,4.031129,48.99101,46.005,28.45,1012.4311,0.0,13.575699,1.0 +2024-05-19 09:00:00,1.5,3.231099,90.0,68.19853,26.15,1012.96405,0.0,17.594769,1.0 +2024-05-19 10:00:00,2.3323808,3.2557642,120.96369,100.619606,22.05,1013.5443,0.0,21.306276,0.0 +2024-05-19 11:00:00,2.236068,4.6,100.30479,90.0,21.55,1013.72864,0.0,21.80668,0.0 +2024-05-19 12:00:00,3.5171013,7.2780495,75.17348,77.30042,21.5,1013.92566,0.0,21.873508,0.0 +2024-05-19 13:00:00,4.244997,8.464632,74.98159,75.63538,20.5,1013.9962,0.0,23.259617,0.0 +2024-05-19 14:00:00,3.8626416,7.8549347,68.74943,68.333984,20.0,1013.88275,0.0,24.077465,0.0 +2024-05-19 15:00:00,3.8626416,7.8924017,68.74943,67.65931,19.15,1013.56104,0.0,25.197554,0.0 +2024-05-19 16:00:00,4.0804415,8.450444,72.89719,69.20581,18.9,1013.35535,0.0,25.313618,0.0 +2024-05-19 17:00:00,4.1785164,8.766413,68.96242,64.311905,18.4,1013.3411,0.0,26.406637,0.0 +2024-05-19 18:00:00,4.204759,8.819297,64.65388,60.819298,18.1,1013.4317,0.0,27.80869,0.0 +2024-05-19 19:00:00,4.5177426,9.106591,62.30063,58.928413,17.9,1013.3267,0.0,29.74025,0.0 +2024-05-19 20:00:00,5.3,9.96243,58.10924,54.395382,18.0,1013.1313,0.0,31.654026,0.0 +2024-05-19 21:00:00,6.1220913,10.846658,51.632477,49.112328,18.4,1013.24194,0.0,32.927464,0.0 +2024-05-19 22:00:00,6.3031735,11.245,48.215576,46.080845,18.25,1013.53503,0.0,34.938515,0.0 +2024-05-19 23:00:00,6.4443774,11.455131,48.14505,44.999897,17.7,1014.2133,0.0,37.47311,1.0 +2024-05-20 00:00:00,7.076722,11.810588,47.290634,43.970943,18.45,1014.7311,0.0,36.772938,1.0 +2024-05-20 01:00:00,6.6843095,12.233151,51.072456,45.33116,20.3,1014.38727,0.0,33.240715,1.0 +2024-05-20 02:00:00,6.9310894,9.767292,43.83095,42.510403,22.95,1014.66077,0.0,28.367308,1.0 +2024-05-20 03:00:00,6.762396,9.060353,38.395203,37.375893,25.1,1014.42303,0.0,23.897495,1.0 +2024-05-20 04:00:00,5.8830266,7.8549347,31.798878,31.464104,26.0,1013.85266,0.0,21.556538,1.0 +2024-05-20 05:00:00,4.792703,6.0926185,23.355589,23.198618,27.25,1013.1924,0.0,18.645763,1.0 +2024-05-20 06:00:00,3.5341196,4.3863425,25.114815,24.227736,27.9,1012.41614,0.0,16.824095,1.0 +2024-05-20 07:00:00,2.34094,3.0463092,19.983198,23.198618,28.0,1012.3198,0.0,16.248991,1.0 +2024-05-20 08:00:00,1.2041595,1.8384775,48.366554,44.999897,27.4,1012.40283,0.0,16.586426,1.0 +2024-05-20 09:00:00,1.5811387,2.209072,124.69522,95.19434,24.9,1012.7311,0.0,25.767801,1.0 +2024-05-20 10:00:00,2.2472205,3.4525354,122.27562,100.00792,22.0,1012.9479,0.0,24.799116,0.0 +2024-05-20 11:00:00,2.1,5.021952,90.0,77.34745,21.3,1013.3249,0.0,25.605495,0.0 +2024-05-20 12:00:00,2.640076,6.328507,65.37646,58.5705,20.75,1013.90436,0.0,26.580963,0.0 +2024-05-20 13:00:00,3.6674242,7.3783464,64.133705,57.17146,19.1,1014.6504,0.0,31.18165,0.0 +2024-05-20 14:00:00,3.5341196,6.87968,64.8852,57.46495,18.65,1014.836,0.0,32.76518,0.0 +2024-05-20 15:00:00,3.4539833,6.621178,67.8905,64.98315,17.65,1014.41034,0.0,35.38965,0.0 +2024-05-20 16:00:00,3.2695565,6.706713,66.5713,69.943825,17.0,1014.0937,0.0,36.87346,0.0 +2024-05-20 17:00:00,3.6687872,7.18401,72.55273,73.835434,16.9,1013.8926,0.0,36.84431,0.0 +2024-05-20 18:00:00,4.1231055,8.149233,75.96373,75.793205,16.6,1013.7847,0.0,36.234566,0.0 +2024-05-20 19:00:00,4.0521603,8.228001,74.248764,73.76758,16.6,1013.48724,0.0,34.9577,0.0 +2024-05-20 20:00:00,4.3965893,8.731552,72.80138,69.904686,16.6,1013.38806,0.0,34.707165,0.0 +2024-05-20 21:00:00,4.808326,9.176056,73.07241,69.59004,16.5,1013.38495,0.0,35.180622,0.0 +2024-05-20 22:00:00,5.186521,9.585406,70.866264,66.64442,16.45,1013.4828,0.0,35.675117,0.0 +2024-05-20 23:00:00,5.515433,10.06479,67.61982,62.162018,16.6,1013.7847,0.0,35.975933,0.0 +2024-05-21 00:00:00,5.948109,10.377379,63.00425,57.99466,17.7,1014.2133,0.0,34.40817,1.0 +2024-05-21 01:00:00,5.5461698,12.231926,64.35905,55.660294,19.8,1014.6708,0.0,31.831758,1.0 +2024-05-21 02:00:00,5.4589376,8.077747,61.55718,58.671368,22.25,1014.8393,0.0,27.579014,1.0 +2024-05-21 03:00:00,5.4644303,7.300685,55.43741,53.914837,24.25,1014.3994,0.0,24.181448,1.0 +2024-05-21 04:00:00,4.8270073,6.3031735,50.04252,48.215576,25.95,1013.55347,0.0,21.163364,1.0 +2024-05-21 05:00:00,3.676955,4.596738,44.999897,44.118694,27.5,1012.5046,0.0,17.598894,1.0 +2024-05-21 06:00:00,2.5942245,3.224903,62.447273,60.255207,27.9,1011.821,0.0,16.702929,1.0 +2024-05-21 07:00:00,2.302173,3.0149627,92.4895,84.2895,27.9,1011.4242,0.0,16.462912,1.0 +2024-05-21 08:00:00,2.3259406,3.1320918,115.46331,106.699326,27.2,1011.50476,0.0,16.66054,1.0 +2024-05-21 09:00:00,1.3601471,3.3615475,143.97253,120.37905,25.2,1011.64825,0.0,20.230705,1.0 +2024-05-21 10:00:00,1.9849433,4.606517,139.08571,117.12123,21.6,1011.64703,0.0,24.424137,0.0 +2024-05-21 11:00:00,2.6925821,6.239391,105.06854,96.441505,21.6,1012.2421,0.0,22.303743,0.0 +2024-05-21 12:00:00,3.3136082,7.467262,84.805664,82.30404,21.4,1012.5343,0.0,20.523016,0.0 +2024-05-21 13:00:00,3.324154,6.7,83.08887,90.0,19.55,1012.7792,0.0,24.758875,0.0 +2024-05-21 14:00:00,3.5128336,6.736468,85.101,95.96439,18.55,1012.8497,0.0,26.838245,0.0 +2024-05-21 15:00:00,3.8052595,7.406079,86.98728,92.32148,18.0,1012.7346,0.0,28.395197,0.0 +2024-05-21 16:00:00,4.0112343,8.102469,85.71093,88.58562,17.75,1012.3306,0.0,28.635866,0.0 +2024-05-21 17:00:00,3.9204593,8.105554,84.14409,87.87895,17.85,1011.83765,0.0,27.434996,0.0 +2024-05-21 18:00:00,4.110961,8.205485,85.81516,87.90479,17.75,1011.4381,0.0,27.106846,0.0 +2024-05-21 19:00:00,4.527693,8.827797,83.659904,85.45205,17.6,1011.037,0.0,27.364302,0.0 +2024-05-21 20:00:00,4.9365983,9.533625,83.019035,85.18654,17.3,1010.83,0.0,28.195995,0.0 +2024-05-21 21:00:00,5.2392745,9.982485,76.75947,79.02781,16.6,1010.90894,0.0,29.69168,0.0 +2024-05-21 22:00:00,5.8189344,10.751743,70.94221,71.564964,16.4,1011.0021,0.0,28.98821,0.0 +2024-05-21 23:00:00,5.9615436,10.825894,67.306175,64.855255,16.25,1011.29517,0.0,27.28392,0.0 +2024-05-22 00:00:00,5.948109,10.358571,63.00425,59.226032,17.25,1011.721,0.0,24.307577,1.0 +2024-05-22 01:00:00,5.4120235,11.74138,62.48809,54.00841,19.55,1011.9858,0.0,20.27291,1.0 +2024-05-22 02:00:00,4.8877397,7.1021123,59.23736,57.652576,22.65,1011.87494,0.0,16.202991,1.0 +2024-05-22 03:00:00,4.62277,6.1073728,51.146618,50.31459,25.05,1011.24725,0.0,13.60928,1.0 +2024-05-22 04:00:00,4.5343137,5.8137765,48.57643,49.185013,26.55,1010.09814,0.0,11.36914,1.0 +2024-05-22 05:00:00,3.720215,4.743417,53.74608,55.304783,27.2,1009.22327,0.0,10.695295,1.0 +2024-05-22 06:00:00,2.8653097,3.758989,60.75127,61.389645,27.45,1008.6347,0.0,10.34023,1.0 +2024-05-22 07:00:00,1.3038405,1.8439089,122.471176,102.5288,27.0,1008.2259,0.0,10.217355,1.0 +2024-05-22 08:00:00,3.275668,4.1593266,192.33908,189.68872,25.6,1008.1876,0.0,20.625826,1.0 +2024-05-22 09:00:00,4.295346,6.8593006,192.09474,187.53935,23.05,1008.415,0.0,45.67901,1.0 +2024-05-22 10:00:00,4.5,8.4053545,180.0,177.95464,20.8,1008.55005,0.0,60.584236,0.0 +2024-05-22 11:00:00,4.0706263,8.338465,152.176,157.43295,20.05,1008.9255,0.0,52.55444,0.0 +2024-05-22 12:00:00,4.318565,8.962701,132.18437,144.53656,19.4,1009.1052,0.0,36.532486,0.0 +2024-05-22 13:00:00,3.710795,7.7077885,104.03627,112.90581,17.2,1009.43884,0.0,33.291767,0.0 +2024-05-22 14:00:00,4.14367,8.856636,81.67444,83.51703,16.65,1009.52185,0.0,21.889671,0.0 +2024-05-22 15:00:00,4.570558,9.254189,79.919464,83.796646,16.9,1009.3308,0.0,20.507156,0.0 +2024-05-22 16:00:00,4.707441,9.254189,77.735245,83.796646,16.6,1009.12384,0.0,20.821896,0.0 +2024-05-22 17:00:00,4.753946,8.881442,75.37909,82.234924,15.95,1008.8074,0.0,21.951487,0.0 +2024-05-22 18:00:00,4.9477267,9.178235,75.96373,78.6901,15.55,1008.20074,0.0,22.606188,0.0 +2024-05-22 19:00:00,5.0289164,9.712363,72.64589,73.24418,15.4,1007.998,0.0,22.394138,0.0 +2024-05-22 20:00:00,5.2201533,10.056838,69.82927,70.84429,15.3,1007.6973,0.0,22.112339,0.0 +2024-05-22 21:00:00,5.4781384,10.36195,68.58697,67.8905,15.3,1007.49896,0.0,22.281847,0.0 +2024-05-22 22:00:00,5.6859474,10.599056,66.139824,63.676777,15.1,1007.1958,0.0,23.00432,0.0 +2024-05-22 23:00:00,5.6797886,10.6550455,63.886147,60.788807,14.9,1007.28894,0.0,23.659637,0.0 +2024-05-23 00:00:00,5.994164,10.547511,62.152523,58.5705,16.0,1007.6187,0.0,23.075266,1.0 +2024-05-23 01:00:00,5.235456,11.370136,61.47699,50.710617,18.9,1008.00006,0.0,20.718515,1.0 +2024-05-23 02:00:00,4.6647615,8.0,59.03632,53.13002,22.6,1007.50964,0.0,17.385138,1.0 +2024-05-23 03:00:00,4.4553337,5.9396963,45.909298,44.999897,25.35,1007.387,0.0,14.73741,1.0 +2024-05-23 04:00:00,4.248529,5.3665633,26.564985,26.564985,26.95,1006.8356,0.0,12.486678,1.0 +2024-05-23 05:00:00,3.4525354,4.3931766,10.007925,11.821464,27.75,1005.76624,0.0,10.923399,1.0 +2024-05-23 06:00:00,2.158703,2.8160255,346.60748,353.88458,27.9,1004.97626,0.0,10.424008,1.0 +2024-05-23 07:00:00,1.1401755,1.6763055,322.12494,342.64587,27.35,1004.26746,0.0,10.929932,1.0 +2024-05-23 08:00:00,3.008322,4.0261645,254.57777,255.61856,25.75,1004.52155,0.0,26.089575,1.0 +2024-05-23 09:00:00,3.757659,6.530697,244.7989,244.61214,22.65,1005.1305,0.0,48.059795,1.0 +2024-05-23 10:00:00,2.158703,3.764306,193.39252,219.61066,20.05,1005.2559,0.0,61.207787,0.0 +2024-05-23 11:00:00,2.3345234,2.9681644,189.86574,212.61923,19.2,1005.6284,0.0,69.11175,0.0 +2024-05-23 12:00:00,2.1095023,2.7294688,148.57048,188.42688,18.8,1006.11285,0.0,72.25468,0.0 +2024-05-23 13:00:00,1.9104973,1.8357561,96.00892,150.64235,16.95,1006.3573,0.0,65.542145,0.0 +2024-05-23 14:00:00,1.5132746,1.6401219,82.40546,142.43134,17.1,1006.2623,0.0,53.208683,0.0 +2024-05-23 15:00:00,1.7720045,2.529822,73.61038,108.43504,17.15,1005.768,0.0,44.489376,0.0 +2024-05-23 16:00:00,1.6552945,2.5,64.98315,106.26028,16.5,1005.15405,0.0,43.078983,0.0 +2024-05-23 17:00:00,1.9209373,2.0880613,51.34017,73.300674,15.95,1004.64246,0.0,41.28371,0.0 +2024-05-23 18:00:00,2.0124612,2.3537204,63.435013,77.735245,14.1,1004.0925,0.0,42.997746,0.0 +2024-05-23 19:00:00,1.9416488,2.2022715,55.491425,39.47243,14.3,1003.99896,0.0,39.503635,0.0 +2024-05-23 20:00:00,2.3600848,2.751363,53.61555,19.093594,14.6,1003.7104,0.0,35.38956,0.0 +2024-05-23 21:00:00,2.7018511,4.2579336,38.990997,9.462261,15.55,1003.7384,0.0,30.830751,0.0 +2024-05-23 22:00:00,2.607681,4.304649,32.471172,357.33707,14.7,1003.9118,0.0,31.500822,0.0 +2024-05-23 23:00:00,2.2825425,3.8078866,28.810698,346.32867,14.7,1004.7051,0.0,30.810598,0.0 +2024-05-24 00:00:00,2.4738634,4.0496917,14.036275,327.09476,16.25,1005.64264,0.0,28.52163,1.0 +2024-05-24 01:00:00,2.6925824,3.1320918,21.801476,343.3007,19.7,1006.0396,0.0,24.261301,1.0 +2024-05-24 02:00:00,2.3194828,2.942788,7.4313188,350.21765,22.95,1006.23004,0.0,28.467304,1.0 +2024-05-24 03:00:00,2.3706539,2.8653097,332.3541,330.75128,24.5,1005.9754,0.0,35.149727,1.0 +2024-05-24 04:00:00,2.996665,3.6715121,295.7099,299.35767,25.45,1005.40607,0.0,31.667496,1.0 +2024-05-24 05:00:00,4.318565,5.261178,275.31445,278.74606,25.55,1005.1113,0.0,36.90533,1.0 +2024-05-24 06:00:00,4.4102154,5.4451814,273.90042,277.38596,25.2,1004.804,0.0,41.91917,1.0 +2024-05-24 07:00:00,4.925444,6.152235,275.82623,277.47147,24.65,1004.88837,0.0,45.51546,1.0 +2024-05-24 08:00:00,4.9648767,6.4938436,279.27252,279.75235,23.65,1005.25745,0.0,52.967407,1.0 +2024-05-24 09:00:00,3.9849718,5.8523498,287.52567,286.88687,22.65,1005.8247,0.0,58.314587,1.0 +2024-05-24 10:00:00,2.505993,5.3712196,298.61035,294.1791,20.95,1005.7774,0.0,67.03695,0.0 +2024-05-24 11:00:00,1.9104972,4.8764744,312.8789,298.1415,19.7,1006.2379,0.0,75.02781,0.0 +2024-05-24 12:00:00,2.0,4.527693,323.13,300.52963,18.95,1006.81146,0.0,79.62853,0.0 +2024-05-24 13:00:00,1.9313208,4.5,338.74942,306.86996,18.4,1007.2916,0.0,79.29573,0.0 +2024-05-24 14:00:00,2.0615528,4.6861496,345.9637,309.8055,18.1,1007.4814,0.0,80.542366,0.0 +2024-05-24 15:00:00,2.0615528,4.967897,345.9637,310.10083,17.9,1007.7732,0.0,81.5614,0.0 +2024-05-24 16:00:00,2.158703,5.0328918,346.60748,310.97165,17.75,1007.66956,0.0,82.86757,0.0 +2024-05-24 17:00:00,2.2022717,4.883646,357.3975,317.4896,17.65,1007.66675,0.0,84.20077,0.0 +2024-05-24 18:00:00,2.3345234,4.770744,9.865748,326.97614,17.5,1007.5632,0.0,84.18398,0.0 +2024-05-24 19:00:00,2.745906,5.1,10.491434,331.9276,17.25,1007.655,0.0,85.79983,0.0 +2024-05-24 20:00:00,2.3345234,4.8259716,9.865748,325.9806,17.15,1007.7514,0.0,86.344246,0.0 +2024-05-24 21:00:00,2.5495098,4.837354,11.3098955,330.25522,17.1,1007.9482,0.0,86.61789,0.0 +2024-05-24 22:00:00,2.3537204,4.7169905,12.26477,327.99466,17.2,1008.2488,0.0,86.62748,0.0 +2024-05-24 23:00:00,2.404163,4.472136,16.927603,333.43503,17.1,1008.9399,0.0,87.73998,0.0 +2024-05-25 00:00:00,2.8,4.62277,360.0,321.1466,18.8,1009.5839,0.0,80.3779,1.0 +2024-05-25 01:00:00,2.9546573,4.14367,293.9625,289.74692,21.1,1010.2446,0.0,77.43808,1.0 +2024-05-25 02:00:00,4.016217,5.0921507,288.88617,289.50253,21.7,1010.85645,0.3,74.64359,1.0 +2024-05-25 03:00:00,3.981206,4.924429,281.59213,282.9074,22.25,1010.9712,0.3,72.86992,1.0 +2024-05-25 04:00:00,3.9204593,4.7169905,264.14407,265.13556,22.6,1010.88196,0.2,71.56203,1.0 +2024-05-25 05:00:00,3.5468295,4.3081317,248.4985,248.19853,22.9,1010.59265,0.1,68.73144,1.0 +2024-05-25 06:00:00,3.6715121,4.4777226,240.64233,240.57263,23.0,1010.0995,0.2,67.45483,1.0 +2024-05-25 07:00:00,3.6891732,4.5221677,237.17146,234.90411,22.8,1010.3916,0.0,67.414406,1.0 +2024-05-25 08:00:00,3.3421547,4.1231055,231.07245,230.90614,22.65,1010.68475,0.0,66.107285,1.0 +2024-05-25 09:00:00,2.9832866,3.905125,219.55963,219.80553,21.9,1011.3581,0.0,67.66341,1.0 +2024-05-25 10:00:00,1.7,3.6359317,208.07239,211.50421,20.55,1011.7168,0.0,73.26999,0.0 +2024-05-25 11:00:00,2.1377556,3.1953092,190.78426,200.13638,18.7,1012.15955,0.0,82.18836,0.0 +2024-05-25 12:00:00,2.2825425,2.6,151.1893,180.0,17.8,1012.3319,0.0,86.131165,0.0 +2024-05-25 13:00:00,2.1931713,2.7892652,136.8476,165.4655,16.85,1012.9987,0.0,89.42787,0.0 +2024-05-25 14:00:00,1.5811388,3.001666,108.43504,150.01845,16.75,1012.9956,0.0,88.56091,0.0 +2024-05-25 15:00:00,2.109502,3.764306,95.44024,129.61066,16.4,1012.8863,0.0,89.97136,0.0 +2024-05-25 16:00:00,2.5019991,4.429447,87.70944,118.30067,16.25,1012.5843,0.0,90.542496,0.0 +2024-05-25 17:00:00,2.0099752,4.0249224,84.2895,116.56499,15.65,1012.46765,0.0,91.38385,0.0 +2024-05-25 18:00:00,2.184033,4.0521603,74.054535,105.75124,15.3,1012.5563,0.0,91.65828,0.0 +2024-05-25 19:00:00,2.5553863,4.669047,59.420856,80.13426,15.1,1012.6497,0.0,91.943954,0.0 +2024-05-25 20:00:00,2.6925824,5.1623635,68.19853,81.08515,15.05,1012.7473,0.0,91.345406,0.0 +2024-05-25 21:00:00,2.84605,5.375872,71.564964,80.36253,14.9,1012.9412,0.0,91.33578,0.0 +2024-05-25 22:00:00,2.6683328,5.0487623,77.00539,82.03049,14.65,1013.13226,0.0,92.21682,0.0 +2024-05-25 23:00:00,2.8160257,5.1195703,73.49557,77.5926,14.55,1013.6252,0.0,92.211,0.0 +2024-05-26 00:00:00,3.6055512,5.597321,70.559875,71.24126,15.7,1013.85754,0.0,88.47313,1.0 +2024-05-26 01:00:00,3.0413814,5.4341516,80.53775,77.24247,19.4,1014.4607,0.0,77.179115,1.0 +2024-05-26 02:00:00,2.3086793,3.3376637,85.03035,81.38444,22.4,1014.3476,0.0,61.74769,1.0 +2024-05-26 03:00:00,1.1,1.4317821,90.0,77.90526,24.35,1013.9061,0.0,54.71534,1.0 +2024-05-26 04:00:00,0.8062258,0.50990194,240.2552,258.6901,25.55,1013.0467,0.0,48.997826,1.0 +2024-05-26 05:00:00,3.1241,3.2015622,230.19447,231.34016,25.65,1012.0573,0.0,52.123352,1.0 +2024-05-26 06:00:00,5.060632,6.140033,217.77574,217.05661,24.5,1011.52997,0.0,59.133293,1.0 +2024-05-26 07:00:00,5.1312766,6.4350605,213.07068,212.94922,23.9,1011.31476,0.0,59.37076,1.0 +2024-05-26 08:00:00,4.3829217,5.770615,207.1496,207.89719,23.2,1011.59296,0.0,59.779984,1.0 +2024-05-26 09:00:00,3.992493,5.4781384,202.06795,201.41304,22.25,1011.963,0.0,64.55845,1.0 +2024-05-26 10:00:00,3.4014704,6.200806,178.31535,180.92403,20.75,1012.3175,0.0,73.77483,0.0 +2024-05-26 11:00:00,3.613862,6.609841,165.5792,169.54015,20.15,1012.6971,0.0,77.540855,0.0 +2024-05-26 12:00:00,3.1384711,6.3245554,157.52052,161.56496,19.65,1013.0795,0.0,79.72582,0.0 +2024-05-26 13:00:00,2.6172504,5.8309517,133.45189,149.03632,18.3,1013.2391,0.0,85.631744,0.0 +2024-05-26 14:00:00,2.2671568,5.507268,131.42357,150.64235,17.75,1013.12396,0.0,88.92724,0.0 +2024-05-26 15:00:00,2.640076,5.663921,114.62355,137.86247,17.65,1012.8236,0.0,90.35053,0.0 +2024-05-26 16:00:00,2.3537204,5.2630787,102.26476,128.82983,17.15,1012.5115,0.0,92.06557,0.0 +2024-05-26 17:00:00,2.8160255,5.818075,96.11541,118.767555,16.95,1012.109,0.0,91.75961,0.0 +2024-05-26 18:00:00,2.630589,5.769748,98.74608,115.67677,16.6,1011.8014,0.0,91.15088,0.0 +2024-05-26 19:00:00,2.5179358,5.5036354,96.84268,114.70241,16.15,1011.4906,0.0,91.12146,0.0 +2024-05-26 20:00:00,2.5,5.3160133,90.0,106.38962,15.7,1011.3784,0.0,91.683014,0.0 +2024-05-26 21:00:00,2.6172504,5.375872,83.41815,99.637474,15.4,1011.17126,0.0,91.664474,0.0 +2024-05-26 22:00:00,2.7018514,5.59017,87.87895,100.30479,15.15,1011.16394,0.0,91.05556,0.0 +2024-05-26 23:00:00,2.7073975,5.7428217,85.76369,97.001175,14.9,1011.5529,0.0,90.743,0.0 +2024-05-27 00:00:00,3.535534,6.000833,81.86999,90.95482,15.9,1011.68164,0.0,86.22108,1.0 +2024-05-27 01:00:00,2.745906,5.9008474,79.50858,89.029,18.45,1012.2518,0.0,77.53204,1.0 +2024-05-27 02:00:00,2.0099752,3.0066593,95.7105,93.814,21.4,1012.0384,0.0,62.9325,1.0 +2024-05-27 03:00:00,1.3453624,1.7204651,138.01286,125.537766,23.5,1011.40283,0.0,50.894615,1.0 +2024-05-27 04:00:00,1.3000001,1.3341664,202.6199,192.99461,24.6,1010.24304,0.0,46.560814,1.0 +2024-05-27 05:00:00,2.8999999,3.1890438,223.60289,221.18582,24.85,1009.25806,0.0,48.970413,1.0 +2024-05-27 06:00:00,4.5,5.3009434,216.86998,215.78906,23.95,1008.7374,0.0,55.504463,1.0 +2024-05-27 07:00:00,4.1340055,5.1312766,212.15227,213.07068,23.45,1008.5252,0.0,54.665585,1.0 +2024-05-27 08:00:00,3.4,4.118252,208.07239,209.0545,22.85,1008.31,0.0,55.77117,1.0 +2024-05-27 09:00:00,3.275668,4.535416,192.33908,194.03627,21.5,1008.3716,0.0,62.95483,1.0 +2024-05-27 10:00:00,2.3,4.704253,180.0,182.4366,19.65,1008.4183,0.0,75.01955,0.0 +2024-05-27 11:00:00,2.0615528,4.6270943,165.96373,173.79665,19.0,1008.5979,0.0,80.66277,0.0 +2024-05-27 12:00:00,2.147091,4.753946,152.24155,165.37909,18.55,1008.7836,0.0,83.49603,0.0 +2024-05-27 13:00:00,1.9209373,4.4598203,141.34016,160.34608,18.25,1008.87396,0.0,85.08068,0.0 +2024-05-27 14:00:00,2.0518284,4.5694637,133.02507,156.80139,17.9,1008.7649,0.0,85.59081,0.0 +2024-05-27 15:00:00,2.2825425,4.6872168,118.8107,146.3099,17.65,1008.2618,0.0,85.017075,0.0 +2024-05-27 16:00:00,2.1023796,4.548626,115.34614,146.65927,17.4,1007.6595,0.0,85.81504,0.0 +2024-05-27 17:00:00,1.9235384,4.3829217,117.89718,152.8504,17.15,1007.0572,0.0,88.59409,0.0 +2024-05-27 18:00:00,2.0124612,4.472136,116.56499,153.43501,16.95,1006.6548,0.0,90.30095,0.0 +2024-05-27 19:00:00,2.5079873,3.9446166,85.42616,120.46546,16.8,1006.3529,0.0,90.871895,0.0 +2024-05-27 20:00:00,1.9924859,3.1780498,72.47434,114.14554,16.15,1006.334,0.0,92.00661,0.0 +2024-05-27 21:00:00,1.8384776,2.640076,67.61982,114.62355,15.8,1006.22473,0.0,92.28324,0.0 +2024-05-27 22:00:00,2.1931713,2.745906,65.77226,100.491425,15.7,1005.8252,0.0,92.27751,0.0 +2024-05-27 23:00:00,2.4596748,2.9,63.435013,90.0,15.7,1005.9244,0.0,91.091896,0.0 +2024-05-28 00:00:00,3.0528674,2.886174,58.392544,75.96373,17.05,1006.0627,0.0,84.95304,1.0 +2024-05-28 01:00:00,1.6278821,1.0816654,42.510403,56.3099,19.75,1006.4375,0.0,74.55546,1.0 +2024-05-28 02:00:00,1.2206556,1.421267,325.0079,320.7106,20.9,1006.17255,0.0,70.79471,1.0 +2024-05-28 03:00:00,2.9,3.4014704,270.0,271.68463,21.85,1005.50507,0.2,66.791725,1.0 +2024-05-28 04:00:00,3.8052595,4.704253,266.98727,267.56342,21.9,1004.7129,0.2,67.01648,1.0 +2024-05-28 05:00:00,4.539824,5.6435804,262.40546,262.8751,21.9,1003.82025,0.1,66.374985,1.0 +2024-05-28 06:00:00,5.936329,7.793587,237.38077,236.51381,19.05,1003.9383,2.9,76.38389,1.0 +2024-05-28 07:00:00,5.860034,7.5802374,233.32556,233.58353,18.55,1003.62665,0.1,77.54727,1.0 +2024-05-28 08:00:00,4.527693,6.0108232,226.78989,225.67395,17.75,1003.9011,0.4,85.301155,1.0 +2024-05-28 09:00:00,2.8999999,3.9623227,226.39711,227.04541,17.55,1003.9946,0.1,84.46109,1.0 +2024-05-28 10:00:00,3.88973,6.0827627,223.95847,223.66785,16.7,1004.4659,0.1,88.84246,0.0 +2024-05-28 11:00:00,3.2572994,5.0289164,197.87878,197.35411,16.35,1004.6541,0.4,90.25815,0.0 +2024-05-28 12:00:00,1.9104973,3.7,173.99109,180.0,15.6,1004.9297,0.1,94.38078,0.0 +2024-05-28 13:00:00,3.2015622,5.8258047,231.34016,230.57222,17.7,1004.5938,0.1,75.92114,0.0 +2024-05-28 14:00:00,5.5758405,8.875247,237.45,236.48895,17.9,1004.50055,0.1,69.995255,0.0 +2024-05-28 15:00:00,5.59017,9.078547,243.43501,243.15279,18.05,1004.20715,0.1,61.966927,0.0 +2024-05-28 16:00:00,5.905929,9.489468,241.69934,241.00414,17.8,1003.9024,0.0,63.369244,0.0 +2024-05-28 17:00:00,6.306346,9.929753,242.62238,242.40279,17.85,1003.60645,0.0,62.54269,0.0 +2024-05-28 18:00:00,6.9778223,10.688779,244.5367,243.91446,17.75,1003.60364,0.0,62.728474,0.0 +2024-05-28 19:00:00,8.348653,12.314625,235.73885,235.92276,16.6,1004.06635,0.1,67.014114,0.0 +2024-05-28 20:00:00,9.433981,13.928389,237.99466,237.90744,18.2,1004.01324,0.0,55.707584,0.0 +2024-05-28 21:00:00,8.845903,13.086252,227.29063,226.5481,15.9,1004.54175,0.0,70.53909,0.0 +2024-05-28 22:00:00,9.479451,13.865786,226.70978,226.75337,16.95,1004.67145,0.1,57.689606,0.0 +2024-05-28 23:00:00,9.484725,13.870832,222.43619,222.66266,16.7,1005.5567,0.0,55.89256,0.0 +2024-05-29 00:00:00,9.284934,13.25481,221.06972,221.02316,16.85,1006.4537,0.0,53.874035,1.0 +2024-05-29 01:00:00,8.602325,11.601724,215.53777,215.88223,17.45,1006.86743,0.1,59.191685,1.0 +2024-05-29 02:00:00,9.602083,12.903488,215.6765,215.53777,18.25,1007.5847,0.0,54.23801,1.0 +2024-05-29 03:00:00,8.640023,11.520851,217.00261,216.17372,18.75,1007.7976,0.0,47.963364,1.0 +2024-05-29 04:00:00,8.947066,11.811858,207.99706,208.30066,18.75,1007.59924,0.0,48.787834,1.0 +2024-05-29 05:00:00,8.276473,10.916501,205.01686,204.92174,19.25,1007.01843,0.0,46.01664,1.0 +2024-05-29 06:00:00,8.348653,11.005452,198.8691,199.09358,18.75,1006.905,0.0,48.45656,1.0 +2024-05-29 07:00:00,8.041144,10.733592,201.1399,201.30585,19.0,1007.1103,0.0,46.10441,1.0 +2024-05-29 08:00:00,7.884795,10.700468,195.44638,195.72481,18.25,1007.4856,0.0,49.65803,1.0 +2024-05-29 09:00:00,6.905071,9.749359,190.00792,190.04196,17.95,1007.87366,0.0,50.94891,1.0 +2024-05-29 10:00:00,5.508176,8.521151,183.12207,184.03763,17.1,1008.24567,0.0,54.49304,0.0 +2024-05-29 11:00:00,5.200961,8.20061,178.89832,180.69868,17.1,1008.64233,0.0,54.49304,0.0 +2024-05-29 12:00:00,4.110961,7.0007143,175.81517,179.18156,16.6,1008.82635,0.0,55.867077,0.0 +2024-05-29 13:00:00,2.6172504,5.1,173.41815,180.0,15.7,1009.6926,0.0,65.491104,0.0 +2024-05-29 14:00:00,2.6172504,5.1009803,173.41815,181.12328,15.4,1009.98126,0.0,68.58056,0.0 +2024-05-29 15:00:00,1.9646883,4.504442,165.2564,177.45525,14.7,1009.8615,0.1,74.42871,0.0 +2024-05-29 16:00:00,1.56205,3.6687872,140.19447,162.55272,13.75,1009.73413,0.1,80.21217,0.0 +2024-05-29 17:00:00,1.9235383,3.522783,98.97255,124.592354,13.35,1009.9204,0.1,83.431625,0.0 +2024-05-29 18:00:00,2.8160255,4.1231055,83.88459,104.03627,12.9,1010.0063,0.1,84.21759,0.0 +2024-05-29 19:00:00,2.0124612,2.1023796,63.435013,92.72626,13.0,1009.81085,0.1,83.11208,0.0 +2024-05-29 20:00:00,1.4866068,1.3000001,47.72637,22.61991,12.55,1009.4009,0.1,86.45802,0.0 +2024-05-29 21:00:00,1.17047,1.2,70.01681,90.0,11.7,1009.1769,0.0,89.9169,0.0 +2024-05-29 22:00:00,1.56205,1.4866068,39.805527,42.27363,11.95,1009.6803,0.0,88.74271,0.0 +2024-05-29 23:00:00,2.570992,3.7215588,13.495748,353.82993,11.85,1010.2724,0.0,86.38855,0.0 +2024-05-30 00:00:00,2.9529645,3.8209946,28.30066,6.0089183,13.05,1010.90314,0.0,80.38379,1.0 +2024-05-30 01:00:00,4.2,6.484597,360.0,342.96216,15.9,1011.18585,0.0,70.77437,1.0 +2024-05-30 02:00:00,3.6496572,4.609772,350.53775,347.4712,18.2,1011.4511,0.0,60.371933,1.0 +2024-05-30 03:00:00,3.679674,4.6010866,312.7974,312.3574,19.45,1011.487,0.0,52.396862,1.0 +2024-05-30 04:00:00,4.3011627,5.249762,287.5925,287.74475,19.7,1011.1967,0.1,52.992653,1.0 +2024-05-30 05:00:00,3.7,4.6,270.0,270.0,19.6,1010.4997,0.3,54.04117,1.0 +2024-05-30 06:00:00,3.748333,4.669047,260.78903,260.13425,19.35,1010.4924,0.0,53.9766,1.0 +2024-05-30 07:00:00,3.5902646,4.414748,257.125,256.9081,19.3,1010.3916,0.0,54.69144,1.0 +2024-05-30 08:00:00,2.720294,3.3241541,252.89719,254.29129,18.55,1010.66785,0.0,58.278736,1.0 +2024-05-30 09:00:00,1.7804494,2.9410884,231.84273,234.6887,17.75,1010.843,0.0,63.35799,1.0 +2024-05-30 10:00:00,1.6124516,3.4999998,209.7448,216.86998,15.95,1011.28656,0.0,73.417274,0.0 +2024-05-30 11:00:00,1.9924859,2.184033,162.47433,195.94547,14.9,1011.4538,0.0,80.37073,0.0 +2024-05-30 12:00:00,1.5297059,1.1661904,101.3099,149.03632,13.75,1011.7173,0.0,86.29024,0.0 +2024-05-30 13:00:00,1.8384776,2.147091,67.61982,62.24156,14.45,1011.83716,0.0,78.46366,0.0 +2024-05-30 14:00:00,2.2135942,2.657066,71.564964,70.20104,13.35,1011.90356,0.0,82.32709,0.0 +2024-05-30 15:00:00,2.2825425,2.8178005,61.189304,62.525658,13.0,1011.794,0.0,83.39007,0.0 +2024-05-30 16:00:00,1.9416488,2.7658632,55.491425,40.601215,12.7,1011.58673,0.0,83.354324,0.0 +2024-05-30 17:00:00,1.5811387,2.4351592,55.304783,19.179106,12.6,1011.3855,0.0,82.78581,0.0 +2024-05-30 18:00:00,1.3892444,1.9235383,59.743652,8.97255,12.55,1011.28485,0.0,81.675964,0.0 +2024-05-30 19:00:00,1.3038405,1.9026297,57.528828,356.98727,12.25,1011.1768,0.0,82.188126,0.0 +2024-05-30 20:00:00,2.7202942,3.443835,53.972538,25.820946,12.55,1010.9873,0.0,80.58528,0.0 +2024-05-30 21:00:00,4.110961,5.9076223,48.94529,33.959103,12.15,1010.8761,0.0,82.45245,0.0 +2024-05-30 22:00:00,4.1773195,6.6030297,47.91091,35.134277,12.25,1010.97845,0.0,81.91209,0.0 +2024-05-30 23:00:00,3.9623227,6.4404964,47.045418,36.158287,12.25,1011.3751,0.0,81.63687,0.0 +2024-05-31 00:00:00,4.4598207,7.262231,47.72637,38.290207,13.35,1011.8044,0.0,75.71113,1.0 +2024-05-31 01:00:00,3.679674,8.79659,47.20262,40.389275,16.75,1012.5989,0.0,62.71014,1.0 +2024-05-31 02:00:00,4.404543,6.1220913,39.47243,38.367523,19.65,1012.6828,0.0,50.03684,1.0 +2024-05-31 03:00:00,5.0289164,6.6098413,17.354122,17.61267,21.4,1012.2367,0.0,36.853016,1.0 +2024-05-31 04:00:00,4.3289723,5.5443664,6.6324186,7.253105,22.25,1011.66547,0.0,34.389763,1.0 +2024-05-31 05:00:00,3.6124783,4.604346,355.23645,357.5105,22.8,1010.68915,0.0,33.145046,1.0 +2024-05-31 06:00:00,3.2015622,3.981206,345.52966,348.40787,23.25,1010.00726,0.0,31.481726,1.0 +2024-05-31 07:00:00,2.9832869,3.8470767,346.42953,351.02744,23.45,1009.5171,0.0,29.624947,1.0 +2024-05-31 08:00:00,3.3,4.3011627,360.0,1.3321922,23.3,1009.3145,0.0,28.166721,1.0 +2024-05-31 09:00:00,1.8027756,4.031129,340.55988,352.87506,21.25,1009.3561,0.0,35.066525,1.0 +2024-05-31 10:00:00,2.109502,3.6496572,275.44025,279.46225,17.45,1009.3467,0.0,54.769077,0.0 +2024-05-31 11:00:00,3.026549,3.736308,262.40546,254.47583,15.6,1009.6895,0.0,70.2464,0.0 +2024-05-31 12:00:00,1.5264337,2.376973,301.60745,255.37909,19.35,1010.3932,0.0,54.339348,0.0 +2024-05-31 13:00:00,1.2083046,0.42426407,65.55606,135.0001,15.55,1011.0765,0.0,68.15253,0.0 +2024-05-31 14:00:00,1.4422206,1.431782,56.309914,65.22488,14.1,1010.8354,0.0,71.384895,0.0 +2024-05-31 15:00:00,1.6124516,1.8384776,60.255207,67.61982,13.0,1010.50494,0.0,75.908905,0.0 +2024-05-31 16:00:00,1.9723083,2.1023796,59.53454,64.65388,11.75,1009.8725,0.0,80.20325,0.0 +2024-05-31 17:00:00,2.5553863,3.2015622,59.420856,51.34017,10.95,1009.1545,0.0,79.00569,0.0 +2024-05-31 18:00:00,3.3241541,5.7280016,46.2188,16.220268,12.55,1008.9051,0.0,52.920506,0.0 +2024-05-31 19:00:00,3.7735925,7.244308,32.005356,6.3401003,14.15,1008.3576,0.0,40.613808,0.0 +2024-05-31 20:00:00,3.9661064,7.648529,33.6901,11.3098955,14.35,1008.06616,0.0,41.557182,0.0 +2024-05-31 21:00:00,4.560702,8.633076,37.875053,18.225176,14.4,1007.6711,0.0,42.17111,0.0 +2024-05-31 22:00:00,4.90408,9.303762,39.207188,25.463305,14.5,1007.7731,0.0,40.279896,0.0 +2024-05-31 23:00:00,5.517246,10.346497,43.53127,32.768505,14.3,1007.767,0.0,36.082188,0.0 +2024-06-01 00:00:00,6.3031735,11.06752,41.784435,32.82854,15.35,1008.1948,0.0,35.2251,1.0 +2024-06-01 01:00:00,6.7357254,13.069813,40.785725,31.865936,17.8,1008.4643,0.0,36.068665,1.0 +2024-06-01 02:00:00,5.685068,11.250777,39.289394,30.439642,20.75,1008.4495,0.0,32.104042,1.0 +2024-06-01 03:00:00,6.0373836,8.5,26.564985,25.05759,23.45,1007.73175,0.0,27.329865,1.0 +2024-06-01 04:00:00,6.806614,9.239589,10.154214,9.971998,25.65,1006.30414,0.0,24.643188,1.0 +2024-06-01 05:00:00,8.318653,11.296903,350.31128,349.28693,26.85,1004.7499,0.0,24.964886,1.0 +2024-06-01 06:00:00,8.185964,11.049435,334.68716,334.8265,27.25,1003.76874,0.0,23.798162,1.0 +2024-06-01 07:00:00,7.5166483,10.324728,326.94415,328.46524,27.1,1003.3678,0.0,24.092352,1.0 +2024-06-01 08:00:00,7.0035706,10.131634,316.73566,318.60138,26.15,1003.3423,0.0,29.05803,1.0 +2024-06-01 09:00:00,6.747592,10.64049,309.5881,310.426,23.85,1003.676,0.0,42.5239,1.0 +2024-06-01 10:00:00,6.2128897,10.381232,326.82147,324.01312,22.3,1003.7321,0.0,47.016205,0.0 +2024-06-01 11:00:00,4.3104525,8.570297,356.00916,348.559,21.25,1003.50446,0.0,47.999348,0.0 +2024-06-01 12:00:00,4.8507733,9.080198,351.70294,343.3611,21.45,1003.31177,0.0,41.002472,0.0 +2024-06-01 13:00:00,6.2513995,10.904127,352.6477,348.8962,22.3,1002.1452,0.0,31.103483,0.0 +2024-06-01 14:00:00,6.5253353,10.252805,344.89883,339.44388,20.6,1002.296,0.0,45.15217,0.0 +2024-06-01 15:00:00,8.065358,12.491998,342.68826,340.83972,20.5,1001.8965,0.0,56.473286,0.0 +2024-06-01 16:00:00,8.22253,13.228001,346.63977,343.75705,19.35,1001.2691,0.8,79.93941,0.0 +2024-06-01 17:00:00,7.762087,12.20041,338.06146,337.8497,18.65,1000.3568,3.3,88.436134,0.0 +2024-06-01 18:00:00,8.381527,13.186736,342.64587,341.42755,18.65,999.26587,3.7,88.9992,0.0 +2024-06-01 19:00:00,8.868484,13.6077175,299.74478,299.0136,19.0,999.67224,4.3,91.59381,0.0 +2024-06-01 20:00:00,7.8447433,11.708544,258.9766,259.16995,18.45,1000.2519,3.0,88.98326,0.0 +2024-06-01 21:00:00,5.1312766,8.127115,236.92932,235.52773,18.65,1000.7535,0.5,88.15575,0.0 +2024-06-01 22:00:00,7.224957,10.922454,221.63345,220.54431,18.3,1001.33844,5.0,85.631744,0.0 +2024-06-01 23:00:00,6.5604877,9.8234415,232.43134,231.61342,17.35,1002.50116,3.1,84.43905,0.0 +2024-06-02 00:00:00,6.4404964,9.860021,233.84172,233.24623,18.45,1003.3263,0.4,72.89984,1.0 +2024-06-02 01:00:00,7.692204,11.136426,243.76811,242.74475,16.2,1004.35223,1.7,80.54776,1.0 +2024-06-02 02:00:00,6.438167,8.84138,226.88817,226.37476,19.0,1004.631,0.1,67.73204,1.0 +2024-06-02 03:00:00,7.35391,9.687621,224.9999,225.41817,19.75,1004.75146,0.1,54.98959,1.0 +2024-06-02 04:00:00,7.0035706,9.196738,223.26433,223.23764,19.95,1004.7572,0.0,52.003204,1.0 +2024-06-02 05:00:00,7.2862887,9.548298,226.66829,226.27295,20.15,1004.66376,0.0,50.340122,1.0 +2024-06-02 06:00:00,7.5690155,9.903535,226.60596,226.63654,19.85,1004.75433,0.0,51.802795,1.0 +2024-06-02 07:00:00,7.993122,10.610373,223.47928,223.47253,19.55,1005.53937,0.0,51.89756,1.0 +2024-06-02 08:00:00,7.441102,10.131634,221.18584,221.39862,19.05,1006.4176,0.0,53.35837,1.0 +2024-06-02 09:00:00,5.841233,8.700575,218.04709,217.5285,18.55,1006.8002,0.0,55.609352,1.0 +2024-06-02 10:00:00,4.9406476,8.080223,215.9422,216.44453,18.05,1007.3807,0.0,58.15623,0.0 +2024-06-02 11:00:00,4.8826222,8.044874,214.9921,214.8754,18.1,1008.0764,0.0,59.74674,0.0 +2024-06-02 12:00:00,5.077401,8.268011,212.12497,212.15227,18.25,1008.5765,0.0,59.782623,0.0 +2024-06-02 13:00:00,4.9648767,8.127115,214.33028,214.47227,18.75,1009.18604,0.0,56.98008,0.0 +2024-06-02 14:00:00,4.9396353,8.045496,211.75943,212.30731,18.65,1009.4807,0.0,58.1089,0.0 +2024-06-02 15:00:00,4.382921,7.4632435,214.77791,215.18079,18.35,1009.7693,0.0,58.816704,0.0 +2024-06-02 16:00:00,3.6359317,6.3812227,211.50421,212.19571,18.25,1009.86566,0.0,67.13545,0.0 +2024-06-02 17:00:00,2.607681,5.5217752,212.47118,215.41714,17.35,1009.5422,0.0,68.74447,0.0 +2024-06-02 18:00:00,2.5612497,5.672742,218.65984,220.71075,17.15,1009.73474,0.0,66.68461,0.0 +2024-06-02 19:00:00,4.031129,6.809552,209.7448,209.95352,17.95,1009.9563,0.0,70.23503,0.0 +2024-06-02 20:00:00,3.1384711,5.9093146,202.47948,203.9625,17.5,1010.6374,0.0,73.20836,0.0 +2024-06-02 21:00:00,2.7730849,5.6824293,205.64096,208.36896,17.35,1010.93054,0.0,73.18179,0.0 +2024-06-02 22:00:00,2.641969,5.6302752,209.4758,213.40784,17.1,1011.22076,0.0,71.236755,0.0 +2024-06-02 23:00:00,2.505993,5.491812,208.61037,213.11136,16.8,1011.70795,0.0,70.01286,0.0 +2024-06-03 00:00:00,2.6400757,4.920366,217.30403,217.56866,18.5,1012.2531,0.0,65.44182,1.0 +2024-06-03 01:00:00,2.624881,3.733631,197.74477,200.37651,19.15,1013.1643,0.0,64.51381,1.0 +2024-06-03 02:00:00,3.0066593,3.7121422,183.814,184.63538,19.2,1013.85986,0.0,65.80711,1.0 +2024-06-03 03:00:00,2.8635643,3.5902646,192.09474,192.875,19.65,1013.97217,0.0,65.68783,1.0 +2024-06-03 04:00:00,2.996665,3.8013155,205.7099,206.56499,20.25,1013.4934,0.0,62.674194,1.0 +2024-06-03 05:00:00,3.443835,4.3382025,205.82094,205.97433,20.35,1013.09955,0.0,62.084885,1.0 +2024-06-03 06:00:00,3.8626416,4.846648,201.25058,201.80147,20.45,1012.5074,0.0,61.904984,1.0 +2024-06-03 07:00:00,3.9849718,4.9335585,197.52567,197.70052,20.15,1012.4988,0.0,63.892376,1.0 +2024-06-03 08:00:00,3.8078866,4.850773,193.67133,194.32275,19.85,1012.6884,0.0,65.09013,1.0 +2024-06-03 09:00:00,3.026549,4.652956,187.59456,188.65247,19.3,1012.9702,0.0,67.352104,1.0 +2024-06-03 10:00:00,2.1213202,4.6010866,171.86998,178.75467,17.85,1013.3252,0.0,74.47572,0.0 +2024-06-03 11:00:00,1.7492856,3.905125,149.03632,166.67546,16.7,1013.7876,0.0,80.09142,0.0 +2024-06-03 12:00:00,1.7888545,3.224903,116.56499,150.2552,15.95,1013.964,0.0,83.46295,0.0 +2024-06-03 13:00:00,1.8027756,2.0808651,86.82024,144.78232,15.0,1014.2336,0.0,85.00963,0.0 +2024-06-03 14:00:00,1.360147,2.236068,72.89719,116.56499,14.95,1014.43024,0.0,84.44804,0.0 +2024-06-03 15:00:00,1.746425,2.9614186,66.37061,101.68935,14.7,1014.22455,0.0,85.53769,0.0 +2024-06-03 16:00:00,2.1023796,3.224903,64.65388,97.12492,14.45,1014.217,0.0,86.076164,0.0 +2024-06-03 17:00:00,2.34094,3.436568,70.01681,98.3658,14.25,1014.21124,0.0,85.49071,0.0 +2024-06-03 18:00:00,2.720294,4.219004,72.89719,95.44024,14.0,1014.4019,0.0,86.03074,0.0 +2024-06-03 19:00:00,2.8160257,4.8,73.49557,90.0,13.85,1014.4966,0.0,87.1591,0.0 +2024-06-03 20:00:00,2.6925821,4.6,74.931465,90.0,13.7,1014.6905,0.0,88.30319,0.0 +2024-06-03 21:00:00,2.720294,4.501111,72.89719,91.273,13.6,1014.6876,0.0,89.172676,0.0 +2024-06-03 22:00:00,2.751363,4.504442,70.90642,87.45525,13.35,1014.9774,0.0,90.03997,0.0 +2024-06-03 23:00:00,2.7294688,4.464303,61.55718,74.407135,13.15,1015.4674,0.0,90.62188,0.0 +2024-06-04 00:00:00,3.3286633,4.9648767,57.264786,62.402794,14.1,1015.7934,0.0,86.610016,1.0 +2024-06-04 01:00:00,3.9962482,7.8492036,58.29862,55.904976,17.45,1015.8919,0.0,74.40769,1.0 +2024-06-04 02:00:00,3.764306,5.315073,50.389355,48.814175,19.45,1016.3466,0.0,67.38289,1.0 +2024-06-04 03:00:00,3.522783,4.604346,34.592358,34.3804,21.45,1016.1061,0.0,54.695423,1.0 +2024-06-04 04:00:00,2.2671568,2.8999999,41.42357,43.602894,22.4,1015.4386,0.0,49.119698,1.0 +2024-06-04 05:00:00,1.6492423,2.0880613,75.96373,73.300674,22.8,1014.5574,0.0,46.68527,1.0 +2024-06-04 06:00:00,1.3152945,1.8,98.74608,90.0,23.2,1013.9734,0.0,44.370987,1.0 +2024-06-04 07:00:00,1.0770329,1.2727922,158.19853,135.0001,23.05,1013.77094,0.0,42.87103,1.0 +2024-06-04 08:00:00,2.6925824,3.1320918,201.80147,196.69933,22.1,1013.7442,0.0,49.03895,1.0 +2024-06-04 09:00:00,3.5846896,5.3758717,202.98874,198.43504,20.25,1014.08844,0.0,67.10991,1.0 +2024-06-04 10:00:00,2.6076808,5.2086463,184.39862,183.3018,18.5,1014.3357,0.0,77.539665,0.0 +2024-06-04 11:00:00,1.9104972,4.080441,132.87889,143.97253,17.35,1014.7981,0.0,79.66196,0.0 +2024-06-04 12:00:00,2.0223749,3.945884,98.530685,98.74608,16.5,1015.17,0.0,73.51429,0.0 +2024-06-04 13:00:00,3.443835,7.2006946,64.17907,62.723324,16.05,1015.15686,0.0,65.566956,0.0 +2024-06-04 14:00:00,3.6235344,7.3355303,62.02062,62.387074,15.85,1015.64667,0.0,67.08126,0.0 +2024-06-04 15:00:00,3.8013155,7.3355303,63.435013,62.387074,15.35,1015.53284,0.0,69.49628,0.0 +2024-06-04 16:00:00,4.0249224,7.826238,63.435013,63.435013,14.95,1015.1243,0.0,71.30572,0.0 +2024-06-04 17:00:00,4.294182,8.249242,62.24156,59.393673,14.7,1015.0178,0.0,72.706535,0.0 +2024-06-04 18:00:00,4.1880784,8.01561,56.689358,49.55386,14.25,1014.9054,0.0,74.10228,0.0 +2024-06-04 19:00:00,4.3011627,8.207314,54.46224,46.97493,13.9,1014.49817,0.0,74.79138,0.0 +2024-06-04 20:00:00,4.4407206,8.627862,54.16227,45.939102,13.8,1014.3962,0.0,73.77501,0.0 +2024-06-04 21:00:00,4.5221677,8.852683,54.90411,48.205307,13.7,1014.2939,0.0,72.52414,0.0 +2024-06-04 22:00:00,4.7201695,9.128527,53.61555,47.21968,13.55,1014.3886,0.0,72.49663,0.0 +2024-06-04 23:00:00,4.8414874,9.263369,51.709793,45.437317,13.4,1014.48315,0.0,72.71467,0.0 +2024-06-05 00:00:00,5.315073,9.476286,48.814175,44.145004,14.15,1014.6047,0.0,70.200165,1.0 +2024-06-05 01:00:00,4.6861496,9.990496,50.194473,41.347687,16.9,1014.8842,0.0,62.534416,1.0 +2024-06-05 02:00:00,4.6669044,6.720863,44.999897,43.19129,19.55,1015.25854,0.0,54.75545,1.0 +2024-06-05 03:00:00,4.6872168,6.296825,33.6901,32.680546,21.6,1014.7216,0.0,47.934216,1.0 +2024-06-05 04:00:00,4.6572523,6.0876927,14.931467,14.264554,23.0,1013.96765,0.0,42.143814,1.0 +2024-06-05 05:00:00,4.418144,5.813777,354.80566,356.0549,24.0,1013.2022,0.0,37.722176,1.0 +2024-06-05 06:00:00,4.3081317,5.597321,338.19852,341.24124,24.3,1012.61536,0.0,36.551365,1.0 +2024-06-05 07:00:00,3.828838,5.021952,319.23648,324.72748,24.2,1012.6125,0.0,39.20435,1.0 +2024-06-05 08:00:00,4.0804415,5.4424257,287.1028,290.43292,23.1,1012.7803,0.0,43.17323,1.0 +2024-06-05 09:00:00,3.8118236,6.618912,274.5139,274.3322,20.9,1013.2143,0.0,54.736107,1.0 +2024-06-05 10:00:00,2.624881,6.1611686,287.74475,283.13403,19.0,1013.5566,0.0,61.368195,0.0 +2024-06-05 11:00:00,2.8017852,4.554119,304.82455,289.23077,17.0,1013.99457,0.0,75.80753,0.0 +2024-06-05 12:00:00,2.0,2.4698176,360.0,301.75943,16.8,1014.18713,0.0,76.27345,0.0 +2024-06-05 13:00:00,1.3453624,1.3341664,41.98713,12.99463,16.1,1014.2657,0.0,71.284645,0.0 +2024-06-05 14:00:00,1.6970563,2.0615528,44.999897,14.036275,15.2,1014.04083,0.0,72.55463,0.0 +2024-06-05 15:00:00,2.4207437,3.2572994,51.709793,17.87879,14.35,1014.0158,0.0,74.867966,0.0 +2024-06-05 16:00:00,2.9832866,4.2720017,50.440376,20.556128,14.4,1013.7199,0.0,73.386925,0.0 +2024-06-05 17:00:00,3.1827662,5.0,46.27295,16.26028,14.4,1013.12494,0.0,71.44154,0.0 +2024-06-05 18:00:00,3.6124785,6.016644,41.63345,15.42223,14.7,1012.43964,0.0,68.90147,0.0 +2024-06-05 19:00:00,3.8418746,6.841052,38.65983,15.255177,14.75,1012.2426,0.0,67.98839,0.0 +2024-06-05 20:00:00,4.1617303,7.543209,35.217674,14.588961,14.75,1012.0443,0.0,67.303215,0.0 +2024-06-05 21:00:00,4.5,8.036168,36.86999,16.631037,14.65,1011.74396,0.0,67.282295,0.0 +2024-06-05 22:00:00,4.7201695,8.256513,36.38445,16.898739,14.55,1011.8403,0.0,67.947174,0.0 +2024-06-05 23:00:00,4.743417,8.507056,34.69522,17.79609,14.4,1012.13336,0.0,68.37723,0.0 +2024-06-06 00:00:00,5.215362,9.013879,32.471172,17.42995,15.3,1012.5563,0.0,65.18371,1.0 +2024-06-06 01:00:00,6.040695,10.667708,19.334904,6.458727,19.1,1012.46857,0.0,55.37703,1.0 +2024-06-06 02:00:00,5.4083266,11.187941,19.440128,7.188451,21.7,1012.04663,0.0,49.422314,1.0 +2024-06-06 03:00:00,5.731492,8.039901,6.0089183,5.7105074,24.2,1011.6206,0.0,40.270615,1.0 +2024-06-06 04:00:00,6.281719,8.319857,346.18494,346.79892,25.3,1010.75836,0.0,33.969265,1.0 +2024-06-06 05:00:00,6.306346,8.363014,332.62238,333.7414,25.7,1009.97595,0.0,32.83577,1.0 +2024-06-06 06:00:00,6.296825,8.363014,316.93057,318.87863,25.55,1009.3766,0.0,32.682236,1.0 +2024-06-06 07:00:00,6.788225,9.269844,315.0001,317.18582,25.0,1009.36145,0.0,31.866718,1.0 +2024-06-06 08:00:00,6.0827627,9.052072,313.66785,315.89508,24.05,1009.33514,0.0,35.744602,1.0 +2024-06-06 09:00:00,5.7384667,9.276314,311.46762,311.94122,22.2,1009.7798,0.0,45.749508,1.0 +2024-06-06 10:00:00,5.0447993,8.84138,320.63068,316.37476,20.75,1010.0364,0.0,59.58901,0.0 +2024-06-06 11:00:00,4.560702,8.37735,344.7448,336.8014,20.1,1010.21606,0.0,70.416756,0.0 +2024-06-06 12:00:00,4.604346,8.367796,357.5105,345.4655,20.1,1010.01776,0.0,71.79223,0.0 +2024-06-06 13:00:00,4.4045434,8.028076,357.3975,346.30994,21.0,1010.24176,0.0,64.70524,0.0 +2024-06-06 14:00:00,4.2296567,7.6655073,353.21112,344.87595,21.0,1010.1426,0.0,65.12562,0.0 +2024-06-06 15:00:00,5.1429563,8.421995,333.43503,330.08646,20.65,1010.5294,0.0,66.97519,0.0 +2024-06-06 16:00:00,4.3908997,7.1281133,329.9315,325.864,20.1,1010.21606,0.1,74.61421,0.0 +2024-06-06 17:00:00,3.9824615,6.551336,331.50446,328.73633,19.8,1009.712,0.2,75.28563,0.0 +2024-06-06 18:00:00,4.548626,7.521303,326.65927,324.19656,19.0,1009.3913,2.9,86.79865,0.0 +2024-06-06 19:00:00,2.2671568,4.675468,318.57642,318.46832,19.0,1009.09375,3.7,91.30543,0.0 +2024-06-06 20:00:00,2.0099752,3.2893767,185.7105,199.53674,19.1,1008.89825,7.1,93.345856,0.0 +2024-06-06 21:00:00,2.8653097,5.280152,150.75127,155.37645,19.05,1008.5003,5.2,95.11909,0.0 +2024-06-06 22:00:00,1.8601075,3.8418746,126.25393,128.65984,18.95,1008.69574,5.4,93.63255,0.0 +2024-06-06 23:00:00,1.6278821,3.3301651,132.5104,131.34769,18.8,1009.1872,4.7,93.33109,0.0 +2024-06-07 00:00:00,1.8601075,3.6619666,143.74608,145.0079,18.7,1009.48193,1.3,93.91625,1.0 +2024-06-07 01:00:00,3.482815,5.7489133,140.82635,139.93929,18.2,1009.4677,5.5,93.89362,1.0 +2024-06-07 02:00:00,3.0364454,4.2720017,162.75845,159.44388,18.55,1009.8745,2.2,93.024605,1.0 +2024-06-07 03:00:00,3.3615472,4.701064,157.249,156.16125,18.4,1009.3742,1.2,93.60661,1.0 +2024-06-07 04:00:00,2.6000001,3.49285,157.3801,156.3706,18.6,1008.98315,3.1,92.73393,1.0 +2024-06-07 05:00:00,1.5264337,1.9235384,121.60746,117.89718,19.3,1007.7139,0.4,88.21098,1.0 +2024-06-07 06:00:00,0.5830952,0.781025,149.03632,140.19447,19.45,1007.4208,0.6,89.90846,1.0 +2024-06-07 07:00:00,2.2,2.8017852,180.0,177.95464,19.15,1006.9163,0.7,91.891914,1.0 +2024-06-07 08:00:00,1.9235383,2.6683328,171.02745,167.00539,19.0,1006.8128,0.4,93.04773,1.0 +2024-06-07 09:00:00,2.109502,3.5510561,174.55975,170.27249,18.85,1007.2054,0.5,94.218956,1.0 +2024-06-07 10:00:00,2.0248458,3.8013155,147.09476,144.63745,18.55,1007.09766,2.7,94.2061,0.0 +2024-06-07 11:00:00,2.1400933,4.140048,142.59457,142.85323,18.35,1007.88495,1.9,93.90043,0.0 +2024-06-07 12:00:00,2.059126,3.8600519,150.9455,143.42688,18.1,1007.87805,2.6,94.48505,0.0 +2024-06-07 13:00:00,3.8275316,6.545991,109.85531,108.71183,17.45,1008.55334,0.7,90.625465,0.0 +2024-06-07 14:00:00,4.539824,7.496666,97.59455,99.21095,17.3,1007.8549,0.1,87.19581,0.0 +2024-06-07 15:00:00,4.418144,7.467262,84.805664,82.30404,17.35,1007.16205,1.4,86.92073,0.0 +2024-06-07 16:00:00,4.7169905,8.20061,94.864426,89.30132,17.15,1006.7597,3.6,88.878914,0.0 +2024-06-07 17:00:00,5.1478148,8.729835,82.1848,80.10615,16.6,1006.0497,3.8,87.69559,0.0 +2024-06-07 18:00:00,5.0635953,8.732124,80.909805,76.75947,16.3,1005.54504,5.8,87.668846,0.0 +2024-06-07 19:00:00,5.536244,9.577055,69.92838,61.294147,16.4,1004.7546,4.5,89.39307,0.0 +2024-06-07 20:00:00,4.2520585,7.7472577,41.185837,23.587051,17.45,1004.28906,5.6,92.083115,0.0 +2024-06-07 21:00:00,6.2649817,10.111874,335.48038,331.66095,19.7,1003.75854,5.8,91.63672,0.0 +2024-06-07 22:00:00,6.6730804,10.640489,340.75037,338.4985,19.85,1003.4651,2.6,93.09112,0.0 +2024-06-07 23:00:00,7.602631,11.9570055,333.43503,330.4335,20.35,1003.4793,0.3,90.53829,0.0 +2024-06-08 00:00:00,7.5802374,11.780067,323.58353,322.93546,20.45,1004.0773,0.8,91.68236,1.0 +2024-06-08 01:00:00,8.348653,12.536346,325.73883,326.05637,20.65,1003.98364,0.8,91.40942,1.0 +2024-06-08 02:00:00,7.451845,11.045361,319.89914,317.93573,20.9,1004.4865,0.6,91.70958,1.0 +2024-06-08 03:00:00,7.093659,10.575916,310.426,310.0136,21.0,1004.09265,1.6,92.8609,1.0 +2024-06-08 04:00:00,7.144928,10.253292,316.70132,315.39508,22.45,1003.43896,0.2,83.16008,1.0 +2024-06-08 05:00:00,7.8517513,11.175867,316.5481,316.45016,22.15,1002.73615,0.1,83.64459,1.0 +2024-06-08 06:00:00,7.1028166,9.683491,305.25644,305.33142,22.45,1002.1496,0.2,83.93878,1.0 +2024-06-08 07:00:00,7.156116,10.040418,303.02386,303.21527,22.15,1001.9427,0.1,83.905334,1.0 +2024-06-08 08:00:00,7.2945185,10.456099,303.25436,303.6901,21.4,1002.4179,0.4,87.56569,1.0 +2024-06-08 09:00:00,5.8830266,9.192389,301.79886,300.7499,20.65,1002.6943,1.5,91.1251,1.0 +2024-06-08 10:00:00,5.3413477,8.3600235,308.15726,306.7329,20.2,1002.8799,1.2,93.69108,0.0 +2024-06-08 11:00:00,4.3863425,7.0007143,316.8476,314.42133,20.0,1002.8742,0.7,95.15344,0.0 +2024-06-08 12:00:00,3.676955,6.0876923,315.0001,312.33694,20.05,1003.0741,4.0,95.15527,0.0 +2024-06-08 13:00:00,5.269725,8.602325,326.61145,324.46225,20.75,1002.4988,1.7,92.55984,0.0 +2024-06-08 14:00:00,8.028075,12.343419,320.55997,319.60016,20.9,1002.30457,4.8,92.8557,0.0 +2024-06-08 15:00:00,8.820431,13.535139,327.03058,325.84024,20.9,1002.007,0.9,91.99493,0.0 +2024-06-08 16:00:00,9.035485,13.792752,332.30063,330.4613,21.05,1001.51514,0.7,90.86807,0.0 +2024-06-08 17:00:00,8.905055,13.520724,325.0606,323.7233,20.8,1001.21075,0.9,91.70353,0.0 +2024-06-08 18:00:00,9.167879,13.917614,320.75458,320.2472,20.55,1001.10474,4.3,93.707344,0.0 +2024-06-08 19:00:00,9.831073,14.920121,316.23633,315.27155,20.8,1001.11163,3.6,92.27544,0.0 +2024-06-08 20:00:00,9.055386,13.792752,300.52963,299.5387,20.55,1001.4023,7.3,92.54895,0.0 +2024-06-08 21:00:00,7.4686007,11.412711,296.2219,294.3193,21.15,1001.31964,1.2,85.116035,0.0 +2024-06-08 22:00:00,7.156815,10.866463,277.2242,276.3401,20.75,1002.1021,0.2,84.27625,0.0 +2024-06-08 23:00:00,6.3007936,9.60833,269.09064,267.6141,20.4,1002.78625,0.1,84.237724,0.0 +2024-06-09 00:00:00,5.9076223,8.920201,267.08923,266.14328,20.4,1003.778,0.0,84.237724,1.0 +2024-06-09 01:00:00,6.8183575,9.732934,265.7947,265.28534,20.6,1004.1804,0.1,85.05849,1.0 +2024-06-09 02:00:00,6.6,8.5,270.0,270.0,20.35,1004.66943,0.9,83.17579,1.0 +2024-06-09 03:00:00,6.4381676,8.657945,263.75818,263.36758,19.8,1004.85236,2.3,84.43823,1.0 +2024-06-09 04:00:00,5.821512,7.5239615,265.07297,265.42615,20.15,1004.96124,0.1,85.011154,1.0 +2024-06-09 05:00:00,6.356886,8.316851,250.70985,251.7828,20.6,1004.57715,0.4,77.11671,1.0 +2024-06-09 06:00:00,5.656854,7.2835426,261.87,261.31372,20.4,1004.3731,0.1,73.24378,1.0 +2024-06-09 07:00:00,5.7,7.4,270.0,270.0,20.7,1004.87756,0.0,69.62897,1.0 +2024-06-09 08:00:00,5.921149,7.8313475,274.8439,275.12808,20.4,1005.0674,0.0,69.57092,1.0 +2024-06-09 09:00:00,5.115662,7.610519,265.51547,266.98727,19.7,1005.54376,0.0,73.12101,1.0 +2024-06-09 10:00:00,4.652956,7.2835426,261.34753,261.31372,18.95,1006.21643,0.0,77.109856,0.0 +2024-06-09 11:00:00,4.101219,6.512296,268.60284,266.4786,19.05,1006.51685,0.0,73.71882,0.0 +2024-06-09 12:00:00,3.736308,6.432729,285.52417,281.65927,18.8,1006.90625,0.0,70.397804,0.0 +2024-06-09 13:00:00,4.110961,6.5520988,288.43503,285.94547,19.2,1007.21515,0.0,70.93326,0.0 +2024-06-09 14:00:00,4.753946,7.6902537,284.6209,282.77124,18.7,1007.39923,0.0,70.37871,0.0 +2024-06-09 15:00:00,5.096077,8.052329,285.94547,284.38144,19.05,1007.50854,0.0,67.52115,0.0 +2024-06-09 16:00:00,5.0921507,8.256513,289.50253,286.89874,18.6,1007.5947,0.0,70.13025,0.0 +2024-06-09 17:00:00,5.3150725,8.472308,281.94415,281.57516,18.55,1007.59357,0.0,71.0423,0.0 +2024-06-09 18:00:00,4.632494,7.3756356,283.7363,282.5288,18.35,1007.68665,0.0,73.83699,0.0 +2024-06-09 19:00:00,4.472136,7.2993145,280.30478,279.46225,18.25,1007.5847,0.1,74.786156,0.0 +2024-06-09 20:00:00,3.8626416,6.456005,291.25058,286.18927,18.25,1007.38635,0.1,75.273544,0.0 +2024-06-09 21:00:00,3.6769552,6.3890533,292.3802,287.3006,18.25,1007.28723,0.0,73.34058,0.0 +2024-06-09 22:00:00,3.6687872,6.551336,287.44727,282.33908,18.3,1007.6854,0.0,70.763626,0.0 +2024-06-09 23:00:00,3.736308,6.6910386,285.52417,279.46225,18.25,1008.5765,0.0,70.06284,0.0 +2024-06-10 00:00:00,2.996665,5.345091,295.7099,287.41806,18.5,1008.9804,0.0,71.96545,1.0 +2024-06-10 01:00:00,3.1780498,4.846648,294.14554,291.80145,19.55,1009.70465,0.0,72.15654,1.0 +2024-06-10 02:00:00,4.5,5.9,270.0,270.0,20.3,1010.5194,0.0,66.47026,1.0 +2024-06-10 03:00:00,5.0159745,6.412488,274.57382,273.57626,21.4,1010.5507,0.0,59.54856,1.0 +2024-06-10 04:00:00,5.4424257,6.8622155,249.56708,251.30092,20.55,1010.12994,0.0,67.38923,1.0 +2024-06-10 05:00:00,4.6400433,5.920304,232.88306,232.54935,19.7,1009.9075,0.1,75.51129,1.0 +2024-06-10 06:00:00,4.0496917,5.077401,237.09476,237.87503,20.1,1009.62103,0.0,71.79223,1.0 +2024-06-10 07:00:00,3.1064448,3.9115214,236.82147,237.52882,20.05,1009.61975,0.0,70.63496,1.0 +2024-06-10 08:00:00,2.280351,2.86007,232.12495,233.53067,19.65,1009.7075,0.0,71.47845,1.0 +2024-06-10 09:00:00,1.7691805,2.8999999,222.70937,223.60289,19.2,1009.8929,0.0,72.79689,1.0 +2024-06-10 10:00:00,1.7888545,3.535534,206.56499,208.7397,17.75,1010.4464,0.0,79.71789,0.0 +2024-06-10 11:00:00,2.118962,4.2720017,199.29015,200.55612,17.35,1011.12885,0.0,82.81941,0.0 +2024-06-10 12:00:00,1.3,3.026549,180.0,187.59456,16.8,1011.60876,0.0,86.86892,0.0 +2024-06-10 13:00:00,1.9209373,2.1540658,128.65984,158.19853,15.25,1011.86096,0.0,92.25158,0.0 +2024-06-10 14:00:00,1.2369317,1.4560219,75.96373,105.945465,15.1,1011.85645,0.0,91.943954,0.0 +2024-06-10 15:00:00,1.3928387,2.0024984,68.96242,92.86235,15.0,1011.7545,0.0,91.93796,0.0 +2024-06-10 16:00:00,1.7,2.6019223,61.92762,87.79745,14.55,1011.64197,0.0,91.91087,0.0 +2024-06-10 17:00:00,1.7,2.7018514,61.92762,87.87895,14.45,1011.5397,0.0,91.605354,0.0 +2024-06-10 18:00:00,2.3323808,3.354102,59.03632,79.69521,14.8,1011.3518,0.0,89.5599,0.0 +2024-06-10 19:00:00,2.5942245,3.6878178,62.447273,77.4712,15.5,1011.4716,0.0,85.90058,0.0 +2024-06-10 20:00:00,2.6627054,4.401136,55.713078,68.68202,15.9,1011.18585,0.1,83.457115,0.0 +2024-06-10 21:00:00,1.8357561,3.4176016,60.64234,69.44387,15.9,1011.18585,0.0,83.18506,0.0 +2024-06-10 22:00:00,2.184033,3.7215588,74.054535,83.829926,15.9,1011.18585,0.0,83.18506,0.0 +2024-06-10 23:00:00,1.9104973,3.324154,83.99109,96.91113,15.95,1011.58405,0.1,83.19099,0.0 +2024-06-11 00:00:00,1.4,3.026549,90.0,97.59455,15.9,1012.2766,0.9,88.48994,1.0 +2024-06-11 01:00:00,1.4866068,3.2695565,70.346085,66.5713,16.85,1012.9987,0.4,88.000824,1.0 +2024-06-11 02:00:00,2.0099752,3.5735137,84.2895,72.07199,17.05,1013.00446,0.5,88.585815,1.0 +2024-06-11 03:00:00,1.3152945,2.184033,81.25392,74.054535,17.75,1013.0248,0.3,85.02768,1.0 +2024-06-11 04:00:00,0.8544004,0.98994946,159.44388,135.0001,18.0,1012.53625,0.4,84.51048,1.0 +2024-06-11 05:00:00,1.2727922,1.56205,135.0001,129.80553,18.0,1011.7429,0.4,84.23976,1.0 +2024-06-11 06:00:00,2.059126,2.640076,119.05451,114.62355,18.0,1011.0487,0.6,85.87561,1.0 +2024-06-11 07:00:00,1.9697715,2.8160257,113.962494,106.50443,17.8,1010.84436,1.0,89.21565,1.0 +2024-06-11 08:00:00,1.8027756,3.2695565,123.6901,113.42871,17.45,1010.9334,1.0,91.78996,1.0 +2024-06-11 09:00:00,2.751363,4.8270073,109.09359,103.17256,17.1,1010.82404,1.4,92.06262,1.0 +2024-06-11 10:00:00,1.2041595,3.1016126,131.63345,110.77233,16.85,1011.2137,1.1,92.04792,0.0 +2024-06-11 11:00:00,1.5,3.1384711,126.86998,112.47948,16.85,1011.41205,0.7,92.04792,0.0 +2024-06-11 12:00:00,2.236068,3.8832977,153.43501,145.49142,16.65,1011.8027,0.3,93.22382,0.0 +2024-06-11 13:00:00,2.641969,5.0537114,119.4758,117.072,15.85,1012.37427,0.1,91.988754,0.0 +2024-06-11 14:00:00,2.6627054,5.060632,124.286934,119.604355,15.6,1012.16864,0.1,92.27174,0.0 +2024-06-11 15:00:00,2.2203603,4.5177426,125.837746,117.69938,15.8,1011.97626,0.3,91.98579,0.0 +2024-06-11 16:00:00,2.418677,4.7853947,119.74479,116.02953,15.8,1011.48047,0.8,91.98579,0.0 +2024-06-11 17:00:00,2.3259406,4.554119,115.46331,109.23077,15.75,1011.2806,0.6,92.28038,0.0 +2024-06-11 18:00:00,1.7029387,3.905125,86.63361,87.064384,15.7,1011.4776,0.5,92.576035,0.0 +2024-06-11 19:00:00,3.1256998,5.59017,82.64771,79.69521,15.75,1010.48724,0.7,92.28038,0.0 +2024-06-11 20:00:00,3.1016126,5.9808025,69.22767,69.44387,15.8,1010.19135,0.1,90.511116,0.0 +2024-06-11 21:00:00,2.376973,5.0537114,67.75093,62.927998,15.7,1010.08923,0.1,90.79759,0.0 +2024-06-11 22:00:00,1.3928387,3.6891732,68.96242,57.17146,15.35,1010.4755,0.0,92.55661,0.0 +2024-06-11 23:00:00,0.2,0.64031243,180.0,51.34017,16.3,1011.0983,0.0,86.82153,0.0 +2024-06-12 00:00:00,0.56568545,0.70710677,135.0001,98.13002,16.2,1011.1947,0.0,89.66669,1.0 +2024-06-12 01:00:00,0.72801095,1.3152945,285.94547,278.74606,17.5,1012.12494,0.0,88.057106,1.0 +2024-06-12 02:00:00,3.3120992,4.2059484,208.88649,208.39293,18.8,1012.45996,0.1,80.63611,1.0 +2024-06-12 03:00:00,3.7854989,4.707441,192.20045,192.26476,19.1,1012.171,0.1,78.131035,1.0 +2024-06-12 04:00:00,3.905125,4.9030604,193.32454,191.76826,19.8,1011.6955,0.0,74.324646,1.0 +2024-06-12 05:00:00,4.4271884,5.565968,198.43504,197.78398,19.55,1011.1923,0.1,72.62425,1.0 +2024-06-12 06:00:00,4.2059484,5.345091,198.00426,197.41806,19.6,1010.7972,0.1,71.70067,1.0 +2024-06-12 07:00:00,3.9849718,5.096077,197.52567,195.94547,19.5,1010.4968,0.0,71.68232,1.0 +2024-06-12 08:00:00,4.295346,5.531727,192.09474,192.5288,18.85,1010.7757,0.0,73.92326,1.0 +2024-06-12 09:00:00,3.622154,5.622277,186.3401,185.10208,18.1,1011.24994,0.0,76.48056,1.0 +2024-06-12 10:00:00,2.7166157,5.2086463,173.6599,176.6982,17.05,1011.6161,0.0,80.924774,0.0 +2024-06-12 11:00:00,2.236068,4.7434163,153.43501,161.56496,16.15,1012.1848,0.0,85.687614,0.0 +2024-06-12 12:00:00,1.7,3.7013512,118.072395,141.58191,15.35,1012.4588,0.0,89.02119,0.0 +2024-06-12 13:00:00,2.2671568,2.570992,138.57643,166.50426,13.8,1013.1071,0.1,91.56456,0.0 +2024-06-12 14:00:00,1.3152945,2.1931713,98.74608,133.1524,14.0,1013.11285,0.0,91.87757,0.0 +2024-06-12 15:00:00,1.6124516,1.8248286,60.255207,80.53775,14.05,1012.9161,0.0,91.880615,0.0 +2024-06-12 16:00:00,1.7204651,1.9646883,54.46224,75.25639,13.35,1012.59766,0.0,92.140686,0.0 +2024-06-12 17:00:00,1.56205,1.6492423,50.194473,75.96373,12.8,1012.28406,0.0,91.80423,0.0 +2024-06-12 18:00:00,1.1661904,1.2,59.03632,90.0,12.5,1012.17566,0.0,90.877335,0.0 +2024-06-12 19:00:00,1.0770329,1.421267,68.19853,129.28938,12.2,1011.8692,0.0,89.6554,0.0 +2024-06-12 20:00:00,1.1401755,1.8439089,74.74483,139.39879,12.1,1011.6678,0.0,88.75521,0.0 +2024-06-12 21:00:00,1.7492856,2.209072,59.03632,95.19434,12.3,1011.57465,0.0,88.182045,0.0 +2024-06-12 22:00:00,2.641969,3.7854989,60.524208,77.79955,12.05,1011.5673,0.0,89.047775,0.0 +2024-06-12 23:00:00,2.9068882,4.560702,63.435013,74.74483,11.9,1011.6618,0.0,89.33347,0.0 +2024-06-13 00:00:00,3.6235344,5.0328918,62.02062,69.04415,11.95,1012.1591,0.0,90.53747,1.0 +2024-06-13 01:00:00,3.1622775,4.545327,55.304783,50.355858,15.5,1012.8599,0.0,82.054184,1.0 +2024-06-13 02:00:00,2.4207437,3.5468295,51.709793,49.574005,18.25,1013.1383,0.0,71.45145,1.0 +2024-06-13 03:00:00,0.9055385,1.104536,83.659904,84.805664,19.4,1012.67554,0.0,62.481766,1.0 +2024-06-13 04:00:00,1.3,1.5132746,180.0,172.40544,20.15,1011.9036,0.0,59.642143,1.0 +2024-06-13 05:00:00,1.746425,1.9646883,203.6294,194.7436,20.1,1011.1087,0.0,60.61912,1.0 +2024-06-13 06:00:00,1.8357561,2.0615528,209.35765,202.8337,20.0,1010.7091,0.2,62.208637,1.0 +2024-06-13 07:00:00,2.1954498,2.5495098,210.0685,205.55992,19.55,1010.4981,0.1,65.23851,1.0 +2024-06-13 08:00:00,2.9546573,3.6055512,203.9625,199.44012,19.15,1010.68494,0.0,68.87709,1.0 +2024-06-13 09:00:00,3.1622777,4.9729266,198.43504,195.15411,18.25,1010.85736,0.0,75.273544,1.0 +2024-06-13 10:00:00,2.8071337,5.408327,184.08554,183.17976,17.2,1011.0255,0.0,78.86762,0.0 +2024-06-13 11:00:00,2.607681,5.2924476,147.52882,157.79648,16.4,1011.4979,0.0,82.43544,0.0 +2024-06-13 12:00:00,2.3086793,4.4777226,107.650215,119.42737,15.2,1011.56177,0.0,85.30998,0.0 +2024-06-13 13:00:00,2.209072,4.509989,84.805664,93.814,14.0,1011.328,0.0,82.135475,0.0 +2024-06-13 14:00:00,2.6925824,5.7870545,68.19853,71.87805,13.7,1011.1208,0.0,72.76931,0.0 +2024-06-13 15:00:00,3.5341196,7.291776,64.8852,64.84074,14.1,1011.1329,0.0,69.71755,0.0 +2024-06-13 16:00:00,3.5846896,7.4706087,67.01126,62.062954,14.1,1010.8354,0.0,70.66606,0.0 +2024-06-13 17:00:00,3.3241541,6.928925,74.2913,69.73422,13.35,1010.317,0.0,76.22258,0.0 +2024-06-13 18:00:00,4.2201896,8.077747,76.29302,74.931465,13.2,1009.32104,0.0,78.013916,0.0 +2024-06-13 19:00:00,4.4384685,8.668333,75.650635,73.237366,12.85,1009.11224,0.0,78.75197,0.0 +2024-06-13 20:00:00,4.883646,9.198369,79.380394,78.079285,13.6,1008.5398,0.0,74.74013,0.0 +2024-06-13 21:00:00,4.6840153,8.956004,73.88651,73.79091,12.85,1009.31055,0.0,78.75197,0.0 +2024-06-13 22:00:00,5.481788,9.849365,75.2032,74.69381,13.8,1008.64496,0.0,74.52338,0.0 +2024-06-13 23:00:00,5.6044626,9.726767,74.47583,75.10648,13.95,1008.45105,0.0,73.80144,0.0 +2024-06-14 00:00:00,5.772348,9.8234415,75.96373,75.25639,14.15,1008.5559,0.0,73.58912,1.0 +2024-06-14 01:00:00,5.4744864,10.554619,80.53775,80.18076,16.3,1008.6192,0.0,67.85135,1.0 +2024-06-14 02:00:00,5.178803,8.79659,79.99209,81.501526,16.9,1008.7358,0.0,67.30016,1.0 +2024-06-14 03:00:00,5.2630787,7.300685,75.69969,76.53478,18.6,1007.5947,0.0,60.265827,1.0 +2024-06-14 04:00:00,5.001,6.670832,78.46541,77.00539,18.8,1007.00543,0.0,59.715084,1.0 +2024-06-14 05:00:00,4.3829217,5.905929,62.850407,61.69934,19.5,1006.13306,0.0,60.2789,1.0 +2024-06-14 06:00:00,3.6715121,4.924429,60.64234,60.832493,19.15,1005.3296,0.0,63.045235,1.0 +2024-06-14 07:00:00,1.7691805,2.3345237,42.709366,43.26433,20.2,1005.3593,0.0,61.84776,1.0 +2024-06-14 08:00:00,1.421267,2.0,39.289394,36.86999,19.65,1005.3439,0.0,65.04702,1.0 +2024-06-14 09:00:00,1.5811388,1.9697715,341.56494,336.0375,18.15,1006.3918,0.0,81.59341,1.0 +2024-06-14 10:00:00,1.6401219,1.7,52.431335,28.072395,16.4,1005.9446,0.0,83.515564,0.0 +2024-06-14 11:00:00,1.56205,2.433105,39.805527,9.462248,16.1,1006.7291,0.0,83.2088,0.0 +2024-06-14 12:00:00,2.9206164,4.3011627,38.047092,17.592522,16.05,1006.6286,0.0,80.79155,0.0 +2024-06-14 13:00:00,1.8384776,3.6055512,22.380184,356.82022,16.4,1006.7379,0.0,80.57481,0.0 +2024-06-14 14:00:00,1.5811388,3.231099,18.435053,338.19852,15.25,1006.80365,0.0,85.8752,0.0 +2024-06-14 15:00:00,2.158703,3.794733,13.392516,341.56494,16.3,1007.1317,0.0,80.561295,0.0 +2024-06-14 16:00:00,2.059126,3.5057096,29.054508,356.72958,16.05,1006.72784,0.0,81.855545,0.0 +2024-06-14 17:00:00,2.607681,4.3566046,32.471172,9.246045,16.2,1006.3355,0.0,81.34158,0.0 +2024-06-14 18:00:00,2.1400933,3.3120992,52.594578,28.886486,15.8,1005.82806,0.7,84.81833,0.0 +2024-06-14 19:00:00,1.6278821,3.310589,47.489597,25.016869,15.5,1005.6209,0.0,87.59705,0.0 +2024-06-14 20:00:00,1.4866068,2.6925821,47.72637,15.068549,15.3,1005.5157,0.0,88.15182,0.0 +2024-06-14 21:00:00,1.5,2.6019223,36.86998,357.79745,15.4,1005.5189,0.0,87.018936,0.0 +2024-06-14 22:00:00,1.7204651,3.1016126,35.537766,358.15244,14.35,1005.78546,0.0,89.23235,0.0 +2024-06-14 23:00:00,1.6155494,3.0463092,21.801476,336.8014,14.45,1006.4825,0.0,87.50194,0.0 +2024-06-15 00:00:00,2.1954498,2.828427,30.068504,351.87,15.65,1006.9145,0.0,82.07312,1.0 +2024-06-15 01:00:00,3.1144822,4.5617976,42.397392,26.003298,18.2,1006.69086,0.0,77.74516,1.0 +2024-06-15 02:00:00,3.0610456,5.2430906,51.632477,34.90257,19.0,1006.51526,0.0,78.11621,1.0 +2024-06-15 03:00:00,2.0248458,4.263801,57.094753,39.289394,20.1,1005.9515,0.0,74.13721,1.0 +2024-06-15 04:00:00,1.104536,1.5524175,5.19435,14.931467,22.25,1005.31775,0.0,62.11305,1.0 +2024-06-15 05:00:00,1.2041595,1.4422206,311.63345,326.3099,23.0,1004.6443,0.0,58.022327,1.0 +2024-06-15 06:00:00,2.3706539,2.86007,297.64587,306.46933,23.05,1004.3483,0.0,57.28819,1.0 +2024-06-15 07:00:00,2.7073975,3.5902646,274.23633,282.875,21.75,1004.5105,0.0,68.724304,1.0 +2024-06-15 08:00:00,3.5693135,4.86621,258.6901,260.53775,21.0,1005.18365,0.0,72.18639,1.0 +2024-06-15 09:00:00,2.0024984,4.00125,272.86234,271.43207,20.05,1005.65265,0.0,75.81049,1.0 +2024-06-15 10:00:00,2.280351,3.275668,254.74483,257.66092,17.7,1005.7838,0.0,87.51239,0.0 +2024-06-15 11:00:00,1.6492423,3.8209946,255.96373,263.9911,18.35,1006.2982,0.2,87.01422,0.0 +2024-06-15 12:00:00,2.1260293,3.448188,311.18582,299.5387,17.3,1006.26825,0.0,90.61519,0.0 +2024-06-15 13:00:00,2.6476402,5.235456,349.11453,331.477,18.1,1006.4897,0.0,90.66997,0.0 +2024-06-15 14:00:00,2.7073975,5.5036354,355.76367,335.2976,17.4,1006.5686,0.0,90.91203,0.0 +2024-06-15 15:00:00,2.915476,5.818075,354.09393,331.23245,17.15,1006.7597,0.0,90.89534,0.0 +2024-06-15 16:00:00,2.433105,5.185557,350.53775,320.4774,17.1,1006.4607,0.0,91.18341,0.0 +2024-06-15 17:00:00,1.9697715,4.743417,336.0375,304.69522,16.9,1006.2566,0.0,91.17044,0.0 +2024-06-15 18:00:00,2.2022715,4.3416586,309.47244,284.67642,16.3,1006.23926,0.0,90.546,0.0 +2024-06-15 19:00:00,2.7313,4.00125,293.7495,271.43207,15.65,1006.12115,0.0,89.62492,0.0 +2024-06-15 20:00:00,2.6172504,3.354102,276.58185,259.69522,16.0,1006.4288,0.0,86.79295,0.0 +2024-06-15 21:00:00,1.9,2.6925824,270.0,248.19853,18.05,1006.5873,0.0,81.056656,0.0 +2024-06-15 22:00:00,1.8601075,2.7018511,233.74606,231.009,18.6,1007.0989,0.0,80.09307,0.0 +2024-06-15 23:00:00,2.2135942,3.001666,198.43504,209.98155,16.55,1007.8331,0.0,85.72855,0.0 +2024-06-16 00:00:00,1.5524175,3.535534,194.93147,208.7397,17.2,1008.44714,0.0,88.3143,1.0 +2024-06-16 01:00:00,0.1,1.029563,360.0,240.94548,19.0,1009.4905,0.0,80.92138,1.0 +2024-06-16 02:00:00,1.3038405,1.5811387,237.52882,235.30478,20.0,1010.0149,0.0,76.04546,1.0 +2024-06-16 03:00:00,1.7888545,2.147091,243.43501,242.24155,20.6,1009.8336,0.0,72.11425,1.0 +2024-06-16 04:00:00,2.385372,2.8017852,236.97612,235.17543,20.95,1009.447,0.0,68.787155,1.0 +2024-06-16 05:00:00,2.5942245,3.130495,242.44727,243.43501,21.05,1008.6561,0.0,67.27402,1.0 +2024-06-16 06:00:00,3.2557642,3.8948684,227.4896,228.12221,20.5,1008.54144,0.0,69.36631,1.0 +2024-06-16 07:00:00,3.4885528,4.3382025,207.29948,205.97433,20.25,1008.53455,0.0,71.129486,1.0 +2024-06-16 08:00:00,3.2280025,4.244997,196.18927,195.01842,20.1,1008.82764,0.0,68.397026,1.0 +2024-06-16 09:00:00,2.915476,4.9365983,185.90605,186.98096,19.5,1009.4058,0.0,70.75989,1.0 +2024-06-16 10:00:00,2.236068,4.816638,169.6952,175.23645,18.15,1009.6644,0.0,76.24079,0.0 +2024-06-16 11:00:00,2.2825425,4.9335585,151.1893,162.29948,17.3,1010.23505,0.0,80.17391,0.0 +2024-06-16 12:00:00,2.3430748,4.9396353,129.80553,148.24057,16.75,1010.7147,0.0,82.21106,0.0 +2024-06-16 13:00:00,1.8788295,4.4407206,115.20109,144.16226,16.95,1010.91907,0.0,79.865456,0.0 +2024-06-16 14:00:00,1.9235383,4.313931,98.97255,135.9391,16.1,1010.9932,0.0,81.86189,0.0 +2024-06-16 15:00:00,2.302173,4.750789,92.4895,120.34317,15.95,1011.0882,0.0,82.379745,0.0 +2024-06-16 16:00:00,2.5079873,5.235456,94.57384,118.52302,15.65,1010.68274,0.0,83.15527,0.0 +2024-06-16 17:00:00,2.5019991,5.280152,92.29056,114.62355,16.05,1010.2977,0.0,80.001564,0.0 +2024-06-16 18:00:00,2.236068,4.9739323,100.30479,120.17343,15.2,1010.1735,0.0,83.37477,0.0 +2024-06-16 19:00:00,2.2203605,5.0249376,97.76508,121.15924,14.4,1009.9518,0.0,86.63915,0.0 +2024-06-16 20:00:00,2.1213202,4.924429,98.13002,119.16752,13.95,1010.1368,0.0,87.74488,0.0 +2024-06-16 21:00:00,2.0615528,4.7169905,104.03627,122.00535,13.55,1010.1248,0.0,88.58224,0.0 +2024-06-16 22:00:00,2.408319,5.189412,94.76356,115.083565,13.45,1010.02277,0.0,88.57384,0.0 +2024-06-16 23:00:00,2.8017852,5.9464273,92.045364,109.653915,13.4,1010.4177,0.0,89.15668,0.0 +2024-06-17 00:00:00,2.9068885,5.6921,93.945114,108.43504,14.2,1011.13574,0.0,87.19183,1.0 +2024-06-17 01:00:00,3.0594118,6.648308,101.3099,111.16133,16.65,1011.2077,0.0,81.66553,1.0 +2024-06-17 02:00:00,2.7294688,4.159327,118.442825,117.18103,18.8,1011.17065,0.0,74.39506,1.0 +2024-06-17 03:00:00,3.0413814,3.9623227,136.33215,132.95459,20.25,1011.1131,0.0,63.9144,1.0 +2024-06-17 04:00:00,2.9154758,3.577709,157.8336,153.43501,20.95,1010.43884,0.0,58.8604,1.0 +2024-06-17 05:00:00,2.4186773,2.8160257,172.87508,163.49556,21.4,1010.0548,0.0,56.88315,1.0 +2024-06-17 06:00:00,3.4525354,4.119466,190.00792,185.5721,21.05,1009.54877,0.0,59.855564,1.0 +2024-06-17 07:00:00,4.197618,5.2773094,192.38075,189.81923,20.4,1009.6295,0.0,67.79603,1.0 +2024-06-17 08:00:00,4.9365983,6.5276337,186.98096,185.2738,19.6,1009.8054,0.0,73.10339,1.0 +2024-06-17 09:00:00,4.7010636,7.406079,178.78116,177.67851,18.6,1009.5782,0.0,76.80731,1.0 +2024-06-17 10:00:00,3.383785,6.5253353,161.0295,164.89885,17.45,1010.14,0.0,79.675964,0.0 +2024-06-17 11:00:00,3.8013155,7.186793,153.43501,158.79071,16.9,1010.91754,0.0,81.16833,0.0 +2024-06-17 12:00:00,3.9824615,7.484651,151.50446,157.20345,16.75,1011.40894,0.0,80.62196,0.0 +2024-06-17 13:00:00,4.016217,7.5927596,161.11382,167.06194,16.85,1011.41205,0.0,80.89822,0.0 +2024-06-17 14:00:00,4.197618,7.6791925,167.61925,171.76447,16.75,1011.7064,0.0,81.9443,0.0 +2024-06-17 15:00:00,4.016217,7.28011,161.11382,164.05453,16.4,1011.7954,0.0,82.16735,0.0 +2024-06-17 16:00:00,3.3970575,6.324555,137.38599,145.30478,15.7,1011.7751,0.0,84.53114,0.0 +2024-06-17 17:00:00,3.6249137,6.780118,114.44395,127.208,14.75,1011.25104,0.0,87.81627,0.0 +2024-06-17 18:00:00,3.448188,6.9526978,119.53869,130.33307,14.3,1011.0393,0.0,86.62945,0.0 +2024-06-17 19:00:00,3.3837848,6.862215,124.159744,133.22856,14.15,1011.4315,0.0,83.52607,0.0 +2024-06-17 20:00:00,3.3600597,6.794115,126.528946,132.61403,13.95,1011.82245,0.0,82.6761,0.0 +2024-06-17 21:00:00,3.3241541,6.519202,133.7812,138.73149,13.8,1011.81805,0.0,82.383484,0.0 +2024-06-17 22:00:00,3.2449963,6.3780875,123.690094,131.18582,13.65,1012.3094,0.0,82.091125,0.0 +2024-06-17 23:00:00,3.176476,6.4031243,118.1785,128.65984,12.9,1012.88184,0.0,84.49904,0.0 +2024-06-18 00:00:00,3.757659,6.71193,115.20109,123.45334,13.4,1013.29333,0.0,81.78612,1.0 +2024-06-18 01:00:00,3.4176016,5.60803,110.55613,111.99118,16.0,1014.06445,0.0,72.941124,1.0 +2024-06-18 02:00:00,3.4,4.606517,118.072395,117.12123,17.25,1014.39856,0.0,68.72444,1.0 +2024-06-18 03:00:00,4.318565,5.658622,137.81563,136.43204,18.7,1014.44055,0.0,60.691326,1.0 +2024-06-18 04:00:00,5.500909,7.071068,152.96922,151.2603,19.6,1013.9708,0.0,55.134987,1.0 +2024-06-18 05:00:00,5.8523498,7.632169,160.0168,158.47734,19.85,1013.1843,0.0,53.566338,1.0 +2024-06-18 06:00:00,6.332456,8.352245,164.4274,163.30067,19.75,1012.7848,0.0,53.183407,1.0 +2024-06-18 07:00:00,5.571355,7.392564,158.96242,156.90315,19.5,1012.77783,0.0,51.536465,1.0 +2024-06-18 08:00:00,5.8940644,8.104321,165.2564,164.24876,19.0,1012.9616,0.0,53.16616,1.0 +2024-06-18 09:00:00,5.021952,7.8854294,167.34744,167.55002,17.95,1013.5264,0.0,60.111454,1.0 +2024-06-18 10:00:00,3.6769552,6.835203,157.61983,159.44388,16.7,1013.7876,0.0,66.5898,0.0 +2024-06-18 11:00:00,3.538361,7.267049,137.29063,145.65384,15.9,1014.35913,0.0,65.75497,0.0 +2024-06-18 12:00:00,2.863564,6.438167,114.775116,136.88817,15.2,1014.735,0.0,65.60359,0.0 +2024-06-18 13:00:00,2.7730849,6.453681,115.64096,139.39879,14.3,1015.4024,0.0,65.63043,0.0 +2024-06-18 14:00:00,4.1340055,8.48646,122.15227,134.04526,14.5,1015.8052,0.0,64.12967,0.0 +2024-06-18 15:00:00,4.3266616,8.221922,123.6901,131.05472,14.1,1016.2892,0.0,71.14457,0.0 +2024-06-18 16:00:00,4.1880784,7.9812284,123.310646,127.875046,13.4,1016.26807,0.0,78.83319,0.0 +2024-06-18 17:00:00,4.3908997,8.376157,120.0685,123.310646,12.95,1016.05634,0.0,83.942726,0.0 +2024-06-18 18:00:00,4.6957426,8.683317,116.56499,118.92633,12.75,1016.05035,0.0,83.3603,0.0 +2024-06-18 19:00:00,4.753946,8.766413,112.24908,115.688095,12.6,1016.0458,0.0,77.39774,0.0 +2024-06-18 20:00:00,4.535416,8.616263,104.03627,111.801476,12.25,1016.03534,0.0,73.75057,0.0 +2024-06-18 21:00:00,4.4384685,8.579627,104.349365,111.18142,11.95,1016.02606,0.0,70.73135,0.0 +2024-06-18 22:00:00,4.4384685,8.672947,104.349365,110.942726,11.75,1016.51575,0.0,68.064224,0.0 +2024-06-18 23:00:00,4.648656,8.905055,108.8248,114.55044,11.6,1017.20544,0.0,64.36158,0.0 +2024-06-19 00:00:00,5.0990195,9.052072,101.3099,106.03241,11.95,1017.8109,0.0,63.111618,1.0 +2024-06-19 01:00:00,5.5145264,8.956003,94.15957,96.41075,12.55,1018.5231,0.0,70.84749,1.0 +2024-06-19 02:00:00,5.4332314,7.4545293,96.340096,96.93426,14.4,1018.7771,0.0,67.91623,1.0 +2024-06-19 03:00:00,5.554278,7.495332,103.53587,103.109215,16.15,1018.33307,0.0,59.477875,1.0 +2024-06-19 04:00:00,5.8189344,7.6216793,109.0578,109.14823,17.2,1017.5706,0.0,50.227306,1.0 +2024-06-19 05:00:00,5.5036354,7.2498274,114.70241,114.44395,17.65,1016.59204,0.0,47.495773,1.0 +2024-06-19 06:00:00,5.0537114,6.664083,117.072,115.79598,17.95,1015.7081,0.0,45.026314,1.0 +2024-06-19 07:00:00,4.830114,6.35059,117.095474,116.16151,17.85,1015.6061,0.0,44.99811,1.0 +2024-06-19 08:00:00,4.606517,6.2169123,117.12123,115.74066,17.35,1015.78986,0.0,46.761776,1.0 +2024-06-19 09:00:00,3.8078864,6.400781,119.93143,118.96757,16.05,1015.8511,0.0,52.387592,1.0 +2024-06-19 10:00:00,3.720215,7.1281133,126.25393,124.135994,14.35,1016.09814,0.0,56.449574,0.0 +2024-06-19 11:00:00,3.8013155,7.710383,125.36255,123.89621,13.45,1016.6664,0.0,58.613556,0.0 +2024-06-19 12:00:00,4.0496917,7.9611554,122.90524,122.691986,12.7,1017.0402,0.0,60.077713,0.0 +2024-06-19 13:00:00,4.2953463,8.285529,114.775116,113.47101,12.05,1017.12,0.0,59.919327,0.0 +2024-06-19 14:00:00,3.8626416,7.81089,111.25058,108.66701,11.55,1017.4021,0.0,61.496803,0.0 +2024-06-19 15:00:00,3.4885528,7.3389373,117.29949,109.9165,11.0,1017.58386,0.0,64.45068,0.0 +2024-06-19 16:00:00,3.2449963,6.9354167,123.690094,114.71742,10.4,1017.86273,0.0,68.018776,0.0 +2024-06-19 17:00:00,3.8275316,7.7620873,109.85531,104.93147,10.05,1017.6537,0.0,70.35936,0.0 +2024-06-19 18:00:00,3.8078866,7.8638415,103.671326,97.30567,10.05,1017.3562,0.0,71.09817,0.0 +2024-06-19 19:00:00,3.8078866,7.7414465,103.671326,95.931435,10.05,1017.0588,0.0,71.59452,0.0 +2024-06-19 20:00:00,3.8832974,7.8230433,101.88863,94.39862,9.9,1016.955,0.0,71.56586,0.0 +2024-06-19 21:00:00,4.0199504,8.100618,95.7105,89.2927,9.7,1016.75073,0.0,71.777374,0.0 +2024-06-19 22:00:00,4.304649,8.414867,92.66295,86.59363,9.7,1016.75073,0.0,70.78282,0.0 +2024-06-19 23:00:00,4.1,8.249242,90.0,83.73661,9.6,1017.2432,0.0,70.516396,0.0 +2024-06-20 00:00:00,4.7010636,8.558621,88.78116,83.29026,10.15,1017.85504,0.0,69.16346,1.0 +2024-06-20 01:00:00,4.501111,8.5,88.727,81.202675,12.25,1018.41504,0.0,64.95567,1.0 +2024-06-20 02:00:00,4.8093657,6.736468,86.423744,84.03561,14.3,1018.5755,0.0,58.82372,1.0 +2024-06-20 03:00:00,5.8940644,7.884795,75.25639,74.55363,16.1,1018.1331,0.0,50.448853,1.0 +2024-06-20 04:00:00,5.8523498,7.7794604,73.11313,72.03077,17.1,1016.9725,0.0,45.730198,1.0 +2024-06-20 05:00:00,5.3758717,7.116881,71.564964,70.29193,17.75,1016.1982,0.0,46.07177,1.0 +2024-06-20 06:00:00,5.0921507,6.706713,70.49747,69.943825,18.15,1015.2181,0.0,46.50268,1.0 +2024-06-20 07:00:00,5.0289164,6.8308125,72.64589,72.09546,18.25,1014.8243,0.0,46.690723,1.0 +2024-06-20 08:00:00,4.244997,6.0440054,74.98159,73.66389,17.9,1015.01263,0.0,48.721607,1.0 +2024-06-20 09:00:00,3.1256998,5.80517,82.64771,79.07724,16.55,1015.0723,0.0,54.722927,1.0 +2024-06-20 10:00:00,2.5179358,5.903389,96.84268,88.058556,14.2,1014.8047,0.0,60.856647,0.0 +2024-06-20 11:00:00,2.8071337,6.8183575,94.08554,85.79472,13.3,1014.8771,0.0,63.640144,0.0 +2024-06-20 12:00:00,2.7,6.6910386,90.0,80.53775,12.6,1015.05426,0.0,65.93577,0.0 +2024-06-20 13:00:00,3.6013885,8.062258,88.4089,82.875084,12.3,1014.54926,0.0,66.32641,0.0 +2024-06-20 14:00:00,4.0447497,8.561542,81.46932,75.80142,12.4,1014.3542,0.0,64.76493,0.0 +2024-06-20 15:00:00,4.560702,9.108238,74.74483,70.76923,12.65,1014.3615,0.0,63.05438,0.0 +2024-06-20 16:00:00,4.7169905,9.310746,68.87521,65.91256,12.7,1014.16473,0.0,61.76954,0.0 +2024-06-20 17:00:00,4.8754487,9.529428,64.48618,61.821507,12.35,1013.8569,0.0,62.767067,0.0 +2024-06-20 18:00:00,5.635601,10.444616,62.525658,59.506725,12.1,1013.4526,0.0,63.586174,0.0 +2024-06-20 19:00:00,6.2433968,11.177209,58.091934,56.309914,11.95,1013.0515,0.0,63.772976,0.0 +2024-06-20 20:00:00,6.8818603,11.980819,54.46224,52.4605,11.75,1012.748,0.0,63.949356,0.0 +2024-06-20 21:00:00,7.3878274,12.61507,50.49235,48.856907,11.6,1012.1486,0.0,63.915207,0.0 +2024-06-20 22:00:00,7.66942,13.096946,50.290127,47.785236,11.45,1012.24335,0.0,63.658726,0.0 +2024-06-20 23:00:00,8.156592,13.583077,49.474983,46.789886,11.3,1012.3377,0.0,63.402576,0.0 +2024-06-21 00:00:00,8.495881,13.859293,47.862484,44.999897,11.65,1012.64594,0.0,62.168713,1.0 +2024-06-21 01:00:00,7.5663733,13.514807,45.535397,42.90109,13.35,1012.99426,0.0,58.385742,1.0 +2024-06-21 02:00:00,7.2138753,10.40048,43.876797,43.05193,15.15,1013.3456,0.0,54.73536,1.0 +2024-06-21 03:00:00,6.6068144,9.167879,39.47243,39.245422,17.1,1012.9066,0.0,51.42026,1.0 +2024-06-21 04:00:00,6.1032777,8.2927685,34.9921,33.6901,18.8,1012.06323,0.0,48.967876,1.0 +2024-06-21 05:00:00,5.818075,7.782673,28.767557,27.552727,20.1,1011.0095,0.0,47.203228,1.0 +2024-06-21 06:00:00,5.4083266,7.17844,19.440128,18.687443,20.95,1009.94293,0.0,46.96049,1.0 +2024-06-21 07:00:00,4.8373547,6.537584,7.12493,6.1465325,21.35,1009.5573,0.0,47.866062,1.0 +2024-06-21 08:00:00,3.981206,5.9439044,348.40787,347.36664,21.15,1009.65076,0.0,51.972256,1.0 +2024-06-21 09:00:00,2.059126,4.802083,330.9455,328.62704,19.45,1009.7018,0.0,62.08308,1.0 +2024-06-21 10:00:00,2.1931713,5.162364,313.1524,301.53473,17.1,1010.1299,0.0,73.13745,0.0 +2024-06-21 11:00:00,2.745906,6.074537,303.11136,290.22495,17.8,1011.0427,0.0,76.43301,0.0 +2024-06-21 12:00:00,1.8384776,4.4204073,337.6198,307.64767,16.35,1011.1991,0.0,85.430534,0.0 +2024-06-21 13:00:00,1.8384776,3.443835,22.380184,334.17905,15.8,1010.78625,0.0,84.26677,0.0 +2024-06-21 14:00:00,2.147091,3.8275316,27.758451,340.14468,16.4,1010.90295,0.0,78.49372,0.0 +2024-06-21 15:00:00,2.529822,4.7759814,18.435053,340.4268,16.7,1010.71344,0.0,79.5706,0.0 +2024-06-21 16:00:00,3.0,5.8137765,360.0,333.43503,16.75,1010.31805,0.0,82.47858,0.0 +2024-06-21 17:00:00,3.0870697,5.860034,335.09525,323.32556,16.6,1010.2147,0.0,89.12103,0.0 +2024-06-21 18:00:00,3.577709,6.7675695,333.43503,325.84024,16.25,1010.30347,0.1,90.542496,0.0 +2024-06-21 19:00:00,3.0083218,5.5470715,338.5522,326.0234,16.5,1010.1124,0.3,93.216225,0.0 +2024-06-21 20:00:00,3.2557642,5.772348,10.61961,345.9637,15.9,1009.99585,0.0,93.48646,0.0 +2024-06-21 21:00:00,3.1780496,5.7280016,12.7243595,343.77972,15.65,1009.9886,0.0,93.77627,0.0 +2024-06-21 22:00:00,3.0149627,5.27731,5.7105074,332.9495,15.65,1010.38525,0.0,92.573265,0.0 +2024-06-21 23:00:00,2.1213202,3.9824615,8.130019,321.1155,15.8,1011.08374,0.0,90.511116,0.0 +2024-06-22 00:00:00,1.6763055,4.0718546,252.64589,245.32315,16.25,1011.8902,0.1,91.42202,1.0 +2024-06-22 01:00:00,1.7691805,2.6925821,317.29062,285.06854,17.6,1013.0204,0.4,86.665794,1.0 +2024-06-22 02:00:00,2.7018514,3.443835,357.87894,334.17905,18.2,1012.9387,0.0,86.44642,1.0 +2024-06-22 03:00:00,2.9274564,3.5735137,352.14676,342.072,19.3,1012.6726,0.0,77.91038,1.0 +2024-06-22 04:00:00,4.313931,5.3037724,224.0609,224.23619,19.5,1012.77783,0.4,71.68232,1.0 +2024-06-22 05:00:00,4.004997,5.308484,182.86235,183.23964,18.25,1012.44415,0.4,83.46123,1.0 +2024-06-22 06:00:00,4.669047,6.0016665,170.13426,169.43904,18.6,1011.85913,0.5,82.17596,1.0 +2024-06-22 07:00:00,6.0926185,8.430896,156.80138,157.69374,17.75,1012.23145,1.3,84.21191,1.0 +2024-06-22 08:00:00,5.1107726,7.479305,149.42085,150.35023,17.65,1012.42694,0.0,82.057556,1.0 +2024-06-22 09:00:00,4.9739323,7.6059184,149.82657,151.75037,17.75,1013.12396,0.0,75.436264,1.0 +2024-06-22 10:00:00,4.080441,6.8242216,143.97253,145.14548,16.85,1013.4945,0.0,74.549706,0.0 +2024-06-22 11:00:00,4.2190046,7.256032,148.57048,150.25522,16.35,1014.1741,0.0,72.52255,0.0 +2024-06-22 12:00:00,4.743417,8.405951,145.30478,147.63339,15.3,1014.53955,0.0,71.37172,0.0 +2024-06-22 13:00:00,4.920366,8.0,142.43134,143.13002,15.55,1015.1422,0.0,65.458534,0.0 +2024-06-22 14:00:00,5.0249376,8.146779,137.41954,138.48337,15.1,1015.6246,0.0,61.697754,0.0 +2024-06-22 15:00:00,4.6400433,7.6216793,127.11694,128.07283,14.7,1015.71204,0.0,60.975666,0.0 +2024-06-22 16:00:00,4.382921,7.7201037,124.77791,126.57312,14.05,1015.99,0.0,61.87396,0.0 +2024-06-22 17:00:00,4.429447,8.18352,118.30067,122.52488,13.3,1015.76953,0.0,63.20386,0.0 +2024-06-22 18:00:00,4.438468,8.635392,112.52061,118.3456,12.55,1015.94507,0.0,65.69821,0.0 +2024-06-22 19:00:00,4.7801676,9.062008,105.78082,112.036285,12.15,1015.7347,0.0,67.214966,0.0 +2024-06-22 20:00:00,4.86621,9.330058,99.46225,107.46402,11.8,1015.6251,0.0,68.30987,0.0 +2024-06-22 21:00:00,5.0358715,9.38616,96.84268,104.18433,11.5,1015.5166,0.0,69.19746,0.0 +2024-06-22 22:00:00,5.124451,9.610411,95.59925,102.01146,11.2,1015.90424,0.0,69.85765,0.0 +2024-06-22 23:00:00,5.4037027,9.899495,92.12105,98.13002,10.95,1016.68994,0.0,70.53637,0.0 +2024-06-23 00:00:00,5.9,10.34843,90.0,95.54523,11.4,1017.39764,0.0,69.17721,1.0 +2024-06-23 01:00:00,5.500909,11.065261,88.9584,96.22574,13.4,1018.1521,0.0,67.478226,1.0 +2024-06-23 02:00:00,5.4,7.905694,90.0,92.1747,15.6,1018.61426,0.0,59.749928,1.0 +2024-06-23 03:00:00,5.707013,7.5709977,101.113,102.200455,17.1,1018.3609,0.0,52.846676,1.0 +2024-06-23 04:00:00,5.700877,7.539231,111.61484,111.801476,17.9,1017.6902,0.0,49.056572,1.0 +2024-06-23 05:00:00,5.4120235,7.066117,117.51192,116.9276,18.35,1017.0088,0.0,47.52651,1.0 +2024-06-23 06:00:00,4.6647615,6.053924,120.96369,120.80138,18.6,1016.32196,0.0,46.948635,1.0 +2024-06-23 07:00:00,4.5,5.860034,126.86999,126.674446,18.5,1016.02167,0.0,47.405476,1.0 +2024-06-23 08:00:00,4.560702,6.140033,127.875046,127.05662,18.05,1016.00854,0.0,49.60366,1.0 +2024-06-23 09:00:00,3.4409301,5.940539,125.537766,126.09837,16.85,1016.172,0.0,54.614075,1.0 +2024-06-23 10:00:00,2.4698179,5.500909,111.3707,117.030785,14.7,1016.2078,0.0,60.767506,0.0 +2024-06-23 11:00:00,2.404163,5.4589376,106.9276,118.442825,13.55,1016.57,0.0,63.69694,0.0 +2024-06-23 12:00:00,2.6476402,5.8137765,100.88548,116.56499,12.65,1016.9395,0.0,67.55205,0.0 +2024-06-23 13:00:00,2.8017852,6.109828,92.045364,111.10492,11.85,1017.31226,0.0,70.469475,0.0 +2024-06-23 14:00:00,3.2015622,6.868042,91.78987,106.06006,11.65,1017.5044,0.0,70.43033,0.0 +2024-06-23 15:00:00,3.5014284,7.203471,91.63654,103.650444,11.45,1017.5976,0.0,70.39112,0.0 +2024-06-23 16:00:00,3.6013885,7.34983,91.59111,104.98169,11.2,1017.1933,0.0,71.07409,0.0 +2024-06-23 17:00:00,3.7121422,7.4999995,94.635376,106.26028,10.85,1016.7858,0.0,72.74422,0.0 +2024-06-23 18:00:00,4.101219,8.273452,91.39715,97.64032,10.7,1016.68225,0.0,73.4734,0.0 +2024-06-23 19:00:00,4.4102154,8.505292,86.09958,92.021324,10.45,1016.3771,0.0,73.4283,0.0 +2024-06-23 20:00:00,4.428318,8.502353,83.51703,88.652145,10.2,1016.072,0.0,73.89292,0.0 +2024-06-23 21:00:00,4.3737855,8.429115,79.46087,85.23644,10.0,1015.7685,0.0,74.62873,0.0 +2024-06-23 22:00:00,4.4553337,8.537564,80.960594,84.62339,9.8,1015.663,0.0,75.11274,0.0 +2024-06-23 23:00:00,4.527693,8.714355,83.659904,86.71083,9.65,1015.95593,0.0,74.82695,0.0 +2024-06-24 00:00:00,4.6173587,8.505292,85.03035,87.97868,10.15,1016.3678,0.0,72.36345,1.0 +2024-06-24 01:00:00,4.7010636,9.60833,88.78116,92.385895,12.0,1016.92004,0.0,67.64825,1.0 +2024-06-24 02:00:00,4.501111,6.503076,91.273,91.76235,14.2,1016.7879,0.0,61.27572,1.0 +2024-06-24 03:00:00,5.323533,7.034913,95.38922,95.7105,15.85,1016.3409,0.0,52.33423,1.0 +2024-06-24 04:00:00,5.124451,6.726812,95.59925,95.117226,16.75,1015.1773,0.0,49.24849,1.0 +2024-06-24 05:00:00,4.7169905,6.1131005,94.864426,93.751656,17.45,1014.3051,0.0,47.768505,1.0 +2024-06-24 06:00:00,4.2107005,5.5145264,94.08554,94.15957,17.8,1013.522,0.0,46.72603,1.0 +2024-06-24 07:00:00,4.0199504,5.223983,95.7105,95.49223,17.75,1013.0248,0.0,46.873375,1.0 +2024-06-24 08:00:00,3.522783,4.738143,96.519714,97.27491,17.35,1012.91394,0.0,48.07113,1.0 +2024-06-24 09:00:00,2.2561028,4.491102,102.80426,101.560104,15.95,1012.97235,0.0,56.08345,1.0 +2024-06-24 10:00:00,1.9416487,4.464303,101.88863,105.59287,13.35,1013.09344,0.0,64.75362,0.0 +2024-06-24 11:00:00,2.2561028,5.189412,102.80426,115.083565,12.35,1013.26196,0.0,67.95473,0.0 +2024-06-24 12:00:00,2.915476,6.296825,95.906044,110.44964,11.85,1013.247,0.0,69.26817,0.0 +2024-06-24 13:00:00,3.238827,7.186793,98.88058,111.209305,11.25,1012.5345,0.0,68.43256,0.0 +2024-06-24 14:00:00,3.436568,7.558439,98.3658,107.71589,11.05,1012.3301,0.0,68.86714,0.0 +2024-06-24 15:00:00,3.306055,7.203471,93.46816,103.650444,10.8,1012.0251,0.0,70.26317,0.0 +2024-06-24 16:00:00,3.3015149,6.9584484,88.264336,97.43131,10.3,1011.6135,0.0,72.391426,0.0 +2024-06-24 17:00:00,3.535534,7.2,81.86999,90.0,9.8,1010.90393,0.0,74.852905,0.0 +2024-06-24 18:00:00,3.748333,7.5026665,80.78905,88.47251,9.55,1010.3014,0.0,76.11864,0.0 +2024-06-24 19:00:00,3.9204593,7.902531,84.14409,88.54982,9.35,1009.5023,0.0,76.88148,0.0 +2024-06-24 20:00:00,4.1,8.302409,77.319626,80.99158,9.2,1009.1009,0.0,76.857254,0.0 +2024-06-24 21:00:00,4.4384685,8.658521,75.650635,75.96373,9.05,1008.60077,0.0,76.56635,0.0 +2024-06-24 22:00:00,4.9729266,9.052072,74.84589,73.9676,8.7,1008.3916,0.0,77.85325,0.0 +2024-06-24 23:00:00,5.2201533,9.425497,73.300674,72.718414,8.45,1008.5824,0.0,79.181335,0.0 +2024-06-25 00:00:00,5.565968,9.581754,72.21602,71.75405,9.0,1008.5991,0.0,77.89996,1.0 +2024-06-25 01:00:00,5.6797886,11.988328,63.886147,62.152523,11.7,1008.18536,0.0,70.19821,1.0 +2024-06-25 02:00:00,4.9396353,7.907591,58.240574,57.917847,14.35,1007.96704,0.0,63.22749,1.0 +2024-06-25 03:00:00,4.967897,6.7357254,49.899166,49.214275,16.45,1007.43365,0.0,53.769394,1.0 +2024-06-25 04:00:00,4.675468,6.0207973,41.531677,41.63345,17.7,1006.478,0.0,47.021244,1.0 +2024-06-25 05:00:00,3.6055512,4.548626,33.6901,33.340725,18.55,1005.6101,0.0,43.814644,1.0 +2024-06-25 06:00:00,2.1931713,2.6832817,24.227736,26.564985,18.95,1004.828,0.0,41.71077,1.0 +2024-06-25 07:00:00,1.3416408,1.7492856,26.564985,30.963696,19.0,1004.23425,0.0,40.44287,1.0 +2024-06-25 08:00:00,1.2041595,1.6278821,48.366554,47.489597,18.75,1003.8307,0.0,41.509304,1.0 +2024-06-25 09:00:00,1.2165525,1.4560219,99.46225,74.054535,17.3,1003.4916,0.0,55.478294,1.0 +2024-06-25 10:00:00,2.3086793,2.184033,85.03035,74.054535,12.95,1003.5627,0.0,66.923676,0.0 +2024-06-25 11:00:00,2.0880613,3.383785,73.300674,71.0295,12.25,1003.5419,0.0,67.93393,0.0 +2024-06-25 12:00:00,2.505993,4.104875,61.389645,55.922764,11.25,1003.70996,0.0,70.35183,0.0 +2024-06-25 13:00:00,3.001666,4.738143,60.018444,45.85501,10.9,1003.2038,0.0,68.12315,0.0 +2024-06-25 14:00:00,3.4999998,5.661272,53.13002,35.655422,10.95,1002.61053,0.0,65.803406,0.0 +2024-06-25 15:00:00,3.6400552,6.676077,37.184795,16.534922,11.45,1002.1298,0.0,61.688507,0.0 +2024-06-25 16:00:00,3.8910153,7.3552704,25.90646,7.0283103,11.25,1001.8261,0.0,62.94946,0.0 +2024-06-25 17:00:00,4.3324356,8.3,18.853252,360.0,11.3,1001.3319,0.0,63.18149,0.0 +2024-06-25 18:00:00,4.4553337,8.683318,9.039405,352.0566,11.5,1001.2388,0.0,63.007484,0.0 +2024-06-25 19:00:00,4.9365983,9.394147,6.980963,348.33124,11.8,1000.95044,0.0,65.533676,0.0 +2024-06-25 20:00:00,5.3,9.992497,360.0,346.10278,12.7,1000.48126,0.0,69.20196,0.0 +2024-06-25 21:00:00,5.4744864,9.651943,9.462248,354.05322,13.5,999.81067,0.0,70.0729,0.0 +2024-06-25 22:00:00,5.346027,9.457801,352.47626,340.22382,14.1,1000.52277,0.2,72.11016,0.0 +2024-06-25 23:00:00,5.5226803,9.616652,354.80566,343.0724,13.4,1000.6011,1.2,86.54169,0.0 +2024-06-26 00:00:00,4.652956,8.15414,331.78275,326.5048,14.0,1001.51117,1.2,88.91182,1.0 +2024-06-26 01:00:00,4.6,7.256721,360.0,348.0707,14.8,1001.8322,0.2,88.1085,1.0 +2024-06-26 02:00:00,4.002499,6.726812,12.99463,348.85715,15.75,1002.1574,0.2,89.34249,1.0 +2024-06-26 03:00:00,3.3837848,4.360046,325.84024,323.39282,16.9,1001.99243,0.3,86.31973,1.0 +2024-06-26 04:00:00,2.1260293,2.624881,318.81415,319.63553,16.8,1001.5929,0.2,87.43109,1.0 +2024-06-26 05:00:00,1.9313208,2.4166093,338.74942,335.55606,17.0,1000.6069,0.4,88.86677,1.0 +2024-06-26 06:00:00,2.2022715,2.7802877,309.47244,307.6943,16.95,1000.20886,0.7,86.883064,1.0 +2024-06-26 07:00:00,2.7856774,3.992493,338.9624,337.93204,16.6,1000.1988,0.8,90.858444,1.0 +2024-06-26 08:00:00,2.418677,3.6891732,330.25522,327.17145,16.55,1000.19727,0.4,92.03026,1.0 +2024-06-26 09:00:00,2.2472203,3.6715121,339.14545,330.64233,16.25,999.89105,0.4,91.128,1.0 +2024-06-26 10:00:00,2.4020824,4.707441,357.6141,347.73523,15.6,999.97144,0.0,90.79078,0.0 +2024-06-26 11:00:00,3.0232434,5.7628117,325.78424,321.34018,15.3,1000.1609,0.3,90.77035,0.0 +2024-06-26 12:00:00,3.4205263,6.224147,322.12497,316.30188,15.55,1000.36676,0.3,90.20067,0.0 +2024-06-26 13:00:00,4.0360875,6.6610813,311.98712,305.83774,15.25,999.9614,2.1,89.59439,0.0 +2024-06-26 14:00:00,3.2802439,5.964059,307.56866,304.75598,15.95,999.98175,0.1,87.6375,0.0 +2024-06-26 15:00:00,4.5,7.50733,323.13,318.23978,15.45,999.967,0.2,87.87824,0.0 +2024-06-26 16:00:00,3.3241541,6.003332,344.2913,330.01843,14.95,999.4567,0.0,89.8639,0.0 +2024-06-26 17:00:00,3.176476,6.280127,331.8215,322.76508,14.7,998.95374,0.1,89.55221,0.0 +2024-06-26 18:00:00,3.6619666,6.946222,304.9921,300.25635,15.35,998.7743,0.1,85.32578,0.0 +2024-06-26 19:00:00,4.5,7.8549347,306.86996,301.46408,15.5,998.5803,0.1,83.683655,0.0 +2024-06-26 20:00:00,4.750789,8.241965,310.73203,305.6186,15.7,998.1895,0.1,81.54319,0.0 +2024-06-26 21:00:00,5.2630787,9.050967,321.17017,315.0001,15.65,997.593,0.0,81.53671,0.0 +2024-06-26 22:00:00,5.8600345,9.481033,295.2531,296.29474,15.5,997.787,0.0,79.66235,0.0 +2024-06-26 23:00:00,6.1717095,9.900505,296.98016,293.1986,14.05,998.5379,2.7,89.79635,0.0 +2024-06-27 00:00:00,4.924429,7.6844,330.8325,325.069,14.5,998.3528,0.1,89.53679,1.0 +2024-06-27 01:00:00,4.850773,7.1175838,345.67725,335.95578,16.25,998.1061,0.0,83.49804,1.0 +2024-06-27 02:00:00,4.7885275,6.6370173,331.29416,329.18436,18.05,997.8602,0.4,71.18093,1.0 +2024-06-27 03:00:00,7.201389,9.974467,295.4975,295.53738,18.45,997.7726,0.3,61.648403,1.0 +2024-06-27 04:00:00,8.825531,12.033287,289.87225,291.4478,18.25,996.9733,0.3,63.05079,1.0 +2024-06-27 05:00:00,8.023092,11.14271,292.72977,291.03757,17.7,996.56104,0.1,69.49768,1.0 +2024-06-27 06:00:00,7.694154,10.465658,297.8972,297.29947,18.1,995.68,0.4,72.12747,1.0 +2024-06-27 07:00:00,6.795587,9.457801,302.98853,303.35403,17.25,995.65564,0.3,73.88768,1.0 +2024-06-27 08:00:00,6.8,9.752949,298.0724,298.1415,17.1,995.8496,0.9,77.07335,1.0 +2024-06-27 09:00:00,7.3824115,11.1892805,294.8293,294.2744,17.25,995.9531,0.1,71.73556,1.0 +2024-06-27 10:00:00,7.3817344,11.399123,305.628,303.5507,16.05,996.1171,0.1,79.21839,0.0 +2024-06-27 11:00:00,7.071068,10.956734,298.7397,296.56497,17.0,996.24347,0.0,76.05614,0.0 +2024-06-27 12:00:00,7.4625735,11.8207445,302.4123,299.38406,16.75,996.5338,0.7,73.80078,0.0 +2024-06-27 13:00:00,7.7878113,11.79237,294.2613,292.43304,17.5,996.55536,0.0,67.871765,0.0 +2024-06-27 14:00:00,7.632169,11.733712,301.60745,299.62366,16.15,996.6157,0.0,73.94004,0.0 +2024-06-27 15:00:00,7.0092793,10.934349,312.10864,309.8055,16.75,995.9388,0.0,71.87986,0.0 +2024-06-27 16:00:00,7.7155685,12.096694,317.62646,313.3252,16.35,995.43164,0.9,76.70383,0.0 +2024-06-27 17:00:00,8.940358,13.601471,306.3573,306.02747,16.45,994.9386,0.4,74.72737,0.0 +2024-06-27 18:00:00,7.7175126,11.63615,301.21835,298.76755,14.7,995.48303,3.8,84.97732,0.0 +2024-06-27 19:00:00,7.993122,11.886968,313.47928,312.9546,14.75,994.88934,0.6,87.52922,0.0 +2024-06-27 20:00:00,7.50733,11.386395,318.23978,316.0674,14.55,994.78455,0.2,88.08675,0.0 +2024-06-27 21:00:00,7.605919,11.677757,320.8696,317.42932,14.1,994.3749,0.4,90.98554,0.0 +2024-06-27 22:00:00,6.2769423,9.929753,329.3494,325.66974,14.45,994.484,0.2,89.82645,0.0 +2024-06-27 23:00:00,5.3263493,8.761849,309.66782,308.0471,15.3,994.5086,3.8,87.29387,0.0 +2024-06-28 00:00:00,3.8275316,6.6407833,289.85532,288.43503,16.2,995.1298,0.3,81.87462,1.0 +2024-06-28 01:00:00,5.731492,8.697701,263.9911,261.40417,16.8,995.8412,0.5,82.484726,1.0 +2024-06-28 02:00:00,5.8940644,8.160883,255.2564,252.89719,18.0,996.3714,0.3,75.72311,1.0 +2024-06-28 03:00:00,5.940539,7.9202275,233.90163,232.69597,17.85,996.96204,0.4,77.94464,1.0 +2024-06-28 04:00:00,6.300793,8.184131,215.9606,215.04945,18.0,996.86725,0.2,76.96267,1.0 +2024-06-28 05:00:00,6.5863495,8.595929,210.0685,209.24873,18.65,997.0841,0.2,76.07415,1.0 +2024-06-28 06:00:00,7.068239,9.310746,205.1148,204.08745,18.45,997.4751,0.1,76.78386,1.0 +2024-06-28 07:00:00,7.1589108,9.590098,192.09474,191.42706,18.1,998.35767,0.2,75.73939,1.0 +2024-06-28 08:00:00,6.987131,9.602604,189.05782,188.38316,17.8,999.34064,0.0,74.22467,1.0 +2024-06-28 09:00:00,6.0033326,9.104944,181.9091,181.88815,17.45,1000.4214,0.0,72.95996,1.0 +2024-06-28 10:00:00,5.8549128,9.489468,172.14677,172.12616,17.15,1001.20624,0.0,70.08072,0.0 +2024-06-28 11:00:00,5.565968,9.265528,162.21602,161.76051,16.7,1001.9867,0.0,70.69225,0.0 +2024-06-28 12:00:00,4.8754487,8.458132,154.48618,155.55606,16.15,1003.0615,0.0,73.45262,0.0 +2024-06-28 13:00:00,4.2720017,7.877182,147.42595,151.15744,15.6,1004.43384,0.0,73.59937,0.0 +2024-06-28 14:00:00,4.243819,8.013114,145.56096,150.87604,15.05,1004.9135,0.0,75.23638,0.0 +2024-06-28 15:00:00,4.360046,8.18352,143.39284,147.47513,14.45,1005.3917,0.0,77.16861,0.0 +2024-06-28 16:00:00,4.0459857,7.7665954,140.01317,145.49142,13.7,1005.76624,0.0,79.40613,0.0 +2024-06-28 17:00:00,3.6069376,7.262231,136.12321,141.7098,13.05,1006.1436,0.0,81.19563,0.0 +2024-06-28 18:00:00,3.2202482,6.789698,126.15828,133.8066,12.45,1006.81976,0.0,83.324455,0.0 +2024-06-28 19:00:00,2.7784889,6.1846585,120.256355,129.09386,11.8,1007.0979,0.0,85.23093,0.0 +2024-06-28 20:00:00,2.2847319,5.5470715,113.198616,123.976585,11.15,1007.47485,0.0,86.90261,0.0 +2024-06-28 21:00:00,2.0124612,5.021952,116.56499,125.27251,10.6,1007.8547,0.0,88.03243,0.0 +2024-06-28 22:00:00,2.3600848,5.4451814,126.384445,135.74397,10.45,1008.64343,0.0,87.721725,0.0 +2024-06-28 23:00:00,2.5942245,5.8898215,117.552734,130.17917,10.15,1009.4274,0.0,88.29127,0.0 +2024-06-29 00:00:00,3.2649658,6.1032777,117.34979,124.992096,10.7,1010.2375,0.0,86.85912,1.0 +2024-06-29 01:00:00,3.7802117,5.9816384,127.47626,128.21107,12.5,1011.6799,0.0,82.21985,1.0 +2024-06-29 02:00:00,3.3600597,4.404543,143.47105,140.52757,14.15,1012.2248,0.0,78.680695,1.0 +2024-06-29 03:00:00,3.6769552,4.651881,157.61983,154.5367,15.2,1012.6526,0.0,76.77512,1.0 +2024-06-29 04:00:00,4.1629314,5.1429563,155.89777,153.43501,16.1,1012.3816,0.0,73.93134,1.0 +2024-06-29 05:00:00,4.304649,5.408327,149.26459,146.3099,16.95,1012.0099,0.0,69.81067,1.0 +2024-06-29 06:00:00,3.9824615,5.077401,151.50446,147.87503,17.6,1011.7312,0.0,66.3383,1.0 +2024-06-29 07:00:00,3.9217343,4.976947,160.64091,157.5572,17.85,1011.83765,0.0,64.44159,1.0 +2024-06-29 08:00:00,3.905125,5.124451,166.67546,162.97939,17.55,1012.4241,0.0,64.80492,1.0 +2024-06-29 09:00:00,3.3376637,5.6089215,171.38443,168.69011,16.45,1013.0861,0.0,71.1144,1.0 +2024-06-29 10:00:00,3.1780496,6.334824,167.27565,168.15794,14.9,1013.8337,0.0,75.21128,0.0 +2024-06-29 11:00:00,2.863564,6.198387,155.22488,162.1496,14.2,1014.50714,0.0,76.10551,0.0 +2024-06-29 12:00:00,2.3430748,5.8249464,129.80553,145.49142,13.2,1015.17126,0.0,79.334145,0.0 +2024-06-29 13:00:00,2.9154758,6.6483083,120.96369,136.2188,12.65,1015.8488,0.0,77.66735,0.0 +2024-06-29 14:00:00,3.1622777,6.9065185,108.43504,124.3804,12.2,1016.3312,0.0,78.92185,0.0 +2024-06-29 15:00:00,3.104835,6.6030297,104.93147,125.13428,11.7,1016.6134,0.0,81.01496,0.0 +2024-06-29 16:00:00,2.8160257,6.3820057,106.50443,125.4334,11.2,1016.5984,0.0,83.45602,0.0 +2024-06-29 17:00:00,2.657066,6.1846585,109.798965,129.09386,10.85,1016.48834,0.0,85.12839,0.0 +2024-06-29 18:00:00,2.9120438,6.4899926,105.945465,123.690094,10.75,1016.68384,0.0,85.11753,0.0 +2024-06-29 19:00:00,3.026549,6.4884515,97.59455,114.5901,10.6,1016.2824,0.0,85.39042,0.0 +2024-06-29 20:00:00,3.1064448,6.6098413,93.691315,107.61267,10.3,1016.2735,0.0,86.23287,0.0 +2024-06-29 21:00:00,3.1064448,6.718631,93.691315,104.65679,9.95,1016.46094,0.0,87.67609,0.0 +2024-06-29 22:00:00,3.6055512,7.35459,93.17977,101.768265,9.85,1016.65607,0.0,87.965546,0.0 +2024-06-29 23:00:00,3.7013512,7.496666,91.54813,99.21095,9.75,1017.34717,0.0,87.95659,0.0 +2024-06-30 00:00:00,4.101219,7.653104,91.39715,96.75348,10.35,1017.8612,0.0,85.94565,1.0 +2024-06-30 01:00:00,4.4045434,8.746428,92.60251,95.906044,12.4,1018.6179,0.0,81.108955,1.0 +2024-06-30 02:00:00,4.031129,5.9413805,97.12492,96.76608,14.6,1018.882,0.0,76.17053,1.0 +2024-06-30 03:00:00,4.14367,5.4451814,98.32557,97.38595,16.45,1018.4411,0.0,70.64451,1.0 +2024-06-30 04:00:00,3.905125,5.021952,103.32455,102.65255,17.75,1017.78503,0.0,65.06404,1.0 +2024-06-30 05:00:00,3.794733,4.9040794,108.43504,106.58742,18.6,1016.8179,0.0,60.667805,1.0 +2024-06-30 06:00:00,4.0521603,5.2630787,105.75124,104.300316,18.95,1016.3322,0.0,58.76622,1.0 +2024-06-30 07:00:00,4.244997,5.4571056,105.01841,103.781624,19.05,1016.13666,0.0,57.24533,1.0 +2024-06-30 08:00:00,4.110961,5.565968,108.43504,107.78398,18.6,1016.32196,0.0,57.902893,1.0 +2024-06-30 09:00:00,3.733631,6.3245554,110.37652,108.43504,17.2,1016.6781,0.0,64.51293,1.0 +2024-06-30 10:00:00,3.6687872,7.1309185,107.44727,104.62092,15.2,1017.01575,0.0,70.40417,0.0 +2024-06-30 11:00:00,3.535534,7.1449285,98.13002,96.42866,13.8,1017.47003,0.0,75.27843,0.0 +2024-06-30 12:00:00,2.915476,6.519202,95.906044,94.39862,12.7,1017.63525,0.0,78.99536,0.0 +2024-06-30 13:00:00,3.0413814,6.8249536,99.46225,100.98061,12.1,1017.61707,0.0,81.61727,0.0 +2024-06-30 14:00:00,2.828427,6.5924196,98.13002,99.60514,11.6,1017.60205,0.0,84.06887,0.0 +2024-06-30 15:00:00,2.9274564,6.7742157,97.853226,98.48886,11.3,1017.4935,0.0,85.177086,0.0 +2024-06-30 16:00:00,3.1400635,7.1449285,99.16227,96.42866,11.15,1017.29083,0.0,85.16088,0.0 +2024-06-30 17:00:00,3.4132097,7.510659,95.04236,93.052826,11.0,1016.5924,0.0,84.284546,0.0 +2024-06-30 18:00:00,3.6013885,7.802564,91.59111,88.531235,10.85,1016.3892,0.0,83.69772,0.0 +2024-06-30 19:00:00,3.6055512,7.951101,86.82024,83.50075,10.85,1015.89343,0.0,82.56853,0.0 +2024-06-30 20:00:00,4.1593266,8.6122,80.31129,77.254715,10.95,1015.5993,0.0,81.74352,0.0 +2024-06-30 21:00:00,4.9040794,9.518929,73.41259,70.99393,11.05,1015.10626,0.0,82.03473,0.0 +2024-06-30 22:00:00,5.60803,10.427848,68.00882,65.647,11.2,1015.1111,0.0,82.33274,0.0 +2024-06-30 23:00:00,5.99333,10.824047,64.2901,62.48809,11.2,1015.4085,0.0,83.173935,0.0 +2024-07-01 00:00:00,6.177378,10.804629,60.94549,59.400093,11.75,1015.8217,0.0,81.29616,1.0 +2024-07-01 01:00:00,5.8523498,12.360016,56.852993,53.22272,13.7,1016.1779,0.0,77.05076,1.0 +2024-07-01 02:00:00,5.661272,8.140025,54.344578,52.98925,15.75,1016.338,0.0,71.69449,1.0 +2024-07-01 03:00:00,5.456189,7.366139,48.715385,48.301968,17.45,1015.7927,0.0,67.414024,1.0 +2024-07-01 04:00:00,4.8795495,6.506919,44.169785,43.754726,18.85,1015.0401,0.0,64.44814,1.0 +2024-07-01 05:00:00,4.4407206,5.742821,35.837746,35.07383,19.8,1013.8774,0.0,61.755974,1.0 +2024-07-01 06:00:00,3.9357338,5.1429563,27.216026,26.564985,20.45,1012.90405,0.0,57.97149,1.0 +2024-07-01 07:00:00,3.2572994,4.3965893,17.87879,17.198626,20.75,1012.61505,0.0,52.737473,1.0 +2024-07-01 08:00:00,2.3194828,3.522783,7.4313188,6.5197067,20.35,1013.00037,0.0,56.249454,1.0 +2024-07-01 09:00:00,1.8384776,2.745906,22.380184,10.491434,18.25,1013.0392,0.0,75.02951,1.0 +2024-07-01 10:00:00,2.0124612,2.4413111,63.435013,34.9921,15.55,1013.3573,0.0,75.07063,0.0 +2024-07-01 11:00:00,2.624881,3.8275318,72.25524,56.725105,15.55,1013.9523,0.0,71.65721,0.0 +2024-07-01 12:00:00,3.5846896,6.129437,67.01126,56.3099,15.9,1014.25995,0.0,68.91137,0.0 +2024-07-01 13:00:00,2.6925824,5.5,58.671368,53.13002,14.05,1015.1967,0.0,77.88245,0.0 +2024-07-01 14:00:00,2.863564,5.3823786,65.22488,54.833485,14.7,1015.31537,0.0,75.680756,0.0 +2024-07-01 15:00:00,3.49285,6.105735,66.37061,58.392544,14.2,1015.3996,0.0,77.90532,0.0 +2024-07-01 16:00:00,4.0706263,6.6887965,62.17599,58.44866,14.15,1015.2988,0.0,77.121574,0.0 +2024-07-01 17:00:00,4.1629314,6.983552,65.897766,60.8658,13.75,1014.8904,0.0,77.05864,0.0 +2024-07-01 18:00:00,4.365776,7.291776,69.904686,64.84074,13.1,1015.0693,0.0,78.26131,0.0 +2024-07-01 19:00:00,4.1785164,7.2615423,68.96242,67.319405,12.8,1015.0604,0.0,77.95287,0.0 +2024-07-01 20:00:00,4.3081317,7.467262,68.19853,69.62349,12.65,1015.2539,0.0,77.40556,0.0 +2024-07-01 21:00:00,4.606517,7.66942,62.878777,67.782364,12.4,1015.34576,0.0,76.844444,0.0 +2024-07-01 22:00:00,4.614109,8.013114,60.1012,60.87604,12.25,1015.4404,0.0,75.271706,0.0 +2024-07-01 23:00:00,3.8910153,7.2006946,64.09355,62.723324,12.05,1016.0292,0.0,74.2196,0.0 +2024-07-02 00:00:00,4.2190046,6.963476,58.570484,54.9405,12.45,1016.43774,0.0,73.535446,1.0 +2024-07-02 01:00:00,3.9824615,6.7675695,61.504463,55.840256,15.6,1017.226,0.0,69.08198,1.0 +2024-07-02 02:00:00,2.641969,6.129437,60.524208,56.3099,18.25,1017.8986,0.0,66.4754,1.0 +2024-07-02 03:00:00,2.376973,3.1016126,67.75093,69.22767,20.05,1017.7522,0.0,49.808254,1.0 +2024-07-02 04:00:00,1.9697715,2.5079873,113.962494,113.49858,20.6,1017.3712,0.0,46.391605,1.0 +2024-07-02 05:00:00,2.5553863,3.1622775,149.42085,145.30478,20.9,1016.68555,0.0,46.788876,1.0 +2024-07-02 06:00:00,3.757659,4.7010636,154.7989,150.70874,21.05,1016.1937,0.0,48.42959,1.0 +2024-07-02 07:00:00,4.707441,6.113101,167.73524,164.82703,20.15,1016.2674,0.0,56.01339,1.0 +2024-07-02 08:00:00,5.4744864,7.334848,170.53775,168.9965,18.8,1016.72437,0.0,68.80764,1.0 +2024-07-02 09:00:00,4.9040794,7.6537576,163.41258,162.51192,17.7,1017.585,0.0,72.76593,1.0 +2024-07-02 10:00:00,4.8764744,8.635392,151.85849,151.6544,16.55,1018.2457,0.0,72.798836,0.0 +2024-07-02 11:00:00,5.140039,9.140022,142.90709,143.00464,15.85,1019.01825,0.0,73.88781,0.0 +2024-07-02 12:00:00,5.0447993,9.090654,129.3693,129.64413,15.1,1019.59106,0.0,75.49533,0.0 +2024-07-02 13:00:00,4.909175,8.930845,123.36639,124.04598,14.25,1020.2601,0.0,79.22098,0.0 +2024-07-02 14:00:00,5.1,9.305912,118.072395,118.21727,13.75,1020.3441,0.0,79.67882,0.0 +2024-07-02 15:00:00,5.3225937,9.570789,115.60214,116.02953,13.5,1020.6339,0.0,78.05953,0.0 +2024-07-02 16:00:00,5.3310413,9.4541,113.198616,113.03947,13.25,1020.92395,0.0,77.49903,0.0 +2024-07-02 17:00:00,5.2201533,9.330058,106.699326,107.46402,12.8,1020.81146,0.0,78.47987,0.0 +2024-07-02 18:00:00,5.2392745,9.483143,103.24053,104.03627,12.35,1020.79767,0.0,77.8839,0.0 +2024-07-02 19:00:00,5.346027,9.489468,97.52373,97.87385,11.9,1021.0814,0.0,77.02577,0.0 +2024-07-02 20:00:00,5.400926,9.60833,91.06089,92.385895,11.5,1021.36664,0.0,76.96207,0.0 +2024-07-02 21:00:00,5.7008767,10.100495,88.99494,89.43275,11.15,1021.5544,0.0,76.381836,0.0 +2024-07-02 22:00:00,6.1008196,10.5019045,89.06083,88.90881,10.9,1021.84406,0.0,75.30035,0.0 +2024-07-02 23:00:00,6.400781,10.804166,89.10485,88.4089,10.6,1022.1322,0.0,74.21955,0.0 +2024-07-03 00:00:00,6.8,11.1004505,90.0,89.48385,10.85,1022.834,0.0,72.74422,1.0 +2024-07-03 01:00:00,6.200806,9.600521,90.92403,89.403206,12.25,1023.2736,0.0,71.03218,1.0 +2024-07-03 02:00:00,6.0133185,8.205485,93.814,92.09521,13.9,1023.4225,0.0,65.99173,1.0 +2024-07-03 03:00:00,5.6142673,7.5059977,94.08554,92.29056,15.6,1023.07666,0.0,62.44617,1.0 +2024-07-03 04:00:00,5.707889,7.6006575,93.012726,90.75384,17.05,1022.3263,0.0,58.6974,1.0 +2024-07-03 05:00:00,6.307139,8.429115,87.27374,85.23644,17.95,1021.4601,0.0,53.97732,1.0 +2024-07-03 06:00:00,6.0033326,8.1154175,88.09089,86.46777,18.35,1020.8765,0.0,51.754208,1.0 +2024-07-03 07:00:00,5.813777,7.905694,93.945114,92.1747,18.35,1020.8765,0.0,51.578934,1.0 +2024-07-03 08:00:00,5.6885853,8.075271,100.12462,97.82899,17.85,1021.1596,0.0,53.95133,1.0 +2024-07-03 09:00:00,4.8270073,7.9429216,103.17256,100.88548,16.75,1021.524,0.0,58.03179,1.0 +2024-07-03 10:00:00,4.237924,7.884795,109.290146,105.44638,15.3,1021.9768,0.0,59.88129,0.0 +2024-07-03 11:00:00,4.2720017,8.104321,110.55613,105.75124,14.4,1022.7435,0.0,61.533356,0.0 +2024-07-03 12:00:00,4.554119,8.464632,109.23077,104.364624,13.8,1023.2213,0.0,62.028065,0.0 +2024-07-03 13:00:00,4.4598203,8.634812,109.653915,103.39252,13.45,1022.91327,0.0,60.0515,0.0 +2024-07-03 14:00:00,4.3965893,8.570297,107.19863,101.44101,13.0,1023.197,0.0,61.840267,0.0 +2024-07-03 15:00:00,4.5122056,8.670064,102.80426,97.28886,12.75,1023.48706,0.0,63.734447,0.0 +2024-07-03 16:00:00,4.909175,9.200543,93.50346,89.37726,12.5,1023.1819,0.0,64.78723,0.0 +2024-07-03 17:00:00,5.7035074,10.14002,87.99049,84.90798,12.4,1022.6832,0.0,64.096756,0.0 +2024-07-03 18:00:00,6.3505907,11.031772,82.763176,81.13546,12.2,1022.3795,0.0,63.60904,0.0 +2024-07-03 19:00:00,6.8249536,11.573245,79.019394,77.5249,12.0,1022.0761,0.0,63.123154,0.0 +2024-07-03 20:00:00,6.7911706,11.594827,76.37299,75.004875,11.7,1022.16595,0.0,63.05381,0.0 +2024-07-03 21:00:00,6.865857,11.666191,77.38069,75.60637,11.35,1022.15533,0.0,62.753006,0.0 +2024-07-03 22:00:00,7.138627,12.030378,78.6901,76.5413,11.1,1022.2468,0.0,61.60524,0.0 +2024-07-03 23:00:00,7.3979726,12.39395,76.715126,75.51523,10.8,1022.3367,0.0,61.31754,0.0 +2024-07-04 00:00:00,8.104321,13.036104,74.248764,73.51117,10.9,1022.4389,0.0,61.77428,1.0 +2024-07-04 01:00:00,8.228001,13.256319,73.76758,73.34208,12.1,1022.2773,0.0,62.927273,1.0 +2024-07-04 02:00:00,8.5440035,12.336937,73.68607,73.033775,13.7,1022.2266,0.0,59.698475,1.0 +2024-07-04 03:00:00,8.228001,11.513471,73.76758,72.82401,15.3,1021.7785,0.0,56.10996,1.0 +2024-07-04 04:00:00,7.5286117,10.374005,73.009094,72.612946,16.6,1021.0239,0.0,52.174633,1.0 +2024-07-04 05:00:00,6.5253353,8.860023,74.89885,73.61038,17.5,1020.05853,0.0,49.62369,1.0 +2024-07-04 06:00:00,6.041523,8.1024685,77.57407,77.16439,18.0,1019.3791,0.0,48.085308,1.0 +2024-07-04 07:00:00,5.6435804,7.6941533,82.875084,81.02746,18.05,1018.9837,0.0,47.770287,1.0 +2024-07-04 08:00:00,5.3,7.605919,90.0,87.73955,17.55,1018.96924,0.0,50.667747,1.0 +2024-07-04 09:00:00,5.0635953,8.249242,99.090195,96.2634,16.3,1018.9325,0.0,55.221783,1.0 +2024-07-04 10:00:00,4.5122056,8.220098,102.80426,99.80603,14.85,1019.0879,0.0,59.977367,0.0 +2024-07-04 11:00:00,4.3416586,8.13941,104.67644,100.619606,13.95,1019.4577,0.0,62.704914,0.0 +2024-07-04 12:00:00,4.7801676,8.786353,105.78082,101.821465,13.4,1019.63947,0.0,62.362522,0.0 +2024-07-04 13:00:00,6.0016665,10.2956295,100.56097,97.81521,12.7,1019.32086,0.0,66.18472,0.0 +2024-07-04 14:00:00,5.4,9.712878,90.0,87.049286,12.05,1019.2022,0.0,66.50166,0.0 +2024-07-04 15:00:00,5.0249376,9.222798,84.2895,80.639885,12.15,1018.7093,0.0,63.37735,0.0 +2024-07-04 16:00:00,4.20119,8.249242,88.6361,83.73661,11.7,1018.3981,0.0,65.284775,0.0 +2024-07-04 17:00:00,4.0112343,7.9075913,85.71093,80.53775,11.15,1017.98486,0.0,68.17517,0.0 +2024-07-04 18:00:00,4.0447497,8.149233,81.46932,75.793205,11.0,1017.3855,0.0,68.61854,0.0 +2024-07-04 19:00:00,4.031129,8.125269,82.875084,76.47682,10.7,1017.178,0.0,71.47056,0.0 +2024-07-04 20:00:00,3.8209946,7.6902537,83.99109,77.22876,10.3,1017.16583,0.0,74.93918,0.0 +2024-07-04 21:00:00,4.1303754,8.2,83.047134,77.319626,9.9,1016.6576,0.0,77.50303,0.0 +2024-07-04 22:00:00,4.491102,8.516455,78.4399,74.33178,9.7,1016.5525,0.0,79.09217,0.0 +2024-07-04 23:00:00,5.141984,9.272,76.50425,73.71501,9.65,1016.84827,0.0,79.084785,0.0 +2024-07-05 00:00:00,5.661272,9.646243,72.52514,70.62577,10.1,1016.862,0.0,77.80187,1.0 +2024-07-05 01:00:00,5.661272,9.2358,72.52514,70.38782,11.95,1016.81934,0.0,72.945656,1.0 +2024-07-05 02:00:00,6.1351447,8.637709,70.974304,69.67678,13.75,1016.57605,0.0,67.55141,1.0 +2024-07-05 03:00:00,6.307139,8.586617,64.65388,63.733425,15.3,1016.12616,0.0,63.44356,1.0 +2024-07-05 04:00:00,6.6850576,8.962701,55.358997,54.536564,16.5,1015.07074,0.0,56.99379,1.0 +2024-07-05 05:00:00,6.453681,8.579627,49.3988,49.25393,17.45,1014.0076,0.0,49.101704,1.0 +2024-07-05 06:00:00,5.869412,7.8492036,44.309803,45.516098,17.75,1013.0248,0.0,45.75454,1.0 +2024-07-05 07:00:00,5.60803,7.5927596,50.063675,49.80802,17.9,1012.43427,0.0,43.17783,1.0 +2024-07-05 08:00:00,5.1312766,7.4330344,56.929314,56.523697,17.6,1012.1278,0.0,45.083538,1.0 +2024-07-05 09:00:00,3.847077,6.896376,62.10283,60.461315,16.4,1012.1921,0.0,48.644276,1.0 +2024-07-05 10:00:00,3.0083218,6.7535176,68.5522,62.676193,14.25,1012.1289,0.0,52.086582,0.0 +2024-07-05 11:00:00,3.1622777,7.021396,71.564964,63.79995,13.1,1012.2929,0.0,55.738186,0.0 +2024-07-05 12:00:00,3.544009,7.725283,73.61038,68.74943,12.35,1012.1712,0.0,58.54393,0.0 +2024-07-05 13:00:00,3.9849718,8.300602,72.47434,68.070366,11.65,1011.95184,0.0,62.168713,0.0 +2024-07-05 14:00:00,4.438468,8.944272,67.47939,63.435013,11.65,1011.7536,0.0,62.168713,0.0 +2024-07-05 15:00:00,4.606517,9.055386,62.878777,59.470375,11.7,1011.4574,0.0,60.465836,0.0 +2024-07-05 16:00:00,4.9648767,9.381365,62.402794,58.51258,11.45,1010.7561,0.0,60.1936,0.0 +2024-07-05 17:00:00,5.8309517,10.456099,59.03632,56.3099,11.25,1010.05566,0.0,60.56897,0.0 +2024-07-05 18:00:00,6.6030297,11.280071,54.865723,52.92685,11.35,1009.46387,0.0,58.70587,0.0 +2024-07-05 19:00:00,7.247068,12.116518,50.59937,48.68073,11.15,1008.863,0.0,57.833286,0.0 +2024-07-05 20:00:00,7.7833157,12.869344,47.082573,44.999897,11.05,1008.2649,0.0,56.995266,0.0 +2024-07-05 21:00:00,7.8517513,12.897286,43.451904,41.227627,10.9,1007.6655,0.0,56.956787,0.0 +2024-07-05 22:00:00,7.7336926,12.682271,40.279785,37.954285,10.75,1007.85944,0.0,57.120693,0.0 +2024-07-05 23:00:00,7.8600254,12.870509,36.724194,34.554436,10.65,1008.3521,0.0,56.690674,0.0 +2024-07-06 00:00:00,8.080223,12.924783,36.44454,33.32123,10.85,1008.6555,0.0,57.14631,1.0 +2024-07-06 01:00:00,8.140025,13.370115,37.01076,34.641014,12.6,1007.9151,0.0,54.832428,1.0 +2024-07-06 02:00:00,7.940403,11.624973,36.292717,35.19399,14.1,1007.3648,0.0,52.594906,1.0 +2024-07-06 03:00:00,7.9924965,11.337107,31.701384,30.183607,15.25,1007.10114,0.0,50.21709,1.0 +2024-07-06 04:00:00,7.915807,11.272976,26.24129,25.201094,16.4,1005.9446,0.0,47.311943,1.0 +2024-07-06 05:00:00,8.469357,12.107848,22.93213,22.328712,17.4,1004.08936,0.0,44.715393,1.0 +2024-07-06 06:00:00,8.507056,11.764353,17.79609,17.818983,19.1,1002.8487,0.0,40.612297,1.0 +2024-07-06 07:00:00,7.495332,11.1198015,13.109214,11.410955,18.9,1003.0414,0.0,42.131844,1.0 +2024-07-06 08:00:00,6.987131,10.98954,9.057818,7.3189344,18.6,1002.9336,0.0,42.9293,1.0 +2024-07-06 09:00:00,7.200694,11.303982,359.20428,358.47925,17.2,1003.38947,0.6,54.518936,1.0 +2024-07-06 10:00:00,7.531268,12.391127,10.713074,6.9528637,16.45,1003.16943,0.7,57.95757,0.0 +2024-07-06 11:00:00,8.845902,13.916897,10.42066,7.4313188,16.05,1003.257,0.1,63.399063,0.0 +2024-07-06 12:00:00,8.188407,13.572399,8.426887,5.9205356,14.9,1003.2233,1.2,78.53052,0.0 +2024-07-06 13:00:00,7.6844,12.684637,18.19926,14.145831,13.8,1004.0836,0.6,81.83762,0.0 +2024-07-06 14:00:00,9.604687,15.316984,14.470333,11.676718,13.95,1003.59216,0.5,78.38903,0.0 +2024-07-06 15:00:00,9.217917,15.121178,15.091635,11.830097,13.9,1003.3924,1.4,81.85047,0.0 +2024-07-06 16:00:00,9.677293,15.554099,13.74908,10.37069,14.2,1002.90546,1.0,83.80858,0.0 +2024-07-06 17:00:00,8.620905,14.300349,3.9908433,0.40066376,14.8,1003.51794,1.0,84.15417,0.0 +2024-07-06 18:00:00,8.30542,13.709121,2.0699892,357.90988,15.2,1003.4305,0.5,85.30998,0.0 +2024-07-06 19:00:00,9.000556,14.534442,0.63657844,356.0549,15.5,1003.1418,0.3,83.957985,0.0 +2024-07-06 20:00:00,6.7029843,11.221853,1.7097787,356.42374,15.25,1003.33295,0.2,84.758514,0.0 +2024-07-06 21:00:00,5.0447993,8.832327,346.2392,344.23276,14.75,1003.61554,1.1,88.10415,0.0 +2024-07-06 22:00:00,5.656854,9.507892,351.87,345.3791,14.95,1004.3157,0.1,86.692314,0.0 +2024-07-06 23:00:00,5.0249376,8.766414,354.2895,348.81827,14.55,1004.7007,0.4,88.08675,0.0 +2024-07-07 00:00:00,4.652956,8.17435,351.34753,345.11368,14.7,1005.1017,0.3,89.845215,1.0 +2024-07-07 01:00:00,2.5079873,3.522783,4.5738406,325.40765,16.55,1005.8498,0.0,92.03026,1.0 +2024-07-07 02:00:00,2.4596748,3.1906114,333.43503,327.8043,18.15,1006.59015,0.0,86.44161,1.0 +2024-07-07 03:00:00,4.5891175,5.9228373,258.6901,258.31067,19.35,1006.82294,0.1,73.770676,1.0 +2024-07-07 04:00:00,5.4708314,7.0213957,251.89613,252.5972,19.1,1006.6173,0.2,74.928215,1.0 +2024-07-07 05:00:00,5.2201533,6.706713,249.82925,249.94382,19.05,1006.51685,0.2,73.480644,1.0 +2024-07-07 06:00:00,4.3462625,5.4230986,246.97447,247.21756,18.7,1006.40753,0.1,75.10425,1.0 +2024-07-07 07:00:00,3.8275318,4.9648767,236.7251,235.66972,17.85,1006.77997,0.7,78.197784,1.0 +2024-07-07 08:00:00,3.1827662,4.2426405,226.27295,224.9999,18.0,1007.18097,0.1,76.21682,1.0 +2024-07-07 09:00:00,2.0124612,3.758989,206.56499,208.61037,17.6,1007.56604,0.0,78.160614,1.0 +2024-07-07 10:00:00,2.1023796,3.471311,182.72626,191.6336,15.4,1007.5022,0.0,87.018936,0.0 +2024-07-07 11:00:00,2.34094,3.0016663,160.0168,181.9091,14.7,1007.9774,0.0,87.81183,0.0 +2024-07-07 12:00:00,2.1260293,2.630589,131.18582,171.25392,13.85,1008.44794,0.0,86.01554,0.0 +2024-07-07 13:00:00,1.5811388,2.5,71.564964,106.26028,13.55,1009.13324,0.0,90.05474,0.0 +2024-07-07 14:00:00,1.8867962,2.7166157,57.99466,83.659904,12.85,1009.31055,0.0,92.41582,0.0 +2024-07-07 15:00:00,1.8867962,2.5961509,57.99466,74.3577,12.55,1009.1034,0.0,92.7049,0.0 +2024-07-07 16:00:00,2.1095023,2.9546573,58.570484,66.03751,12.55,1009.0042,0.0,91.78883,0.0 +2024-07-07 17:00:00,2.385372,3.7121422,56.976128,62.744755,12.75,1008.9112,0.0,91.80116,0.0 +2024-07-07 18:00:00,2.5942245,3.9357338,62.447273,62.783974,13.45,1009.0312,0.0,91.24171,0.0 +2024-07-07 19:00:00,2.640076,4.3462625,65.37646,66.97448,13.65,1008.938,0.0,91.85629,0.0 +2024-07-07 20:00:00,2.9154758,4.964876,67.83361,71.20003,13.4,1008.73206,0.0,92.7515,0.0 +2024-07-07 21:00:00,3.224903,6.003332,60.255207,60.018444,12.45,1008.5053,0.0,94.24523,0.0 +2024-07-07 22:00:00,3.847077,6.9641943,62.10283,57.90745,11.75,1008.58356,0.0,96.428345,0.0 +2024-07-07 23:00:00,4.9648767,8.7045965,55.66973,47.327847,11.15,1008.9621,0.0,97.05559,0.0 +2024-07-08 00:00:00,5.315073,9.43663,48.814175,40.271946,11.9,1009.4804,0.0,98.364235,1.0 +2024-07-08 01:00:00,5.6035705,9.667471,55.175446,50.8774,13.45,1009.62616,0.0,93.05937,1.0 +2024-07-08 02:00:00,5.879626,7.864477,48.44749,48.608574,16.05,1009.70276,0.0,83.20288,1.0 +2024-07-08 03:00:00,5.9548297,7.939773,40.9143,40.9143,17.85,1009.16,0.0,76.689766,1.0 +2024-07-08 04:00:00,5.4644303,7.2111025,34.56259,33.6901,19.25,1008.1093,0.0,69.346954,1.0 +2024-07-08 05:00:00,4.3863425,5.6859474,24.227736,23.86019,20.45,1006.85425,0.0,62.924328,1.0 +2024-07-08 06:00:00,4.7095647,6.207254,356.34784,357.22983,21.25,1006.1823,0.0,56.846085,1.0 +2024-07-08 07:00:00,5.0289164,6.868042,342.64587,343.93994,21.15,1006.0803,0.0,56.63489,1.0 +2024-07-08 08:00:00,3.828838,5.72014,319.23648,323.53067,20.7,1005.77014,0.0,61.760185,1.0 +2024-07-08 09:00:00,1.8973665,3.847077,288.43503,297.8972,19.25,1005.8283,0.0,74.471214,1.0 +2024-07-08 10:00:00,2.0124612,4.701064,296.56497,293.83875,17.1,1005.8656,0.0,85.5084,0.0 +2024-07-08 11:00:00,2.2022717,4.90408,357.3975,339.71735,16.8,1006.0554,0.0,86.86892,0.0 +2024-07-08 12:00:00,3.3615472,6.9231496,22.751022,10.822971,16.55,1006.04816,0.0,81.12235,0.0 +2024-07-08 13:00:00,3.6249137,7.236712,24.443953,11.154618,15.65,1005.92285,0.0,86.759544,0.0 +2024-07-08 14:00:00,3.4481878,7.3109508,16.858482,3.1363046,15.7,1005.62683,0.0,81.54319,0.0 +2024-07-08 15:00:00,4.3965893,8.782369,17.198626,7.853233,15.8,1005.3322,0.0,76.112366,0.0 +2024-07-08 16:00:00,5.3600373,9.984988,14.036275,7.4807963,16.25,1005.24603,0.0,75.68496,0.0 +2024-07-08 17:00:00,5.2086463,9.4429865,356.6982,354.531,16.6,1005.05804,0.0,72.807816,0.0 +2024-07-08 18:00:00,5.0990195,8.780091,348.6901,345.4889,16.5,1004.9558,0.0,74.000786,0.0 +2024-07-08 19:00:00,5.5785303,9.360556,345.4655,341.9521,16.4,1004.85376,0.0,80.050026,0.0 +2024-07-08 20:00:00,5.99333,9.441399,334.2901,331.5349,16.5,1004.65826,0.1,87.68667,0.0 +2024-07-08 21:00:00,4.9517674,8.464632,313.36346,308.76553,17.25,1004.97754,0.4,85.79983,0.0 +2024-07-08 22:00:00,5.315073,8.940358,311.18582,306.3573,18.0,1005.29675,0.0,75.72311,0.0 +2024-07-08 23:00:00,5.360038,9.135097,323.34378,318.1061,17.75,1005.7854,0.0,77.174126,0.0 +2024-07-09 00:00:00,6.3126855,10.04241,310.50278,308.1252,18.05,1006.48816,0.0,80.53566,1.0 +2024-07-09 01:00:00,6.670832,10.117806,319.86456,317.00253,19.4,1006.8242,0.0,77.179115,1.0 +2024-07-09 02:00:00,7.746612,11.011357,309.23734,309.47244,20.15,1007.2423,0.0,77.04762,1.0 +2024-07-09 03:00:00,8.521151,11.962023,305.9286,305.81616,20.85,1007.36145,0.2,74.73945,1.0 +2024-07-09 04:00:00,7.9924965,10.855874,301.7014,301.0542,20.95,1007.0668,0.2,75.47326,1.0 +2024-07-09 05:00:00,7.657676,10.435037,310.76352,309.9461,21.65,1006.2929,0.1,72.99591,1.0 +2024-07-09 06:00:00,7.657676,10.489042,310.76352,311.13443,21.85,1005.9018,0.0,72.10939,1.0 +2024-07-09 07:00:00,8.130191,11.205802,301.93063,302.981,21.1,1005.9799,0.7,76.22021,1.0 +2024-07-09 08:00:00,6.0,8.720092,306.86996,306.60718,20.25,1006.4518,0.3,83.955795,1.0 +2024-07-09 09:00:00,5.700877,8.809086,322.12494,320.52756,19.6,1006.73096,0.0,85.49265,1.0 +2024-07-09 10:00:00,4.9648767,7.889233,332.4028,329.53452,19.1,1006.5181,0.2,87.63734,0.0 +2024-07-09 11:00:00,4.661545,7.800641,324.6051,323.86453,19.0,1006.8128,0.6,91.59381,0.0 +2024-07-09 12:00:00,3.8910153,6.774216,334.09354,328.89127,18.85,1006.9079,0.6,92.74731,0.0 +2024-07-09 13:00:00,4.060788,7.0035706,322.00122,316.73566,18.9,1006.71075,2.5,93.92526,0.0 +2024-07-09 14:00:00,4.494441,7.6157727,302.27563,299.93143,19.0,1006.8128,3.5,95.416176,0.0 +2024-07-09 15:00:00,4.0521603,6.963476,285.75125,282.43954,19.0,1006.8128,2.9,95.416176,0.0 +2024-07-09 16:00:00,3.748333,6.449806,279.21094,277.1249,19.0,1006.51526,4.5,94.52187,0.0 +2024-07-09 17:00:00,4.5122056,7.35459,282.80426,281.76825,18.9,1006.4132,2.0,96.01353,0.0 +2024-07-09 18:00:00,4.527693,7.1847057,263.6599,261.1933,18.9,1006.4132,0.6,95.71273,0.0 +2024-07-09 19:00:00,3.8013155,6.2177167,243.43501,242.19862,18.75,1006.50836,0.1,92.15858,0.0 +2024-07-09 20:00:00,3.4176016,5.9236813,249.44386,248.19853,18.95,1006.6131,0.1,88.18128,0.0 +2024-07-09 21:00:00,3.7643058,6.5787535,253.0091,250.46326,18.85,1006.70953,0.0,87.06059,0.0 +2024-07-09 22:00:00,4.6238513,7.66942,248.42863,247.78236,17.7,1007.1722,0.1,89.77932,0.0 +2024-07-09 23:00:00,4.7296934,7.615773,256.55136,256.32867,17.5,1007.9599,0.0,90.33992,0.0 +2024-07-10 00:00:00,4.606517,7.071068,242.87877,241.2603,17.3,1009.045,0.3,88.6065,1.0 +2024-07-10 01:00:00,6.551336,9.4667845,238.73633,238.82872,17.8,1010.3485,0.3,87.52136,1.0 +2024-07-10 02:00:00,4.7853947,6.842514,243.97047,243.06055,18.7,1011.06866,0.1,82.45186,1.0 +2024-07-10 03:00:00,7.169379,9.501578,239.85869,239.65683,19.4,1011.08875,0.0,70.74104,1.0 +2024-07-10 04:00:00,7.7233415,10.347947,228.6746,228.91835,19.15,1010.68494,0.1,70.00768,1.0 +2024-07-10 05:00:00,7.50733,9.990496,221.76021,221.34767,19.0,1010.58136,0.0,69.7512,1.0 +2024-07-10 06:00:00,7.242237,9.683491,215.4458,215.33142,18.7,1010.47363,0.0,67.22854,1.0 +2024-07-10 07:00:00,6.6887965,8.883693,211.55133,211.18492,18.25,1010.75824,0.0,67.80126,1.0 +2024-07-10 08:00:00,6.1269894,8.273452,206.14677,206.56499,17.9,1011.2442,0.0,68.17761,1.0 +2024-07-10 09:00:00,5.0328918,7.5960517,200.95586,200.82097,17.15,1012.1148,0.0,69.84967,1.0 +2024-07-10 10:00:00,4.588028,7.4632435,196.4601,197.9495,16.45,1012.49115,0.0,69.251175,0.0 +2024-07-10 11:00:00,4.197618,7.324616,192.38075,194.226,16.0,1013.0728,0.0,69.85694,0.0 +2024-07-10 12:00:00,3.7215588,6.806614,186.17007,190.1542,15.55,1013.6548,0.0,71.65721,0.0 +2024-07-10 13:00:00,2.6019223,5.491812,182.20255,190.49142,15.1,1014.13715,0.0,73.75662,0.0 +2024-07-10 14:00:00,2.302173,5.1478148,177.5105,187.8152,14.65,1014.4213,0.0,75.672516,0.0 +2024-07-10 15:00:00,2.1213202,4.8259716,171.86998,185.94676,14.3,1014.70825,0.0,76.88815,0.0 +2024-07-10 16:00:00,1.8027756,4.3011627,160.55988,181.33218,13.85,1014.89325,0.0,79.16309,0.0 +2024-07-10 17:00:00,1.9209373,3.4132097,141.34016,174.95764,13.3,1014.5796,0.0,82.3208,0.0 +2024-07-10 18:00:00,1.8867962,2.6076808,122.00535,175.60138,12.9,1014.8649,0.0,80.63314,0.0 +2024-07-10 19:00:00,2.0,4.1340055,126.86999,147.84773,13.2,1014.87384,0.0,79.60053,0.0 +2024-07-10 20:00:00,2.4186773,4.294182,97.12492,117.75845,13.1,1014.9701,0.0,78.26131,0.0 +2024-07-10 21:00:00,1.9646883,3.6769552,75.25639,112.38018,12.25,1014.94464,0.0,80.27297,0.0 +2024-07-10 22:00:00,2.376973,4.197618,75.37909,102.38075,12.15,1015.23895,0.0,80.259056,0.0 +2024-07-10 23:00:00,2.5,4.527693,73.73973,96.340096,11.7,1015.52264,0.0,81.84104,0.0 +2024-07-11 00:00:00,2.8178005,4.472136,62.525658,79.69521,12.3,1016.2349,0.0,80.82288,1.0 +2024-07-11 01:00:00,2.863564,5.571355,65.22488,68.96242,13.75,1016.8736,0.0,79.41331,1.0 +2024-07-11 02:00:00,2.5632012,3.4176016,69.44388,69.44387,15.5,1017.52057,0.0,72.36777,1.0 +2024-07-11 03:00:00,2.4186773,3.0413814,82.875084,80.53775,16.5,1017.2525,0.0,66.32572,1.0 +2024-07-11 04:00:00,2.6172504,3.3136082,96.581856,95.19434,16.95,1016.5716,0.0,63.38936,1.0 +2024-07-11 05:00:00,2.7018511,3.4205263,128.991,127.875046,17.75,1015.5041,0.0,59.86303,1.0 +2024-07-11 06:00:00,3.1064448,3.8832977,146.82147,145.49142,17.95,1015.014,0.0,57.549053,1.0 +2024-07-11 07:00:00,3.352611,4.2720017,162.64589,159.44388,17.75,1015.00824,0.0,56.539207,1.0 +2024-07-11 08:00:00,4.2107005,5.5326304,175.91446,173.77426,17.05,1015.5828,0.0,62.989086,1.0 +2024-07-11 09:00:00,3.5510561,5.6089215,170.27249,168.69011,16.2,1015.5579,0.0,69.66386,1.0 +2024-07-11 10:00:00,4.2720017,7.34983,163.68607,165.01833,14.85,1015.7165,0.0,73.46686,0.0 +2024-07-11 11:00:00,3.4,6.5,151.92761,157.3801,14.2,1016.2921,0.0,76.10551,0.0 +2024-07-11 12:00:00,3.5608988,6.6068144,128.15727,140.52757,13.8,1016.2802,0.0,77.58424,0.0 +2024-07-11 13:00:00,3.2649655,6.155485,130.0302,136.97493,14.05,1016.6842,0.0,77.105865,0.0 +2024-07-11 14:00:00,2.7784889,5.9464273,120.256355,132.27362,13.25,1016.6603,0.0,80.411354,0.0 +2024-07-11 15:00:00,3.4481878,6.71193,106.85848,118.47411,12.8,1015.85364,0.0,82.257805,0.0 +2024-07-11 16:00:00,3.7013512,6.9231496,91.54813,100.82296,12.9,1015.7574,0.0,80.63314,0.0 +2024-07-11 17:00:00,2.9068885,5.9008474,86.05489,90.971,12.8,1015.457,0.0,78.21598,0.0 +2024-07-11 18:00:00,3.2015622,6.258594,75.52967,77.074,11.7,1015.2252,0.0,79.92498,0.0 +2024-07-11 19:00:00,2.7658634,5.6044626,77.4712,74.47583,11.9,1015.52875,0.0,76.76439,0.0 +2024-07-11 20:00:00,3.1780496,6.281719,77.27565,76.18495,11.45,1015.3171,0.0,77.21695,0.0 +2024-07-11 21:00:00,3.4525354,6.987131,79.99209,80.94219,11.0,1014.90674,0.0,77.67518,0.0 +2024-07-11 22:00:00,3.6878178,7.3552704,77.4712,82.9717,10.65,1014.9951,0.0,78.154465,0.0 +2024-07-11 23:00:00,4.0521603,7.9429216,74.248764,79.11452,10.45,1014.88983,0.0,77.856186,0.0 +2024-07-12 00:00:00,4.6572523,8.514693,75.068535,77.10626,10.95,1015.1035,0.0,75.05071,1.0 +2024-07-12 01:00:00,4.14367,8.45281,81.67444,79.08892,13.65,1015.58154,0.0,68.22354,1.0 +2024-07-12 02:00:00,4.2201896,5.869412,76.29302,76.20049,15.4,1016.1294,0.0,62.188694,1.0 +2024-07-12 03:00:00,4.808326,6.484597,73.07241,72.96215,16.35,1015.8599,0.0,55.99397,1.0 +2024-07-12 04:00:00,4.738143,6.477654,82.72509,81.11942,16.4,1014.7704,0.0,55.059128,1.0 +2024-07-12 05:00:00,5.1478148,6.873136,82.1848,81.6342,17.55,1013.2174,0.0,51.71701,1.0 +2024-07-12 06:00:00,5.0159745,6.5276337,85.42616,84.7262,17.9,1012.43427,0.0,50.589214,1.0 +2024-07-12 07:00:00,4.20119,5.8,91.3639,90.0,17.4,1012.32043,0.0,52.208958,1.0 +2024-07-12 08:00:00,3.9623227,5.656854,100.17545,98.13002,17.35,1012.2197,0.0,51.311504,1.0 +2024-07-12 09:00:00,3.2893767,5.8240876,109.53674,105.945465,16.35,1011.99243,0.0,55.04623,1.0 +2024-07-12 10:00:00,3.0594118,5.707013,101.3099,101.113,15.85,1012.0767,0.0,55.105732,0.0 +2024-07-12 11:00:00,2.4738634,5.178803,104.03627,100.00792,15.3,1012.358,0.0,56.886005,0.0 +2024-07-12 12:00:00,2.607681,5.3712196,122.471176,114.1791,14.95,1012.5461,0.0,59.592464,0.0 +2024-07-12 13:00:00,3.0675724,6.293648,109.025696,107.57135,13.7,1012.509,0.0,66.626854,0.0 +2024-07-12 14:00:00,3.0675724,6.113101,109.025696,105.17297,14.05,1012.4203,0.0,63.59244,0.0 +2024-07-12 15:00:00,2.6925824,5.700877,111.801476,105.25517,13.8,1012.31384,0.0,64.41155,0.0 +2024-07-12 16:00:00,3.352611,6.281719,107.35411,103.81505,13.75,1011.519,0.0,65.064445,0.0 +2024-07-12 17:00:00,3.471311,6.5490456,101.63361,97.01641,13.7,1010.82336,0.0,64.60993,0.0 +2024-07-12 18:00:00,4.2755113,7.467262,100.784256,97.69597,13.7,1010.4267,0.0,63.73096,0.0 +2024-07-12 19:00:00,4.8093657,8.329466,86.423744,85.17932,13.9,1009.6394,0.0,61.20461,0.0 +2024-07-12 20:00:00,4.504442,8.139411,87.45525,84.35954,13.55,1009.43066,0.0,60.492096,0.0 +2024-07-12 21:00:00,3.5,7.125307,90.0,85.16967,12.4,1009.99133,0.0,64.096756,0.0 +2024-07-12 22:00:00,4.110961,7.851752,85.81516,83.41815,13.1,1009.9131,0.0,60.803318,0.0 +2024-07-12 23:00:00,4.554119,8.649278,81.15827,79.33971,12.5,1009.9942,0.0,62.584625,0.0 +2024-07-13 00:00:00,5.3851643,9.616652,74.931465,73.07241,12.5,1010.29175,0.0,65.011215,1.0 +2024-07-13 01:00:00,6.293648,10.791201,72.42865,69.38173,13.75,1010.2299,0.0,63.306877,1.0 +2024-07-13 02:00:00,5.2886667,7.9699435,74.64981,72.47434,15.2,1010.5701,0.0,63.63625,1.0 +2024-07-13 03:00:00,4.976947,6.9462223,67.557205,67.126305,16.65,1010.0177,0.0,59.397705,1.0 +2024-07-13 04:00:00,3.7121422,5.188449,62.744755,62.447273,17.0,1008.937,0.0,58.68517,1.0 +2024-07-13 05:00:00,2.624881,3.4713109,49.635548,48.503635,18.15,1007.9786,0.0,57.598576,1.0 +2024-07-13 06:00:00,1.6970563,2.2627418,44.999897,44.999897,19.15,1007.6106,0.0,55.204735,1.0 +2024-07-13 07:00:00,1.5264337,2.0248458,58.392544,57.094753,19.3,1007.5156,0.0,54.326492,1.0 +2024-07-13 08:00:00,1.3038405,1.6643317,57.528828,57.264786,19.15,1007.80896,0.0,54.470146,1.0 +2024-07-13 09:00:00,1.2041595,1.4560219,85.23644,74.054535,17.9,1008.0707,0.0,72.564156,1.0 +2024-07-13 10:00:00,1.2369317,1.3152945,104.03627,98.74608,17.05,1008.2444,0.0,64.05081,0.0 +2024-07-13 11:00:00,1.9104973,1.746425,83.99109,103.24053,13.35,1008.63135,0.0,80.694435,0.0 +2024-07-13 12:00:00,1.8384776,2.6683328,67.61982,77.00539,14.35,1008.9586,0.0,74.11968,0.0 +2024-07-13 13:00:00,2.4166093,3.9293766,65.55606,75.25639,11.9,1009.183,0.0,82.9785,0.0 +2024-07-13 14:00:00,2.5495098,4.049691,64.440094,69.775055,11.55,1009.3708,0.0,82.93568,0.0 +2024-07-13 15:00:00,2.7730849,4.401136,64.35905,68.68202,11.2,1009.06287,0.0,82.612305,0.0 +2024-07-13 16:00:00,3.2202485,5.500909,64.23073,62.969223,11.0,1008.56116,0.0,82.868065,0.0 +2024-07-13 17:00:00,3.275668,5.8258047,58.736336,50.572224,10.95,1008.26215,0.0,82.30104,0.0 +2024-07-13 18:00:00,3.001666,4.8104053,60.018444,46.684647,10.7,1008.2545,0.0,82.83103,0.0 +2024-07-13 19:00:00,3.0528674,4.318565,58.392544,42.184383,10.15,1008.13855,0.0,84.76298,0.0 +2024-07-13 20:00:00,2.9154758,3.8600519,59.03632,36.573124,9.6,1008.0226,0.0,86.45638,0.0 +2024-07-13 21:00:00,2.4698176,2.8178005,58.240574,27.474344,9.2,1008.0103,0.0,87.00993,0.0 +2024-07-13 22:00:00,2.2022715,2.3537204,50.52757,12.26477,9.1,1008.30493,0.0,86.11056,0.0 +2024-07-13 23:00:00,1.7804494,1.8027756,51.842735,3.179772,8.9,1008.6952,0.0,85.50054,0.0 +2024-07-14 00:00:00,1.5811387,1.2369317,55.304783,345.9637,9.75,1009.3163,0.0,82.71295,1.0 +2024-07-14 01:00:00,1.3601471,1.2806249,36.027473,308.65982,14.65,1010.3557,0.0,74.420105,1.0 +2024-07-14 02:00:00,0.44721362,0.36055514,26.564985,236.3099,17.2,1010.82715,0.0,63.234066,1.0 +2024-07-14 03:00:00,1.3416408,1.746425,206.56499,203.6294,18.65,1010.5716,0.0,63.980724,1.0 +2024-07-14 04:00:00,2.758623,3.6124785,226.46873,221.63345,19.1,1010.0884,0.0,69.09206,1.0 +2024-07-14 05:00:00,3.1241,3.9597979,230.19447,224.9999,19.2,1009.19867,0.0,67.11188,1.0 +2024-07-14 06:00:00,4.5803933,5.8249464,216.11943,214.50858,19.25,1009.1011,0.0,65.602516,1.0 +2024-07-14 07:00:00,5.1429563,6.574192,206.56499,206.17523,18.45,1009.475,0.1,70.791985,1.0 +2024-07-14 08:00:00,5.2201533,6.8949256,200.17073,199.48622,17.9,1009.95496,0.2,73.51868,1.0 +2024-07-14 09:00:00,4.3416586,6.718631,194.67644,194.6568,17.75,1010.14886,0.1,74.45873,1.0 +2024-07-14 10:00:00,4.197618,7.203471,192.38075,193.65044,16.7,1010.5151,0.0,77.011,0.0 +2024-07-14 11:00:00,3.8327534,7.0035706,187.49576,189.86574,16.15,1010.6973,0.0,77.17838,0.0 +2024-07-14 12:00:00,3.306055,6.5490456,183.46815,187.0164,15.5,1010.97577,0.0,78.878845,0.0 +2024-07-14 13:00:00,2.4515302,5.400926,168.23174,178.93912,14.9,1011.85046,0.0,82.52026,0.0 +2024-07-14 14:00:00,2.2135942,5.2086463,161.56496,176.6982,14.5,1012.037,0.0,83.29182,0.0 +2024-07-14 15:00:00,2.408319,5.189412,138.36655,154.91644,14.5,1012.23535,0.0,83.84324,0.0 +2024-07-14 16:00:00,1.8867962,4.2059484,122.00535,151.60707,13.6,1011.9112,0.0,88.294586,0.0 +2024-07-14 17:00:00,1.4142135,3.1780498,98.13002,155.85446,13.1,1011.69794,0.0,88.83804,0.0 +2024-07-14 18:00:00,2.8999999,4.110961,136.39711,175.81517,12.0,1011.6649,0.0,88.74687,0.0 +2024-07-14 19:00:00,2.8442926,5.921149,169.8754,175.15608,14.6,1011.64325,0.0,84.68738,0.0 +2024-07-14 20:00:00,1.8788295,3.4985712,115.20109,149.03632,13.3,1011.30743,0.0,88.5612,0.0 +2024-07-14 21:00:00,2.2203603,4.148494,125.837746,164.62369,12.75,1011.1917,0.0,87.92849,0.0 +2024-07-14 22:00:00,2.1095023,5.217279,148.57048,167.82855,14.35,1011.3385,0.0,84.1031,0.0 +2024-07-14 23:00:00,2.1633308,5.096077,146.3099,164.05453,14.3,1011.73346,0.0,84.65439,0.0 +2024-07-15 00:00:00,2.6907248,5.239275,138.01286,156.3706,14.9,1012.14795,0.0,84.72028,1.0 +2024-07-15 01:00:00,2.8231187,4.62277,112.93214,128.85338,16.45,1013.0861,0.0,84.33935,1.0 +2024-07-15 02:00:00,3.3600597,4.404543,126.528946,129.47243,17.65,1013.8153,0.0,77.158676,1.0 +2024-07-15 03:00:00,4.4598203,5.8523498,160.34608,160.0168,18.55,1013.74225,0.0,71.50711,1.0 +2024-07-15 04:00:00,4.7675986,6.2169123,170.34018,168.87085,18.85,1013.05664,0.0,67.03946,1.0 +2024-07-15 05:00:00,4.7095647,6.0299253,176.34785,174.2895,19.0,1012.26733,0.0,65.549065,1.0 +2024-07-15 06:00:00,3.8013155,4.6270943,178.4926,173.79665,19.35,1011.68243,0.0,65.409355,1.0 +2024-07-15 07:00:00,3.2015622,3.9115217,181.78987,175.60138,19.65,1011.39355,0.0,62.538506,1.0 +2024-07-15 08:00:00,3.1064448,4.004997,183.69131,177.13765,19.4,1011.5846,0.0,63.517532,1.0 +2024-07-15 09:00:00,2.3,4.0261645,180.0,165.61858,18.25,1011.65076,0.0,74.060265,1.0 +2024-07-15 10:00:00,1.8601075,4.2520585,143.74608,131.18582,15.6,1011.9703,0.0,81.79813,0.0 +2024-07-15 11:00:00,2.209072,5.3009434,95.19434,91.0809,14.4,1012.7283,0.0,78.456215,0.0 +2024-07-15 12:00:00,2.4351592,5.217279,70.8209,77.82856,13.6,1013.10114,0.0,80.459465,0.0 +2024-07-15 13:00:00,2.3194828,4.8093657,82.56869,93.57626,12.7,1013.8673,0.0,85.04281,0.0 +2024-07-15 14:00:00,2.8071337,5.656854,85.91447,98.13002,12.55,1014.06116,0.0,84.45985,0.0 +2024-07-15 15:00:00,3.206244,6.2968245,86.423744,100.06063,12.35,1014.0552,0.0,83.312485,0.0 +2024-07-15 16:00:00,3.3136082,6.4938436,84.805664,99.75236,12.2,1013.7532,0.0,82.736496,0.0 +2024-07-15 17:00:00,3.238827,6.2513995,81.11942,97.35229,11.85,1013.54443,0.0,83.815056,0.0 +2024-07-15 18:00:00,3.2557642,6.207254,79.380394,92.77016,11.5,1013.43445,0.0,84.34141,0.0 +2024-07-15 19:00:00,3.4525354,6.6030297,79.99209,91.73567,11.25,1013.12933,0.0,84.313,0.0 +2024-07-15 20:00:00,3.9623227,7.7006493,79.824554,89.25597,11.25,1012.7328,0.0,83.179985,0.0 +2024-07-15 21:00:00,4.5891175,8.895505,78.6901,81.59672,11.3,1012.536,0.0,81.78913,0.0 +2024-07-15 22:00:00,4.9335585,9.300537,72.299484,73.12365,11.15,1012.43243,0.0,80.39214,0.0 +2024-07-15 23:00:00,5.502726,9.962429,70.90642,70.65558,11.05,1012.6275,0.0,77.68296,0.0 +2024-07-16 00:00:00,6.053924,10.651291,67.6713,65.60058,11.75,1013.0454,0.0,73.41004,1.0 +2024-07-16 01:00:00,6.352952,12.59365,61.821507,57.319454,14.6,1013.6265,0.0,65.25128,1.0 +2024-07-16 02:00:00,5.905929,9.689685,61.69934,58.934902,16.8,1013.69135,0.0,61.058266,1.0 +2024-07-16 03:00:00,6.1032777,8.58021,55.0079,53.53068,18.75,1013.4505,0.0,54.00264,1.0 +2024-07-16 04:00:00,5.8137765,7.939773,49.185013,49.085716,20.25,1012.79913,0.0,50.876205,1.0 +2024-07-16 05:00:00,5.5865912,7.5663733,45.72514,44.464615,21.45,1011.9405,0.0,49.51985,1.0 +2024-07-16 06:00:00,4.920366,6.7007465,37.568665,37.725063,22.25,1011.2687,0.0,48.27118,1.0 +2024-07-16 07:00:00,4.356604,6.053924,31.865936,30.801384,22.7,1011.08307,0.0,47.597366,1.0 +2024-07-16 08:00:00,3.4885528,5.7245083,27.29949,27.012596,22.35,1011.07324,0.0,52.804585,1.0 +2024-07-16 09:00:00,2.5,5.60803,36.86999,31.138918,20.5,1011.12006,0.0,58.945637,1.0 +2024-07-16 10:00:00,2.7313,5.7628117,66.2505,51.34017,17.6,1010.8386,0.0,62.903683,0.0 +2024-07-16 11:00:00,3.8910153,8.021221,64.09355,54.130085,16.75,1011.0122,0.0,59.02175,0.0 +2024-07-16 12:00:00,4.0,8.732124,53.13002,50.110477,16.55,1010.80817,0.0,54.722927,0.0 +2024-07-16 13:00:00,3.7013512,8.570297,38.418083,41.688965,16.05,1011.3886,0.0,54.780743,0.0 +2024-07-16 14:00:00,3.7161808,8.095678,23.805958,25.61544,15.3,1011.4655,0.0,55.534077,0.0 +2024-07-16 15:00:00,4.770744,9.484725,33.023872,24.943882,14.95,1010.95953,0.0,55.252865,0.0 +2024-07-16 16:00:00,5.5317264,10.495713,40.601215,30.963696,14.95,1010.36456,0.0,53.931923,0.0 +2024-07-16 17:00:00,5.879626,11.011357,41.552525,34.26739,14.95,1009.7696,0.0,52.63897,0.0 +2024-07-16 18:00:00,6.453681,11.9402685,40.601215,36.486107,15.0,1009.0771,0.0,51.030476,0.0 +2024-07-16 19:00:00,6.4070277,11.920151,34.18618,30.22176,14.95,1009.07544,0.0,49.612343,0.0 +2024-07-16 20:00:00,6.6370173,12.120231,30.815645,25.930761,14.7,1008.8699,0.0,48.85368,0.0 +2024-07-16 21:00:00,6.0373836,11.346365,26.564985,22.270313,14.45,1008.7632,0.0,48.44237,0.0 +2024-07-16 22:00:00,6.2169123,11.458621,25.740664,20.965788,14.65,1008.7691,0.0,46.164528,0.0 +2024-07-16 23:00:00,6.621178,12.048652,25.016869,18.886187,14.35,1008.8595,0.0,45.592236,0.0 +2024-07-17 00:00:00,6.2241464,11.513471,23.6821,17.17599,14.35,1009.3553,0.0,48.585213,1.0 +2024-07-17 01:00:00,6.332456,10.963576,21.297422,14.796817,16.75,1009.62384,0.0,50.97468,1.0 +2024-07-17 02:00:00,5.8180757,12.806249,24.362455,14.470333,18.35,1009.67004,0.0,54.815422,1.0 +2024-07-17 03:00:00,5.565968,8.256513,17.783985,16.898739,20.25,1009.32794,0.0,51.046974,1.0 +2024-07-17 04:00:00,5.500909,7.605919,1.0416087,2.2604558,21.85,1008.38135,0.0,49.298454,1.0 +2024-07-17 05:00:00,5.6320515,7.7369246,343.49554,345.78412,23.0,1007.42145,0.0,47.67891,1.0 +2024-07-17 06:00:00,5.742821,7.8549347,324.92618,328.5359,23.15,1006.7313,0.0,48.354572,1.0 +2024-07-17 07:00:00,5.5605755,7.602631,322.3057,324.63745,22.9,1006.32764,0.0,50.40354,1.0 +2024-07-17 08:00:00,4.7201695,7.156116,323.61554,326.97614,22.35,1006.31244,0.0,57.30315,1.0 +2024-07-17 09:00:00,4.360046,7.545197,323.39282,325.25674,21.05,1006.6725,0.0,62.24406,1.0 +2024-07-17 10:00:00,4.3931766,7.7336926,318.69147,319.7202,20.4,1006.9517,0.0,65.20836,0.0 +2024-07-17 11:00:00,4.4407206,7.7665954,324.16226,325.4914,20.1,1007.2408,0.0,69.96344,0.0 +2024-07-17 12:00:00,4.8600416,8.160882,323.36578,323.97253,19.6,1007.42523,0.0,76.96274,0.0 +2024-07-17 13:00:00,3.8639357,7.2732387,349.5626,341.56494,19.3,1007.1189,0.2,83.58254,0.0 +2024-07-17 14:00:00,6.888396,11.236103,346.56894,343.9845,20.2,1006.25183,0.0,56.77315,0.0 +2024-07-17 15:00:00,7.4632435,12.175796,342.0505,340.8209,20.0,1005.8495,0.1,47.496258,0.0 +2024-07-17 16:00:00,7.8549347,12.580143,338.33395,336.08374,19.9,1005.45026,0.0,45.884487,0.0 +2024-07-17 17:00:00,8.127115,12.831601,341.342,338.0327,19.75,1004.65234,0.0,58.184452,0.0 +2024-07-17 18:00:00,7.5,11.860017,323.13,323.22662,19.15,1004.23865,0.7,79.147575,0.0 +2024-07-17 19:00:00,8.207314,12.8144455,313.0251,312.15332,18.7,1003.92816,5.4,90.99815,0.0 +2024-07-17 20:00:00,7.1421285,10.820813,224.4328,223.87679,17.5,1004.3897,9.2,92.37993,0.0 +2024-07-17 21:00:00,4.031129,6.3655324,223.99501,223.72705,17.1,1004.97314,2.7,93.24648,0.0 +2024-07-17 22:00:00,5.2009616,8.060397,217.97166,217.43864,16.9,1005.56244,1.0,90.2974,0.0 +2024-07-17 23:00:00,4.5254836,7.0724816,224.9999,223.85432,16.55,1005.94904,2.0,91.441,0.0 +2024-07-18 00:00:00,4.701064,7.262231,231.91118,231.7098,16.5,1006.8399,2.3,89.40081,1.0 +2024-07-18 01:00:00,4.104875,6.3820057,235.92276,234.56659,16.65,1007.5385,1.2,88.5526,1.0 +2024-07-18 02:00:00,5.140039,7.7620873,232.90707,231.80127,16.55,1008.329,0.7,88.54426,1.0 +2024-07-18 03:00:00,5.672742,8.363014,229.28925,228.87862,16.25,1008.71686,1.1,88.519226,1.0 +2024-07-18 04:00:00,6.5053825,9.192389,224.9999,224.9999,16.3,1008.5201,0.7,81.35463,1.0 +2024-07-18 05:00:00,6.9526978,9.590099,220.33307,219.49956,16.45,1008.12775,0.0,74.48158,1.0 +2024-07-18 06:00:00,7.0092793,9.774457,222.10866,221.68213,16.6,1007.9339,0.1,69.2809,1.0 +2024-07-18 07:00:00,7.7077885,10.253292,224.47443,224.6049,16.6,1008.5289,0.0,65.90545,1.0 +2024-07-18 08:00:00,7.224957,9.990496,221.63345,221.34767,16.3,1008.7184,0.0,65.40154,1.0 +2024-07-18 09:00:00,6.5115285,9.558765,222.5104,222.0317,16.05,1009.3061,0.0,64.04269,1.0 +2024-07-18 10:00:00,6.363961,9.829039,224.9999,224.58784,15.7,1009.891,0.0,60.798283,0.0 +2024-07-18 11:00:00,6.5795135,9.976472,226.8476,227.03091,15.55,1011.0765,0.0,59.737846,0.0 +2024-07-18 12:00:00,6.4443774,9.915645,228.14505,228.27058,15.45,1011.6683,0.0,54.06317,0.0 +2024-07-18 13:00:00,7.8600254,11.660618,233.2758,233.71965,16.0,1012.0812,0.0,53.28367,0.0 +2024-07-18 14:00:00,7.940403,11.9402685,233.70728,233.5139,15.35,1012.7563,0.0,54.598896,0.0 +2024-07-18 15:00:00,7.3,11.194641,228.888,228.62158,15.55,1012.96063,0.0,52.616673,0.0 +2024-07-18 16:00:00,8.01561,11.997083,220.44615,219.92781,15.55,1013.15894,0.0,55.407722,0.0 +2024-07-18 17:00:00,7.877182,11.788554,213.08485,212.88124,15.6,1012.8628,0.1,57.549316,0.0 +2024-07-18 18:00:00,6.9778223,10.778683,205.4633,205.8518,15.2,1013.0492,0.1,62.99214,0.0 +2024-07-18 19:00:00,6.2641835,9.837174,196.69933,197.14563,15.15,1012.94885,0.1,61.709457,0.0 +2024-07-18 20:00:00,5.9076223,9.419129,182.91078,183.65215,14.6,1013.0315,0.0,64.58978,0.0 +2024-07-18 21:00:00,5.5731497,9.079648,170.70677,172.40544,14.3,1013.2208,0.0,66.98136,0.0 +2024-07-18 22:00:00,4.609772,7.971198,155.65892,160.20103,13.7,1013.7981,0.0,69.40248,0.0 +2024-07-18 23:00:00,3.3241541,6.280127,133.7812,142.76509,12.75,1014.46387,0.0,73.33953,0.0 +2024-07-19 00:00:00,3.3136082,5.5946403,95.19434,114.27443,12.3,1015.24335,0.0,76.050835,1.0 +2024-07-19 01:00:00,3.6013885,6.053924,88.4089,120.80138,14.2,1016.39124,0.0,74.5921,1.0 +2024-07-19 02:00:00,3.5341196,4.7885275,115.11481,118.70586,16.25,1017.3443,0.0,64.087296,1.0 +2024-07-19 03:00:00,3.9623227,5.020956,132.95459,134.19316,17.2,1017.66974,0.0,57.169132,1.0 +2024-07-19 04:00:00,4.0249224,5.0990195,153.43501,154.44008,17.7,1016.79175,0.0,52.824963,1.0 +2024-07-19 05:00:00,3.6878178,4.609772,167.4712,167.4712,17.85,1016.1019,0.0,51.095978,1.0 +2024-07-19 06:00:00,3.7121422,4.527693,175.36462,173.6599,17.75,1015.70233,0.0,50.54873,1.0 +2024-07-19 07:00:00,3.522783,4.3566046,173.4803,170.75397,17.45,1015.6935,0.0,49.44009,1.0 +2024-07-19 08:00:00,3.3376637,4.472136,171.38443,169.6952,17.0,1015.8788,0.0,52.820248,1.0 +2024-07-19 09:00:00,2.570992,4.609772,166.50426,167.4712,16.1,1016.4473,0.0,61.306393,1.0 +2024-07-19 10:00:00,2.3600848,5.162364,143.61555,148.46526,14.25,1016.8886,0.0,65.84307,0.0 +2024-07-19 11:00:00,2.505993,5.1662364,118.61037,132.64667,13.35,1017.35724,0.0,66.32488,0.0 +2024-07-19 12:00:00,2.408319,4.750789,94.76356,120.34317,12.3,1017.52386,0.0,69.121254,0.0 +2024-07-19 13:00:00,2.1023796,4.0853395,115.34614,158.45895,10.4,1017.4661,0.0,74.69824,0.0 +2024-07-19 14:00:00,2.0024984,3.7013512,92.86235,141.58191,10.4,1017.56537,0.0,70.18406,0.0 +2024-07-19 15:00:00,2.3345234,3.6891732,80.13426,122.828545,9.95,1017.4524,0.0,67.687004,0.0 +2024-07-19 16:00:00,2.7892652,4.1231055,75.46551,104.03627,9.55,1017.0434,0.0,69.283325,0.0 +2024-07-19 17:00:00,2.9120438,4.5177426,74.054535,95.07952,9.35,1017.0374,0.0,71.46043,0.0 +2024-07-19 18:00:00,3.1016126,4.7095647,69.22767,86.347855,9.25,1016.8358,0.0,73.21037,0.0 +2024-07-19 19:00:00,3.354102,5.0289164,63.435013,72.64589,9.0,1016.6299,0.0,73.42089,0.0 +2024-07-19 20:00:00,3.7215588,5.59017,59.300358,63.435013,8.75,1016.72144,0.0,70.101074,0.0 +2024-07-19 21:00:00,3.8832977,6.4350605,55.491425,57.05078,8.75,1016.72144,0.0,67.194046,0.0 +2024-07-19 22:00:00,4.060788,7.2346387,52.001225,49.484695,9.0,1017.22473,0.0,65.14047,0.0 +2024-07-19 23:00:00,4.263801,7.8517513,50.710617,43.451904,9.15,1017.6261,0.0,64.71418,0.0 +2024-07-20 00:00:00,4.6690474,8.60523,46.73567,38.867783,9.75,1018.1404,0.0,65.07852,1.0 +2024-07-20 01:00:00,5.307542,9.360022,42.709366,36.747566,12.0,1018.90314,0.0,68.35116,1.0 +2024-07-20 02:00:00,4.743417,8.15414,34.69522,33.49521,14.65,1019.3794,0.0,63.29591,1.0 +2024-07-20 03:00:00,4.8548946,6.3812227,32.38066,32.195713,16.0,1019.32025,0.0,52.736355,1.0 +2024-07-20 04:00:00,4.022437,5.080354,34.8754,36.1933,16.8,1018.5505,0.0,51.16368,1.0 +2024-07-20 05:00:00,2.842534,3.482815,39.289394,39.173653,17.4,1017.7748,0.0,50.975033,1.0 +2024-07-20 06:00:00,1.56205,1.9849433,39.805527,40.9143,17.55,1016.6883,0.0,51.015396,1.0 +2024-07-20 07:00:00,0.5,0.70710677,36.86999,44.999897,17.6,1016.7889,0.0,50.508213,1.0 +2024-07-20 08:00:00,0.3,0.31622776,180.0,161.56496,17.4,1016.88226,0.0,50.800877,1.0 +2024-07-20 09:00:00,0.94868326,1.104536,198.43504,185.19434,16.15,1017.0439,0.0,74.92346,1.0 +2024-07-20 10:00:00,2.109502,2.2022717,174.55975,177.39749,13.25,1017.0568,0.0,71.70856,0.0 +2024-07-20 11:00:00,2.408319,2.8442926,138.36655,169.8754,11.75,1017.50726,0.0,78.32183,0.0 +2024-07-20 12:00:00,2.0248456,3.0528674,110.22495,148.39255,11.05,1017.6842,0.0,79.832664,0.0 +2024-07-20 13:00:00,1.7,2.828427,90.0,135.0001,9.8,1017.646,0.0,80.75645,0.0 +2024-07-20 14:00:00,1.8384776,2.5495098,67.61982,101.3099,9.4,1017.63385,0.0,79.59561,0.0 +2024-07-20 15:00:00,2.059126,2.6019223,60.94549,87.79745,8.7,1017.7112,0.0,82.01202,0.0 +2024-07-20 16:00:00,2.4698176,2.8792362,58.240574,69.67678,8.15,1017.29736,0.0,83.66423,0.0 +2024-07-20 17:00:00,2.9410884,3.8275318,54.688713,56.725105,8.5,1016.71375,0.0,80.85678,0.0 +2024-07-20 18:00:00,2.9154758,4.304649,59.03632,59.264584,8.65,1016.4207,0.0,79.21091,0.0 +2024-07-20 19:00:00,3.3615475,5.3235326,59.620956,61.99092,8.85,1016.1297,0.0,77.87662,0.0 +2024-07-20 20:00:00,3.4985712,6.053924,59.03632,59.19863,9.0,1015.73755,0.0,77.36077,0.0 +2024-07-20 21:00:00,3.7215588,6.603787,59.300358,57.99466,9.1,1015.64166,0.0,76.84107,0.0 +2024-07-20 22:00:00,4.031129,7.1344237,60.255207,58.76084,9.15,1015.6432,0.0,75.52494,0.0 +2024-07-20 23:00:00,4.3266616,7.600658,56.3099,57.35538,9.05,1015.8383,0.0,72.410065,0.0 +2024-07-21 00:00:00,4.7201695,8.20975,53.61555,55.922764,9.8,1016.05963,0.0,69.09208,1.0 +2024-07-21 01:00:00,4.90408,8.5,50.792812,53.13002,12.5,1016.83594,0.0,70.59621,1.0 +2024-07-21 02:00:00,4.0459857,7.080254,50.013176,53.61555,15.0,1017.10925,0.0,63.80722,1.0 +2024-07-21 03:00:00,4.1617303,5.408327,54.782326,56.3099,16.6,1016.85895,0.0,53.076935,1.0 +2024-07-21 04:00:00,3.8078864,4.924429,60.068577,60.832493,17.55,1015.79584,0.0,45.225933,1.0 +2024-07-21 05:00:00,3.4885528,4.3829217,62.70051,62.850407,18.05,1014.8185,0.0,39.471718,1.0 +2024-07-21 06:00:00,2.863564,3.7121422,65.22488,62.744755,18.35,1013.9345,0.0,40.115547,1.0 +2024-07-21 07:00:00,2.3706539,3.088689,62.354122,60.94549,18.4,1013.5395,0.0,43.470356,1.0 +2024-07-21 08:00:00,1.8601075,2.5612497,53.74608,51.34017,18.15,1013.433,0.0,46.662872,1.0 +2024-07-21 09:00:00,1.5652475,1.9849433,63.435013,49.085716,16.6,1013.58636,0.0,70.9076,1.0 +2024-07-21 10:00:00,1.603122,1.6155494,93.57626,68.19853,14.3,1013.7167,0.0,63.649124,0.0 +2024-07-21 11:00:00,1.7029387,2.4186773,93.366394,97.12492,11.9,1014.1406,0.0,72.19153,0.0 +2024-07-21 12:00:00,2.1377556,3.2,79.21575,90.0,10.6,1014.20026,0.0,75.76902,0.0 +2024-07-21 13:00:00,2.7658634,4.318565,77.4712,84.68555,10.4,1014.1943,0.0,71.41314,0.0 +2024-07-21 14:00:00,3.0364454,4.7296934,72.75845,76.55138,9.95,1013.8831,0.0,70.83165,0.0 +2024-07-21 15:00:00,3.231099,5.0537114,68.19853,62.927998,9.6,1013.67395,0.0,70.76326,0.0 +2024-07-21 16:00:00,3.354102,5.1623635,63.435013,44.215275,9.45,1012.87634,0.0,70.73389,0.0 +2024-07-21 17:00:00,3.3015149,5.3665633,54.865723,26.564985,9.6,1012.18677,0.0,68.32871,0.0 +2024-07-21 18:00:00,3.6069376,6.3245554,46.12322,18.435053,10.3,1011.7127,0.0,63.61759,0.0 +2024-07-21 19:00:00,3.7802117,7.1309185,37.476254,14.620926,11.0,1011.13904,0.0,60.5083,0.0 +2024-07-21 20:00:00,3.7215588,7.2691126,30.699654,7.907082,11.25,1010.8489,0.0,59.30437,0.0 +2024-07-21 21:00:00,3.8078864,7.025667,29.931421,4.8990126,11.2,1010.4509,0.0,59.50117,0.0 +2024-07-21 22:00:00,3.9357338,7.202777,27.216026,1.5911111,11.3,1010.6521,0.0,60.157013,0.0 +2024-07-21 23:00:00,4.2190046,7.5802374,31.429514,8.343804,11.45,1010.55774,0.0,61.04386,0.0 +2024-07-22 00:00:00,4.031129,7.5504966,29.744795,11.458726,12.35,1010.7831,0.0,63.423233,1.0 +2024-07-22 01:00:00,3.577709,5.500909,26.564985,1.0416087,14.65,1011.64484,0.0,65.929565,1.0 +2024-07-22 02:00:00,2.9120438,5.830952,15.945477,354.09393,17.35,1011.7239,0.0,67.170456,1.0 +2024-07-22 03:00:00,3.008322,4.2720017,344.57776,343.68607,19.4,1011.18787,0.0,58.099022,1.0 +2024-07-22 04:00:00,2.9732137,3.905125,317.72638,320.1945,20.4,1010.4229,0.0,52.646072,1.0 +2024-07-22 05:00:00,3.0413814,3.905125,316.33215,320.1945,20.85,1009.1466,0.0,53.115204,1.0 +2024-07-22 06:00:00,3.8832977,5.1224995,304.50858,308.65982,21.1,1007.9635,0.0,52.479317,1.0 +2024-07-22 07:00:00,4.304649,5.8249464,300.7354,304.50858,20.7,1007.65454,0.0,53.07624,1.0 +2024-07-22 08:00:00,4.327817,6.296825,310.31403,313.06943,20.05,1007.3387,0.0,56.54815,1.0 +2024-07-22 09:00:00,5.0990195,8.29759,318.1799,319.39877,18.65,1007.49725,0.0,65.04428,1.0 +2024-07-22 10:00:00,4.2201896,7.683749,323.67307,321.34018,17.45,1007.46246,0.0,77.88452,0.0 +2024-07-22 11:00:00,3.8013155,7.2718635,333.43503,328.4958,16.8,1007.6421,0.0,80.105225,0.0 +2024-07-22 12:00:00,3.640055,6.8029404,344.05453,335.69547,15.95,1007.7166,0.0,81.30893,0.0 +2024-07-22 13:00:00,4.7518415,8.036168,351.52893,343.36896,16.25,1006.7335,0.0,80.55452,0.0 +2024-07-22 14:00:00,4.9040794,8.709191,343.41257,338.44284,15.75,1006.6198,0.0,87.33524,0.0 +2024-07-22 15:00:00,5.280152,8.819297,335.37646,330.81927,16.25,1006.1385,0.0,90.250984,0.0 +2024-07-22 16:00:00,5.020956,8.720665,315.80682,310.81497,16.7,1005.8542,0.1,86.30005,0.0 +2024-07-22 17:00:00,6.551336,10.121264,301.26367,299.60434,16.65,1005.45605,0.2,87.135704,0.0 +2024-07-22 18:00:00,6.3953104,9.884331,296.96564,295.78726,16.15,1005.144,0.5,91.71071,0.0 +2024-07-22 19:00:00,4.6840153,7.7620873,286.1135,284.93146,16.7,1004.86255,0.2,89.99337,0.0 +2024-07-22 20:00:00,5.2810984,8.286133,288.77814,287.56036,16.25,1004.7502,0.4,90.83483,0.0 +2024-07-22 21:00:00,3.8275316,6.428841,289.85532,285.33334,15.75,1004.33905,0.2,90.21508,0.0 +2024-07-22 22:00:00,3.0594118,5.67186,281.3099,279.1301,15.75,1004.63654,0.6,90.507614,0.0 +2024-07-22 23:00:00,3.5510561,6.26099,302.3474,296.56497,15.25,1004.8204,0.2,90.76694,0.0 +2024-07-23 00:00:00,3.0232434,5.3665633,304.21576,296.56497,16.1,1004.845,0.1,87.36732,1.0 +2024-07-23 01:00:00,5.1,7.5802374,241.92761,239.0363,15.85,1005.33356,0.6,90.807755,1.0 +2024-07-23 02:00:00,3.6496572,5.6515484,260.53775,256.70142,16.0,1005.1396,1.9,91.997665,1.0 +2024-07-23 03:00:00,5.162364,6.9115844,238.46526,238.60979,15.95,1005.2375,4.0,85.946144,1.0 +2024-07-23 04:00:00,5.6222773,7.543209,218.50067,218.54121,15.7,1005.03186,1.1,88.76081,1.0 +2024-07-23 05:00:00,5.4424257,7.151223,200.4329,200.46236,16.3,1004.35504,0.3,83.23253,1.0 +2024-07-23 06:00:00,5.7775426,7.7077885,203.45905,202.9058,15.3,1004.2266,0.7,83.66047,1.0 +2024-07-23 07:00:00,6.484597,8.6977005,197.03786,197.3934,15.6,1004.2355,0.3,83.69524,1.0 +2024-07-23 08:00:00,6.5115285,8.697701,190.6196,188.59583,14.9,1004.51245,0.3,83.0655,1.0 +2024-07-23 09:00:00,6.802941,10.3,178.31535,180.0,14.25,1005.38605,1.4,90.106186,1.0 +2024-07-23 10:00:00,5.346027,8.448076,172.47627,173.8846,13.95,1006.7653,0.6,87.16849,0.0 +2024-07-23 11:00:00,3.544009,6.1611686,163.61038,166.86597,13.15,1007.1383,0.1,88.25582,0.0 +2024-07-23 12:00:00,4.4011364,7.5059977,181.30193,182.29056,12.3,1008.6,0.4,89.66309,0.0 +2024-07-23 13:00:00,4.6010866,7.800641,178.75467,179.2655,13.4,1008.63293,0.1,80.16357,0.0 +2024-07-23 14:00:00,4.1231055,7.080254,140.90616,143.61555,13.0,1008.91846,0.1,82.28304,0.0 +2024-07-23 15:00:00,3.3421547,6.453681,128.92755,130.60121,11.7,1009.27606,0.0,89.61681,0.0 +2024-07-23 16:00:00,1.8867962,4.596738,122.00535,134.1187,10.9,1009.35114,0.0,88.95372,0.0 +2024-07-23 17:00:00,2.641969,5.7999997,119.4758,133.60289,10.8,1009.44714,0.0,86.28337,0.0 +2024-07-23 18:00:00,3.3600597,6.811754,126.528946,139.76372,10.7,1009.8409,0.0,84.25029,0.0 +2024-07-23 19:00:00,3.0413814,6.466065,117.40749,129.35173,10.35,1009.92926,0.0,85.074,0.0 +2024-07-23 20:00:00,2.7784889,6.0440054,120.256355,128.95592,10.05,1010.2176,0.0,85.914635,0.0 +2024-07-23 21:00:00,2.5,5.6435804,106.26028,119.74478,9.35,1010.3946,0.0,87.920654,0.0 +2024-07-23 22:00:00,2.1213202,5.056679,98.13002,114.53771,9.05,1010.9803,0.0,89.10387,0.0 +2024-07-23 23:00:00,2.1213202,4.976947,98.13002,112.4428,8.75,1011.5659,0.0,88.7747,0.0 +2024-07-24 00:00:00,2.9068885,5.508176,93.945114,105.80258,9.55,1012.28436,0.0,85.86273,1.0 +2024-07-24 01:00:00,2.6076808,5.375872,94.39862,99.637474,11.55,1013.0394,0.0,81.26954,1.0 +2024-07-24 02:00:00,2.34094,3.383785,109.98319,108.970505,13.5,1013.49445,0.0,72.97907,1.0 +2024-07-24 03:00:00,2.8301945,3.6359317,122.00535,121.50421,15.0,1013.3411,0.0,62.09579,1.0 +2024-07-24 04:00:00,3.3837848,4.2201896,145.84026,143.67308,15.8,1012.9679,0.0,60.001755,1.0 +2024-07-24 05:00:00,4.414748,5.508176,166.9081,164.19742,16.5,1012.19495,0.0,56.607403,1.0 +2024-07-24 06:00:00,3.8013155,4.816638,178.4926,175.23645,16.3,1011.69336,0.0,58.712524,1.0 +2024-07-24 07:00:00,3.7013512,4.7010636,181.54813,178.78116,16.35,1011.69495,0.0,58.129898,1.0 +2024-07-24 08:00:00,3.9,5.0039983,180.0,177.70944,15.7,1011.7751,0.0,61.212276,1.0 +2024-07-24 09:00:00,3.3376637,5.261178,171.38443,171.25392,14.65,1012.23975,0.0,67.967804,1.0 +2024-07-24 10:00:00,2.280351,2.9068882,142.12495,153.43501,11.8,1012.45215,0.0,80.48215,0.0 +2024-07-24 11:00:00,1.5033296,1.8439089,93.814,130.60121,11.55,1012.742,0.0,77.76056,0.0 +2024-07-24 12:00:00,1.5132746,1.6401219,82.40546,127.568665,10.3,1012.9024,0.0,81.6584,0.0 +2024-07-24 13:00:00,1.6124516,1.7029386,82.875084,139.76372,10.05,1012.9937,0.0,81.90544,0.0 +2024-07-24 14:00:00,1.3000001,1.1401755,67.3801,127.875046,10.45,1013.10516,0.0,79.47436,0.0 +2024-07-24 15:00:00,1.0,0.60827625,53.13002,99.46225,10.65,1013.11127,0.0,77.62061,0.0 +2024-07-24 16:00:00,1.1313709,0.89442724,44.999897,26.564985,10.7,1013.11285,0.0,76.046585,0.0 +2024-07-24 17:00:00,1.56205,1.746425,39.805527,13.240531,10.4,1012.70703,0.0,77.31539,0.0 +2024-07-24 18:00:00,1.3601471,1.603122,36.027473,356.42374,10.05,1012.3988,0.0,79.68946,0.0 +2024-07-24 19:00:00,1.2806249,1.5033296,38.65983,356.186,10.05,1012.0022,0.0,80.79074,0.0 +2024-07-24 20:00:00,1.6124516,2.1213202,29.744795,351.87,10.1,1011.9046,0.0,81.35308,0.0 +2024-07-24 21:00:00,2.1540658,3.1780496,21.801476,347.27563,10.0,1011.7035,0.0,83.02757,0.0 +2024-07-24 22:00:00,2.147091,3.324154,27.758451,353.08887,9.9,1011.7994,0.0,84.15839,0.0 +2024-07-24 23:00:00,1.7492856,2.9614186,30.963696,348.31067,9.75,1012.1916,0.1,85.88352,0.0 +2024-07-25 00:00:00,2.2472203,3.1622777,20.854538,341.56494,11.15,1012.7299,0.1,83.73306,1.0 +2024-07-25 01:00:00,1.6970563,2.280351,44.999897,344.7448,12.9,1013.17926,0.3,87.94178,1.0 +2024-07-25 02:00:00,2.996665,4.167733,334.2901,329.74365,14.8,1013.43414,0.0,82.78028,1.0 +2024-07-25 03:00:00,3.748333,4.816638,313.91916,311.63345,15.8,1013.2654,0.1,79.18246,1.0 +2024-07-25 04:00:00,4.1629314,5.2000003,294.10223,292.6199,16.85,1012.70123,0.0,74.30516,1.0 +2024-07-25 05:00:00,4.104875,5.200961,272.79263,271.10168,17.15,1011.9165,0.0,68.93213,1.0 +2024-07-25 06:00:00,4.1231055,5.2630787,255.96373,255.69969,17.3,1011.42505,0.1,63.89299,1.0 +2024-07-25 07:00:00,4.4944406,5.7584724,249.14546,249.67677,17.4,1011.2296,0.0,61.19913,1.0 +2024-07-25 08:00:00,4.648656,6.2297673,251.1752,251.27411,17.2,1011.12463,0.1,60.13418,1.0 +2024-07-25 09:00:00,3.9849718,6.293648,252.47433,252.42865,16.45,1011.49945,0.0,65.873276,1.0 +2024-07-25 10:00:00,3.3734255,6.20967,258.0239,255.06853,15.7,1011.6759,0.0,65.93317,0.0 +2024-07-25 11:00:00,3.0066593,5.9682493,266.186,261.3269,15.45,1012.16406,0.0,66.10163,0.0 +2024-07-25 12:00:00,2.570992,5.661272,256.50424,252.52513,15.0,1012.3495,0.0,67.12871,0.0 +2024-07-25 13:00:00,2.6476402,5.9481087,259.1145,253.39293,14.95,1012.34784,0.0,65.327835,0.0 +2024-07-25 14:00:00,3.4669871,6.6287255,236.76828,236.07016,15.2,1012.3551,0.0,65.82546,0.0 +2024-07-25 15:00:00,3.3600597,6.463745,233.47105,235.08052,14.95,1012.44696,0.0,70.120026,0.0 +2024-07-25 16:00:00,2.6400757,5.5,232.69597,233.13002,14.5,1012.33453,0.0,72.9143,0.0 +2024-07-25 17:00:00,2.0518284,4.816638,226.97493,228.36655,14.1,1012.1245,0.0,76.0892,0.0 +2024-07-25 18:00:00,2.7202942,4.0,233.97253,233.13002,12.7,1012.0825,0.1,82.521225,0.0 +2024-07-25 19:00:00,3.0870697,4.0816665,245.09526,239.03632,11.85,1011.7597,0.0,82.69317,0.0 +2024-07-25 20:00:00,2.6925821,4.1146083,254.93146,244.05775,12.65,1011.68427,0.0,80.87027,0.0 +2024-07-25 21:00:00,2.6925824,4.2544093,248.19853,240.42226,12.35,1011.6754,0.0,81.102264,0.0 +2024-07-25 22:00:00,2.5553863,3.4409301,239.42085,234.46223,12.8,1011.8874,0.0,80.61949,0.0 +2024-07-25 23:00:00,1.3000001,2.302173,202.6199,214.3804,15.45,1012.3624,0.1,67.22295,0.0 +2024-07-26 00:00:00,1.104536,1.6155494,84.805664,158.19853,13.8,1013.00793,0.1,84.040375,1.0 +2024-07-26 01:00:00,2.9068885,3.6674242,3.9451082,334.1337,15.6,1013.5569,0.0,78.63391,1.0 +2024-07-26 02:00:00,2.7856774,3.6715121,338.9624,330.64233,17.15,1013.89984,0.0,73.38698,1.0 +2024-07-26 03:00:00,3.4713109,4.4204073,228.50363,232.35231,17.65,1014.0136,0.2,64.611855,1.0 +2024-07-26 04:00:00,4.263801,5.3263493,230.7106,230.3322,17.9,1013.8226,0.1,65.312546,1.0 +2024-07-26 05:00:00,4.0249224,5.0537114,243.43501,242.928,18.0,1013.42883,0.1,64.68852,1.0 +2024-07-26 06:00:00,3.8948684,4.924429,240.80261,240.83249,17.95,1013.2289,0.4,65.107445,1.0 +2024-07-26 07:00:00,3.8832977,4.8826222,235.49141,235.0079,17.8,1013.3236,0.2,66.38057,1.0 +2024-07-26 08:00:00,3.5468295,4.609772,229.574,229.39879,17.2,1013.6039,0.1,68.487434,1.0 +2024-07-26 09:00:00,2.408319,3.753665,221.63345,221.76021,16.5,1013.9799,0.0,75.22945,1.0 +2024-07-26 10:00:00,2.1540658,3.0413814,201.80147,207.40749,14.05,1014.20514,0.0,87.465416,0.0 +2024-07-26 11:00:00,1.811077,2.2561028,173.6599,192.80426,14.45,1014.7128,0.0,82.46448,0.0 +2024-07-26 12:00:00,1.56205,1.9235383,129.80553,171.02745,14.05,1014.8993,0.0,82.9629,0.0 +2024-07-26 13:00:00,1.5811388,1.1661904,71.564964,120.96369,11.7,1014.92773,0.0,90.519745,0.0 +2024-07-26 14:00:00,1.2206556,1.4317821,55.0079,77.90526,12.35,1015.04675,0.0,89.072105,0.0 +2024-07-26 15:00:00,1.7804494,2.0248458,51.842735,57.094753,11.35,1014.9172,0.0,91.7143,0.0 +2024-07-26 16:00:00,2.0808651,2.607681,54.782326,57.528828,10.95,1014.9052,0.0,91.997246,0.0 +2024-07-26 17:00:00,2.2472205,3.088689,57.724377,60.94549,10.8,1014.9004,0.0,92.2974,0.0 +2024-07-26 18:00:00,2.1931713,3.2572994,65.77226,72.12121,10.6,1015.1918,0.0,91.976006,0.0 +2024-07-26 19:00:00,2.6000001,4.1,67.3801,77.319626,10.7,1015.0958,0.0,91.36587,0.0 +2024-07-26 20:00:00,3.1384711,5.0695167,67.52052,75.14134,10.65,1015.09424,0.0,91.3626,0.0 +2024-07-26 21:00:00,3.6235344,6.0926185,62.02062,66.801384,10.45,1015.08813,0.0,91.96687,0.0 +2024-07-26 22:00:00,4.2190046,7.600658,58.570484,57.35538,10.6,1015.39,0.0,92.285706,0.0 +2024-07-26 23:00:00,4.429447,8.20975,61.69934,55.922764,10.75,1015.39484,0.0,92.29448,0.0 +2024-07-27 00:00:00,4.8764744,8.459906,61.858498,57.061314,11.2,1015.6069,0.0,92.320724,1.0 +2024-07-27 01:00:00,5.536244,7.782673,69.92838,62.44729,12.15,1015.7347,0.0,95.804085,1.0 +2024-07-27 02:00:00,4.651881,7.430343,64.5367,61.020393,15.15,1015.72546,0.0,91.94698,1.0 +2024-07-27 03:00:00,3.4713109,5.390733,48.503635,49.51408,17.55,1015.5975,0.0,80.468285,1.0 +2024-07-27 04:00:00,3.7215588,4.9396353,30.699654,31.75944,18.85,1014.8418,0.0,69.042725,1.0 +2024-07-27 05:00:00,4.1231055,5.3310413,22.833694,23.198618,19.75,1013.8757,0.0,57.992092,1.0 +2024-07-27 06:00:00,4.1773195,5.3935146,11.04091,10.684865,20.1,1013.0922,0.0,52.56753,1.0 +2024-07-27 07:00:00,3.905125,5.1088157,2.93562,3.3664,20.25,1012.60077,0.0,49.030716,1.0 +2024-07-27 08:00:00,3.4234486,5.315073,353.29025,355.68405,19.95,1012.493,0.0,54.675266,1.0 +2024-07-27 09:00:00,1.56205,3.6715121,320.1945,330.64233,18.7,1012.5563,0.0,65.484764,1.0 +2024-07-27 10:00:00,2.184033,3.0413814,254.05453,260.53775,15.25,1012.6543,0.0,83.65464,0.0 +2024-07-27 11:00:00,2.8844411,3.6055512,236.3099,236.3099,14.05,1013.21356,0.0,87.75384,0.0 +2024-07-27 12:00:00,1.0630146,1.9723083,131.18582,210.46547,16.85,1013.2962,0.0,74.549706,0.0 +2024-07-27 13:00:00,1.7720045,0.98488575,73.61038,113.962494,12.95,1012.98254,0.0,85.63838,0.0 +2024-07-27 14:00:00,1.5811387,1.8439089,55.304783,77.4712,13.4,1012.69836,0.0,82.05935,0.0 +2024-07-27 15:00:00,2.0518284,2.1260293,46.97493,48.814175,11.05,1012.1317,0.0,86.600296,0.0 +2024-07-27 16:00:00,2.6907248,3.667424,41.98713,11.003508,10.35,1011.714,0.0,86.23793,0.0 +2024-07-27 17:00:00,3.4409301,5.7008767,35.537766,1.0050671,11.3,1011.04877,0.0,75.36808,0.0 +2024-07-27 18:00:00,3.0413814,5.0487623,27.40749,352.0305,11.75,1010.6657,0.0,71.91653,0.0 +2024-07-27 19:00:00,3.2449963,4.8,33.6901,360.0,11.4,1010.3579,0.0,73.347015,0.0 +2024-07-27 20:00:00,3.8587563,6.3,31.218353,360.0,11.35,1009.9596,0.0,72.83604,0.0 +2024-07-27 21:00:00,4.1785164,7.632169,21.037588,354.7377,11.7,1009.67267,0.0,68.05382,0.0 +2024-07-27 22:00:00,4.2720017,8.149847,16.313938,353.6599,11.95,1009.6803,0.0,65.11412,0.0 +2024-07-27 23:00:00,4.148494,7.9762144,15.376317,352.07315,11.8,1009.8742,0.0,65.761154,0.0 +2024-07-28 00:00:00,4.7127485,8.238932,17.281584,354.4279,12.6,1010.0965,0.0,67.773766,1.0 +2024-07-28 01:00:00,5.3366656,9.353609,12.99463,353.86282,15.4,1009.88214,0.0,73.319786,1.0 +2024-07-28 02:00:00,4.90408,8.766414,357.66275,348.81827,17.8,1009.7535,0.0,68.60803,1.0 +2024-07-28 03:00:00,5.95399,8.112336,330.85202,329.64197,19.05,1009.69037,0.0,65.55978,1.0 +2024-07-28 04:00:00,7.7781744,10.394711,315.0001,315.3897,18.85,1009.18884,0.5,66.82007,1.0 +2024-07-28 05:00:00,7.0007143,9.546204,315.57864,315.42435,18.3,1008.6771,0.2,75.037834,1.0 +2024-07-28 06:00:00,7.0007143,9.47523,314.42133,315.0001,19.05,1008.00446,0.0,71.367386,1.0 +2024-07-28 07:00:00,7.224957,9.7,318.36655,317.92505,18.8,1007.9972,0.0,71.55336,1.0 +2024-07-28 08:00:00,7.242237,10.10198,305.4458,305.73557,18.75,1008.2935,0.1,66.36213,1.0 +2024-07-28 09:00:00,6.88767,10.336827,295.82092,294.58154,17.55,1008.75476,0.1,72.26365,1.0 +2024-07-28 10:00:00,4.6669044,7.7336926,315.0001,310.2798,17.05,1009.0377,0.0,76.814156,0.0 +2024-07-28 11:00:00,3.940812,7.2835426,324.2932,315.55618,16.65,1009.1252,0.0,76.49994,0.0 +2024-07-28 12:00:00,3.4669871,6.8593006,326.76828,315.59058,16.1,1009.20825,0.0,77.93562,0.0 +2024-07-28 13:00:00,4.002499,7.566373,347.00537,330.72482,15.95,1009.4024,0.0,80.513885,0.0 +2024-07-28 14:00:00,4.4011364,8.095677,1.3019345,342.01257,15.35,1009.2856,0.0,83.66626,0.0 +2024-07-28 15:00:00,4.816638,8.634812,4.763556,346.60748,14.95,1009.07544,0.0,84.17113,0.0 +2024-07-28 16:00:00,4.704253,8.5440035,357.5634,339.44388,15.05,1008.68164,0.0,83.90651,0.0 +2024-07-28 17:00:00,5.001,8.668333,1.1457417,343.23737,15.0,1008.383,0.0,84.73121,0.0 +2024-07-28 18:00:00,4.20119,7.940403,1.3638979,343.16245,14.9,1008.2806,0.0,85.55851,0.0 +2024-07-28 19:00:00,4.104875,7.6243033,357.20734,343.2287,15.4,1008.09717,0.0,83.39835,0.0 +2024-07-28 20:00:00,2.915476,5.8821764,354.09393,342.18103,14.8,1008.1786,0.0,86.11134,0.0 +2024-07-28 21:00:00,3.6055512,6.5520988,356.82022,344.05453,15.05,1007.98755,0.0,83.90651,0.0 +2024-07-28 22:00:00,3.1780496,6.0835843,347.27563,334.69864,14.9,1008.18146,0.0,84.72028,0.0 +2024-07-28 23:00:00,3.3,6.0083275,360.0,341.56494,14.55,1008.56793,0.0,85.24118,0.0 +2024-07-29 00:00:00,3.535534,6.0373836,351.87,333.43503,14.9,1008.8756,0.3,86.40404,1.0 +2024-07-29 01:00:00,4.3737855,7.31642,349.46088,338.34393,16.35,1008.9183,0.7,87.39014,1.0 +2024-07-29 02:00:00,3.6769552,5.056679,337.6198,335.46228,17.05,1009.0377,0.7,84.40592,1.0 +2024-07-29 03:00:00,5.7801385,7.640026,322.73352,322.98004,18.0,1008.6686,0.4,83.9698,1.0 +2024-07-29 04:00:00,3.8948684,5.060632,330.8026,330.39563,18.05,1008.3724,0.5,85.05954,1.0 +2024-07-29 05:00:00,5.0537114,6.71193,297.072,298.4741,17.7,1007.4697,0.4,86.12124,1.0 +2024-07-29 06:00:00,6.155485,8.280701,313.0251,312.5529,18.05,1007.1823,1.0,82.10755,1.0 +2024-07-29 07:00:00,5.2009616,6.96563,307.97165,309.17365,18.15,1007.4827,0.2,85.34287,1.0 +2024-07-29 08:00:00,6.726812,9.284934,311.98712,311.06973,17.4,1008.05615,0.2,85.26451,1.0 +2024-07-29 09:00:00,4.8104053,6.789698,313.31537,313.8066,16.9,1008.3391,1.7,89.43173,1.0 +2024-07-29 10:00:00,5.920304,8.949861,322.54935,320.44037,16.05,1009.0086,0.4,93.49376,0.0 +2024-07-29 11:00:00,4.2801867,6.762396,322.59457,321.6048,15.7,1009.6926,7.1,94.9949,0.0 +2024-07-29 12:00:00,4.5793014,7.300685,328.39255,323.91483,15.95,1010.19574,12.1,93.790245,0.0 +2024-07-29 13:00:00,3.2695565,5.6859474,293.4287,293.86017,16.55,1009.9157,12.0,91.441,0.0 +2024-07-29 14:00:00,2.1377556,4.2107005,280.78424,274.08554,16.35,1010.20746,0.1,93.8088,0.0 +2024-07-29 15:00:00,1.5033296,3.49285,266.186,256.75946,16.15,1010.6973,1.0,93.79954,0.0 +2024-07-29 16:00:00,1.2727922,2.433105,315.0001,279.46225,15.95,1010.6916,0.2,95.61654,0.0 +2024-07-29 17:00:00,1.0,2.1213202,323.13,278.13,15.75,1010.6856,0.2,95.60989,0.0 +2024-07-29 18:00:00,1.264911,1.3341664,18.435053,347.00537,15.0,1010.66376,0.1,95.276184,0.0 +2024-07-29 19:00:00,1.8788295,2.209072,25.201094,5.19435,14.5,1010.3513,0.0,94.94928,0.0 +2024-07-29 20:00:00,1.9209373,2.5632012,38.65983,20.556128,14.2,1010.2433,0.0,94.62903,0.0 +2024-07-29 21:00:00,1.9849433,2.84605,40.9143,18.435053,13.9,1010.4327,0.0,94.616806,0.0 +2024-07-29 22:00:00,2.1931713,3.0364454,43.152412,17.241547,13.45,1010.9152,0.0,95.22023,0.0 +2024-07-29 23:00:00,2.2627418,2.9120438,44.999897,15.945477,13.15,1011.30286,0.0,95.83614,0.0 +2024-07-30 00:00:00,2.8999999,3.0364454,46.39711,17.241547,13.4,1011.80597,0.0,96.789406,1.0 +2024-07-30 01:00:00,2.4839485,2.376973,40.10085,22.249071,15.4,1012.06366,0.0,98.724525,1.0 +2024-07-30 02:00:00,2.2203603,2.9154758,35.837746,30.963696,17.85,1012.2343,0.0,96.89639,1.0 +2024-07-30 03:00:00,1.2369317,1.6155494,14.036275,21.801476,19.65,1011.98865,0.0,77.96258,1.0 +2024-07-30 04:00:00,1.421267,1.6401219,309.28937,322.43134,20.75,1011.5241,0.0,68.08605,1.0 +2024-07-30 05:00:00,2.109502,2.4186773,264.55975,277.1249,21.05,1010.8381,0.1,66.41166,1.0 +2024-07-30 06:00:00,2.6925824,3.0675724,248.19853,250.9743,20.3,1010.2218,0.0,75.60874,1.0 +2024-07-30 07:00:00,2.1540658,2.529822,248.19853,251.56496,19.8,1010.30707,0.0,76.99366,1.0 +2024-07-30 08:00:00,1.9416488,2.3430748,214.50858,219.80553,19.45,1010.69354,0.0,74.986374,1.0 +2024-07-30 09:00:00,1.8601075,2.6400757,216.25392,217.30403,18.65,1011.06744,0.0,81.395805,1.0 +2024-07-30 10:00:00,1.6492423,2.0248456,194.03627,200.22495,16.85,1011.61035,0.0,89.14084,0.0 +2024-07-30 11:00:00,0.8062258,0.8062258,82.875084,150.2552,17.65,1012.2286,0.0,85.565125,0.0 +2024-07-30 12:00:00,1.7029387,1.5264337,86.63361,121.60746,14.9,1012.34625,0.0,93.13461,0.0 +2024-07-30 13:00:00,1.4866068,1.9235384,42.27363,27.897186,15.3,1012.45715,0.0,90.476074,0.0 +2024-07-30 14:00:00,1.0630146,1.1313709,48.814175,44.999897,14.85,1012.2457,0.0,92.829956,0.0 +2024-07-30 15:00:00,0.86023253,0.86023253,54.46224,54.46224,14.25,1012.0297,0.0,93.10102,0.0 +2024-07-30 16:00:00,1.0,1.029563,53.13002,60.94549,13.8,1011.7189,0.0,92.46978,0.0 +2024-07-30 17:00:00,1.029563,1.264911,60.94549,71.564964,13.4,1010.9135,0.0,92.14365,0.0 +2024-07-30 18:00:00,1.3892444,1.8027756,59.743652,70.559875,13.05,1010.5065,0.0,92.42723,0.0 +2024-07-30 19:00:00,2.0248458,2.8017852,57.094753,55.175446,12.75,1010.1011,0.0,93.02261,0.0 +2024-07-30 20:00:00,2.302173,3.482815,55.6196,50.82635,13.2,1010.01514,0.0,92.43577,0.0 +2024-07-30 21:00:00,2.280351,3.6400552,52.124958,37.184795,13.0,1010.00916,0.0,93.65073,0.0 +2024-07-30 22:00:00,2.5455844,3.8897302,44.999897,17.969234,12.65,1009.8995,0.0,94.87774,0.0 +2024-07-30 23:00:00,3.4409301,5.0990195,35.537766,11.3098955,12.8,1009.9043,0.0,96.14057,0.0 +2024-07-31 00:00:00,4.104875,6.328507,34.07725,5.4402504,13.4,1010.02106,0.0,97.74293,1.0 +2024-07-31 01:00:00,5.140039,8.471717,37.092915,7.4604836,15.75,1009.8923,0.0,96.53608,1.0 +2024-07-31 02:00:00,4.2059484,8.448076,18.00426,6.1154146,17.85,1010.05255,0.0,93.284004,1.0 +2024-07-31 03:00:00,4.90408,6.7007456,2.3372545,0.8550762,19.95,1009.716,0.0,81.56224,1.0 +2024-07-31 04:00:00,5.8189344,7.7491937,340.9422,340.3958,21.05,1008.8545,0.0,71.50619,1.0 +2024-07-31 05:00:00,6.0901566,8.100617,330.4886,331.22028,21.7,1007.18677,0.0,63.613117,1.0 +2024-07-31 06:00:00,6.4070277,8.682165,325.8138,327.22513,22.1,1006.30554,0.0,60.297832,1.0 +2024-07-31 07:00:00,6.6287255,9.264988,326.07016,327.3391,21.9,1006.00226,0.0,58.513615,1.0 +2024-07-31 08:00:00,6.3655324,9.548298,313.72705,316.27295,21.25,1006.47986,0.0,62.898937,1.0 +2024-07-31 09:00:00,6.989278,10.601887,303.91745,305.78906,19.55,1007.12616,0.0,76.46287,1.0 +2024-07-31 10:00:00,6.5,10.14002,306.86996,306.983,18.85,1007.40375,0.0,79.61459,0.0 +2024-07-31 11:00:00,6.741661,10.239629,302.2756,301.8274,17.55,1007.76306,1.0,85.00643,0.0 +2024-07-31 12:00:00,7.6216793,11.74138,308.0728,305.99158,17.0,1008.54034,0.5,91.762634,0.0 +2024-07-31 13:00:00,8.13941,12.567418,296.25018,295.9533,16.65,1008.2327,0.8,91.154144,0.0 +2024-07-31 14:00:00,6.021628,9.457801,305.53775,303.35403,17.4,1008.2545,0.2,89.18426,0.0 +2024-07-31 15:00:00,6.3906183,10.057833,290.13638,287.3541,16.7,1008.53174,0.4,88.84246,0.0 +2024-07-31 16:00:00,6.3007936,9.504735,269.09064,268.19128,16.45,1008.82196,0.2,89.10911,0.0 +2024-07-31 17:00:00,6.041523,9.4371605,245.55606,244.24957,16.2,1009.013,0.1,89.956635,0.0 +2024-07-31 18:00:00,7.738863,11.593533,237.13132,235.89868,16.2,1009.50885,0.5,83.4922,0.0 +2024-07-31 19:00:00,7.496666,11.458621,223.91916,223.58565,15.45,1010.0816,1.2,86.17632,0.0 +2024-07-31 20:00:00,7.840918,11.90168,217.74687,217.83282,15.45,1010.57745,0.6,81.51078,0.0 +2024-07-31 21:00:00,7.545197,11.346365,214.74324,214.95073,15.5,1011.17413,0.1,71.88713,0.0 +2024-07-31 22:00:00,6.6370173,10.049875,210.81564,211.15924,15.45,1011.8666,0.0,66.77243,0.0 +2024-07-31 23:00:00,6.0373836,9.525755,206.56499,206.83397,14.95,1012.24866,0.0,60.827045,0.0 +2024-08-01 00:00:00,5.571355,8.802272,201.03758,201.31798,14.8,1012.93835,0.0,61.20812,1.0 +2024-08-01 01:00:00,6.0373836,8.765843,206.56499,207.1496,16.15,1013.3748,0.0,58.675755,1.0 +2024-08-01 02:00:00,6.1684685,8.321659,199.90384,200.39496,16.8,1013.98883,0.0,50.988182,1.0 +2024-08-01 03:00:00,6.113101,7.955501,195.17297,194.56032,17.2,1014.09973,0.0,50.399986,1.0 +2024-08-01 04:00:00,5.824946,7.5709977,191.88864,192.20045,17.1,1013.8983,0.0,52.666477,1.0 +2024-08-01 05:00:00,5.0635953,6.363961,189.0902,188.13002,17.25,1013.20856,0.0,53.066917,1.0 +2024-08-01 06:00:00,4.7518415,5.9539905,188.47105,187.72174,17.5,1012.72003,0.0,51.001934,1.0 +2024-08-01 07:00:00,5.10392,6.503076,177.7543,178.23764,17.15,1013.2057,0.0,49.52818,1.0 +2024-08-01 08:00:00,4.707441,6.2169123,167.73524,168.87085,16.65,1013.4885,0.0,51.653202,1.0 +2024-08-01 09:00:00,3.8626416,6.1684685,158.74942,160.09616,15.7,1013.85754,0.0,59.368702,1.0 +2024-08-01 10:00:00,3.5846896,6.3953104,149.8587,153.03436,14.5,1014.21857,0.0,62.61758,0.0 +2024-08-01 11:00:00,3.3421547,6.4899926,141.07245,146.3099,13.85,1014.5958,0.0,65.086494,0.0 +2024-08-01 12:00:00,3.3301651,6.529931,131.34769,139.9698,13.2,1014.97296,0.0,67.89863,0.0 +2024-08-01 13:00:00,3.275668,6.7178864,121.26367,134.39699,12.2,1015.5379,0.0,69.10103,0.0 +2024-08-01 14:00:00,3.5846896,7.2801104,112.98875,127.18479,11.8,1015.6251,0.0,68.78253,0.0 +2024-08-01 15:00:00,3.9560082,7.738863,110.72565,122.868675,11.4,1015.613,0.0,68.938576,0.0 +2024-08-01 16:00:00,3.956008,7.8714676,106.14441,117.216034,10.85,1015.2986,0.0,69.78781,0.0 +2024-08-01 17:00:00,3.981206,7.8771825,101.59215,110.045334,10.3,1015.0837,0.0,71.1465,0.0 +2024-08-01 18:00:00,4.110961,8.104937,94.18484,99.22981,9.65,1014.86536,0.0,73.28329,0.0 +2024-08-01 19:00:00,4.4011364,8.528774,91.301926,94.70777,9.35,1014.6579,0.0,73.998184,0.0 +2024-08-01 20:00:00,4.6010866,8.900561,88.75467,90.64374,9.35,1014.4596,0.0,72.71952,0.0 +2024-08-01 21:00:00,4.925444,9.213577,84.17376,86.88923,9.15,1014.5526,0.0,72.93688,0.0 +2024-08-01 22:00:00,5.0159745,9.402127,85.42616,88.78116,8.95,1014.7445,0.0,72.899994,0.0 +2024-08-01 23:00:00,5.234501,9.502105,83.41815,88.79398,8.65,1015.0327,0.0,73.357216,0.0 +2024-08-02 00:00:00,5.5226803,9.613012,84.805664,87.01861,9.3,1015.64764,0.0,73.98929,1.0 +2024-08-02 01:00:00,5.414795,9.213577,94.23632,93.11078,11.4,1016.307,0.0,72.84519,1.0 +2024-08-02 02:00:00,5.261178,7.566373,98.74608,97.59455,13.65,1016.474,0.0,67.530525,1.0 +2024-08-02 03:00:00,5.4129477,7.218033,101.72509,100.37579,15.4,1015.832,0.0,57.49929,1.0 +2024-08-02 04:00:00,4.295346,5.491812,102.09474,100.491425,16.3,1014.8667,0.0,49.12489,1.0 +2024-08-02 05:00:00,3.939543,4.9396358,113.962494,111.3707,16.75,1013.78894,0.0,49.41875,1.0 +2024-08-02 06:00:00,3.7735925,4.7885275,122.00535,118.70586,17.05,1013.1036,0.0,46.51639,1.0 +2024-08-02 07:00:00,3.9824615,5.080354,128.8845,126.193306,16.9,1012.8017,0.0,47.28723,1.0 +2024-08-02 08:00:00,4.263801,5.700877,129.2894,127.875046,16.5,1012.5916,0.0,48.50358,1.0 +2024-08-02 09:00:00,3.679674,6.0827627,137.20262,136.33215,15.45,1012.9574,0.0,56.923878,1.0 +2024-08-02 10:00:00,3.5510561,6.741661,147.65259,147.72438,13.85,1013.4059,0.0,59.119694,0.0 +2024-08-02 11:00:00,3.8275318,7.653757,146.7251,151.09091,13.1,1013.9785,0.0,59.345634,0.0 +2024-08-02 12:00:00,4.104875,8.163333,145.92276,149.03632,12.4,1014.25507,0.0,62.12866,0.0 +2024-08-02 13:00:00,4.2520585,8.558621,131.18582,136.4202,11.25,1014.31915,0.0,62.94946,0.0 +2024-08-02 14:00:00,4.3416586,8.778382,128.45374,132.22972,10.95,1014.2112,0.0,60.283493,0.0 +2024-08-02 15:00:00,4.1617303,8.373769,125.21768,130.15593,10.8,1014.30554,0.0,59.192814,0.0 +2024-08-02 16:00:00,4.1340055,8.420214,122.15227,127.27825,10.45,1014.295,0.0,60.374424,0.0 +2024-08-02 17:00:00,4.2953463,8.635392,114.775116,118.3456,10.0,1014.1822,0.0,62.657593,0.0 +2024-08-02 18:00:00,4.2544093,8.542833,113.55228,115.665146,9.85,1013.97906,0.0,63.289906,0.0 +2024-08-02 19:00:00,4.3081317,8.508819,111.801476,113.55228,9.7,1013.7763,0.0,63.929363,0.0 +2024-08-02 20:00:00,4.365776,8.616263,110.09532,111.801476,9.55,1013.37494,0.0,63.89494,0.0 +2024-08-02 21:00:00,4.7127485,8.9810915,107.281586,108.83853,9.4,1013.17224,0.0,64.08697,0.0 +2024-08-02 22:00:00,4.6572523,8.876937,104.93147,104.349365,9.15,1013.46204,0.0,65.17411,0.0 +2024-08-02 23:00:00,4.3965893,8.537564,107.19863,103.54796,8.8,1013.8478,0.0,66.967476,0.0 +2024-08-03 00:00:00,4.464303,8.041144,105.59287,100.750916,9.4,1014.4611,0.0,69.25278,1.0 +2024-08-03 01:00:00,4.197618,7.2249565,102.38075,94.76356,11.6,1014.23083,0.0,68.03301,1.0 +2024-08-03 02:00:00,3.3241541,4.570558,105.7087,100.08054,13.75,1014.4937,0.0,65.73455,1.0 +2024-08-03 03:00:00,2.6000001,3.420526,112.61991,105.25517,15.7,1014.3534,0.0,62.893253,1.0 +2024-08-03 04:00:00,1.9104972,2.385372,132.87889,123.02387,17.25,1013.9027,0.0,61.163963,1.0 +2024-08-03 05:00:00,2.1540658,2.5553863,158.19853,149.42085,18.25,1013.1383,0.0,60.1828,1.0 +2024-08-03 06:00:00,2.5495098,3.0675724,168.69011,160.9743,18.8,1012.45996,0.0,59.715084,1.0 +2024-08-03 07:00:00,3.026549,3.710795,172.40544,165.96373,18.95,1012.1668,0.0,59.355286,1.0 +2024-08-03 08:00:00,3.436568,4.414748,171.6342,166.9081,18.7,1012.3579,0.0,59.69117,1.0 +2024-08-03 09:00:00,3.8052595,6.1073728,183.01273,177.18451,17.6,1012.7229,0.0,69.70726,1.0 +2024-08-03 10:00:00,4.318565,7.723341,174.68555,175.54448,15.9,1013.06995,0.0,74.881325,0.0 +2024-08-03 11:00:00,3.9812057,7.6896033,154.72232,159.44388,14.95,1013.7361,0.0,74.96959,0.0 +2024-08-03 12:00:00,3.2015622,7.0434365,128.65984,141.34016,13.55,1013.8928,0.0,74.731575,0.0 +2024-08-03 13:00:00,3.2893767,7.1610055,109.53674,125.90981,12.3,1014.54926,0.0,72.76077,0.0 +2024-08-03 14:00:00,3.354102,7.201389,100.30479,115.497505,11.8,1014.63354,0.0,71.92592,0.0 +2024-08-03 15:00:00,3.7013512,7.787811,91.54813,102.608604,11.5,1014.92175,0.0,68.721176,0.0 +2024-08-03 16:00:00,4.204759,8.448076,87.27374,96.11541,11.35,1014.81805,0.0,66.12044,0.0 +2024-08-03 17:00:00,4.609772,9.208692,86.26868,92.4895,11.2,1014.5162,0.0,64.94715,0.0 +2024-08-03 18:00:00,5.0159745,9.7,85.42616,90.0,10.95,1014.4094,0.0,65.345924,0.0 +2024-08-03 19:00:00,5.0358715,9.613012,83.15732,87.01861,10.5,1014.2965,0.0,66.39744,0.0 +2024-08-03 20:00:00,5.1623635,9.633276,81.08515,85.23644,10.2,1014.1882,0.0,66.10018,0.0 +2024-08-03 21:00:00,5.217279,9.662815,77.82856,83.46346,10.0,1014.083,0.0,65.13445,0.0 +2024-08-03 22:00:00,4.9040794,9.198369,73.41259,78.079285,9.7,1014.2721,0.0,65.06732,0.0 +2024-08-03 23:00:00,4.9335585,9.121404,72.299484,74.74483,9.25,1014.8529,0.0,66.82833,0.0 +2024-08-04 00:00:00,5.249762,9.20489,72.25524,72.942955,9.85,1015.26794,0.0,68.86102,1.0 +2024-08-04 01:00:00,4.9396358,9.492102,68.62931,69.655815,12.55,1015.25104,0.0,70.12496,1.0 +2024-08-04 02:00:00,4.14367,8.1541395,70.253075,66.89365,15.4,1015.0386,0.0,68.12184,1.0 +2024-08-04 03:00:00,3.5341196,4.7853947,64.8852,63.970474,17.75,1014.7107,0.0,58.474083,1.0 +2024-08-04 04:00:00,2.8844411,3.5805027,56.309914,54.090195,19.05,1014.35156,0.0,46.276337,1.0 +2024-08-04 05:00:00,1.3038405,1.6124516,32.471172,29.744795,19.45,1013.768,0.0,45.447582,1.0 +2024-08-04 06:00:00,0.5830952,0.7211103,300.96368,326.3099,19.65,1013.0795,0.0,45.971214,1.0 +2024-08-04 07:00:00,1.2529964,1.264911,241.38963,251.56496,19.6,1012.97906,0.0,47.38612,1.0 +2024-08-04 08:00:00,3.5846896,4.4777226,210.1413,209.42737,18.4,1013.14276,0.0,58.43706,1.0 +2024-08-04 09:00:00,3.7,6.103278,198.92474,198.13817,16.8,1013.493,0.0,65.948296,1.0 +2024-08-04 10:00:00,2.0223749,4.7,171.46931,180.0,14.6,1013.8248,0.0,69.34737,0.0 +2024-08-04 11:00:00,2.1931713,4.9648767,155.77226,170.72748,13.6,1013.9935,0.0,73.98869,0.0 +2024-08-04 12:00:00,2.0,4.588028,126.86999,159.59003,12.6,1014.36017,0.0,77.39774,0.0 +2024-08-04 13:00:00,2.118962,4.429447,109.290146,151.69934,11.75,1014.2353,0.0,79.3921,0.0 +2024-08-04 14:00:00,2.6076808,4.738143,94.39862,135.85501,11.25,1014.22003,0.0,78.24597,0.0 +2024-08-04 15:00:00,2.5,4.8270073,90.0,129.95749,10.95,1013.9137,0.0,78.73643,0.0 +2024-08-04 16:00:00,2.5,4.8414874,90.0,128.2902,10.8,1013.71063,0.0,78.714005,0.0 +2024-08-04 17:00:00,2.3,4.560702,90.0,127.875046,10.45,1013.4026,0.0,79.47436,0.0 +2024-08-04 18:00:00,2.7294688,4.472136,81.57312,116.56499,10.15,1013.1951,0.0,79.43078,0.0 +2024-08-04 19:00:00,2.8635643,4.6173587,77.90526,107.650215,9.7,1012.58655,0.0,80.18917,0.0 +2024-08-04 20:00:00,2.886174,4.295346,75.96373,102.09474,9.2,1012.27356,0.0,82.07683,0.0 +2024-08-04 21:00:00,2.6683328,4.0521603,77.00539,105.75124,9.0,1012.16833,0.0,82.61891,0.0 +2024-08-04 22:00:00,2.7658634,4.148494,77.4712,105.376305,9.1,1012.3698,0.0,81.21894,0.0 +2024-08-04 23:00:00,3.1320918,4.428318,73.300674,96.48298,9.0,1012.66406,0.0,81.20545,0.0 +2024-08-05 00:00:00,3.640055,4.6270943,69.075424,83.796646,10.1,1012.79694,0.0,79.15118,1.0 +2024-08-05 01:00:00,3.354102,5.269725,63.435013,56.611465,13.7,1013.3023,0.0,74.00622,1.0 +2024-08-05 02:00:00,2.2472205,3.9698865,57.724377,49.085716,16.5,1013.48413,0.0,66.77005,1.0 +2024-08-05 03:00:00,1.4764823,1.9723083,28.30066,30.465475,18.2,1013.137,0.0,58.780273,1.0 +2024-08-05 04:00:00,1.2806249,1.6401219,308.65982,322.43134,19.1,1012.56775,0.0,56.498787,1.0 +2024-08-05 05:00:00,2.1377556,2.4,259.21576,270.0,19.3,1011.4826,0.0,56.548836,1.0 +2024-08-05 06:00:00,3.2557642,3.6878178,227.4896,229.39879,18.85,1010.7757,0.0,61.1305,1.0 +2024-08-05 07:00:00,3.828838,4.816638,220.76352,221.63345,18.25,1010.5599,0.0,58.989296,1.0 +2024-08-05 08:00:00,2.9832866,3.8948684,219.55963,221.87778,17.65,1010.9394,0.0,58.253475,1.0 +2024-08-05 09:00:00,1.6763055,3.0083218,197.35411,201.4478,17.1,1011.1215,0.0,66.67409,1.0 +2024-08-05 10:00:00,2.1377556,3.9,169.21574,180.0,14.1,1011.1329,0.0,77.371735,0.0 +2024-08-05 11:00:00,1.9104972,4.0853395,132.87889,158.45895,13.5,1011.61053,0.0,77.019196,0.0 +2024-08-05 12:00:00,1.9646883,3.9824615,104.743614,141.1155,12.8,1011.78827,0.0,76.13283,0.0 +2024-08-05 13:00:00,1.9026297,3.4205263,86.98728,127.875046,11.7,1012.1515,0.0,80.74125,0.0 +2024-08-05 14:00:00,1.6124516,3.0413814,82.875084,136.33215,11.05,1011.9334,0.0,82.31372,0.0 +2024-08-05 15:00:00,2.118962,3.0463092,70.70986,113.19862,10.7,1011.3281,0.0,82.54971,0.0 +2024-08-05 16:00:00,2.3259406,3.0016663,64.5367,91.90912,10.3,1010.91943,0.0,82.49941,0.0 +2024-08-05 17:00:00,2.9546573,3.748333,66.03751,80.78905,10.4,1010.4266,0.0,80.01322,0.0 +2024-08-05 18:00:00,3.176476,4.3081317,61.821507,68.19853,10.0,1010.01794,0.0,80.78389,0.0 +2024-08-05 19:00:00,3.2449963,4.4204073,56.309914,52.35232,9.75,1009.7129,0.0,81.02751,0.0 +2024-08-05 20:00:00,3.2202482,4.743417,53.84173,34.69522,9.6,1009.3115,0.0,81.00713,0.0 +2024-08-05 21:00:00,3.1144822,4.8703184,47.602623,19.179106,9.75,1009.21716,0.0,79.64622,0.0 +2024-08-05 22:00:00,2.9832866,4.9365983,39.55964,6.980963,9.95,1009.4215,0.0,78.85732,0.0 +2024-08-05 23:00:00,2.9068882,5.3150725,26.564985,348.05585,10.1,1009.7234,0.0,77.80187,0.0 +2024-08-06 00:00:00,3.49285,6.040695,13.240531,340.6651,12.05,1010.3775,0.0,72.46685,1.0 +2024-08-06 01:00:00,3.0,5.1429563,360.0,333.43503,15.35,1011.1697,0.0,72.34034,1.0 +2024-08-06 02:00:00,2.9546573,4.118252,336.0375,330.9455,17.55,1011.234,0.0,65.88946,1.0 +2024-08-06 03:00:00,3.8418746,4.9819674,321.34018,321.51978,18.55,1010.8662,0.0,63.11844,1.0 +2024-08-06 04:00:00,5.0931325,6.6468034,313.4089,315.0001,19.45,1010.39606,0.0,62.699028,1.0 +2024-08-06 05:00:00,5.9464273,7.7155685,312.27362,312.37354,19.6,1009.9046,0.0,63.56204,1.0 +2024-08-06 06:00:00,5.8898215,7.81025,310.17917,309.8055,19.95,1009.31934,0.0,60.186466,1.0 +2024-08-06 07:00:00,6.0,8.060397,306.86996,307.43866,20.0,1009.02313,0.0,59.410282,1.0 +2024-08-06 08:00:00,5.8898215,8.2328615,310.17917,310.07285,19.45,1009.20593,0.0,64.57929,1.0 +2024-08-06 09:00:00,5.3037724,8.287943,314.23618,311.57602,18.9,1009.3884,0.0,67.93355,1.0 +2024-08-06 10:00:00,4.7885275,8.099383,331.29416,327.09476,17.55,1009.84564,0.0,76.39327,0.0 +2024-08-06 11:00:00,4.6840153,8.633077,343.8865,334.62228,16.8,1009.923,0.0,80.105225,0.0 +2024-08-06 12:00:00,4.704253,8.570298,357.5634,340.9307,16.25,1010.10516,0.0,83.49804,0.0 +2024-08-06 13:00:00,5.1088157,9.330058,356.6336,342.53598,16.35,1009.4141,0.0,83.78177,0.0 +2024-08-06 14:00:00,4.816638,8.860023,355.23645,339.51956,16.05,1009.207,0.0,84.84542,0.0 +2024-08-06 15:00:00,4.4,8.170679,360.0,338.45895,15.6,1008.99536,0.0,86.4726,0.0 +2024-08-06 16:00:00,4.504442,8.570298,2.5447557,340.9307,15.45,1008.3959,0.0,84.5035,0.0 +2024-08-06 17:00:00,4.8010416,8.832327,1.1934711,344.23276,15.45,1007.9992,0.0,83.404236,0.0 +2024-08-06 18:00:00,5.0039983,9.052072,2.2905633,343.9676,15.2,1007.89276,0.0,86.43349,0.0 +2024-08-06 19:00:00,5.3037724,9.533625,2.1610355,344.79755,15.25,1007.4978,0.0,87.004814,0.0 +2024-08-06 20:00:00,5.731492,10.373042,353.9911,340.86627,15.95,1007.31995,0.0,85.11128,0.0 +2024-08-06 21:00:00,5.656854,9.80867,351.87,336.5713,16.15,1007.02814,0.0,85.13255,0.0 +2024-08-06 22:00:00,5.27731,9.300538,332.9495,323.74606,16.65,1007.241,0.0,83.54469,0.0 +2024-08-06 23:00:00,6.723095,10.558883,300.37906,298.2639,17.3,1008.0533,1.2,88.03983,0.0 +2024-08-07 00:00:00,6.76757,10.4043255,288.9705,287.9126,17.4,1008.6511,0.5,92.66922,1.0 +2024-08-07 01:00:00,5.124451,7.4545293,264.40076,263.06573,19.1,1009.1958,0.0,85.9857,1.0 +2024-08-07 02:00:00,6.1684685,8.160883,253.03377,252.89719,19.5,1009.90173,0.0,80.215675,1.0 +2024-08-07 03:00:00,6.9079666,9.15478,247.8905,248.19853,19.6,1010.698,0.1,75.25278,1.0 +2024-08-07 04:00:00,6.1326995,7.879086,245.94266,246.0375,19.7,1010.4033,0.0,72.18369,1.0 +2024-08-07 05:00:00,5.8694124,7.615773,246.92957,246.80139,19.6,1010.2021,0.0,71.932785,1.0 +2024-08-07 06:00:00,5.507268,7.119691,240.64233,240.55466,19.6,1010.0038,0.0,71.23838,1.0 +2024-08-07 07:00:00,4.924429,6.400781,240.83249,241.03244,19.35,1009.8973,0.0,70.9614,1.0 +2024-08-07 08:00:00,4.8010416,6.242595,234.3235,234.78232,18.9,1010.1818,0.0,70.187874,1.0 +2024-08-07 09:00:00,3.6619666,5.6035705,235.0079,235.17543,18.35,1010.4635,0.0,72.40866,1.0 +2024-08-07 10:00:00,2.7294688,5.1971145,241.55717,239.98172,17.55,1010.73816,0.0,71.32104,0.0 +2024-08-07 11:00:00,1.8973665,4.3462625,251.56496,246.97447,16.6,1011.2064,0.0,74.0181,0.0 +2024-08-07 12:00:00,1.8384776,4.118252,247.61981,240.94548,16.3,1011.5942,0.0,74.70199,0.0 +2024-08-07 13:00:00,1.9723083,4.2190046,239.53453,238.57048,16.0,1012.2795,0.0,76.39619,0.0 +2024-08-07 14:00:00,2.9120438,3.7696154,254.05453,248.19853,14.45,1012.23376,0.0,81.11136,0.0 +2024-08-07 15:00:00,2.570992,3.214032,283.49576,264.64426,14.65,1012.23975,0.0,75.420555,0.0 +2024-08-07 16:00:00,2.6172504,3.7854989,313.4519,282.20044,14.0,1012.1213,0.0,80.51423,0.0 +2024-08-07 17:00:00,2.3086793,3.352611,265.03033,252.64589,15.45,1012.16406,0.0,75.55325,0.0 +2024-08-07 18:00:00,2.2203605,3.1622777,172.23492,198.43504,14.55,1012.3361,0.2,85.80372,0.0 +2024-08-07 19:00:00,0.5,0.8062258,53.13002,209.7448,15.05,1012.2515,0.1,83.083496,0.0 +2024-08-07 20:00:00,1.2727922,1.0770329,44.999897,21.801476,13.35,1012.39935,0.2,88.5654,0.0 +2024-08-07 21:00:00,2.0518284,2.0124612,46.97493,26.564985,13.0,1012.2898,0.1,92.12,0.0 +2024-08-07 22:00:00,1.9849433,2.302173,49.085716,34.3804,12.6,1012.77374,0.0,92.707664,0.0 +2024-08-07 23:00:00,1.8439089,2.1633308,49.398785,33.6901,12.45,1013.26483,0.0,91.78265,1.0 +2024-08-08 00:00:00,2.7658632,2.408319,49.398785,41.63345,13.95,1013.80566,0.0,89.49427,1.0 +2024-08-08 01:00:00,2.385372,2.8635643,33.023872,12.094739,16.65,1014.7777,0.0,85.738785,1.0 +2024-08-08 02:00:00,1.104536,1.3152945,354.80566,351.2539,18.4,1015.2254,0.0,75.542854,1.0 +2024-08-08 03:00:00,2.0024984,2.5079873,267.13766,265.42615,19.2,1015.4467,0.0,69.337166,1.0 +2024-08-08 04:00:00,2.8635643,3.49285,257.90524,256.75946,19.4,1015.1549,0.0,68.92657,1.0 +2024-08-08 05:00:00,3.1384711,3.8626416,247.52052,248.74942,19.55,1014.66345,0.0,66.52997,1.0 +2024-08-08 06:00:00,3.310589,4.0718546,244.98314,245.32315,19.65,1014.36884,0.0,64.62288,1.0 +2024-08-08 07:00:00,3.1906114,3.9962482,237.80429,238.29861,19.55,1014.46515,0.0,63.342712,1.0 +2024-08-08 08:00:00,2.9068882,3.6878178,229.18501,229.39879,19.15,1014.4536,0.0,63.045235,1.0 +2024-08-08 09:00:00,1.555635,2.8999999,224.9999,223.60289,18.35,1014.5295,0.0,69.39712,1.0 +2024-08-08 10:00:00,1.5,1.9209373,216.86998,218.65984,18.1,1014.7209,0.0,65.57206,0.0 +2024-08-08 11:00:00,1.8027756,2.1931713,183.17976,204.22774,16.9,1015.38007,0.0,68.88223,0.0 +2024-08-08 12:00:00,1.7804494,2.209072,141.84273,185.19434,15.4,1015.63354,0.0,72.590996,0.0 +2024-08-08 13:00:00,1.7029387,1.431782,93.366394,155.22488,12.4,1015.64325,0.0,86.44318,0.0 +2024-08-08 14:00:00,1.4317821,1.9416488,77.90526,124.50858,12.55,1015.6477,0.0,87.03653,0.0 +2024-08-08 15:00:00,2.0615528,2.5961509,67.16631,105.64231,11.65,1015.91797,0.0,90.214226,0.0 +2024-08-08 16:00:00,2.1023796,2.745906,64.65388,100.491425,11.45,1015.61456,0.0,88.99885,0.0 +2024-08-08 17:00:00,2.4351592,3.436568,70.8209,98.3658,11.35,1015.31384,0.0,88.09878,0.0 +2024-08-08 18:00:00,3.231099,4.7169905,68.19853,85.135574,11.45,1015.1187,0.0,88.10758,0.0 +2024-08-08 19:00:00,3.4014702,5.0990195,65.695465,78.6901,11.4,1014.5223,0.0,88.99475,0.0 +2024-08-08 20:00:00,3.4014702,5.141984,65.695465,76.50425,11.35,1014.22314,0.0,89.58967,0.0 +2024-08-08 21:00:00,3.5846896,5.661272,67.01126,72.52514,11.25,1014.12085,0.0,90.18488,0.0 +2024-08-08 22:00:00,3.7161808,6.1351447,66.19405,70.974304,11.2,1014.3179,0.0,90.181206,0.0 +2024-08-08 23:00:00,3.7161808,6.741662,66.19405,69.14547,11.3,1014.71735,0.0,88.98657,1.0 +2024-08-09 00:00:00,4.1146083,7.2498274,64.05776,65.55606,12.75,1014.95966,0.0,84.76483,1.0 +2024-08-09 01:00:00,3.5846896,8.319255,67.01126,64.35905,15.35,1015.53284,0.0,82.84721,1.0 +2024-08-09 02:00:00,3.5846896,5.239275,67.01126,66.37061,17.9,1015.60767,0.0,76.44889,1.0 +2024-08-09 03:00:00,3.577709,4.565085,63.435013,61.189304,19.5,1015.05884,0.0,64.8021,1.0 +2024-08-09 04:00:00,3.0610456,3.8418746,51.632477,51.34017,20.4,1014.19165,0.0,58.535015,1.0 +2024-08-09 05:00:00,2.8017852,3.5805027,55.175446,54.090195,20.9,1013.3135,0.0,56.572826,1.0 +2024-08-09 06:00:00,2.0124612,2.7294688,63.435013,61.55718,21.35,1012.136,0.0,55.0315,1.0 +2024-08-09 07:00:00,0.86023253,1.2165525,125.537766,99.46225,21.3,1011.7379,0.0,53.940445,1.0 +2024-08-09 08:00:00,2.280351,2.630589,195.25517,188.74608,20.55,1011.51843,0.0,61.725815,1.0 +2024-08-09 09:00:00,3.640055,5.0695167,200.92458,194.85866,18.95,1011.2743,0.0,75.388725,1.0 +2024-08-09 10:00:00,3.8078866,6.6370173,193.67133,186.0541,17.0,1011.4162,0.0,81.710304,0.0 +2024-08-09 11:00:00,3.224903,6.4938436,172.87508,170.24765,15.95,1011.6832,0.0,84.83458,0.0 +2024-08-09 12:00:00,2.4413111,5.456189,145.0079,153.90463,14.95,1011.7528,0.0,87.26153,0.0 +2024-08-09 13:00:00,2.236068,5.3413477,116.56499,141.84273,13.65,1011.9128,0.0,88.590645,0.0 +2024-08-09 14:00:00,1.8973665,4.7201695,108.43504,143.61555,12.45,1011.7775,0.0,89.37697,0.0 +2024-08-09 15:00:00,1.8439089,4.661545,102.5288,144.60512,11.85,1011.56134,0.0,89.031494,0.0 +2024-08-09 16:00:00,2.5079873,4.5793014,85.42616,121.60746,11.85,1011.2639,0.0,86.96981,0.0 +2024-08-09 17:00:00,2.6925821,4.3104525,74.931465,93.99084,11.5,1010.3608,0.0,85.48612,0.0 +2024-08-09 18:00:00,3.2893767,5.6515484,70.46326,76.70142,11.45,1009.66534,0.0,82.086075,0.0 +2024-08-09 19:00:00,3.7,7.083784,71.075264,71.053406,12.0,1008.7895,0.0,74.97363,0.0 +2024-08-09 20:00:00,3.8626416,7.879086,68.74943,66.037506,12.35,1008.4033,0.0,70.325935,0.0 +2024-08-09 21:00:00,3.577709,8.112336,63.435013,59.641964,12.55,1007.9135,0.0,66.838524,0.0 +2024-08-09 22:00:00,3.1622775,7.9812284,55.304783,52.124958,12.7,1007.91797,0.0,63.723064,0.0 +2024-08-09 23:00:00,3.405877,8.273452,49.76371,45.489635,13.0,1008.026,0.0,60.77934,1.0 +2024-08-10 00:00:00,4.1868844,8.840815,40.15594,37.64769,14.5,1008.07056,0.0,60.71978,1.0 +2024-08-10 01:00:00,5.872819,11.0421915,42.92997,38.011578,17.25,1008.1509,0.0,63.245346,1.0 +2024-08-10 02:00:00,4.110961,11.371895,41.054726,34.2491,19.8,1007.82764,0.0,65.07937,1.0 +2024-08-10 03:00:00,4.7010636,7.119691,29.29127,29.445345,22.0,1007.3937,0.0,60.27445,1.0 +2024-08-10 04:00:00,4.1761227,5.9464273,16.699326,19.653913,23.7,1006.35004,0.0,56.527596,1.0 +2024-08-10 05:00:00,3.9115217,5.400926,355.60138,1.0608971,24.8,1005.2893,0.0,52.749138,1.0 +2024-08-10 06:00:00,3.6069376,4.770744,313.87677,326.97614,24.65,1004.5908,0.0,57.125366,1.0 +2024-08-10 07:00:00,4.00125,5.4744864,268.56793,279.46225,22.45,1004.03406,0.0,74.29833,1.0 +2024-08-10 08:00:00,3.7121422,6.198387,274.63538,287.8504,21.05,1003.79626,0.0,76.69755,1.0 +2024-08-10 09:00:00,4.7010636,8.18352,299.29126,302.52487,20.05,1003.8675,0.0,75.81049,1.0 +2024-08-10 10:00:00,4.992995,8.766413,302.7352,302.42105,18.8,1004.5261,0.0,77.5852,0.0 +2024-08-10 11:00:00,3.940812,7.529276,305.7068,300.31113,17.95,1005.2952,0.0,85.87056,0.0 +2024-08-10 12:00:00,3.0610456,6.3411355,321.63248,307.95428,17.35,1005.47626,0.0,90.90871,0.0 +2024-08-10 13:00:00,2.4351592,5.3740115,340.8209,315.0001,16.6,1005.5539,0.0,92.625565,0.0 +2024-08-10 14:00:00,3.1400635,6.074537,350.8377,327.09476,16.45,1005.25195,0.0,92.9151,0.0 +2024-08-10 15:00:00,3.5510561,6.896376,350.2725,330.4613,16.3,1004.9501,0.0,93.5059,0.0 +2024-08-10 16:00:00,4.3324356,7.9259067,341.14676,330.5242,16.4,1004.6554,0.0,92.02139,0.0 +2024-08-10 17:00:00,4.651881,8.300603,334.53668,328.79953,16.35,1004.25745,0.0,91.13454,0.0 +2024-08-10 18:00:00,4.837354,8.487638,330.25522,325.56094,16.35,1004.15826,0.0,90.25815,0.0 +2024-08-10 19:00:00,5.0159745,8.695401,336.5014,329.60135,16.45,1003.76447,0.0,89.97503,0.0 +2024-08-10 20:00:00,5.011986,8.653323,331.38962,326.3099,16.8,1003.67535,0.0,89.1369,0.0 +2024-08-10 21:00:00,5.700877,9.338095,322.12494,316.73566,17.5,1003.69556,0.0,86.93482,0.0 +2024-08-10 22:00:00,6.0141497,9.617692,317.02136,314.15756,17.7,1003.70123,2.5,91.22222,0.0 +2024-08-10 23:00:00,7.2006946,11.090987,297.27667,296.79602,18.1,1004.20874,3.1,92.70706,1.0 +2024-08-11 00:00:00,3.7161808,6.2169123,246.19405,244.25934,18.3,1004.8095,2.3,92.4248,1.0 +2024-08-11 01:00:00,4.68188,7.1175838,250.0168,245.95578,18.75,1005.9133,0.5,91.28951,1.0 +2024-08-11 02:00:00,4.604346,6.351378,235.6196,236.5601,18.75,1006.1117,0.4,90.71416,1.0 +2024-08-11 03:00:00,4.248529,5.3665633,243.43501,243.43501,19.6,1006.4335,0.1,82.299385,1.0 +2024-08-11 04:00:00,4.924429,6.449806,240.83249,240.2552,19.7,1006.5355,0.2,78.721214,1.0 +2024-08-11 05:00:00,4.360046,5.72014,233.39284,233.53067,18.85,1006.0154,0.2,79.870544,1.0 +2024-08-11 06:00:00,3.764306,4.90408,230.38934,230.7928,18.75,1005.81415,0.1,79.34524,1.0 +2024-08-11 07:00:00,3.2802439,4.140048,232.43134,232.85323,18.85,1005.61865,0.0,77.34324,1.0 +2024-08-11 08:00:00,3.4132097,4.4102154,238.17259,237.0306,18.75,1006.0125,0.1,76.83072,1.0 +2024-08-11 09:00:00,3.1384711,4.527693,239.34941,239.47037,18.4,1006.39905,0.0,77.274284,1.0 +2024-08-11 10:00:00,2.5495098,4.8754487,244.44008,244.48618,17.1,1006.9565,0.0,82.25463,0.0 +2024-08-11 11:00:00,1.8973665,4.237924,251.56496,250.70985,16.25,1007.4277,0.1,87.09849,0.0 +2024-08-11 12:00:00,2.2,3.275668,270.0,257.66092,14.95,1007.7863,0.0,90.45139,0.0 +2024-08-11 13:00:00,1.7888545,2.9274564,296.56497,277.8532,15.65,1007.7078,0.1,90.50063,0.0 +2024-08-11 14:00:00,2.1260293,3.1320918,311.18582,286.6993,14.7,1007.38245,0.1,91.02565,0.0 +2024-08-11 15:00:00,1.56205,3.5341196,320.1945,295.1148,15.3,1007.49896,0.1,90.18262,0.0 +2024-08-11 16:00:00,1.7492856,3.9962482,329.03632,301.7014,15.05,1007.69006,0.1,90.753265,0.0 +2024-08-11 17:00:00,1.7888545,4.0496917,333.43503,302.90524,14.95,1007.7863,0.0,90.74641,0.0 +2024-08-11 18:00:00,1.746425,3.8275318,336.3706,303.2749,14.6,1007.57764,0.0,91.31642,0.0 +2024-08-11 19:00:00,2.280351,4.5254836,344.7448,315.0001,14.85,1007.58514,0.0,89.856415,0.0 +2024-08-11 20:00:00,1.8027756,4.022437,340.55988,304.8754,14.65,1007.48004,0.0,89.54836,0.0 +2024-08-11 21:00:00,1.746425,3.720215,346.75946,306.25394,14.15,1007.46515,0.0,87.76279,0.0 +2024-08-11 22:00:00,2.5942245,3.8,297.55273,270.0,13.65,1007.6489,0.0,85.99528,0.0 +2024-08-11 23:00:00,2.8635643,4.197618,282.09473,257.61926,13.6,1008.34155,0.0,80.19135,1.0 +2024-08-12 00:00:00,1.2806249,2.8,321.34018,270.0,15.85,1009.0026,0.0,75.36971,1.0 +2024-08-12 01:00:00,2.0615528,3.3941126,345.9637,315.0001,17.45,1009.545,0.0,79.93482,1.0 +2024-08-12 02:00:00,1.2083046,1.6763055,294.44394,287.3541,19.0,1009.9864,0.0,72.76126,1.0 +2024-08-12 03:00:00,4.002499,5.001,257.00537,258.4654,19.95,1009.716,0.0,61.58789,1.0 +2024-08-12 04:00:00,4.3908997,5.507268,239.9315,240.64233,19.15,1009.69324,0.1,75.909225,1.0 +2024-08-12 05:00:00,4.1231055,5.1078367,247.1663,246.94867,19.35,1009.5007,0.1,74.96978,1.0 +2024-08-12 06:00:00,3.9446166,4.8877397,239.53453,239.23735,19.4,1009.3036,0.0,73.77931,1.0 +2024-08-12 07:00:00,4.263801,5.2630787,230.7106,231.17017,19.25,1009.2002,0.0,72.336,1.0 +2024-08-12 08:00:00,4.5,5.72014,233.13002,233.53067,18.95,1009.4892,0.0,69.062454,1.0 +2024-08-12 09:00:00,3.538361,5.448853,227.29063,227.23119,18.2,1009.7652,0.0,69.140495,1.0 +2024-08-12 10:00:00,2.2627418,4.8795495,224.9999,225.83023,16.7,1010.1184,0.0,70.92655,0.0 +2024-08-12 11:00:00,2.9206164,3.828838,218.04709,220.76352,14.6,1010.7508,0.0,79.00886,0.0 +2024-08-12 12:00:00,2.505993,3.3615475,241.38963,239.62096,16.0,1011.0895,0.0,68.7017,0.0 +2024-08-12 13:00:00,2.280351,3.0083218,254.74483,248.5522,16.55,1011.4032,0.0,64.5854,0.0 +2024-08-12 14:00:00,1.0049876,1.8357561,275.7105,240.64233,17.75,1011.14056,0.0,59.463245,0.0 +2024-08-12 15:00:00,0.42426407,0.7211103,44.999897,236.3099,17.0,1010.9204,0.0,62.13937,0.0 +2024-08-12 16:00:00,1.5,0.50990194,53.13002,78.6901,12.35,1010.5848,0.0,80.55786,0.0 +2024-08-12 17:00:00,1.5264337,1.5652475,58.392544,63.435013,12.5,1010.49,0.0,80.84998,0.0 +2024-08-12 18:00:00,1.5652475,1.4764823,63.435013,61.69934,11.8,1010.36993,0.0,84.09188,0.0 +2024-08-12 19:00:00,1.431782,1.2041595,65.22488,48.366554,11.3,1009.95807,0.0,86.04319,0.0 +2024-08-12 20:00:00,1.4764823,1.3000001,61.69934,22.61991,10.1,1009.6242,0.0,90.09981,0.0 +2024-08-12 21:00:00,1.7492856,1.6492423,59.03632,14.036275,9.35,1009.60144,0.0,91.587845,0.0 +2024-08-12 22:00:00,1.8867962,1.9416487,57.99466,11.888645,9.2,1009.89404,0.0,91.26723,0.0 +2024-08-12 23:00:00,1.8867962,2.1377556,57.99466,10.784258,9.35,1010.2955,0.0,89.73771,1.0 +2024-08-13 00:00:00,2.6907248,2.630589,48.01287,8.746089,11.85,1010.8673,0.0,84.38103,1.0 +2024-08-13 01:00:00,3.3286633,4.7265205,32.73523,6.0723705,16.2,1011.2938,0.0,78.20708,1.0 +2024-08-13 02:00:00,3.008322,3.8832974,15.42223,11.888645,18.25,1011.2541,0.0,66.914795,1.0 +2024-08-13 03:00:00,2.9529645,3.6715121,331.69934,330.64233,19.2,1010.88464,0.0,60.208,1.0 +2024-08-13 04:00:00,3.5341196,4.429447,295.1148,298.30066,19.4,1010.29535,0.0,60.454765,1.0 +2024-08-13 05:00:00,4.0804415,5.162364,287.1028,291.59537,19.6,1009.8054,0.0,60.302486,1.0 +2024-08-13 06:00:00,5.2773094,6.708204,279.81924,280.30478,18.75,1009.4836,0.1,68.79769,1.0 +2024-08-13 07:00:00,4.588028,5.8872743,290.40997,290.89783,18.25,1009.2707,0.1,73.81968,1.0 +2024-08-13 08:00:00,4.9335585,6.484597,287.7005,287.03784,18.2,1009.26935,0.5,72.38154,1.0 +2024-08-13 09:00:00,4.9030604,7.334848,281.76825,281.00348,17.55,1009.5481,0.5,72.73905,1.0 +2024-08-13 10:00:00,4.0792155,6.905071,281.3099,280.0079,16.85,1009.7262,0.0,75.287605,0.0 +2024-08-13 11:00:00,3.8832974,6.9720874,281.88864,278.24622,16.35,1010.1082,0.0,76.70383,0.0 +2024-08-13 12:00:00,3.945884,7.045566,278.74606,276.5197,16.1,1010.59656,0.0,77.67987,0.0 +2024-08-13 13:00:00,4.90408,8.20061,272.33725,270.69867,16.8,1010.51794,0.0,74.78654,0.0 +2024-08-13 14:00:00,5.4744864,8.747571,260.53775,259.46088,16.85,1010.32117,0.0,76.531715,0.0 +2024-08-13 15:00:00,5.2038445,8.514693,267.79745,266.6336,16.9,1009.92584,0.0,76.289474,0.0 +2024-08-13 16:00:00,5.0,8.40238,270.0,268.6361,16.85,1009.4287,0.0,75.53499,0.0 +2024-08-13 17:00:00,5.1,8.502353,270.0,268.65213,16.9,1009.0333,0.0,72.622086,0.0 +2024-08-13 18:00:00,4.509989,8.005623,273.814,272.14755,17.05,1008.83936,0.0,70.525734,0.0 +2024-08-13 19:00:00,6.281719,9.580188,256.18494,256.1088,17.0,1008.63947,0.0,79.35402,0.0 +2024-08-13 20:00:00,5.059644,8.221922,251.56496,251.56496,15.9,1008.6075,0.0,85.66193,0.0 +2024-08-13 21:00:00,5.314132,8.731552,250.20103,249.90468,16.6,1008.42975,0.1,80.33933,0.0 +2024-08-13 22:00:00,5.3712196,8.54927,245.82089,245.83337,16.95,1008.73737,0.0,77.049995,0.0 +2024-08-13 23:00:00,4.7413077,7.782673,242.35411,242.44728,16.45,1009.11945,0.0,81.37414,1.0 +2024-08-14 00:00:00,4.924429,7.4732857,246.0375,245.49261,16.9,1009.43,0.1,81.96326,1.0 +2024-08-14 01:00:00,6.3953104,8.944272,243.03436,243.43501,17.7,1010.04816,0.2,80.48852,1.0 +2024-08-14 02:00:00,7.119691,9.451454,240.55466,240.18001,18.25,1010.2624,0.4,76.00988,1.0 +2024-08-14 03:00:00,6.723095,8.832327,239.62096,239.37007,18.5,1009.97217,0.6,75.071075,1.0 +2024-08-14 04:00:00,5.9615436,7.7999997,247.30617,247.3801,18.95,1009.6875,0.2,71.58105,1.0 +2024-08-14 05:00:00,5.7775426,7.4323616,246.54095,246.19405,19.1,1009.1958,0.1,69.99805,1.0 +2024-08-14 06:00:00,5.9615436,7.7077885,247.30617,247.0942,18.55,1008.58527,0.8,73.155106,1.0 +2024-08-14 07:00:00,5.7775426,7.7878113,246.54095,245.73871,18.3,1008.6771,0.7,73.34938,1.0 +2024-08-14 08:00:00,4.9335585,6.484597,252.29948,252.96214,18.5,1008.7821,0.0,68.97348,1.0 +2024-08-14 09:00:00,4.0521603,6.0440054,254.24875,253.66388,17.95,1008.9646,0.0,69.31852,1.0 +2024-08-14 10:00:00,3.613862,6.0440054,255.5792,253.66388,17.6,1009.1527,0.0,69.249535,0.0 +2024-08-14 11:00:00,3.3955853,6.113101,256.373,254.82703,17.15,1009.3381,0.0,71.0117,0.0 +2024-08-14 12:00:00,3.6687872,6.5787535,252.55272,250.46326,17.0,1009.73035,0.0,71.92595,0.0 +2024-08-14 13:00:00,4.661545,7.5239615,247.28555,246.50142,17.5,1010.14154,0.0,69.91771,0.0 +2024-08-14 14:00:00,4.1231055,6.868042,255.96373,253.93994,17.5,1009.94324,0.0,70.611664,0.0 +2024-08-14 15:00:00,4.317406,7.227724,256.60748,255.5792,17.15,1009.63556,0.0,73.14633,0.0 +2024-08-14 16:00:00,4.8270073,7.615773,256.82745,256.32867,17.45,1009.2475,0.0,74.16466,0.0 +2024-08-14 17:00:00,5.2554736,8.041144,248.80588,248.86009,16.8,1009.32794,0.2,80.366585,0.0 +2024-08-14 18:00:00,3.956008,6.8622155,253.85559,251.30092,16.3,1009.11505,0.1,82.961945,0.0 +2024-08-14 19:00:00,4.204759,7.2897186,244.65387,243.08353,16.55,1008.72565,0.0,79.031166,0.0 +2024-08-14 20:00:00,5.1623635,8.202439,225.78473,224.9999,15.85,1008.60596,0.1,86.49697,0.0 +2024-08-14 21:00:00,3.748333,6.3031735,223.91916,221.78442,15.45,1008.5942,0.5,89.31904,0.0 +2024-08-14 22:00:00,2.5553863,5.283938,210.57915,209.4758,15.65,1008.69946,0.4,85.63618,0.0 +2024-08-14 23:00:00,3.231099,5.7775426,201.80147,203.45905,16.35,1009.21576,0.1,78.74392,1.0 +2024-08-15 00:00:00,3.0463092,5.280152,203.19862,204.62355,16.6,1009.6197,0.0,78.26672,1.0 +2024-08-15 01:00:00,2.3259406,3.7121422,205.4633,207.25525,17.6,1010.1444,0.0,75.65792,1.0 +2024-08-15 02:00:00,2.8017852,3.4669871,214.82455,213.23172,18.65,1010.4724,0.0,64.1922,1.0 +2024-08-15 03:00:00,2.7658632,3.405877,220.60121,220.23628,19.35,1010.3932,0.0,60.84377,1.0 +2024-08-15 04:00:00,3.1144822,3.753665,222.39738,221.76021,19.55,1009.70465,0.0,60.290707,1.0 +2024-08-15 05:00:00,3.3970575,4.172529,222.61401,224.02907,19.35,1009.20306,0.0,60.24347,1.0 +2024-08-15 06:00:00,3.3421547,4.110961,218.92755,221.05472,19.0,1008.6971,0.0,63.011463,1.0 +2024-08-15 07:00:00,3.2802439,4.0459857,217.56866,219.98683,18.95,1008.39825,0.0,64.682465,1.0 +2024-08-15 08:00:00,3.130495,3.8013155,206.56499,206.56499,18.2,1008.67426,0.0,71.442154,1.0 +2024-08-15 09:00:00,2.6832817,3.6249137,206.56499,204.44394,17.6,1008.7561,0.0,73.94827,1.0 +2024-08-15 10:00:00,1.811077,3.8639357,186.3401,190.43742,15.9,1008.7067,0.0,83.18506,0.0 +2024-08-15 11:00:00,1.9313208,3.436568,158.74942,171.6342,14.35,1009.05774,0.0,88.94034,0.0 +2024-08-15 12:00:00,1.6970563,3.5846896,135.0001,157.01126,14.05,1009.4455,0.0,88.91592,0.0 +2024-08-15 13:00:00,1.5231546,3.1906114,113.19862,147.80429,13.15,1009.518,0.0,89.13663,0.0 +2024-08-15 14:00:00,2.2,3.4132097,90.0,121.82741,12.9,1009.4114,0.0,90.60438,0.0 +2024-08-15 15:00:00,2.0396078,2.9410882,78.6901,107.818985,12.3,1009.4924,0.0,92.078415,0.0 +2024-08-15 16:00:00,1.9924859,2.570992,72.47434,103.49575,11.95,1009.0854,0.0,92.05747,0.0 +2024-08-15 17:00:00,2.2472203,3.1064448,69.14546,93.691315,11.7,1008.78033,0.0,91.73615,0.0 +2024-08-15 18:00:00,2.5495098,3.4525354,64.440094,79.99209,11.6,1008.4799,0.0,91.11948,0.0 +2024-08-15 19:00:00,2.5942245,3.640055,62.447273,69.075424,11.35,1007.97656,0.0,91.7143,0.0 +2024-08-15 20:00:00,2.9154758,4.0816665,59.03632,59.03632,11.0,1007.37134,0.0,92.30908,0.0 +2024-08-15 21:00:00,3.001666,4.404543,60.018444,50.52757,10.65,1007.1623,0.0,92.91059,0.0 +2024-08-15 22:00:00,3.2449963,4.8270073,56.309914,39.957497,10.45,1007.4537,0.0,92.89978,0.0 +2024-08-15 23:00:00,3.4205263,5.1107726,52.124958,30.579157,10.45,1007.8503,0.0,92.276924,1.0 +2024-08-16 00:00:00,4.031129,5.4626,46.005,23.749514,12.2,1008.2997,0.0,88.467995,1.0 +2024-08-16 01:00:00,4.1012197,6.5795135,44.999897,24.227736,15.7,1008.6018,0.0,84.53114,1.0 +2024-08-16 02:00:00,3.3615472,4.4598203,22.751022,19.653913,18.25,1008.6756,0.0,70.52305,1.0 +2024-08-16 03:00:00,2.828427,3.436568,351.87,351.63422,19.5,1008.21576,0.0,63.958138,1.0 +2024-08-16 04:00:00,3.4655447,4.244997,313.83093,316.90915,20.25,1007.44354,0.0,61.859207,1.0 +2024-08-16 05:00:00,3.4234486,4.2755113,276.70975,280.78424,19.8,1006.43915,0.0,65.07937,1.0 +2024-08-16 06:00:00,3.7854989,4.669047,257.79956,260.13425,19.7,1005.84125,0.0,65.698456,1.0 +2024-08-16 07:00:00,4.0199504,5.0358715,275.7105,276.84268,19.5,1005.8356,0.0,67.17379,1.0 +2024-08-16 08:00:00,4.060788,5.178803,279.92618,280.0079,19.3,1005.7304,0.0,69.35674,1.0 +2024-08-16 09:00:00,2.7073975,3.7121422,274.23633,274.63538,18.45,1005.70636,0.0,74.81967,1.0 +2024-08-16 10:00:00,1.7,3.733631,298.0724,290.37653,16.25,1005.841,0.0,87.09849,0.0 +2024-08-16 11:00:00,1.8601075,3.7802117,323.74606,307.47626,15.35,1006.1123,0.0,88.73201,0.0 +2024-08-16 12:00:00,1.7117243,3.7013512,353.29025,321.5819,15.05,1006.1034,0.0,89.579094,0.0 +2024-08-16 13:00:00,1.6492423,3.6359317,14.036275,328.4958,14.45,1005.7883,0.0,87.78957,0.0 +2024-08-16 14:00:00,2.4166093,4.2059484,24.443953,341.99573,14.15,1005.2836,0.0,88.632484,0.0 +2024-08-16 15:00:00,3.0083218,5.3150725,21.44781,348.05585,13.9,1004.7806,0.0,89.49039,0.0 +2024-08-16 16:00:00,3.3955853,6.1846585,13.627024,345.9637,13.9,1004.0864,0.0,88.90368,0.0 +2024-08-16 17:00:00,3.667424,6.865857,11.003508,347.38068,13.85,1003.5891,0.0,88.60739,0.0 +2024-08-16 18:00:00,3.667424,7.0611615,11.003508,347.73523,13.8,1002.99286,0.0,88.60321,0.0 +2024-08-16 19:00:00,3.981206,7.334848,11.592147,348.9965,13.65,1001.9969,0.0,89.176674,0.0 +2024-08-16 20:00:00,4.539824,8.614523,7.59456,350.6471,13.7,1001.60156,0.0,88.88732,0.0 +2024-08-16 21:00:00,5.2773094,9.732934,9.819235,355.2853,13.8,1001.3072,0.0,89.48263,0.0 +2024-08-16 22:00:00,5.846366,10.417293,12.8477125,3.3018,14.1,1000.7211,0.0,88.337456,0.0 +2024-08-16 23:00:00,5.842089,10.4,6.8816385,360.0,14.35,1000.82745,0.0,86.91963,1.0 +2024-08-17 00:00:00,6.963476,10.98954,12.439554,7.3189344,15.1,1000.5519,0.0,85.02038,1.0 +2024-08-17 01:00:00,6.603787,9.577055,327.99466,331.29416,17.95,1000.3367,0.2,76.20882,1.0 +2024-08-17 02:00:00,9.762172,14.213022,316.66025,315.28503,16.0,1000.6771,8.0,88.78536,1.0 +2024-08-17 03:00:00,8.105554,12.121057,308.991,307.6263,16.15,999.9874,2.5,89.952965,1.0 +2024-08-17 04:00:00,8.207923,12.083046,247.80966,245.55606,15.4,1000.5607,3.6,87.58806,1.0 +2024-08-17 05:00:00,8.45281,12.435433,244.04129,242.19862,15.05,999.9554,0.5,83.90651,1.0 +2024-08-17 06:00:00,7.227724,10.480935,255.5792,254.5051,15.1,1000.4527,0.8,77.0143,1.0 +2024-08-17 07:00:00,7.1175838,10.34698,245.95578,246.65598,15.45,1000.76025,0.1,73.08508,1.0 +2024-08-17 08:00:00,7.4999995,10.412012,253.73972,253.82776,16.05,1001.37286,0.4,67.799965,1.0 +2024-08-17 09:00:00,7.0213957,10.183319,252.5972,252.27667,14.75,1002.3265,1.8,67.75932,1.0 +2024-08-17 10:00:00,6.1684685,9.741664,253.03377,252.68097,14.2,1003.10376,1.0,70.447266,1.0 +2024-08-17 11:00:00,5.9135437,9.297312,251.25856,251.1752,13.9,1003.789,0.5,74.04121,0.0 +2024-08-17 12:00:00,6.3560996,9.889894,245.85446,245.5081,13.65,1004.1784,0.2,74.497536,0.0 +2024-08-17 13:00:00,6.5924196,10.269372,247.71436,247.68051,14.15,1003.99457,0.0,72.851006,0.0 +2024-08-17 14:00:00,6.76757,10.534229,251.0295,250.0168,14.45,1004.0035,0.1,72.661095,0.0 +2024-08-17 15:00:00,6.369458,9.992497,247.86446,247.02725,14.7,1004.11005,0.0,69.134026,0.0 +2024-08-17 16:00:00,7.392564,11.280514,246.90315,245.93437,14.55,1004.10565,0.2,61.148922,0.0 +2024-08-17 17:00:00,7.3409805,11.1892805,245.87901,245.72557,14.85,1003.9162,0.0,63.126385,0.0 +2024-08-17 18:00:00,6.844706,10.46948,244.93256,245.14844,14.85,1004.0153,0.0,68.46893,0.0 +2024-08-17 19:00:00,6.88767,10.509519,244.17906,243.43501,14.6,1003.8095,0.2,68.88131,0.0 +2024-08-17 20:00:00,7.392564,11.1139555,239.9668,239.74365,14.6,1003.8095,0.1,71.23952,0.0 +2024-08-17 21:00:00,7.267049,11.067972,235.65384,235.30478,15.0,1004.11896,0.1,63.37551,0.0 +2024-08-17 22:00:00,6.8014703,10.480458,228.57643,228.09415,14.8,1004.6087,0.1,64.8538,0.0 +2024-08-17 23:00:00,6.506919,10.255242,226.24529,226.18518,14.75,1005.2022,0.0,62.462044,1.0 +2024-08-18 00:00:00,6.5115285,9.976472,227.4896,227.03091,15.45,1005.81757,0.0,60.532597,1.0 +2024-08-18 01:00:00,6.8883963,9.654015,230.30096,230.04251,15.8,1006.5222,0.4,72.66353,1.0 +2024-08-18 02:00:00,6.762396,8.964374,231.6048,231.34016,16.4,1007.0354,0.1,69.93505,1.0 +2024-08-18 03:00:00,7.5,10.0,233.13002,233.13002,16.6,1007.1405,0.0,62.88673,1.0 +2024-08-18 04:00:00,7.905694,10.486181,235.30478,235.09743,16.8,1006.7496,0.1,61.884995,1.0 +2024-08-18 05:00:00,7.800641,10.381232,233.86453,234.0131,16.6,1006.54553,0.3,63.52312,1.0 +2024-08-18 06:00:00,8.105554,10.870602,231.009,230.59937,16.65,1006.4477,0.3,63.53439,1.0 +2024-08-18 07:00:00,8.495881,11.402192,227.86247,228.19963,16.75,1006.5497,0.1,63.344242,1.0 +2024-08-18 08:00:00,7.9208584,10.748953,226.02293,225.75375,16.2,1006.93054,0.0,65.59937,1.0 +2024-08-18 09:00:00,6.576473,9.617692,224.38402,224.15756,16.25,1007.2294,0.0,64.30292,1.0 +2024-08-18 10:00:00,7.1028166,10.625441,215.25644,215.03627,16.1,1007.6216,0.0,62.772575,1.0 +2024-08-18 11:00:00,6.87968,10.430724,212.53505,212.47118,15.9,1008.1117,0.0,62.51528,0.0 +2024-08-18 12:00:00,6.4140472,9.964437,210.96368,211.45677,15.7,1008.5026,0.0,63.748917,0.0 +2024-08-18 13:00:00,6.140033,9.415414,210.32352,210.65059,15.45,1008.8917,0.0,65.4368,0.0 +2024-08-18 14:00:00,6.0827627,9.482615,207.40749,207.64589,15.5,1008.8934,0.0,62.847485,0.0 +2024-08-18 15:00:00,6.0926185,9.493682,203.19862,203.59483,15.25,1008.8861,0.0,64.51518,0.0 +2024-08-18 16:00:00,5.3488317,8.709191,200.80687,201.55714,14.85,1008.5767,0.0,61.84968,0.0 +2024-08-18 17:00:00,4.8332186,8.143709,204.44394,204.67685,15.15,1008.2882,0.0,60.04973,0.0 +2024-08-18 18:00:00,4.976947,7.970571,202.4428,203.67055,15.8,1008.208,0.0,60.616016,0.0 +2024-08-18 19:00:00,4.88467,8.023092,202.89058,202.72977,15.45,1008.0983,0.0,62.411568,0.0 +2024-08-18 20:00:00,4.3011627,7.4330344,197.59251,199.65392,15.45,1007.9992,0.0,62.411568,0.0 +2024-08-18 21:00:00,3.9293766,6.676077,194.7436,196.53491,15.7,1008.00684,0.0,61.212276,0.0 +2024-08-18 22:00:00,3.5902646,6.306346,192.875,194.69736,15.85,1008.50684,0.0,62.50376,0.0 +2024-08-18 23:00:00,3.49285,6.484597,193.24052,197.03786,15.05,1009.1775,0.0,67.36591,1.0 +2024-08-19 00:00:00,3.6687872,6.040695,197.44728,199.3349,15.75,1009.8923,0.0,69.575294,1.0 +2024-08-19 01:00:00,3.9560082,5.4781384,200.72563,201.41304,16.55,1010.6098,0.0,62.875347,1.0 +2024-08-19 02:00:00,4.5221677,6.0083275,198.03438,198.43504,16.7,1011.0109,0.0,64.4026,1.0 +2024-08-19 03:00:00,4.4598203,5.724509,199.65392,199.38461,17.15,1011.0239,0.0,63.646652,1.0 +2024-08-19 04:00:00,3.9812057,5.0990195,205.27768,205.55992,17.05,1010.92194,0.0,62.778614,1.0 +2024-08-19 05:00:00,4.0249224,5.0537114,206.56499,207.07199,17.35,1010.4347,0.0,61.805126,1.0 +2024-08-19 06:00:00,4.159327,5.27731,207.18103,207.05052,17.55,1010.1431,0.0,60.825787,1.0 +2024-08-19 07:00:00,4.472136,5.7245083,206.56499,207.01259,17.55,1009.84564,0.0,59.815147,1.0 +2024-08-19 08:00:00,4.3829217,5.7245083,207.1496,207.01259,17.3,1009.93756,0.0,60.970966,1.0 +2024-08-19 09:00:00,3.7643058,5.4708314,196.9909,198.10385,16.65,1009.81934,0.0,67.24823,1.0 +2024-08-19 10:00:00,2.5079873,4.738143,184.57384,187.27492,15.8,1010.0921,0.0,70.05113,1.0 +2024-08-19 11:00:00,1.8384776,4.14367,157.61983,171.67444,14.85,1010.3617,0.0,74.703224,0.0 +2024-08-19 12:00:00,1.5652475,3.4409301,116.56499,144.46223,13.6,1010.7213,0.0,80.459465,0.0 +2024-08-19 13:00:00,2.2022717,3.8948684,87.3975,119.197395,12.7,1011.09094,0.0,79.52901,0.0 +2024-08-19 14:00:00,2.6925821,4.491102,74.931465,101.560104,12.15,1011.07446,0.0,81.07548,0.0 +2024-08-19 15:00:00,3.0083218,4.9,68.5522,90.0,11.85,1011.0656,0.0,81.86046,0.0 +2024-08-19 16:00:00,3.1016126,5.1088157,69.22767,86.633606,11.3,1010.7513,0.0,83.46793,0.0 +2024-08-19 17:00:00,2.863564,4.669047,65.22488,80.13426,10.9,1010.4417,0.0,83.98795,0.0 +2024-08-19 18:00:00,3.088689,4.7127485,60.94549,72.718414,10.45,1010.62646,0.0,85.37439,0.0 +2024-08-19 19:00:00,3.3615475,5.2201533,59.620956,69.82927,10.3,1010.02716,0.0,85.940475,0.0 +2024-08-19 20:00:00,3.088689,5.2000003,60.94549,67.3801,10.5,1009.93396,0.0,85.090355,0.0 +2024-08-19 21:00:00,3.1384711,4.9648767,59.349415,62.402794,11.1,1009.9521,0.0,82.5998,0.0 +2024-08-19 22:00:00,3.4669871,6.046487,56.768288,55.78425,11.45,1010.16113,0.0,80.98124,0.0 +2024-08-19 23:00:00,3.1906114,5.7628117,57.804302,51.34017,10.65,1010.7317,0.0,84.24457,1.0 +2024-08-20 00:00:00,3.4985712,5.23259,59.03632,44.999897,12.2,1011.2743,0.0,81.082184,1.0 +2024-08-20 01:00:00,3.623534,7.0035706,50.59937,43.26433,15.05,1011.65656,0.0,75.73843,1.0 +2024-08-20 02:00:00,3.04795,4.1231055,41.00899,39.09386,16.85,1011.61035,0.0,67.06634,1.0 +2024-08-20 03:00:00,1.6643317,1.9416488,32.73523,34.50859,18.3,1011.0573,0.0,59.19883,1.0 +2024-08-20 04:00:00,0.4,0.31622776,270.0,288.43503,19.05,1010.58295,0.0,58.206787,1.0 +2024-08-20 05:00:00,1.7,1.8788295,241.92761,244.7989,19.25,1009.99365,0.0,58.449455,1.0 +2024-08-20 06:00:00,2.9206164,3.3421547,231.95291,231.07245,18.8,1009.48474,0.0,61.525238,1.0 +2024-08-20 07:00:00,3.3970575,4.110961,222.61401,221.05472,18.5,1009.3771,0.0,63.73649,1.0 +2024-08-20 08:00:00,3.720215,4.661545,216.25392,215.39488,17.95,1009.6587,0.0,64.250206,1.0 +2024-08-20 09:00:00,2.996665,4.3829217,205.7099,207.1496,17.25,1009.6384,0.0,68.271225,1.0 +2024-08-20 10:00:00,2.1540658,4.1231055,201.80147,202.8337,16.65,1009.81934,0.0,71.15214,1.0 +2024-08-20 11:00:00,1.5033296,2.9410882,183.814,197.81898,15.6,1010.0861,0.0,79.15366,0.0 +2024-08-20 12:00:00,1.3453624,2.2561028,131.98714,167.19574,15.7,1010.2876,0.0,80.47995,0.0 +2024-08-20 13:00:00,1.3601471,1.5033296,126.027466,176.186,15.05,1010.36743,0.0,84.45917,0.0 +2024-08-20 14:00:00,1.4,1.2206556,90.0,145.0079,13.5,1009.9248,0.0,88.285995,0.0 +2024-08-20 15:00:00,0.92195445,1.1401755,77.4712,142.12495,13.6,1009.63055,0.0,86.27531,0.0 +2024-08-20 16:00:00,0.92195445,1.118034,77.4712,153.43501,13.4,1009.72363,0.0,85.40134,0.0 +2024-08-20 17:00:00,1.118034,1.421267,79.69521,140.71062,12.65,1009.40375,0.0,88.212494,0.0 +2024-08-20 18:00:00,1.360147,1.7204651,72.89719,125.537766,12.35,1009.5932,0.0,89.072105,0.0 +2024-08-20 19:00:00,1.3892444,1.3341664,59.743652,102.99462,12.25,1009.2929,0.0,90.25798,0.0 +2024-08-20 20:00:00,1.7,2.158703,61.92762,103.39252,12.15,1008.7939,0.0,90.55162,0.0 +2024-08-20 21:00:00,2.2561028,3.794733,77.19574,108.43504,12.05,1008.4935,0.0,90.24342,0.0 +2024-08-20 22:00:00,2.5079873,4.6840153,85.42616,106.11349,12.25,1008.7971,0.0,88.767685,0.0 +2024-08-20 23:00:00,2.8442926,5.124451,79.87539,95.59925,12.15,1009.2897,0.0,88.75937,1.0 +2024-08-21 00:00:00,3.5171013,5.5145264,75.17348,85.84044,13.8,1009.73566,0.0,85.16123,1.0 +2024-08-21 01:00:00,3.008322,5.0990195,74.57778,78.6901,16.1,1010.1007,0.0,81.594826,1.0 +2024-08-21 02:00:00,2.3086793,2.9068885,85.03035,86.05489,17.85,1010.2509,0.0,73.99142,1.0 +2024-08-21 03:00:00,1.8384776,2.2472203,112.38018,110.854546,19.0,1010.0855,0.0,67.95382,1.0 +2024-08-21 04:00:00,1.8788295,2.2472203,115.20109,110.854546,19.6,1009.4087,0.0,63.353867,1.0 +2024-08-21 05:00:00,1.603122,2.1023796,93.57626,87.27374,20.1,1007.8359,0.0,58.655582,1.0 +2024-08-21 06:00:00,0.9055385,1.360147,83.659904,72.89719,20.3,1007.14734,0.0,56.986095,1.0 +2024-08-21 07:00:00,0.64031243,0.9055385,128.65984,96.340096,20.4,1006.55505,0.0,56.82281,1.0 +2024-08-21 08:00:00,1.0770329,1.2041595,158.19853,138.36655,20.15,1006.15137,0.0,58.474472,1.0 +2024-08-21 09:00:00,2.209072,2.8231187,174.80566,157.06787,19.45,1005.5365,0.0,68.48938,1.0 +2024-08-21 10:00:00,2.624881,4.356604,162.25523,148.13406,17.55,1005.18463,0.0,77.89959,1.0 +2024-08-21 11:00:00,2.624881,5.3413477,139.63554,128.15727,16.2,1005.0464,0.0,79.499954,0.0 +2024-08-21 12:00:00,2.5317976,5.7974133,99.090195,104.99513,15.3,1005.119,0.0,75.52846,0.0 +2024-08-21 13:00:00,4.5122056,8.766414,77.19574,78.81828,15.95,1004.44415,0.0,69.15181,0.0 +2024-08-21 14:00:00,3.8626416,8.023092,68.74943,67.27023,15.7,1003.8419,0.0,68.87125,0.0 +2024-08-21 15:00:00,4.472136,8.683317,63.435013,61.07368,15.65,1003.04706,0.0,68.172966,0.0 +2024-08-21 16:00:00,5.060632,9.501578,52.22426,49.267986,15.8,1002.0598,0.0,67.74845,0.0 +2024-08-21 17:00:00,5.882177,10.486181,35.311302,34.90257,16.4,1000.98627,0.0,65.86255,0.0 +2024-08-21 18:00:00,5.748913,9.847842,13.069325,9.940512,16.5,1000.98914,0.0,64.14296,0.0 +2024-08-21 19:00:00,3.8209946,7.376313,353.9911,344.2679,16.1,1000.87836,0.3,70.57748,0.0 +2024-08-21 20:00:00,5.0695167,8.381527,345.14133,340.48404,16.25,1000.0894,0.0,82.4169,0.0 +2024-08-21 21:00:00,6.484597,10.400001,342.96216,337.3801,17.15,999.61957,0.0,80.67569,0.0 +2024-08-21 22:00:00,7.9699435,12.349089,342.47433,338.6293,17.65,999.4356,0.1,80.4818,0.0 +2024-08-21 23:00:00,8.228001,12.712199,339.36237,335.85446,17.85,999.63965,0.1,82.61317,1.0 +2024-08-22 00:00:00,7.725283,11.85327,338.74942,334.51593,18.55,999.8581,0.0,85.65726,1.0 +2024-08-22 01:00:00,7.9195957,11.599999,315.0001,313.6029,19.4,1000.0803,0.0,85.74345,1.0 +2024-08-22 02:00:00,8.940358,12.241323,306.3573,306.02747,20.5,1000.508,0.0,79.08696,1.0 +2024-08-22 03:00:00,10.444616,14.338758,300.4933,300.1413,20.6,1000.2133,0.2,77.85567,1.0 +2024-08-22 04:00:00,10.375452,14.266395,296.31802,296.20578,20.9,1000.1227,0.3,75.46515,1.0 +2024-08-22 05:00:00,10.511898,14.447492,297.78384,297.62915,20.85,999.923,0.3,75.69755,1.0 +2024-08-22 06:00:00,10.111874,13.911866,298.33902,297.85437,20.7,999.8194,0.2,74.714455,1.0 +2024-08-22 07:00:00,9.752949,13.553228,298.1415,297.69937,20.85,999.923,0.1,72.62257,1.0 +2024-08-22 08:00:00,9.128527,12.795312,294.59976,294.96277,20.1,1000.00085,0.6,77.53327,1.0 +2024-08-22 09:00:00,7.8294315,11.587062,294.92844,295.01685,19.2,1000.3722,0.2,81.206696,1.0 +2024-08-22 10:00:00,7.209022,11.098199,293.7204,294.48666,18.45,1000.847,0.1,82.68593,1.0 +2024-08-22 11:00:00,6.9771056,10.912378,297.2995,296.09537,18.2,1001.43475,0.1,83.72352,0.0 +2024-08-22 12:00:00,6.242595,9.81835,305.21768,303.36636,17.95,1002.0226,0.0,84.77657,0.0 +2024-08-22 13:00:00,6.1326995,9.638464,294.05734,292.5742,17.9,1002.2196,0.1,85.86556,0.0 +2024-08-22 14:00:00,6.109828,9.585927,291.10492,290.13638,18.0,1002.1233,0.1,84.23976,0.0 +2024-08-22 15:00:00,5.4571056,8.766414,283.78162,281.1817,17.5,1002.3072,0.0,85.549675,0.0 +2024-08-22 16:00:00,4.341659,7.2249565,277.9434,274.76355,17.4,1002.4035,0.1,86.64666,0.0 +2024-08-22 17:00:00,3.7643058,6.6940274,286.9909,283.82867,16.75,1002.38464,0.2,90.286705,0.0 +2024-08-22 18:00:00,3.6055512,6.4195013,289.44012,288.1528,16.45,1002.1778,0.3,92.9151,0.0 +2024-08-22 19:00:00,3.6055512,6.177378,303.6901,299.0545,16.5,1002.07996,0.3,92.32327,0.0 +2024-08-22 20:00:00,3.7802117,6.242595,307.47626,305.21768,16.55,1002.1806,0.1,92.326126,0.0 +2024-08-22 21:00:00,3.753665,6.438167,318.23978,313.11182,16.2,1002.3689,0.1,93.20104,0.0 +2024-08-22 22:00:00,3.5608988,6.438167,321.8427,316.88815,15.95,1002.95667,0.2,91.9947,0.0 +2024-08-22 23:00:00,3.9824615,6.963476,308.8845,305.0595,16.1,1003.5558,0.1,89.36976,1.0 +2024-08-23 00:00:00,4.20119,6.4899926,308.23386,303.6901,17.45,1003.9915,0.0,85.26975,1.0 +2024-08-23 01:00:00,6.9462223,9.8234415,292.8737,292.12637,19.2,1004.1408,0.0,76.16208,1.0 +2024-08-23 02:00:00,7.1589108,9.666437,294.77512,294.44394,19.95,1004.5589,0.0,69.25896,1.0 +2024-08-23 03:00:00,8.062258,10.7912,299.74478,299.4155,20.15,1004.4654,0.1,68.62884,1.0 +2024-08-23 04:00:00,7.5,10.080179,306.86996,306.52896,20.55,1004.0801,0.0,67.82636,1.0 +2024-08-23 05:00:00,9.097252,12.258874,303.34073,303.6901,20.4,1003.778,0.2,66.061104,1.0 +2024-08-23 06:00:00,8.881441,12.020815,305.83774,306.20267,20.2,1003.5741,0.2,69.98264,1.0 +2024-08-23 07:00:00,8.635392,11.723907,298.34558,298.53235,20.2,1003.37573,0.1,67.099625,1.0 +2024-08-23 08:00:00,8.335466,11.510429,300.25635,299.68304,19.5,1003.55457,0.1,70.53092,1.0 +2024-08-23 09:00:00,8.143709,11.503912,294.67685,294.1142,18.1,1003.9112,0.3,78.74256,1.0 +2024-08-23 10:00:00,7.045566,10.515226,304.59235,302.17862,17.1,1004.17975,0.4,84.958374,1.0 +2024-08-23 11:00:00,5.860034,9.044335,306.67444,305.0959,16.75,1004.4672,0.3,87.708916,0.0 +2024-08-23 12:00:00,5.8523498,8.988882,303.147,302.27563,16.5,1005.15405,0.5,87.970345,0.0 +2024-08-23 13:00:00,5.3823786,8.514693,305.1665,303.50345,16.5,1004.85657,1.4,89.11308,0.0 +2024-08-23 14:00:00,5.5758405,8.935883,302.55,301.73346,16.1,1004.845,0.4,90.53205,0.0 +2024-08-23 15:00:00,5.59017,8.861715,312.82523,310.8817,16.25,1004.651,0.1,89.670456,0.0 +2024-08-23 16:00:00,5.8249464,9.211407,304.50858,302.1372,16.2,1004.7489,0.2,88.22919,0.0 +2024-08-23 17:00:00,6.9999995,10.560303,306.86996,307.30402,16.1,1004.3491,0.9,88.79356,0.0 +2024-08-23 18:00:00,6.466065,10.04241,309.3517,308.1252,16.3,1003.85925,0.2,87.10315,0.0 +2024-08-23 19:00:00,7.291776,11.1892805,295.15927,294.2744,17.1,1003.7831,0.1,80.40735,0.0 +2024-08-23 20:00:00,7.8294315,12.001667,294.92844,293.5747,17.05,1003.4843,0.1,76.313484,0.0 +2024-08-23 21:00:00,7.9924965,12.366487,301.7014,300.0896,17.25,1003.49,0.1,78.618645,0.0 +2024-08-23 22:00:00,9.304837,14.106027,290.77234,289.46265,17.6,1003.9959,0.0,68.34201,0.0 +2024-08-23 23:00:00,9.687621,14.524806,277.7118,277.51636,17.15,1005.173,0.3,72.906395,1.0 +2024-08-24 00:00:00,8.800569,13.101527,270.65103,270.87466,16.85,1006.2553,1.2,81.161766,1.0 +2024-08-24 01:00:00,8.249242,11.994164,263.7366,262.81583,18.15,1007.681,0.0,72.609116,1.0 +2024-08-24 02:00:00,9.590098,13.159407,258.57294,258.6047,19.0,1008.39954,0.1,63.637608,1.0 +2024-08-24 03:00:00,9.080197,12.237647,258.56635,258.6901,19.4,1008.6094,0.0,61.460907,1.0 +2024-08-24 04:00:00,8.811923,11.6559,260.85843,260.61856,19.65,1009.01337,0.0,59.91747,1.0 +2024-08-24 05:00:00,8.532877,11.377171,259.8754,259.8754,19.5,1008.8108,0.0,60.478294,1.0 +2024-08-24 06:00:00,8.374366,11.1400175,258.28757,258.08487,19.35,1008.7072,0.0,58.863033,1.0 +2024-08-24 07:00:00,7.615773,9.968951,256.32867,256.66074,18.9,1008.7934,0.0,61.548393,1.0 +2024-08-24 08:00:00,7.093659,9.563472,248.4985,248.53227,18.5,1009.27795,0.1,63.73649,1.0 +2024-08-24 09:00:00,6.2649817,9.128527,245.48038,245.40022,18.05,1009.3641,0.0,64.913994,1.0 +2024-08-24 10:00:00,6.074537,9.349332,237.09476,237.66985,16.75,1010.02057,0.0,70.00314,1.0 +2024-08-24 11:00:00,4.356604,7.1021123,238.13406,237.65257,17.05,1010.82275,0.0,68.45719,0.0 +2024-08-24 12:00:00,4.4407206,7.5,234.16226,233.13002,16.75,1011.2106,0.0,64.62944,0.0 +2024-08-24 13:00:00,4.3011627,6.963476,234.46223,234.94049,17.25,1012.21686,0.0,61.98915,0.0 +2024-08-24 14:00:00,4.560702,7.5604234,232.12495,232.52374,16.7,1012.3001,0.0,61.24056,0.0 +2024-08-24 15:00:00,3.9824615,6.5436993,231.1155,231.20343,17.0,1012.4079,0.0,59.683075,0.0 +2024-08-24 16:00:00,3.2202482,5.72014,233.84172,233.53067,16.95,1012.3074,0.0,58.277847,0.0 +2024-08-24 17:00:00,3.3600597,6.0,233.47105,233.13002,16.65,1012.2985,0.0,59.19726,0.0 +2024-08-24 18:00:00,2.86007,5.2801514,233.53067,232.69597,16.7,1012.2009,0.0,60.62485,0.0 +2024-08-24 19:00:00,2.2671568,5.0328918,228.57643,229.02835,15.3,1012.0605,0.0,65.62527,0.0 +2024-08-24 20:00:00,2.6907248,5.3037724,221.98714,224.23619,16.35,1012.1908,0.0,62.198273,0.0 +2024-08-24 21:00:00,2.5,5.0447993,216.86998,219.3693,16.15,1012.4823,0.0,63.421654,0.0 +2024-08-24 22:00:00,2.1954498,4.8259716,210.0685,214.0194,15.8,1013.0671,0.0,65.07355,0.0 +2024-08-24 23:00:00,1.6155494,3.758989,201.80147,208.61037,16.05,1013.47107,0.0,68.941414,1.0 +2024-08-25 00:00:00,1.6278821,2.6000001,190.6196,202.6199,17.25,1014.101,0.0,69.63885,1.0 +2024-08-25 01:00:00,1.8,2.209072,90.0,95.19434,17.4,1014.89886,0.0,70.82539,1.0 +2024-08-25 02:00:00,1.360147,1.7262677,162.89719,169.99208,18.15,1015.41644,0.0,65.366486,1.0 +2024-08-25 03:00:00,1.603122,2.0099752,183.57626,185.7105,18.5,1015.32745,0.0,62.89861,1.0 +2024-08-25 04:00:00,1.5297059,1.811077,191.30989,186.3401,18.9,1014.84296,0.0,60.93995,1.0 +2024-08-25 05:00:00,1.4866068,1.7720045,199.65392,196.38962,19.2,1014.15735,0.0,59.61258,1.0 +2024-08-25 06:00:00,2.7802877,3.2802439,217.6943,217.56866,19.2,1013.6615,0.0,59.81047,1.0 +2024-08-25 07:00:00,4.060788,4.920366,217.99878,217.56866,18.65,1013.64594,0.0,62.724705,1.0 +2024-08-25 08:00:00,3.3615472,4.2544093,202.751,203.55228,18.15,1013.6313,0.0,64.08177,1.0 +2024-08-25 09:00:00,2.9068885,4.031129,183.94511,187.12492,17.85,1013.9202,0.0,65.95346,1.0 +2024-08-25 10:00:00,2.2,4.604346,180.0,182.4895,16.25,1014.17096,0.0,73.95742,1.0 +2024-08-25 11:00:00,1.9924859,4.509989,162.47433,176.186,15.1,1014.2363,0.0,78.04184,0.0 +2024-08-25 12:00:00,1.8384775,4.016217,135.0001,161.11382,14.0,1014.10443,0.0,82.68225,0.0 +2024-08-25 13:00:00,1.6552945,3.1384711,115.01687,149.34941,13.05,1014.2745,0.0,83.39602,0.0 +2024-08-25 14:00:00,1.9104973,3.4655447,96.00892,136.16905,12.7,1014.4622,0.0,83.075806,0.0 +2024-08-25 15:00:00,1.9104973,3.748333,96.00892,136.08084,12.2,1014.1498,0.0,84.70411,0.0 +2024-08-25 16:00:00,2.302173,4.060788,92.4895,127.99879,12.05,1013.947,0.0,84.687485,0.0 +2024-08-25 17:00:00,2.7073975,4.7423625,85.76369,114.94388,11.95,1013.349,0.0,84.39232,0.0 +2024-08-25 18:00:00,2.942788,5.1971145,80.21766,101.09368,11.65,1012.84424,0.0,85.21481,0.0 +2024-08-25 19:00:00,2.8231187,5.115662,67.06787,85.51548,11.15,1012.43243,0.0,86.90261,0.0 +2024-08-25 20:00:00,3.5846896,6.676077,67.01126,73.46509,11.1,1011.7368,0.0,86.605225,0.0 +2024-08-25 21:00:00,3.5468295,7.068239,68.498505,64.8852,11.05,1011.0411,0.0,87.186485,0.0 +2024-08-25 22:00:00,3.757659,7.392564,64.79892,59.96681,11.0,1011.0399,0.0,87.47626,0.0 +2024-08-25 23:00:00,3.8948684,7.3817344,60.802605,54.37201,11.15,1011.4409,0.0,86.02785,1.0 +2024-08-26 00:00:00,4.743417,8.065978,55.304783,47.00956,13.1,1011.4996,0.0,81.20228,1.0 +2024-08-26 01:00:00,2.418677,6.6468034,60.255207,44.999897,16.4,1012.39044,0.0,78.23694,1.0 +2024-08-26 02:00:00,1.2041595,1.9209373,41.63345,38.65983,18.85,1012.5608,0.0,70.86745,1.0 +2024-08-26 03:00:00,1.118034,1.3601471,296.56497,323.97253,20.1,1012.0013,0.0,66.64469,1.0 +2024-08-26 04:00:00,2.8792362,3.0805843,249.67677,256.86597,20.25,1011.31146,0.0,68.64867,1.0 +2024-08-26 05:00:00,3.940812,4.770744,234.29321,236.97612,19.4,1010.692,0.0,69.151115,1.0 +2024-08-26 06:00:00,3.8013155,4.7423625,243.43501,245.05612,19.35,1010.294,0.0,66.92398,1.0 +2024-08-26 07:00:00,3.6235344,4.5188494,242.02061,245.13632,19.2,1009.8929,0.0,67.77277,1.0 +2024-08-26 08:00:00,2.7856774,3.4785054,248.96242,251.56496,18.75,1009.5827,0.0,68.12576,1.0 +2024-08-26 09:00:00,2.7892652,3.710795,255.4655,255.96373,18.2,1009.7652,0.0,71.91051,1.0 +2024-08-26 10:00:00,2.376973,4.846648,247.75093,248.19853,16.7,1010.3167,0.0,81.40661,1.0 +2024-08-26 11:00:00,2.9154758,5.8180757,247.8336,245.63756,16.35,1010.9016,0.0,82.698204,0.0 +2024-08-26 12:00:00,3.6769552,6.6850576,247.61981,248.03938,16.5,1011.5008,0.0,80.58828,0.0 +2024-08-26 13:00:00,3.7696154,6.5551505,248.19853,248.52315,16.8,1012.1046,0.0,73.56701,0.0 +2024-08-26 14:00:00,3.5171013,6.306346,255.17348,255.30263,17.2,1012.11633,0.0,68.71443,0.0 +2024-08-26 15:00:00,4.3011627,7.2732387,252.40749,251.56496,17.55,1011.72986,0.0,69.01174,0.0 +2024-08-26 16:00:00,4.792703,7.970571,246.64441,246.32945,17.35,1011.4264,0.0,71.99029,0.0 +2024-08-26 17:00:00,4.560702,7.18401,254.74483,253.83543,18.05,1011.34753,0.0,66.21436,0.0 +2024-08-26 18:00:00,4.4777226,7.1175838,246.29735,245.95578,17.95,1011.0471,0.0,68.864235,0.0 +2024-08-26 19:00:00,4.368066,7.088018,254.05453,253.61038,17.8,1010.84436,0.0,68.60803,0.0 +2024-08-26 20:00:00,3.3015149,6.519202,268.26434,265.60138,16.5,1010.5091,0.0,72.78984,0.0 +2024-08-26 21:00:00,3.1400635,6.530697,260.83774,258.51804,16.35,1010.60406,0.0,70.625374,0.0 +2024-08-26 22:00:00,3.2984846,6.113101,255.96373,254.82703,17.5,1011.0341,0.0,69.68774,0.0 +2024-08-26 23:00:00,3.6878178,6.5734315,257.4712,256.8094,17.3,1011.32587,0.0,73.89636,1.0 +2024-08-27 00:00:00,4.031129,6.264982,262.8751,261.74066,18.2,1011.74866,0.0,74.051674,1.0 +2024-08-27 01:00:00,4.8259716,6.537584,264.05322,263.85345,19.8,1012.2906,0.0,66.582184,1.0 +2024-08-27 02:00:00,5.5785303,7.324616,255.4655,255.774,20.35,1012.5045,0.0,62.901886,1.0 +2024-08-27 03:00:00,5.2554736,6.741662,248.80588,249.14546,20.55,1012.411,0.0,62.13047,1.0 +2024-08-27 04:00:00,4.964876,6.3245554,251.20001,251.56496,20.4,1012.2081,0.1,65.633514,1.0 +2024-08-27 05:00:00,4.876474,6.2361846,254.53873,254.18074,20.6,1011.8172,0.1,66.964874,1.0 +2024-08-27 06:00:00,4.570558,5.80517,259.91946,259.07724,20.75,1011.3257,0.0,65.92091,1.0 +2024-08-27 07:00:00,4.1593266,5.375872,260.31128,260.36252,20.25,1011.014,0.0,67.327866,1.0 +2024-08-27 08:00:00,3.905125,5.0447993,256.67545,256.2392,20.15,1011.3086,0.0,68.40701,1.0 +2024-08-27 09:00:00,3.640055,5.0328918,249.07542,249.04414,19.8,1011.39795,0.0,71.50612,1.0 +2024-08-27 10:00:00,2.6925824,4.7010636,238.67136,240.70874,18.8,1011.76575,0.0,78.84384,1.0 +2024-08-27 11:00:00,2.4413111,4.5221677,235.0079,234.90411,18.55,1012.05634,0.0,81.38293,0.0 +2024-08-27 12:00:00,2.5612497,4.7423625,218.65984,222.43619,18.15,1012.4413,0.0,84.52692,0.0 +2024-08-27 13:00:00,3.1144822,5.020956,227.60262,225.80684,17.55,1012.5232,0.1,90.0554,0.0 +2024-08-27 14:00:00,2.7856774,4.588028,201.03758,200.40997,17.4,1012.7171,0.1,92.37429,0.0 +2024-08-27 15:00:00,2.7892652,4.6572523,165.4655,165.06853,17.4,1012.5188,0.0,91.202866,0.0 +2024-08-27 16:00:00,2.3345237,3.9824615,136.73567,141.1155,17.35,1012.2197,0.0,89.75319,0.0 +2024-08-27 17:00:00,1.8,3.49285,90.0,103.24053,16.45,1011.59863,0.0,93.513145,0.0 +2024-08-27 18:00:00,1.6492423,3.5,75.96373,90.0,15.1,1011.1623,0.0,94.359604,0.0 +2024-08-27 19:00:00,2.2135942,4.119466,71.564964,84.4279,14.8,1010.5584,0.0,93.7364,0.0 +2024-08-27 20:00:00,2.4596748,4.7759814,63.435013,70.42679,14.5,1010.3513,0.0,93.41766,0.0 +2024-08-27 21:00:00,2.0124612,4.5617976,63.435013,63.996716,14.15,1010.24164,0.0,93.70566,0.0 +2024-08-27 22:00:00,1.9723083,4.0496917,59.53454,57.094753,13.8,1010.52893,0.0,93.38289,0.0 +2024-08-27 23:00:00,2.5612497,4.4553337,51.34017,45.909298,13.9,1010.7301,0.0,93.082855,1.0 +2024-08-28 00:00:00,3.2649655,4.5803933,40.030197,36.11944,15.15,1011.2631,0.0,91.64897,1.0 +2024-08-28 01:00:00,2.4041631,3.7735925,44.999897,32.005356,17.8,1011.73694,0.0,90.361115,1.0 +2024-08-28 02:00:00,1.6492423,2.184033,14.036275,15.945477,19.9,1011.79755,0.0,74.82045,1.0 +2024-08-28 03:00:00,1.56205,1.9209373,309.8055,321.34018,20.8,1010.8311,0.1,70.32298,1.0 +2024-08-28 04:00:00,2.720294,3.0594118,252.89719,258.6901,20.25,1010.2205,0.0,78.05164,1.0 +2024-08-28 05:00:00,2.8301945,3.3120992,237.99466,241.11351,20.15,1009.2259,0.0,80.30354,1.0 +2024-08-28 06:00:00,2.3430748,2.6870058,219.80553,224.9999,20.05,1008.0329,0.0,78.52112,1.0 +2024-08-28 07:00:00,2.1540658,2.5632012,248.19853,249.44388,20.65,1007.3557,0.0,74.23057,1.0 +2024-08-28 08:00:00,2.8160255,3.4132097,263.88458,264.95764,19.9,1007.1362,0.0,76.51793,1.0 +2024-08-28 09:00:00,3.5,4.6,270.0,270.0,19.3,1007.0197,0.0,80.960815,1.0 +2024-08-28 10:00:00,2.5019991,4.8010416,272.29056,271.19345,18.05,1007.3807,0.0,88.385956,1.0 +2024-08-28 11:00:00,2.6925824,5.481788,291.80148,284.7968,17.5,1007.76154,0.0,89.76441,0.0 +2024-08-28 12:00:00,3.224903,6.1465435,299.74478,291.97455,17.7,1008.06476,0.0,88.92324,0.0 +2024-08-28 13:00:00,3.4,6.332456,298.0724,291.29742,17.85,1007.77167,0.0,90.65289,0.0 +2024-08-28 14:00:00,4.0706263,7.1175838,297.824,294.04422,17.65,1007.56757,0.0,92.094826,0.0 +2024-08-28 15:00:00,4.846648,7.8771825,291.80145,290.04532,17.7,1007.27136,0.1,92.68547,0.0 +2024-08-28 16:00:00,5.2810984,8.381527,288.77814,287.3541,17.85,1006.9783,0.3,92.399605,0.0 +2024-08-28 17:00:00,5.8549128,9.178781,277.8532,277.51205,18.2,1006.49255,0.1,87.55721,0.0 +2024-08-28 18:00:00,6.1,9.552486,280.3888,280.25113,18.75,1006.31,0.0,76.33632,0.0 +2024-08-28 19:00:00,6.2968245,9.831073,280.06064,279.36642,19.0,1005.82104,0.0,72.29086,0.0 +2024-08-28 20:00:00,6.5490456,10.071743,277.01642,276.84268,19.1,1005.92303,0.0,72.30894,0.0 +2024-08-28 21:00:00,5.6044626,8.829496,285.52417,283.0919,18.9,1006.3141,0.0,77.10215,0.0 +2024-08-28 22:00:00,4.9658837,8.338465,295.01685,292.56705,18.65,1006.80304,0.0,78.316154,0.0 +2024-08-28 23:00:00,5.9481087,9.314505,286.60706,284.93146,19.1,1007.41064,0.0,78.131035,1.0 +2024-08-29 00:00:00,6.2393913,9.176056,291.63095,290.40997,19.7,1007.92395,0.0,78.47013,1.0 +2024-08-29 01:00:00,6.484597,9.392017,289.8322,288.62796,20.25,1008.1378,0.0,80.062485,1.0 +2024-08-29 02:00:00,8.475848,11.95408,250.70985,250.95868,18.9,1008.6942,1.3,89.86815,1.0 +2024-08-29 03:00:00,7.247068,9.526804,219.40063,219.0355,18.85,1009.0897,0.1,87.06059,1.0 +2024-08-29 04:00:00,7.1610055,9.440339,215.90982,216.38445,18.9,1009.19006,0.0,81.167755,1.0 +2024-08-29 05:00:00,6.6030297,8.683893,215.13428,215.15425,18.9,1009.09094,0.0,75.86894,1.0 +2024-08-29 06:00:00,6.92026,9.200543,217.36674,217.49272,18.45,1008.6816,0.0,67.176865,1.0 +2024-08-29 07:00:00,5.4405885,7.1610055,216.02747,215.90982,18.35,1008.7775,0.0,62.449104,1.0 +2024-08-29 08:00:00,5.60803,7.3109503,219.93633,220.0062,18.75,1008.8885,0.0,58.52237,1.0 +2024-08-29 09:00:00,5.3009434,7.5802374,215.78906,216.41647,18.1,1009.0681,0.0,63.01691,1.0 +2024-08-29 10:00:00,5.239275,7.7472577,203.6294,203.58704,16.95,1009.4315,0.0,73.1108,1.0 +2024-08-29 11:00:00,4.614109,7.392564,209.8988,210.03319,16.55,1010.01483,0.0,67.22742,0.0 +2024-08-29 12:00:00,4.429447,7.206941,208.30066,209.0545,16.35,1010.8024,0.0,60.95217,0.0 +2024-08-29 13:00:00,3.9812057,6.35059,205.27768,206.1615,16.15,1011.09393,0.0,61.11122,0.0 +2024-08-29 14:00:00,2.3323808,4.802083,210.96368,211.37296,15.3,1011.06885,0.0,62.80166,0.0 +2024-08-29 15:00:00,2.2022715,4.6010866,219.47243,222.35739,13.9,1010.5318,0.0,67.35338,0.0 +2024-08-29 16:00:00,3.6359317,6.4070277,211.50421,214.18617,16.2,1010.40137,0.0,57.69897,0.0 +2024-08-29 17:00:00,3.8832977,6.780118,214.50858,217.208,15.8,1010.19135,0.0,59.191273,0.0 +2024-08-29 18:00:00,3.8948684,6.519202,228.12221,228.73149,16.35,1010.20746,0.0,56.377087,0.0 +2024-08-29 19:00:00,4.675468,7.50733,228.46832,228.23979,16.4,1009.91125,0.0,56.968674,0.0 +2024-08-29 20:00:00,4.750789,7.5166483,220.73201,220.68388,16.45,1010.01196,0.0,56.40242,0.0 +2024-08-29 21:00:00,5.1739736,7.864477,221.08165,221.39143,16.55,1010.4115,0.0,54.35031,0.0 +2024-08-29 22:00:00,4.545327,7.18401,219.64413,218.78438,16.35,1011.00073,0.0,57.15026,0.0 +2024-08-29 23:00:00,4.4407206,7.3600273,215.83774,216.7143,16.0,1011.1887,0.0,60.869404,1.0 +2024-08-30 00:00:00,5.7870545,8.221922,198.12195,198.43504,15.4,1012.1629,0.0,77.316666,1.0 +2024-08-30 01:00:00,5.3712196,7.2498274,204.17911,204.44394,16.75,1012.79724,0.3,68.852234,1.0 +2024-08-30 02:00:00,6.670832,8.640602,203.87529,203.89517,17.75,1012.8265,0.0,59.264244,1.0 +2024-08-30 03:00:00,6.4884515,8.458132,204.5901,204.44394,18.15,1013.13544,0.0,59.559425,1.0 +2024-08-30 04:00:00,5.99333,7.5584393,205.7099,205.88698,18.4,1012.94446,0.0,58.43706,1.0 +2024-08-30 05:00:00,6.053924,7.762087,202.3287,201.93854,18.05,1012.4384,0.0,59.336636,1.0 +2024-08-30 06:00:00,6.040695,7.7162166,199.3349,198.90466,17.8,1012.0344,0.0,61.49759,1.0 +2024-08-30 07:00:00,6.016644,7.788453,195.42223,195.6423,17.5,1011.92664,0.0,61.839874,1.0 +2024-08-30 08:00:00,6.2169123,8.13941,191.12915,190.6196,17.1,1012.0141,0.0,62.58019,1.0 +2024-08-30 09:00:00,5.813777,7.7162166,183.94511,183.71521,16.55,1012.19653,0.0,63.08689,1.0 +2024-08-30 10:00:00,4.501111,7.200694,178.727,179.2043,15.6,1012.56525,0.0,66.57998,1.0 +2024-08-30 11:00:00,3.765634,6.6753273,169.28693,171.38443,14.9,1012.9412,0.0,68.47911,0.0 +2024-08-30 12:00:00,3.51141,6.4031243,160.0168,165.52966,14.55,1013.4268,0.0,70.51502,0.0 +2024-08-30 13:00:00,2.7202942,5.5542774,143.97253,156.66594,13.65,1013.7968,0.0,75.76079,0.0 +2024-08-30 14:00:00,2.408319,5.060632,131.63345,150.39565,13.1,1013.8794,0.0,78.26131,0.0 +2024-08-30 15:00:00,2.2825425,4.62277,118.8107,141.14662,12.65,1013.6674,0.0,79.52183,0.0 +2024-08-30 16:00:00,2.6076808,4.5188494,85.60138,114.86367,12.1,1013.4526,0.0,79.174484,0.0 +2024-08-30 17:00:00,2.9410882,4.707441,72.18102,102.26476,11.3,1013.1309,0.0,80.412964,0.0 +2024-08-30 18:00:00,2.6683328,4.4944406,77.00539,110.854546,11.35,1012.93414,0.0,78.79601,0.0 +2024-08-30 19:00:00,2.6683328,4.3324356,77.00539,108.85326,12.0,1012.7556,0.0,74.97363,0.0 +2024-08-30 20:00:00,2.720294,4.1773195,72.89719,101.0409,12.25,1012.2675,0.0,73.24959,0.0 +2024-08-30 21:00:00,2.6925821,4.295346,74.931465,102.09474,11.1,1012.3317,0.0,77.95655,0.0 +2024-08-30 22:00:00,2.84605,4.2426405,71.564964,98.13002,10.85,1012.6215,0.0,78.45285,0.0 +2024-08-30 23:00:00,2.7730849,3.8052595,64.35905,86.98728,10.3,1012.8033,0.0,81.10193,1.0 +2024-08-31 00:00:00,2.7892652,3.5128336,75.46551,94.89901,12.45,1013.16565,0.0,77.374275,1.0 +2024-08-31 01:00:00,2.2,3.0149627,90.0,95.7105,15.35,1014.0454,0.0,69.49628,1.0 +2024-08-31 02:00:00,2.1633308,2.6627054,146.3099,145.71307,16.6,1013.9831,0.0,67.237816,1.0 +2024-08-31 03:00:00,2.3086793,2.828427,175.03035,171.86998,17.4,1014.00635,0.0,66.29597,1.0 +2024-08-31 04:00:00,3.324154,4.119466,186.91113,185.5721,17.8,1013.522,0.1,63.79192,1.0 +2024-08-31 05:00:00,3.8327537,4.924429,195.12405,192.90741,17.95,1012.73303,0.1,62.15046,1.0 +2024-08-31 06:00:00,3.9560082,4.9335585,200.72563,197.70052,18.35,1011.85187,0.0,57.648014,1.0 +2024-08-31 07:00:00,3.8078866,4.7169905,203.19861,201.12479,18.25,1011.65076,0.0,61.193592,1.0 +2024-08-31 08:00:00,4.472136,5.59017,206.56499,206.56499,17.75,1011.53723,0.0,65.280106,1.0 +2024-08-31 09:00:00,4.9729266,6.596969,195.15411,194.03627,16.5,1011.6991,0.0,76.97976,1.0 +2024-08-31 10:00:00,4.101219,6.4031243,181.39716,181.78987,16.0,1012.18036,0.0,77.409454,1.0 +2024-08-31 11:00:00,3.710795,6.258594,165.96373,167.074,15.05,1012.4498,0.0,82.26762,0.0 +2024-08-31 12:00:00,2.6400757,4.9739323,142.69597,149.82657,14.8,1012.74,0.0,83.87779,0.0 +2024-08-31 13:00:00,2.624881,5.147815,139.63554,150.9455,14.15,1012.91895,0.0,81.88252,0.0 +2024-08-31 14:00:00,2.1540658,4.3863425,111.801476,133.1524,13.55,1013.00037,0.0,84.85253,0.0 +2024-08-31 15:00:00,2.0615528,4.2426405,104.03627,135.0001,12.7,1012.7766,0.0,87.63209,0.0 +2024-08-31 16:00:00,1.746425,3.7443287,103.24053,145.88548,12.05,1012.5589,0.0,87.28046,0.0 +2024-08-31 17:00:00,1.5,3.0232434,90.0,145.78424,11.3,1012.4368,0.0,85.75363,0.0 +2024-08-31 18:00:00,1.9104973,2.9546573,96.00892,156.0375,10.6,1012.019,0.0,85.68049,0.0 +2024-08-31 19:00:00,1.603122,3.2802439,93.57626,142.43134,11.15,1011.7384,0.0,82.88655,0.0 +2024-08-31 20:00:00,2.5317976,3.9357338,80.909805,117.216034,11.2,1011.64075,0.0,81.499054,0.0 +2024-08-31 21:00:00,2.570992,3.8910153,76.50425,115.906456,11.0,1011.93225,0.0,80.920296,0.0 +2024-08-31 22:00:00,2.720294,3.7696154,72.89719,111.801476,11.3,1012.3377,0.0,78.520676,0.0 +2024-08-31 23:00:00,2.8792362,3.8600519,69.67678,106.55715,11.35,1012.4384,0.0,78.79601,1.0 +2024-09-01 00:00:00,3.2572994,4.0261645,72.12121,104.38144,13.6,1013.0019,0.0,74.74013,1.0 +2024-09-01 01:00:00,2.6683328,3.7121422,77.00539,85.364624,16.3,1014.07336,0.0,67.62535,1.0 +2024-09-01 02:00:00,2.9732137,3.6878178,137.72638,139.39879,17.8,1014.2162,0.0,60.681507,1.0 +2024-09-01 03:00:00,3.6674242,4.652956,154.1337,151.78275,18.35,1014.3312,0.0,58.22977,1.0 +2024-09-01 04:00:00,3.6249137,4.5177426,155.55606,152.30061,18.85,1013.9492,0.0,57.77131,1.0 +2024-09-01 05:00:00,3.7643058,4.661545,163.0091,157.28555,19.4,1012.9731,0.0,57.141586,1.0 +2024-09-01 06:00:00,4.2579336,5.2630787,170.53775,165.69969,19.85,1012.19257,0.0,57.443005,1.0 +2024-09-01 07:00:00,4.7675986,5.9665737,170.34018,166.42955,19.7,1011.4943,0.0,60.127407,1.0 +2024-09-01 08:00:00,5.5,7.106335,180.0,177.58054,18.95,1011.3735,0.0,63.000187,1.0 +2024-09-01 09:00:00,5.7008767,7.7103825,178.99493,177.02634,17.95,1011.34467,0.0,66.85223,1.0 +2024-09-01 10:00:00,5.1923018,8.296988,164.3577,164.62369,16.65,1011.8027,0.0,72.57691,1.0 +2024-09-01 11:00:00,4.3382025,7.7878113,154.02567,155.73871,15.7,1012.0726,0.0,76.34809,0.0 +2024-09-01 12:00:00,4.0496917,7.5591,147.09476,152.41806,15.05,1012.7473,0.0,77.77619,0.0 +2024-09-01 13:00:00,3.3301651,7.029225,131.34769,140.19447,13.9,1012.9116,0.0,82.94471,0.0 +2024-09-01 14:00:00,3.1906114,6.8593006,122.1957,134.40942,13.3,1013.0922,0.0,85.39077,0.0 +2024-09-01 15:00:00,3.0463092,6.5802736,113.19862,126.34755,12.65,1013.0725,0.0,87.62755,0.0 +2024-09-01 16:00:00,3.008322,6.5299315,105.42222,117.34979,12.2,1012.9599,0.0,88.173325,0.0 +2024-09-01 17:00:00,3.1780496,6.868042,102.72436,106.06006,11.8,1012.2539,0.0,88.13831,0.0 +2024-09-01 18:00:00,3.49285,7.6295476,103.24053,100.57348,11.7,1011.3583,0.0,86.373604,0.0 +2024-09-01 19:00:00,3.981206,8.372574,101.59215,97.54933,11.8,1010.6674,0.0,83.80922,0.0 +2024-09-01 20:00:00,4.341659,8.902246,97.94338,91.2873,11.9,1010.1745,0.0,81.86692,0.0 +2024-09-01 21:00:00,4.4,9.254189,90.0,83.796646,12.0,1010.2768,0.0,79.96738,0.0 +2024-09-01 22:00:00,4.7518415,9.871676,81.528946,76.52683,12.3,1010.4839,0.0,76.82847,0.0 +2024-09-01 23:00:00,5.6320515,10.911004,73.49557,70.73465,12.85,1010.50037,0.0,74.10757,1.0 +2024-09-02 00:00:00,6.706713,11.607756,69.943825,67.19026,14.85,1010.6592,0.0,68.46893,1.0 +2024-09-02 01:00:00,6.2297673,10.454664,71.27412,68.09677,17.6,1010.3428,0.0,65.46451,1.0 +2024-09-02 02:00:00,6.041523,8.234683,65.55606,65.61364,20.65,1009.73596,0.0,56.697437,1.0 +2024-09-02 03:00:00,5.189412,7.6059184,64.91644,61.750362,23.35,1009.2167,0.0,48.889362,1.0 +2024-09-02 04:00:00,4.661545,6.7201195,54.605125,53.471054,25.7,1008.48804,0.0,42.197422,1.0 +2024-09-02 05:00:00,1.4142135,2.505993,8.130019,28.610369,26.6,1007.7189,0.0,39.356594,1.0 +2024-09-02 06:00:00,3.1827662,3.1827662,223.72705,223.72705,24.9,1007.17645,0.0,63.10395,1.0 +2024-09-02 07:00:00,4.614109,6.0373836,209.8988,206.56499,22.8,1006.8209,0.0,73.65875,1.0 +2024-09-02 08:00:00,3.4014702,4.9396358,204.30453,201.37068,21.85,1006.79443,0.0,73.72885,1.0 +2024-09-02 09:00:00,3.0675724,5.0447993,199.0257,193.7608,20.9,1007.16437,0.0,74.50999,1.0 +2024-09-02 10:00:00,1.7117243,4.7095647,186.70975,183.65215,18.55,1007.59357,0.0,83.49603,1.0 +2024-09-02 11:00:00,2.5495098,3.7,168.69011,180.0,16.75,1008.23553,0.0,87.14496,0.0 +2024-09-02 12:00:00,1.8027756,2.6925821,109.440125,164.93146,17.2,1008.84375,0.0,83.338646,0.0 +2024-09-02 13:00:00,1.3000001,1.8027756,67.3801,146.3099,16.15,1008.91235,0.0,84.58068,0.0 +2024-09-02 14:00:00,1.5264337,1.3416408,58.392544,116.56499,14.25,1008.6583,0.0,88.93221,0.0 +2024-09-02 15:00:00,1.2041595,0.60827625,48.366554,80.53775,14.05,1008.35474,0.0,88.0431,0.0 +2024-09-02 16:00:00,0.7211103,0.8062258,33.6901,262.8751,14.9,1007.884,0.0,81.17095,0.0 +2024-09-02 17:00:00,1.8027756,2.6,326.3099,270.0,15.5,1007.90173,0.0,76.82257,0.0 +2024-09-02 18:00:00,2.8635643,4.2579336,282.09473,260.53775,13.9,1007.35876,0.0,91.570854,0.0 +2024-09-02 19:00:00,2.3259406,3.238827,295.46332,261.11942,15.2,1007.0003,0.0,92.548294,0.0 +2024-09-02 20:00:00,2.8653097,4.1617303,240.75127,234.78232,14.45,1006.6808,0.0,95.25645,0.0 +2024-09-02 21:00:00,2.2022715,4.967897,219.47243,220.10085,16.2,1007.12885,0.0,90.24742,0.0 +2024-09-02 22:00:00,2.2022717,4.317406,177.39749,193.39252,15.1,1007.7907,0.0,90.75668,0.0 +2024-09-02 23:00:00,2.1260293,3.2015622,131.18582,165.52966,14.3,1008.1637,0.0,92.80035,1.0 +2024-09-03 00:00:00,1.8027756,2.624881,109.440125,139.63554,17.45,1008.65247,0.0,89.47401,1.0 +2024-09-03 01:00:00,3.0805843,3.8327537,166.86597,164.87595,19.2,1009.5954,0.1,78.14585,1.0 +2024-09-03 02:00:00,2.828427,3.4132097,188.13002,185.04236,20.0,1009.71735,0.0,73.173706,1.0 +2024-09-03 03:00:00,2.7784889,3.176476,210.25635,208.1785,20.6,1009.5361,0.0,70.28501,1.0 +2024-09-03 04:00:00,3.3970575,4.0360875,222.61401,221.98714,20.75,1009.2429,0.0,70.08791,1.0 +2024-09-03 05:00:00,3.9623227,4.7423625,222.95459,222.43619,20.55,1008.74146,0.0,70.04969,1.0 +2024-09-03 06:00:00,4.5,5.5,216.86998,216.86998,20.15,1008.03577,0.0,69.97306,1.0 +2024-09-03 07:00:00,4.2720017,5.269725,212.57405,213.38853,19.85,1007.5313,0.0,69.239395,1.0 +2024-09-03 08:00:00,4.304649,5.3851647,210.73541,211.32863,19.4,1007.41925,0.0,69.82863,1.0 +2024-09-03 09:00:00,3.8587563,5.0249376,211.21834,211.15924,18.8,1007.5013,0.0,70.85804,1.0 +2024-09-03 10:00:00,2.8178005,4.8764744,207.47435,208.14151,17.75,1007.8679,0.0,74.45873,1.0 +2024-09-03 11:00:00,2.3259406,4.837354,205.4633,209.7448,16.85,1008.13947,0.0,77.54001,0.0 +2024-09-03 12:00:00,2.3259406,5.147815,205.4633,209.0545,16.5,1008.7241,0.0,78.50845,0.0 +2024-09-03 13:00:00,2.4698176,5.220153,211.75943,216.43095,16.05,1008.9095,0.0,79.21839,0.0 +2024-09-03 14:00:00,2.3600848,5.185557,216.38445,219.5226,15.9,1008.50836,0.0,79.71869,0.0 +2024-09-03 15:00:00,2.2627418,5.0249376,224.9999,227.41954,15.7,1008.20514,0.0,79.95292,0.0 +2024-09-03 16:00:00,2.2203603,5.021952,234.16226,234.7275,15.8,1007.81134,0.0,78.922516,0.0 +2024-09-03 17:00:00,2.2825425,4.9648767,241.1893,242.40279,15.95,1007.4191,0.0,78.68535,0.0 +2024-09-03 18:00:00,2.404163,5.2810984,253.0724,251.22186,16.0,1006.9246,0.0,78.43455,0.0 +2024-09-03 19:00:00,3.224903,6.280127,262.8751,260.83774,16.35,1006.6374,0.0,76.45211,0.0 +2024-09-03 20:00:00,4.317406,7.3979726,256.60748,256.71512,16.65,1006.4477,0.0,74.761215,0.0 +2024-09-03 21:00:00,4.6572523,7.472616,255.06853,254.47583,16.15,1006.53235,0.1,84.03196,0.0 +2024-09-03 22:00:00,3.3,6.203225,270.0,268.15244,16.05,1006.5295,0.0,82.66163,0.0 +2024-09-03 23:00:00,3.7013512,6.600757,271.54813,270.86804,16.3,1006.73505,0.0,80.0362,1.0 +2024-09-04 00:00:00,4.509989,6.4070277,273.814,272.68372,17.85,1007.07745,0.0,74.23322,1.0 +2024-09-04 01:00:00,5.124451,6.5802736,287.0206,286.7827,19.0,1007.01117,0.0,69.978775,1.0 +2024-09-04 02:00:00,5.885576,7.6118326,279.78235,279.8335,19.55,1006.8286,0.1,66.74739,1.0 +2024-09-04 03:00:00,6.0827627,7.891768,279.46225,278.74606,19.45,1006.72656,0.3,68.26681,1.0 +2024-09-04 04:00:00,6.432729,8.29759,281.65927,282.5288,19.45,1006.13153,0.8,68.71259,1.0 +2024-09-04 05:00:00,6.902898,8.908984,271.66025,272.5733,19.3,1005.6312,0.1,70.264435,1.0 +2024-09-04 06:00:00,6.419502,8.229823,274.46707,274.87918,18.9,1004.9256,0.0,72.27278,1.0 +2024-09-04 07:00:00,6.1073728,7.91012,267.1845,267.10147,18.55,1004.42,0.1,73.155106,1.0 +2024-09-04 08:00:00,6.1188235,8.060397,258.6901,258.5507,17.9,1004.203,0.1,74.971176,1.0 +2024-09-04 09:00:00,5.4708314,7.2732387,251.89613,251.56496,17.3,1004.08655,0.1,77.10443,1.0 +2024-09-04 10:00:00,4.588028,6.9641943,249.59003,248.96242,16.65,1004.1668,0.2,78.78771,1.0 +2024-09-04 11:00:00,4.3081317,6.9857,248.19853,246.3706,16.4,1004.5563,0.1,78.23694,0.0 +2024-09-04 12:00:00,3.8897302,6.6730804,252.03076,250.75038,16.1,1004.94415,0.0,79.22554,0.0 +2024-09-04 13:00:00,4.9497476,7.9075913,261.87,260.53775,16.3,1004.7518,0.0,75.94278,0.0 +2024-09-04 14:00:00,5.2773094,8.158431,260.18076,258.6901,16.05,1004.54614,0.0,78.18466,0.0 +2024-09-04 15:00:00,5.731492,8.956003,263.9911,263.58926,15.1,1004.2209,0.1,80.66375,0.0 +2024-09-04 16:00:00,4.8507733,7.641989,278.29706,276.0089,15.25,1003.9279,0.2,83.92942,0.0 +2024-09-04 17:00:00,5.4451814,8.736704,277.38596,275.25372,15.8,1003.6464,0.1,75.611,0.0 +2024-09-04 18:00:00,7.3979726,11.132385,256.71512,255.96373,14.8,1003.8154,0.0,76.71165,0.0 +2024-09-04 19:00:00,7.8185678,11.754573,249.01503,248.0175,15.25,1003.53125,0.1,75.52018,0.0 +2024-09-04 20:00:00,7.3389373,11.072488,250.0835,249.92838,15.65,1003.4437,0.0,68.4017,0.0 +2024-09-04 21:00:00,7.9120164,11.997083,249.27435,248.99669,15.1,1003.7251,0.5,72.779015,0.0 +2024-09-04 22:00:00,8.39345,12.6087265,248.32529,248.11415,14.8,1004.41046,0.1,65.29506,0.0 +2024-09-04 23:00:00,7.7878113,11.720069,245.73871,244.74687,13.4,1005.3607,0.9,82.05935,1.0 +2024-09-05 00:00:00,7.6850505,11.013628,237.75755,237.60863,13.8,1006.26514,0.3,79.155846,1.0 +2024-09-05 01:00:00,8.746428,12.296748,239.0363,238.63675,14.75,1006.88794,0.1,71.267914,1.0 +2024-09-05 02:00:00,8.881441,12.020815,234.16226,233.79732,15.4,1007.7997,0.2,70.20761,1.0 +2024-09-05 03:00:00,9.840732,13.060245,232.43134,232.77905,15.85,1008.40765,0.1,54.728863,1.0 +2024-09-05 04:00:00,9.263369,12.233151,225.43732,225.33116,16.0,1008.61035,0.0,51.12411,1.0 +2024-09-05 05:00:00,8.8729925,11.638728,219.97087,220.12065,16.0,1008.7096,0.0,49.90042,1.0 +2024-09-05 06:00:00,8.160882,10.7415085,216.02747,215.90982,15.8,1008.803,0.0,51.247097,1.0 +2024-09-05 07:00:00,7.5802374,9.964437,210.96368,211.45677,15.4,1009.0888,0.0,52.213955,1.0 +2024-09-05 08:00:00,7.3824115,9.888376,208.30066,208.37915,15.15,1009.6765,0.0,52.692326,1.0 +2024-09-05 09:00:00,7.077429,9.716995,203.30492,203.66315,14.75,1010.0611,0.0,55.201096,1.0 +2024-09-05 10:00:00,6.484597,9.679876,199.83221,199.93262,14.2,1011.03656,0.0,56.411293,1.0 +2024-09-05 11:00:00,5.9774575,9.234717,197.52565,197.6502,13.8,1011.81805,0.0,57.49363,0.0 +2024-09-05 12:00:00,5.531727,8.755569,192.5288,193.87755,13.75,1012.8081,0.0,57.680634,0.0 +2024-09-05 13:00:00,4.2426405,7.119691,188.13002,190.52074,13.5,1013.49445,0.0,59.856346,0.0 +2024-09-05 14:00:00,3.306055,6.000833,176.53185,180.95482,13.1,1013.5819,0.0,62.29256,0.0 +2024-09-05 15:00:00,2.5,5.0487623,163.73972,172.03047,12.3,1013.55774,0.0,66.78516,0.0 +2024-09-05 16:00:00,2.376973,5.0635953,157.75093,170.9098,11.9,1013.5458,0.0,69.04024,0.0 +2024-09-05 17:00:00,2.1633308,4.808326,146.3099,163.0724,11.35,1013.62823,0.0,70.61458,0.0 +2024-09-05 18:00:00,1.8601075,4.167733,126.25393,149.74365,10.25,1013.6941,0.0,74.93057,0.0 +2024-09-05 19:00:00,1.9646883,3.7802117,104.743614,127.47626,10.65,1013.607,0.0,72.20653,0.0 +2024-09-05 20:00:00,2.0099752,3.49285,84.2895,113.62939,10.4,1013.79767,0.0,71.41314,0.0 +2024-09-05 21:00:00,2.5632012,3.622154,69.44388,96.340096,11.2,1014.21875,0.0,65.173874,0.0 +2024-09-05 22:00:00,2.9206164,3.6878178,51.952908,77.4712,11.05,1014.80884,0.0,65.82535,0.0 +2024-09-05 23:00:00,3.535534,4.248529,44.999897,63.435013,10.15,1015.5747,0.0,71.11752,1.0 +2024-09-06 00:00:00,3.2526913,4.159327,44.999897,62.818974,12.25,1016.3328,0.0,68.63811,1.0 +2024-09-06 01:00:00,2.7892652,3.522783,75.46551,83.48029,14.8,1017.3015,0.0,60.791344,1.0 +2024-09-06 02:00:00,2.7018511,3.405877,128.991,130.23628,16.35,1017.4466,0.0,55.613155,1.0 +2024-09-06 03:00:00,3.5693135,4.5122056,168.69011,167.19574,17.1,1017.2701,0.0,51.95113,1.0 +2024-09-06 04:00:00,3.0149627,3.7054014,185.7105,183.094,17.3,1016.9785,0.0,51.122837,1.0 +2024-09-06 05:00:00,3.7,4.4922156,198.92474,196.82149,17.6,1016.59045,0.0,49.311653,1.0 +2024-09-06 06:00:00,4.159327,5.189412,207.18103,205.08356,17.05,1016.3762,0.0,52.653255,1.0 +2024-09-06 07:00:00,3.748333,4.6389656,189.21095,187.43132,17.85,1016.1019,0.0,50.92203,1.0 +2024-09-06 08:00:00,3.901282,5.001,178.53123,178.85426,17.05,1016.27704,0.0,55.60287,1.0 +2024-09-06 09:00:00,4.004997,5.2038445,182.86235,182.20255,16.55,1016.4607,0.0,57.78597,1.0 +2024-09-06 10:00:00,3.4014704,5.9076223,181.68465,182.91078,15.3,1017.31616,0.0,63.228962,1.0 +2024-09-06 11:00:00,2.6925821,5.67186,164.93146,170.8699,14.25,1017.9793,0.0,66.9708,0.0 +2024-09-06 12:00:00,2.2627418,4.9193497,135.0001,153.43501,13.35,1018.6463,0.0,70.52095,0.0 +2024-09-06 13:00:00,2.4515302,5.1623635,101.768265,134.21527,12.4,1019.0144,0.0,70.81851,0.0 +2024-09-06 14:00:00,2.4738634,5.4451814,104.03627,135.74397,12.15,1019.2051,0.0,68.85391,0.0 +2024-09-06 15:00:00,3.224903,6.7007465,119.74479,142.27495,12.4,1019.4111,0.0,67.26785,0.0 +2024-09-06 16:00:00,3.0364454,5.9413805,107.241554,133.63614,11.85,1019.09705,0.0,74.69274,0.0 +2024-09-06 17:00:00,3.0413814,5.7801385,99.46225,127.26648,11.4,1019.0833,0.0,80.42683,0.0 +2024-09-06 18:00:00,3.1780496,6.220129,102.72436,126.50153,11.45,1019.184,0.0,80.98124,0.0 +2024-09-06 19:00:00,3.2015622,6.360031,104.47034,126.68982,11.15,1019.0756,0.0,82.3264,0.0 +2024-09-06 20:00:00,3.206244,6.177378,93.57626,119.05451,10.85,1019.06635,0.0,82.56853,0.0 +2024-09-06 21:00:00,3.306055,6.296825,86.531845,110.44964,10.4,1019.0526,0.0,83.929794,0.0 +2024-09-06 22:00:00,3.5014284,6.6730804,88.363464,109.24962,10.15,1019.3423,0.0,84.76298,0.0 +2024-09-06 23:00:00,3.905125,7.1309185,87.064384,104.62092,10.55,1019.7514,0.0,82.53088,1.0 +2024-09-07 00:00:00,4.3,7.5709977,90.0,102.200455,12.75,1020.5123,0.0,78.20842,1.0 +2024-09-07 01:00:00,3.9293766,5.6320515,104.743614,106.50443,15.4,1021.3851,0.0,70.4428,1.0 +2024-09-07 02:00:00,4.248529,5.456189,116.56499,116.09537,17.25,1021.2413,0.0,62.40542,1.0 +2024-09-07 03:00:00,3.7802117,4.661545,127.47626,125.39488,18.5,1020.782,0.0,56.91776,1.0 +2024-09-07 04:00:00,3.5805027,4.482187,144.09018,141.34016,19.6,1020.51636,0.0,51.045208,1.0 +2024-09-07 05:00:00,4.049691,5.0990195,159.77505,154.44008,20.25,1019.64233,0.0,46.6094,1.0 +2024-09-07 06:00:00,5.2153616,6.5924196,175.60138,170.39487,19.9,1018.9383,0.0,48.606285,1.0 +2024-09-07 07:00:00,6.519202,8.4053545,184.39862,182.04536,19.0,1018.81287,0.0,63.847538,1.0 +2024-09-07 08:00:00,6.9,9.102198,180.0,178.74098,18.3,1018.4952,0.0,65.183266,1.0 +2024-09-07 09:00:00,6.9584484,9.602604,172.56868,171.61684,17.55,1018.4734,0.0,66.98996,1.0 +2024-09-07 10:00:00,6.4031243,9.895453,165.52966,165.96373,16.5,1019.1366,0.0,72.54975,1.0 +2024-09-07 11:00:00,6.2297673,10.057833,161.27412,162.64589,15.8,1019.7112,0.0,74.61701,0.0 +2024-09-07 12:00:00,5.727128,9.4541,155.22488,156.96054,15.45,1020.29553,0.0,74.55731,0.0 +2024-09-07 13:00:00,5.420332,9.347192,150.1241,153.98328,14.75,1020.3739,0.0,76.95923,0.0 +2024-09-07 14:00:00,5.2801514,9.180958,142.69597,147.00229,14.3,1020.45953,0.0,76.63194,0.0 +2024-09-07 15:00:00,5.0931325,9.14385,133.4089,138.99101,13.65,1020.24207,0.0,73.006195,0.0 +2024-09-07 16:00:00,4.5,8.63713,126.86999,132.18437,13.0,1020.2223,0.0,70.934166,0.0 +2024-09-07 17:00:00,4.0496917,8.0,122.90524,126.86999,12.3,1020.102,0.0,73.009315,0.0 +2024-09-07 18:00:00,3.9357338,7.889233,117.216034,120.46546,11.7,1019.78625,0.0,76.211235,0.0 +2024-09-07 19:00:00,4.0249224,7.964923,116.56499,118.495544,11.3,1019.2783,0.0,78.520676,0.0 +2024-09-07 20:00:00,4.2953463,8.363014,114.775116,116.2586,10.9,1018.67126,0.0,80.63163,0.0 +2024-09-07 21:00:00,4.531004,8.681589,112.036285,114.49856,10.75,1018.5677,0.0,81.43954,0.0 +2024-09-07 22:00:00,4.6840153,8.823264,106.11349,107.818985,10.6,1018.8602,0.0,81.41964,0.0 +2024-09-07 23:00:00,5.141984,9.314505,103.49575,104.93147,10.85,1019.16547,0.0,79.53225,1.0 +2024-09-08 00:00:00,5.2886667,10.577333,105.3502,105.3502,12.8,1019.4232,0.0,74.09881,1.0 +2024-09-08 01:00:00,4.7801676,6.6940274,105.78082,103.828674,15.4,1019.69934,0.0,67.89349,1.0 +2024-09-08 02:00:00,4.2720017,5.6921,110.55613,108.43504,17.95,1019.3775,0.0,59.910835,1.0 +2024-09-08 03:00:00,4.5188494,5.8872743,114.86367,110.89784,20.05,1018.6448,0.0,50.48266,1.0 +2024-09-08 04:00:00,4.294182,5.4230986,117.75845,112.78245,21.35,1017.49176,0.0,44.753117,1.0 +2024-09-08 05:00:00,3.7215588,4.7423625,120.699646,114.94388,22.35,1016.5283,0.0,40.70247,1.0 +2024-09-08 06:00:00,3.3970575,4.263801,137.38599,129.2894,22.7,1015.34796,0.0,39.57705,1.0 +2024-09-08 07:00:00,4.159327,5.2430906,152.81897,145.09743,22.7,1014.6537,0.0,39.30938,1.0 +2024-09-08 08:00:00,5.5108986,7.28011,168.4862,164.05453,21.8,1014.1323,0.0,45.63888,1.0 +2024-09-08 09:00:00,6.419502,9.108238,175.53293,171.15826,19.75,1013.6773,0.0,62.561153,1.0 +2024-09-08 10:00:00,7.170077,11.081967,171.983,169.60272,17.8,1013.81946,0.0,69.28899,1.0 +2024-09-08 11:00:00,6.706713,10.689247,159.94382,160.88693,16.9,1013.9917,0.0,71.199196,0.0 +2024-09-08 12:00:00,6.369458,10.381715,157.86446,159.12091,16.75,1014.0864,0.0,76.51582,0.0 +2024-09-08 13:00:00,5.269725,9.141663,146.61147,149.78876,15.95,1014.16235,0.0,83.19099,0.0 +2024-09-08 14:00:00,4.313931,8.028075,135.9391,140.55998,15.45,1013.7507,0.0,85.33631,0.0 +2024-09-08 15:00:00,3.3301651,6.862215,131.34769,133.22856,14.95,1013.3395,0.0,81.17754,0.0 +2024-09-08 16:00:00,3.3286633,7.1281133,122.73522,124.135994,14.6,1012.6349,0.0,70.05166,0.0 +2024-09-08 17:00:00,3.3837848,7.206941,124.159744,119.05451,14.55,1011.93945,0.0,63.705692,0.0 +2024-09-08 18:00:00,3.2015622,6.896376,128.65984,119.53869,14.3,1011.33685,0.0,63.432274,0.0 +2024-09-08 19:00:00,2.758623,6.2433968,133.53127,121.908066,13.65,1010.72284,0.0,65.04238,0.0 +2024-09-08 20:00:00,2.4758837,5.8309517,133.36346,120.96369,13.05,1010.40735,0.0,67.17451,0.0 +2024-09-08 21:00:00,2.2022715,5.3851647,129.47243,111.801476,12.7,1010.1985,0.0,67.56254,0.0 +2024-09-08 22:00:00,1.9849433,4.7434163,139.08571,108.43504,12.45,1010.29016,0.0,67.51007,0.0 +2024-09-08 23:00:00,1.9723083,3.9812057,149.53453,115.277695,12.65,1010.4944,0.0,68.25059,1.0 +2024-09-09 00:00:00,2.745906,3.2649655,169.50858,139.9698,14.75,1011.0527,0.0,67.303215,1.0 +2024-09-09 01:00:00,2.8,3.0413814,180.0,170.53775,17.85,1010.9451,0.0,50.403343,1.0 +2024-09-09 02:00:00,2.9614186,3.4481878,168.31065,163.14153,19.7,1010.3042,0.0,48.551716,1.0 +2024-09-09 03:00:00,2.6925821,3.1384711,164.93146,157.52052,21.6,1009.5643,0.0,46.20017,1.0 +2024-09-09 04:00:00,3.4058774,4.004997,183.3664,177.13765,22.55,1008.5994,0.0,47.556545,1.0 +2024-09-09 05:00:00,5.0695167,6.315061,194.85866,190.95403,22.25,1007.7973,0.0,54.006138,1.0 +2024-09-09 06:00:00,5.885576,7.542546,189.78233,186.08844,21.75,1006.7917,0.0,55.31395,1.0 +2024-09-09 07:00:00,5.842089,7.623647,186.88162,184.5139,21.7,1006.4925,0.0,49.752228,1.0 +2024-09-09 08:00:00,6.239391,8.321658,186.4415,184.1346,20.75,1006.6643,0.0,51.350876,1.0 +2024-09-09 09:00:00,7.006426,9.802041,182.45398,181.16911,19.1,1006.9148,0.0,65.355705,1.0 +2024-09-09 10:00:00,6.8264194,10.557462,174.95764,174.0195,17.9,1007.37646,0.0,73.279015,1.0 +2024-09-09 11:00:00,6.9857,11.205802,166.75948,166.5838,17.2,1007.7529,0.0,83.338646,0.0 +2024-09-09 12:00:00,6.9857,11.205802,166.75948,166.5838,16.8,1008.1379,0.0,88.28039,0.0 +2024-09-09 13:00:00,6.6098413,10.632027,162.38733,163.61038,16.2,1009.013,0.0,90.83146,0.0 +2024-09-09 14:00:00,6.705222,10.728001,162.64589,163.7611,16.05,1008.9095,0.0,91.40932,0.0 +2024-09-09 15:00:00,6.1351447,10.119288,160.9743,161.56496,15.7,1008.89935,0.0,90.2115,0.0 +2024-09-09 16:00:00,5.7384667,9.5273285,157.4569,159.09195,15.25,1008.9852,0.0,87.28924,0.0 +2024-09-09 17:00:00,5.4589376,9.261209,151.55717,155.09526,14.6,1009.16425,0.0,85.808846,0.0 +2024-09-09 18:00:00,5.5470715,9.575489,152.04913,155.30846,14.15,1009.0517,0.0,85.19862,0.0 +2024-09-09 19:00:00,5.635601,9.666437,152.52565,155.55606,13.85,1008.64624,0.0,84.60469,0.0 +2024-09-09 20:00:00,5.95399,10.107918,150.85202,154.19553,13.65,1008.5413,0.0,83.19032,0.0 +2024-09-09 21:00:00,5.6302752,9.811218,146.59216,150.0379,13.4,1009.0295,0.0,81.5137,0.0 +2024-09-09 22:00:00,5.6035705,9.8270035,145.17545,148.73633,13.05,1009.71326,0.0,80.924225,0.0 +2024-09-09 23:00:00,5.9076223,10.135581,146.04091,149.13326,13.25,1010.4133,0.0,79.341354,1.0 +2024-09-10 00:00:00,5.215362,9.4667845,147.52882,148.82872,14.8,1011.05426,0.0,75.44551,1.0 +2024-09-10 01:00:00,5.994164,8.324061,152.15251,151.27977,16.85,1011.2137,0.0,70.48741,1.0 +2024-09-10 02:00:00,6.296825,8.300602,159.55037,158.07036,18.85,1011.0732,0.0,62.77002,1.0 +2024-09-10 03:00:00,6.726812,8.658521,168.85715,165.96373,20.05,1010.909,0.0,58.06537,1.0 +2024-09-10 04:00:00,6.902898,8.827797,178.33975,175.45204,20.5,1010.62415,0.0,58.174957,1.0 +2024-09-10 05:00:00,7.006426,9.000556,182.45398,179.36342,20.65,1010.43024,0.0,63.587334,1.0 +2024-09-10 06:00:00,7.4242845,9.508417,184.63538,182.41098,20.5,1009.7315,0.0,68.25598,1.0 +2024-09-10 07:00:00,7.602631,9.900505,181.5074,179.4213,20.15,1009.9201,0.0,70.88201,1.0 +2024-09-10 08:00:00,7.7058415,10.323759,177.76888,176.11217,19.8,1010.1087,0.0,69.90576,1.0 +2024-09-10 09:00:00,7.4330344,10.259142,174.5963,173.84492,19.0,1010.7797,0.0,72.76126,1.0 +2024-09-10 10:00:00,6.315061,9.669023,169.04597,169.2712,17.9,1011.6408,0.0,77.69982,1.0 +2024-09-10 11:00:00,5.6320515,9.272,163.49556,163.71501,17.2,1012.11633,0.0,81.73582,0.0 +2024-09-10 12:00:00,5.536244,9.36376,159.92839,160.0168,16.85,1012.50287,0.0,83.29749,0.0 +2024-09-10 13:00:00,5.0159745,8.915716,156.50142,156.88577,15.85,1013.1676,0.0,90.514595,0.0 +2024-09-10 14:00:00,4.9739323,9.091755,149.82657,150.33337,15.5,1013.1574,0.0,88.16906,0.0 +2024-09-10 15:00:00,5.140039,9.440339,142.90709,143.61555,15.4,1012.9562,0.0,73.80923,0.0 +2024-09-10 16:00:00,5.060632,9.308598,142.22426,140.6673,14.85,1013.13824,0.0,70.57292,0.0 +2024-09-10 17:00:00,4.90408,9.104943,129.2072,128.7581,14.3,1013.4192,0.0,71.1826,0.0 +2024-09-10 18:00:00,4.5221677,8.868484,125.095894,119.74479,14.3,1013.0225,0.0,68.12583,0.0 +2024-09-10 19:00:00,4.1773195,8.21523,132.0891,121.56177,14.2,1012.7223,0.0,66.28142,0.0 +2024-09-10 20:00:00,3.8183768,7.6844,135.0001,124.931015,13.8,1012.6113,0.0,67.56186,0.0 +2024-09-10 21:00:00,4.0459857,8.112336,129.98683,120.35804,13.7,1012.8065,0.0,68.23381,0.0 +2024-09-10 22:00:00,4.20119,8.409518,128.23387,115.34614,14.0,1013.212,0.0,67.60356,0.0 +2024-09-10 23:00:00,4.909175,8.969392,123.36639,112.27595,14.7,1013.5304,0.0,66.61352,1.0 +2024-09-11 00:00:00,4.88467,9.708244,112.89059,101.88863,16.9,1013.8926,0.0,62.7444,1.0 +2024-09-11 01:00:00,7.623647,11.0367565,94.5139,94.67734,19.5,1013.96796,0.0,54.196377,1.0 +2024-09-11 02:00:00,8.01561,11.307077,93.57626,92.027275,21.6,1013.6307,0.0,48.25559,1.0 +2024-09-11 03:00:00,8.5,11.701709,90.0,89.020706,23.35,1013.08496,0.0,45.307983,1.0 +2024-09-11 04:00:00,8.746428,11.871394,84.093956,83.7132,25.35,1012.7434,0.0,39.135643,1.0 +2024-09-11 05:00:00,8.30542,11.410959,87.930016,87.48869,27.25,1012.1012,0.0,27.897274,1.0 +2024-09-11 06:00:00,7.5802374,10.447966,98.34381,95.49223,27.45,1011.70984,0.0,26.551191,1.0 +2024-09-11 07:00:00,7.376313,10.1789,105.73207,100.75792,27.2,1011.60394,0.0,26.666399,1.0 +2024-09-11 08:00:00,6.8963757,10.27716,106.85848,100.653854,26.45,1011.8808,0.0,28.547812,1.0 +2024-09-11 09:00:00,5.7271285,9.419129,102.09474,93.65215,25.4,1012.34827,0.0,30.904451,1.0 +2024-09-11 10:00:00,2.9120438,6.7,105.945465,90.0,22.85,1013.0709,0.0,36.138638,1.0 +2024-09-11 11:00:00,2.8160255,7.206247,96.11541,87.614105,20.95,1013.71173,0.0,40.166496,0.0 +2024-09-11 12:00:00,4.0816665,9.080198,120.963684,115.43618,21.45,1014.2216,0.0,32.41756,0.0 +2024-09-11 13:00:00,3.5468295,7.7878113,111.501495,114.26129,18.15,1015.2181,0.0,45.86677,0.0 +2024-09-11 14:00:00,4.4384685,9.095604,104.349365,104.647415,18.0,1015.21387,0.0,43.0565,0.0 +2024-09-11 15:00:00,5.0089917,9.716995,116.05344,113.663155,17.8,1015.2079,0.0,42.109913,0.0 +2024-09-11 16:00:00,4.753946,9.4371605,104.62092,105.36168,17.25,1015.1919,0.0,42.992226,0.0 +2024-09-11 17:00:00,4.8052053,9.786215,102.01146,101.19507,16.9,1015.1817,0.0,42.89204,0.0 +2024-09-11 18:00:00,5.3600373,10.469002,98.58354,96.581856,17.1,1015.1875,0.0,39.33533,0.0 +2024-09-11 19:00:00,5.9539905,11.244554,97.72173,95.10208,17.55,1014.9033,0.0,35.234665,0.0 +2024-09-11 20:00:00,6.8183575,12.203688,94.205284,91.4086,18.0,1014.718,0.0,33.166195,0.0 +2024-09-11 21:00:00,7.302739,12.8,91.56932,90.0,18.1,1014.82007,0.0,34.03568,0.0 +2024-09-11 22:00:00,7.6006575,13.009612,89.24617,87.79745,18.0,1015.31305,0.0,36.64234,0.0 +2024-09-11 23:00:00,7.723341,13.245754,85.54449,85.23644,17.9,1015.9052,0.0,41.265446,1.0 +2024-09-12 00:00:00,7.951101,13.421252,83.50075,82.2926,19.2,1016.4384,0.0,43.998528,1.0 +2024-09-12 01:00:00,8.0062475,11.458621,80.6554,80.45554,21.45,1016.4037,0.0,45.695396,1.0 +2024-09-12 02:00:00,7.5133214,10.259143,80.03627,79.89503,23.6,1016.1666,0.0,42.596024,1.0 +2024-09-12 03:00:00,6.926038,9.364828,85.03035,83.25452,25.55,1015.7249,0.0,39.453575,1.0 +2024-09-12 04:00:00,6.802941,9.113727,88.31535,86.85511,27.15,1015.0742,0.0,35.778816,1.0 +2024-09-12 05:00:00,6.6068144,8.900561,92.60251,90.64374,28.3,1014.11346,0.0,32.14156,1.0 +2024-09-12 06:00:00,6.8117547,9.304837,93.366394,91.84757,28.95,1013.2384,0.0,28.458546,1.0 +2024-09-12 07:00:00,6.648308,9.1350975,96.91113,95.02399,29.05,1012.74493,0.0,27.82029,1.0 +2024-09-12 08:00:00,5.9464273,8.70919,109.653915,105.312874,28.65,1012.4365,0.0,30.457214,1.0 +2024-09-12 09:00:00,5.4405885,9.073588,126.027466,121.938416,27.4,1012.40283,0.0,33.537144,1.0 +2024-09-12 10:00:00,5.315073,9.542536,131.18582,128.191,25.4,1012.6459,0.0,34.81223,1.0 +2024-09-12 11:00:00,5.021952,9.457801,125.27251,123.35404,23.85,1013.0988,0.0,35.20454,0.0 +2024-09-12 12:00:00,4.5617976,9.087354,116.00329,114.02651,22.5,1013.7554,0.0,36.788013,0.0 +2024-09-12 13:00:00,4.4777226,8.95377,113.70266,110.256546,20.45,1014.4909,0.0,40.717777,0.0 +2024-09-12 14:00:00,4.6173587,9.109336,107.650215,107.241554,19.6,1014.06995,0.0,42.040836,0.0 +2024-09-12 15:00:00,5.001,9.884331,101.53459,101.08253,19.3,1013.962,0.0,41.37956,0.0 +2024-09-12 16:00:00,5.333854,10.358571,96.458725,96.09577,19.5,1013.8687,0.0,39.339592,0.0 +2024-09-12 17:00:00,5.9008474,11.1040535,90.971,91.54813,19.4,1013.66724,0.0,38.632904,0.0 +2024-09-12 18:00:00,6.6272163,12.033703,84.805664,85.71093,19.5,1013.1745,0.0,37.730038,0.0 +2024-09-12 19:00:00,7.2691126,12.67754,82.09293,83.659904,19.55,1012.97754,0.0,36.320515,0.0 +2024-09-12 20:00:00,7.5133214,12.940248,80.03627,81.5569,19.35,1012.7734,0.0,35.13322,0.0 +2024-09-12 21:00:00,6.987131,12.872451,80.94219,80.61093,18.9,1013.05786,0.0,35.126965,0.0 +2024-09-12 22:00:00,6.7742157,12.53196,81.51115,78.95911,18.55,1013.74225,0.0,35.651066,0.0 +2024-09-12 23:00:00,7.236712,12.929424,78.84538,77.0386,18.35,1014.3312,0.0,38.735413,1.0 +2024-09-13 00:00:00,7.3756356,13.1217375,77.4712,75.4342,19.7,1014.96545,0.0,41.20866,1.0 +2024-09-13 01:00:00,6.5520988,10.406248,74.054535,70.346085,22.45,1014.6467,0.0,43.573273,1.0 +2024-09-13 02:00:00,6.4257298,9.007774,69.026436,67.13546,25.0,1014.2218,0.0,39.29872,1.0 +2024-09-13 03:00:00,5.7775426,7.8294315,66.54096,65.071556,27.1,1013.7834,0.0,36.728184,1.0 +2024-09-13 04:00:00,5.0159745,6.621178,66.50142,64.98315,28.65,1013.1309,0.0,34.112072,1.0 +2024-09-13 05:00:00,3.733631,4.7675986,82.30404,80.34018,29.6,1012.462,0.0,28.54017,1.0 +2024-09-13 06:00:00,2.8653097,3.640055,119.24873,110.924576,29.85,1011.77423,0.0,28.132318,1.0 +2024-09-13 07:00:00,3.4176016,4.243819,159.44388,145.56096,28.9,1011.4512,0.0,34.750748,1.0 +2024-09-13 08:00:00,5.508176,8.417244,176.87793,170.42584,26.95,1011.20026,0.0,50.326366,1.0 +2024-09-13 09:00:00,6.7067127,12.24949,177.43628,174.848,25.2,1011.549,0.0,60.821033,1.0 +2024-09-13 10:00:00,7.2780495,11.91008,167.30042,166.8972,24.05,1012.01324,0.0,46.410824,1.0 +2024-09-13 11:00:00,6.7535176,11.403946,152.6762,153.43501,22.4,1012.85986,0.0,47.20047,0.0 +2024-09-13 12:00:00,6.9065185,11.884864,145.6196,149.11899,21.8,1013.33887,0.0,45.946198,0.0 +2024-09-13 13:00:00,6.4404964,11.458621,143.84172,147.83565,20.9,1013.51184,0.0,50.37224,0.0 +2024-09-13 14:00:00,5.60803,10.117806,129.93633,132.99747,19.95,1013.088,0.0,54.857628,0.0 +2024-09-13 15:00:00,5.6462374,10.692988,112.93214,114.88739,19.9,1012.8885,0.0,46.829346,0.0 +2024-09-13 16:00:00,6.484597,11.637869,107.03786,109.0578,20.4,1012.3073,0.0,38.25327,0.0 +2024-09-13 17:00:00,6.926038,12.116518,107.650215,106.78991,20.6,1011.8172,0.0,34.87971,0.0 +2024-09-13 18:00:00,6.708204,11.85327,100.30479,99.223854,20.4,1011.31555,0.0,34.33772,0.0 +2024-09-13 19:00:00,6.726812,12.120232,95.117226,93.310875,19.95,1011.1045,0.0,34.814518,0.0 +2024-09-13 20:00:00,7.2111025,12.609917,86.82024,87.72761,19.55,1011.09314,0.0,35.689125,0.0 +2024-09-13 21:00:00,6.8183575,12.739309,85.79472,85.497894,18.85,1011.3707,0.0,37.279663,0.0 +2024-09-13 22:00:00,6.419502,12.280066,85.53293,83.453804,18.3,1011.9499,0.0,38.046757,0.0 +2024-09-13 23:00:00,7.119691,13.004999,79.47927,79.81343,18.3,1012.2474,0.0,39.543934,1.0 +2024-09-14 00:00:00,8.008121,13.679547,74.054535,76.47167,20.05,1012.99176,0.0,39.497574,1.0 +2024-09-14 01:00:00,5.115662,8.944272,85.51548,79.69521,22.3,1013.25366,0.0,43.385105,1.0 +2024-09-14 02:00:00,5.5108986,7.81025,78.486206,76.67546,25.15,1013.0356,0.0,36.422775,1.0 +2024-09-14 03:00:00,4.3416586,5.8523498,75.32356,73.11313,27.5,1012.8022,0.0,33.453102,1.0 +2024-09-14 04:00:00,2.8017852,3.8470767,92.045364,81.02746,28.7,1012.0411,0.0,29.8632,1.0 +2024-09-14 05:00:00,2.4351592,3.0232434,160.82089,145.78424,28.3,1011.6335,0.0,34.697823,1.0 +2024-09-14 06:00:00,4.414748,5.656854,193.0919,188.13002,27.05,1011.203,0.0,51.81909,1.0 +2024-09-14 07:00:00,5.6293874,8.104937,192.308,189.22981,25.85,1010.9719,0.0,60.586563,1.0 +2024-09-14 08:00:00,6.4536815,10.127191,192.5288,189.0902,24.5,1011.1333,0.0,66.49024,1.0 +2024-09-14 09:00:00,6.449806,11.107205,187.12492,182.06378,22.8,1011.3835,0.0,66.561455,1.0 +2024-09-14 10:00:00,5.67186,9.604687,170.8699,165.52966,21.6,1011.7462,0.0,60.573425,1.0 +2024-09-14 11:00:00,5.7939625,10.324728,158.74942,158.40463,20.9,1012.1233,0.0,60.40987,0.0 +2024-09-14 12:00:00,5.818075,10.511898,151.23245,154.65387,20.3,1012.70123,0.0,61.466774,0.0 +2024-09-14 13:00:00,5.4378304,10.121264,147.77127,150.39565,19.3,1013.3669,0.0,63.495247,0.0 +2024-09-14 14:00:00,4.675468,9.411164,131.53168,132.84703,18.8,1013.1541,0.0,59.516884,0.0 +2024-09-14 15:00:00,5.314132,10.722406,109.798965,109.61797,19.35,1012.97174,0.0,35.631313,0.0 +2024-09-14 16:00:00,6.537584,11.795762,96.14653,97.30567,20.05,1012.7934,0.0,26.674389,0.0 +2024-09-14 17:00:00,7.602631,13.1034355,88.4926,88.68814,20.6,1012.6106,0.0,23.45748,0.0 +2024-09-14 18:00:00,7.5026665,12.709839,88.47251,87.745476,20.35,1012.5045,0.0,23.390093,0.0 +2024-09-14 19:00:00,8.302409,14.100355,88.61968,90.406334,19.4,1012.57635,0.0,25.17435,0.0 +2024-09-14 20:00:00,8.927485,14.833746,85.50294,86.13462,19.05,1012.96313,0.0,25.7291,0.0 +2024-09-14 21:00:00,8.372574,13.916897,82.45067,82.56869,18.65,1013.54675,0.0,26.283634,0.0 +2024-09-14 22:00:00,8.121576,13.82787,80.07382,79.58403,18.15,1014.028,0.0,27.021206,0.0 +2024-09-14 23:00:00,7.962412,13.689411,78.40785,78.19759,17.8,1014.71204,0.0,29.71158,1.0 +2024-09-15 00:00:00,7.8854294,13.244244,77.55002,76.908104,18.9,1015.43805,0.0,32.372566,1.0 +2024-09-15 01:00:00,7.808969,11.064357,80.41713,80.11208,20.65,1015.48834,0.0,33.107883,1.0 +2024-09-15 02:00:00,6.846897,9.3771,83.29026,82.64771,22.7,1015.44714,0.0,32.434734,1.0 +2024-09-15 03:00:00,7.324616,9.84124,85.30141,84.75295,24.65,1015.1049,0.0,27.37357,1.0 +2024-09-15 04:00:00,7.1,9.400532,90.0,89.39051,25.6,1014.5359,0.0,23.197403,1.0 +2024-09-15 05:00:00,6.648308,8.746428,96.91113,95.906044,26.0,1013.9519,0.0,22.573933,1.0 +2024-09-15 06:00:00,6.0876927,8.1024685,104.26455,102.83562,26.2,1013.3621,0.0,21.916952,1.0 +2024-09-15 07:00:00,5.9236813,7.971198,111.801476,109.79897,26.1,1013.06165,0.0,20.67908,1.0 +2024-09-15 08:00:00,5.9506307,8.338465,114.84236,112.56705,25.65,1012.9501,0.0,20.786919,1.0 +2024-09-15 09:00:00,5.500909,8.633077,117.030785,115.37771,24.6,1012.9212,0.0,24.189463,1.0 +2024-09-15 10:00:00,4.802083,8.683317,121.372955,118.92633,22.75,1013.16724,0.0,24.73625,1.0 +2024-09-15 11:00:00,4.6861496,8.881441,129.80553,125.837746,21.15,1013.7171,0.0,26.028944,0.0 +2024-09-15 12:00:00,5.1224995,9.596354,128.65984,123.524506,20.1,1014.28235,0.0,28.784184,0.0 +2024-09-15 13:00:00,5.412947,10.34698,115.14475,113.34403,18.65,1014.836,0.0,28.683697,0.0 +2024-09-15 14:00:00,5.5542774,10.324728,113.33407,111.595375,18.1,1015.21674,0.0,29.689817,0.0 +2024-09-15 15:00:00,5.8523498,10.656923,109.98319,108.605064,17.7,1015.30414,0.0,31.567362,0.0 +2024-09-15 16:00:00,6.20967,11.108556,104.93147,103.53587,17.3,1015.0943,0.0,32.608692,0.0 +2024-09-15 17:00:00,6.551336,11.512167,102.33907,101.01707,16.95,1014.78656,0.0,31.808601,0.0 +2024-09-15 18:00:00,6.1983867,11.130589,100.222115,98.78522,16.5,1014.57495,0.0,31.678009,0.0 +2024-09-15 19:00:00,6.2513995,10.955363,97.35229,95.76254,16.2,1014.46716,0.0,31.590857,0.0 +2024-09-15 20:00:00,6.2289643,11.12205,95.52745,93.6084,15.95,1014.65814,0.0,32.333652,0.0 +2024-09-15 21:00:00,6.307139,11.201785,92.72626,91.02301,15.65,1014.84766,0.0,33.933163,0.0 +2024-09-15 22:00:00,6.6030297,11.600431,91.73567,90.493904,15.4,1015.23694,0.0,36.01323,0.0 +2024-09-15 23:00:00,6.9007244,11.803813,89.1697,88.54368,15.55,1015.5389,0.0,39.868965,1.0 +2024-09-16 00:00:00,7.0028567,11.307077,88.363464,87.972725,17.1,1016.1791,0.0,41.615803,1.0 +2024-09-16 01:00:00,8.022469,11.144955,85.71093,84.8522,19.1,1015.9397,0.0,38.412037,1.0 +2024-09-16 02:00:00,7.3437047,9.972462,83.74606,83.08887,21.05,1015.4995,0.0,35.253593,1.0 +2024-09-16 03:00:00,6.926038,9.15478,85.03035,83.72902,22.95,1015.2558,0.0,31.28772,1.0 +2024-09-16 04:00:00,6.3198104,8.249242,85.46231,83.73661,24.45,1014.6032,0.0,26.563305,1.0 +2024-09-16 05:00:00,5.7035074,7.416873,87.99049,86.13462,25.55,1013.8402,0.0,23.184212,1.0 +2024-09-16 06:00:00,5.500909,7.21734,88.9584,86.02759,26.1,1012.5657,0.0,21.505732,1.0 +2024-09-16 07:00:00,5.2038445,6.9007244,92.20255,89.1697,26.4,1011.8796,0.0,20.315859,1.0 +2024-09-16 08:00:00,4.925444,6.902898,95.82625,91.66025,26.3,1011.48,0.0,20.21821,1.0 +2024-09-16 09:00:00,3.7643058,6.530697,106.99091,101.48196,25.2,1011.4498,0.0,25.400164,1.0 +2024-09-16 10:00:00,3.3615475,7.1175838,120.37905,114.04423,22.45,1011.6712,0.0,28.22762,1.0 +2024-09-16 11:00:00,3.758989,7.8390055,118.61037,119.83545,20.6,1012.1147,0.0,27.709658,0.0 +2024-09-16 12:00:00,4.0521603,8.415462,105.75124,110.1577,19.4,1012.67554,0.0,29.739786,0.0 +2024-09-16 13:00:00,5.001,10.022474,101.53459,102.09474,18.8,1012.7575,0.0,29.25024,0.0 +2024-09-16 14:00:00,5.400926,10.423531,91.06089,93.85056,18.5,1012.84814,0.0,27.518234,0.0 +2024-09-16 15:00:00,5.2153616,10.204411,85.60138,88.31535,17.9,1012.5334,0.0,27.449139,0.0 +2024-09-16 16:00:00,5.5326304,10.423531,83.77426,86.149445,17.45,1012.2226,0.0,28.032633,0.0 +2024-09-16 17:00:00,5.830952,10.746627,84.093956,84.66086,17.15,1011.9165,0.0,28.256748,0.0 +2024-09-16 18:00:00,5.9413805,11.076552,83.233925,83.26004,16.8,1011.3113,0.0,28.99651,0.0 +2024-09-16 19:00:00,6.280127,11.6559,80.83774,80.61857,16.8,1010.7163,0.0,29.424557,0.0 +2024-09-16 20:00:00,6.5253353,11.964113,74.89885,73.988754,16.75,1010.7147,0.0,30.283068,0.0 +2024-09-16 21:00:00,6.6407833,11.961605,71.564964,69.44387,16.6,1010.8097,0.0,31.248997,0.0 +2024-09-16 22:00:00,7.2615423,12.795312,67.319405,65.03724,16.8,1011.1129,0.0,30.967207,0.0 +2024-09-16 23:00:00,7.5133214,13.12288,63.093983,60.30937,17.05,1011.12024,0.0,32.653824,1.0 +2024-09-17 00:00:00,7.4431176,12.61943,59.300358,56.3099,19.0,1011.5731,0.0,33.10088,1.0 +2024-09-17 01:00:00,6.3820057,9.420191,54.5666,52.765083,21.3,1011.5396,0.0,33.76264,1.0 +2024-09-17 02:00:00,6.3780875,8.845903,48.814175,47.290634,23.95,1011.2171,0.0,29.868841,1.0 +2024-09-17 03:00:00,5.7999997,7.638063,46.39711,46.060818,26.2,1010.88226,0.0,26.578226,1.0 +2024-09-17 04:00:00,4.9406476,6.4404964,35.942207,36.158287,27.8,1010.3305,0.0,21.79009,1.0 +2024-09-17 05:00:00,3.5341196,4.609772,25.114815,24.34109,28.45,1009.65356,0.0,20.9804,1.0 +2024-09-17 06:00:00,2.3086793,3.1400635,4.969664,9.16228,28.6,1008.5665,0.0,20.871504,1.0 +2024-09-17 07:00:00,0.7615773,1.1401755,293.1986,344.7448,28.25,1008.061,0.0,20.710054,1.0 +2024-09-17 08:00:00,3.0594118,3.5693135,191.30989,191.30989,26.4,1007.7135,0.0,41.157635,1.0 +2024-09-17 09:00:00,4.669047,7.8160095,170.13426,176.33229,24.7,1007.667,0.0,51.04361,1.0 +2024-09-17 10:00:00,4.554119,8.668333,160.76924,163.23737,22.75,1008.208,0.0,37.239174,1.0 +2024-09-17 11:00:00,3.945884,8.429115,171.25392,175.23645,21.35,1008.4663,0.0,37.222073,0.0 +2024-09-17 12:00:00,3.443835,7.4,154.17906,161.07526,20.45,1009.03613,0.0,38.400246,0.0 +2024-09-17 13:00:00,3.2015622,7.602631,141.34016,153.43501,19.15,1009.49493,0.0,32.444637,0.0 +2024-09-17 14:00:00,3.2802439,7.605919,127.568665,140.8696,18.75,1009.4836,0.0,31.529963,0.0 +2024-09-17 15:00:00,3.9812057,8.814193,154.72232,155.17949,18.0,1009.75946,0.0,37.427868,0.0 +2024-09-17 16:00:00,3.9824615,8.626702,128.8845,135.0001,17.3,1009.63995,0.0,42.409435,0.0 +2024-09-17 17:00:00,3.7802117,8.275868,127.47626,133.53127,16.7,1009.2259,0.0,38.666462,0.0 +2024-09-17 18:00:00,3.939543,8.459906,113.962494,122.93869,16.3,1008.7184,0.0,41.384987,0.0 +2024-09-17 19:00:00,3.7854989,8.357033,102.200455,111.03758,15.9,1008.40924,0.0,42.00655,0.0 +2024-09-17 20:00:00,4.1231055,8.839117,104.03627,111.92184,15.9,1008.40924,0.0,42.304726,0.0 +2024-09-17 21:00:00,4.8507733,9.616652,98.297066,106.9276,16.0,1008.5112,0.0,41.298183,0.0 +2024-09-17 22:00:00,5.2038445,10.225947,92.20255,99.00168,15.95,1009.00574,0.0,40.557907,0.0 +2024-09-17 23:00:00,4.509989,9.207063,93.814,98.74608,16.35,1009.4141,0.0,42.285114,1.0 +2024-09-18 00:00:00,4.652956,9.079648,98.65246,97.59455,18.6,1010.07404,0.0,45.521236,1.0 +2024-09-18 01:00:00,4.031129,6.946222,97.12492,96.613365,21.0,1010.24176,0.0,42.582886,1.0 +2024-09-18 02:00:00,4.14367,5.6435804,98.32557,97.12492,23.85,1010.32153,0.0,37.298817,1.0 +2024-09-18 03:00:00,4.0804415,5.4571056,107.10281,103.781624,26.3,1010.09125,0.0,29.907492,1.0 +2024-09-18 04:00:00,3.5805027,4.7853947,125.90981,116.02953,27.55,1009.6295,0.0,24.80666,1.0 +2024-09-18 05:00:00,4.785394,6.0033326,190.84026,181.9091,26.15,1008.7979,0.0,38.842117,1.0 +2024-09-18 06:00:00,6.1611686,8.547514,193.13403,186.04399,24.15,1008.1477,0.0,59.239822,1.0 +2024-09-18 07:00:00,6.873136,9.812747,188.3658,182.92065,23.45,1008.12854,0.0,57.20068,1.0 +2024-09-18 08:00:00,6.9115844,10.060318,176.68228,173.7228,22.8,1008.20953,0.0,51.381393,1.0 +2024-09-18 09:00:00,6.609841,9.75141,169.54015,166.96133,21.8,1008.47894,0.0,56.056908,1.0 +2024-09-18 10:00:00,6.2641835,10.435516,163.30067,161.56496,20.35,1008.9341,0.0,56.998463,1.0 +2024-09-18 11:00:00,6.4257298,10.920164,159.02643,159.07542,19.25,1009.29944,0.0,58.64387,0.0 +2024-09-18 12:00:00,6.2649817,10.885311,155.48038,156.73227,18.55,1009.67615,0.0,64.595146,0.0 +2024-09-18 13:00:00,6.574192,11.002273,153.82477,154.1337,17.8,1010.646,0.0,71.13406,0.0 +2024-09-18 14:00:00,5.936329,10.154802,147.38077,147.87503,17.15,1010.8256,0.0,69.61927,0.0 +2024-09-18 15:00:00,5.3535037,9.513149,147.20047,146.14285,16.9,1010.61993,0.0,60.67226,0.0 +2024-09-18 16:00:00,4.802083,8.875247,148.62704,146.48895,16.4,1010.6054,0.0,58.142258,0.0 +2024-09-18 17:00:00,4.750789,8.628441,149.65683,147.78348,15.9,1010.3925,0.0,57.821075,0.0 +2024-09-18 18:00:00,4.243819,8.0,145.56096,143.13002,15.25,1010.1752,0.0,59.66524,0.0 +2024-09-18 19:00:00,3.7802117,7.3878274,142.52374,140.49236,14.55,1010.05536,0.0,63.057808,0.0 +2024-09-18 20:00:00,3.8418746,7.50733,141.34016,138.23979,14.0,1010.0389,0.0,66.46427,0.0 +2024-09-18 21:00:00,3.482815,7.071068,140.82635,135.0001,13.6,1010.4238,0.0,69.61847,0.0 +2024-09-18 22:00:00,3.04795,6.529931,138.99101,130.0302,13.25,1010.71075,0.0,69.78594,0.0 +2024-09-18 23:00:00,2.8999999,5.936329,136.39711,122.61923,13.95,1011.0292,0.0,64.88671,1.0 +2024-09-19 00:00:00,2.9546573,5.4037023,156.0375,128.991,16.45,1011.49945,0.0,55.449272,1.0 +2024-09-19 01:00:00,3.5341196,4.604346,154.8852,145.6196,19.55,1011.48987,0.0,45.166027,1.0 +2024-09-19 02:00:00,4.1231055,5.188449,157.1663,152.44728,21.55,1011.5467,0.0,41.876816,1.0 +2024-09-19 03:00:00,4.1,5.059644,167.31963,161.56496,23.05,1011.19214,0.0,41.455208,1.0 +2024-09-19 04:00:00,5.115662,6.3,184.48453,180.0,23.7,1010.71423,0.0,45.55514,1.0 +2024-09-19 05:00:00,6.551336,8.28734,192.33908,188.32556,22.95,1009.999,0.0,58.19821,1.0 +2024-09-19 06:00:00,7.236712,9.404786,191.15462,188.5608,22.05,1009.577,0.0,63.077446,1.0 +2024-09-19 07:00:00,7.256032,9.633276,187.12492,184.76355,21.6,1009.16754,0.0,62.5708,1.0 +2024-09-19 08:00:00,7.006426,9.400532,182.45398,180.6095,21.0,1009.05164,0.0,65.54839,1.0 +2024-09-19 09:00:00,6.7067127,9.1268835,177.43628,175.60138,20.0,1009.1223,0.0,71.082924,1.0 +2024-09-19 10:00:00,5.8549128,9.0094385,172.14677,171.06052,18.75,1009.4836,0.0,76.58317,1.0 +2024-09-19 11:00:00,5.3150725,8.634812,168.05585,166.60748,17.9,1009.8558,0.0,80.5155,0.0 +2024-09-19 12:00:00,5.4571056,9.167878,166.21838,166.11531,17.5,1010.4391,0.0,84.18398,0.0 +2024-09-19 13:00:00,5.5731497,9.321481,170.70677,170.73985,17.0,1010.72205,0.0,87.4492,0.0 +2024-09-19 14:00:00,5.903389,9.669023,169.26115,169.2712,16.8,1010.4188,0.0,89.1369,0.0 +2024-09-19 15:00:00,5.4120235,8.998889,163.90912,165.19157,16.5,1010.1124,0.0,89.40081,0.0 +2024-09-19 16:00:00,4.3382025,7.738863,154.02567,154.7595,15.8,1009.7946,0.0,88.48153,0.0 +2024-09-19 17:00:00,3.9115214,7.3573093,147.52882,148.90276,15.05,1009.475,0.0,85.01502,0.0 +2024-09-19 18:00:00,3.6055512,6.9641943,146.3099,147.90744,14.5,1009.0622,0.0,81.11798,0.0 +2024-09-19 19:00:00,3.0805843,6.6287255,144.24602,146.07016,13.95,1008.64935,0.0,77.86718,0.0 +2024-09-19 20:00:00,2.86007,6.324555,143.53067,145.30478,13.5,1008.43744,0.0,73.72202,0.0 +2024-09-19 21:00:00,2.7018511,6.140033,141.009,142.94339,13.05,1008.5233,0.0,70.702835,0.0 +2024-09-19 22:00:00,2.4758837,5.8898215,136.63654,139.82083,12.6,1008.9066,0.0,69.18181,0.0 +2024-09-19 23:00:00,2.624881,5.3814497,139.63554,138.01286,13.3,1009.2251,0.0,67.22726,1.0 +2024-09-20 00:00:00,2.863564,4.604346,155.22488,145.6196,15.65,1009.8894,0.0,60.169933,1.0 +2024-09-20 01:00:00,4.049691,5.2000003,159.77505,157.3801,17.25,1010.1343,0.0,53.612152,1.0 +2024-09-20 02:00:00,4.3737855,5.4571056,169.46088,166.21838,19.1,1009.89,0.0,50.739803,1.0 +2024-09-20 03:00:00,5.2038445,6.5276337,177.79745,174.7262,20.3,1009.4284,0.0,50.7193,1.0 +2024-09-20 04:00:00,6.303174,7.902531,181.81827,178.54982,20.95,1008.9511,0.0,51.919666,1.0 +2024-09-20 05:00:00,7.2249565,9.204889,184.76355,181.86765,21.05,1007.96185,0.0,53.8762,1.0 +2024-09-20 06:00:00,7.8160095,10.104455,183.66771,181.70132,20.8,1007.35986,0.0,55.991146,1.0 +2024-09-20 07:00:00,8.100618,10.701869,180.7073,178.9292,20.5,1007.0538,0.0,57.602787,1.0 +2024-09-20 08:00:00,8.105554,10.916501,177.87895,176.84935,19.8,1006.93506,0.0,62.367474,1.0 +2024-09-20 09:00:00,7.922752,10.837436,175.65685,175.23645,18.8,1007.3029,0.0,68.13588,1.0 +2024-09-20 10:00:00,7.6164293,11.435471,176.23604,175.4861,17.6,1007.8635,0.0,75.41157,1.0 +2024-09-20 11:00:00,7.940403,12.070211,174.2177,173.81717,16.85,1008.13947,0.0,78.04853,0.0 +2024-09-20 12:00:00,8.260751,12.61507,173.04713,172.25539,16.75,1008.6322,0.0,77.77874,0.0 +2024-09-20 13:00:00,7.81025,12.127654,166.67546,166.65126,16.15,1009.30896,0.0,80.01542,0.0 +2024-09-20 14:00:00,7.4946647,11.795338,161.3232,161.71857,15.9,1009.5,0.0,78.93706,0.0 +2024-09-20 15:00:00,7.209022,11.423659,156.2796,156.80139,15.35,1009.38477,0.0,74.54022,0.0 +2024-09-20 16:00:00,7.066117,11.225417,153.0724,152.9785,14.75,1009.4661,0.0,70.79103,0.0 +2024-09-20 17:00:00,6.860029,11.027693,149.3228,149.48184,14.15,1009.34924,0.0,68.79043,0.0 +2024-09-20 18:00:00,6.6370173,10.804629,149.18436,149.4001,13.7,1008.93933,0.0,68.002174,0.0 +2024-09-20 19:00:00,6.2265563,10.221545,150.14108,149.42085,13.4,1008.63293,0.0,67.478226,0.0 +2024-09-20 20:00:00,5.7454333,9.656604,148.52321,148.12044,13.25,1008.6285,0.0,65.177124,0.0 +2024-09-20 21:00:00,5.3535037,9.264988,147.20047,147.3391,13.05,1009.0191,0.0,61.425808,0.0 +2024-09-20 22:00:00,5.1312766,8.904493,146.92932,147.38077,12.8,1009.4085,0.0,57.240772,0.0 +2024-09-20 23:00:00,5.215362,8.653323,147.52882,146.3099,13.1,1009.81396,0.0,55.543594,1.0 +2024-09-21 00:00:00,5.3665633,7.829432,153.43501,151.79846,14.8,1010.0626,0.0,52.416386,1.0 +2024-09-21 01:00:00,5.8137765,7.6059184,153.43501,151.75037,16.7,1009.72174,0.0,50.091408,1.0 +2024-09-21 02:00:00,5.8523498,7.484651,160.0168,157.20345,18.65,1009.38153,0.0,47.772392,1.0 +2024-09-21 03:00:00,6.2641835,7.971198,163.30067,160.20103,20.4,1008.93524,0.0,46.493332,1.0 +2024-09-21 04:00:00,7.0035706,8.94986,170.13426,166.42955,21.7,1008.37695,0.0,46.538807,1.0 +2024-09-21 05:00:00,8.705171,11.335784,178.02512,175.44632,21.45,1007.7749,0.0,53.270687,1.0 +2024-09-21 06:00:00,9.602083,12.719276,178.80653,176.84523,20.65,1007.15735,0.0,59.175636,1.0 +2024-09-21 07:00:00,9.013878,12.1412525,176.82024,175.27563,20.6,1006.9574,0.0,57.06028,1.0 +2024-09-21 08:00:00,9.079648,12.461541,172.40544,170.76451,20.2,1006.3511,0.0,60.443684,1.0 +2024-09-21 09:00:00,8.769264,12.248265,172.79404,171.0761,19.4,1006.0308,0.0,66.71616,1.0 +2024-09-21 10:00:00,8.926926,12.649506,170.3267,168.60127,18.3,1006.1979,0.0,69.61506,1.0 +2024-09-21 11:00:00,8.561542,13.366375,165.80142,164.82002,17.7,1006.37885,0.0,69.269264,0.0 +2024-09-21 12:00:00,8.53815,13.408206,161.56496,161.2947,17.8,1007.07587,0.0,66.82089,0.0 +2024-09-21 13:00:00,7.111962,11.58361,152.35411,152.77141,16.7,1007.6392,0.0,70.69225,0.0 +2024-09-21 14:00:00,6.2769423,10.495713,149.34941,149.03632,16.35,1007.82745,0.0,67.41037,0.0 +2024-09-21 15:00:00,5.4708314,9.625487,149.21593,147.30055,16.15,1007.524,0.0,60.494137,0.0 +2024-09-21 16:00:00,4.802083,8.741854,148.62704,144.30984,15.85,1007.31683,0.0,53.42769,0.0 +2024-09-21 17:00:00,4.4654226,8.438602,145.95403,139.32515,15.55,1006.9116,0.0,49.08886,0.0 +2024-09-21 18:00:00,4.3266616,8.221922,146.3099,138.94528,15.2,1006.50446,0.0,48.48103,0.0 +2024-09-21 19:00:00,3.8275318,7.582216,146.7251,138.74309,14.65,1006.3893,0.0,49.7035,0.0 +2024-09-21 20:00:00,3.3615475,6.868042,149.62096,137.95085,14.05,1006.1732,0.0,51.488953,0.0 +2024-09-21 21:00:00,3.535534,7.0092793,151.2603,137.89134,13.75,1006.26355,0.0,52.685257,0.0 +2024-09-21 22:00:00,3.5510561,7.0007143,147.65259,134.42136,13.55,1006.3568,0.0,53.188114,0.0 +2024-09-21 23:00:00,3.5805027,6.5802736,144.09018,126.34755,14.35,1006.3805,0.0,53.773815,1.0 +2024-09-22 00:00:00,3.1384711,5.905929,157.52052,118.30067,17.2,1006.7612,0.0,51.9778,1.0 +2024-09-22 01:00:00,3.5468295,4.4654226,158.4985,145.95403,20.4,1006.05914,0.0,47.12638,1.0 +2024-09-22 02:00:00,3.4481878,4.167733,163.14153,149.74365,23.05,1005.6378,0.0,43.887314,1.0 +2024-09-22 03:00:00,4.3011627,4.9030604,181.33218,168.23174,24.55,1005.1831,0.0,46.70028,1.0 +2024-09-22 04:00:00,6.0016665,7.406079,190.56096,182.32149,24.45,1004.7835,0.0,54.038784,1.0 +2024-09-22 05:00:00,7.0035706,9.319335,189.86574,183.69131,23.65,1004.0672,0.0,57.065125,1.0 +2024-09-22 06:00:00,7.566373,10.711676,187.59456,182.67537,22.35,1003.6345,0.0,57.116932,1.0 +2024-09-22 07:00:00,7.0114193,10.0005,183.27042,179.42708,22.15,1003.23206,0.0,58.3836,1.0 +2024-09-22 08:00:00,7.0007143,10.331021,179.18156,175.55884,22.1,1003.33,0.0,60.297832,1.0 +2024-09-22 09:00:00,7.0611615,10.186756,167.73524,166.37299,20.8,1003.3927,0.0,63.414017,1.0 +2024-09-22 10:00:00,6.676077,10.530432,163.46509,161.73701,19.75,1003.7597,0.0,69.4446,1.0 +2024-09-22 11:00:00,6.5520988,10.911003,164.05453,162.39528,18.7,1004.2257,0.0,70.83918,0.0 +2024-09-22 12:00:00,6.76757,11.1,161.0295,161.07526,18.25,1004.9071,0.0,73.57979,0.0 +2024-09-22 13:00:00,5.3488317,9.192389,159.19313,157.61981,17.5,1005.3814,0.0,77.63912,0.0 +2024-09-22 14:00:00,4.648656,8.19329,161.1752,160.0168,16.75,1005.3597,0.0,85.47213,0.0 +2024-09-22 15:00:00,4.204759,7.56439,154.65387,155.8068,16.2,1005.3439,0.0,86.25077,0.0 +2024-09-22 16:00:00,4.3382025,7.8294315,154.02567,155.07155,15.75,1005.23157,0.0,83.16718,0.0 +2024-09-22 17:00:00,4.7423625,8.409518,155.05612,154.65387,15.3,1004.9208,0.0,79.37187,0.0 +2024-09-22 18:00:00,4.651881,8.409518,154.5367,154.65387,14.95,1004.91064,0.0,76.73547,0.0 +2024-09-22 19:00:00,4.472136,8.1024685,153.43501,155.96571,14.75,1005.00385,0.0,76.194855,0.0 +2024-09-22 20:00:00,4.294182,7.879086,152.24155,156.0375,14.5,1004.7983,0.0,77.17643,0.0 +2024-09-22 21:00:00,4.031129,7.605919,150.2552,155.11966,14.35,1005.0914,0.0,80.29512,0.0 +2024-09-22 22:00:00,4.060788,7.8390055,142.00122,150.16455,14.15,1005.48193,0.0,85.19862,0.0 +2024-09-22 23:00:00,4.4407206,7.566373,144.16226,150.72484,14.85,1005.7011,0.0,84.71478,1.0 +2024-09-23 00:00:00,5.1429563,7.111259,153.43501,154.15567,17.0,1006.1603,0.0,74.82024,1.0 +2024-09-23 01:00:00,4.9396358,6.369458,158.62932,157.86446,18.8,1006.7079,0.0,73.19917,1.0 +2024-09-23 02:00:00,5.6435804,7.1847057,172.87508,171.19328,20.35,1006.653,0.0,68.89073,1.0 +2024-09-23 03:00:00,6.1032777,7.6,181.87784,180.0,21.1,1006.27747,0.0,68.59593,1.0 +2024-09-23 04:00:00,6.648308,8.429115,186.91113,184.76355,21.4,1005.98834,0.0,68.65528,1.0 +2024-09-23 05:00:00,7.3164196,9.404786,190.23474,188.5608,21.2,1005.48676,0.0,68.8364,1.0 +2024-09-23 06:00:00,7.5504966,9.650907,191.45872,190.14548,20.85,1005.0803,0.0,70.10698,1.0 +2024-09-23 07:00:00,8.158431,10.572133,191.30989,190.35327,20.35,1005.26447,0.0,72.069046,1.0 +2024-09-23 08:00:00,8.249242,10.955363,186.2634,185.76254,19.65,1005.3439,0.0,69.65067,1.0 +2024-09-23 09:00:00,7.5059977,10.104455,182.29056,181.70132,19.05,1005.22754,0.0,70.90509,1.0 +2024-09-23 10:00:00,6.8,10.0,180.0,180.0,18.0,1005.5943,0.0,76.21682,1.0 +2024-09-23 11:00:00,6.8,10.40048,180.0,179.44911,17.4,1006.17194,0.0,78.385345,0.0 +2024-09-23 12:00:00,6.129437,9.4429865,174.3825,174.53099,17.1,1006.4607,0.0,79.6269,0.0 +2024-09-23 13:00:00,6.2201285,9.633276,175.38943,175.23645,16.5,1007.43494,0.0,81.38064,0.0 +2024-09-23 14:00:00,6.328507,9.84124,174.55975,174.75294,16.6,1007.63635,0.0,79.8167,0.0 +2024-09-23 15:00:00,6.0827627,9.503683,170.53775,171.52895,16.35,1007.3316,0.0,80.56803,0.0 +2024-09-23 16:00:00,5.9841456,9.239589,170.38034,170.028,15.9,1006.92175,0.1,83.18506,0.0 +2024-09-23 17:00:00,5.824946,9.0609045,168.11136,169.18617,15.95,1006.725,0.0,80.778145,0.0 +2024-09-23 18:00:00,5.0921507,8.159657,160.49747,160.67673,15.35,1006.60815,0.0,83.11944,0.0 +2024-09-23 19:00:00,5.6302757,8.570298,160.27763,160.93071,15.0,1006.7964,0.0,85.00963,0.0 +2024-09-23 20:00:00,4.3908997,7.2945185,149.9315,151.32695,14.35,1006.678,0.0,87.492805,0.0 +2024-09-23 21:00:00,3.7735925,6.6730804,147.99466,150.36171,14.15,1007.0685,0.0,85.19862,0.0 +2024-09-23 22:00:00,4.3011627,7.156116,144.46223,146.97612,14.15,1007.66345,0.1,86.04592,0.0 +2024-09-23 23:00:00,4.6872168,7.0830784,146.3099,149.4525,14.8,1007.9802,0.1,84.70932,1.0 +2024-09-24 00:00:00,5.903389,7.9624114,153.86906,154.72232,15.9,1008.50836,0.1,78.67802,1.0 +2024-09-24 01:00:00,5.3160133,6.926038,163.61038,162.3498,17.9,1008.4674,0.0,62.97169,1.0 +2024-09-24 02:00:00,6.519202,8.459313,175.60138,173.21112,19.1,1008.89825,0.0,56.687683,1.0 +2024-09-24 03:00:00,7.0,8.914033,180.0,176.78458,19.75,1008.5202,0.0,52.475716,1.0 +2024-09-24 04:00:00,7.3437047,9.313432,186.25394,183.0774,20.15,1007.8374,0.0,55.45858,1.0 +2024-09-24 05:00:00,7.7103825,9.773945,189.70659,187.05222,20.15,1007.2423,0.0,58.089752,1.0 +2024-09-24 06:00:00,7.891768,10.18332,188.74608,187.33429,20.1,1006.64575,0.0,58.849384,1.0 +2024-09-24 07:00:00,8.089499,10.568349,188.53069,186.5197,19.9,1006.5412,0.0,58.41383,1.0 +2024-09-24 08:00:00,8.414867,11.111256,183.40637,182.57909,19.35,1006.82294,0.0,57.894146,1.0 +2024-09-24 09:00:00,8.20975,11.21606,177.20735,176.93358,18.6,1007.0989,0.0,62.5061,1.0 +2024-09-24 10:00:00,7.1175838,10.737783,175.97182,175.19214,17.75,1007.57043,0.0,69.966194,1.0 +2024-09-24 11:00:00,7.1021123,10.867382,170.27249,169.931,17.05,1008.1452,0.0,74.583694,0.0 +2024-09-24 12:00:00,7.2780495,11.1830225,167.30042,167.08218,16.8,1008.8321,0.0,76.27345,0.0 +2024-09-24 13:00:00,7.0213957,11.072489,162.59721,163.20155,16.0,1009.40375,0.0,80.52067,0.0 +2024-09-24 14:00:00,6.407808,10.231813,157.0362,158.19853,15.55,1009.29156,0.0,82.33005,0.0 +2024-09-24 15:00:00,5.4708314,9.091755,149.21593,150.33337,14.95,1009.4721,0.0,80.643456,0.0 +2024-09-24 16:00:00,4.7201695,8.300602,143.61555,143.82028,14.35,1009.3553,0.0,76.63993,0.0 +2024-09-24 17:00:00,4.0360875,7.7155685,138.01286,137.62646,13.7,1009.03845,0.0,74.75723,0.0 +2024-09-24 18:00:00,3.764306,7.5166483,129.61066,130.68388,13.2,1008.82526,0.0,72.92473,0.0 +2024-09-24 19:00:00,3.8013155,7.7665954,125.36255,124.50858,12.95,1008.6197,0.0,67.614876,0.0 +2024-09-24 20:00:00,4.159327,8.185964,117.18103,115.31284,12.9,1008.5189,0.0,62.677578,0.0 +2024-09-24 21:00:00,4.7127485,8.998889,107.281586,104.808426,13.05,1008.7217,0.0,61.85204,0.0 +2024-09-24 22:00:00,5.4332314,9.9408245,96.340096,95.19434,13.15,1008.824,0.0,62.304237,0.0 +2024-09-24 23:00:00,6.0074954,10.204411,92.86235,91.68465,13.85,1009.3404,0.0,62.89712,1.0 +2024-09-25 00:00:00,6.3007936,9.5,90.90936,90.0,16.0,1009.50287,0.0,59.03902,1.0 +2024-09-25 01:00:00,6.4017577,8.700144,91.3426,90.32928,18.6,1009.5782,0.0,54.14584,1.0 +2024-09-25 02:00:00,5.6035705,7.416873,87.95464,86.13462,21.05,1008.8545,0.0,47.94479,1.0 +2024-09-25 03:00:00,4.816638,6.1955633,85.23644,83.04714,23.35,1008.324,0.0,41.9599,1.0 +2024-09-25 04:00:00,4.414748,5.6800084,76.908104,73.638855,25.3,1007.5842,0.0,34.66652,1.0 +2024-09-25 05:00:00,3.5923529,4.808326,81.19329,73.07241,26.4,1006.4239,0.0,31.0786,1.0 +2024-09-25 06:00:00,2.1224985,3.1016126,105.01841,88.15243,26.75,1005.6398,0.0,28.435118,1.0 +2024-09-25 07:00:00,3.2190838,4.0871754,186.24182,172.2665,26.0,1004.8261,0.0,36.296787,1.0 +2024-09-25 08:00:00,4.9155364,6.951618,189.36644,178.76363,24.45,1004.4859,0.0,50.319054,1.0 +2024-09-25 09:00:00,5.5056787,8.850142,193.65765,179.6763,23.0,1004.3467,0.0,63.49077,1.0 +2024-09-25 10:00:00,6.116576,10.6491785,188.4612,172.17435,20.9,1004.4865,0.0,72.63147,1.0 +2024-09-25 11:00:00,5.881539,10.522001,165.72745,159.412,19.55,1005.04346,0.0,59.696095,0.0 +2024-09-25 12:00:00,5.1198144,9.630291,148.17259,148.37306,18.65,1005.21625,0.0,57.146046,0.0 +2024-09-25 13:00:00,3.6069376,7.5307703,136.12321,134.73102,17.2,1005.47205,0.0,64.72828,0.0 +2024-09-25 14:00:00,2.8412147,6.4538746,118.36895,112.79063,16.4,1004.95294,0.0,59.538372,0.0 +2024-09-25 15:00:00,2.540177,6.915562,79.79609,82.104324,16.25,1004.5519,0.0,44.701035,0.0 +2024-09-25 16:00:00,3.1579266,7.9851427,66.682274,70.997696,17.2,1003.8853,0.0,37.4605,0.0 +2024-09-25 17:00:00,2.510976,7.2001734,54.727493,63.612953,16.8,1003.37787,0.0,37.879505,0.0 +2024-09-25 18:00:00,2.9300172,5.0522275,25.253126,51.42873,16.3,1002.9668,0.0,40.803654,0.0 +2024-09-25 19:00:00,2.8969812,4.9912424,21.25058,42.157787,16.75,1002.7814,0.0,38.81853,0.0 +2024-09-25 20:00:00,3.4003677,5.6859474,17.102825,34.2491,14.6,1002.52045,0.0,46.641903,0.0 +2024-09-25 21:00:00,3.525975,6.5614405,18.178116,32.236763,14.5,1002.71594,0.0,46.943985,0.0 +2024-09-25 22:00:00,2.8398943,7.877182,26.113852,33.084866,16.35,1002.9683,0.0,47.297966,0.0 +2024-09-25 23:00:00,3.987794,8.70919,30.101221,34.237514,18.75,1003.1365,0.0,50.474403,1.0 +2024-09-26 00:00:00,4.7289004,9.335149,33.354042,34.966953,21.4,1003.01294,0.0,49.671738,1.0 +2024-09-26 01:00:00,5.78835,8.134495,19.687218,20.88589,23.8,1002.98016,0.0,44.83383,1.0 +2024-09-26 02:00:00,5.1198144,6.666521,328.17258,335.16486,25.85,1002.9373,0.0,41.961895,1.0 +2024-09-26 03:00:00,6.9650917,9.446957,277.83917,284.40402,23.0,1003.1565,0.0,52.627254,1.0 +2024-09-26 04:00:00,7.274785,9.613012,274.73087,272.98138,21.9,1003.32434,0.0,67.01648,1.0 +2024-09-26 05:00:00,6.6575146,8.381527,252.51753,252.64589,21.35,1003.7057,0.0,74.112816,1.0 +2024-09-26 06:00:00,5.971809,7.515318,244.72232,244.7989,20.95,1003.3971,0.0,72.40854,1.0 +2024-09-26 07:00:00,5.5823383,6.9715495,239.30035,239.38869,20.35,1003.28094,0.0,68.44691,1.0 +2024-09-26 08:00:00,5.2841744,6.6850576,235.40764,235.359,19.8,1003.2655,0.0,67.89455,1.0 +2024-09-26 09:00:00,4.8130035,6.201814,235.15419,234.51593,19.05,1003.4424,0.0,69.08221,1.0 +2024-09-26 10:00:00,4.160829,5.7560835,237.26477,237.4143,18.05,1003.90967,0.0,74.025894,1.0 +2024-09-26 11:00:00,2.804015,4.8708315,238.8611,238.43108,17.35,1004.48456,0.0,77.6163,0.0 +2024-09-26 12:00:00,1.7442764,3.8762095,242.7005,239.79684,16.65,1004.86096,0.0,81.40014,0.0 +2024-09-26 13:00:00,1.85,3.9579034,270.0,266.37857,16.5,1004.85657,0.1,80.85165,0.0 +2024-09-26 14:00:00,2.7294688,4.99925,261.57312,261.95102,16.45,1004.4587,0.0,82.97994,0.0 +2024-09-26 15:00:00,3.1953092,5.6302757,249.86362,250.27763,16.05,1003.75287,0.0,85.95625,0.0 +2024-09-26 16:00:00,3.4441981,6.127193,242.31903,242.80772,16.2,1003.2614,0.0,82.41071,0.0 +2024-09-26 17:00:00,3.6224992,6.5073037,243.78868,244.02565,16.25,1002.866,0.0,77.70275,0.0 +2024-09-26 18:00:00,2.6100767,5.4392095,253.30067,251.23184,15.95,1002.56,0.0,77.65698,0.0 +2024-09-26 19:00:00,2.4864633,5.0916595,254.84587,252.27667,16.05,1002.2654,0.0,76.65634,0.0 +2024-09-26 20:00:00,2.624881,5.217758,252.25523,251.56496,15.95,1002.2625,0.0,76.89349,0.0 +2024-09-26 21:00:00,2.3900838,5.1722817,254.21918,253.14151,15.7,1002.7511,0.0,77.618744,0.0 +2024-09-26 22:00:00,2.071835,4.104875,289.74692,272.79263,14.95,1003.22485,0.0,80.37758,0.0 +2024-09-26 23:00:00,2.418677,4.20119,330.25522,308.23386,17.35,1003.69116,0.0,71.99029,1.0 +2024-09-27 00:00:00,3.541892,4.85,311.56625,312.07495,19.05,1004.13666,0.0,64.70428,1.0 +2024-09-27 01:00:00,6.307139,8.409518,272.72626,272.72626,16.95,1004.37396,1.1,81.439026,1.0 +2024-09-27 02:00:00,6.177378,8.411897,209.0545,208.39293,16.8,1004.46875,1.6,90.871895,1.0 +2024-09-27 03:00:00,6.213896,8.160883,198.28925,197.10281,17.0,1004.4744,0.5,85.22247,1.0 +2024-09-27 04:00:00,6.742403,8.917679,215.3402,214.49203,16.55,1004.85815,3.0,79.28993,1.0 +2024-09-27 05:00:00,8.121576,10.651877,217.99878,217.9458,17.9,1004.9964,0.3,71.85544,1.0 +2024-09-27 06:00:00,8.433564,10.9877205,221.15387,220.94055,17.6,1004.8884,0.0,69.249535,1.0 +2024-09-27 07:00:00,8.124192,10.787261,220.25699,220.11153,16.7,1005.16003,0.0,69.76183,1.0 +2024-09-27 08:00:00,7.9511003,10.6526985,219.89778,219.6678,16.55,1005.8498,0.0,65.01927,1.0 +2024-09-27 09:00:00,8.348653,11.343831,214.26115,214.04033,16.1,1006.53076,0.0,64.26961,1.0 +2024-09-27 10:00:00,7.786206,11.104616,211.3423,211.18492,15.1,1007.09656,0.1,68.06034,1.0 +2024-09-27 11:00:00,6.6730804,10.059448,209.63829,210.13336,14.95,1007.9847,0.0,64.23037,0.0 +2024-09-27 12:00:00,6.173532,9.529428,208.0178,208.1785,14.75,1008.772,0.0,63.534447,0.0 +2024-09-27 13:00:00,5.2554736,8.347006,201.19412,201.80147,14.5,1009.75635,0.0,65.00811,0.0 +2024-09-27 14:00:00,5.214643,8.393451,194.436,195.1953,14.45,1010.05225,0.0,64.99709,0.0 +2024-09-27 15:00:00,4.8254533,7.8447433,190.14548,191.0234,14.25,1010.2448,0.0,66.06727,0.0 +2024-09-27 16:00:00,4.509989,7.537407,183.814,185.7105,14.25,1009.9474,0.0,64.073555,0.0 +2024-09-27 17:00:00,4.20119,7.1015844,178.63611,181.21027,14.15,1009.94415,0.0,64.48968,0.0 +2024-09-27 18:00:00,3.7583241,6.7,176.186,180.0,13.85,1009.8362,0.0,64.64332,0.0 +2024-09-27 19:00:00,3.324154,6.201814,173.08887,178.61412,13.75,1010.1308,0.0,64.842415,0.0 +2024-09-27 20:00:00,2.6443334,5.3893414,164.64981,173.07288,13.25,1010.3142,0.0,67.67754,0.0 +2024-09-27 21:00:00,2.0402205,4.4319863,143.97253,156.0375,12.7,1010.89264,0.0,71.84923,0.0 +2024-09-27 22:00:00,1.8384776,3.7716045,112.38018,128.54121,12.05,1011.5673,0.0,76.009674,0.0 +2024-09-27 23:00:00,3.2422986,4.250294,72.96215,90.67403,12.9,1012.38605,0.0,73.61565,1.0 +2024-09-28 00:00:00,2.8622544,3.765634,70.615395,79.28693,15.0,1013.3411,0.0,63.37551,1.0 +2024-09-28 01:00:00,2.0554805,2.624881,161.56496,162.25523,16.35,1014.6699,0.0,57.73628,1.0 +2024-09-28 02:00:00,3.132491,3.8209946,188.25935,186.00891,17.25,1015.0927,0.0,53.978382,1.0 +2024-09-28 03:00:00,3.6503422,4.4300113,203.40471,200.48044,17.7,1015.205,0.0,52.645634,1.0 +2024-09-28 04:00:00,4.5499997,5.506814,202.6199,200.73878,18.25,1015.0226,0.0,48.48486,1.0 +2024-09-28 05:00:00,5.059644,6.278734,198.43504,197.13635,17.95,1014.8156,0.0,49.070236,1.0 +2024-09-28 06:00:00,5.440588,6.806247,197.10281,195.77202,17.85,1014.6144,0.0,48.875122,1.0 +2024-09-28 07:00:00,5.4947705,6.9123073,195.3009,194.23732,17.9,1014.2193,0.0,47.89302,1.0 +2024-09-28 08:00:00,5.3640003,6.726812,191.83362,191.14285,17.8,1014.3153,0.0,47.865376,1.0 +2024-09-28 09:00:00,5.333854,6.9406414,186.45872,186.20335,17.0,1014.58954,0.0,49.82904,1.0 +2024-09-28 10:00:00,4.452527,6.7529626,178.06946,178.30289,16.15,1015.06055,0.0,51.518944,1.0 +2024-09-28 11:00:00,3.6062446,6.3788714,163.0724,166.39944,15.2,1015.7267,0.0,54.184437,0.0 +2024-09-28 12:00:00,3.4885528,6.5134473,152.70052,155.99284,14.45,1016.39856,0.0,57.45849,0.0 +2024-09-28 13:00:00,3.335416,6.6370173,139.86458,149.18436,13.5,1016.965,0.0,64.12413,0.0 +2024-09-28 14:00:00,2.9516943,6.3122897,128.8114,144.67328,12.9,1017.0463,0.0,66.91305,0.0 +2024-09-28 15:00:00,2.6617663,5.9171357,118.00909,138.76863,12.35,1016.8315,0.0,69.60702,0.0 +2024-09-28 16:00:00,2.570992,5.5932994,103.49575,132.10135,11.65,1016.61206,0.0,71.16068,0.0 +2024-09-28 17:00:00,3.3203917,7.0331364,108.43504,125.15895,11.35,1016.70197,0.0,68.4532,0.0 +2024-09-28 18:00:00,3.83471,7.7661123,112.21764,123.17852,11.25,1016.3022,0.0,68.43256,0.0 +2024-09-28 19:00:00,3.9385912,7.9832635,110.045334,120.902145,11.05,1015.8995,0.0,69.82774,0.0 +2024-09-28 20:00:00,4.087175,8.119421,104.886314,115.14475,10.85,1015.89343,0.0,70.27305,0.0 +2024-09-28 21:00:00,4.2994184,8.352245,98.69542,106.699326,10.55,1016.3803,0.0,71.19474,0.0 +2024-09-28 22:00:00,4.6173587,8.776247,94.96966,101.50195,10.35,1016.8697,0.0,73.41023,0.0 +2024-09-28 23:00:00,5.0089917,8.697701,93.43356,98.59583,11.35,1017.59436,0.0,70.85841,1.0 +2024-09-29 00:00:00,4.5135903,7.3934093,94.4473,96.21173,13.85,1018.46295,0.0,63.546997,1.0 +2024-09-29 01:00:00,4.7670746,6.285897,102.72435,101.93558,16.7,1018.3493,0.0,50.611687,1.0 +2024-09-29 02:00:00,4.4922156,5.736288,106.821495,104.64193,18.65,1018.1087,0.0,42.49997,1.0 +2024-09-29 03:00:00,3.25,4.0478387,112.61991,107.98743,20.05,1017.3556,0.0,37.757122,1.0 +2024-09-29 04:00:00,2.5124688,3.0647185,132.58046,123.6901,21.1,1016.29456,0.0,35.63754,1.0 +2024-09-29 05:00:00,2.745906,3.1953092,169.50858,159.86362,21.8,1015.4217,0.0,34.86028,1.0 +2024-09-29 06:00:00,5.4233294,6.569056,192.24231,188.31503,21.3,1014.81256,0.0,39.31276,1.0 +2024-09-29 07:00:00,8.185658,10.581234,193.78162,192.00018,19.35,1014.55853,0.0,49.78729,1.0 +2024-09-29 08:00:00,8.573505,11.39309,189.73692,189.0902,18.4,1014.3328,0.0,50.03843,1.0 +2024-09-29 09:00:00,7.850159,10.700117,180.36493,180.26773,17.9,1014.5168,0.0,50.76209,1.0 +2024-09-29 10:00:00,6.987131,10.505356,170.94218,170.13426,17.4,1014.7997,0.0,54.017456,1.0 +2024-09-29 11:00:00,7.3705497,11.346034,163.04007,163.88112,16.3,1015.26337,0.0,62.396633,0.0 +2024-09-29 12:00:00,7.036512,11.1154175,160.92122,161.64645,15.9,1015.74744,0.0,67.54263,0.0 +2024-09-29 13:00:00,6.3737745,10.341301,154.44008,156.0375,15.4,1015.9311,0.0,72.34949,0.0 +2024-09-29 14:00:00,6.0599093,9.95113,153.01219,154.07875,15.05,1015.8214,0.0,75.48704,0.0 +2024-09-29 15:00:00,5.6731825,9.529559,145.04927,147.64412,14.4,1015.3065,0.0,74.87647,0.0 +2024-09-29 16:00:00,5.1307898,9.015681,142.12495,145.1641,13.65,1014.6892,0.0,71.05876,0.0 +2024-09-29 17:00:00,4.4902673,8.250607,135.45108,138.19354,12.85,1014.3675,0.0,72.122185,0.0 +2024-09-29 18:00:00,3.9121606,7.5927596,128.77419,130.19199,12.05,1013.84784,0.0,74.47302,0.0 +2024-09-29 19:00:00,3.6619666,7.377838,124.992096,124.2286,11.6,1013.2393,0.0,73.88736,0.0 +2024-09-29 20:00:00,3.51639,7.44614,119.84584,116.73704,11.4,1012.93585,0.0,71.60388,0.0 +2024-09-29 21:00:00,3.3185086,7.27066,120.815636,114.802635,11.3,1012.9326,0.0,67.97048,0.0 +2024-09-29 22:00:00,3.1384711,7.0973587,120.65059,113.67561,11.15,1013.22565,0.0,63.368023,0.0 +2024-09-29 23:00:00,3.939543,7.400338,113.962494,107.700516,12.55,1013.4662,0.0,56.18409,1.0 +2024-09-30 00:00:00,3.6786547,6.1856694,121.097244,110.33931,15.45,1013.65155,0.0,48.55041,1.0 +2024-09-30 01:00:00,3.3589432,4.396021,134.39699,123.87085,18.9,1013.05786,0.0,42.42431,1.0 +2024-09-30 02:00:00,3.1945267,4.040421,140.07967,130.98573,22.0,1012.6503,0.0,36.0196,1.0 +2024-09-30 03:00:00,2.9584625,3.6431444,149.53453,133.33171,24.35,1011.6248,0.0,30.293917,1.0 +2024-09-30 04:00:00,3.7769036,4.318565,186.84268,174.68555,25.25,1010.4595,0.0,32.708942,1.0 +2024-09-30 05:00:00,6.2980156,8.104937,196.1329,189.22981,23.85,1009.4289,0.0,53.886406,1.0 +2024-09-30 06:00:00,7.676262,10.557107,193.94576,188.1684,22.9,1008.80725,0.0,59.13419,1.0 +2024-09-30 07:00:00,8.13895,11.502717,188.47847,185.48746,22.1,1008.38837,0.0,54.323242,1.0 +2024-09-30 08:00:00,7.400676,10.15197,180.7742,178.87119,21.75,1008.2794,0.0,56.597843,1.0 +2024-09-30 09:00:00,7.5059977,10.875892,177.70944,176.04584,20.65,1008.3475,0.0,60.747654,1.0 +2024-09-30 10:00:00,6.963117,10.965857,169.65842,167.35785,19.2,1008.4053,0.0,69.11175,1.0 +2024-09-30 11:00:00,6.992138,11.484337,163.37917,163.30067,18.05,1008.47156,0.0,70.25426,0.0 +2024-09-30 12:00:00,7.0260234,11.422128,163.8865,163.46884,17.65,1008.65845,0.0,74.19899,0.0 +2024-09-30 13:00:00,6.053924,10.501071,157.6713,158.19853,17.05,1009.2361,0.0,71.698555,0.0 +2024-09-30 14:00:00,5.0982842,9.325368,153.18373,154.25934,16.4,1008.9196,0.0,76.460106,0.0 +2024-09-30 15:00:00,4.0700126,8.073567,142.98924,144.83348,15.7,1008.4035,0.0,73.61699,0.0 +2024-09-30 16:00:00,2.9732137,6.8062468,137.72638,139.17053,14.85,1007.48596,0.0,70.1005,0.0 +2024-09-30 17:00:00,2.311385,5.983519,141.14662,138.04846,14.0,1006.5683,0.0,68.99342,0.0 +2024-09-30 18:00:00,1.9811614,5.3037724,137.04541,134.23619,13.05,1005.74695,0.0,69.508965,0.0 +2024-09-30 19:00:00,2.445915,4.5304523,139.14471,132.31616,11.9,1005.0185,0.0,68.566376,0.0 +2024-09-30 20:00:00,2.192031,4.3266616,135.0001,123.6901,11.9,1004.3245,0.0,59.673424,0.0 +2024-09-30 21:00:00,2.0426698,4.509989,111.541046,93.814,12.0,1003.93097,0.0,47.412815,0.0 +2024-09-30 22:00:00,2.4046829,3.952847,86.423744,55.304783,13.1,1003.7654,0.0,38.025204,0.0 +2024-09-30 23:00:00,1.4983325,3.6117861,25.709915,21.948761,15.65,1004.23706,0.0,57.169567,1.0 +2024-10-01 00:00:00,1.320038,3.8200133,335.37646,14.400064,19.3,1004.342,0.0,37.8042,1.0 +2024-10-01 01:00:00,3.0991933,4.854122,349.7779,2.361324,23.8,1003.6745,0.0,42.651985,1.0 +2024-10-01 02:00:00,3.3120992,4.2086225,298.88647,316.44406,25.05,1003.312,0.0,42.295406,1.0 +2024-10-01 03:00:00,5.402314,6.9001813,262.02,269.58484,23.05,1002.9598,0.0,45.527283,1.0 +2024-10-01 04:00:00,5.751956,7.5001664,268.5057,270.38196,22.1,1002.8341,0.0,51.536404,1.0 +2024-10-01 05:00:00,6.060115,7.6787043,259.06094,259.495,21.5,1002.8174,0.0,63.774876,1.0 +2024-10-01 06:00:00,6.659767,8.368543,249.7963,249.72433,21.1,1002.80615,0.0,69.038124,1.0 +2024-10-01 07:00:00,6.7529626,8.609588,243.62473,244.17906,20.35,1002.78503,0.1,71.37734,1.0 +2024-10-01 08:00:00,6.376715,8.120652,241.42549,241.69934,19.45,1002.5613,0.1,75.957436,1.0 +2024-10-01 09:00:00,5.2100863,6.7529626,243.18912,243.62473,18.65,1002.53864,0.0,76.56744,1.0 +2024-10-01 10:00:00,3.8745968,5.2021627,252.7341,252.0874,17.65,1002.6091,0.0,80.74255,1.0 +2024-10-01 11:00:00,2.5504901,4.551099,271.1233,271.259,16.8,1002.68365,0.0,84.37824,0.0 +2024-10-01 12:00:00,2.482438,4.6981378,288.8,286.6993,16.4,1002.9696,0.0,85.99148,0.0 +2024-10-01 13:00:00,4.3382025,7.0973587,295.97433,293.6756,16.5,1002.9725,0.0,79.802734,0.0 +2024-10-01 14:00:00,4.680011,7.5716577,306.74756,303.6901,16.35,1002.2741,0.0,77.71798,0.0 +2024-10-01 15:00:00,4.9175706,8.062258,317.06012,313.995,16.15,1001.57404,0.0,77.687515,0.0 +2024-10-01 16:00:00,5.5520267,8.791189,321.5819,319.15137,16.25,1000.6844,0.0,75.93463,0.0 +2024-10-01 17:00:00,5.9776664,9.439941,316.6946,314.7854,16.35,1000.09247,0.0,74.71044,0.0 +2024-10-01 18:00:00,7.6100264,11.473665,306.7194,305.42166,17.1,999.9155,0.1,68.92216,0.0 +2024-10-01 19:00:00,8.134495,12.163059,316.49426,314.3339,16.85,999.4127,0.0,71.18979,0.0 +2024-10-01 20:00:00,6.7675695,10.462314,325.84024,324.3349,16.45,998.707,0.0,73.99212,0.0 +2024-10-01 21:00:00,7.530106,11.721988,322.82565,320.53867,16.8,998.61786,0.0,70.01286,0.0 +2024-10-01 22:00:00,8.394343,12.81025,321.2869,319.90814,16.8,998.81616,0.2,72.843735,1.0 +2024-10-01 23:00:00,9.051243,13.543356,314.55243,313.95303,16.8,999.0145,0.3,75.52678,1.0 +2024-10-02 00:00:00,9.3744335,14.188904,303.6901,302.62604,15.7,999.4787,1.0,89.9197,1.0 +2024-10-02 01:00:00,7.6423163,10.991133,247.2936,246.1169,15.8,999.3823,3.0,89.927086,1.0 +2024-10-02 02:00:00,9.07772,12.858169,250.36731,250.2262,15.1,1000.3535,4.3,89.29157,1.0 +2024-10-02 03:00:00,8.105863,11.365298,248.65793,248.85384,14.95,1000.3492,1.9,86.97651,1.0 +2024-10-02 04:00:00,8.395981,11.162886,251.24126,251.72726,15.35,1000.5592,0.9,79.90411,1.0 +2024-10-02 05:00:00,8.778525,11.674973,250.0168,249.70235,15.5,1000.5636,0.5,71.40932,1.0 +2024-10-02 06:00:00,8.928606,12.094833,254.40712,254.41243,16.15,1000.6815,0.0,60.904907,1.0 +2024-10-02 07:00:00,9.43663,12.685918,257.1419,256.78534,16.0,1000.6771,0.1,58.63893,1.0 +2024-10-02 08:00:00,8.975661,12.224974,257.125,256.75946,15.8,1001.2665,0.0,59.392986,1.0 +2024-10-02 09:00:00,9.192388,12.587692,255.5102,255.74294,16.1,1001.9692,0.1,54.606255,1.0 +2024-10-02 10:00:00,8.22253,11.849261,256.63977,255.0841,14.0,1003.0977,0.1,63.58108,1.0 +2024-10-02 11:00:00,7.9690027,11.795974,251.33759,250.95055,14.75,1003.7148,0.1,61.61566,0.0 +2024-10-02 12:00:00,7.6537576,11.448144,252.51192,252.19803,14.5,1004.5999,0.0,61.979248,0.0 +2024-10-02 13:00:00,7.993904,11.861387,257.35458,256.84244,14.55,1004.6015,0.0,63.705692,0.0 +2024-10-02 14:00:00,8.301355,12.2386675,252.11061,252.15714,15.2,1004.71954,0.0,58.843204,0.0 +2024-10-02 15:00:00,8.53815,12.570302,251.56496,251.2046,15.1,1005.2125,0.0,59.22253,0.0 +2024-10-02 16:00:00,8.124192,11.8473625,248.32948,248.19853,15.2,1005.4137,0.0,60.47288,0.0 +2024-10-02 17:00:00,7.615773,11.220182,246.80139,246.63376,15.5,1005.2243,0.0,57.524307,0.0 +2024-10-02 18:00:00,8.297741,12.03173,244.67029,244.39339,15.45,1005.22266,0.0,58.503593,0.0 +2024-10-02 19:00:00,7.873532,11.341186,241.97041,241.85332,15.45,1005.1234,0.0,60.532597,0.0 +2024-10-02 20:00:00,7.795672,11.448689,239.98172,239.85172,15.3,1005.41656,0.0,62.58897,0.0 +2024-10-02 21:00:00,7.532928,11.031999,234.7275,234.22073,15.4,1005.7173,0.0,63.681366,0.0 +2024-10-02 22:00:00,7.3600273,10.780074,233.2857,232.91742,15.6,1006.51624,0.0,63.29711,1.0 +2024-10-02 23:00:00,6.817991,9.660486,230.35587,230.46024,15.7,1007.41187,0.0,61.00497,1.0 +2024-10-03 00:00:00,6.726812,9.239182,228.01286,227.85153,16.15,1008.3173,0.0,59.679916,1.0 +2024-10-03 01:00:00,6.7885933,8.94553,225.59674,225.67928,16.8,1008.9313,0.0,60.444637,1.0 +2024-10-03 02:00:00,5.9876957,7.6904163,228.72415,228.95435,17.3,1009.7392,0.1,59.354713,1.0 +2024-10-03 03:00:00,6.434672,8.23787,224.9999,224.7541,17.0,1009.9287,0.1,60.90029,1.0 +2024-10-03 04:00:00,5.5158863,6.930007,225.73444,225.58455,17.45,1010.14,0.0,58.993046,1.0 +2024-10-03 05:00:00,5.481788,6.9420815,231.66663,231.72684,17.6,1009.7478,0.2,59.22799,1.0 +2024-10-03 06:00:00,5.153882,6.504806,230.90614,230.9275,17.35,1009.443,0.0,60.982708,1.0 +2024-10-03 07:00:00,5.065817,6.4111233,228.60138,228.47789,17.4,1009.34534,0.1,61.19913,1.0 +2024-10-03 08:00:00,4.821307,6.1337185,229.20544,229.29749,17.5,1009.3482,0.0,60.2057,1.0 +2024-10-03 09:00:00,4.985228,6.4708967,225.4063,225.9391,17.05,1009.7319,0.0,61.117043,1.0 +2024-10-03 10:00:00,4.562072,6.258794,223.66785,224.02907,16.5,1009.9141,0.0,64.358345,1.0 +2024-10-03 11:00:00,3.9824615,6.075566,218.8845,219.32257,16.1,1010.39825,0.0,67.13356,0.0 +2024-10-03 12:00:00,3.7901187,5.8200088,216.41647,216.96843,16.2,1010.798,0.0,67.15445,0.0 +2024-10-03 13:00:00,3.2718496,5.396758,218.79657,219.73756,15.4,1011.0721,0.0,72.108696,0.0 +2024-10-03 14:00:00,3.451449,5.576065,218.53021,219.5424,15.5,1011.17413,0.0,72.36777,0.0 +2024-10-03 15:00:00,3.3600597,5.5700088,216.52895,216.97284,15.45,1010.875,0.0,71.87788,0.0 +2024-10-03 16:00:00,3.4532592,5.7142363,214.3804,214.66351,15.5,1010.48,0.0,71.40932,0.0 +2024-10-03 17:00:00,3.2035139,5.2841744,214.18617,214.59235,15.6,1010.18536,0.0,71.90566,0.0 +2024-10-03 18:00:00,2.8151376,4.7289004,213.40784,213.35403,15.65,1009.8894,0.0,73.36417,0.0 +2024-10-03 19:00:00,3.2649658,5.303301,207.3498,208.7397,15.7,1009.79175,0.0,71.20927,0.0 +2024-10-03 20:00:00,3.355965,5.434381,204.65588,205.62195,15.4,1009.78296,0.0,75.79588,0.0 +2024-10-03 21:00:00,2.9567719,4.9340653,198.74144,199.53674,15.25,1009.97687,0.0,78.323006,0.0 +2024-10-03 22:00:00,2.8146937,4.899235,192.308,194.1781,14.65,1010.4549,0.0,84.13718,1.0 +2024-10-03 23:00:00,3.1976554,4.383207,189.90411,191.18172,15.4,1011.2704,0.1,81.23684,1.0 +2024-10-04 00:00:00,3.0004165,3.8529208,179.04518,182.23112,16.05,1011.48773,0.0,77.672264,1.0 +2024-10-04 01:00:00,3.335416,4.1629314,203.87529,204.10223,17.0,1012.0112,0.1,74.82024,1.0 +2024-10-04 02:00:00,3.555981,4.3384905,207.64589,207.45091,17.8,1012.0344,0.2,70.206184,1.0 +2024-10-04 03:00:00,3.7831864,4.6089587,209.27516,208.51115,18.1,1011.94415,0.1,69.34804,1.0 +2024-10-04 04:00:00,3.9824615,4.897448,208.49554,207.3498,18.05,1011.7442,0.0,70.024254,1.0 +2024-10-04 05:00:00,4.09939,5.1041646,210.00484,209.32709,18.35,1011.4552,0.0,69.624794,1.0 +2024-10-04 06:00:00,3.7396524,4.565085,209.64977,208.8107,18.65,1011.1666,0.0,69.00319,1.0 +2024-10-04 07:00:00,3.6674242,4.4525275,205.8663,204.55043,18.6,1010.66907,0.0,68.99328,1.0 +2024-10-04 08:00:00,3.7047267,4.588028,201.37068,200.40997,18.4,1010.66345,0.0,69.63456,1.0 +2024-10-04 09:00:00,3.846102,4.876474,195.84314,195.46127,18.05,1010.8516,0.0,70.484924,1.0 +2024-10-04 10:00:00,3.736308,5.206006,195.52417,196.17223,17.6,1010.9378,0.0,72.272736,1.0 +2024-10-04 11:00:00,3.2314858,5.4171023,188.00464,189.02754,17.05,1011.2194,0.0,76.06423,0.0 +2024-10-04 12:00:00,3.2534597,5.7008767,177.35751,178.99493,16.5,1011.5008,0.0,81.646286,0.0 +2024-10-04 13:00:00,3.0842342,5.508176,160.09616,164.19742,16.1,1011.3899,0.0,85.127235,0.0 +2024-10-04 14:00:00,2.4789112,4.8548946,138.27058,147.61934,15.35,1010.9714,0.0,90.47956,0.0 +2024-10-04 15:00:00,2.0615528,4.210997,112.833694,132.594,14.45,1010.6472,0.0,92.506386,0.0 +2024-10-04 16:00:00,1.9525625,3.9962482,92.935616,121.701385,13.85,1010.332,0.0,93.38537,0.0 +2024-10-04 17:00:00,1.95,4.229953,90.0,122.93869,13.5,1010.2223,0.0,93.98239,0.0 +2024-10-04 18:00:00,1.833712,4.398295,101.003494,130.38928,13.45,1009.82446,0.0,93.3654,0.0 +2024-10-04 19:00:00,2.1868927,4.7405167,100.53913,127.71605,13.4,1009.6245,0.0,93.056755,0.0 +2024-10-04 20:00:00,2.45204,4.944188,92.33726,118.37914,13.2,1009.32104,0.0,93.660324,0.0 +2024-10-04 21:00:00,2.9004312,5.5036354,89.01226,114.70241,13.0,1009.2159,0.0,93.95954,0.0 +2024-10-04 22:00:00,3.0004165,5.8587537,89.04518,111.529076,12.95,1009.4129,0.0,93.34029,1.0 +2024-10-04 23:00:00,3.600347,6.3144674,89.2043,110.874725,13.9,1009.8377,0.0,92.17304,1.0 +2024-10-05 00:00:00,3.5128336,6.792827,94.89901,105.36614,16.05,1010.1986,0.0,86.79775,1.0 +2024-10-05 01:00:00,3.667424,4.785394,101.003494,100.84026,18.75,1010.0786,0.0,72.01111,1.0 +2024-10-05 02:00:00,3.354102,4.229066,116.56499,114.44395,20.65,1010.1327,0.0,61.95069,1.0 +2024-10-05 03:00:00,1.6224982,2.0886598,146.3099,132.0891,22.6,1009.98926,0.0,51.837852,1.0 +2024-10-05 04:00:00,3.1180923,3.6496572,195.81926,189.46225,22.15,1009.3814,0.0,56.882042,1.0 +2024-10-05 05:00:00,5.1229877,6.2677746,204.81418,201.03758,21.9,1008.9777,0.0,64.89914,1.0 +2024-10-05 06:00:00,6.0667124,7.6721897,203.81865,200.20651,21.55,1008.1745,0.0,65.24325,1.0 +2024-10-05 07:00:00,6.3878794,8.194205,198.71869,196.66583,21.15,1007.6672,0.0,64.5285,1.0 +2024-10-05 08:00:00,6.3837686,8.394343,191.74995,190.64056,20.25,1007.44354,0.0,67.765625,1.0 +2024-10-05 09:00:00,5.7035074,7.75258,182.0095,181.47824,19.7,1007.5273,0.0,68.09531,1.0 +2024-10-05 10:00:00,5.00025,7.458217,179.42708,177.31029,18.85,1007.8005,0.0,75.12909,1.0 +2024-10-05 11:00:00,4.900255,7.858276,171.78731,170.47781,17.85,1008.2675,0.0,82.87957,0.0 +2024-10-05 12:00:00,4.4127655,7.3389373,160.12773,160.08351,17.25,1008.746,0.0,87.75324,0.0 +2024-10-05 13:00:00,3.9537954,7.1632743,147.91785,150.75127,16.4,1009.11786,0.0,92.02139,0.0 +2024-10-05 14:00:00,3.75,7.0867834,143.13002,145.63716,16.05,1008.81024,0.0,91.70457,0.0 +2024-10-05 15:00:00,3.335416,6.650188,139.86458,143.5608,15.5,1008.3975,0.0,91.67064,0.0 +2024-10-05 16:00:00,2.9364095,6.16198,132.92996,138.28934,14.95,1008.0838,0.0,91.33898,0.0 +2024-10-05 17:00:00,2.5223997,5.7656307,129.3693,136.75696,14.35,1007.66956,0.0,91.300255,0.0 +2024-10-05 18:00:00,2.441823,5.7168612,132.5104,140.3228,13.9,1007.35876,0.0,92.17304,0.0 +2024-10-05 19:00:00,2.3430748,5.5056787,129.80553,140.52757,13.55,1007.05084,0.0,92.455635,0.0 +2024-10-05 20:00:00,2.5223997,5.7489133,129.3693,139.93929,13.35,1006.7473,0.0,93.05412,0.0 +2024-10-05 21:00:00,2.4964974,5.658622,122.73522,133.56796,13.15,1006.74164,0.0,93.043655,0.0 +2024-10-05 22:00:00,2.200568,5.1732483,111.317986,122.76849,13.05,1006.9368,0.0,93.03839,1.0 +2024-10-05 23:00:00,2.818244,5.0537114,115.20109,117.072,14.45,1007.47406,0.0,89.53294,1.0 +2024-10-06 00:00:00,2.2276669,3.3200152,135.90929,127.042564,16.95,1008.14233,0.0,80.91148,1.0 +2024-10-06 01:00:00,2.4351592,3.0413814,160.82089,152.59251,19.55,1008.21704,0.0,74.04339,1.0 +2024-10-06 02:00:00,3.35,4.031129,180.0,172.87508,21.6,1008.1757,0.0,67.81991,1.0 +2024-10-06 03:00:00,4.6778736,5.672081,190.46912,185.05716,22.6,1007.90643,0.0,66.30819,1.0 +2024-10-06 04:00:00,5.3851643,6.618535,195.06854,188.25244,23.0,1007.1239,0.0,67.8845,1.0 +2024-10-06 05:00:00,5.8821764,7.4821453,197.81898,190.78426,22.95,1006.6268,0.0,69.397644,1.0 +2024-10-06 06:00:00,6.278734,8.18917,197.13635,192.33908,22.55,1006.41736,0.0,68.88133,1.0 +2024-10-06 07:00:00,6.075566,8.162415,193.80754,189.51994,22.05,1006.10565,0.0,68.1277,1.0 +2024-10-06 08:00:00,5.9228373,7.9762144,191.68935,187.92683,21.5,1006.09045,0.0,69.78305,1.0 +2024-10-06 09:00:00,5.7177353,7.8040056,184.5139,181.83574,20.5,1006.3595,0.0,74.4428,1.0 +2024-10-06 10:00:00,5.0039983,7.420411,177.70944,175.74942,19.2,1006.7193,0.0,81.46648,1.0 +2024-10-06 11:00:00,4.4869256,7.6243033,165.80887,163.2287,18.05,1007.0831,0.0,87.54381,0.0 +2024-10-06 12:00:00,4.379783,7.668931,161.35811,160.9743,17.4,1007.75867,0.0,90.91203,0.0 +2024-10-06 13:00:00,4.1907635,7.7950306,160.48404,161.68118,16.95,1008.34064,0.0,90.88195,0.0 +2024-10-06 14:00:00,4.301744,7.7950306,160.30128,161.68118,16.65,1008.431,0.0,93.52285,0.0 +2024-10-06 15:00:00,3.8999999,7.215608,157.3801,159.30447,16.45,1008.12775,0.0,93.813446,0.0 +2024-10-06 16:00:00,3.166228,6.245999,158.70258,160.83974,16.05,1008.01697,0.0,93.49376,0.0 +2024-10-06 17:00:00,3.444198,6.5115285,166.56895,169.3804,15.95,1007.81573,0.0,93.188354,0.0 +2024-10-06 18:00:00,3.2649658,6.203225,152.6502,159.22766,15.8,1007.9105,0.0,92.880684,0.0 +2024-10-06 19:00:00,2.9124732,5.769748,145.49142,154.32323,15.3,1007.79645,0.0,93.15516,0.0 +2024-10-06 20:00:00,2.745906,5.5490994,146.88864,155.51334,15.0,1007.8872,0.0,93.13975,0.0 +2024-10-06 21:00:00,2.745906,5.5285625,146.88864,155.9849,14.7,1008.1757,0.0,93.12431,0.0 +2024-10-06 22:00:00,2.0506098,4.534865,135.0001,145.78424,14.2,1008.75586,0.0,93.402794,1.0 +2024-10-06 23:00:00,2.2343903,3.7047267,139.53786,148.24057,15.35,1009.38477,0.0,89.60203,1.0 +2024-10-07 00:00:00,1.4866068,2.0814657,160.34608,155.89777,17.3,1009.63995,0.0,82.813416,1.0 +2024-10-07 01:00:00,1.3152945,1.5976546,171.25392,159.86362,19.65,1009.2117,0.0,76.478615,1.0 +2024-10-07 02:00:00,3.6800137,4.2991276,216.7143,213.13562,20.9,1009.743,0.0,73.33097,1.0 +2024-10-07 03:00:00,5.2547593,6.6507516,206.56499,203.4814,20.4,1009.8279,0.0,73.71466,1.0 +2024-10-07 04:00:00,5.2810984,6.7446275,198.77812,195.4787,21.0,1009.6467,0.0,70.13558,1.0 +2024-10-07 05:00:00,6.136163,7.766595,194.1495,191.88864,21.55,1009.3647,0.0,68.02768,1.0 +2024-10-07 06:00:00,6.444571,8.21736,189.82765,187.34113,21.6,1008.9691,0.0,68.256096,1.0 +2024-10-07 07:00:00,6.576473,8.5089655,188.74608,186.74908,21.3,1009.0601,0.0,72.24034,1.0 +2024-10-07 08:00:00,6.5195856,8.453548,188.37859,186.45236,20.65,1008.94257,0.0,76.3918,1.0 +2024-10-07 09:00:00,5.921149,7.912806,184.84392,183.26009,19.6,1009.012,0.0,81.77748,1.0 +2024-10-07 10:00:00,5.5002275,7.750645,180.52084,179.26076,18.45,1009.1774,0.0,87.02352,1.0 +2024-10-07 11:00:00,4.6524186,7.1142464,178.15244,176.3735,18.0,1009.75946,0.0,88.9473,0.0 +2024-10-07 12:00:00,4.250294,6.804594,179.32597,177.89453,17.75,1010.34717,0.0,90.357574,0.0 +2024-10-07 13:00:00,3.9080048,6.609274,176.33229,176.9645,16.95,1011.0182,0.0,93.238945,0.0 +2024-10-07 14:00:00,3.368234,5.970971,174.03561,175.1966,16.85,1011.2137,0.0,93.2339,0.0 +2024-10-07 15:00:00,2.777139,5.2661657,166.46413,167.94325,16.6,1011.1072,0.0,93.52041,0.0 +2024-10-07 16:00:00,2.3879907,4.9117208,160.42679,165.2564,16.2,1010.99634,0.0,93.80185,0.0 +2024-10-07 17:00:00,2.2770596,4.8386464,160.76924,166.25093,15.85,1010.7876,0.0,94.08803,0.0 +2024-10-07 18:00:00,2.200568,4.8150806,158.68202,164.95355,15.7,1010.48596,0.0,93.7786,0.0 +2024-10-07 19:00:00,2.2388613,4.808326,156.29735,163.0724,15.75,1010.2889,0.0,93.17814,0.0 +2024-10-07 20:00:00,2.0573041,4.7127485,154.05775,162.71841,15.6,1010.2845,0.0,93.170494,0.0 +2024-10-07 21:00:00,1.767767,4.2059484,151.2603,161.99574,15.1,1010.46814,0.0,93.75052,0.0 +2024-10-07 22:00:00,1.6507574,3.794733,144.86572,161.56496,14.8,1010.7568,0.0,94.0412,1.0 +2024-10-07 23:00:00,1.9912307,3.1579266,141.1155,156.68227,16.8,1011.1129,0.0,90.871895,1.0 +2024-10-08 00:00:00,2.6119914,3.209751,174.50777,175.53293,18.45,1011.2601,0.0,82.68593,1.0 +2024-10-08 01:00:00,2.9546573,3.519233,203.9625,202.55728,19.75,1011.3963,0.0,74.31616,1.0 +2024-10-08 02:00:00,3.9246018,4.74368,214.09503,212.51749,20.55,1011.51843,0.0,70.72908,1.0 +2024-10-08 03:00:00,4.6647615,5.6435804,210.96368,209.74478,20.95,1011.4306,0.0,68.5662,1.0 +2024-10-08 04:00:00,5.1538815,6.2890778,210.29637,209.01027,21.3,1011.34125,0.0,66.03668,1.0 +2024-10-08 05:00:00,5.638484,6.9327126,208.61037,207.48901,21.4,1011.0466,0.0,63.959442,1.0 +2024-10-08 06:00:00,6.269968,7.8193665,203.49858,202.95808,21.0,1010.83685,0.0,64.28725,1.0 +2024-10-08 07:00:00,6.454843,8.159657,200.4003,199.32327,20.6,1010.7262,0.0,65.03973,1.0 +2024-10-08 08:00:00,6.1684685,7.912016,196.96623,196.14441,20.1,1010.81116,0.0,65.143936,1.0 +2024-10-08 09:00:00,5.8721805,7.61725,195.81143,195.22218,19.3,1011.185,0.0,67.132545,1.0 +2024-10-08 10:00:00,5.82795,7.850159,189.38144,189.16228,18.3,1011.55316,0.0,69.84345,1.0 +2024-10-08 11:00:00,4.762877,7.474122,184.2141,184.6044,17.5,1012.12494,0.0,72.49196,0.0 +2024-10-08 12:00:00,3.901282,6.8117547,181.46877,183.3664,17.15,1012.6106,0.0,72.4286,0.0 +2024-10-08 13:00:00,4.6542993,7.654084,177.53723,178.1283,16.6,1013.0905,0.0,76.24135,0.0 +2024-10-08 14:00:00,4.208622,7.1137195,170.42584,172.3256,16.15,1013.17645,0.0,76.168915,0.0 +2024-10-08 15:00:00,3.9223719,7.03438,162.95088,166.85275,15.8,1013.0671,0.0,75.36142,0.0 +2024-10-08 16:00:00,4.596194,7.7390246,165.5102,167.3106,15.8,1013.0671,0.0,76.86988,0.0 +2024-10-08 17:00:00,4.753946,7.712976,165.37909,166.50426,16.1,1013.17487,0.0,75.16274,0.0 +2024-10-08 18:00:00,5.203124,8.602325,160.34608,162.40749,15.7,1012.965,0.0,76.09617,0.0 +2024-10-08 19:00:00,5.2794414,8.541809,151.7361,153.585,15.75,1013.0655,0.0,76.60869,0.0 +2024-10-08 20:00:00,4.604889,7.490327,138.52155,142.59457,15.7,1013.0642,0.0,76.09617,0.0 +2024-10-08 21:00:00,4.604889,8.2439375,131.47845,137.21207,14.65,1013.42975,0.0,78.754395,0.0 +2024-10-08 22:00:00,5.315073,9.193476,131.18582,135.88132,14.45,1013.91956,0.0,79.24985,1.0 +2024-10-08 23:00:00,5.490446,8.834732,127.60047,130.17917,15.8,1014.5545,0.0,73.63457,1.0 +2024-10-09 00:00:00,6.8346543,9.276314,131.73788,131.94122,17.8,1014.9104,0.0,66.60041,1.0 +2024-10-09 01:00:00,7.3542504,9.723296,135.55084,135.62494,19.7,1014.96545,0.0,60.725136,1.0 +2024-10-09 02:00:00,6.576093,8.592002,135.0001,134.29277,21.55,1014.72046,0.0,53.649525,1.0 +2024-10-09 03:00:00,6.451744,8.340863,144.46223,142.3057,23.5,1013.8825,0.0,47.187412,1.0 +2024-10-09 04:00:00,6.498654,8.219793,161.14674,156.70987,24.75,1012.6277,0.0,44.50535,1.0 +2024-10-09 05:00:00,6.9817615,8.976775,168.85104,164.4929,25.15,1011.94446,0.0,44.90969,1.0 +2024-10-09 06:00:00,8.009994,10.551896,182.86235,178.91399,23.4,1011.49915,0.0,63.578613,1.0 +2024-10-09 07:00:00,8.421401,11.350111,184.08554,180.2524,22.95,1010.9909,0.0,64.09187,1.0 +2024-10-09 08:00:00,8.517776,11.800954,183.70213,180.72829,21.9,1010.763,0.0,65.52806,1.0 +2024-10-09 09:00:00,8.259691,11.634862,177.22426,175.56361,20.25,1011.31146,0.0,69.31758,1.0 +2024-10-09 10:00:00,7.615937,10.899656,172.45517,170.49454,19.15,1011.87506,0.0,76.646,1.0 +2024-10-09 11:00:00,7.821924,11.835962,166.31906,166.31596,17.8,1012.3319,0.0,78.95434,0.0 +2024-10-09 12:00:00,6.9300075,10.91444,163.65704,163.22525,17.45,1012.71844,0.0,79.16045,0.0 +2024-10-09 13:00:00,6.0166435,9.92585,158.5522,158.73448,17.0,1012.7054,0.0,84.127914,0.0 +2024-10-09 14:00:00,5.5454936,9.347192,153.204,153.98328,16.7,1012.2009,0.0,87.14032,0.0 +2024-10-09 15:00:00,4.470179,8.091044,143.6427,144.05063,16.3,1011.69336,0.0,85.98142,0.0 +2024-10-09 16:00:00,3.6554751,7.4330344,139.9938,137.72638,15.95,1011.0882,0.0,80.778145,0.0 +2024-10-09 17:00:00,3.4124773,7.35391,140.94687,135.0001,16.0,1010.5937,0.0,73.426125,0.0 +2024-10-09 18:00:00,3.0302641,7.017834,142.3737,130.95541,16.2,1009.80634,0.0,66.484055,0.0 +2024-10-09 19:00:00,3.0220027,6.9507194,141.04408,127.694305,16.45,1009.5161,0.0,60.975777,0.0 +2024-10-09 20:00:00,2.8319604,6.852919,137.86247,122.1826,16.6,1009.2231,0.0,56.24871,0.0 +2024-10-09 21:00:00,2.45204,6.369458,129.2072,112.135544,16.45,1009.417,0.0,54.510376,0.0 +2024-10-09 22:00:00,2.5387006,6.530697,122.12497,101.48196,16.55,1009.519,0.0,53.611794,1.0 +2024-10-09 23:00:00,2.9068882,6.101844,116.56499,91.4086,19.0,1010.0855,0.0,50.200485,1.0 +2024-10-10 00:00:00,2.7041636,5.6555285,123.6901,87.4665,22.05,1010.1721,0.0,47.420193,1.0 +2024-10-10 01:00:00,3.420526,5.0695167,74.74483,67.98867,25.7,1009.7775,0.0,41.233868,1.0 +2024-10-10 02:00:00,2.3505318,3.4300144,60.708733,53.297062,28.3,1009.6495,0.0,38.67817,1.0 +2024-10-10 03:00:00,1.05,1.8580904,360.0,23.805958,29.5,1009.1857,0.0,39.392788,1.0 +2024-10-10 04:00:00,2.8111386,2.5238857,231.49931,236.3099,29.1,1008.4805,0.0,55.37118,1.0 +2024-10-10 05:00:00,1.1543397,1.118034,265.03033,259.69522,27.8,1008.5449,0.0,63.342056,1.0 +2024-10-10 06:00:00,2.074247,1.7507142,195.37631,181.63654,28.05,1007.6588,0.0,65.1779,1.0 +2024-10-10 07:00:00,4.229953,5.3425183,241.01128,238.39255,26.4,1007.61426,0.0,66.25784,1.0 +2024-10-10 08:00:00,3.8278584,5.433691,203.8865,206.80077,25.55,1006.8968,0.0,59.005234,1.0 +2024-10-10 09:00:00,2.4824383,3.8762095,170.72748,173.33344,25.6,1007.4933,0.0,56.091908,1.0 +2024-10-10 10:00:00,2.630589,5.124451,171.25392,162.97939,24.5,1008.2568,0.0,60.27533,1.0 +2024-10-10 11:00:00,2.2825425,4.1164308,118.8107,130.07283,22.25,1008.88837,0.0,66.87402,0.0 +2024-10-10 12:00:00,2.0573041,4.5304523,64.05776,47.683834,22.5,1009.58966,0.0,61.96974,0.0 +2024-10-10 13:00:00,3.1484122,6.622877,79.93938,94.76356,21.55,1009.2655,0.0,57.29419,0.0 +2024-10-10 14:00:00,1.9006578,4.472136,63.435013,63.435013,20.2,1008.73126,0.0,62.868176,0.0 +2024-10-10 15:00:00,3.08099,6.616079,48.289345,42.856228,20.3,1008.43665,0.0,63.92543,0.0 +2024-10-10 16:00:00,4.0,8.341613,53.13002,50.106544,20.9,1007.95776,0.0,60.212715,0.0 +2024-10-10 17:00:00,5.1363897,9.995124,41.448174,38.704594,21.75,1007.48596,0.0,54.59187,0.0 +2024-10-10 18:00:00,5.456189,10.270589,41.28462,37.48363,22.15,1007.1994,0.0,51.549557,0.0 +2024-10-10 19:00:00,5.7987065,10.55758,44.301388,39.041214,21.85,1007.092,0.0,52.155716,0.0 +2024-10-10 20:00:00,6.5522895,11.621101,41.597137,37.658836,21.7,1007.0876,0.0,52.984524,0.0 +2024-10-10 21:00:00,6.948741,12.103098,32.660904,28.364796,21.8,1007.28876,0.0,54.24673,0.0 +2024-10-10 22:00:00,6.9065185,11.938383,34.3804,29.89361,21.45,1007.7749,0.0,58.02445,1.0 +2024-10-10 23:00:00,7.2201114,11.677436,36.552567,32.941597,22.45,1008.4973,0.0,57.70151,1.0 +2024-10-11 00:00:00,6.8104696,10.486181,37.543026,34.90257,24.65,1008.6576,0.0,53.396095,1.0 +2024-10-11 01:00:00,6.0508265,8.405355,35.923042,34.82457,28.15,1008.3561,0.0,43.99675,1.0 +2024-10-11 02:00:00,2.4026027,2.7189152,282.01144,302.22873,28.2,1008.65485,0.0,45.88793,1.0 +2024-10-11 03:00:00,3.5510561,3.9147158,237.65257,245.07155,26.65,1008.31555,0.0,59.8243,1.0 +2024-10-11 04:00:00,3.9118412,4.494441,234.88791,237.72438,26.25,1007.7093,0.0,60.487797,1.0 +2024-10-11 05:00:00,4.585303,5.9093146,242.03786,246.0375,25.45,1007.3899,0.0,56.055,1.0 +2024-10-11 06:00:00,3.407712,4.4300113,247.5741,253.61038,25.3,1007.08826,0.0,56.37698,1.0 +2024-10-11 07:00:00,3.4820971,4.3777847,248.96242,256.12244,24.7,1006.7743,0.0,58.992126,1.0 +2024-10-11 08:00:00,2.745906,3.6585517,259.50858,266.08182,24.15,1006.75903,0.0,59.429623,1.0 +2024-10-11 09:00:00,2.55,3.373796,270.0,276.80896,23.75,1007.04565,0.0,62.649876,1.0 +2024-10-11 10:00:00,2.252221,3.5923529,272.54474,278.8067,22.4,1007.30554,0.0,70.17759,1.0 +2024-10-11 11:00:00,1.990603,4.3911843,281.59213,277.8532,20.75,1007.85443,0.0,79.624985,0.0 +2024-10-11 12:00:00,1.6324829,3.925876,297.3498,276.58185,19.85,1008.4239,0.0,86.060036,0.0 +2024-10-11 13:00:00,1.6710774,2.1053503,308.92755,265.91446,18.05,1009.0666,0.0,93.58999,0.0 +2024-10-11 14:00:00,1.9723083,2.316247,300.46545,256.2637,17.45,1009.0492,0.0,95.36267,0.0 +2024-10-11 15:00:00,1.5508063,3.324154,290.77234,263.08887,17.75,1008.8596,0.0,95.071434,0.0 +2024-10-11 16:00:00,1.7269917,3.306055,292.1095,266.53183,17.3,1008.6483,0.0,95.66096,0.0 +2024-10-11 17:00:00,1.9962465,3.25,292.06796,270.0,16.75,1008.13635,0.0,97.17946,0.0 +2024-10-11 18:00:00,1.9319679,3.4091787,280.4374,265.7947,16.5,1007.8316,0.0,97.174095,0.0 +2024-10-11 19:00:00,1.8200275,4.0028114,254.05453,249.52763,17.25,1007.8534,0.0,96.269066,0.0 +2024-10-11 20:00:00,2.2472205,4.2722945,237.72438,235.0079,17.8,1007.86926,0.0,95.67723,0.0 +2024-10-11 21:00:00,2.0155644,4.101829,223.99501,224.01233,17.65,1008.1626,0.0,96.5856,0.0 +2024-10-11 22:00:00,2.3430748,4.2573466,219.80553,220.23628,17.75,1008.56213,0.0,96.89406,1.0 +2024-10-11 23:00:00,3.4003677,4.4407206,216.02747,215.83774,18.6,1009.18146,0.0,92.73393,1.0 +2024-10-12 00:00:00,3.3143628,4.104875,213.92984,214.07724,19.7,1009.41156,0.0,83.36357,1.0 +2024-10-12 01:00:00,3.5846896,4.3477006,210.1413,210.39865,20.45,1009.9287,0.0,73.48754,1.0 +2024-10-12 02:00:00,3.8330796,4.5708313,210.57915,210.21124,21.2,1009.9498,0.0,68.17622,1.0 +2024-10-12 03:00:00,4.924429,5.973692,209.16751,208.49554,21.4,1009.7572,0.0,66.484505,1.0 +2024-10-12 04:00:00,5.769748,7.0471625,205.67677,204.74672,21.75,1009.3704,0.0,67.41669,1.0 +2024-10-12 05:00:00,5.818075,7.1352997,208.76755,208.00154,21.6,1008.9691,0.0,64.83464,1.0 +2024-10-12 06:00:00,6.015189,7.470107,206.139,205.36438,21.4,1008.4679,0.0,65.21123,1.0 +2024-10-12 07:00:00,6.296825,7.8771825,200.44963,200.04533,20.8,1008.05414,0.0,67.65824,1.0 +2024-10-12 08:00:00,6.464132,8.210054,194.78873,194.45943,20.3,1008.2383,0.0,67.995544,1.0 +2024-10-12 09:00:00,6.471862,8.443488,191.13626,190.57791,19.4,1008.5102,0.0,70.74104,1.0 +2024-10-12 10:00:00,6.321788,8.598837,188.64272,188.69542,18.4,1008.77924,0.0,75.2983,1.0 +2024-10-12 11:00:00,5.6641417,8.421401,184.0495,184.08554,17.7,1009.1556,0.0,78.93991,0.0 +2024-10-12 12:00:00,5.05099,7.802564,178.8656,178.53123,17.4,1009.74207,0.0,79.15333,0.0 +2024-10-12 13:00:00,4.7214932,7.2292805,174.53099,174.84154,17.3,1010.0367,0.0,74.8707,0.0 +2024-10-12 14:00:00,4.4138985,6.9679623,175.45204,175.88518,16.95,1009.8282,0.0,76.79843,0.0 +2024-10-12 15:00:00,4.25,6.9584484,171.20267,172.56868,16.8,1009.6254,0.0,77.02663,0.0 +2024-10-12 16:00:00,3.9223716,6.4855614,168.9766,170.68298,16.75,1009.0289,0.0,75.02418,0.0 +2024-10-12 17:00:00,3.49285,6.0798845,166.75948,168.13564,16.5,1008.52576,0.0,74.982285,0.0 +2024-10-12 18:00:00,3.2256782,5.7280016,161.00325,163.77974,16.35,1007.82745,0.0,75.20445,0.0 +2024-10-12 19:00:00,2.5942245,4.88467,152.44728,157.10942,15.95,1007.51825,0.0,77.65698,0.0 +2024-10-12 20:00:00,1.9602295,3.8551912,127.74687,136.5765,15.45,1007.7017,0.0,80.71097,0.0 +2024-10-12 21:00:00,2.2588713,3.7513332,95.07952,111.09241,15.0,1007.9863,0.0,82.261345,0.0 +2024-10-12 22:00:00,2.4622145,4.0521603,77.09259,105.75124,13.8,1008.1492,0.0,85.44349,1.0 +2024-10-12 23:00:00,2.557831,4.0028114,85.51548,110.47237,15.4,1008.49384,0.0,77.572716,1.0 +2024-10-13 00:00:00,2.1100948,2.7658632,126.32692,130.60121,17.65,1008.85675,0.0,68.35211,1.0 +2024-10-13 01:00:00,2.6967573,3.281006,190.68486,187.88304,18.85,1008.9906,0.0,61.1305,1.0 +2024-10-13 02:00:00,3.1216984,3.758989,211.90807,208.61037,20.05,1008.82635,0.0,55.98827,1.0 +2024-10-13 03:00:00,3.677635,4.398295,223.89838,220.38927,20.85,1008.5516,0.0,52.939117,1.0 +2024-10-13 04:00:00,4.0459857,4.7423625,230.01317,227.56381,20.6,1008.2467,0.0,56.68501,1.0 +2024-10-13 05:00:00,4.140048,4.9744344,232.85323,230.7106,20.7,1007.8529,0.0,57.462307,1.0 +2024-10-13 06:00:00,4.7565746,5.7812195,230.11737,229.56003,20.8,1007.35986,0.0,57.10967,1.0 +2024-10-13 07:00:00,5.1363897,6.3366,228.55183,227.87843,20.4,1006.9517,0.0,57.768505,1.0 +2024-10-13 08:00:00,5.2709103,6.5795135,226.92194,226.8476,19.85,1007.03546,0.0,58.401676,1.0 +2024-10-13 09:00:00,5.4856634,6.975851,222.41415,221.80397,18.95,1007.2081,0.0,64.47004,1.0 +2024-10-13 10:00:00,5.18001,6.8600287,216.75937,216.70294,18.35,1007.48834,0.0,67.156166,1.0 +2024-10-13 11:00:00,4.5961943,6.3631754,210.7499,210.19153,17.95,1007.77454,0.0,69.09104,0.0 +2024-10-13 12:00:00,4.159327,6.484597,207.18103,206.56499,17.35,1008.0546,0.0,72.703125,0.0 +2024-10-13 13:00:00,4.24323,6.138811,201.42535,200.50151,17.5,1008.15814,0.0,69.91771,0.0 +2024-10-13 14:00:00,4.0804415,5.9297976,197.10281,197.67114,17.3,1007.95416,0.0,71.04001,0.0 +2024-10-13 15:00:00,4.317406,6.100205,193.39252,194.7197,17.3,1007.7558,0.0,69.19024,0.0 +2024-10-13 16:00:00,3.104835,5.4947705,194.93147,195.3009,16.25,1007.4277,0.0,74.69349,0.0 +2024-10-13 17:00:00,3.2984846,5.639592,194.03627,194.89874,16.35,1006.73663,0.0,73.24549,0.0 +2024-10-13 18:00:00,3.0037477,5.174215,182.86235,185.54523,16.6,1006.14886,0.0,69.51125,0.0 +2024-10-13 19:00:00,2.6234517,4.852319,172.33328,178.22858,16.5,1005.84827,0.0,69.722694,0.0 +2024-10-13 20:00:00,2.4046829,4.86621,183.57626,189.46225,16.45,1005.8469,0.0,70.17734,0.0 +2024-10-13 21:00:00,2.7041636,4.986231,183.17976,186.91113,16.75,1006.153,0.0,70.235344,0.0 +2024-10-13 22:00:00,2.5504901,4.7095647,181.12328,183.65215,16.85,1006.4537,0.0,72.85268,1.0 +2024-10-13 23:00:00,3.1196954,4.136726,186.4415,187.64032,18.0,1007.08185,0.0,68.42264,1.0 +2024-10-14 00:00:00,3.3593154,4.183898,194.6568,194.5345,19.0,1007.507,0.0,63.42829,1.0 +2024-10-14 01:00:00,3.3421547,4.0301986,218.92755,217.43864,20.4,1007.7451,0.0,56.635315,1.0 +2024-10-14 02:00:00,4.0140376,4.788789,230.55997,229.65833,20.85,1008.15485,0.0,55.6352,1.0 +2024-10-14 03:00:00,4.6738634,5.644688,235.45984,235.46527,21.1,1008.26105,0.0,56.066227,1.0 +2024-10-14 04:00:00,4.8127437,5.894277,237.30054,237.11876,21.0,1007.96063,0.0,56.784218,1.0 +2024-10-14 05:00:00,4.95101,6.074537,236.95187,237.09476,21.15,1007.4688,0.0,55.527397,1.0 +2024-10-14 06:00:00,4.8708315,5.9518905,234.18875,234.57414,21.35,1006.97864,0.0,54.85049,1.0 +2024-10-14 07:00:00,4.6002717,5.6703176,232.50728,232.52374,21.35,1006.5819,0.0,54.31059,1.0 +2024-10-14 08:00:00,4.4601007,5.5301447,232.74463,232.71559,21.0,1006.47296,0.0,56.22616,1.0 +2024-10-14 09:00:00,4.92062,6.262787,227.88304,227.26477,20.4,1007.0509,0.0,59.897987,1.0 +2024-10-14 10:00:00,5.591288,7.6216793,218.09972,218.07283,19.55,1007.42365,0.0,65.881454,1.0 +2024-10-14 11:00:00,3.8849065,5.453898,211.84901,211.50421,19.7,1007.7256,0.0,66.5613,0.0 +2024-10-14 12:00:00,3.8967936,5.9634304,213.48619,213.02386,19.6,1007.9211,0.0,69.64096,0.0 +2024-10-14 13:00:00,1.9525625,3.9223719,193.32454,197.04912,17.75,1008.1654,0.0,76.17679,0.0 +2024-10-14 14:00:00,3.2128649,5.378197,200.97357,200.11972,17.55,1007.9614,0.0,86.10636,0.0 +2024-10-14 15:00:00,2.4667792,4.5853024,197.70052,198.43504,17.25,1007.655,0.0,91.48508,0.0 +2024-10-14 16:00:00,2.2461078,4.45926,196.82149,197.62239,16.8,1007.2454,0.1,93.231384,0.0 +2024-10-14 17:00:00,2.214159,4.4553337,186.48297,189.0394,16.65,1006.94354,0.0,93.22382,0.0 +2024-10-14 18:00:00,1.8668154,4.157523,172.30405,176.55269,16.25,1006.53516,0.0,93.80418,0.0 +2024-10-14 19:00:00,1.6224982,3.5003572,146.3099,158.19853,15.2,1006.20703,0.0,94.66949,0.0 +2024-10-14 20:00:00,1.8506756,3.2330327,128.41809,148.27644,14.5,1006.3849,0.0,95.25825,0.0 +2024-10-14 21:00:00,1.6643317,3.1340866,122.73522,146.05637,14.55,1006.9814,0.0,95.26003,0.0 +2024-10-14 22:00:00,1.372953,3.0805843,123.11135,144.24602,15.15,1007.69324,0.0,94.667465,1.0 +2024-10-14 23:00:00,2.3200216,2.9706903,127.11694,133.63614,16.8,1008.4354,0.0,90.00071,1.0 +2024-10-15 00:00:00,2.996665,3.7366428,154.2901,155.49261,18.4,1008.77924,0.0,78.026955,1.0 +2024-10-15 01:00:00,3.0602288,3.7084365,184.6858,183.86539,20.25,1009.0304,0.0,57.731762,1.0 +2024-10-15 02:00:00,2.7280946,3.1579266,206.09537,203.31773,21.25,1008.761,0.0,51.826195,1.0 +2024-10-15 03:00:00,2.8991377,3.21753,224.9999,224.37048,21.75,1008.18024,0.0,48.781784,1.0 +2024-10-15 04:00:00,3.6335244,4.1880784,235.65384,236.68936,21.9,1007.2916,0.0,47.85601,1.0 +2024-10-15 05:00:00,4.1880784,4.9135017,236.68936,238.73633,22.0,1006.89777,0.0,46.46566,1.0 +2024-10-15 06:00:00,4.4936066,5.3688917,235.42574,237.93808,21.95,1006.4003,0.0,47.07736,1.0 +2024-10-15 07:00:00,5.233068,6.399414,224.22588,225.31653,21.3,1005.9855,0.0,50.64732,1.0 +2024-10-15 08:00:00,5.3265843,6.715095,212.34741,211.9149,20.45,1006.0608,0.0,54.802895,1.0 +2024-10-15 09:00:00,4.651881,5.8636594,205.4633,204.16092,19.8,1005.8441,0.0,57.05106,1.0 +2024-10-15 10:00:00,3.7121422,4.852319,207.25525,206.30095,19.0,1005.82104,0.0,60.96333,1.0 +2024-10-15 11:00:00,2.4667792,4.244997,197.70052,195.01842,17.85,1005.689,0.0,67.49649,0.0 +2024-10-15 12:00:00,1.8062391,4.0028114,175.23645,182.14754,17.1,1005.7665,0.0,72.41952,0.0 +2024-10-15 13:00:00,2.071835,4.5135903,171.67444,175.5527,16.4,1005.2504,0.0,73.73972,0.0 +2024-10-15 14:00:00,1.7102631,3.9906142,127.875046,142.12495,15.65,1005.03033,0.0,76.84626,0.0 +2024-10-15 15:00:00,2.1662178,2.9706903,108.85326,133.63614,14.2,1004.5911,0.0,83.2561,0.0 +2024-10-15 16:00:00,0.49244288,1.118034,66.037506,169.6952,16.0,1004.24713,0.0,72.6997,0.0 +2024-10-15 17:00:00,0.6519202,1.1067971,355.60138,251.56496,15.95,1003.8491,0.0,72.44987,0.0 +2024-10-15 18:00:00,1.1597414,1.0307764,7.4313188,284.03625,13.65,1003.1868,0.0,83.46714,0.0 +2024-10-15 19:00:00,1.3462912,1.1672618,21.801476,313.26434,13.15,1002.577,0.0,86.804825,0.0 +2024-10-15 20:00:00,1.4916433,1.7564168,39.55964,355.10098,13.3,1002.28406,0.0,87.10746,0.0 +2024-10-15 21:00:00,2.7280946,3.054914,48.715385,21.10492,12.95,1001.877,0.0,90.60788,0.0 +2024-10-15 22:00:00,3.1484125,4.8023434,32.680546,1.7898695,13.3,1001.88745,0.0,90.33388,1.0 +2024-10-15 23:00:00,3.7499998,5.8821764,16.26028,342.18103,16.05,1001.9679,0.0,79.47869,1.0 +2024-10-16 00:00:00,4.6872168,6.280127,326.3099,322.76508,18.95,1002.1503,0.0,69.062454,1.0 +2024-10-16 01:00:00,5.4113307,7.091192,305.5993,305.81955,19.15,1001.6601,0.9,70.92389,1.0 +2024-10-16 02:00:00,7.2543087,9.515383,304.89502,304.94275,19.4,1001.36957,0.5,70.51196,1.0 +2024-10-16 03:00:00,6.96563,9.263504,309.17365,309.9639,18.8,1000.8567,1.0,75.36412,1.0 +2024-10-16 04:00:00,6.3411355,9.331934,322.04572,321.9634,17.3,999.82227,1.2,88.891045,1.0 +2024-10-16 05:00:00,7.9832635,11.5596285,300.90213,301.55875,17.5,999.3321,4.0,91.79298,1.0 +2024-10-16 06:00:00,8.162414,11.340414,283.09985,282.99463,17.75,999.2401,2.6,87.51687,1.0 +2024-10-16 07:00:00,9.250541,12.301626,269.3806,269.06845,19.45,998.9909,0.0,71.21049,1.0 +2024-10-16 08:00:00,8.78934,11.944141,261.82388,261.08978,19.2,999.2812,0.5,64.10218,1.0 +2024-10-16 09:00:00,10.5746155,14.686813,255.7666,255.20674,19.35,999.5832,0.1,56.939346,1.0 +2024-10-16 10:00:00,9.101236,13.082909,242.87195,242.45572,17.6,1000.52496,0.0,71.80019,1.0 +2024-10-16 11:00:00,8.53361,12.640016,240.1303,239.5805,17.4,1001.1143,0.0,67.18086,0.0 +2024-10-16 12:00:00,7.8492036,11.732433,235.90497,235.7681,17.65,1001.91486,0.0,61.874588,0.0 +2024-10-16 13:00:00,7.5314345,11.208144,225.80684,225.54214,17.15,1002.99133,0.1,72.667145,0.0 +2024-10-16 14:00:00,6.9341545,10.752907,218.85338,218.20216,17.25,1003.19244,0.0,68.95204,0.0 +2024-10-16 15:00:00,6.3790674,9.887618,213.81467,213.449,17.4,1003.296,0.0,67.6272,0.0 +2024-10-16 16:00:00,6.074743,9.499737,214.60574,214.2756,17.3,1003.39233,0.0,68.0558,0.0 +2024-10-16 17:00:00,5.985399,9.098489,210.63535,210.36967,17.65,1003.2041,0.0,69.259415,0.0 +2024-10-16 18:00:00,5.1022058,8.214165,204.30453,204.06873,17.45,1002.8015,0.0,70.602135,0.0 +2024-10-16 19:00:00,5.2376046,8.415462,200.68416,200.1577,17.2,1002.99286,0.0,74.365036,0.0 +2024-10-16 20:00:00,5.3602705,8.411897,197.92801,198.00426,17.25,1003.49,0.0,75.35382,0.0 +2024-10-16 21:00:00,5.03314,8.076664,193.20793,193.60612,16.8,1004.1712,0.0,79.325584,0.0 +2024-10-16 22:00:00,4.570558,7.472951,190.08054,190.40765,16.7,1005.06085,0.0,81.14206,1.0 +2024-10-16 23:00:00,4.9520197,6.8447056,191.65027,191.80241,17.9,1006.0873,0.0,75.706856,1.0 +2024-10-17 00:00:00,5.5301447,7.2761602,194.6645,194.32275,18.45,1006.7973,0.1,73.13743,1.0 +2024-10-17 01:00:00,5.700877,7.385459,195.25517,194.50668,19.25,1007.5143,0.4,72.10213,1.0 +2024-10-17 02:00:00,5.9550395,7.550165,203.76712,202.99933,20.35,1008.0415,0.2,65.62286,1.0 +2024-10-17 03:00:00,5.9036007,7.379024,207.21603,206.56499,20.75,1008.25116,0.0,63.816597,1.0 +2024-10-17 04:00:00,5.660389,6.9971423,212.00534,210.96368,21.3,1008.26666,0.0,60.898846,1.0 +2024-10-17 05:00:00,5.271859,6.4764957,215.34825,214.30354,21.2,1008.46216,0.0,60.67756,1.0 +2024-10-17 06:00:00,4.82001,5.900212,216.98885,216.38445,20.9,1008.2553,0.0,61.40421,1.0 +2024-10-17 07:00:00,4.7246695,5.801939,219.41737,218.3514,20.6,1008.1476,0.0,61.93926,1.0 +2024-10-17 08:00:00,5.05099,6.242595,215.73557,215.21768,20.1,1008.4309,0.0,63.67301,1.0 +2024-10-17 09:00:00,5.121035,6.5743823,207.31552,207.1496,19.3,1008.8049,0.0,64.97138,1.0 +2024-10-17 10:00:00,4.570832,6.151626,199.82256,199.46596,18.35,1009.1742,0.0,66.27779,1.0 +2024-10-17 11:00:00,3.6687872,6.1061444,197.44728,196.65439,17.35,1009.5422,0.0,70.815895,0.0 +2024-10-17 12:00:00,2.942788,5.3935146,189.78233,190.68486,16.9,1010.02496,0.0,71.90754,0.0 +2024-10-17 13:00:00,2.700463,5.3190694,181.06088,184.85301,16.0,1010.5937,0.0,75.893936,0.0 +2024-10-17 14:00:00,2.8017852,5.6142673,177.95464,184.08554,15.6,1010.48285,0.0,76.07995,0.0 +2024-10-17 15:00:00,2.795085,5.7035074,169.6952,177.9905,15.3,1010.1764,0.0,76.53698,0.0 +2024-10-17 16:00:00,2.6856098,5.542788,155.82089,166.96664,14.85,1009.8659,0.0,78.52308,0.0 +2024-10-17 17:00:00,2.6315393,5.5036354,141.17017,155.29759,14.35,1009.4544,0.0,80.56199,0.0 +2024-10-17 18:00:00,2.147091,4.7405167,117.75845,142.28395,13.55,1008.9349,0.0,83.45532,0.0 +2024-10-17 19:00:00,2.2005682,4.295637,91.301926,129.80553,12.9,1008.6181,0.0,84.781334,0.0 +2024-10-17 20:00:00,2.1965883,3.758989,78.178535,118.61037,12.45,1008.5053,0.0,86.44813,0.0 +2024-10-17 21:00:00,2.5773048,3.981206,71.916466,101.59215,12.05,1008.69183,0.0,88.16021,0.0 +2024-10-17 22:00:00,3.0842342,4.956309,73.033775,92.89121,12.0,1009.2853,0.0,87.56827,1.0 +2024-10-17 23:00:00,3.7980258,5.8806887,69.17903,84.14409,14.3,1009.8494,0.0,77.92054,1.0 +2024-10-18 00:00:00,3.2984846,4.5304523,75.96373,79.18617,17.2,1010.3313,0.0,66.03374,1.0 +2024-10-18 01:00:00,3.1575305,3.9714608,100.95402,100.88548,19.05,1010.1862,0.0,59.18245,1.0 +2024-10-18 02:00:00,2.074247,2.6476402,105.376305,100.88548,20.95,1009.84375,0.0,52.26612,1.0 +2024-10-18 03:00:00,0.99624294,1.2020816,162.47433,135.0001,22.55,1009.3929,0.0,47.084576,1.0 +2024-10-18 04:00:00,3.1100645,3.4132097,216.50153,211.82741,23.15,1008.9134,0.0,48.674816,1.0 +2024-10-18 05:00:00,5.561025,6.7055945,213.26144,210.96368,21.85,1008.778,0.0,59.075863,1.0 +2024-10-18 06:00:00,5.500909,6.8660393,207.03078,205.44536,21.45,1008.37,0.0,59.173096,1.0 +2024-10-18 07:00:00,5.1429563,6.397656,206.56499,204.96275,21.25,1008.16595,0.0,59.31888,1.0 +2024-10-18 08:00:00,4.8787804,6.0730963,204.20097,202.76505,20.6,1008.1476,0.0,61.93926,1.0 +2024-10-18 09:00:00,4.526036,5.776028,196.03241,196.08173,19.65,1008.2199,0.0,65.26001,1.0 +2024-10-18 10:00:00,4.2005954,5.71358,188.90164,188.55548,18.75,1008.4918,0.0,71.31161,1.0 +2024-10-18 11:00:00,3.463019,6.0667124,175.03035,175.74625,17.45,1008.8508,0.0,78.6479,0.0 +2024-10-18 12:00:00,2.7060118,5.408558,163.90912,166.0922,16.8,1009.1296,0.0,83.29161,0.0 +2024-10-18 13:00:00,2.8622541,5.7293105,152.98741,159.03421,16.35,1009.21576,0.0,87.67328,0.0 +2024-10-18 14:00:00,2.7189152,5.757821,147.77127,156.99738,15.8,1009.19965,0.0,89.927086,0.0 +2024-10-18 15:00:00,2.6201146,5.6189413,138.09415,150.69789,15.4,1008.69214,0.0,90.48311,0.0 +2024-10-18 16:00:00,2.5495098,5.4801917,115.55992,135.36961,14.85,1008.1801,0.0,91.332535,0.0 +2024-10-18 17:00:00,2.5164459,5.418718,110.95586,131.63344,14.35,1007.66956,0.0,92.19934,0.0 +2024-10-18 18:00:00,2.5347583,5.49295,104.85866,124.9921,14.0,1006.7666,0.0,91.27755,0.0 +2024-10-18 19:00:00,2.3900838,5.3807526,105.78082,123.247086,13.55,1006.2576,0.0,90.649765,0.0 +2024-10-18 20:00:00,2.3420076,5.3127203,106.11349,125.03627,13.35,1006.2515,0.0,89.44757,0.0 +2024-10-18 21:00:00,2.267708,5.150243,104.03627,126.313736,13.3,1006.34955,0.0,88.5612,0.0 +2024-10-18 22:00:00,2.2321515,5.021952,105.59287,125.27251,13.45,1006.75055,0.0,86.54659,1.0 +2024-10-18 23:00:00,2.84605,5.062855,108.43504,124.94574,15.45,1007.2059,0.0,78.61182,1.0 +2024-10-19 00:00:00,2.2896507,3.8849065,121.60746,121.849014,18.0,1007.37933,0.0,67.7502,1.0 +2024-10-19 01:00:00,2.687936,3.451449,133.49263,128.53021,21.0,1007.4647,0.0,57.535885,1.0 +2024-10-19 02:00:00,2.0670028,2.5811818,147.84773,135.78474,23.6,1007.0415,0.0,50.094124,1.0 +2024-10-19 03:00:00,2.3286262,2.4505103,194.93147,178.83089,25.05,1006.5853,0.0,48.864574,1.0 +2024-10-19 04:00:00,5.1198144,5.948319,211.82741,205.91882,24.2,1006.1652,0.0,59.06239,1.0 +2024-10-19 05:00:00,6.44748,8.217208,203.78204,201.41304,22.9,1005.73254,0.0,62.660507,1.0 +2024-10-19 06:00:00,5.8122716,7.3859663,201.70995,199.78436,22.7,1005.42957,0.0,59.6624,1.0 +2024-10-19 07:00:00,5.6135993,7.1221485,197.62811,195.89021,22.55,1005.128,0.0,60.013824,1.0 +2024-10-19 08:00:00,5.2540464,6.6940274,196.02036,193.82867,21.75,1004.9072,0.0,61.999687,1.0 +2024-10-19 09:00:00,5.0224495,6.6680207,189.74358,188.19078,20.5,1005.0702,0.0,71.17592,1.0 +2024-10-19 10:00:00,4.4780016,6.2243476,186.41075,185.06934,19.6,1005.3425,0.0,77.20979,1.0 +2024-10-19 11:00:00,3.550352,6.2507997,180.80692,179.08337,18.3,1005.70197,0.0,85.35849,0.0 +2024-10-19 12:00:00,2.9274564,5.6435804,172.14677,172.87508,18.0,1006.09015,0.0,88.9473,0.0 +2024-10-19 13:00:00,1.8200275,4.47493,159.07542,166.42955,16.65,1006.051,0.0,93.22382,0.0 +2024-10-19 14:00:00,2.0670028,3.710795,147.84773,165.96373,15.35,1005.6165,0.0,94.675514,0.0 +2024-10-19 15:00:00,2.1569655,3.2901368,135.9391,163.21727,14.95,1005.2081,0.0,94.96645,0.0 +2024-10-19 16:00:00,2.2276669,3.275668,134.09071,167.66092,14.4,1004.7954,0.0,94.94547,0.0 +2024-10-19 17:00:00,2.3900838,3.0207615,127.34943,167.57407,13.8,1004.1828,0.0,96.17003,0.0 +2024-10-19 18:00:00,1.9678669,2.5739074,117.216034,172.1848,14.05,1003.8926,0.0,95.86466,0.0 +2024-10-19 19:00:00,1.2041595,2.3837993,94.76356,170.34018,14.1,1003.5967,0.0,97.75506,0.0 +2024-10-19 20:00:00,1.054751,1.9924859,84.55976,162.47433,15.25,1003.6304,0.0,96.21212,0.0 +2024-10-19 21:00:00,1.17047,1.1661904,70.01681,120.96369,15.35,1004.129,0.0,96.215004,0.0 +2024-10-19 22:00:00,1.3453624,0.70710677,48.01287,44.999897,15.45,1004.8259,0.0,96.839355,1.0 +2024-10-19 23:00:00,1.9678669,1.746425,27.216026,13.240531,16.0,1005.53625,0.0,97.787506,1.0 +2024-10-20 00:00:00,1.054751,1.1884865,354.55975,345.3791,18.15,1005.4001,0.0,86.16577,1.0 +2024-10-20 01:00:00,2.0573041,2.5044959,295.94223,296.05344,20.3,1004.8663,0.0,72.99171,1.0 +2024-10-20 02:00:00,3.427098,4.136726,293.1986,296.56497,21.75,1004.70886,0.0,63.624126,1.0 +2024-10-20 03:00:00,4.9015307,6.045246,288.43503,290.83344,22.4,1004.9252,0.0,60.367867,1.0 +2024-10-20 04:00:00,6.0878983,7.638226,287.69098,289.50253,22.45,1004.72833,0.0,61.75906,1.0 +2024-10-20 05:00:00,7.06983,8.988881,289.84473,290.85452,22.95,1004.5439,0.0,58.7653,1.0 +2024-10-20 06:00:00,7.316078,9.530084,294.63837,294.8171,22.35,1004.32874,0.0,61.33918,1.0 +2024-10-20 07:00:00,7.62709,10.107918,295.22107,295.80447,22.4,1004.1317,0.0,60.563297,1.0 +2024-10-20 08:00:00,8.311739,11.246444,293.01758,293.03137,21.9,1004.6138,0.0,65.108185,1.0 +2024-10-20 09:00:00,8.530093,11.744361,285.9916,285.81143,20.85,1005.17944,0.1,73.32224,1.0 +2024-10-20 10:00:00,7.8208055,10.797801,277.71558,277.7173,19.25,1005.2332,0.2,82.78229,1.0 +2024-10-20 11:00:00,7.1001763,10.373042,236.19798,236.0035,17.9,1005.98816,1.2,92.991005,0.0 +2024-10-20 12:00:00,6.0716553,9.235394,210.15446,210.5913,17.75,1007.27295,0.5,88.07865,0.0 +2024-10-20 13:00:00,5.945166,8.854377,198.13028,198.43504,16.9,1008.5375,0.1,82.76504,0.0 +2024-10-20 14:00:00,5.5301447,8.214165,194.6645,195.89755,16.5,1008.7241,0.1,82.98595,0.0 +2024-10-20 15:00:00,4.744734,7.078312,187.87384,188.53069,16.3,1008.81757,0.0,82.15483,0.0 +2024-10-20 16:00:00,4.5831213,6.9584484,186.89233,187.43132,16.2,1008.8147,0.0,80.54776,0.0 +2024-10-20 17:00:00,4.5891175,7.326834,191.30989,192.61362,15.75,1008.90063,0.0,81.81729,0.0 +2024-10-20 18:00:00,4.609772,7.1918354,192.5288,193.26334,15.8,1008.5055,0.0,79.44315,0.0 +2024-10-20 19:00:00,4.669047,7.383935,189.86574,190.92944,15.5,1008.4967,0.0,79.40042,0.0 +2024-10-20 20:00:00,5.006246,7.865907,182.86235,183.64441,15.2,1008.58685,0.0,78.835045,0.0 +2024-10-20 21:00:00,4.5047193,7.2195916,171.06052,172.03835,15.05,1008.9791,0.0,78.29314,0.0 +2024-10-20 22:00:00,3.8810434,6.5017304,158.06146,159.7533,14.7,1009.66315,0.0,79.28584,1.0 +2024-10-20 23:00:00,4.5024996,6.133718,150.01845,150.71867,15.9,1010.5908,0.1,72.68163,1.0 +2024-10-21 00:00:00,4.6308746,5.9701343,142.01645,143.5139,16.45,1011.20197,0.1,68.56364,1.0 +2024-10-21 01:00:00,4.3832064,5.4781384,159.29088,158.58696,17.65,1011.9311,0.0,62.70572,1.0 +2024-10-21 02:00:00,4.8093657,5.985399,176.42374,173.76561,19.2,1011.7772,0.0,53.577034,1.0 +2024-10-21 03:00:00,4.9751883,6.053305,185.76779,181.89334,19.95,1011.6995,0.0,48.619907,1.0 +2024-10-21 04:00:00,6.151626,7.5960517,199.46596,196.04907,19.5,1011.191,0.0,54.015354,1.0 +2024-10-21 05:00:00,7.5738034,9.560335,198.0762,195.78082,19.45,1010.99115,0.0,55.83718,1.0 +2024-10-21 06:00:00,7.7854033,9.9088335,194.12552,193.12465,19.35,1010.59155,0.0,53.43648,1.0 +2024-10-21 07:00:00,7.1702514,9.143988,195.78082,194.56819,19.2,1010.2896,0.0,51.456726,1.0 +2024-10-21 08:00:00,6.9123073,8.93826,194.23732,193.25888,18.75,1010.277,0.0,50.474403,1.0 +2024-10-21 09:00:00,6.864765,9.033963,190.49142,189.87933,18.0,1010.3545,0.0,51.48553,1.0 +2024-10-21 10:00:00,6.736468,9.348395,185.96439,185.83247,17.1,1010.52655,0.0,54.123318,1.0 +2024-10-21 11:00:00,6.0033326,9.202173,181.9091,181.24533,16.3,1011.0983,0.0,58.513603,0.0 +2024-10-21 12:00:00,5.900212,9.200136,180.48553,180.31139,16.05,1011.6861,0.0,59.45365,0.0 +2024-10-21 13:00:00,5.4776816,8.782084,174.23746,175.101,15.65,1012.071,0.0,60.58031,0.0 +2024-10-21 14:00:00,5.4744864,8.8319025,170.53775,172.1911,15.4,1011.8654,0.0,63.897167,0.0 +2024-10-21 15:00:00,5.2756515,8.623368,165.17348,166.93068,15.2,1011.8593,0.0,65.38238,0.0 +2024-10-21 16:00:00,4.5499997,7.6721897,157.3801,159.79349,14.75,1011.6477,0.0,67.75932,0.0 +2024-10-21 17:00:00,3.8587563,6.8883963,148.78166,152.31903,14.15,1011.3324,0.0,69.49214,0.0 +2024-10-21 18:00:00,3.434021,6.453681,132.04915,139.39879,13.2,1010.8084,0.0,70.731834,0.0 +2024-10-21 19:00:00,3.4441981,6.7684927,117.68098,131.1062,12.45,1010.78595,0.0,67.04745,0.0 +2024-10-21 20:00:00,3.5245569,7.215608,121.660706,133.31535,12.3,1010.78143,0.0,67.01558,0.0 +2024-10-21 21:00:00,3.6891732,7.4640803,122.828545,133.0999,12.4,1011.1812,0.0,66.11976,0.0 +2024-10-21 22:00:00,3.7343004,7.380549,116.22191,127.568665,12.45,1011.57916,0.0,65.45024,1.0 +2024-10-21 23:00:00,4.0853395,7.6969147,111.541046,123.07069,14.4,1012.13336,0.0,60.074444,1.0 +2024-10-22 00:00:00,4.360046,5.9114294,126.60716,128.13005,17.0,1012.6062,0.0,51.39343,1.0 +2024-10-22 01:00:00,5.2974052,6.7675695,146.15991,145.84026,18.55,1012.75055,0.0,50.42056,1.0 +2024-10-22 02:00:00,4.842004,6.024326,163.81073,161.11382,20.0,1012.5935,0.0,46.856983,1.0 +2024-10-22 03:00:00,4.9155364,5.9669924,189.36644,184.32498,21.25,1012.034,0.0,43.530766,1.0 +2024-10-22 04:00:00,6.759623,8.286133,201.25058,197.56036,21.05,1011.53235,0.0,46.830196,1.0 +2024-10-22 05:00:00,8.917679,11.46571,198.63821,197.24977,19.75,1011.19794,0.0,54.26073,1.0 +2024-10-22 06:00:00,8.028076,10.261091,193.69006,192.95276,19.8,1011.0013,0.0,53.01876,1.0 +2024-10-22 07:00:00,7.9236984,10.149014,192.01898,191.36525,19.55,1010.79565,0.0,51.89756,1.0 +2024-10-22 08:00:00,7.504832,9.765884,189.58777,188.8353,19.35,1010.6907,0.0,47.640125,1.0 +2024-10-22 09:00:00,7.6917167,10.244144,185.96992,185.32092,18.9,1011.1735,0.0,50.686157,1.0 +2024-10-22 10:00:00,7.5501657,10.500476,179.62057,179.45436,17.9,1011.5417,0.0,56.386684,1.0 +2024-10-22 11:00:00,6.686741,10.204165,173.99109,174.09395,17.1,1012.0141,0.0,61.540398,0.0 +2024-10-22 12:00:00,6.033448,9.477606,170.45969,170.58745,16.75,1012.49976,0.0,63.344242,0.0 +2024-10-22 13:00:00,5.8208675,9.279278,166.0831,167.23679,16.35,1012.9841,0.0,66.96178,0.0 +2024-10-22 14:00:00,5.565968,9.100138,162.21602,164.05453,16.05,1012.77686,0.0,69.17173,0.0 +2024-10-22 15:00:00,5.321889,8.814193,153.19429,155.17949,15.75,1012.9664,0.0,70.275475,0.0 +2024-10-22 16:00:00,5.2430906,8.739709,145.09743,147.85567,15.15,1012.84973,0.0,73.51999,0.0 +2024-10-22 17:00:00,5.4740295,9.311552,140.93153,144.17612,14.4,1012.4308,0.0,73.88051,0.0 +2024-10-22 18:00:00,5.7710485,9.741663,142.03789,144.18875,14.15,1011.729,0.0,71.394356,0.0 +2024-10-22 19:00:00,5.5697846,9.433053,139.73352,141.67216,13.65,1011.417,0.0,73.74854,0.0 +2024-10-22 20:00:00,5.3387733,9.239182,135.3794,137.85153,13.3,1011.40656,0.0,73.43797,0.0 +2024-10-22 21:00:00,4.7460513,8.52247,131.58331,133.81154,12.95,1011.59436,0.0,71.166336,0.0 +2024-10-22 22:00:00,4.3809247,7.9895244,128.04709,129.6678,12.6,1012.0796,0.0,72.07564,1.0 +2024-10-22 23:00:00,4.3809247,7.1001763,128.04709,127.27346,14.15,1012.5223,0.0,67.86455,1.0 +2024-10-23 00:00:00,4.1403503,5.4288583,132.55292,130.14333,16.5,1012.6908,0.0,58.761475,1.0 +2024-10-23 01:00:00,3.905125,4.986231,140.19447,136.2188,19.25,1012.9689,0.0,50.098133,1.0 +2024-10-23 02:00:00,3.8160844,4.771268,148.39255,141.809,21.65,1012.5414,0.0,43.20271,1.0 +2024-10-23 03:00:00,3.8078866,4.6154633,166.32867,157.04588,23.5,1011.79956,0.0,38.2225,1.0 +2024-10-23 04:00:00,5.531727,6.7175145,192.5288,188.13002,23.65,1010.9111,0.0,43.761974,1.0 +2024-10-23 05:00:00,7.543209,9.60013,194.58896,191.71957,22.5,1010.3831,0.0,55.683784,1.0 +2024-10-23 06:00:00,8.574672,11.110018,193.14487,191.15819,22.1,1009.7769,0.0,55.220924,1.0 +2024-10-23 07:00:00,8.533024,11.274972,185.04236,183.814,21.65,1009.2683,0.0,53.146725,1.0 +2024-10-23 08:00:00,8.150153,10.801852,180.3515,178.93912,21.55,1008.96796,0.0,54.90122,1.0 +2024-10-23 09:00:00,7.91012,10.6838665,177.10149,175.43686,20.7,1008.7455,0.0,58.607487,1.0 +2024-10-23 10:00:00,7.0405965,10.061064,168.5305,168.24335,19.2,1009.19867,0.0,63.891827,1.0 +2024-10-23 11:00:00,6.585021,10.404807,166.3858,166.09729,18.05,1009.56244,0.0,71.882996,0.0 +2024-10-23 12:00:00,6.3097143,10.198651,160.55988,161.12082,17.55,1009.84564,0.0,72.97779,0.0 +2024-10-23 13:00:00,5.574271,9.442722,156.19405,157.91685,17.0,1010.42456,0.0,78.32614,0.0 +2024-10-23 14:00:00,5.0990195,8.909685,154.44008,156.16809,16.65,1009.9186,0.0,82.1986,0.0 +2024-10-23 15:00:00,4.484696,8.208837,149.14587,152.03024,16.15,1009.7056,0.0,83.214745,0.0 +2024-10-23 16:00:00,3.7802117,7.447483,142.52374,147.05676,15.45,1009.08997,0.0,79.13205,0.0 +2024-10-23 17:00:00,3.2882366,6.909595,134.38402,138.81416,14.75,1008.4745,0.0,72.71561,0.0 +2024-10-23 18:00:00,2.9364095,6.7529626,132.92996,135.29996,14.2,1007.7643,0.0,67.6452,0.0 +2024-10-23 19:00:00,2.865746,6.8603935,132.8789,133.8189,14.2,1007.4668,0.0,61.486206,0.0 +2024-10-23 20:00:00,2.8111386,6.92026,128.50069,127.36675,14.25,1007.4684,0.0,54.690174,0.0 +2024-10-23 21:00:00,2.6911893,6.8856735,125.16652,121.03504,14.2,1007.4668,0.0,49.753963,0.0 +2024-10-23 22:00:00,2.6925824,6.82825,121.328636,113.749504,14.5,1007.57477,0.0,46.613647,1.0 +2024-10-23 23:00:00,3.2718496,6.484597,128.79657,107.03786,17.45,1007.85913,0.0,41.13591,1.0 +2024-10-24 00:00:00,2.2808988,4.2544093,153.9967,113.55228,21.05,1007.6643,0.0,35.62318,1.0 +2024-10-24 01:00:00,2.5811818,3.7,134.21527,108.92474,24.95,1007.27716,0.0,30.778225,1.0 +2024-10-24 02:00:00,2.1319005,2.9470322,129.2894,104.743614,28.15,1006.6697,0.0,25.487745,1.0 +2024-10-24 03:00:00,2.4829419,2.269912,205.01686,187.59456,29.45,1006.20844,0.0,30.474285,1.0 +2024-10-24 04:00:00,5.123719,6.2677746,208.56573,201.03758,28.15,1005.57855,0.0,44.710785,1.0 +2024-10-24 05:00:00,6.7542577,9.123184,205.42683,198.53435,26.85,1005.14667,0.0,48.400677,1.0 +2024-10-24 06:00:00,6.9737005,10.053109,197.52565,194.1054,25.75,1004.9183,0.0,45.666985,1.0 +2024-10-24 07:00:00,6.5115285,9.78021,190.6196,187.34291,25.35,1004.6097,0.0,45.70706,1.0 +2024-10-24 08:00:00,6.8359346,9.810327,185.8773,182.62903,24.5,1004.38837,0.0,50.82576,1.0 +2024-10-24 09:00:00,6.1842546,8.701293,186.03316,180.98773,23.75,1004.4668,0.0,52.82105,1.0 +2024-10-24 10:00:00,6.201814,9.322688,178.61412,176.00203,21.45,1004.7003,0.0,66.49488,1.0 +2024-10-24 11:00:00,6.307535,10.233891,172.25539,170.72183,19.7,1005.3454,0.0,78.21973,0.0 +2024-10-24 12:00:00,6.2229414,9.955024,171.21892,169.8754,19.05,1005.82263,0.0,82.23167,0.0 +2024-10-24 13:00:00,5.707013,9.534149,168.887,167.27565,18.45,1006.30145,0.0,81.36999,0.0 +2024-10-24 14:00:00,5.148058,8.894521,168.79924,167.99524,17.95,1006.18774,0.0,88.37754,0.0 +2024-10-24 15:00:00,5.3851643,9.03839,164.93146,164.27223,17.55,1006.17633,0.0,92.38275,0.0 +2024-10-24 16:00:00,5.076662,8.62047,162.81421,163.14153,17.25,1005.6717,0.0,90.61171,0.0 +2024-10-24 17:00:00,4.401136,7.8652716,158.68202,159.14546,16.85,1005.06525,0.0,87.15422,0.0 +2024-10-24 18:00:00,4.3324356,7.7319145,161.14674,161.91646,16.3,1004.4543,0.0,86.260666,0.0 +2024-10-24 19:00:00,3.9601135,7.400169,155.37645,157.76721,15.9,1004.24426,0.0,85.9411,0.0 +2024-10-24 20:00:00,4.0718546,7.539231,155.32315,158.19853,15.55,1004.43256,0.0,84.23874,0.0 +2024-10-24 21:00:00,3.9462008,7.589466,157.6593,161.56496,15.25,1004.5229,0.0,83.92942,0.0 +2024-10-24 22:00:00,3.8939056,7.4,155.73871,161.07526,15.4,1005.0231,0.0,82.04156,1.0 +2024-10-24 23:00:00,4.4813504,7.3746185,169.06622,169.45198,17.6,1005.58264,0.0,74.1904,1.0 +2024-10-25 00:00:00,6.4095635,8.517776,176.86983,176.29787,19.8,1005.8441,0.0,72.43499,1.0 +2024-10-25 01:00:00,7.1449285,9.280355,186.42865,184.63538,21.45,1005.9897,0.0,70.671364,1.0 +2024-10-25 02:00:00,7.595393,9.73717,189.0902,187.67232,22.0,1006.2035,0.0,69.43481,1.0 +2024-10-25 03:00:00,8.18917,10.45299,192.33908,191.30989,22.05,1006.4032,0.0,69.003105,1.0 +2024-10-25 04:00:00,8.100771,10.3210945,194.2936,193.16106,22.0,1006.3027,0.0,67.036964,1.0 +2024-10-25 05:00:00,8.45488,10.829243,195.43349,194.1646,21.9,1006.39905,0.0,65.95033,1.0 +2024-10-25 06:00:00,8.592002,11.1342945,196.22026,195.09721,21.65,1006.4913,0.0,65.05471,1.0 +2024-10-25 07:00:00,9.095604,11.860017,194.64742,194.15344,21.15,1006.67535,0.0,66.21853,1.0 +2024-10-25 08:00:00,9.12921,11.97299,191.37144,191.07527,20.5,1006.8554,0.0,69.14298,1.0 +2024-10-25 09:00:00,8.869329,11.803919,189.40915,189.26276,19.7,1007.3289,0.0,71.48765,1.0 +2024-10-25 10:00:00,8.471717,11.63454,187.46048,186.91113,18.9,1007.8017,0.0,72.50779,1.0 +2024-10-25 11:00:00,7.6604505,11.113618,182.99307,182.8366,18.2,1008.27765,0.0,74.051674,0.0 +2024-10-25 12:00:00,7.2001734,10.701051,179.60213,179.19685,17.9,1008.7649,0.0,74.727356,0.0 +2024-10-25 13:00:00,7.7286806,11.108667,171.81757,171.9794,17.7,1009.8498,0.0,72.29091,0.0 +2024-10-25 14:00:00,7.5116577,10.955022,168.09172,167.61302,17.95,1009.6587,0.0,70.46581,0.0 +2024-10-25 15:00:00,6.9889197,10.532094,162.08347,162.59721,17.9,1009.8558,0.0,69.30869,0.0 +2024-10-25 16:00:00,6.407808,9.684652,157.0362,157.53937,17.6,1009.45026,0.0,70.863266,0.0 +2024-10-25 17:00:00,6.0854335,9.347727,151.53992,152.61267,17.3,1008.94586,0.0,71.5092,0.0 +2024-10-25 18:00:00,5.453898,8.838835,148.49579,151.2603,16.85,1008.8336,0.0,72.85268,0.0 +2024-10-25 19:00:00,5.5758405,9.17878,147.45001,150.64235,16.5,1008.9225,0.0,74.982285,0.0 +2024-10-25 20:00:00,6.109419,9.838699,151.12767,153.43501,16.35,1009.21576,0.0,77.71798,0.0 +2024-10-25 21:00:00,6.328507,10.121264,148.5705,150.39565,15.75,1009.8923,0.0,80.75131,0.0 +2024-10-25 22:00:00,6.4070277,10.161324,145.81383,148.89125,15.4,1010.57623,0.0,80.70424,1.0 +2024-10-25 23:00:00,6.6441703,9.369365,151.69934,153.02481,16.8,1011.1129,0.0,73.08412,1.0 +2024-10-26 00:00:00,6.7230945,8.942315,157.249,157.30617,18.45,1011.55756,0.0,64.786766,1.0 +2024-10-26 01:00:00,6.820008,8.838693,163.82373,161.87245,20.25,1011.90656,0.0,49.19601,1.0 +2024-10-26 02:00:00,6.604923,8.394343,172.60608,169.35944,21.6,1011.5479,0.0,46.981388,1.0 +2024-10-26 03:00:00,7.2584434,9.101236,182.7638,179.05566,22.15,1011.0675,0.0,49.21552,1.0 +2024-10-26 04:00:00,8.492644,10.769517,190.51599,188.54384,21.5,1010.5536,0.0,51.038418,1.0 +2024-10-26 05:00:00,8.483661,10.868418,190.18398,188.46552,21.5,1010.256,0.0,53.63665,1.0 +2024-10-26 06:00:00,8.663861,11.151345,189.29916,187.73036,21.6,1009.6634,0.0,55.09474,1.0 +2024-10-26 07:00:00,8.980535,11.766584,187.67888,186.09811,21.2,1009.25555,0.0,57.208195,1.0 +2024-10-26 08:00:00,9.058836,12.053734,182.53072,181.42612,20.6,1009.2385,0.0,58.199257,1.0 +2024-10-26 09:00:00,9.151229,12.404938,179.06084,178.38324,19.45,1009.4043,0.0,62.2878,1.0 +2024-10-26 10:00:00,8.474963,11.896428,175.60138,174.93648,18.7,1009.58105,0.0,65.70054,1.0 +2024-10-26 11:00:00,8.372574,12.664617,172.45067,172.28586,17.7,1010.1473,0.0,71.349045,0.0 +2024-10-26 12:00:00,8.374366,12.757449,168.28755,168.4699,17.4,1010.5354,0.0,74.88748,0.0 +2024-10-26 13:00:00,7.61725,11.827193,164.77782,164.55362,17.05,1011.02106,0.0,77.065575,0.0 +2024-10-26 14:00:00,7.45,11.7046995,159.98395,160.0168,16.8,1010.9147,0.0,76.02384,0.0 +2024-10-26 15:00:00,6.8660393,10.959014,154.55464,154.60413,16.25,1010.7993,0.0,71.076614,0.0 +2024-10-26 16:00:00,6.3089223,10.29138,151.60707,151.56737,15.65,1010.4844,0.0,67.49078,0.0 +2024-10-26 17:00:00,5.8917313,9.879524,149.95366,149.9315,15.05,1009.87164,0.0,67.82134,0.0 +2024-10-26 18:00:00,5.3535037,9.195923,147.20047,147.43324,14.6,1009.56085,0.0,68.649315,0.0 +2024-10-26 19:00:00,4.8130035,8.643061,145.15419,144.65489,14.1,1009.54626,0.0,69.71755,0.0 +2024-10-26 20:00:00,4.25,8.051397,143.13002,142.06255,13.6,1009.43225,0.0,70.33062,0.0 +2024-10-26 21:00:00,3.905125,7.7233415,140.19447,138.6746,13.25,1009.7192,0.0,69.78594,0.0 +2024-10-26 22:00:00,3.828838,7.5660424,139.23648,135.0001,13.45,1010.22107,0.0,65.66923,1.0 +2024-10-26 23:00:00,3.8832977,7.648529,145.49142,131.82008,16.05,1010.89276,0.0,54.968765,1.0 +2024-10-27 00:00:00,3.8967936,5.249762,146.51381,139.63554,19.55,1010.79565,0.0,42.462944,1.0 +2024-10-27 01:00:00,4.2573466,5.448853,139.76372,132.76881,23.1,1010.499,0.0,34.159393,1.0 +2024-10-27 02:00:00,4.103657,5.287958,136.97493,130.01361,26.4,1010.0941,0.0,27.190992,1.0 +2024-10-27 03:00:00,3.77955,4.89183,152.41806,139.14471,28.15,1009.44727,0.0,24.53976,1.0 +2024-10-27 04:00:00,4.8438106,6.203225,187.7118,178.15244,28.45,1008.7608,0.0,28.41787,1.0 +2024-10-27 05:00:00,6.5134478,8.950558,192.86275,186.09268,27.25,1008.13336,0.0,40.72277,1.0 +2024-10-27 06:00:00,8.029477,11.154484,195.1613,189.54669,26.35,1007.5138,0.0,45.97952,1.0 +2024-10-27 07:00:00,9.447884,13.633048,193.15372,188.01114,25.0,1006.7825,0.0,45.46191,1.0 +2024-10-27 08:00:00,9.056766,13.5000925,182.2147,179.7878,23.95,1006.85284,0.0,47.778896,1.0 +2024-10-27 09:00:00,8.438008,11.802224,174.55975,172.45357,23.8,1007.0468,0.0,49.332596,1.0 +2024-10-27 10:00:00,7.488825,12.992786,171.16667,168.90631,21.7,1007.5835,0.0,57.330975,1.0 +2024-10-27 11:00:00,8.285228,13.64597,161.34627,160.96745,20.35,1008.33905,0.0,60.08314,0.0 +2024-10-27 12:00:00,8.022,12.93619,163.71115,162.68552,19.95,1008.72424,0.0,64.05729,0.0 +2024-10-27 13:00:00,6.150203,10.331021,152.39342,152.93898,18.95,1009.29083,0.0,75.63251,0.0 +2024-10-27 14:00:00,4.9648767,9.22456,145.66972,144.93158,18.7,1008.986,0.0,73.897415,0.0 +2024-10-27 15:00:00,3.9604292,8.24151,133.97707,133.27922,18.45,1008.6816,0.0,65.64708,0.0 +2024-10-27 16:00:00,3.6173193,8.371529,130.5153,127.96508,18.55,1008.18854,0.0,50.764156,0.0 +2024-10-27 17:00:00,3.7259226,8.491908,130.10085,125.65542,18.8,1007.89795,0.0,34.117317,0.0 +2024-10-27 18:00:00,3.8425252,8.833177,122.24244,117.29019,19.0,1007.6062,0.0,26.671545,0.0 +2024-10-27 19:00:00,3.782195,8.681157,114.19321,109.16555,18.9,1007.50415,0.0,26.161634,0.0 +2024-10-27 20:00:00,4.040421,9.051243,102.144264,98.57764,18.65,1007.5964,0.0,25.996521,0.0 +2024-10-27 21:00:00,4.90408,10.304368,92.33726,91.668304,18.7,1007.8951,0.0,25.25827,0.0 +2024-10-27 22:00:00,5.867282,11.221853,85.60138,86.423744,19.05,1008.5003,0.0,24.531239,1.0 +2024-10-27 23:00:00,7.008031,12.21935,82.62156,83.89292,21.35,1009.1606,0.0,22.400852,1.0 +2024-10-28 00:00:00,6.930548,10.607191,84.618546,84.04764,24.5,1009.34784,0.0,19.62184,1.0 +2024-10-28 01:00:00,6.8311787,9.141116,81.15827,79.919464,27.5,1009.0327,0.0,21.184072,1.0 +2024-10-28 02:00:00,5.947479,7.735955,82.75559,81.45101,30.25,1008.80884,0.0,19.243965,1.0 +2024-10-28 03:00:00,5.100245,6.5017304,89.43831,88.678055,31.85,1008.2557,0.0,15.692143,1.0 +2024-10-28 04:00:00,3.8327537,4.973178,105.12406,99.841064,33.0,1007.19476,0.0,14.344523,1.0 +2024-10-28 05:00:00,3.3455193,4.1785164,170.53775,158.96242,32.2,1006.4795,0.0,15.995173,1.0 +2024-10-28 06:00:00,6.4903774,8.855789,201.22772,197.412,30.05,1006.02576,0.0,31.567715,1.0 +2024-10-28 07:00:00,7.3691926,10.454664,199.41856,194.96677,29.2,1005.4082,0.0,33.593643,1.0 +2024-10-28 08:00:00,8.414571,12.46846,196.9276,192.9774,27.9,1005.4723,0.0,36.108498,1.0 +2024-10-28 09:00:00,8.414867,12.750882,183.40637,180.67403,25.85,1006.0123,0.0,39.933094,1.0 +2024-10-28 10:00:00,6.7175145,9.982485,171.86998,169.0278,24.75,1006.5771,0.0,44.067104,1.0 +2024-10-28 11:00:00,8.000625,12.681088,161.79143,161.13632,23.0,1007.42145,0.0,42.143814,0.0 +2024-10-28 12:00:00,8.048758,12.997308,160.77705,161.14674,22.3,1007.69946,0.0,45.77715,0.0 +2024-10-28 13:00:00,7.1317954,11.985408,162.45418,162.01848,21.25,1008.5627,0.0,50.46568,0.0 +2024-10-28 14:00:00,6.9420824,11.748723,160.65144,160.87097,20.85,1008.25397,0.0,54.003403,0.0 +2024-10-28 15:00:00,6.1269894,10.714126,153.85323,154.87007,20.25,1007.93945,0.0,59.274582,0.0 +2024-10-28 16:00:00,5.055937,9.217917,151.66096,151.48885,19.55,1007.42365,0.0,62.928066,0.0 +2024-10-28 17:00:00,3.6200829,7.95,147.40742,148.10925,18.85,1007.10626,0.0,63.394745,0.0 +2024-10-28 18:00:00,3.1800156,7.1151247,143.31018,145.30478,18.25,1006.69214,0.0,60.990242,0.0 +2024-10-28 19:00:00,2.8744566,6.7708936,139.93929,142.19917,17.8,1006.4809,0.0,56.742664,0.0 +2024-10-28 20:00:00,2.4397748,6.4041,135.83023,137.21478,17.35,1006.46796,0.0,51.13627,0.0 +2024-10-28 21:00:00,2.337734,6.2579947,138.46832,135.32367,17.05,1006.65765,0.0,45.557537,0.0 +2024-10-28 22:00:00,2.2610838,6.221133,125.095894,118.83087,17.5,1006.9682,0.0,40.719604,1.0 +2024-10-28 23:00:00,2.6953664,5.661272,139.51407,107.47486,21.7,1007.2859,0.0,34.831627,1.0 +2024-10-29 00:00:00,2.1708295,4.3165383,172.05663,115.37771,25.5,1007.29205,0.0,32.779423,1.0 +2024-10-29 01:00:00,2.5675864,2.6655207,186.70975,156.80139,27.5,1007.3464,0.0,36.840485,1.0 +2024-10-29 02:00:00,3.8078866,4.020572,203.19861,190.75092,29.15,1007.0931,0.0,39.937664,1.0 +2024-10-29 03:00:00,5.415025,6.527251,208.69481,202.04596,28.9,1006.888,0.0,43.498173,1.0 +2024-10-29 04:00:00,6.4189177,8.586763,205.36736,199.3846,28.05,1006.5677,0.0,42.986485,1.0 +2024-10-29 05:00:00,6.4724417,8.942176,200.81514,195.90146,28.1,1006.4697,0.0,40.69331,1.0 +2024-10-29 06:00:00,6.642665,9.286146,197.0711,191.49141,28.1,1006.27136,0.0,43.279045,1.0 +2024-10-29 07:00:00,7.131795,10.225947,192.96451,189.00168,27.15,1006.0474,0.0,47.402523,1.0 +2024-10-29 08:00:00,7.021574,9.560596,184.4925,182.69775,26.0,1006.314,0.0,50.72619,1.0 +2024-10-29 09:00:00,6.609274,9.376167,176.9645,175.71855,24.9,1006.6805,0.0,54.677467,1.0 +2024-10-29 10:00:00,6.4001956,9.658286,180.4476,177.62645,23.1,1007.3251,0.0,60.725544,1.0 +2024-10-29 11:00:00,6.0133185,9.712491,176.186,173.49704,21.75,1008.2794,0.0,66.985695,0.0 +2024-10-29 12:00:00,6.4878736,10.564208,166.17792,164.91132,21.1,1008.9553,0.0,68.59593,0.0 +2024-10-29 13:00:00,5.632051,9.543715,173.8846,170.04425,19.9,1009.814,0.0,75.543846,0.0 +2024-10-29 14:00:00,5.873883,9.702706,168.21184,166.89473,19.35,1009.9965,0.0,81.22615,0.0 +2024-10-29 15:00:00,5.5915112,9.192388,167.08218,165.5102,18.95,1010.0842,0.0,85.97073,0.0 +2024-10-29 16:00:00,5.4692326,9.024965,165.70964,164.57777,18.6,1009.3798,0.0,90.70397,0.0 +2024-10-29 17:00:00,5.3284616,8.839259,161.39494,160.84752,18.3,1008.97473,0.0,91.84119,0.0 +2024-10-29 18:00:00,4.9340653,8.334416,160.46326,160.3692,18.15,1008.5736,0.0,91.83216,0.0 +2024-10-29 19:00:00,4.7594643,8.190543,160.99393,161.12253,17.85,1008.36664,0.0,92.693565,0.0 +2024-10-29 20:00:00,4.9206195,8.458132,154.73694,155.55606,17.7,1008.36224,0.0,93.27651,0.0 +2024-10-29 21:00:00,4.7185802,8.095678,154.24957,154.38457,17.5,1008.5549,0.0,93.56372,0.0 +2024-10-29 22:00:00,4.1382365,7.3124895,151.88689,152.7342,17.5,1008.75323,0.0,92.97018,1.0 +2024-10-29 23:00:00,3.8910153,6.1294374,154.09355,151.76265,19.45,1009.0076,0.0,80.208885,1.0 +2024-10-30 00:00:00,3.846102,5.0621142,164.15686,159.77505,22.15,1009.08386,0.0,63.71213,1.0 +2024-10-30 01:00:00,5.315073,6.65,184.31595,180.0,23.95,1009.3325,0.0,62.495197,1.0 +2024-10-30 02:00:00,6.0466933,7.610519,187.12492,183.01273,25.1,1008.9676,0.0,59.84195,1.0 +2024-10-30 03:00:00,6.4536815,8.249242,192.5288,186.2634,25.85,1008.4921,0.0,58.889336,1.0 +2024-10-30 04:00:00,7.1022882,9.315846,196.7766,190.82741,25.95,1008.1971,0.0,59.66172,1.0 +2024-10-30 05:00:00,7.385459,9.831073,194.50668,189.36644,25.8,1007.59784,0.0,58.69154,1.0 +2024-10-30 06:00:00,7.187663,9.657251,191.23172,186.24182,26.2,1007.31134,0.0,57.137333,1.0 +2024-10-30 07:00:00,6.9226074,9.610541,188.30559,182.68372,25.85,1006.80585,0.0,58.517895,1.0 +2024-10-30 08:00:00,6.4778466,8.75,185.31445,180.0,25.55,1006.7976,0.0,58.26154,1.0 +2024-10-30 09:00:00,6.0101995,8.303764,183.33841,178.27478,24.35,1006.8637,0.0,62.386032,1.0 +2024-10-30 10:00:00,5.3502336,8.21736,180.53545,172.65887,22.85,1007.1199,0.0,67.21043,1.0 +2024-10-30 11:00:00,6.0848174,10.268033,173.86787,169.62035,21.0,1007.66315,0.0,73.34834,0.0 +2024-10-30 12:00:00,5.894277,10.513919,169.73868,165.96373,20.35,1007.94226,0.0,73.94253,0.0 +2024-10-30 13:00:00,6.0728908,10.324849,162.75845,161.6527,19.75,1008.5202,0.0,74.31616,0.0 +2024-10-30 14:00:00,5.7395554,9.790939,161.7228,159.9918,19.35,1008.5089,0.0,78.16805,0.0 +2024-10-30 15:00:00,5.1159067,9.087354,158.19853,155.9735,19.1,1008.50165,0.0,77.6306,0.0 +2024-10-30 16:00:00,4.25,8.120652,154.94241,151.69934,18.8,1007.9972,0.0,73.914665,0.0 +2024-10-30 17:00:00,3.510698,7.2377486,153.79994,149.71515,18.45,1007.39233,0.0,70.33092,0.0 +2024-10-30 18:00:00,2.8900692,6.504229,149.88635,146.92073,18.05,1007.0831,0.0,67.09399,0.0 +2024-10-30 19:00:00,3.0103986,6.7500005,147.89377,143.13002,17.8,1006.97675,0.0,63.369244,0.0 +2024-10-30 20:00:00,3.1100645,7.0092793,143.49847,137.89134,17.7,1006.8747,0.0,59.252155,0.0 +2024-10-30 21:00:00,3.3503733,7.6747966,127.72506,121.41181,18.1,1006.4897,0.0,53.29011,0.0 +2024-10-30 22:00:00,2.505993,7.28869,118.61037,104.7036,19.15,1006.5197,0.0,49.733196,1.0 +2024-10-30 23:00:00,3.8013155,7.5599275,116.56499,97.21893,23.5,1006.6419,0.0,37.452812,1.0 +2024-10-31 00:00:00,4.539824,7.400676,97.59455,90.77421,27.85,1006.4631,0.0,29.829723,1.0 +2024-10-31 01:00:00,3.335416,4.850258,102.99462,89.40936,30.0,1006.02454,0.0,32.2927,1.0 +2024-10-31 02:00:00,2.6239283,3.7074249,120.96369,100.09744,32.35,1005.68964,0.0,28.33981,1.0 +2024-10-31 03:00:00,2.030394,2.4397748,170.07382,135.83023,33.85,1004.9347,0.0,29.792135,1.0 +2024-10-31 04:00:00,3.782195,4.2201896,204.1932,193.70699,33.05,1004.3189,0.0,39.864082,1.0 +2024-10-31 05:00:00,5.009241,6.531654,207.33228,199.68343,32.05,1003.79663,0.0,45.193165,1.0 +2024-10-31 06:00:00,6.2769423,8.90351,202.47948,197.31572,30.85,1003.3684,0.0,45.87171,1.0 +2024-10-31 07:00:00,6.0270224,8.886225,193.92099,190.04527,30.05,1002.85126,0.0,42.70874,1.0 +2024-10-31 08:00:00,5.6055775,8.152453,182.55609,178.59428,29.45,1002.7364,0.0,43.370007,1.0 +2024-10-31 09:00:00,6.559345,10.154063,176.94136,171.79019,28.65,1002.5165,0.0,46.600513,1.0 +2024-10-31 10:00:00,6.5897646,12.232028,168.17854,163.86151,26.95,1002.27264,0.0,48.271923,1.0 +2024-10-31 11:00:00,7.2349844,12.062442,156.80139,155.77226,25.9,1002.34344,0.0,46.76132,0.0 +2024-10-31 12:00:00,5.842303,10.470077,150.80261,149.27095,25.6,1002.6329,0.0,41.47925,0.0 +2024-10-31 13:00:00,4.237924,8.497794,160.70985,152.68118,23.9,1004.0741,0.0,42.965298,0.0 +2024-10-31 14:00:00,3.0923293,6.404881,202.8337,182.23692,22.2,1004.42395,0.0,54.527145,0.0 +2024-10-31 15:00:00,3.206244,7.070537,176.42374,169.40529,21.2,1004.1974,0.0,63.50267,0.0 +2024-10-31 16:00:00,1.9780041,5.377034,159.27437,157.01126,19.95,1003.76544,0.0,66.39706,0.0 +2024-10-31 17:00:00,2.4622145,4.657521,150.83249,150.4078,18.85,1003.13934,0.0,68.36919,0.0 +2024-10-31 18:00:00,2.8504386,4.0798283,164.74483,160.67673,18.0,1002.4208,0.0,70.47537,0.0 +2024-10-31 19:00:00,2.4964974,3.355965,237.26477,213.45334,17.4,1002.8002,0.0,84.44457,0.0 +2024-10-31 20:00:00,2.6907248,3.467708,221.98714,208.41257,16.95,1002.68805,0.0,92.0538,0.0 +2024-10-31 21:00:00,2.2896507,3.1579266,211.60745,203.31773,17.6,1002.70667,0.0,91.21577,0.0 +2024-10-31 22:00:00,2.1023796,2.9732137,205.34613,199.65392,18.2,1002.8232,0.0,90.96518,1.0 +2024-10-31 23:00:00,1.9811614,2.9261749,222.95459,213.147,20.85,1003.29504,0.0,81.41905,1.0 +2024-11-01 00:00:00,3.7326264,4.642467,230.9806,228.93027,22.2,1004.02716,0.0,73.78868,1.0 +2024-11-01 01:00:00,4.0401115,5.0621142,216.44453,212.90524,22.75,1004.439,0.0,72.7279,1.0 +2024-11-01 02:00:00,4.424082,5.4454107,214.40852,210.33209,23.75,1004.4668,0.0,65.29322,1.0 +2024-11-01 03:00:00,4.8826222,6.0110316,214.9921,211.04543,24.3,1004.6803,0.0,61.97978,1.0 +2024-11-01 04:00:00,4.5918407,5.5652943,215.24765,211.4051,24.6,1004.4901,0.0,59.34582,1.0 +2024-11-01 05:00:00,4.8417454,5.8830266,215.33142,211.79887,24.8,1004.2974,0.0,58.6408,1.0 +2024-11-01 06:00:00,4.90408,6.0400743,219.20718,216.5854,24.2,1004.0823,0.0,62.749954,1.0 +2024-11-01 07:00:00,4.360046,5.366796,216.60716,213.9862,23.8,1003.87286,0.0,62.262905,1.0 +2024-11-01 08:00:00,4.2793107,5.2794414,210.15997,208.2639,23.0,1003.7516,0.0,66.39112,1.0 +2024-11-01 09:00:00,4.047839,5.061867,205.61543,203.27292,22.0,1003.9223,0.0,74.9298,1.0 +2024-11-01 10:00:00,3.9373214,5.0289164,197.74477,197.35411,20.8,1004.48364,0.0,80.390854,1.0 +2024-11-01 11:00:00,3.5784075,5.3397098,187.22423,186.99184,19.55,1004.9443,0.0,89.070465,0.0 +2024-11-01 12:00:00,3.1503968,5.150971,180.90936,181.11238,19.1,1005.62555,0.0,91.59997,0.0 +2024-11-01 13:00:00,2.34094,4.6173587,160.0168,162.3498,18.4,1005.9032,0.0,94.19963,0.0 +2024-11-01 14:00:00,2.376973,4.6208763,165.37909,166.86597,18.2,1006.49255,0.0,93.89362,0.0 +2024-11-01 15:00:00,2.0248456,4.40284,159.77505,164.85896,17.7,1006.37885,0.0,94.468544,0.0 +2024-11-01 16:00:00,2.304886,4.702393,167.4712,171.4392,17.35,1006.3687,0.0,94.45408,0.0 +2024-11-01 17:00:00,2.419194,4.883646,161.93944,169.3804,17.45,1006.27246,0.0,93.85946,0.0 +2024-11-01 18:00:00,2.0808651,4.361766,144.78232,154.90378,17.2,1006.0671,0.0,93.848,0.0 +2024-11-01 19:00:00,2.0506098,4.382921,135.0001,145.22209,16.95,1005.7623,0.0,94.43744,0.0 +2024-11-01 20:00:00,1.9137659,4.2074337,123.2749,135.4814,16.6,1005.4547,0.0,94.72536,0.0 +2024-11-01 21:00:00,1.9981241,4.3522983,121.701385,132.67215,16.45,1005.6486,0.0,94.71942,0.0 +2024-11-01 22:00:00,2.4052026,4.654299,136.68465,140.6673,16.55,1006.1473,0.0,95.026855,1.0 +2024-11-01 23:00:00,3.5514083,4.7289004,144.74356,146.64597,18.4,1006.7958,0.0,85.096565,1.0 +2024-11-02 00:00:00,3.5341196,4.5392733,154.8852,153.15279,20.5,1006.9546,0.0,73.96816,1.0 +2024-11-02 01:00:00,3.4889112,4.3477006,154.5367,149.60135,23.55,1006.7426,0.0,55.584343,1.0 +2024-11-02 02:00:00,4.004997,4.8093657,182.86235,176.42374,25.5,1006.6969,0.0,48.984512,1.0 +2024-11-02 03:00:00,5.170348,6.2213345,198.61026,193.47784,25.95,1006.3124,0.0,51.866814,1.0 +2024-11-02 04:00:00,5.488625,6.6575146,203.06155,197.48247,25.75,1005.9102,0.0,56.66703,1.0 +2024-11-02 05:00:00,6.015189,7.4094534,206.139,201.37068,25.2,1005.89514,0.0,58.92265,1.0 +2024-11-02 06:00:00,6.25,7.842512,200.60977,198.20401,24.45,1005.57697,0.0,58.744987,1.0 +2024-11-02 07:00:00,5.97704,7.5764437,199.04132,196.88042,23.95,1005.1667,0.0,60.34026,1.0 +2024-11-02 08:00:00,5.2509522,6.5700073,193.77162,190.96783,23.7,1004.6639,0.0,60.28221,1.0 +2024-11-02 09:00:00,5.8694124,7.6034536,188.8203,186.79779,22.4,1004.6277,0.0,67.54842,1.0 +2024-11-02 10:00:00,5.20024,6.9564714,179.44911,177.52838,21.4,1004.59985,0.0,71.799,1.0 +2024-11-02 11:00:00,4.119466,6.5842614,174.4279,170.82387,20.3,1004.767,0.0,78.05908,0.0 +2024-11-02 12:00:00,4.3341665,7.1794844,163.23737,162.57448,19.55,1005.04346,0.0,84.14358,0.0 +2024-11-02 13:00:00,3.6235344,6.241194,152.02061,151.7926,18.75,1005.21906,0.0,84.59232,0.0 +2024-11-02 14:00:00,2.9090376,5.531953,151.23245,150.19098,18.05,1005.19885,0.0,88.10443,0.0 +2024-11-02 15:00:00,2.9904013,5.6302757,159.44388,160.27763,17.65,1004.9892,0.0,91.802055,0.0 +2024-11-02 16:00:00,2.6277368,5.233784,158.80588,161.04567,17.45,1004.48737,0.0,93.56131,0.0 +2024-11-02 17:00:00,1.8200275,4.2863154,159.07542,163.0446,17.1,1003.88226,0.0,94.14313,0.0 +2024-11-02 18:00:00,1.5660459,3.7165172,163.30067,169.14363,16.6,1003.6697,0.0,94.42284,0.0 +2024-11-02 19:00:00,2.2549944,4.700266,176.186,180.6095,16.95,1003.9773,0.0,92.941414,0.0 +2024-11-02 20:00:00,2.245551,4.925444,168.4399,174.17375,16.95,1004.0765,0.0,92.0538,0.0 +2024-11-02 21:00:00,2.9832869,5.926635,166.42955,170.77615,16.85,1004.4703,0.0,91.45993,0.0 +2024-11-02 22:00:00,3.6769552,6.659767,157.61983,159.7963,16.85,1005.06525,0.0,92.63924,1.0 +2024-11-02 23:00:00,3.6224992,5.165753,153.78868,154.17906,18.45,1005.70636,0.0,82.157326,1.0 +2024-11-03 00:00:00,3.7232378,4.7278433,165.21722,162.13982,20.55,1005.8653,0.0,67.1716,1.0 +2024-11-03 01:00:00,4.8052053,5.9684587,167.98854,164.45013,22.7,1006.4214,0.0,50.6834,1.0 +2024-11-03 02:00:00,5.706356,6.9679623,188.05902,184.11482,23.45,1006.34314,0.0,50.715057,1.0 +2024-11-03 03:00:00,7.6902537,9.669023,192.77124,190.7288,22.9,1006.22845,0.0,53.46887,1.0 +2024-11-03 04:00:00,8.178631,10.366412,191.99687,190.28008,22.85,1005.9296,0.0,52.416348,1.0 +2024-11-03 05:00:00,8.238022,10.541466,192.26476,190.9368,22.5,1005.6223,0.0,56.59853,1.0 +2024-11-03 06:00:00,8.021534,10.228025,191.87024,190.70564,22.15,1005.6125,0.0,58.3836,1.0 +2024-11-03 07:00:00,7.7176747,9.923961,191.9651,190.74374,21.9,1005.4072,0.0,58.13356,1.0 +2024-11-03 08:00:00,7.842353,10.1965685,188.80162,187.89162,21.2,1005.48676,0.0,62.075962,1.0 +2024-11-03 09:00:00,7.7781744,10.232912,188.13002,187.29855,20.1,1005.7531,0.0,65.99782,1.0 +2024-11-03 10:00:00,7.0897818,9.642096,186.07236,185.35573,18.95,1006.3156,0.0,70.426384,1.0 +2024-11-03 11:00:00,6.157313,8.955026,182.79265,181.91977,18.5,1006.79865,0.0,71.26503,0.0 +2024-11-03 12:00:00,5.9669924,9.031196,175.67502,175.23645,18.25,1007.18805,0.0,73.81968,0.0 +2024-11-03 13:00:00,6.0406957,9.066973,173.34567,173.03185,17.65,1007.46844,0.0,78.42223,0.0 +2024-11-03 14:00:00,5.8917317,8.9181,173.17664,172.91492,17.4,1007.4612,0.0,78.640594,0.0 +2024-11-03 15:00:00,5.5013633,8.527895,172.16457,172.25006,17.0,1007.25116,0.0,79.61285,0.0 +2024-11-03 16:00:00,5.178803,8.170833,169.99208,170.13426,16.7,1006.94507,0.0,80.61524,0.0 +2024-11-03 17:00:00,4.491102,7.334848,168.4399,168.9965,16.4,1006.9363,0.0,81.90001,0.0 +2024-11-03 18:00:00,4.3416586,7.1918354,165.32356,166.73666,16.1,1006.53076,0.0,82.93787,0.0 +2024-11-03 19:00:00,4.011546,6.630422,157.27023,159.2416,16.0,1006.52795,0.0,81.58193,0.0 +2024-11-03 20:00:00,3.8425252,6.6001897,147.75757,151.49356,15.35,1006.50903,0.0,81.4978,0.0 +2024-11-03 21:00:00,3.0070748,5.630719,132.97864,142.2142,14.85,1006.89105,0.0,78.78375,0.0 +2024-11-03 22:00:00,2.7730849,5.0224495,115.64096,133.3865,14.7,1007.38245,0.0,75.680756,1.0 +2024-11-03 23:00:00,3.0220027,4.598369,128.95592,136.76236,16.45,1007.5328,0.0,68.10863,1.0 +2024-11-04 00:00:00,3.4644625,4.4127655,159.73422,160.12773,18.5,1007.3936,0.0,65.22649,1.0 +2024-11-04 01:00:00,3.9360514,4.8332186,205.58847,204.44394,20.4,1007.9435,0.0,60.888573,1.0 +2024-11-04 02:00:00,4.5301766,5.5104446,217.37589,216.14214,20.9,1007.85864,0.0,58.848404,1.0 +2024-11-04 03:00:00,4.82001,5.830309,216.98885,216.28035,21.7,1007.2859,0.0,55.483215,1.0 +2024-11-04 04:00:00,4.954291,6.0170593,222.54593,222.30566,21.95,1007.0946,0.0,53.575798,1.0 +2024-11-04 05:00:00,5.0916595,6.2261543,224.20436,223.0475,21.8,1006.8921,0.0,53.01044,1.0 +2024-11-04 06:00:00,5.287958,6.466065,220.01361,219.35173,21.9,1006.7957,0.0,53.211365,1.0 +2024-11-04 07:00:00,5.7412977,7.12899,213.2749,212.68692,21.4,1006.2859,0.0,53.788246,1.0 +2024-11-04 08:00:00,5.4671745,6.8565664,219.80553,219.37758,21.1,1006.6742,0.0,53.88905,1.0 +2024-11-04 09:00:00,5.591288,7.1217976,218.09972,218.15727,20.65,1006.7606,0.0,53.7732,1.0 +2024-11-04 10:00:00,5.6588426,7.426473,207.9235,208.11777,19.6,1007.02856,0.0,58.147858,1.0 +2024-11-04 11:00:00,5.1288395,7.522799,209.81407,209.46138,18.8,1007.60046,0.0,61.32174,0.0 +2024-11-04 12:00:00,5.299528,7.6252866,206.32323,206.06093,18.65,1007.8939,0.0,62.517498,0.0 +2024-11-04 13:00:00,4.7636647,6.6424766,205.48915,205.40767,18.1,1008.67145,0.0,62.807995,0.0 +2024-11-04 14:00:00,4.7636647,6.440497,205.48915,205.76927,18.0,1008.5694,0.0,61.955387,0.0 +2024-11-04 15:00:00,4.1146083,6.015189,205.94225,206.139,17.7,1008.26306,0.0,62.300396,0.0 +2024-11-04 16:00:00,4.118252,6.1971765,209.0545,208.4259,17.65,1007.7659,0.0,63.546684,0.0 +2024-11-04 17:00:00,4.450281,6.618912,207.42865,206.9521,16.95,1007.5473,0.0,74.81182,0.0 +2024-11-04 18:00:00,3.3800888,5.4829283,209.21915,208.90225,16.7,1007.4409,0.0,77.51704,0.0 +2024-11-04 19:00:00,3.8849065,5.899576,211.84901,211.13025,17.15,1007.4539,0.0,72.19073,0.0 +2024-11-04 20:00:00,2.8900692,5.2478566,210.11365,210.96368,16.7,1007.34174,0.0,70.92655,0.0 +2024-11-04 21:00:00,3.9003205,6.300793,216.13547,215.9606,17.2,1007.7529,0.0,63.445644,0.0 +2024-11-04 22:00:00,4.4654226,6.6567636,214.04597,214.28693,17.7,1008.36224,0.0,59.053707,1.0 +2024-11-04 23:00:00,4.9872336,6.574192,205.53738,206.17523,18.3,1009.07385,0.0,57.829056,1.0 +2024-11-05 00:00:00,5.079862,6.4445715,208.8354,208.75227,19.5,1009.4058,0.0,53.475487,1.0 +2024-11-05 01:00:00,5.1224995,6.4031243,218.65984,218.65984,21.2,1010.2474,0.0,45.014374,1.0 +2024-11-05 02:00:00,5.6731825,7.045566,214.95073,214.59235,21.35,1010.2515,0.0,47.228622,1.0 +2024-11-05 03:00:00,5.423329,6.6567636,214.86227,214.28693,21.5,1010.1568,0.0,48.55176,1.0 +2024-11-05 04:00:00,5.3333855,6.591092,218.91148,217.91316,21.6,1010.0602,0.0,48.741215,1.0 +2024-11-05 05:00:00,5.129571,6.2659793,223.02507,222.08908,22.3,1009.6831,0.0,46.548138,1.0 +2024-11-05 06:00:00,5.287958,6.504806,220.01361,219.0725,22.35,1009.0896,0.0,45.485737,1.0 +2024-11-05 07:00:00,5.6579585,7.0032134,213.83054,213.34972,22.0,1009.07983,0.0,47.72386,1.0 +2024-11-05 08:00:00,5.8619537,7.3824115,208.53235,208.30066,21.05,1008.9536,0.0,51.601646,1.0 +2024-11-05 09:00:00,5.727128,7.3824115,204.77512,204.82932,20.4,1008.93524,0.0,54.608593,1.0 +2024-11-05 10:00:00,5.60803,7.400169,201.99118,202.23279,19.65,1009.1125,0.0,58.160072,1.0 +2024-11-05 11:00:00,4.918587,6.8007355,197.14563,197.10281,19.05,1009.3928,0.0,61.37981,0.0 +2024-11-05 12:00:00,4.4322677,6.677762,191.05637,191.22575,18.6,1010.1732,0.0,63.969646,0.0 +2024-11-05 13:00:00,4.2005954,6.6830006,188.90164,189.0394,18.35,1010.5626,0.0,63.282654,0.0 +2024-11-05 14:00:00,4.2074337,6.8222065,183.40637,184.62407,18.0,1010.652,0.0,64.47456,0.0 +2024-11-05 15:00:00,3.6585517,6.2289643,183.91817,185.52745,17.7,1010.34564,0.0,65.70344,0.0 +2024-11-05 16:00:00,3.4058774,5.9801755,183.3664,185.75816,17.55,1010.1431,0.0,65.88946,0.0 +2024-11-05 17:00:00,3.0149627,5.7212324,185.7105,189.05064,17.05,1009.6327,0.0,68.91219,0.0 +2024-11-05 18:00:00,2.6504717,5.427937,181.0809,185.81554,16.9,1009.13245,0.0,69.1109,0.0 +2024-11-05 19:00:00,4.2107005,7.0087447,175.91446,177.13765,16.75,1009.22723,0.0,78.289024,0.0 +2024-11-05 20:00:00,4.1303754,6.6816916,173.04713,174.41748,16.9,1009.3308,0.0,80.38019,0.0 +2024-11-05 21:00:00,4.7183156,7.6447697,170.2383,170.96901,16.55,1009.71735,0.0,81.91902,0.0 +2024-11-05 22:00:00,4.9175706,7.4,161.01228,161.07526,16.5,1010.6083,0.0,83.52721,1.0 +2024-11-05 23:00:00,5.3935146,7.110731,169.31514,169.8754,17.5,1011.52997,0.0,76.385284,1.0 +2024-11-06 00:00:00,6.278734,8.194205,174.5165,174.04599,18.35,1011.95105,0.1,68.26855,1.0 +2024-11-06 01:00:00,5.5145264,6.856566,184.15956,182.50764,20.35,1012.4053,0.0,51.244812,1.0 +2024-11-06 02:00:00,5.5301447,6.7574034,194.6645,192.39084,21.25,1012.7282,0.0,47.04298,1.0 +2024-11-06 03:00:00,5.4134097,6.609463,201.11357,198.9833,21.65,1012.5414,0.0,41.05926,1.0 +2024-11-06 04:00:00,5.897669,7.18401,198.28143,196.16457,22.3,1011.8652,0.0,41.94671,1.0 +2024-11-06 05:00:00,7.040064,8.731695,196.50444,194.5933,22.0,1011.6585,0.0,45.5413,1.0 +2024-11-06 06:00:00,7.28869,9.133044,194.7036,192.97112,21.65,1011.3512,0.0,47.46938,1.0 +2024-11-06 07:00:00,7.6095333,9.65984,191.7529,190.43742,21.25,1010.94293,0.0,49.13675,1.0 +2024-11-06 08:00:00,7.622664,9.823568,187.91742,187.0164,20.55,1010.8242,0.0,53.03724,1.0 +2024-11-06 09:00:00,7.3744493,9.668634,184.66678,183.55779,19.95,1010.807,0.0,55.04053,1.0 +2024-11-06 10:00:00,7.0007143,9.5,180.81844,180.0,19.05,1011.0788,0.0,57.820507,1.0 +2024-11-06 11:00:00,6.129437,9.199184,174.3825,174.07259,18.45,1011.45844,0.0,60.632477,0.0 +2024-11-06 12:00:00,5.396758,8.477323,166.60748,166.70142,18.0,1011.84204,0.0,63.203915,0.0 +2024-11-06 13:00:00,5.440588,8.640023,162.89719,163.87234,17.15,1012.70984,0.0,67.128876,0.0 +2024-11-06 14:00:00,5.110039,8.345208,163.51547,164.71472,16.85,1012.80035,0.0,69.10095,0.0 +2024-11-06 15:00:00,5.015227,8.301355,159.57759,161.0193,16.45,1012.39197,0.0,70.87911,0.0 +2024-11-06 16:00:00,4.7853947,8.1024685,153.97047,155.96571,16.0,1011.982,0.0,74.404625,0.0 +2024-11-06 17:00:00,4.6219583,7.8971515,148.7174,151.6502,15.45,1011.5691,0.0,77.06917,0.0 +2024-11-06 18:00:00,4.6400433,8.043164,142.88306,146.40869,14.85,1011.15497,0.0,75.20287,0.0 +2024-11-06 19:00:00,4.609772,8.150153,139.39879,143.48152,14.25,1011.0381,0.0,70.93368,0.0 +2024-11-06 20:00:00,4.5254836,8.194663,135.0001,139.70213,13.65,1011.1195,0.0,72.02667,0.0 +2024-11-06 21:00:00,4.313931,7.9682183,134.0609,138.30684,13.3,1011.20825,0.0,72.69642,0.0 +2024-11-06 22:00:00,4.457017,7.9644523,133.18172,137.79897,13.45,1011.51013,0.0,71.0205,1.0 +2024-11-06 23:00:00,4.526036,7.079901,135.89508,137.86247,15.6,1011.87115,0.0,61.396706,1.0 +2024-11-07 00:00:00,5.4801917,7.19809,148.05006,147.19304,18.3,1012.049,0.0,48.4986,1.0 +2024-11-07 01:00:00,5.553602,7.038466,159.44388,157.44272,20.45,1012.11066,0.0,43.750614,1.0 +2024-11-07 02:00:00,5.515886,6.8170743,171.13545,167.28886,21.9,1011.3581,0.0,41.551056,1.0 +2024-11-07 03:00:00,5.7054796,6.952877,182.5113,178.35168,22.8,1010.4908,0.0,42.08757,1.0 +2024-11-07 04:00:00,7.0092797,8.649278,194.03627,190.6603,22.5,1010.08563,0.0,47.85991,1.0 +2024-11-07 05:00:00,8.065358,10.254024,197.31174,196.13734,21.15,1010.0475,0.0,53.19304,1.0 +2024-11-07 06:00:00,7.5960517,9.897601,196.04907,195.22978,19.75,1009.8095,0.0,57.60904,1.0 +2024-11-07 07:00:00,6.851642,8.901263,193.93486,193.64597,19.95,1009.5177,0.0,54.857628,1.0 +2024-11-07 08:00:00,6.858936,8.803551,182.92491,181.62724,20.35,1008.63654,0.0,54.05419,1.0 +2024-11-07 09:00:00,6.88077,9.011381,174.5795,173.30884,19.85,1007.82886,0.0,55.382607,1.0 +2024-11-07 10:00:00,6.896557,9.298521,173.33879,171.65213,19.0,1007.6062,0.0,60.56081,1.0 +2024-11-07 11:00:00,6.0876927,8.889601,165.73546,166.6672,18.05,1007.9757,0.0,66.65289,0.0 +2024-11-07 12:00:00,6.140033,9.099726,173.45381,174.00757,17.4,1007.95703,1.8,74.156075,0.0 +2024-11-07 13:00:00,5.8200088,8.42882,171.10422,172.15839,17.8,1007.6709,0.0,69.746254,0.0 +2024-11-07 14:00:00,5.0707493,7.664366,167.4712,166.41702,17.7,1007.27136,0.0,72.05442,0.0 +2024-11-07 15:00:00,5.3183646,8.254847,189.19658,186.60837,16.9,1007.2483,0.0,78.311325,0.0 +2024-11-07 16:00:00,5.8045244,8.798011,197.03024,196.1691,16.75,1006.9464,0.0,78.289024,0.0 +2024-11-07 17:00:00,6.2211337,9.229437,201.20288,201.28271,16.65,1006.84436,0.0,76.49994,0.0 +2024-11-07 18:00:00,5.3521023,8.30542,181.60597,182.06999,16.35,1006.43915,1.3,85.430534,0.0 +2024-11-07 19:00:00,4.7523675,7.35017,181.8087,180.38976,16.3,1006.3384,0.0,87.10315,0.0 +2024-11-07 20:00:00,4.4553337,7.107215,189.0394,187.27492,16.1,1006.53076,0.0,87.08449,0.0 +2024-11-07 21:00:00,4.516913,7.316078,206.28134,204.63838,16.15,1006.82983,0.0,83.214745,0.0 +2024-11-07 22:00:00,4.405111,6.797794,206.27415,206.18805,16.7,1007.34174,0.0,78.02601,1.0 +2024-11-07 23:00:00,6.6912255,9.021363,204.26678,203.86577,17.05,1008.1452,0.1,77.317726,1.0 +2024-11-08 00:00:00,5.3202443,6.8709536,201.5015,201.33693,18.3,1008.37964,0.0,68.03465,1.0 +2024-11-08 01:00:00,6.2433968,7.9147015,211.90807,210.77747,20.65,1007.2565,0.0,57.26107,1.0 +2024-11-08 02:00:00,6.3780875,7.9832635,221.18582,220.17308,20.9,1007.2635,0.0,56.386745,1.0 +2024-11-08 03:00:00,7.184184,9.021225,227.53859,227.02136,21.2,1007.7679,0.0,55.906933,1.0 +2024-11-08 04:00:00,7.9556584,10.07931,224.23619,223.59308,21.05,1007.6643,0.1,56.238644,1.0 +2024-11-08 05:00:00,7.8946185,10.073356,218.82983,218.34894,21.0,1007.3656,0.1,55.85681,1.0 +2024-11-08 06:00:00,7.9600563,10.137184,213.98956,213.53333,21.2,1006.8753,0.0,54.451763,1.0 +2024-11-08 07:00:00,8.276473,10.647065,208.11311,208.00908,20.85,1006.6672,0.0,55.451775,1.0 +2024-11-08 08:00:00,8.6339445,11.32166,199.27448,199.0752,20.6,1006.2632,0.0,56.68501,1.0 +2024-11-08 09:00:00,8.619309,11.521827,191.37508,191.26114,19.65,1006.13727,0.0,63.99124,1.0 +2024-11-08 10:00:00,7.67219,10.493807,187.86598,187.66672,19.4,1006.4275,0.0,63.517532,1.0 +2024-11-08 11:00:00,6.4381676,9.044888,186.24182,185.7105,18.9,1007.2066,0.0,67.269806,0.0 +2024-11-08 12:00:00,6.00354,8.564608,187.65762,187.04195,18.5,1007.69116,0.0,71.7313,0.0 +2024-11-08 13:00:00,4.851031,7.2515516,181.18117,181.18524,17.6,1008.45856,0.0,74.1904,0.0 +2024-11-08 14:00:00,4.8002605,7.5001664,180.5968,180.38196,17.4,1008.4529,0.0,75.3786,0.0 +2024-11-08 15:00:00,4.7265205,7.2339478,173.92764,174.44713,17.45,1008.2558,0.0,75.141,0.0 +2024-11-08 16:00:00,4.2005954,6.527059,171.09836,171.18718,17.45,1007.75995,0.0,75.141,0.0 +2024-11-08 17:00:00,3.7716045,6.404881,165.41104,167.37418,16.9,1007.44666,0.0,77.54767,0.0 +2024-11-08 18:00:00,3.5584404,6.230971,160.29193,162.72816,16.75,1007.04553,0.0,77.77874,0.0 +2024-11-08 19:00:00,3.3837848,6.036969,145.84026,148.54799,16.25,1007.1301,0.0,78.987785,0.0 +2024-11-08 20:00:00,3.0955615,5.7812195,121.122406,130.43997,15.45,1007.40424,0.0,82.04787,0.0 +2024-11-08 21:00:00,3.5850384,6.652819,129.90784,137.43669,15.45,1007.9001,0.0,80.1816,0.0 +2024-11-08 22:00:00,4.210997,7.1431785,132.594,136.13434,15.85,1008.40765,0.0,77.641685,1.0 +2024-11-08 23:00:00,3.740655,5.4426556,127.94221,128.65984,17.25,1009.04346,0.0,71.971924,1.0 +2024-11-09 00:00:00,3.9322386,5.1470866,131.39143,129.87679,19.8,1009.4144,0.0,60.15106,1.0 +2024-11-09 01:00:00,3.3286633,4.1309805,147.26479,141.88168,22.05,1009.37866,0.0,49.680897,1.0 +2024-11-09 02:00:00,3.473111,4.050309,186.61336,179.2927,23.65,1008.729,0.0,42.32625,1.0 +2024-11-09 03:00:00,6.148374,7.653757,211.36325,208.90909,22.0,1008.3855,0.0,60.27445,1.0 +2024-11-09 04:00:00,6.983552,8.879471,209.1342,207.86363,21.5,1008.1732,0.0,62.14409,1.0 +2024-11-09 05:00:00,7.3370633,9.270383,204.99327,203.52322,22.3,1007.7986,0.0,57.10468,1.0 +2024-11-09 06:00:00,7.2235723,9.158739,201.94876,200.1168,22.7,1007.61163,0.0,55.37175,1.0 +2024-11-09 07:00:00,7.8781343,10.077947,196.59483,194.6568,22.2,1007.3994,0.0,58.967525,1.0 +2024-11-09 08:00:00,8.487785,11.186263,185.40823,184.61469,21.25,1007.27325,0.0,63.719852,1.0 +2024-11-09 09:00:00,8.923704,11.912703,184.17703,182.64618,20.75,1007.1602,0.0,66.99578,1.0 +2024-11-09 10:00:00,8.958934,12.417025,177.44106,176.9994,19.4,1007.6176,0.0,72.59743,1.0 +2024-11-09 11:00:00,8.180006,12.010099,175.09102,174.26576,18.65,1007.8939,0.0,76.81513,0.0 +2024-11-09 12:00:00,7.8447433,11.923925,168.9766,168.87859,18.25,1008.08057,0.0,77.00152,0.0 +2024-11-09 13:00:00,6.5736213,10.165136,165.01239,164.59651,17.95,1009.2621,0.0,77.707375,0.0 +2024-11-09 14:00:00,6.594885,10.326302,162.80138,162.53004,17.65,1009.1543,0.0,80.74255,0.0 +2024-11-09 15:00:00,6.1856694,9.7965555,159.66069,159.06738,17.35,1008.94714,0.0,79.92099,0.0 +2024-11-09 16:00:00,5.8587537,9.405583,158.47093,158.48132,16.9,1008.5375,0.0,77.80148,0.0 +2024-11-09 17:00:00,5.5542774,9.073313,156.66594,156.96722,16.4,1008.2254,0.0,77.7256,0.0 +2024-11-09 18:00:00,4.9648767,8.385255,152.4028,153.43501,15.9,1008.0126,0.0,77.13947,0.0 +2024-11-09 19:00:00,4.4102154,7.780906,147.0306,147.33115,15.3,1008.1931,0.0,76.03125,0.0 +2024-11-09 20:00:00,4.0512342,7.545197,144.54445,145.25676,14.9,1008.47894,0.0,72.74282,0.0 +2024-11-09 21:00:00,3.8503246,7.35017,142.38597,142.74026,14.6,1009.06506,0.0,69.34737,0.0 +2024-11-09 22:00:00,3.9824615,7.2022567,141.1155,139.78706,14.85,1009.66754,0.0,66.196236,1.0 +2024-11-09 23:00:00,4.1188593,6.2235436,146.88866,141.1964,17.1,1010.4274,0.0,59.306343,1.0 +2024-11-10 00:00:00,4.4161634,5.6731825,149.37007,145.04927,19.75,1010.702,0.0,52.651855,1.0 +2024-11-10 01:00:00,4.632764,5.823444,161.76051,156.73679,22.0,1010.6667,0.0,47.72386,1.0 +2024-11-10 02:00:00,5.6535387,6.952158,177.97272,172.9773,23.5,1010.31177,0.0,43.86616,1.0 +2024-11-10 03:00:00,7.119691,8.868484,190.52074,187.12492,23.8,1009.9233,0.0,46.958355,1.0 +2024-11-10 04:00:00,8.380484,10.689481,194.8654,192.1509,23.45,1009.3187,0.0,48.1173,1.0 +2024-11-10 05:00:00,8.683317,11.194306,194.67644,193.16725,23.3,1009.1162,0.0,46.052517,1.0 +2024-11-10 06:00:00,8.538296,11.011357,194.93147,193.65765,23.1,1008.7137,0.0,46.612484,1.0 +2024-11-10 07:00:00,8.634958,11.205802,194.7605,193.4162,22.55,1008.5994,0.0,51.48488,1.0 +2024-11-10 08:00:00,8.600145,11.319231,190.72192,189.91995,21.7,1008.4761,0.0,58.275,1.0 +2024-11-10 09:00:00,8.62047,11.518029,187.33102,186.23022,20.85,1009.0475,0.0,63.83863,1.0 +2024-11-10 10:00:00,8.100618,11.15,180.7073,180.0,19.9,1009.51654,0.0,68.57913,1.0 +2024-11-10 11:00:00,7.4560375,11.213496,177.69408,177.18869,18.75,1009.97943,0.0,76.58317,0.0 +2024-11-10 12:00:00,7.212836,11.002727,172.4317,172.16457,18.4,1010.36597,0.0,79.55166,0.0 +2024-11-10 13:00:00,6.7403636,10.439349,170.60762,170.62798,18.0,1010.75116,0.0,81.837395,0.0 +2024-11-10 14:00:00,6.8447056,10.728001,168.19759,168.16638,17.8,1010.5469,0.0,83.40887,0.0 +2024-11-10 15:00:00,6.806247,10.700468,164.22798,164.27519,17.6,1010.1444,0.0,84.19516,0.0 +2024-11-10 16:00:00,6.720305,10.656923,160.89091,161.39494,17.25,1009.5393,0.0,84.15598,0.0 +2024-11-10 17:00:00,6.407808,10.250488,157.0362,157.93904,16.8,1009.1296,0.0,82.484726,0.0 +2024-11-10 18:00:00,5.926635,9.704638,152.35411,153.69905,16.15,1008.714,0.0,80.277824,0.0 +2024-11-10 19:00:00,5.257613,8.961724,147.82137,149.8587,15.55,1008.6966,0.0,78.10965,0.0 +2024-11-10 20:00:00,4.7405167,8.335767,142.28395,145.2613,14.95,1009.07544,0.0,77.2467,0.0 +2024-11-10 21:00:00,4.2405777,7.81185,142.1842,144.37697,14.35,1009.4544,0.0,77.15295,0.0 +2024-11-10 22:00:00,4.1800117,7.2953753,143.26709,145.32962,14.45,1009.9531,0.0,75.387215,1.0 +2024-11-10 23:00:00,4.473533,6.4445715,152.00294,151.24773,16.35,1010.50494,0.0,67.8616,1.0 +2024-11-11 00:00:00,5.233784,6.8820415,161.04567,159.59003,18.95,1010.6792,0.0,58.376385,1.0 +2024-11-11 01:00:00,5.0695167,6.467032,165.14134,161.98521,22.1,1010.0745,0.0,49.03895,1.0 +2024-11-11 02:00:00,4.440721,5.4207935,172.23492,165.5792,24.8,1009.3561,0.0,40.439526,1.0 +2024-11-11 03:00:00,6.6219335,8.158431,194.87573,191.30989,24.75,1008.85846,0.0,49.58551,1.0 +2024-11-11 04:00:00,8.20061,10.478549,195.56157,193.24052,23.9,1008.3391,0.0,56.759384,1.0 +2024-11-11 05:00:00,8.56344,11.070796,192.81909,191.46214,23.55,1008.03204,0.0,58.530506,1.0 +2024-11-11 06:00:00,8.454881,10.845506,192.63905,190.89546,23.75,1007.54156,0.0,55.814278,1.0 +2024-11-11 07:00:00,8.600145,11.261439,190.72192,189.71318,22.95,1007.4203,0.0,59.52897,1.0 +2024-11-11 08:00:00,8.640891,11.436018,188.31757,187.03171,22.2,1007.5978,0.0,64.34063,1.0 +2024-11-11 09:00:00,8.421401,11.31868,184.08554,183.29208,21.15,1007.7663,0.0,69.715775,1.0 +2024-11-11 10:00:00,8.0524845,11.105516,178.57683,178.19402,19.85,1008.0272,0.0,75.77826,1.0 +2024-11-11 11:00:00,7.6034536,11.399123,173.20221,172.43866,18.7,1008.391,0.0,81.925575,0.0 +2024-11-11 12:00:00,7.368175,11.101802,172.1999,172.23492,18.25,1008.87396,0.0,84.537834,0.0 +2024-11-11 13:00:00,7.119691,10.787029,169.47926,169.31514,17.9,1009.3599,0.0,85.31683,0.0 +2024-11-11 14:00:00,6.718631,10.235722,165.3432,165.28488,17.7,1009.5523,0.0,85.57026,0.0 +2024-11-11 15:00:00,6.5802736,10.220078,163.21727,163.51547,17.45,1009.1483,0.0,86.09643,0.0 +2024-11-11 16:00:00,6.2625875,9.787875,160.40762,160.91705,17.2,1008.84375,0.0,86.071556,0.0 +2024-11-11 17:00:00,6.0730963,9.554188,157.23495,157.86446,17.0,1008.24286,0.0,86.051575,0.0 +2024-11-11 18:00:00,5.6797886,9.10412,153.88615,154.98314,16.45,1008.12775,0.0,87.6822,0.0 +2024-11-11 19:00:00,5.420332,8.9679985,150.1241,152.43497,15.95,1008.41077,0.0,87.92222,0.0 +2024-11-11 20:00:00,5.186521,8.703591,146.0035,148.86696,15.45,1008.69336,0.0,88.45209,0.0 +2024-11-11 21:00:00,5.0400896,8.570297,143.47105,145.93904,14.85,1008.97345,0.0,88.40134,0.0 +2024-11-11 22:00:00,5.021205,8.290054,141.87477,143.33736,14.9,1009.5697,0.0,85.2783,1.0 +2024-11-11 23:00:00,5.104165,7.1417785,147.39967,146.42116,16.55,1009.9157,0.0,74.74431,1.0 +2024-11-12 00:00:00,5.1441717,6.686179,154.68036,152.86017,18.9,1010.08264,0.0,61.344986,1.0 +2024-11-12 01:00:00,5.0289164,6.3612103,162.64589,159.28575,21.35,1009.85486,0.0,53.59801,1.0 +2024-11-12 02:00:00,5.5226803,6.855837,174.80566,169.91946,23.5,1009.51825,0.0,46.567562,1.0 +2024-11-12 03:00:00,6.412488,7.900158,183.57626,179.63737,24.7,1008.85724,0.0,45.230553,1.0 +2024-11-12 04:00:00,7.686514,9.691877,188.6044,185.32814,24.75,1008.2633,0.0,50.398167,1.0 +2024-11-12 05:00:00,8.541955,10.955363,188.4146,185.76254,24.6,1007.7633,0.0,52.3578,1.0 +2024-11-12 06:00:00,8.812775,11.439514,186.84268,184.76355,24.3,1007.25916,0.0,52.62044,1.0 +2024-11-12 07:00:00,8.646965,11.321661,185.97423,183.5447,23.95,1006.9521,0.0,56.044445,1.0 +2024-11-12 08:00:00,8.46788,11.307077,183.72398,182.02728,22.85,1006.9215,0.0,60.863342,1.0 +2024-11-12 09:00:00,8.001406,10.766731,178.92586,176.80548,22.25,1006.90466,0.0,66.02369,1.0 +2024-11-12 10:00:00,7.498333,10.530551,173.49113,172.90883,20.65,1006.7606,0.0,73.287415,1.0 +2024-11-12 11:00:00,6.471862,10.103712,168.86374,167.1329,19.55,1007.2253,0.0,79.45779,0.0 +2024-11-12 12:00:00,6.754628,10.709108,165.86086,165.12024,19.1,1007.3115,0.0,81.19374,0.0 +2024-11-12 13:00:00,5.95525,9.849365,164.91359,164.6938,18.65,1007.69556,0.0,82.97518,0.0 +2024-11-12 14:00:00,5.597321,9.424436,161.24126,160.79593,18.3,1007.4871,0.0,85.086,0.0 +2024-11-12 15:00:00,5.088467,8.719232,157.4667,157.40536,17.85,1007.07745,0.0,86.68967,0.0 +2024-11-12 16:00:00,4.5213385,8.013114,150.88396,150.87604,17.3,1006.8633,0.0,85.25403,0.0 +2024-11-12 17:00:00,3.9962482,7.447483,148.29861,147.05676,16.8,1005.95624,0.0,80.89159,0.0 +2024-11-12 18:00:00,3.696282,7.0869594,149.96681,147.09476,16.65,1005.6543,0.0,77.00321,0.0 +2024-11-12 19:00:00,3.7259226,7.074249,139.89915,136.71832,16.6,1005.5539,0.0,74.507164,0.0 +2024-11-12 20:00:00,4.0672474,7.8873315,136.49428,129.3405,16.8,1005.5596,0.0,71.18038,0.0 +2024-11-12 21:00:00,3.9698865,8.18917,130.91429,121.26367,17.9,1005.59143,0.0,62.55412,0.0 +2024-11-12 22:00:00,3.46013,7.4781346,127.36675,113.65133,19.1,1006.2206,0.0,53.551044,1.0 +2024-11-12 23:00:00,3.7165172,8.041144,146.5237,111.1399,21.5,1006.5863,0.0,44.49377,1.0 +2024-11-13 00:00:00,3.952847,5.911218,145.30478,125.70678,24.75,1006.27954,0.0,34.39376,1.0 +2024-11-13 01:00:00,3.240756,4.3304157,141.89238,126.0761,28.1,1005.57697,0.0,27.655502,1.0 +2024-11-13 02:00:00,3.662308,4.365776,175.3014,159.90468,30.45,1005.0445,0.0,24.89532,1.0 +2024-11-13 03:00:00,5.082568,6.278734,195.40349,185.4835,30.0,1004.5365,0.0,35.984917,1.0 +2024-11-13 04:00:00,5.7293105,7.4394217,200.96579,188.89247,30.15,1003.8461,0.0,41.791256,1.0 +2024-11-13 05:00:00,6.5654397,9.051658,202.85484,192.11684,29.25,1003.3263,0.0,45.153065,1.0 +2024-11-13 06:00:00,6.9858785,10.239385,194.93147,187.57607,28.1,1002.8986,0.0,42.447308,1.0 +2024-11-13 07:00:00,6.619101,9.728951,190.88548,184.4212,27.9,1002.49634,0.0,43.928383,1.0 +2024-11-13 08:00:00,6.4778466,9.901136,185.31445,179.13197,27.35,1002.4819,0.0,45.65784,1.0 +2024-11-13 09:00:00,5.4646587,7.91012,184.19759,177.10149,26.55,1002.65857,0.0,49.42176,1.0 +2024-11-13 10:00:00,5.115662,7.6041107,184.48453,178.116,24.8,1003.20636,0.0,56.25419,1.0 +2024-11-13 11:00:00,5.3835397,9.306583,173.60114,167.90526,22.25,1003.4333,0.0,68.82257,0.0 +2024-11-13 12:00:00,4.712218,8.579627,160.79593,158.81857,21.9,1003.82025,0.0,66.16235,0.0 +2024-11-13 13:00:00,4.5069394,9.111806,162.57005,159.77505,21.15,1004.3942,0.0,66.21853,0.0 +2024-11-13 14:00:00,4.232316,8.91852,165.63538,162.37761,20.55,1004.3776,0.0,69.37607,0.0 +2024-11-13 15:00:00,4.253528,8.143249,162.20392,161.0087,19.95,1004.36053,0.0,74.35002,0.0 +2024-11-13 16:00:00,3.905445,7.625287,161.333,159.66373,19.4,1004.1465,0.0,77.42715,0.0 +2024-11-13 17:00:00,3.2962098,6.9198985,157.71437,156.58395,18.8,1003.4352,0.0,78.84384,0.0 +2024-11-13 18:00:00,2.3706539,5.8591805,152.35411,152.56036,18.15,1002.82166,0.0,80.549095,0.0 +2024-11-13 19:00:00,1.7088008,4.5590568,159.44388,158.78195,17.15,1002.79297,0.0,84.96373,0.0 +2024-11-13 20:00:00,1.8343936,4.638157,162.55272,168.81123,16.8,1003.0804,0.0,86.86892,0.0 +2024-11-13 21:00:00,1.7,4.632494,151.92761,166.26372,16.45,1003.16943,0.0,88.53593,0.0 +2024-11-13 22:00:00,1.7951323,4.3072615,167.125,176.67267,17.1,1003.98145,0.0,88.87487,1.0 +2024-11-13 23:00:00,2.8004463,4.1503015,178.97699,180.69026,20.0,1004.461,0.0,83.39835,1.0 +2024-11-14 00:00:00,2.6925821,3.3245301,195.06854,192.15492,22.1,1004.917,0.0,74.710014,1.0 +2024-11-14 01:00:00,3.0858548,3.7161808,206.98015,203.80595,23.5,1005.0549,0.0,69.28461,1.0 +2024-11-14 02:00:00,3.828838,4.591568,220.76352,218.36752,24.4,1005.27826,0.0,66.46971,1.0 +2024-11-14 03:00:00,4.4902673,5.4829283,224.54892,223.1524,24.1,1005.27,0.0,67.25103,1.0 +2024-11-14 04:00:00,4.384062,5.3415823,224.9999,223.1035,24.55,1004.98474,0.0,65.255806,1.0 +2024-11-14 05:00:00,4.3863425,5.3814497,223.1524,221.98714,24.6,1004.4901,0.0,65.06092,1.0 +2024-11-14 06:00:00,4.7835655,5.8898215,221.18584,220.17917,24.4,1004.1872,0.0,65.84434,1.0 +2024-11-14 07:00:00,4.981215,6.171102,215.60461,213.43257,24.05,1003.97906,0.0,67.029236,1.0 +2024-11-14 08:00:00,5.01722,6.332851,209.88644,208.79088,23.25,1004.05615,0.0,69.89544,1.0 +2024-11-14 09:00:00,5.127621,6.6115427,203.56541,202.68657,22.3,1004.3272,0.0,74.039154,1.0 +2024-11-14 10:00:00,4.808326,6.3941383,196.9276,195.88393,21.05,1004.5898,0.0,81.95896,1.0 +2024-11-14 11:00:00,4.68855,6.7861996,187.35228,185.92053,20.05,1004.85925,0.0,88.552,0.0 +2024-11-14 12:00:00,4.550275,6.7529626,179.37042,178.30289,19.6,1005.24335,0.0,89.63696,0.0 +2024-11-14 13:00:00,4.2002974,6.7529626,179.31796,178.30289,18.95,1005.81976,0.0,89.30515,0.0 +2024-11-14 14:00:00,4.700266,7.550662,180.6095,179.24118,18.6,1005.80963,0.0,90.70397,0.0 +2024-11-14 15:00:00,5.1119957,8.212338,176.07417,176.85893,18.5,1005.8069,0.0,89.838646,0.0 +2024-11-14 16:00:00,5.352803,8.584288,171.94568,171.96439,18.65,1005.3154,0.0,86.48993,0.0 +2024-11-14 17:00:00,5.3443894,8.345208,169.21574,169.29604,18.85,1004.6269,0.0,84.873184,0.0 +2024-11-14 18:00:00,4.9246826,7.7620873,164.6938,165.06853,18.85,1004.2302,0.0,84.33393,0.0 +2024-11-14 19:00:00,4.1584253,6.8308125,161.7828,162.09546,18.7,1004.1265,0.0,85.12817,0.0 +2024-11-14 20:00:00,3.51141,6.103278,160.0168,161.86183,18.35,1004.5132,0.0,87.01422,0.0 +2024-11-14 21:00:00,2.2388613,4.4949975,150.57263,154.2901,17.95,1004.7994,0.0,88.66,0.0 +2024-11-14 22:00:00,2.34094,4.2582273,160.0168,164.33177,18.25,1005.50214,0.0,87.004906,1.0 +2024-11-14 23:00:00,4.2573466,5.6608305,176.6336,176.4553,19.75,1005.9416,0.0,78.477394,1.0 +2024-11-15 00:00:00,5.204325,6.710626,188.2857,187.7074,21.1,1006.4758,0.0,69.48284,1.0 +2024-11-15 01:00:00,5.3600373,6.8551073,194.03627,192.21149,22.25,1006.40875,0.0,63.939293,1.0 +2024-11-15 02:00:00,5.5430136,6.997321,195.16452,193.63907,22.9,1006.526,0.0,61.861286,1.0 +2024-11-15 03:00:00,6.1214786,7.7165403,200.06316,197.73062,23.7,1006.25085,0.0,58.75484,1.0 +2024-11-15 04:00:00,6.6407833,8.448077,198.43504,196.50444,23.75,1005.9546,0.0,62.251675,1.0 +2024-11-15 05:00:00,6.7861996,8.586617,196.69933,194.8455,24.1,1005.3692,0.0,59.799107,1.0 +2024-11-15 06:00:00,7.5440373,9.757177,193.02309,191.82814,23.45,1004.85535,0.0,61.001526,1.0 +2024-11-15 07:00:00,7.707464,10.022225,191.60149,190.63716,22.65,1004.53534,0.0,65.47693,1.0 +2024-11-15 08:00:00,7.5731435,9.978601,187.96953,187.19614,21.85,1004.8108,0.0,68.30588,1.0 +2024-11-15 09:00:00,7.876865,10.523308,184.73335,183.814,21.1,1004.59143,0.0,69.26018,1.0 +2024-11-15 10:00:00,7.4607306,10.307764,183.07327,182.2239,19.7,1004.8495,0.0,74.3077,1.0 +2024-11-15 11:00:00,6.400781,9.252162,179.10484,178.7614,19.15,1005.03204,0.0,77.88795,0.0 +2024-11-15 12:00:00,6.6687703,10.135705,175.70023,175.1895,19.15,1005.23035,0.0,76.646,0.0 +2024-11-15 13:00:00,7.0213957,10.747326,169.33026,169.00377,18.75,1005.3183,0.0,80.629425,0.0 +2024-11-15 14:00:00,6.900181,10.610962,166.16513,166.0947,18.65,1005.3154,0.0,82.18216,0.0 +2024-11-15 15:00:00,7.1431785,11.011357,166.64465,166.34235,18.55,1005.11426,0.0,80.862045,0.0 +2024-11-15 16:00:00,7.2940044,11.25,163.67688,163.73972,18.3,1004.71027,0.0,81.35063,0.0 +2024-11-15 17:00:00,7.534255,11.476606,164.21123,164.32884,18.15,1004.1109,0.0,80.80907,0.0 +2024-11-15 18:00:00,7.3206897,11.29004,161.6887,162.20691,18.15,1003.615,0.0,80.031364,0.0 +2024-11-15 19:00:00,6.689731,10.436714,160.34608,160.69691,17.85,1003.60645,0.0,79.474335,0.0 +2024-11-15 20:00:00,6.053924,9.581883,157.6713,158.25404,17.5,1003.69556,0.0,78.91103,0.0 +2024-11-15 21:00:00,5.0982842,8.385255,153.18373,153.43501,17.0,1004.1769,0.0,76.80629,0.0 +2024-11-15 22:00:00,5.0089917,8.005155,153.94656,153.27498,17.2,1004.877,0.0,70.78744,1.0 +2024-11-15 23:00:00,4.9962487,7.3409805,157.02725,155.87901,18.2,1005.3025,0.0,62.414852,1.0 +2024-11-16 00:00:00,5.682649,7.7472577,158.85384,156.41296,20.2,1005.3593,0.0,50.35352,1.0 +2024-11-16 01:00:00,6.232576,8.1939,159.82045,156.2505,22.6,1005.3276,0.0,40.63557,1.0 +2024-11-16 02:00:00,6.8740454,8.867074,169.09879,164.63148,24.8,1004.79333,0.0,35.715126,1.0 +2024-11-16 03:00:00,8.403719,10.904127,181.7047,178.4235,25.25,1004.6072,0.0,37.56937,1.0 +2024-11-16 04:00:00,9.922828,13.142014,186.94588,184.58253,24.0,1004.0769,0.0,45.48702,1.0 +2024-11-16 05:00:00,10.413693,13.951702,186.3401,184.93408,23.0,1003.65247,0.0,50.430046,1.0 +2024-11-16 06:00:00,10.156033,13.650825,181.97488,180.62958,23.05,1003.2573,0.0,48.64789,1.0 +2024-11-16 07:00:00,10.201961,13.801449,181.12328,179.16971,22.95,1002.75854,0.0,50.085995,1.0 +2024-11-16 08:00:00,10.351088,14.250088,180.83029,179.79897,21.7,1002.5252,0.0,55.12002,1.0 +2024-11-16 09:00:00,10.135705,14.064939,175.1895,174.49217,20.45,1002.6887,0.0,59.12773,1.0 +2024-11-16 10:00:00,9.602604,13.686215,171.61684,170.53775,19.25,1002.9522,0.0,65.3879,1.0 +2024-11-16 11:00:00,9.355479,14.507325,167.96942,167.257,18.4,1003.2255,0.0,68.72801,0.0 +2024-11-16 12:00:00,9.488151,14.768379,162.5198,162.05571,18.25,1003.61786,0.0,66.914795,0.0 +2024-11-16 13:00:00,8.719232,13.492312,157.40536,157.3311,17.75,1003.802,0.0,65.714165,0.0 +2024-11-16 14:00:00,7.8294315,12.322033,155.07155,154.26683,17.45,1003.9915,0.0,58.59752,0.0 +2024-11-16 15:00:00,7.0445013,11.3887005,152.52565,151.40971,17.3,1004.2849,0.0,50.94811,0.0 +2024-11-16 16:00:00,6.3812227,10.527226,147.80429,145.25314,17.5,1004.3897,0.0,43.364925,0.0 +2024-11-16 17:00:00,6.04752,10.080179,147.4925,143.47105,17.7,1003.8996,0.0,37.6059,0.0 +2024-11-16 18:00:00,5.2801514,9.27281,142.69597,137.62245,18.15,1003.615,0.0,30.908545,0.0 +2024-11-16 19:00:00,4.7423625,8.867074,137.56381,130.426,18.65,1003.332,0.0,23.797947,0.0 +2024-11-16 20:00:00,4.571925,8.764274,131.00899,123.599434,18.75,1003.6323,0.0,22.873579,0.0 +2024-11-16 21:00:00,4.482187,8.583851,128.65984,120.44854,18.75,1003.7315,0.0,23.301867,0.0 +2024-11-16 22:00:00,4.3809247,8.1412525,128.04709,117.824005,19.05,1004.0375,0.0,23.7312,1.0 +2024-11-16 23:00:00,4.1439714,6.4809337,138.42397,125.89747,21.3,1004.29944,0.0,22.143139,1.0 +2024-11-17 00:00:00,5.6002235,7.589466,113.13145,108.43504,24.05,1004.1774,0.0,21.360409,1.0 +2024-11-17 01:00:00,5.666127,7.581722,105.876015,102.569786,25.95,1003.7334,0.0,21.01292,1.0 +2024-11-17 02:00:00,4.9155364,6.465678,99.36644,93.99084,28.6,1003.60657,0.0,21.464573,1.0 +2024-11-17 03:00:00,3.2442255,4.3931766,118.539894,101.821465,30.2,1003.153,0.0,23.590626,1.0 +2024-11-17 04:00:00,3.3136082,4.14367,174.80566,160.25307,30.85,1002.1779,0.0,25.25598,1.0 +2024-11-17 05:00:00,7.472616,10.104578,195.52417,188.2503,29.35,1001.4439,0.0,31.165865,1.0 +2024-11-17 06:00:00,8.640167,12.60724,190.33444,185.46178,27.5,1000.89856,0.0,36.59753,1.0 +2024-11-17 07:00:00,10.0659075,15.473364,186.5601,183.14896,25.75,1000.45465,0.0,41.111786,1.0 +2024-11-17 08:00:00,8.501324,13.341383,178.98903,175.4861,25.3,1000.24414,0.0,40.985893,1.0 +2024-11-17 09:00:00,7.078312,9.042676,171.46931,169.80856,25.4,1000.24695,0.0,43.382362,1.0 +2024-11-17 10:00:00,5.6555285,9.872437,182.53351,170.9671,24.75,1000.52655,0.0,49.10348,1.0 +2024-11-17 11:00:00,5.8200088,12.4292,171.10422,162.43964,22.65,1000.9647,0.0,53.755444,0.0 +2024-11-17 12:00:00,3.9223719,7.8938265,162.95088,154.08421,21.95,1001.4412,0.0,55.911,0.0 +2024-11-17 13:00:00,2.939813,7.4607306,138.44748,135.81448,21.35,1001.42456,0.0,57.810574,0.0 +2024-11-17 14:00:00,1.9455076,5.7742968,115.906456,119.00632,20.95,1001.21515,0.0,54.93007,0.0 +2024-11-17 15:00:00,2.540177,6.677762,100.20392,101.22576,22.25,1000.95374,0.0,46.07039,0.0 +2024-11-17 16:00:00,3.8529208,8.877641,87.768875,85.47763,23.75,1000.4993,0.0,36.893005,0.0 +2024-11-17 17:00:00,5.7118297,10.298786,76.328674,77.38069,25.65,1000.3526,0.0,33.838436,0.0 +2024-11-17 18:00:00,5.7421684,10.090094,73.300674,70.30789,25.45,1000.04974,0.0,40.086292,0.0 +2024-11-17 19:00:00,6.3120914,10.84735,73.4311,70.89682,25.1,999.74286,0.0,45.043633,0.0 +2024-11-17 20:00:00,7.911542,12.940731,67.32439,66.307236,24.85,999.43823,0.0,47.709015,0.0 +2024-11-17 21:00:00,8.564607,13.663547,64.03336,64.18516,24.55,999.5293,0.0,49.37118,0.0 +2024-11-17 22:00:00,7.8721027,12.567418,64.41154,64.046684,24.55,999.926,0.0,50.018833,1.0 +2024-11-17 23:00:00,7.1233773,10.808561,66.854195,65.687675,26.15,1000.5649,0.0,46.074707,1.0 +2024-11-18 00:00:00,7.642807,10.761505,57.557583,56.75292,28.35,1000.52466,0.0,42.105724,1.0 +2024-11-18 01:00:00,6.5507636,8.840956,35.99532,36.027462,31.25,1000.60126,0.0,36.331856,1.0 +2024-11-18 02:00:00,5.5011363,7.2183795,11.003508,12.3996525,33.75,1000.4676,0.0,27.702276,1.0 +2024-11-18 03:00:00,5.945166,7.721723,288.13028,294.0755,32.1,1000.6232,0.0,32.34262,1.0 +2024-11-18 04:00:00,7.630531,10.389538,285.58447,289.39426,30.65,1000.58563,0.0,42.600822,1.0 +2024-11-18 05:00:00,8.050156,10.957304,292.26404,295.98038,30.3,1000.5762,0.0,43.050343,1.0 +2024-11-18 06:00:00,6.924774,9.360823,284.6383,289.01572,29.25,1000.84625,0.0,45.877903,1.0 +2024-11-18 07:00:00,6.798897,9.192389,288.43503,292.3802,28.8,1000.73505,0.0,43.75096,1.0 +2024-11-18 08:00:00,6.3043633,8.5212965,291.88583,295.36212,27.6,1000.8022,0.0,46.020966,1.0 +2024-11-18 09:00:00,5.7915883,7.901424,296.12256,299.16016,26.4,1000.96826,0.0,50.02135,1.0 +2024-11-18 10:00:00,5.0621142,6.9516187,302.90524,305.63358,25.15,1001.33105,0.0,54.390095,1.0 +2024-11-18 11:00:00,4.022748,6.5604877,302.3073,307.56866,23.5,1001.78174,0.0,62.594124,0.0 +2024-11-18 12:00:00,3.828838,6.506919,310.76352,313.7547,22.55,1002.15247,0.0,66.93558,0.0 +2024-11-18 13:00:00,3.662308,6.312289,327.8288,327.94653,22.05,1002.8326,0.0,67.69369,0.0 +2024-11-18 14:00:00,2.6400757,4.993245,307.30402,304.80408,21.25,1002.9094,0.5,75.28256,0.0 +2024-11-18 15:00:00,2.9698482,5.126646,315.0001,314.60492,20.3,1003.3786,0.1,84.226685,0.0 +2024-11-18 16:00:00,1.3462912,3.390059,338.19852,322.792,19.55,1002.5641,0.0,87.67712,0.0 +2024-11-18 17:00:00,1.3647344,3.2901368,351.57312,343.2173,19.4,1001.8655,0.0,83.860085,0.0 +2024-11-18 18:00:00,2.1100948,4.315669,323.67307,316.87787,19.5,1002.0669,0.0,83.60547,0.0 +2024-11-18 19:00:00,1.85,4.193149,341.07526,329.15347,19.0,1002.74664,0.0,89.30904,0.0 +2024-11-18 20:00:00,1.0700467,2.4909837,37.405437,10.407656,18.75,1002.6406,0.0,91.28951,0.0 +2024-11-18 21:00:00,1.8062391,3.8470767,4.763556,351.02744,18.65,1003.2328,0.2,92.44431,0.0 +2024-11-18 22:00:00,2.884874,5.3202443,25.676775,21.501507,18.8,1003.4352,1.9,92.16147,1.0 +2024-11-18 23:00:00,2.557831,4.069705,4.484529,10.61961,20.9,1003.9906,0.5,79.89787,1.0 +2024-11-19 00:00:00,2.751363,3.5794554,340.9064,347.90527,23.15,1003.8549,0.0,67.699524,1.0 +2024-11-19 01:00:00,3.1084561,4.8582406,348.87085,351.11942,20.9,1004.28815,0.4,90.85816,1.0 +2024-11-19 02:00:00,4.383207,6.2964277,348.81827,347.61926,21.75,1004.5105,3.5,85.444214,1.0 +2024-11-19 03:00:00,3.3533564,5.5939703,357.43628,352.81155,21.0,1003.7951,2.0,91.4312,1.0 +2024-11-19 04:00:00,4.244997,6.07824,344.9816,344.24875,21.45,1003.51013,1.9,90.3328,1.0 +2024-11-19 05:00:00,5.526753,7.35697,331.34827,332.9126,23.45,1003.1692,1.0,73.76958,1.0 +2024-11-19 06:00:00,5.2478566,6.867678,329.03632,331.75583,24.75,1002.6095,0.4,65.297935,1.0 +2024-11-19 07:00:00,4.400284,5.8757977,306.21893,312.2408,23.8,1002.2859,0.6,70.22008,1.0 +2024-11-19 08:00:00,4.540099,5.9297976,286.6389,289.19894,22.8,1001.7626,0.9,75.297035,1.0 +2024-11-19 09:00:00,4.4141817,6.069802,279.78235,281.40247,21.45,1001.62573,0.0,82.52451,1.0 +2024-11-19 10:00:00,4.570832,6.369458,289.82254,292.13553,21.1,1001.616,0.0,84.05068,1.0 +2024-11-19 11:00:00,3.8587563,6.1745443,301.21835,301.75943,20.35,1002.0908,0.0,88.02298,0.0 +2024-11-19 12:00:00,3.2901368,5.680009,306.34756,306.7691,19.95,1002.17865,0.0,89.66315,0.0 +2024-11-19 13:00:00,2.5806975,4.5803933,324.46225,323.88055,20.0,1002.67584,0.0,88.54785,0.0 +2024-11-19 14:00:00,2.5079873,4.385487,336.5014,331.38962,19.75,1002.47046,0.0,89.36681,0.0 +2024-11-19 15:00:00,2.1360009,3.8736289,343.68607,336.41296,19.6,1001.9705,0.0,89.63696,0.0 +2024-11-19 16:00:00,2.5495098,4.253528,348.6901,342.20392,19.5,1001.67017,0.0,89.91211,0.0 +2024-11-19 17:00:00,2.804015,4.4525275,328.86108,325.0606,19.65,1001.5752,0.0,88.519066,0.0 +2024-11-19 18:00:00,2.857009,4.850258,327.1443,322.53937,19.35,1001.1699,0.0,89.6182,0.0 +2024-11-19 19:00:00,2.7504544,4.484696,332.9692,329.14587,19.5,1001.27344,0.0,88.50665,0.0 +2024-11-19 20:00:00,2.7784889,4.4654226,329.74365,325.954,19.55,1001.37396,0.0,87.95424,0.0 +2024-11-19 21:00:00,2.594706,4.136726,334.9164,333.43503,19.4,1001.46875,0.1,88.77813,0.0 +2024-11-19 22:00:00,3.2927952,4.988236,311.92245,312.9691,18.85,1001.55255,0.2,94.218956,1.0 +2024-11-19 23:00:00,3.6417713,4.900255,278.68628,278.21268,19.5,1001.67017,0.1,88.50665,1.0 +2024-11-20 00:00:00,3.9579034,5.006246,266.37857,267.13766,20.55,1001.79895,0.1,81.8967,1.0 +2024-11-20 01:00:00,3.4713109,4.2851486,228.50363,228.31104,21.55,1001.43024,0.2,77.01801,1.0 +2024-11-20 02:00:00,3.6100557,4.400284,233.44743,233.78107,22.25,1001.54877,0.1,71.49818,1.0 +2024-11-20 03:00:00,4.527693,5.5138464,239.47037,239.48184,22.6,1001.65784,0.0,68.891106,1.0 +2024-11-20 04:00:00,5.0361195,6.264982,240.89024,241.38963,22.65,1001.46063,0.0,69.120026,1.0 +2024-11-20 05:00:00,5.568213,6.9771056,242.74475,242.7005,22.5,1001.3574,0.0,68.87155,1.0 +2024-11-20 06:00:00,5.574271,6.9857,246.19405,246.3706,22.3,1001.0542,0.0,67.74404,1.0 +2024-11-20 07:00:00,5.797629,7.3409805,246.08768,245.87901,22.05,1000.74976,0.0,68.345634,1.0 +2024-11-20 08:00:00,6.1971765,8.032745,241.5741,241.36118,21.15,1000.5262,0.2,73.6086,1.0 +2024-11-20 09:00:00,6.150203,8.150153,233.59581,233.4815,20.55,1000.50964,0.3,76.13309,1.0 +2024-11-20 10:00:00,5.851709,7.945124,229.50499,229.59433,20.0,1001.089,0.1,78.01458,1.0 +2024-11-20 11:00:00,4.737615,6.965091,224.9999,224.70918,19.15,1001.6601,0.0,83.03456,0.0 +2024-11-20 12:00:00,4.09176,6.2821174,212.52487,213.31065,18.85,1001.8501,0.1,86.509155,0.0 +2024-11-20 13:00:00,2.6504717,4.5631676,215.78906,214.73492,18.8,1002.14594,0.0,86.504364,0.0 +2024-11-20 14:00:00,1.9474342,3.8890872,228.12221,224.9999,18.3,1002.03265,0.0,88.688705,0.0 +2024-11-20 15:00:00,2.274313,4.022437,236.65927,235.1246,18.3,1001.7351,0.0,89.254715,0.0 +2024-11-20 16:00:00,2.3200216,4.3502874,232.88306,232.47148,17.95,1001.3284,0.0,91.23831,0.0 +2024-11-20 17:00:00,2.2388613,4.315669,246.29735,243.13815,17.75,1001.1244,0.0,91.51637,0.0 +2024-11-20 18:00:00,2.6100767,4.828302,249.82925,248.74942,17.7,1001.0237,0.0,91.80508,0.0 +2024-11-20 19:00:00,2.7986605,5.2201533,251.24126,249.82925,17.55,1001.01953,0.0,92.08898,0.0 +2024-11-20 20:00:00,3.231099,5.6923194,248.19853,247.26396,17.8,1001.02655,0.0,89.78678,0.0 +2024-11-20 21:00:00,3.3320415,5.836523,244.20403,244.09354,17.8,1001.42316,0.0,88.93128,0.0 +2024-11-20 22:00:00,3.5672119,5.6508846,238.76085,239.12326,18.15,1001.82996,0.0,88.39433,1.0 +2024-11-20 23:00:00,4.229953,5.507268,241.01128,240.64233,19.05,1002.3515,0.1,82.49461,1.0 +2024-11-21 00:00:00,4.923921,6.408003,237.43958,237.42595,19.3,1002.7552,0.4,83.052315,1.0 +2024-11-21 01:00:00,5.2201533,6.659767,249.82925,249.7963,20.85,1003.09674,0.1,71.46946,1.0 +2024-11-21 02:00:00,5.211766,6.688236,241.95995,241.9024,20.8,1003.2935,0.4,72.84632,1.0 +2024-11-21 03:00:00,5.4520636,6.8818603,234.70656,234.46223,21.3,1003.20844,0.4,69.29912,1.0 +2024-11-21 04:00:00,5.701096,7.254826,228.19963,227.51385,21.7,1002.92194,0.4,66.12053,1.0 +2024-11-21 05:00:00,5.9548297,7.560589,220.91429,219.90254,21.8,1002.82556,0.3,66.35418,1.0 +2024-11-21 06:00:00,5.853418,7.516814,214.9119,214.43007,21.7,1002.92194,0.1,66.7608,1.0 +2024-11-21 07:00:00,6.191123,7.975588,211.1224,210.10121,21.7,1002.92194,0.0,66.7608,1.0 +2024-11-21 08:00:00,6.140033,7.99406,210.32352,209.61143,21.2,1003.10645,0.0,68.39565,1.0 +2024-11-21 09:00:00,6.3560996,8.397172,204.14554,203.51218,20.55,1003.2866,0.1,70.956825,1.0 +2024-11-21 10:00:00,6.0557823,8.190848,198.28545,197.77141,19.75,1003.85895,0.0,74.31616,1.0 +2024-11-21 11:00:00,5.246189,7.786206,190.9886,190.73262,18.7,1004.4241,0.0,79.84982,0.0 +2024-11-21 12:00:00,5.07001,7.77721,185.09203,184.79414,18.1,1005.20044,0.1,84.25088,0.0 +2024-11-21 13:00:00,4.9010205,7.652614,178.83089,178.50244,17.7,1005.7838,0.0,85.02236,0.0 +2024-11-21 14:00:00,4.5177426,7.274785,174.92049,175.26915,17.4,1006.17194,0.1,87.20502,0.0 +2024-11-21 15:00:00,4.1282563,6.8156066,168.8262,169.43204,17.1,1006.2623,0.1,90.02264,0.0 +2024-11-21 16:00:00,3.9702015,6.710067,163.16245,163.9959,16.8,1005.95624,0.0,90.58069,0.0 +2024-11-21 17:00:00,3.782195,6.462198,155.8068,158.19853,16.35,1005.64575,0.0,92.909805,0.0 +2024-11-21 18:00:00,3.4238136,6.1051207,151.1893,154.27444,16.2,1005.64136,0.0,92.9019,0.0 +2024-11-21 19:00:00,3.3018935,5.842303,147.99466,150.80261,16.0,1005.83374,0.0,93.491295,0.0 +2024-11-21 20:00:00,2.9841247,5.235456,148.70702,151.47697,16.05,1006.43036,0.0,92.29759,0.0 +2024-11-21 21:00:00,2.5811818,4.7565746,135.78474,140.11737,15.75,1006.719,0.0,92.57878,0.0 +2024-11-21 22:00:00,3.1815877,4.900255,120.191536,126.28536,16.05,1007.422,0.0,88.78949,1.0 +2024-11-21 23:00:00,3.481738,4.591568,125.0595,128.36752,17.2,1008.2488,0.0,79.12466,1.0 +2024-11-22 00:00:00,3.628016,4.725727,150.25522,150.18002,18.95,1008.5966,0.0,66.622215,1.0 +2024-11-22 01:00:00,4.4421277,5.687926,168.31065,165.23076,21.0,1008.8533,0.0,49.2337,1.0 +2024-11-22 02:00:00,5.0022492,6.283709,178.28168,174.06268,21.95,1008.6815,0.0,45.374966,1.0 +2024-11-22 03:00:00,5.8757977,7.3527207,185.37091,181.55865,22.55,1008.5002,0.0,44.48729,1.0 +2024-11-22 04:00:00,7.0123105,8.868484,190.26825,187.12492,22.4,1008.19824,0.0,48.472454,1.0 +2024-11-22 05:00:00,7.229281,9.25743,192.7867,190.58159,22.1,1008.0908,0.0,47.910435,1.0 +2024-11-22 06:00:00,7.2183795,9.364962,192.39966,190.76994,21.9,1007.78754,0.0,53.036343,1.0 +2024-11-22 07:00:00,7.200694,9.334077,189.59306,187.69595,22.05,1007.2958,0.0,53.250107,1.0 +2024-11-22 08:00:00,7.7027597,10.135705,186.70975,184.8105,21.65,1007.0864,0.0,56.573093,1.0 +2024-11-22 09:00:00,7.905694,10.70292,182.1747,181.33841,20.6,1007.25494,0.0,62.34498,1.0 +2024-11-22 10:00:00,7.3542504,10.262188,178.05196,177.20735,19.95,1007.63336,0.0,64.688095,1.0 +2024-11-22 11:00:00,7.2091956,11.015103,170.0151,170.06741,18.75,1008.1943,0.0,72.48078,0.0 +2024-11-22 12:00:00,6.708577,10.564682,167.51752,167.14766,18.4,1008.5809,0.0,73.84564,0.0 +2024-11-22 13:00:00,6.868042,10.893117,163.93994,164.56029,18.25,1008.87396,0.0,72.62707,0.0 +2024-11-22 14:00:00,7.05195,11.242442,161.82188,162.12903,18.0,1008.76776,0.0,74.50117,0.0 +2024-11-22 15:00:00,6.529357,10.602359,153.63123,154.8852,17.6,1008.65686,0.0,72.51003,0.0 +2024-11-22 16:00:00,5.6449094,9.407577,147.29527,148.2529,16.75,1008.4339,0.0,69.310585,0.0 +2024-11-22 17:00:00,4.8600416,8.422143,143.3658,144.42268,16.0,1008.5112,0.0,69.624535,0.0 +2024-11-22 18:00:00,4.4687805,7.9895244,139.53786,140.3322,15.3,1008.2923,0.0,72.331184,0.0 +2024-11-22 19:00:00,3.996561,7.498333,136.52072,136.6211,14.8,1008.4761,0.0,74.197845,0.0 +2024-11-22 20:00:00,3.8538942,7.3569694,134.47443,133.34775,14.5,1008.5664,0.0,75.14412,0.0 +2024-11-22 21:00:00,3.2927952,6.7708936,131.92245,127.80083,14.2,1008.8551,0.0,76.10551,0.0 +2024-11-22 22:00:00,3.2882366,6.240392,134.38402,127.51269,14.7,1009.2665,0.0,74.180504,1.0 +2024-11-22 23:00:00,3.335416,5.390733,139.86458,130.48593,17.0,1009.532,0.0,65.33484,1.0 +2024-11-23 00:00:00,3.4121108,4.5343137,145.14548,138.57643,19.8,1009.3153,0.0,55.739693,1.0 +2024-11-23 01:00:00,3.3320415,4.243819,154.20403,145.56096,23.15,1009.0126,0.0,47.24828,1.0 +2024-11-23 02:00:00,3.7232378,4.655373,165.21722,155.91255,25.65,1008.38715,0.0,41.2199,1.0 +2024-11-23 03:00:00,4.3640575,5.278731,184.6,174.0195,27.15,1007.2378,0.0,40.42907,1.0 +2024-11-23 04:00:00,5.8045244,7.3569694,197.03024,189.78233,26.85,1006.6346,0.0,50.46141,1.0 +2024-11-23 05:00:00,6.4903774,8.811923,195.6423,189.14157,26.75,1005.6398,0.0,53.75728,1.0 +2024-11-23 06:00:00,7.156815,10.143471,195.3956,189.64798,26.8,1005.0459,0.0,53.59937,1.0 +2024-11-23 07:00:00,8.227546,11.96547,191.9245,185.99638,26.1,1004.63025,0.0,49.143932,1.0 +2024-11-23 08:00:00,7.8160095,11.650966,183.66771,180.73766,24.85,1004.5961,0.0,51.58159,1.0 +2024-11-23 09:00:00,7.2639523,10.049875,176.44833,174.2895,24.45,1004.3867,0.0,57.25997,1.0 +2024-11-23 10:00:00,6.8720446,10.636024,175.40955,172.70804,23.0,1004.54504,0.0,64.513565,1.0 +2024-11-23 11:00:00,7.242237,12.145164,162.31552,160.52061,21.3,1004.89453,0.0,64.77003,0.0 +2024-11-23 12:00:00,6.5520988,10.768125,164.05453,162.15388,21.0,1005.0845,0.0,68.79701,0.0 +2024-11-23 13:00:00,5.600446,10.803355,159.62347,159.9715,20.35,1005.16534,0.0,69.1136,0.0 +2024-11-23 14:00:00,3.9195027,7.961941,150.16455,152.30858,19.7,1005.04785,0.0,75.997505,0.0 +2024-11-23 15:00:00,3.1384711,7.0491138,149.34941,148.3393,18.95,1004.1338,0.0,82.74624,0.0 +2024-11-23 16:00:00,3.0153773,6.7403636,139.70793,142.53499,18.55,1003.4283,0.0,84.30082,0.0 +2024-11-23 17:00:00,2.7335873,6.477847,129.80553,132.18437,18.2,1003.21985,0.0,82.390564,0.0 +2024-11-23 18:00:00,3.1910028,6.975851,125.4334,123.00666,18.3,1002.52856,0.0,76.01795,0.0 +2024-11-23 19:00:00,3.2202485,7.6213517,115.76928,107.959564,19.1,1002.1545,0.0,66.4357,0.0 +2024-11-23 20:00:00,2.8969812,7.5538073,111.25058,96.84268,19.9,1002.1774,0.0,59.97675,0.0 +2024-11-23 21:00:00,3.167412,7.9191227,101.84206,86.017555,20.6,1001.9985,0.0,57.24874,0.0 +2024-11-23 22:00:00,3.4,8.1024685,90.0,77.16439,21.8,1002.2305,0.0,53.01044,1.0 +2024-11-23 23:00:00,3.6718524,7.9945292,96.253944,74.3991,24.9,1002.4153,0.0,45.583984,1.0 +2024-11-24 00:00:00,3.600347,5.7974133,89.2043,75.004875,28.0,1002.0032,0.0,37.96653,1.0 +2024-11-24 01:00:00,4.4195585,6.5964007,68.07817,63.435013,31.7,1000.7121,0.0,33.191914,1.0 +2024-11-24 02:00:00,2.8744566,4.411916,40.06073,38.55843,34.25,1000.28204,0.0,30.882448,1.0 +2024-11-24 03:00:00,2.3600848,1.9499999,233.61555,247.3801,33.35,999.66345,0.0,40.57868,1.0 +2024-11-24 04:00:00,4.9300103,6.345471,216.75377,210.80882,31.25,999.4108,0.0,46.99809,1.0 +2024-11-24 05:00:00,4.497221,6.4994226,188.3102,187.07025,30.55,999.0947,0.0,46.37231,1.0 +2024-11-24 06:00:00,4.812743,6.9857,209.22795,203.6294,29.55,998.87,0.0,51.160988,1.0 +2024-11-24 07:00:00,4.167733,5.4502296,210.25635,202.09428,29.45,999.1651,0.0,49.087578,1.0 +2024-11-24 08:00:00,5.7838135,8.098302,214.7892,204.82452,26.9,998.8986,0.0,58.581722,1.0 +2024-11-24 09:00:00,6.2771406,9.502236,198.57936,191.84206,24.5,998.7346,0.0,66.281296,1.0 +2024-11-24 10:00:00,5.472203,8.44408,199.75957,192.308,23.05,999.1908,0.0,73.93325,1.0 +2024-11-24 11:00:00,4.992494,7.827037,187.48079,184.76355,22.0,999.85583,0.0,80.550606,0.0 +2024-11-24 12:00:00,5.3688917,8.234227,175.19214,174.77417,21.4,1000.83093,0.0,84.08401,0.0 +2024-11-24 13:00:00,3.8003287,6.3049583,180.75383,177.7276,20.45,1001.5978,0.0,86.11909,0.0 +2024-11-24 14:00:00,3.5556293,5.9008474,183.22446,180.971,20.1,1002.0836,0.0,89.67434,0.0 +2024-11-24 15:00:00,3.5014284,5.700219,181.63654,179.49744,19.85,1002.1758,0.0,91.07334,0.0 +2024-11-24 16:00:00,4.0650954,6.5094166,184.93913,183.08212,19.65,1001.8727,0.0,91.63371,0.0 +2024-11-24 17:00:00,5.5682135,8.46788,184.63538,183.72398,19.6,1001.67303,0.0,91.05707,0.0 +2024-11-24 18:00:00,5.853418,8.90351,181.95802,181.60898,19.5,1001.67017,0.0,91.05056,0.0 +2024-11-24 19:00:00,5.903389,9.201222,181.94144,180.93407,19.4,1001.46875,0.0,90.188446,0.0 +2024-11-24 20:00:00,6.100205,9.252162,179.53038,178.7614,19.5,1001.67017,0.0,88.2279,0.0 +2024-11-24 21:00:00,6.207254,9.422446,177.22984,176.04443,19.25,1002.1588,0.0,88.48597,0.0 +2024-11-24 22:00:00,7.0087447,10.377138,177.13765,175.85545,19.5,1002.8603,0.0,86.02541,1.0 +2024-11-24 23:00:00,7.930952,11.005113,174.93648,174.2636,20.1,1003.47205,0.0,80.04204,1.0 +2024-11-25 00:00:00,8.1555195,11.095157,173.31078,172.49077,20.8,1003.78937,0.0,73.31357,1.0 +2024-11-25 01:00:00,8.728115,11.706621,175.4,174.36255,21.6,1003.8117,0.0,68.475105,1.0 +2024-11-25 02:00:00,9.216425,12.386485,176.57886,175.60138,21.8,1003.6191,0.0,64.66911,1.0 +2024-11-25 03:00:00,9.856216,13.168617,177.96501,176.95297,23.1,1003.5561,0.0,57.30038,1.0 +2024-11-25 04:00:00,9.460708,12.60248,182.72626,181.13664,23.45,1003.36755,0.0,56.46602,1.0 +2024-11-25 05:00:00,9.718282,12.9059105,186.79585,185.335,23.15,1003.06146,0.0,58.43472,1.0 +2024-11-25 06:00:00,10.045024,13.387401,185.42673,184.28374,22.7,1002.94995,0.0,59.27803,1.0 +2024-11-25 07:00:00,10.22069,13.8153,183.6462,182.69667,22.25,1002.83813,0.0,60.72453,1.0 +2024-11-25 08:00:00,10.20784,13.904406,182.2457,181.44237,21.75,1002.7252,0.0,58.097218,1.0 +2024-11-25 09:00:00,10.551066,14.555497,179.18544,178.4253,20.7,1002.6956,0.0,62.57131,1.0 +2024-11-25 10:00:00,10.185529,14.408766,175.21309,174.82367,19.5,1003.25696,0.0,66.73697,1.0 +2024-11-25 11:00:00,9.259725,13.799004,173.48907,173.13258,18.45,1004.0205,0.0,71.72209,1.0 +2024-11-25 12:00:00,8.846045,13.358236,171.5494,171.1724,17.95,1004.7002,0.0,72.100105,0.0 +2024-11-25 13:00:00,8.162415,12.428697,170.48006,170.27249,17.5,1005.0839,0.0,72.0178,0.0 +2024-11-25 14:00:00,7.8366127,12.045124,167.4712,167.29062,17.25,1005.3742,0.0,72.685135,0.0 +2024-11-25 15:00:00,7.6100264,11.758082,163.58914,163.95413,17.0,1005.36694,0.0,71.92595,0.0 +2024-11-25 16:00:00,7.05762,11.008406,159.25385,160.08351,16.55,1005.15564,0.0,72.08086,0.0 +2024-11-25 17:00:00,6.464132,10.301092,154.8225,156.54578,16.2,1004.94727,0.0,71.77812,0.0 +2024-11-25 18:00:00,5.7306194,9.324832,150.75127,152.88545,15.85,1004.8377,0.0,70.06087,0.0 +2024-11-25 19:00:00,4.9236674,8.348803,145.34158,146.97612,15.15,1004.8175,0.0,67.16018,0.0 +2024-11-25 20:00:00,4.654299,8.194663,140.6673,139.70213,14.6,1004.99945,0.0,63.934204,0.0 +2024-11-25 21:00:00,4.774149,8.417245,136.27295,133.55594,14.55,1005.39484,0.0,58.280907,0.0 +2024-11-25 22:00:00,5.20024,8.707037,133.05193,129.17365,15.1,1006.105,0.0,48.62313,1.0 +2024-11-25 23:00:00,6.0440054,8.62047,128.95592,126.2718,16.6,1006.843,0.0,37.82121,1.0 +2024-11-26 00:00:00,5.9816384,8.091044,128.21107,125.94937,18.3,1006.8921,0.0,32.430954,1.0 +2024-11-26 01:00:00,5.7107353,7.5208044,130.38358,127.70801,20.6,1006.9574,0.0,28.617226,1.0 +2024-11-26 02:00:00,5.315073,6.858936,138.81418,135.0001,22.8,1006.52344,0.0,24.661388,1.0 +2024-11-26 03:00:00,5.008493,6.380635,148.05528,142.32184,24.7,1005.88153,0.0,21.221533,1.0 +2024-11-26 04:00:00,5.3303375,6.696641,163.09476,156.68904,26.0,1005.22296,0.0,19.016289,1.0 +2024-11-26 05:00:00,6.6567636,8.42882,177.41704,172.15839,26.25,1004.5351,0.0,19.146822,1.0 +2024-11-26 06:00:00,8.503234,11.02225,186.4145,183.64111,25.2,1004.0105,0.0,25.222437,1.0 +2024-11-26 07:00:00,9.470084,12.548306,186.97484,185.02899,23.5,1003.46796,0.0,36.94732,1.0 +2024-11-26 08:00:00,10.05112,13.650091,180.85507,179.79013,21.2,1003.5032,0.0,49.617985,1.0 +2024-11-26 09:00:00,9.288972,12.77155,174.74982,173.93239,21.0,1003.7951,0.0,52.453182,1.0 +2024-11-26 10:00:00,8.72611,12.248265,172.42714,171.0761,20.25,1004.26984,0.0,60.257183,1.0 +2024-11-26 11:00:00,8.031967,11.992601,169.5995,168.45586,19.15,1004.83374,0.0,68.206474,1.0 +2024-11-26 12:00:00,7.4464755,10.893117,165.21722,164.56029,18.75,1005.3183,0.0,70.38826,0.0 +2024-11-26 13:00:00,6.0466933,9.762812,156.61476,156.45462,18.3,1005.70197,0.0,71.92884,0.0 +2024-11-26 14:00:00,4.981215,8.528922,144.39539,145.75092,17.8,1005.98505,0.0,68.15736,0.0 +2024-11-26 15:00:00,4.101829,7.743546,135.98767,135.78474,16.85,1005.9578,0.0,63.792496,0.0 +2024-11-26 16:00:00,3.7831867,7.8270364,135.53539,131.63345,16.9,1005.66156,0.0,53.887104,0.0 +2024-11-26 17:00:00,4.106702,8.190391,132.03899,126.31035,17.5,1005.5798,0.0,39.59046,0.0 +2024-11-26 18:00:00,4.2898135,8.364359,130.74608,125.02016,17.45,1005.1815,0.0,38.747375,0.0 +2024-11-26 19:00:00,4.1934476,8.112491,129.19327,123.6901,17.05,1005.1701,0.0,39.739807,0.0 +2024-11-26 20:00:00,4.360046,8.317752,126.60716,120.72742,16.65,1005.1585,0.0,40.61713,0.0 +2024-11-26 21:00:00,4.674666,8.787775,122.33016,116.71078,16.5,1005.2533,0.0,40.573677,0.0 +2024-11-26 22:00:00,5.1684136,9.07772,114.58156,109.63269,16.95,1005.7623,0.0,39.29179,1.0 +2024-11-26 23:00:00,5.1264024,7.933001,110.55612,105.3502,19.05,1006.1201,0.0,34.67695,1.0 +2024-11-27 00:00:00,6.238991,8.62047,99.68872,97.331024,21.55,1006.29004,0.0,29.19374,1.0 +2024-11-27 01:00:00,6.7742157,9.309404,98.48886,96.476036,24.55,1006.0758,0.0,24.782677,1.0 +2024-11-27 02:00:00,6.6921597,8.931544,96.43465,94.816826,26.95,1005.8436,0.0,20.673899,1.0 +2024-11-27 03:00:00,6.238991,8.174351,99.68872,97.73351,28.9,1005.39996,0.0,17.869331,1.0 +2024-11-27 04:00:00,5.6044626,7.3935785,105.52418,101.3099,30.55,1004.3526,0.0,15.401456,1.0 +2024-11-27 05:00:00,4.6970735,6.213896,117.928894,108.28925,31.4,1003.3829,0.0,14.00237,1.0 +2024-11-27 06:00:00,4.4263415,5.7473903,131.7947,117.45666,32.05,1002.80457,0.0,13.3019905,1.0 +2024-11-27 07:00:00,4.527693,5.731492,149.47037,137.12111,32.35,1002.11804,0.0,13.364346,1.0 +2024-11-27 08:00:00,6.0848174,9.010272,173.86787,166.19507,29.95,1001.7575,0.0,23.12516,1.0 +2024-11-27 09:00:00,6.124745,9.47444,174.848,167.504,27.65,1001.3987,0.0,43.155415,1.0 +2024-11-27 10:00:00,5.9052944,9.110022,177.57372,169.24516,26.05,1001.7524,0.0,51.395554,1.0 +2024-11-27 11:00:00,5.375872,9.1719675,170.36253,160.5772,24.4,1002.2034,0.0,57.247833,1.0 +2024-11-27 12:00:00,4.4659824,8.459906,158.31764,147.06131,23.85,1002.7833,0.0,53.537907,0.0 +2024-11-27 13:00:00,3.6786547,8.026362,148.90276,135.75708,22.1,1003.52844,0.0,54.145252,0.0 +2024-11-27 14:00:00,4.424082,8.974687,124.40853,118.9925,23.3,1003.8593,0.0,32.831234,0.0 +2024-11-27 15:00:00,5.2595153,9.796173,114.1284,112.50743,23.5,1003.3687,0.0,31.552479,0.0 +2024-11-27 16:00:00,5.6446877,10.296723,108.59554,106.93917,23.0,1003.0573,0.0,33.20198,0.0 +2024-11-27 17:00:00,6.354723,11.074408,104.582985,102.781334,22.7,1002.45404,0.0,33.69439,0.0 +2024-11-27 18:00:00,6.7670155,11.672618,98.070145,96.3943,22.35,1001.94836,0.0,34.181164,0.0 +2024-11-27 19:00:00,7.0501776,12.053734,89.593666,88.57388,22.0,1001.93866,0.0,34.67673,0.0 +2024-11-27 20:00:00,7.510326,12.727922,82.73314,81.86999,21.7,1002.0293,0.0,34.71104,0.0 +2024-11-27 21:00:00,7.962412,13.228473,78.40785,78.22291,21.55,1002.422,0.0,34.308525,0.0 +2024-11-27 22:00:00,7.7770495,13.4486065,77.75089,76.015396,21.65,1003.01996,0.0,34.69672,1.0 +2024-11-27 23:00:00,7.6975646,12.847762,78.7631,77.64051,23.45,1003.5659,0.0,32.535355,1.0 +2024-11-28 00:00:00,8.698995,12.251224,77.72125,77.26829,25.75,1003.6288,0.0,28.847582,1.0 +2024-11-28 01:00:00,8.053725,11.011357,77.085365,76.34235,29.45,1003.3316,0.0,24.047081,1.0 +2024-11-28 02:00:00,7.5960517,10.201103,73.95093,72.89719,32.05,1002.80457,0.0,20.798197,1.0 +2024-11-28 03:00:00,6.8633084,9.012491,72.62099,71.564964,34.2,1002.1658,0.0,18.815163,1.0 +2024-11-28 04:00:00,5.7584724,7.3913803,69.67678,68.99025,35.95,1001.41675,0.0,17.851942,1.0 +2024-11-28 05:00:00,4.4659824,5.751956,68.31765,65.88581,37.55,1000.7627,0.0,16.467117,1.0 +2024-11-28 06:00:00,1.7804494,2.423324,141.84273,111.80147,36.35,999.93835,0.0,17.463808,1.0 +2024-11-28 07:00:00,5.287958,7.170077,193.11644,188.017,34.8,999.2047,0.0,25.284168,1.0 +2024-11-28 08:00:00,6.324753,9.309404,191.39873,186.47603,33.35,998.77057,0.0,31.038017,1.0 +2024-11-28 09:00:00,7.1688566,11.082644,190.44777,184.39862,31.75,998.33234,0.0,33.74949,1.0 +2024-11-28 10:00:00,7.1086216,11.980192,182.8221,175.9315,29.55,998.47314,0.0,38.523357,1.0 +2024-11-28 11:00:00,6.404881,10.642485,167.37418,162.50136,28.25,998.6371,0.0,35.85,1.0 +2024-11-28 12:00:00,4.315669,7.7665954,153.13815,145.49142,27.65,998.8196,0.0,38.370266,0.0 +2024-11-28 13:00:00,3.800329,8.316851,122.64463,108.217186,28.05,999.6238,0.0,29.185919,0.0 +2024-11-28 14:00:00,5.385397,10.225947,102.87501,99.00168,29.55,999.862,0.0,23.745228,0.0 +2024-11-28 15:00:00,6.604733,11.405371,87.83079,88.241516,29.25,999.95337,0.0,23.182268,0.0 +2024-11-28 16:00:00,6.8148737,11.571194,86.21397,86.531845,28.4,999.9308,0.0,22.960846,0.0 +2024-11-28 17:00:00,6.686741,11.476607,83.99109,81.48167,27.75,999.41754,0.0,23.111853,0.0 +2024-11-28 18:00:00,7.5960517,12.675666,69.17903,69.20581,27.4,998.8129,0.0,23.589893,0.0 +2024-11-28 19:00:00,8.208837,13.356085,62.03025,61.612175,27.4,998.9121,0.0,23.589893,0.0 +2024-11-28 20:00:00,8.161649,13.2824135,63.435013,63.14566,27.35,998.9108,0.0,23.331127,0.0 +2024-11-28 21:00:00,8.18917,13.341664,68.133575,66.12472,26.6,998.8905,0.0,24.553038,0.0 +2024-11-28 22:00:00,8.407884,13.579579,63.892147,61.6422,26.6,999.0889,0.0,25.247015,1.0 +2024-11-28 23:00:00,7.7776923,12.751961,59.478504,58.304245,28.3,999.43195,0.0,23.744612,1.0 +2024-11-29 00:00:00,7.836134,11.212159,55.397274,54.254326,30.7,999.49554,0.0,21.328772,1.0 +2024-11-29 01:00:00,7.8270364,10.776131,41.63345,40.86072,33.65,999.27454,0.0,22.000126,1.0 +2024-11-29 02:00:00,6.5316534,8.778525,33.446796,33.147007,35.8,999.03174,0.0,22.245981,1.0 +2024-11-29 03:00:00,5.2392745,6.8638544,13.240531,14.3399725,38.0,998.591,0.0,20.255447,1.0 +2024-11-29 04:00:00,5.5409837,7.4956656,280.39728,287.4681,33.85,998.38654,0.0,32.195755,1.0 +2024-11-29 05:00:00,6.315061,9.272,280.954,286.285,30.55,998.3011,0.0,47.85301,1.0 +2024-11-29 06:00:00,7.4983335,10.235356,299.12872,302.83612,32.7,998.1587,0.0,37.80093,1.0 +2024-11-29 07:00:00,6.9588075,9.848858,289.737,293.9625,29.75,998.18085,0.0,43.86968,1.0 +2024-11-29 08:00:00,5.5841293,8.016389,286.65018,293.52707,28.05,998.03656,0.0,50.292984,1.0 +2024-11-29 09:00:00,3.522783,4.875705,276.5197,283.03867,26.35,998.5863,0.0,58.08395,1.0 +2024-11-29 10:00:00,2.0573041,2.9261749,295.94223,303.147,25.65,998.6664,0.0,61.30928,1.0 +2024-11-29 11:00:00,1.7007351,2.3420076,335.69547,343.8865,25.25,998.75494,0.0,60.44862,1.0 +2024-11-29 12:00:00,1.8973665,3.901282,341.56494,358.53122,25.6,998.7644,0.0,56.992,0.0 +2024-11-29 13:00:00,1.4637282,3.7963798,7.853233,12.938063,24.5,998.63544,0.0,64.83481,0.0 +2024-11-29 14:00:00,2.0248458,5.663921,32.905247,42.13753,25.2,998.6542,0.0,56.532703,0.0 +2024-11-29 15:00:00,2.326478,5.121035,331.78275,9.554223,25.9,998.17737,0.0,52.523567,0.0 +2024-11-29 16:00:00,3.710795,6.648308,284.03625,291.16132,23.7,998.41504,0.0,68.670944,0.0 +2024-11-29 17:00:00,0.35355338,2.6315393,8.130019,321.17017,23.35,998.00867,0.0,73.75255,0.0 +2024-11-29 18:00:00,1.1661904,2.782984,59.03632,17.783985,23.4,997.6131,0.0,68.612144,0.0 +2024-11-29 19:00:00,1.4089003,3.7,27.474344,360.0,23.4,997.31555,0.0,66.68499,0.0 +2024-11-29 20:00:00,2.8969812,5.8576875,21.25058,2.93562,24.05,997.3335,0.0,65.563644,0.0 +2024-11-29 21:00:00,3.0004165,6.216309,0.95482427,4.151216,24.5,997.5444,0.0,67.756065,0.0 +2024-11-29 22:00:00,2.9261749,5.776028,340.0168,348.0092,24.6,997.94354,0.0,67.776024,1.0 +2024-11-29 23:00:00,3.2500002,5.2952805,345.74994,349.11453,26.1,998.38104,0.0,62.774353,1.0 +2024-11-30 00:00:00,4.2933087,5.707013,345.1545,348.887,27.85,998.62646,0.0,56.110603,1.0 +2024-11-30 01:00:00,4.5400987,5.926635,348.56635,350.77615,29.0,998.35956,0.0,54.660675,1.0 +2024-11-30 02:00:00,4.0028114,5.180975,334.07516,337.8905,29.15,998.2641,0.0,55.211323,1.0 +2024-11-30 03:00:00,3.7583241,4.8259716,319.3161,325.9806,29.65,997.78156,0.0,53.30782,1.0 +2024-11-30 04:00:00,5.5011363,7.1221485,281.00348,285.8902,28.8,997.4614,0.0,57.93963,1.0 +2024-11-30 05:00:00,6.4569726,8.455323,267.33704,272.03326,28.2,997.4454,0.6,61.310272,1.0 +2024-11-30 06:00:00,5.302122,6.88077,268.37888,275.4205,27.65,997.03394,0.0,61.376892,1.0 +2024-11-30 07:00:00,5.1088157,6.6910386,273.3664,279.46225,27.4,996.7298,0.0,58.150814,1.0 +2024-11-30 08:00:00,4.704253,6.3017855,267.56342,271.3639,25.75,996.5862,0.0,61.525345,1.0 +2024-11-30 09:00:00,4.2664385,5.4829283,259.8754,260.02234,23.95,996.83496,0.0,72.031525,1.0 +2024-11-30 10:00:00,3.0700164,3.8942266,253.92636,254.3577,22.95,996.8075,0.0,78.44624,1.0 +2024-11-30 11:00:00,2.7735357,3.7030392,236.0234,235.45157,21.55,997.2646,0.0,87.5789,1.0 +2024-11-30 12:00:00,3.8710465,5.6905622,215.53777,216.06447,20.9,997.6432,0.0,91.14118,0.0 +2024-11-30 13:00:00,3.757659,5.5036354,205.2011,204.70241,20.1,998.51324,0.0,90.2381,0.0 +2024-11-30 14:00:00,2.657066,4.379783,199.79897,198.64189,19.75,998.40424,0.0,90.49702,0.0 +2024-11-30 15:00:00,2.768122,4.7929635,200.07161,200.13638,19.5,997.8023,0.0,89.62947,0.0 +2024-11-30 16:00:00,2.6100767,4.540099,196.69933,196.63889,19.4,997.60095,0.0,87.941284,0.0 +2024-11-30 17:00:00,2.6277368,4.6179,201.19412,199.61218,19.2,997.0994,0.0,87.09293,0.0 +2024-11-30 18:00:00,2.184033,4.095424,195.94547,197.77141,19.0,996.99457,0.0,85.70295,0.0 +2024-11-30 19:00:00,3.146824,5.3928194,197.57135,197.25903,18.75,996.88855,0.0,85.40512,0.0 +2024-11-30 20:00:00,3.4539833,5.664804,202.1095,200.6745,18.75,997.38446,0.0,82.72216,0.0 +2024-11-30 21:00:00,2.6655207,4.773102,203.19861,202.80458,18.45,997.97095,0.0,80.84881,0.0 +2024-11-30 22:00:00,3.4354768,5.180975,201.33693,202.1095,19.0,998.58136,0.0,76.13016,1.0 +2024-11-30 23:00:00,4.225222,5.460082,200.79419,200.92458,20.1,998.91,0.0,68.84139,1.0 +2024-12-01 00:00:00,3.914716,4.9419127,208.20154,207.08347,20.95,998.83484,0.0,63.241505,1.0 +2024-12-01 01:00:00,3.2318726,3.9246018,214.91948,214.09503,21.95,998.9617,0.2,59.29216,1.0 +2024-12-01 02:00:00,4.0106106,4.830373,234.13008,233.84172,23.15,998.8956,0.0,54.235504,1.0 +2024-12-01 03:00:00,4.966135,6.1587334,237.75005,237.60017,23.35,999.1989,0.0,53.236137,1.0 +2024-12-01 04:00:00,5.4378304,6.7839885,237.77127,237.94989,23.75,999.01154,0.0,50.62837,1.0 +2024-12-01 05:00:00,5.8405905,7.282342,237.94266,237.61934,23.7,998.41504,0.0,49.79332,1.0 +2024-12-01 06:00:00,6.22254,7.919912,224.9999,224.48851,22.4,997.98236,0.1,60.759308,1.0 +2024-12-01 07:00:00,6.0632086,7.695616,229.34755,229.47954,22.4,997.8831,0.0,57.877155,1.0 +2024-12-01 08:00:00,5.992704,7.625123,229.39879,229.52104,22.15,997.77704,0.0,56.882042,1.0 +2024-12-01 09:00:00,6.3702435,8.2439375,227.54485,227.21207,21.45,997.8568,0.0,58.788017,1.0 +2024-12-01 10:00:00,5.7710485,7.683749,217.96211,218.65984,20.45,998.1266,0.0,62.310963,1.0 +2024-12-01 11:00:00,5.375872,7.462071,223.49261,223.64261,19.75,998.40424,0.0,64.64463,1.0 +2024-12-01 12:00:00,5.456189,8.080842,221.2846,220.98573,19.35,998.9881,0.0,66.27112,0.0 +2024-12-01 13:00:00,5.0522275,7.7150826,218.57127,218.94977,19.25,999.6795,0.0,63.06772,0.0 +2024-12-01 14:00:00,4.136726,6.788225,225.48964,224.9999,19.4,999.5845,0.0,59.858074,0.0 +2024-12-01 15:00:00,5.481104,8.131574,215.72005,215.74254,19.2,999.7771,0.0,69.78993,0.0 +2024-12-01 16:00:00,4.9522724,7.6844,215.13426,214.93102,18.6,999.56177,0.0,75.5755,0.0 +2024-12-01 17:00:00,4.9246826,7.652777,221.29527,221.29147,18.35,998.9595,0.0,74.07742,0.0 +2024-12-01 18:00:00,4.596738,7.32069,224.11868,223.61638,17.55,998.7386,0.0,79.432,0.0 +2024-12-01 19:00:00,4.6674404,7.1779175,224.13205,224.15341,17.8,998.8448,0.0,77.93715,0.0 +2024-12-01 20:00:00,4.0459857,6.5241857,230.01317,229.35117,17.65,999.039,0.0,76.90812,0.0 +2024-12-01 21:00:00,3.8551915,6.3657284,236.10379,235.56096,17.4,999.4284,0.0,77.11995,0.0 +2024-12-01 22:00:00,4.434242,6.766277,240.2552,239.83508,18.65,999.9601,0.0,60.679577,1.0 +2024-12-01 23:00:00,5.87069,7.8525476,234.0084,234.58946,19.55,1000.58057,0.0,53.13128,1.0 +2024-12-02 00:00:00,6.0400743,8.040056,233.4146,233.3438,19.4,1001.36957,0.0,55.824562,1.0 +2024-12-02 01:00:00,5.87069,7.7307825,234.0084,233.94528,20.3,1001.79175,0.1,54.041332,1.0 +2024-12-02 02:00:00,5.490446,7.1217976,232.39952,231.84273,21.0,1002.1091,0.0,52.453182,1.0 +2024-12-02 03:00:00,5.6022315,7.0556717,229.34332,229.31071,21.65,1002.1273,0.0,47.310825,1.0 +2024-12-02 04:00:00,5.559901,7.0464525,228.28098,228.16397,21.25,1002.0167,0.0,49.63144,1.0 +2024-12-02 05:00:00,5.526753,6.975851,228.6679,228.19601,21.95,1001.8379,0.0,47.39286,1.0 +2024-12-02 06:00:00,5.5861435,7.141779,224.9999,224.9999,21.5,1001.5281,0.0,50.869213,1.0 +2024-12-02 07:00:00,5.70548,7.3756356,221.09135,220.60121,21.35,1001.3253,0.0,52.024757,1.0 +2024-12-02 08:00:00,5.325411,6.8505473,214.28693,213.6901,21.3,1000.9273,0.0,50.479015,1.0 +2024-12-02 09:00:00,6.3057513,8.184283,206.3618,206.09537,20.55,1000.8072,0.0,60.923473,1.0 +2024-12-02 10:00:00,5.6800084,7.6100264,196.36116,196.41086,19.5,1000.97595,0.1,67.393135,1.0 +2024-12-02 11:00:00,5.303301,7.3751273,188.13002,188.18495,19.1,1001.3611,0.0,67.09121,1.0 +2024-12-02 12:00:00,4.816638,7.025667,184.76355,184.899,19.2,1001.76056,0.0,65.37718,0.0 +2024-12-02 13:00:00,4.2026772,6.101844,177.95464,178.5914,19.25,1002.3572,0.0,61.021706,0.0 +2024-12-02 14:00:00,3.925876,5.6872663,173.41815,173.4374,19.35,1002.7567,0.0,59.254562,0.0 +2024-12-02 15:00:00,3.4329286,5.0818305,167.38068,166.92087,19.1,1002.6503,0.0,59.985203,0.0 +2024-12-02 16:00:00,2.5144582,4.1430664,162.64589,162.43964,18.8,1002.4434,0.0,61.32174,0.0 +2024-12-02 17:00:00,2.442335,3.7884693,157.10942,157.49643,18.95,1001.95197,0.0,60.549034,0.0 +2024-12-02 18:00:00,1.5532224,3.0700164,146.82147,149.67648,18.6,1001.8427,0.0,61.478855,0.0 +2024-12-02 19:00:00,1.3601471,2.8017852,143.97253,145.17545,18.5,1001.93915,0.0,61.864914,0.0 +2024-12-02 20:00:00,1.5692356,3.3800888,149.34941,150.78085,17.85,1002.0198,0.0,64.44159,0.0 +2024-12-02 21:00:00,1.5443445,3.394849,119.05451,133.8066,16.45,1002.3761,0.0,69.94478,0.0 +2024-12-02 22:00:00,2.8609438,4.4195585,95.01302,111.92184,16.85,1002.58606,0.0,66.84357,1.0 +2024-12-02 23:00:00,3.167412,4.269075,101.84206,108.43504,18.9,1002.94214,0.0,57.399403,1.0 +2024-12-03 00:00:00,2.3711812,3.0054116,132.43619,135.67395,20.5,1003.1858,0.0,52.847946,1.0 +2024-12-03 01:00:00,2.107724,2.4989996,202.30626,199.88525,21.3,1003.0101,0.0,53.762527,1.0 +2024-12-03 02:00:00,2.8900692,3.3425288,217.26648,214.641,22.05,1002.9318,0.0,51.6937,1.0 +2024-12-03 03:00:00,3.4124773,4.0301986,219.05313,217.43864,21.95,1002.8297,0.0,53.04927,1.0 +2024-12-03 04:00:00,4.1439714,5.038353,221.57603,220.16951,22.3,1002.8395,0.0,52.273224,1.0 +2024-12-03 05:00:00,4.398295,5.3723826,220.38927,218.57655,22.35,1002.54346,0.0,52.458523,1.0 +2024-12-03 06:00:00,4.560702,5.6100354,217.87505,216.66573,22.25,1002.0447,0.0,52.605328,1.0 +2024-12-03 07:00:00,5.3535037,6.7839885,212.79953,212.05011,21.3,1001.6216,0.2,65.18986,1.0 +2024-12-03 08:00:00,4.7885275,6.10594,208.70586,207.824,21.05,1001.11847,0.0,64.29815,1.0 +2024-12-03 09:00:00,4.750789,5.9785028,210.34317,209.56648,21.25,1000.8266,0.0,60.887234,1.0 +2024-12-03 10:00:00,4.6295247,6.0384183,207.67198,207.62587,20.6,1001.0067,0.0,62.957966,1.0 +2024-12-03 11:00:00,4.5961943,6.2116823,202.38019,202.22968,20.05,1001.1897,0.0,64.9212,1.0 +2024-12-03 12:00:00,4.2059484,6.198387,198.00426,197.8504,19.85,1001.6799,0.0,66.16025,0.0 +2024-12-03 13:00:00,3.4687893,5.639592,195.03787,194.89874,19.2,1001.9589,0.0,70.2453,0.0 +2024-12-03 14:00:00,3.3049207,5.8193645,197.61267,197.50095,18.9,1002.2479,0.0,72.27278,0.0 +2024-12-03 15:00:00,3.83471,6.407808,202.21765,202.9638,18.8,1002.14594,0.0,75.6081,0.0 +2024-12-03 16:00:00,3.7047267,6.1929398,201.37068,201.80147,18.85,1001.8501,0.0,76.35219,0.0 +2024-12-03 17:00:00,3.6224992,6.1856694,200.18588,200.33931,18.6,1001.5452,0.0,76.80731,0.0 +2024-12-03 18:00:00,3.3049207,5.7554317,197.61267,198.74985,18.65,1001.15015,0.0,77.06353,0.0 +2024-12-03 19:00:00,3.0700164,5.628943,196.07364,198.11316,18.4,1001.14294,0.0,78.53231,0.0 +2024-12-03 20:00:00,3.2893767,5.8872743,199.53674,200.89784,18.35,1001.4388,0.0,79.03335,0.0 +2024-12-03 21:00:00,3.463019,6.087898,197.6502,199.17911,18.45,1001.6403,0.0,79.047676,0.0 +2024-12-03 22:00:00,3.710795,6.064858,194.03627,195.2966,18.9,1001.95044,0.0,77.10215,1.0 +2024-12-03 23:00:00,4.9520197,6.600189,196.42226,195.82622,20.2,1002.48315,0.0,69.757065,1.0 +2024-12-04 00:00:00,5.124451,6.676077,197.02061,196.53491,21.1,1003.10376,0.0,65.35804,1.0 +2024-12-04 01:00:00,5.012235,6.3890533,198.61578,197.30061,22.15,1003.33124,0.1,59.339695,1.0 +2024-12-04 02:00:00,4.854122,6.2613893,198.62167,198.14568,21.75,1003.5187,0.1,63.829792,1.0 +2024-12-04 03:00:00,4.7605147,6.030133,197.10281,195.8802,22.8,1003.3495,0.0,57.7865,1.0 +2024-12-04 04:00:00,5.2924476,6.6772,202.20352,200.60634,23.15,1003.06146,0.1,57.49828,1.0 +2024-12-04 05:00:00,6.0008335,7.596216,203.57472,202.85197,22.85,1002.85486,0.0,63.25481,1.0 +2024-12-04 06:00:00,6.1745443,7.89446,201.37068,200.38623,22.8,1002.45685,0.0,64.26456,1.0 +2024-12-04 07:00:00,6.1824346,7.907275,198.87465,197.28928,22.8,1002.1593,0.0,62.83946,1.0 +2024-12-04 08:00:00,6.1355524,7.912016,197.54909,196.14441,22.95,1001.7667,0.0,60.69085,1.0 +2024-12-04 09:00:00,6.069802,7.9246454,191.40247,190.17545,22.0,1001.6411,0.0,65.33908,1.0 +2024-12-04 10:00:00,5.716861,7.6787043,191.60474,190.505,21.2,1001.91626,0.0,69.5022,1.0 +2024-12-04 11:00:00,5.0089917,7.4667597,183.43356,183.83952,20.0,1002.3783,0.0,74.12018,1.0 +2024-12-04 12:00:00,4.806506,7.608055,177.0186,177.3633,19.5,1002.8603,0.0,79.19726,0.0 +2024-12-04 13:00:00,4.2851486,7.070537,168.55899,169.40529,19.0,1003.34174,0.0,80.40486,0.0 +2024-12-04 14:00:00,4.1355166,6.948741,165.29166,166.26372,18.7,1003.4323,0.0,80.88184,0.0 +2024-12-04 15:00:00,3.736308,6.596969,164.47583,165.96373,18.45,1003.3263,0.0,81.6317,0.0 +2024-12-04 16:00:00,3.677295,6.650188,168.23174,170.04199,18.1,1003.0187,0.0,83.71207,0.0 +2024-12-04 17:00:00,3.856488,6.9528775,166.50426,167.96281,18.0,1002.61914,0.0,84.23976,0.0 +2024-12-04 18:00:00,4.246469,7.4330344,167.7639,169.14363,17.8,1002.5141,0.0,85.85545,0.0 +2024-12-04 19:00:00,4.4994445,7.7616043,165.19157,166.5904,17.75,1002.8103,0.0,85.85041,0.0 +2024-12-04 20:00:00,4.503887,7.7364397,157.13545,159.5739,17.45,1003.1981,0.0,85.26975,0.0 +2024-12-04 21:00:00,4.245291,7.538236,147.99466,151.90526,16.95,1003.5806,0.0,84.12231,0.0 +2024-12-04 22:00:00,4.4749303,7.4756274,140.44037,145.35326,16.95,1004.1756,0.0,79.60582,1.0 +2024-12-04 23:00:00,4.9648767,7.0869594,145.66972,147.09476,18.6,1004.61957,0.0,67.650375,1.0 +2024-12-05 00:00:00,5.5454936,7.4242845,153.204,152.74475,20.65,1004.8762,0.0,57.07265,1.0 +2024-12-05 01:00:00,5.881539,7.6580024,165.72745,163.69482,22.1,1005.0162,0.0,51.706814,1.0 +2024-12-05 02:00:00,6.2502,7.91012,179.54166,177.10149,23.25,1004.6513,0.0,48.222157,1.0 +2024-12-05 03:00:00,7.189228,9.116606,185.98805,183.45865,23.6,1004.3634,0.0,48.6356,1.0 +2024-12-05 04:00:00,7.496666,9.625098,189.21095,187.16183,23.55,1004.0646,0.0,51.57797,1.0 +2024-12-05 05:00:00,7.462741,9.543715,191.98749,189.95575,23.6,1003.7683,0.0,52.439545,1.0 +2024-12-05 06:00:00,7.6400266,9.83781,194.40005,192.62355,23.3,1003.661,0.0,50.675472,1.0 +2024-12-05 07:00:00,7.664366,9.924716,193.58298,192.2157,22.8,1003.6471,0.0,51.890167,1.0 +2024-12-05 08:00:00,7.7564487,10.218855,191.5272,190.43016,22.1,1003.33,0.0,55.220924,1.0 +2024-12-05 09:00:00,7.8262377,10.488685,190.3048,189.32755,21.35,1003.40814,0.0,59.731255,1.0 +2024-12-05 10:00:00,7.708761,10.568349,187.07883,186.5197,20.3,1003.77527,0.0,63.50973,1.0 +2024-12-05 11:00:00,7.0613384,10.11237,183.24727,182.83405,19.45,1004.148,0.0,65.430786,1.0 +2024-12-05 12:00:00,6.3049583,9.708244,177.7276,177.63867,19.05,1004.6325,0.0,67.3007,0.0 +2024-12-05 13:00:00,6.404881,9.958036,177.76308,177.69794,18.65,1004.8196,0.0,71.7589,0.0 +2024-12-05 14:00:00,6.754628,10.407689,177.87895,177.79745,18.2,1004.7074,0.0,74.53504,0.0 +2024-12-05 15:00:00,6.56544,10.1741085,176.0699,176.05489,18.1,1004.6054,0.0,73.0755,0.0 +2024-12-05 16:00:00,6.3884664,9.955525,173.70943,173.9459,18.0,1004.30505,0.0,72.345345,0.0 +2024-12-05 17:00:00,6.053098,9.581884,172.40544,172.50424,18.05,1003.90967,0.0,71.6483,0.0 +2024-12-05 18:00:00,5.706356,9.234987,171.94098,172.22095,18.1,1003.6137,0.0,69.12073,0.0 +2024-12-05 19:00:00,5.71358,9.340905,171.44452,172.0001,18.15,1003.4167,0.0,68.90403,0.0 +2024-12-05 20:00:00,5.6995616,9.309404,172.43866,173.52397,18.2,1003.21985,0.0,67.79106,0.0 +2024-12-05 21:00:00,5.6147127,9.228353,171.29271,172.52853,18.3,1003.3219,0.0,66.925224,0.0 +2024-12-05 22:00:00,5.246189,8.466552,169.0114,170.48212,18.95,1003.9354,0.0,65.10917,1.0 +2024-12-05 23:00:00,5.6800084,7.754031,163.63884,163.90228,20.45,1004.47394,0.0,61.1,1.0 +2024-12-06 00:00:00,5.144171,6.6281595,164.20753,163.34207,21.9,1004.7129,0.0,54.272255,1.0 +2024-12-06 01:00:00,4.6270943,5.813777,186.20335,183.94511,22.6,1004.73254,0.0,53.91881,1.0 +2024-12-06 02:00:00,5.2194347,6.454843,203.12654,200.4003,23.45,1004.5578,0.0,52.400665,1.0 +2024-12-06 03:00:00,5.5569777,6.8914804,210.25635,208.61037,23.7,1004.3663,0.0,52.808163,1.0 +2024-12-06 04:00:00,5.8815393,7.3409805,205.69365,204.12099,23.8,1004.0712,0.0,55.287994,1.0 +2024-12-06 05:00:00,6.834106,8.647832,196.57887,195.08084,23.55,1003.767,0.0,57.225082,1.0 +2024-12-06 06:00:00,7.34983,9.399201,194.98167,193.22308,23.8,1003.6745,0.0,53.69917,1.0 +2024-12-06 07:00:00,7.7176747,10.062305,191.9651,190.3048,23.5,1003.26953,0.0,56.114212,1.0 +2024-12-06 08:00:00,7.891768,10.42521,188.74608,186.88634,22.95,1002.8577,0.0,59.721245,1.0 +2024-12-06 09:00:00,7.5779285,10.117806,184.92053,183.39964,22.15,1002.73615,0.0,64.12333,1.0 +2024-12-06 10:00:00,6.951618,9.5,181.23637,180.0,21.05,1002.9037,0.0,71.73528,1.0 +2024-12-06 11:00:00,6.203225,8.961306,178.15244,177.12169,19.9,1003.1692,0.0,79.76041,1.0 +2024-12-06 12:00:00,5.4612265,8.670784,176.32558,176.03217,19.5,1003.4553,0.0,82.287094,0.0 +2024-12-06 13:00:00,5.9103723,9.47589,176.60515,175.76369,19.25,1003.6465,0.0,84.11016,0.0 +2024-12-06 14:00:00,6.633627,10.538026,170.89275,170.71652,19.2,1003.3474,0.0,86.268814,0.0 +2024-12-06 15:00:00,6.367299,10.235355,166.83676,166.43893,19.1,1003.1462,0.0,87.36014,0.0 +2024-12-06 16:00:00,5.797629,9.399201,167.04242,166.77692,18.85,1002.64343,0.0,89.0151,0.0 +2024-12-06 17:00:00,5.640257,9.290452,167.19574,166.93604,18.75,1001.8472,0.0,89.00713,0.0 +2024-12-06 18:00:00,5.141984,8.672081,166.50426,167.00539,18.7,1001.34973,0.0,89.28578,0.0 +2024-12-06 19:00:00,4.148494,7.373093,164.62369,165.86949,18.45,1001.24365,0.0,90.40672,0.0 +2024-12-06 20:00:00,3.0083218,5.850214,158.5522,161.56496,18.0,1000.9332,0.0,93.29145,0.0 +2024-12-06 21:00:00,2.2610838,4.8764744,144.90411,151.85849,17.25,1001.0108,0.0,93.85029,0.0 +2024-12-06 22:00:00,2.4758837,5.100245,136.63654,142.56833,17.25,1001.3083,0.0,90.90202,1.0 +2024-12-06 23:00:00,2.4869661,5.1792855,149.82657,139.69876,19.9,1001.5824,0.0,69.925026,1.0 +2024-12-07 00:00:00,2.6086395,3.4014702,167.82855,155.69547,23.75,1001.4912,0.0,48.51623,1.0 +2024-12-07 01:00:00,2.6504717,3.2163644,178.9191,168.34074,26.0,1001.6519,0.0,41.728046,1.0 +2024-12-07 02:00:00,3.383785,3.7976966,198.9705,189.0902,28.2,1001.1158,0.0,38.27248,1.0 +2024-12-07 03:00:00,5.0677905,5.9960403,210.86674,204.64165,28.15,1000.7178,0.0,44.42395,1.0 +2024-12-07 04:00:00,5.7982755,7.379024,212.3196,206.56499,27.4,1000.49927,0.0,47.928623,1.0 +2024-12-07 05:00:00,6.003332,7.826238,209.98155,206.56499,26.95,1000.2887,0.0,48.271923,1.0 +2024-12-07 06:00:00,6.6424766,9.024964,205.40767,201.4478,26.85,1000.0877,0.0,48.55653,1.0 +2024-12-07 07:00:00,6.3735785,8.477028,199.71439,197.15251,26.5,999.78076,0.0,51.512177,1.0 +2024-12-07 08:00:00,6.1824346,8.271033,198.87465,194.70834,26.25,999.4762,0.0,54.31902,1.0 +2024-12-07 09:00:00,5.3368998,6.991602,195.2081,191.55098,25.05,999.5428,0.0,61.36692,1.0 +2024-12-07 10:00:00,4.8646684,6.952158,192.46492,187.0227,23.75,999.6066,0.0,68.03406,1.0 +2024-12-07 11:00:00,3.6124783,5.957558,184.76355,177.11365,22.35,999.76636,0.0,75.2239,1.0 +2024-12-07 12:00:00,4.504442,8.652312,182.54475,173.69647,21.85,999.95087,0.0,72.10939,0.0 +2024-12-07 13:00:00,4.8438106,9.362159,172.2882,166.40903,21.05,1000.62256,0.0,75.48949,0.0 +2024-12-07 14:00:00,4.925444,8.972319,174.17375,168.75273,21.05,1000.2258,0.0,72.195404,0.0 +2024-12-07 15:00:00,5.246189,9.6407995,169.0114,165.89166,20.7,999.91864,0.0,74.714455,0.0 +2024-12-07 16:00:00,4.014038,7.6866765,166.30994,162.97939,20.25,999.21185,0.0,78.05164,0.0 +2024-12-07 17:00:00,2.6196373,5.900212,166.75948,163.25417,19.65,998.5999,0.0,83.09363,0.0 +2024-12-07 18:00:00,1.677051,4.4869256,169.6952,165.80887,18.8,997.98065,0.0,88.72948,0.0 +2024-12-07 19:00:00,1.2816006,3.3241541,159.44388,164.2913,18.35,997.7694,0.0,89.827545,0.0 +2024-12-07 20:00:00,0.64031243,2.3717082,141.34016,161.56496,18.3,997.76825,0.0,88.688705,0.0 +2024-12-07 21:00:00,0.20615529,1.5508063,104.03627,178.15244,18.35,997.7694,0.0,87.01422,0.0 +2024-12-07 22:00:00,0.15,1.5041609,360.0,201.4478,19.0,997.9863,0.0,86.79865,1.0 +2024-12-07 23:00:00,0.559017,1.1672618,296.56497,226.73567,21.35,998.1516,0.0,79.70785,1.0 +2024-12-08 00:00:00,1.5132746,1.7951323,262.40546,257.125,23.65,998.61194,0.0,70.41296,1.0 +2024-12-08 01:00:00,2.376973,2.795085,247.75093,243.43501,25.0,999.2441,0.0,64.33096,1.0 +2024-12-08 02:00:00,2.6744158,2.863564,249.19313,245.22488,26.8,998.995,0.0,55.151375,1.0 +2024-12-08 03:00:00,4.521338,5.3200097,237.18863,233.02231,27.0,998.70306,0.0,54.852856,1.0 +2024-12-08 04:00:00,5.4500003,6.896376,213.39851,209.53868,26.55,998.4924,0.0,57.4028,1.0 +2024-12-08 05:00:00,6.0270224,7.732561,202.94896,199.25517,27.3,998.31415,0.0,53.895733,1.0 +2024-12-08 06:00:00,6.053924,7.859548,202.3287,197.3976,27.3,998.0165,0.0,55.27507,1.0 +2024-12-08 07:00:00,5.6579585,7.4030395,205.65923,200.1485,26.8,997.9039,0.0,58.00822,1.0 +2024-12-08 08:00:00,5.8815393,7.7435455,205.69365,201.59537,25.25,997.96136,0.0,64.58715,1.0 +2024-12-08 09:00:00,6.203225,8.301355,200.77234,197.88939,23.75,998.01965,0.0,71.77044,1.0 +2024-12-08 10:00:00,6.0270224,8.276473,193.92099,191.85298,22.55,998.28424,0.0,77.89927,1.0 +2024-12-08 11:00:00,5.3640003,7.8008013,191.83362,189.22075,21.5,998.75104,0.0,82.27229,1.0 +2024-12-08 12:00:00,5.323533,8.750143,185.38922,180.3274,20.95,999.33075,0.0,84.03399,0.0 +2024-12-08 13:00:00,5.6535387,8.950559,182.02728,179.35986,20.55,1000.113,0.0,85.8589,0.0 +2024-12-08 14:00:00,5.7502174,9.313432,180.4982,176.9226,20.6,1000.2133,0.0,84.25974,0.0 +2024-12-08 15:00:00,5.8576875,9.502763,177.06439,173.95953,20.4,999.8109,0.0,86.11422,0.0 +2024-12-08 16:00:00,6.0848174,9.786726,173.86787,172.36676,20.3,999.3123,0.0,87.46799,0.0 +2024-12-08 17:00:00,6.0406957,9.73717,173.34567,172.32768,20.15,998.81226,0.0,87.729836,0.0 +2024-12-08 18:00:00,6.288283,10.053482,170.38795,169.97557,20.0,998.41125,0.0,89.66688,0.0 +2024-12-08 19:00:00,5.706356,9.264178,171.94098,170.9953,19.9,998.3095,0.0,92.513405,0.0 +2024-12-08 20:00:00,5.2860665,8.590983,169.64673,169.60573,19.85,998.5062,0.0,93.674774,0.0 +2024-12-08 21:00:00,5.0499997,8.364359,168.57884,168.62294,19.9,998.6071,0.0,94.55836,0.0 +2024-12-08 22:00:00,4.6197944,7.4237795,170.028,169.52263,20.45,999.01917,0.0,92.832115,1.0 +2024-12-08 23:00:00,3.4525354,4.491102,169.99208,168.4399,22.25,999.5651,0.0,83.65589,1.0 +2024-12-09 00:00:00,3.156343,3.8512983,183.63287,181.48784,24.7,999.7319,0.0,71.050354,1.0 +2024-12-09 01:00:00,3.618356,4.2994184,191.15462,188.69542,26.75,999.8865,0.0,63.904472,1.0 +2024-12-09 02:00:00,5.0975485,6.3423185,201.27968,194.14583,27.85,999.7176,0.0,59.728195,1.0 +2024-12-09 03:00:00,6.5776134,8.7097645,198.15958,192.60016,28.1,999.42664,0.0,56.34756,1.0 +2024-12-09 04:00:00,7.156815,9.601692,195.3956,190.19804,28.25,999.23224,0.0,56.737343,1.0 +2024-12-09 05:00:00,7.6277456,9.963935,194.03627,190.40765,28.05,998.9294,0.0,57.40215,1.0 +2024-12-09 06:00:00,7.90348,10.550118,191.30989,187.8996,27.5,998.51776,0.0,58.906845,1.0 +2024-12-09 07:00:00,8.162415,11.065261,189.51994,186.22574,26.8,998.39984,0.0,60.994194,1.0 +2024-12-09 08:00:00,7.5823812,10.412012,185.29695,182.75243,25.75,998.1732,0.0,65.30336,1.0 +2024-12-09 09:00:00,7.4082727,10.300121,182.70786,180.27812,24.6,998.24115,0.0,69.062325,1.0 +2024-12-09 10:00:00,6.802941,9.708244,181.68465,177.63867,23.9,998.5196,0.0,71.57299,1.0 +2024-12-09 11:00:00,5.7107353,8.801278,183.51367,179.02348,22.9,998.6905,0.0,76.74205,1.0 +2024-12-09 12:00:00,6.0406957,12.110842,173.34567,169.29321,22.55,998.7802,0.0,75.96929,0.0 +2024-12-09 13:00:00,7.5538073,12.176412,173.15732,171.7369,21.85,999.3558,0.0,80.02725,0.0 +2024-12-09 14:00:00,6.116576,9.727539,171.5388,169.03665,21.85,999.6534,0.0,81.54606,0.0 +2024-12-09 15:00:00,4.3931766,8.459462,168.17854,161.0295,22.1,999.36273,0.0,80.0611,0.0 +2024-12-09 16:00:00,3.0220027,7.4062476,163.66388,151.35876,22.05,998.8653,0.0,79.30516,0.0 +2024-12-09 17:00:00,3.2649658,7.1317954,152.6502,144.41554,22.55,998.0859,0.0,74.78449,0.0 +2024-12-09 18:00:00,3.623534,8.292466,140.59937,131.08833,23.8,997.72327,0.0,64.89095,0.0 +2024-12-09 19:00:00,4.718315,9.124828,130.27194,123.60302,26.45,997.8944,0.0,52.496567,0.0 +2024-12-09 20:00:00,4.4525275,8.654045,124.939384,117.15716,26.55,997.9964,0.0,52.858288,0.0 +2024-12-09 21:00:00,4.022437,8.1024685,124.875404,114.03429,26.25,998.48425,0.0,54.840145,0.0 +2024-12-09 22:00:00,4.0660176,7.653757,134.50185,118.90909,26.6,998.7913,0.0,54.927284,1.0 +2024-12-09 23:00:00,4.2201896,7.530106,143.67308,123.90114,28.85,999.14905,0.0,49.553143,1.0 +2024-12-10 00:00:00,5.060632,7.111962,127.77575,117.64589,31.45,999.31665,0.0,43.499947,1.0 +2024-12-10 01:00:00,4.1868844,5.4037023,139.84407,128.991,32.55,999.3451,0.0,41.131603,1.0 +2024-12-10 02:00:00,3.8029592,4.8104053,151.75037,136.68465,34.9,999.108,0.0,37.335762,1.0 +2024-12-10 03:00:00,4.821048,5.714018,185.35573,175.9859,35.9,998.83575,0.0,36.796276,1.0 +2024-12-10 04:00:00,6.0419364,7.8230433,190.00792,184.39862,35.3,998.2254,0.0,38.99543,1.0 +2024-12-10 05:00:00,6.600189,8.945389,192.24632,185.77423,34.1,997.8971,0.0,42.467495,1.0 +2024-12-10 06:00:00,7.5440373,10.6794195,193.02309,186.99184,33.0,997.3728,0.0,44.88559,1.0 +2024-12-10 07:00:00,7.7027597,10.761621,186.70975,182.66295,32.0,996.9501,0.0,45.60542,1.0 +2024-12-10 08:00:00,6.964553,9.751154,183.70456,179.11862,31.35,996.7348,0.0,48.515064,1.0 +2024-12-10 09:00:00,7.250172,10.4388685,180.39513,175.05412,31.05,996.52844,0.0,48.436485,1.0 +2024-12-10 10:00:00,6.428064,10.139279,174.64427,168.91176,29.75,996.6928,0.0,50.41667,1.0 +2024-12-10 11:00:00,4.899235,10.008996,165.8219,158.30482,28.4,997.3516,0.0,54.854652,1.0 +2024-12-10 12:00:00,4.5631676,9.98599,145.26508,147.26479,27.8,997.6332,0.0,56.806293,0.0 +2024-12-10 13:00:00,2.2022717,4.611399,87.3975,99.36012,27.3,998.6117,0.0,57.402225,0.0 +2024-12-10 14:00:00,0.5,0.9617692,216.86998,62.10283,28.25,998.1411,0.0,53.963886,0.0 +2024-12-10 15:00:00,0.15,2.4698176,180.0,31.75944,27.3,998.41327,0.0,58.85994,0.0 +2024-12-10 16:00:00,2.0670028,6.0827627,57.84773,46.332153,28.7,998.153,0.0,52.241722,0.0 +2024-12-10 17:00:00,3.720215,8.048137,53.74608,49.282974,31.45,997.7294,0.0,44.19071,0.0 +2024-12-10 18:00:00,4.4533696,8.8086605,61.132942,57.753334,31.85,997.8388,0.0,42.65759,0.0 +2024-12-10 19:00:00,4.7670746,8.857906,65.85446,59.091778,31.6,998.03094,0.0,42.85945,0.0 +2024-12-10 20:00:00,4.924429,8.955445,66.03751,60.572647,31.3,998.3208,0.0,44.5694,0.0 +2024-12-10 21:00:00,5.2654533,9.213577,67.08714,64.26935,31.05,998.8102,0.0,47.09238,0.0 +2024-12-10 22:00:00,6.2962294,10.47855,67.100105,66.37061,31.25,999.3116,0.0,48.037357,1.0 +2024-12-10 23:00:00,6.648496,9.886987,60.736244,59.284786,32.45,999.64026,0.0,47.315033,1.0 +2024-12-11 00:00:00,5.9810114,8.240297,54.183823,52.643303,34.6,999.795,0.0,42.866577,1.0 +2024-12-11 01:00:00,5.506814,7.4380774,20.738794,20.871681,37.25,999.4652,0.0,35.364586,1.0 +2024-12-11 02:00:00,4.3072615,5.672081,3.327345,5.0571585,39.25,999.4159,0.0,29.90829,1.0 +2024-12-11 03:00:00,3.35,3.965476,270.0,283.86105,37.65,999.37604,0.0,32.508457,1.0 +2024-12-11 04:00:00,4.918587,7.4473147,197.14563,207.59721,29.4,1000.35425,0.8,59.71558,1.0 +2024-12-11 05:00:00,4.0718546,5.3677278,65.32315,62.24156,32.1,999.33356,0.1,49.013416,1.0 +2024-12-11 06:00:00,2.1505814,3.2163644,358.66782,348.34073,31.8,999.1273,0.2,52.53726,1.0 +2024-12-11 07:00:00,1.2020814,1.4508619,106.9276,91.97489,34.95,998.31555,0.1,40.381504,1.0 +2024-12-11 08:00:00,1.1715374,1.0012492,219.80553,182.86235,34.85,997.5194,0.0,41.626522,1.0 +2024-12-11 09:00:00,4.133098,5.7168612,235.34862,230.3228,30.45,997.6041,0.0,57.971367,1.0 +2024-12-11 10:00:00,3.25,5.591288,202.6199,205.41925,28.15,998.2378,0.0,65.19876,1.0 +2024-12-11 11:00:00,2.4738634,5.707013,165.96373,168.887,26.9,998.50183,0.0,68.44086,1.0 +2024-12-11 12:00:00,2.4824383,5.3577046,152.4028,157.50348,27.0,998.6039,0.0,67.62164,0.0 +2024-12-11 13:00:00,2.2388613,4.4271884,119.42737,108.43504,28.75,998.74976,0.0,62.19487,0.0 +2024-12-11 14:00:00,2.1708293,4.808326,118.92633,106.9276,27.95,998.9269,0.0,64.55803,0.0 +2024-12-11 15:00:00,2.3070545,4.3603325,150.1012,130.81499,27.4,998.9121,0.0,67.493004,0.0 +2024-12-11 16:00:00,2.5739076,4.9300103,150.9455,143.24623,26.6,998.39453,0.0,73.16951,0.0 +2024-12-11 17:00:00,1.9602295,4.4229517,142.25313,132.70937,26.35,998.28876,0.0,74.25623,0.0 +2024-12-11 18:00:00,1.523975,3.8668463,138.99101,130.27979,25.75,997.97485,0.0,76.46922,0.0 +2024-12-11 19:00:00,1.4089003,3.51639,117.47435,119.84584,25.4,998.06476,0.0,77.8358,0.0 +2024-12-11 20:00:00,1.4603082,3.4003677,141.95291,126.027466,25.15,998.05774,0.0,79.00226,0.0 +2024-12-11 21:00:00,1.0816654,2.6405492,123.6901,108.77813,24.45,998.43536,0.0,82.88089,0.0 +2024-12-11 22:00:00,1.9962465,2.6953664,157.93205,130.48593,25.0,998.7481,0.0,80.69453,1.0 +2024-12-11 23:00:00,0.3,1.3462912,180.0,58.671368,27.15,999.30206,0.0,71.71379,1.0 +2024-12-12 00:00:00,1.431782,1.2539936,204.77512,184.57384,28.65,999.3421,0.0,66.511635,1.0 +2024-12-12 01:00:00,2.2102036,2.030394,232.35231,232.0012,29.0,999.05396,0.0,65.17604,1.0 +2024-12-12 02:00:00,3.8503246,4.110049,232.38597,233.40881,28.7,999.0458,0.0,65.31314,1.0 +2024-12-12 03:00:00,4.506939,5.427937,213.6901,211.0542,28.3,998.8368,0.0,65.03012,1.0 +2024-12-12 04:00:00,4.3416586,5.1441717,208.92633,205.31964,29.5,998.075,0.0,60.84988,1.0 +2024-12-12 05:00:00,4.5235496,5.533986,203.44807,198.43504,29.85,997.2905,0.0,59.63552,1.0 +2024-12-12 06:00:00,4.606517,5.700877,207.12122,201.61484,29.35,996.7814,0.0,61.00315,1.0 +2024-12-12 07:00:00,4.405962,5.6002235,207.72816,203.13145,28.35,996.7551,0.0,65.040535,1.0 +2024-12-12 08:00:00,4.744734,6.053924,208.99586,202.3287,27.45,996.6319,0.0,67.08897,1.0 +2024-12-12 09:00:00,4.443253,5.8354516,199.04672,192.36905,26.7,996.6119,0.0,70.10905,1.0 +2024-12-12 10:00:00,3.0923293,3.9714608,202.8337,190.88548,25.95,997.4842,0.0,73.508865,1.0 +2024-12-12 11:00:00,3.2202485,4.396021,205.76927,199.25938,24.5,997.6435,0.0,81.87671,1.0 +2024-12-12 12:00:00,2.5044959,4.020572,206.05344,190.75092,24.0,997.8281,0.0,83.33878,0.0 +2024-12-12 13:00:00,1.677051,2.3194828,206.56499,187.43132,23.45,998.3091,0.0,87.74474,0.0 +2024-12-12 14:00:00,1.9104972,3.0536864,222.87889,182.81549,23.25,998.3034,0.0,88.26753,0.0 +2024-12-12 15:00:00,1.3536987,1.2539936,274.23633,246.50142,22.85,998.4908,0.0,90.429634,0.0 +2024-12-12 16:00:00,1.8027756,1.5692356,273.17978,292.47946,22.6,997.7897,0.0,91.811165,0.0 +2024-12-12 17:00:00,1.9241881,2.2203605,245.43285,277.76508,22.5,997.1917,4.3,93.22386,0.0 +2024-12-12 18:00:00,1.55,2.5504901,270.0,268.8767,22.45,997.2896,0.5,95.532,0.0 +2024-12-12 19:00:00,2.4869661,4.1463842,210.17343,213.6901,22.05,996.68335,0.2,95.81199,0.0 +2024-12-12 20:00:00,2.0056171,3.0413814,265.71094,260.53775,22.1,997.3791,0.7,95.520454,0.0 +2024-12-12 21:00:00,2.0359273,3.5556295,245.32315,244.15567,21.9,997.2743,1.0,96.69256,0.0 +2024-12-12 22:00:00,2.1400933,3.0858548,232.59457,229.60017,22.1,997.97424,0.2,96.40202,1.0 +2024-12-12 23:00:00,1.970406,2.540177,215.70677,216.1933,22.65,998.0884,0.0,91.25256,1.0 +2024-12-13 00:00:00,1.6560496,2.0124612,208.88649,206.56499,23.85,998.31995,0.0,81.54461,1.0 +2024-12-13 01:00:00,2.5985572,2.965215,258.9063,264.19336,25.95,997.881,0.1,74.87638,1.0 +2024-12-13 02:00:00,2.4438698,2.6856098,239.23735,241.0491,26.8,997.60626,0.0,69.912415,1.0 +2024-12-13 03:00:00,3.3837848,3.9246018,235.84026,235.90497,26.55,997.7981,0.0,70.73129,1.0 +2024-12-13 04:00:00,4.100305,4.9117208,232.43134,231.61342,26.7,997.6038,0.0,69.678795,1.0 +2024-12-13 05:00:00,4.1548166,4.995248,230.37103,228.65231,26.7,997.3062,0.0,68.40186,1.0 +2024-12-13 06:00:00,4.103657,4.995248,223.02507,221.34767,26.3,996.7001,0.0,69.17441,1.0 +2024-12-13 07:00:00,5.080354,6.324555,216.1933,214.69522,25.8,996.68665,0.0,71.25107,1.0 +2024-12-13 08:00:00,4.09695,5.0975485,203.7495,201.27968,25.55,996.38245,0.0,67.54252,1.0 +2024-12-13 09:00:00,3.8626416,4.790877,201.25058,198.24594,25.25,996.0768,0.0,69.40338,1.0 +2024-12-13 10:00:00,4.1967254,5.385397,195.1953,192.875,23.75,996.53186,0.0,75.921814,1.0 +2024-12-13 11:00:00,2.8111384,3.8029594,185.10208,182.26045,22.9,997.00433,0.0,79.919716,1.0 +2024-12-13 12:00:00,1.3583078,1.95,186.3401,180.0,22.55,997.3916,0.0,82.39984,0.0 +2024-12-13 13:00:00,1.8927494,2.8504384,192.20045,178.99493,22.75,997.6945,0.0,80.90092,0.0 +2024-12-13 14:00:00,2.0651877,3.6013885,186.95287,181.59111,22.2,998.2746,0.0,84.4344,0.0 +2024-12-13 15:00:00,1.25,2.7354157,163.73972,161.89615,21.8,998.26324,0.0,86.51925,0.0 +2024-12-13 16:00:00,2.8935273,4.645697,189.95056,188.0428,21.7,998.26044,0.0,87.59211,0.0 +2024-12-13 17:00:00,3.100403,5.1022053,179.07597,181.68465,20.85,997.9394,0.0,87.24372,0.0 +2024-12-13 18:00:00,1.8973665,3.9915538,161.56496,167.70474,20.6,997.53546,0.0,87.22102,0.0 +2024-12-13 19:00:00,0.5147815,1.8027756,150.9455,160.55988,20.7,997.5383,0.0,89.439316,0.0 +2024-12-13 20:00:00,0.9192388,1.0630146,22.380184,41.185837,20.55,997.931,6.4,92.54895,0.0 +2024-12-13 21:00:00,2.5739074,3.9623227,82.1848,79.824554,20.05,997.8177,0.6,86.89702,0.0 +2024-12-13 22:00:00,1.6347783,1.9849433,156.57129,130.91429,20.6,997.9322,0.0,82.68199,1.0 +2024-12-13 23:00:00,2.782984,3.8897302,162.21602,162.03076,22.0,998.864,0.0,82.59063,1.0 +2024-12-14 00:00:00,2.419194,2.9618406,161.93944,158.19853,24.35,999.02783,0.0,70.32329,1.0 +2024-12-14 01:00:00,1.05,1.2083046,180.0,155.55606,26.75,999.0929,0.0,50.596985,1.0 +2024-12-14 02:00:00,2.5811818,2.836371,225.78473,220.71075,28.05,998.8302,0.0,47.188545,1.0 +2024-12-14 03:00:00,3.3015149,3.46013,234.86572,232.63326,27.9,998.5284,0.0,53.876236,1.0 +2024-12-14 04:00:00,4.007805,4.521338,236.70642,237.18863,28.15,998.2378,0.0,51.44691,1.0 +2024-12-14 05:00:00,3.901602,4.6295247,239.16223,242.328,28.15,998.03937,0.0,43.99675,1.0 +2024-12-14 06:00:00,4.370927,5.325411,234.30984,235.71307,27.4,997.62256,0.0,49.963623,1.0 +2024-12-14 07:00:00,4.598369,5.731492,226.76236,227.1211,26.4,997.49646,0.0,57.18568,1.0 +2024-12-14 08:00:00,4.705582,5.943484,227.15297,227.0454,25.45,997.4707,0.0,64.02427,1.0 +2024-12-14 09:00:00,4.808846,6.1214786,224.15756,222.6829,24.5,997.6435,0.0,70.5715,1.0 +2024-12-14 10:00:00,4.881854,6.3812227,212.87627,212.19571,23.35,998.20703,0.0,78.26005,1.0 +2024-12-14 11:00:00,5.2000003,7.1121373,202.6199,201.87627,22.45,998.77734,0.0,82.1317,1.0 +2024-12-14 12:00:00,5.2825184,7.246033,197.06294,196.43423,22.25,999.466,0.0,80.33216,0.0 +2024-12-14 13:00:00,4.6446204,6.536436,194.33546,193.71736,21.75,999.84894,0.0,80.26524,0.0 +2024-12-14 14:00:00,4.7518415,6.618535,188.47105,188.25244,21.65,1000.14374,0.0,79.24916,0.0 +2024-12-14 15:00:00,4.7594643,6.7323847,189.06642,188.97255,21.55,1000.24005,0.0,78.737656,0.0 +2024-12-14 16:00:00,4.318565,6.3782835,185.31445,185.39766,21.3,999.8363,0.0,79.19999,0.0 +2024-12-14 17:00:00,4.15,6.2,180.0,180.0,21.05,999.2341,0.0,78.914955,0.0 +2024-12-14 18:00:00,4.2511764,6.500769,178.65215,179.11862,20.75,999.0275,0.0,79.373314,0.0 +2024-12-14 19:00:00,3.6124783,5.714018,175.23645,175.9859,20.65,999.3222,0.0,79.35933,0.0 +2024-12-14 20:00:00,4.204759,6.6030297,177.27374,178.26433,20.6,999.8166,0.0,78.85063,0.0 +2024-12-14 21:00:00,4.031129,6.1897097,172.87508,173.50658,20.55,999.9146,0.0,78.84351,0.0 +2024-12-14 22:00:00,3.846102,5.3368998,164.15686,164.7919,20.7,1000.2161,0.0,76.887215,1.0 +2024-12-14 23:00:00,4.011546,5.178803,169.95071,169.99208,21.5,1000.6355,0.0,72.04636,1.0 +2024-12-15 00:00:00,2.8217902,3.5510561,172.87508,170.27249,22.7,1001.0654,0.0,65.90704,1.0 +2024-12-15 01:00:00,4.3820653,5.433461,196.57408,194.93147,23.95,1001.8935,0.0,61.11619,1.0 +2024-12-15 02:00:00,5.246189,6.583692,202.40988,200.91263,24.45,1002.3038,0.0,58.744987,1.0 +2024-12-15 03:00:00,5.3677278,6.670832,205.37152,203.87529,24.95,1001.82166,0.0,57.015766,1.0 +2024-12-15 04:00:00,6.4399147,8.095678,206.76392,205.61543,25.35,1002.03076,0.0,55.31876,1.0 +2024-12-15 05:00:00,7.057797,9.015681,202.93213,202.1555,25.05,1001.92334,0.0,56.676857,1.0 +2024-12-15 06:00:00,6.9462223,8.904212,202.8737,202.10019,24.65,1001.8135,0.0,56.217266,1.0 +2024-12-15 07:00:00,7.7999997,10.046392,202.6199,202.22508,24.35,1002.20184,0.0,57.23567,1.0 +2024-12-15 08:00:00,6.5017304,8.428671,200.2467,199.40242,23.85,1001.98987,0.0,58.040123,1.0 +2024-12-15 09:00:00,7.147377,9.344651,199.19556,198.72588,23.55,1001.9817,0.0,57.781376,1.0 +2024-12-15 10:00:00,7.8259187,10.5709505,192.17145,191.73509,21.7,1002.32684,0.0,71.39743,1.0 +2024-12-15 11:00:00,7.2639523,10.067895,183.55167,183.41652,20.85,1002.7,0.0,74.02786,1.0 +2024-12-15 12:00:00,6.6507516,9.551178,180.86151,180.89984,20.4,1003.183,0.0,69.57092,0.0 +2024-12-15 13:00:00,6.129437,9.094642,174.3825,174.32085,20.25,1004.07153,0.0,63.706203,0.0 +2024-12-15 14:00:00,5.9413805,8.8188715,173.23392,172.83478,20.2,1004.36755,0.0,63.695152,0.0 +2024-12-15 15:00:00,5.7924523,8.806957,173.05911,173.4803,19.95,1004.5589,0.0,63.224636,0.0 +2024-12-15 16:00:00,5.918826,9.108238,171.25392,171.15826,19.8,1004.5549,0.0,63.60649,0.0 +2024-12-15 17:00:00,5.6189413,8.84562,168.19014,167.92789,19.25,1004.4398,0.0,66.25006,0.0 +2024-12-15 18:00:00,5.139309,8.332617,160.68355,161.45624,18.85,1004.4286,0.0,66.6013,0.0 +2024-12-15 19:00:00,4.6089587,7.6697454,151.48885,153.26797,18.55,1004.8167,0.0,66.538445,0.0 +2024-12-15 20:00:00,3.9990625,7.040064,132.4664,137.0146,17.75,1005.0912,0.0,67.92278,0.0 +2024-12-15 21:00:00,4.069705,7.3649507,116.25018,124.76903,16.85,1005.2636,0.0,67.964005,0.0 +2024-12-15 22:00:00,4.790094,8.250607,126.51115,131.80646,17.4,1005.77527,0.0,64.772095,1.0 +2024-12-15 23:00:00,5.1973553,7.743546,134.61028,135.78474,19.6,1006.2351,0.0,56.061367,1.0 +2024-12-16 00:00:00,6.423589,8.644362,148.04193,148.24057,21.5,1006.4871,0.0,51.37831,1.0 +2024-12-16 01:00:00,6.3287044,8.318654,154.24478,152.81897,22.9,1006.9228,0.0,45.637657,1.0 +2024-12-16 02:00:00,6.161371,7.937569,164.94873,162.02148,24.25,1006.7619,0.0,41.514687,1.0 +2024-12-16 03:00:00,6.4778466,8.245301,174.68555,171.28033,25.35,1006.1968,0.0,39.135643,1.0 +2024-12-16 04:00:00,6.852919,8.657078,181.67236,177.68298,25.85,1005.6155,0.0,39.27631,1.0 +2024-12-16 05:00:00,7.256032,9.166514,187.12492,183.4398,26.05,1004.82733,0.0,40.655502,1.0 +2024-12-16 06:00:00,7.9488993,10.264624,189.0475,186.43256,25.25,1004.508,0.0,45.97978,1.0 +2024-12-16 07:00:00,8.293673,10.822661,185.88235,183.70836,24.8,1004.4958,0.0,48.322674,1.0 +2024-12-16 08:00:00,8.667467,11.4569845,183.6381,182.00075,24.0,1004.17615,0.0,52.543003,1.0 +2024-12-16 09:00:00,8.350599,11.255443,179.31387,178.21808,23.35,1003.7615,0.0,54.28627,1.0 +2024-12-16 10:00:00,8.109871,11.128792,177.17294,175.87778,22.4,1003.735,0.0,59.015247,1.0 +2024-12-16 11:00:00,7.2857738,10.3649645,168.92145,168.31065,21.25,1004.09955,0.0,65.17915,1.0 +2024-12-16 12:00:00,6.3186235,9.82306,166.7335,166.45888,20.75,1004.284,0.0,68.74768,0.0 +2024-12-16 13:00:00,6.442243,10.206003,164.2378,163.78464,20.15,1004.4654,0.0,73.20001,0.0 +2024-12-16 14:00:00,5.9165025,9.679876,159.72723,160.06738,19.95,1004.658,0.0,75.551956,0.0 +2024-12-16 15:00:00,4.900255,8.341613,151.34299,152.51347,19.55,1004.6467,0.0,74.52181,0.0 +2024-12-16 16:00:00,3.9003205,7.2543087,143.86453,145.10497,18.9,1004.52893,0.0,70.646545,0.0 +2024-12-16 17:00:00,3.2330325,6.709136,140.64827,140.13982,18.4,1004.2173,0.0,64.990074,0.0 +2024-12-16 18:00:00,3.2101402,6.85,142.59457,140.03384,18.1,1003.8121,0.0,61.77256,0.0 +2024-12-16 19:00:00,3.0103986,6.8603935,138.36655,133.8189,17.95,1003.6093,0.0,59.710804,0.0 +2024-12-16 20:00:00,2.653771,6.4978843,137.29063,129.69263,17.8,1003.7041,0.0,56.742664,0.0 +2024-12-16 21:00:00,2.6907248,6.731456,131.98714,121.328636,17.85,1003.8048,0.0,51.797016,0.0 +2024-12-16 22:00:00,2.836371,6.618912,130.71075,116.9521,18.85,1003.7343,0.0,43.89959,1.0 +2024-12-16 23:00:00,3.1064448,6.7425885,146.82147,113.14283,22.2,1003.8288,0.0,34.2567,1.0 +2024-12-17 00:00:00,2.9124732,4.2722945,145.49142,124.992096,25.9,1003.63293,0.0,26.681211,1.0 +2024-12-17 01:00:00,3.7769036,5.6142673,96.84268,85.91447,29.85,1002.7467,0.0,23.987526,1.0 +2024-12-17 02:00:00,2.910756,4.315669,94.92702,79.99209,33.15,1002.3372,0.0,21.216347,1.0 +2024-12-17 03:00:00,1.3124405,2.100595,130.36446,88.6361,34.85,1001.6864,0.0,20.301563,1.0 +2024-12-17 04:00:00,3.6891732,4.136726,212.82854,206.56499,34.25,1000.8773,0.0,30.387924,1.0 +2024-12-17 05:00:00,4.8877397,6.600189,210.76265,204.62355,33.15,1000.4522,0.0,38.651936,1.0 +2024-12-17 06:00:00,6.35059,9.100138,206.1615,200.92458,32.1,1000.028,0.0,39.72972,1.0 +2024-12-17 07:00:00,6.136163,9.266742,194.1495,190.88548,31.25,999.51,0.0,37.521393,1.0 +2024-12-17 08:00:00,5.3368998,7.566373,195.2081,187.59456,31.35,999.21497,0.0,37.549046,1.0 +2024-12-17 09:00:00,5.0990195,7.289204,205.55992,198.80789,28.95,999.54865,0.0,49.89339,1.0 +2024-12-17 10:00:00,4.4598203,6.3788714,199.65392,193.60056,27.3,999.90125,0.0,55.624714,1.0 +2024-12-17 11:00:00,4.107615,8.409073,176.51074,170.76178,25.7,1000.0567,0.0,62.293243,1.0 +2024-12-17 12:00:00,4.292144,7.8544574,171.96439,168.61858,25.1,1000.43713,0.0,62.355923,0.0 +2024-12-17 13:00:00,3.7513332,7.338426,181.5275,174.13412,23.75,1001.0944,0.0,63.857956,0.0 +2024-12-17 14:00:00,3.1535695,6.7418466,177.27374,173.61298,23.15,1001.57367,0.0,68.13008,0.0 +2024-12-17 15:00:00,2.754088,6.283709,183.12207,174.06268,22.8,1001.7626,0.0,69.58893,0.0 +2024-12-17 16:00:00,2.9740543,6.4381676,196.60706,186.24182,22.4,1001.2554,0.0,73.59021,0.0 +2024-12-17 17:00:00,3.3948488,6.975851,189.32352,184.93408,22.1,1000.9497,0.0,76.1373,0.0 +2024-12-17 18:00:00,3.7054014,7.2515516,183.094,178.81476,21.95,1000.4494,0.0,78.79486,0.0 +2024-12-17 19:00:00,3.3,6.512296,180.0,176.47862,21.55,1000.3392,0.0,83.05504,0.0 +2024-12-17 20:00:00,3.4014704,6.61211,181.68465,176.53185,21.25,1000.52905,0.0,84.331055,0.0 +2024-12-17 21:00:00,4.015283,7.2043386,185.00055,181.9886,21.1,1000.7234,0.0,86.452484,0.0 +2024-12-17 22:00:00,4.3603325,7.100176,183.94511,180.40347,21.5,1001.2305,0.0,85.685585,1.0 +2024-12-17 23:00:00,5.065817,6.908871,184.52873,182.90376,22.9,1001.666,0.0,77.95085,1.0 +2024-12-18 00:00:00,5.296461,6.975851,187.59454,184.93408,24.1,1002.19525,0.0,73.19205,1.0 +2024-12-18 01:00:00,5.8105507,7.48415,195.47139,192.73639,25.1,1002.1234,0.0,70.90285,1.0 +2024-12-18 02:00:00,6.3120914,8.088572,196.56891,193.95036,25.75,1002.04175,0.0,67.3724,1.0 +2024-12-18 03:00:00,6.642665,8.464632,197.0711,194.36462,26.25,1001.95605,0.0,64.19624,1.0 +2024-12-18 04:00:00,7.336552,9.430005,198.682,196.32103,26.15,1001.7552,0.0,64.57673,1.0 +2024-12-18 05:00:00,8.050621,10.467689,196.972,195.23117,25.8,1001.94385,0.0,64.30062,1.0 +2024-12-18 06:00:00,8.100771,10.651291,194.2936,192.47046,25.55,1001.9372,0.0,65.26135,1.0 +2024-12-18 07:00:00,8.070471,10.653169,191.79723,189.72751,25.25,1001.82983,0.0,64.18257,1.0 +2024-12-18 08:00:00,8.364359,11.096959,191.37706,189.33493,24.5,1001.4127,0.0,66.281296,1.0 +2024-12-18 09:00:00,7.99015,10.783552,185.74617,184.52087,23.7,1001.2915,0.0,68.88774,1.0 +2024-12-18 10:00:00,7.560589,10.354347,183.03264,181.66025,22.65,1001.659,0.0,76.70351,1.0 +2024-12-18 11:00:00,6.550191,9.252162,179.56265,178.7614,21.6,1002.0265,0.0,83.582085,1.0 +2024-12-18 12:00:00,6.61211,9.878512,176.53185,175.64586,21.1,1002.60785,0.0,84.579285,0.0 +2024-12-18 13:00:00,6.2307706,9.724325,170.76451,170.82835,20.5,1003.7808,0.0,82.149574,0.0 +2024-12-18 14:00:00,6.3737745,9.825731,168.69011,169.14755,20.4,1004.17474,0.0,81.61937,0.0 +2024-12-18 15:00:00,6.3505907,9.873197,172.76317,173.01904,20.2,1003.97076,0.0,83.68548,0.0 +2024-12-18 16:00:00,7.0035706,10.97463,170.13426,169.76526,20.15,1003.672,0.0,83.41573,0.0 +2024-12-18 17:00:00,7.307701,11.253111,170.15105,170.53775,20.0,1003.5684,0.0,83.13475,0.0 +2024-12-18 18:00:00,7.2272053,11.296903,169.2343,169.28693,20.1,1003.2737,0.0,80.808464,0.0 +2024-12-18 19:00:00,7.203471,11.280514,166.34956,167.19574,20.1,1003.2737,0.0,79.28203,0.0 +2024-12-18 20:00:00,6.876409,10.793169,165.2564,165.51309,20.15,1003.47363,0.0,78.53564,0.0 +2024-12-18 21:00:00,6.7203054,10.565037,162.239,162.93706,20.2,1003.7724,0.0,77.301506,0.0 +2024-12-18 22:00:00,6.5622025,10.135211,160.87468,161.2968,20.4,1004.3731,0.0,77.08605,1.0 +2024-12-18 23:00:00,7.5433745,10.454783,162.64589,163.03821,21.6,1004.8035,0.0,71.83529,1.0 +2024-12-19 00:00:00,7.2532754,9.7663965,164.81412,164.256,23.1,1005.0438,0.0,66.200966,1.0 +2024-12-19 01:00:00,7.3979726,9.718153,170.66507,169.32607,24.45,1004.7835,0.0,61.23041,1.0 +2024-12-19 02:00:00,7.7103825,10.090218,177.02634,174.88278,25.2,1004.804,0.0,59.86523,1.0 +2024-12-19 03:00:00,8.25,10.759415,180.0,177.60303,25.95,1004.6261,0.0,57.805153,1.0 +2024-12-19 04:00:00,8.71163,11.350441,182.96088,180.50479,26.2,1004.3355,0.0,57.137333,1.0 +2024-12-19 05:00:00,9.11112,11.950941,182.83095,180.71915,26.3,1004.04047,0.0,56.62126,1.0 +2024-12-19 06:00:00,9.016789,11.851688,183.497,180.9669,26.4,1003.6465,0.0,55.40279,1.0 +2024-12-19 07:00:00,8.61757,11.403946,183.65921,181.5074,25.95,1003.535,0.0,57.076847,1.0 +2024-12-19 08:00:00,8.275566,11.057238,184.50482,182.0731,25.15,1003.3149,0.0,61.778965,1.0 +2024-12-19 09:00:00,7.8040056,10.550474,181.83574,180.54306,24.0,1002.9859,0.0,65.13948,1.0 +2024-12-19 10:00:00,7.400169,10.251951,180.38712,178.8822,22.9,1003.3521,0.0,69.608086,1.0 +2024-12-19 11:00:00,6.500769,9.356549,179.11862,177.8563,21.75,1003.5187,0.0,77.780685,1.0 +2024-12-19 12:00:00,6.7812243,10.574143,174.49968,173.21112,21.25,1003.802,0.0,81.214195,0.0 +2024-12-19 13:00:00,6.060115,9.649093,169.06096,168.34073,20.7,1004.38165,0.0,83.742256,0.0 +2024-12-19 14:00:00,5.9300084,9.581884,165.84656,164.87595,20.8,1004.2853,0.0,84.28173,0.0 +2024-12-19 15:00:00,5.711611,9.462822,159.50258,159.26671,20.65,1003.98364,0.0,85.86887,0.0 +2024-12-19 16:00:00,4.427471,7.8714676,153.14566,152.78398,20.45,1003.68054,0.0,82.40334,0.0 +2024-12-19 17:00:00,3.7215588,7.2401657,149.30035,147.40742,20.3,1002.8827,0.0,75.36747,0.0 +2024-12-19 18:00:00,3.4121108,7.4419417,145.14548,141.8211,20.3,1002.48596,0.0,67.33811,0.0 +2024-12-19 19:00:00,3.1945267,7.503666,140.07967,132.29932,20.8,1002.2026,0.0,55.991146,0.0 +2024-12-19 20:00:00,3.4311075,8.130191,133.22856,121.93065,22.05,1002.2375,0.0,44.647133,0.0 +2024-12-19 21:00:00,4.1743264,8.653901,124.261154,112.4162,23.35,1002.3728,0.0,43.098824,0.0 +2024-12-19 22:00:00,4.405111,8.757425,116.27415,105.22648,24.35,1002.8961,0.0,43.956345,1.0 +2024-12-19 23:00:00,3.5846896,8.188407,120.141304,98.42689,26.95,1003.16534,0.0,41.31076,1.0 +2024-12-20 00:00:00,4.68188,6.7670155,109.98319,98.070145,29.85,1003.04425,0.0,35.826057,1.0 +2024-12-20 01:00:00,4.473533,6.1540637,117.997055,106.52097,32.05,1002.50696,0.0,27.794724,1.0 +2024-12-20 02:00:00,3.7124789,4.837354,134.4544,119.74479,34.35,1002.0704,0.0,24.753883,1.0 +2024-12-20 03:00:00,3.4889112,4.2816467,154.5367,137.36629,36.25,1001.52344,0.0,22.806902,1.0 +2024-12-20 04:00:00,5.3443894,6.4031243,190.78426,181.78987,36.5,1000.93475,0.0,25.811882,1.0 +2024-12-20 05:00:00,7.3420024,10.097525,196.21346,187.96953,34.35,1000.58215,0.0,32.644512,1.0 +2024-12-20 06:00:00,8.902247,12.735089,194.97292,188.3527,32.45,1000.23553,0.0,36.081272,1.0 +2024-12-20 07:00:00,8.068612,12.167375,187.47723,183.06223,31.2,1000.2029,0.0,37.38708,1.0 +2024-12-20 08:00:00,7.835975,11.950941,185.49223,180.71915,30.75,999.8937,0.0,41.160984,1.0 +2024-12-20 09:00:00,7.2111025,11.507606,176.82024,174.26472,28.95,1000.3423,0.0,45.216118,1.0 +2024-12-20 10:00:00,7.017834,10.458131,175.91446,171.75377,27.95,1000.6133,0.0,50.747837,1.0 +2024-12-20 11:00:00,6.052479,9.3820305,167.11182,163.59315,26.1,1001.15845,0.0,56.572514,1.0 +2024-12-20 12:00:00,7.6975646,12.394052,168.76309,166.46829,25.1,1001.52826,0.0,57.784748,0.0 +2024-12-20 13:00:00,5.8077536,9.433187,177.03912,172.38538,23.6,1002.57806,0.0,64.43737,0.0 +2024-12-20 14:00:00,6.1165757,10.374126,175.78099,171.12794,23.4,1002.67163,0.0,65.63503,0.0 +2024-12-20 15:00:00,5.716861,8.767696,168.39526,165.80524,23.05,1002.2655,0.0,67.8945,0.0 +2024-12-20 16:00:00,4.244997,7.5738034,164.98158,161.9238,22.75,1001.86017,0.0,70.24372,0.0 +2024-12-20 17:00:00,3.1953092,6.823672,159.86362,155.31285,22.5,1001.15906,0.0,70.6431,0.0 +2024-12-20 18:00:00,2.5,5.5946403,163.73972,155.72557,22.25,1000.8545,0.0,69.48307,0.0 +2024-12-20 19:00:00,2.5985572,5.8872743,168.90631,159.10216,22.05,1000.74976,0.0,69.66612,0.0 +2024-12-20 20:00:00,2.7681222,6.269968,163.20155,156.50142,22.1,1000.85046,0.0,68.35555,0.0 +2024-12-20 21:00:00,2.6832817,6.302579,153.43501,148.95836,22.05,1000.9482,0.0,64.10154,0.0 +2024-12-20 22:00:00,2.55196,6.036969,145.37578,140.37674,22.9,1001.1701,0.0,53.46887,1.0 +2024-12-20 23:00:00,2.830636,5.3108377,162.52513,138.05296,26.15,1001.5568,0.0,39.62207,1.0 +2024-12-21 00:00:00,3.3514922,4.40284,178.29022,164.85896,29.75,1001.3554,0.0,30.557,1.0 +2024-12-21 01:00:00,3.6503425,4.5235496,166.53477,156.55193,32.8,1001.4352,0.0,24.843786,1.0 +2024-12-21 02:00:00,4.160829,5.0084925,175.8654,165.54753,35.5,1000.90924,0.0,22.170511,1.0 +2024-12-21 03:00:00,5.433691,6.8066144,190.069,182.52606,36.8,1000.347,0.0,23.711155,1.0 +2024-12-21 04:00:00,6.7581434,9.288837,195.88724,189.91858,36.3,999.9372,0.0,29.028152,1.0 +2024-12-21 05:00:00,7.8946185,11.278742,194.30031,190.21391,35.3,999.416,0.0,30.869473,1.0 +2024-12-21 06:00:00,7.417715,10.384845,187.74768,184.69482,34.8,999.30396,0.0,30.0491,1.0 +2024-12-21 07:00:00,7.2835426,10.22069,188.68628,183.6462,34.25,999.1907,0.0,34.87798,1.0 +2024-12-21 08:00:00,6.622877,9.400133,184.76355,180.30475,32.05,999.3322,0.0,41.516754,1.0 +2024-12-21 09:00:00,5.7638965,7.801442,183.97931,178.89832,31.5,999.3178,0.0,43.513496,1.0 +2024-12-21 10:00:00,5.8008623,8.448076,179.01227,173.8846,29.75,999.4705,0.0,46.158314,1.0 +2024-12-21 11:00:00,5.450229,8.438008,180.52562,174.55975,27.25,1000.09845,0.0,56.317646,1.0 +2024-12-21 12:00:00,5.3640003,9.3820305,168.16638,163.59315,26.2,1000.66534,0.0,59.53207,0.0 +2024-12-21 13:00:00,3.7963798,7.05195,167.06194,161.82188,25.6,1001.2442,0.0,61.297943,0.0 +2024-12-21 14:00:00,3.118493,6.1929398,167.96942,158.19853,25.45,1001.24005,0.0,61.07079,0.0 +2024-12-21 15:00:00,2.5739074,5.7412977,172.1848,160.1447,25.05,1001.03064,0.0,62.148132,0.0 +2024-12-21 16:00:00,2.236068,5.500909,169.6952,152.96922,25.35,1000.54285,0.0,60.090088,0.0 +2024-12-21 17:00:00,1.806931,5.8258047,165.5792,140.57222,25.8,1000.0592,0.0,53.86048,0.0 +2024-12-21 18:00:00,2.5612497,7.4908276,128.65984,116.56499,27.05,999.7955,0.0,36.958546,0.0 +2024-12-21 19:00:00,3.58922,8.626268,108.68745,105.80861,30.2,999.78,0.0,25.6865,0.0 +2024-12-21 20:00:00,4.0040603,8.867073,105.945465,102.704025,30.4,1000.08295,0.0,24.966726,0.0 +2024-12-21 21:00:00,5.011237,10.140266,102.09474,97.65056,30.7,1000.09076,0.0,24.292946,0.0 +2024-12-21 22:00:00,7.125307,12.502999,85.16967,84.722694,31.9,1000.2215,0.0,22.535408,1.0 +2024-12-21 23:00:00,8.345208,13.585654,74.71472,74.63386,34.35,1000.58215,0.0,19.571564,1.0 +2024-12-22 00:00:00,7.2749567,10.622264,70.319595,68.74943,36.9,1000.64716,0.0,16.830572,1.0 +2024-12-22 01:00:00,7.27066,9.99825,65.197365,64.84466,40.4,999.94055,0.0,14.171919,1.0 +2024-12-22 02:00:00,5.87069,7.6904163,54.00841,53.726036,43.2,999.51276,0.0,11.496131,1.0 +2024-12-22 03:00:00,3.7165172,4.560702,42.27363,37.875053,45.0,998.7621,0.0,9.706761,1.0 +2024-12-22 04:00:00,2.0886598,2.1272047,281.0409,299.57773,44.2,998.34576,0.0,10.082349,1.0 +2024-12-22 05:00:00,6.0018744,8.500147,271.43207,270.337,39.35,998.32684,0.0,22.915655,1.0 +2024-12-22 06:00:00,5.261654,7.750645,273.814,269.26074,35.35,998.5243,0.0,29.147623,1.0 +2024-12-22 07:00:00,3.4014704,4.9155364,268.31534,260.63358,34.65,998.60565,0.0,32.936047,1.0 +2024-12-22 08:00:00,1.637834,2.0081086,257.66092,251.11382,35.1,998.31934,0.0,28.79986,1.0 +2024-12-22 09:00:00,3.434021,4.548626,222.04915,213.34073,34.75,997.71515,0.0,33.06861,1.0 +2024-12-22 10:00:00,2.3942637,3.618356,208.70586,191.15462,31.65,998.0323,0.0,45.086,1.0 +2024-12-22 11:00:00,1.2206556,2.6725454,214.9921,162.58194,30.0,998.5843,0.0,48.923386,1.0 +2024-12-22 12:00:00,1.45,1.5628499,270.0,187.35228,27.95,998.8277,0.0,58.280964,0.0 +2024-12-22 13:00:00,1.5206907,4.7278433,189.46225,162.13982,28.15,999.0314,0.0,52.76307,0.0 +2024-12-22 14:00:00,1.1335784,3.771273,221.42357,173.91156,27.6,999.215,0.0,52.95736,0.0 +2024-12-22 15:00:00,1.0111874,2.4864633,261.46933,195.15411,26.6,998.6921,0.0,58.32689,0.0 +2024-12-22 16:00:00,1.25,2.316247,253.73972,212.6609,25.1,998.0566,0.0,67.03164,0.0 +2024-12-22 17:00:00,1.4866068,2.4253867,289.6539,261.70294,24.2,997.73425,0.0,73.66692,0.0 +2024-12-22 18:00:00,0.49244288,1.8027756,293.9625,250.55988,23.7,997.22485,0.0,78.31075,0.0 +2024-12-22 19:00:00,0.31622776,0.55,18.435053,270.0,23.3,997.2139,0.0,79.726006,0.0 +2024-12-22 20:00:00,1.118034,0.7106335,26.564985,39.289394,23.1,997.20825,0.0,77.737434,0.0 +2024-12-22 21:00:00,1.6101242,3.733631,64.23073,82.30404,22.95,997.7993,0.0,74.14886,0.0 +2024-12-22 22:00:00,1.5206907,4.411916,9.462261,51.441586,24.65,997.94507,0.0,61.66613,1.0 +2024-12-22 23:00:00,2.4864633,5.5643954,15.154131,49.007908,29.6,998.4744,0.0,37.305645,1.0 +2024-12-23 00:00:00,1.9525625,4.2720017,346.67545,32.57405,34.0,998.589,0.0,25.074959,1.0 +2024-12-23 01:00:00,3.3800886,3.992493,277.65054,292.06796,32.4,998.9445,0.0,48.939953,1.0 +2024-12-23 02:00:00,4.0003123,4.9327984,270.71616,280.51257,31.95,998.83374,0.0,53.224213,1.0 +2024-12-23 03:00:00,4.92062,6.503076,264.75296,271.76236,31.45,998.6222,0.0,51.966152,1.0 +2024-12-23 04:00:00,3.8551912,5.346027,272.97366,277.5237,31.75,998.62994,0.0,47.2775,1.0 +2024-12-23 05:00:00,2.8217902,3.2128649,240.25522,249.02643,33.5,998.77466,0.0,43.238377,1.0 +2024-12-23 06:00:00,4.5122056,5.894277,257.19574,259.73868,31.65,998.3299,0.0,45.51193,1.0 +2024-12-23 07:00:00,3.1312938,4.4204073,231.48305,232.35231,30.6,998.30225,0.0,50.008595,1.0 +2024-12-23 08:00:00,2.5632012,3.2897568,249.44388,245.77226,30.7,997.9083,0.0,43.84888,1.0 +2024-12-23 09:00:00,2.9504237,3.5587919,269.029,265.9718,29.0,998.2603,0.0,54.15107,1.0 +2024-12-23 10:00:00,3.2893767,4.1140003,250.46326,249.36237,26.55,998.98834,0.0,69.43607,1.0 +2024-12-23 11:00:00,2.65,3.490702,238.10924,231.981,24.75,999.23706,0.0,79.67757,1.0 +2024-12-23 12:00:00,2.098809,2.8887713,257.61926,246.54095,24.0,999.7127,0.0,84.88739,0.0 +2024-12-23 13:00:00,2.3753946,3.2442255,210.34317,208.53989,23.15,1000.87933,0.0,86.646675,0.0 +2024-12-23 14:00:00,2.376973,3.677295,194.62091,191.76826,22.9,1001.2692,0.0,86.62319,0.0 +2024-12-23 15:00:00,2.7372432,4.335032,189.46225,187.28886,22.5,1001.0599,0.0,87.122444,0.0 +2024-12-23 16:00:00,3.2469218,5.3265843,189.75235,189.72751,22.1,1000.85046,0.0,88.71858,0.0 +2024-12-23 17:00:00,3.8395963,6.413462,188.23553,188.06685,21.9,1000.4481,0.0,88.42818,0.0 +2024-12-23 18:00:00,4.522444,7.2292805,185.7105,185.15846,21.75,1000.04736,0.0,88.14196,0.0 +2024-12-23 19:00:00,4.902295,7.7578993,181.75337,182.58574,21.45,1000.0388,0.0,88.391,0.0 +2024-12-23 20:00:00,4.9010205,7.754031,181.16911,181.84756,21.25,1000.4299,0.0,88.37445,0.0 +2024-12-23 21:00:00,4.6524186,7.452684,178.15244,178.46227,21.3,1000.6298,0.0,85.93346,0.0 +2024-12-23 22:00:00,5.1119957,7.723341,176.07417,175.54448,21.35,1001.3253,0.0,84.87119,1.0 +2024-12-23 23:00:00,6.1008196,8.252424,179.06084,178.61131,22.65,1001.7582,0.0,76.70351,1.0 +2024-12-24 00:00:00,6.951618,9.200543,181.23637,180.62274,23.65,1002.1827,0.0,70.19183,1.0 +2024-12-24 01:00:00,7.006426,9.153415,182.45398,181.56503,24.0,1002.39075,0.0,64.72816,1.0 +2024-12-24 02:00:00,7.1175838,9.210999,184.02818,182.80022,24.95,1002.21844,0.0,60.5713,1.0 +2024-12-24 03:00:00,7.5599275,9.746409,187.21893,185.5935,25.65,1002.2373,0.0,57.55016,1.0 +2024-12-24 04:00:00,7.81425,10.104702,187.35228,185.96439,25.85,1002.0446,0.0,56.871754,1.0 +2024-12-24 05:00:00,7.785403,10.077822,188.4943,187.12492,25.9,1002.1451,0.0,57.064762,1.0 +2024-12-24 06:00:00,7.969473,10.353381,187.5708,185.82063,25.75,1001.9425,0.0,56.84745,1.0 +2024-12-24 07:00:00,8.422144,11.021116,187.50464,186.51233,25.3,1001.8312,0.0,58.573044,1.0 +2024-12-24 08:00:00,8.707611,11.557357,186.59442,185.7105,24.5,1001.6111,0.0,61.828205,1.0 +2024-12-24 09:00:00,8.471274,11.421471,184.06145,183.51367,23.8,1001.4924,0.0,64.89095,1.0 +2024-12-24 10:00:00,8.150153,11.100113,180.3515,179.74191,22.85,1001.86304,0.0,68.939926,1.0 +2024-12-24 11:00:00,7.1543694,9.960171,177.99751,177.41055,21.75,1002.6261,0.0,74.1805,1.0 +2024-12-24 12:00:00,7.0114193,10.217631,176.72958,176.6336,21.25,1003.3061,0.0,76.002556,0.0 +2024-12-24 13:00:00,7.2790794,10.638139,174.87692,175.14699,20.8,1003.69025,0.0,74.731125,0.0 +2024-12-24 14:00:00,7.274785,10.6838665,175.26915,175.43686,20.5,1003.97925,0.0,74.681114,0.0 +2024-12-24 15:00:00,7.125307,10.634027,175.16966,175.41542,20.15,1004.0687,0.0,75.826584,0.0 +2024-12-24 16:00:00,7.0846667,10.597287,174.32974,174.58539,20.05,1003.76825,0.0,74.366936,0.0 +2024-12-24 17:00:00,7.175131,10.493093,175.2033,174.80566,20.0,1003.46924,0.0,74.12018,0.0 +2024-12-24 18:00:00,6.876227,9.98624,174.99426,175.11732,19.85,1003.3659,0.0,73.61966,0.0 +2024-12-24 19:00:00,6.419502,9.575621,175.53293,175.80789,19.4,1003.55145,0.0,75.21988,0.0 +2024-12-24 20:00:00,6.469351,9.778804,175.56741,175.60138,19.15,1004.04034,0.0,75.4215,0.0 +2024-12-24 21:00:00,6.124745,9.393216,174.848,174.50192,19.15,1004.13947,0.0,74.45433,0.0 +2024-12-24 22:00:00,5.9669924,9.077031,175.67502,175.57718,19.7,1004.552,0.0,70.79755,1.0 +2024-12-24 23:00:00,6.8183575,9.3301935,175.79472,175.38943,20.9,1004.9824,0.0,64.05725,1.0 +2024-12-25 00:00:00,7.0528364,9.408506,178.37506,177.5634,22.4,1005.52026,0.0,55.477345,1.0 +2024-12-25 01:00:00,7.150699,9.248919,186.82677,185.89542,23.3,1005.843,0.0,51.512547,1.0 +2024-12-25 02:00:00,7.5538073,9.8063755,186.84268,186.14653,23.6,1006.14886,0.0,50.754623,1.0 +2024-12-25 03:00:00,8.238932,10.6838665,185.5721,184.56314,23.9,1006.2562,0.0,52.34664,1.0 +2024-12-25 04:00:00,8.459313,10.960497,186.78888,186.0226,24.35,1006.16943,0.0,49.317898,1.0 +2024-12-25 05:00:00,8.670064,11.219849,187.28886,186.39648,24.5,1006.0746,0.0,50.66079,1.0 +2024-12-25 06:00:00,9.116606,11.866023,186.93004,186.04683,24.05,1005.8636,0.0,53.415577,1.0 +2024-12-25 07:00:00,9.529559,12.528867,184.5139,183.89005,23.4,1005.548,0.0,56.820057,1.0 +2024-12-25 08:00:00,10.22069,13.767807,183.6462,182.91429,22.4,1005.7186,0.0,56.023224,1.0 +2024-12-25 09:00:00,10.75,14.750763,180.0,179.41736,22.15,1005.7116,0.0,55.59618,1.0 +2024-12-25 10:00:00,10.461955,14.571977,177.26073,176.85295,21.1,1006.1783,0.0,60.654255,1.0 +2024-12-25 11:00:00,9.845938,14.069826,174.46321,174.2895,20.35,1006.75214,0.0,63.31391,1.0 +2024-12-25 12:00:00,9.681038,14.220848,172.58144,172.52525,19.45,1007.52,0.0,67.823586,0.0 +2024-12-25 13:00:00,8.933225,13.2084255,168.37564,168.64757,18.5,1008.48456,0.0,69.882195,0.0 +2024-12-25 14:00:00,8.36675,12.528367,162.9727,163.30067,18.6,1008.98315,0.0,65.89566,0.0 +2024-12-25 15:00:00,7.7157307,11.531695,157.92274,158.10626,18.75,1009.18604,0.0,62.54024,0.0 +2024-12-25 16:00:00,7.4035463,11.094706,154.8195,154.93634,18.8,1009.0881,0.0,60.714836,0.0 +2024-12-25 17:00:00,6.8090014,10.206493,146.0765,146.38776,18.3,1008.8755,0.0,59.39683,0.0 +2024-12-25 18:00:00,5.4740295,8.702011,129.06847,133.1374,17.45,1008.75165,0.0,59.59075,0.0 +2024-12-25 19:00:00,5.056926,8.317602,133.79825,137.68004,17.45,1008.8508,0.0,59.191685,0.0 +2024-12-25 20:00:00,5.3744764,8.358529,135.75375,138.39502,17.9,1009.26074,0.0,58.707314,0.0 +2024-12-25 21:00:00,6.504806,10.020603,140.9275,142.50107,17.5,1009.94324,0.0,62.25448,0.0 +2024-12-25 22:00:00,6.594695,10.057958,139.30457,140.85089,16.95,1010.7207,0.0,64.457825,1.0 +2024-12-25 23:00:00,7.1001763,10.010244,142.72653,143.53067,17.85,1011.34174,0.0,55.995205,1.0 +2024-12-26 00:00:00,7.2945185,9.916904,151.32695,150.72102,19.1,1011.77435,0.0,45.974804,1.0 +2024-12-26 01:00:00,7.401689,9.817968,153.95428,152.39104,20.85,1011.82446,0.0,30.47476,1.0 +2024-12-26 02:00:00,6.9729834,9.071521,161.1752,158.66766,22.5,1011.57336,0.0,22.460339,1.0 +2024-12-26 03:00:00,6.717328,8.561542,169.2756,165.80142,24.0,1011.0201,0.0,19.284086,1.0 +2024-12-26 04:00:00,7.3744493,9.355346,175.33322,171.39362,24.95,1010.25287,0.0,19.24053,1.0 +2024-12-26 05:00:00,8.300151,10.666887,180.34514,176.77554,25.15,1009.76227,0.0,23.7423,1.0 +2024-12-26 06:00:00,9.380033,12.256529,184.58601,181.87018,24.5,1009.0503,0.0,33.28511,1.0 +2024-12-26 07:00:00,9.95314,13.250377,181.43925,180.4324,22.85,1009.00433,0.0,45.62386,1.0 +2024-12-26 08:00:00,9.753204,13.068761,178.53123,176.92967,22.95,1008.80884,0.0,47.350494,1.0 +2024-12-26 09:00:00,10.107919,13.773253,177.7321,176.67024,21.95,1008.58234,0.0,54.463585,1.0 +2024-12-26 10:00:00,9.482747,13.166815,172.42542,172.36232,21.05,1008.8545,0.0,56.238644,1.0 +2024-12-26 11:00:00,8.7385645,12.611503,169.78319,169.49203,20.35,1009.13245,0.0,61.478287,1.0 +2024-12-26 12:00:00,8.076664,12.163162,166.39388,165.96373,19.9,1009.3182,0.0,65.10091,0.0 +2024-12-26 13:00:00,7.2320466,11.202009,163.94571,163.6681,19.5,1009.80255,0.0,68.276855,0.0 +2024-12-26 14:00:00,7.147377,11.274418,160.80444,160.84177,19.4,1010.29535,0.0,69.3763,0.0 +2024-12-26 15:00:00,6.808267,10.911691,156.63564,157.07716,19.15,1010.08997,0.0,67.101555,0.0 +2024-12-26 16:00:00,6.2890778,10.179636,150.98973,151.54686,18.6,1009.8757,0.0,60.667805,0.0 +2024-12-26 17:00:00,5.5470715,9.291393,146.0234,145.96783,18.05,1009.7608,0.0,55.669483,0.0 +2024-12-26 18:00:00,4.9406476,8.720092,144.0578,143.39284,17.6,1009.64856,0.0,52.262066,0.0 +2024-12-26 19:00:00,4.82001,8.613071,143.01115,141.59988,17.25,1009.6384,0.0,51.284664,0.0 +2024-12-26 20:00:00,4.615734,8.499705,140.27394,138.33856,17.0,1009.73035,0.0,51.21749,0.0 +2024-12-26 21:00:00,4.4913807,8.414867,136.35312,134.5186,16.85,1009.9245,0.0,50.826714,0.0 +2024-12-26 22:00:00,4.5013885,8.253787,130.94635,128.60562,17.2,1010.13293,0.0,48.362114,1.0 +2024-12-26 23:00:00,4.3863425,8.0,133.1524,126.86999,19.7,1010.70087,0.0,39.808777,1.0 +2024-12-27 00:00:00,4.9623585,6.780118,130.91429,127.208,22.75,1010.78674,0.0,29.222382,1.0 +2024-12-27 01:00:00,4.8548946,6.488451,122.38066,118.539894,26.75,1010.4011,0.0,20.770391,1.0 +2024-12-27 02:00:00,4.6010866,5.9171357,137.64261,131.23137,29.05,1010.06647,0.0,16.197279,1.0 +2024-12-27 03:00:00,4.9396358,6.264982,158.62932,151.38963,30.2,1009.40283,0.0,14.621636,1.0 +2024-12-27 04:00:00,6.2502,7.872896,180.45834,175.62929,30.5,1008.5179,0.0,18.187624,1.0 +2024-12-27 05:00:00,8.2669525,10.826011,187.29684,183.97241,28.6,1007.87213,0.0,37.88555,1.0 +2024-12-27 06:00:00,9.327513,12.39042,187.39159,184.62915,28.05,1007.2621,0.0,37.116615,1.0 +2024-12-27 07:00:00,10.06243,13.6532955,182.84813,181.25902,26.65,1006.72845,0.0,38.85385,1.0 +2024-12-27 08:00:00,9.625487,13.209276,175.82965,174.57004,26.3,1006.4211,0.0,41.81156,1.0 +2024-12-27 09:00:00,9.26094,12.693501,177.21489,175.25519,25.35,1006.09753,0.0,50.392715,1.0 +2024-12-27 10:00:00,8.641904,12.274465,174.35547,173.68568,23.25,1006.7342,0.0,55.870792,1.0 +2024-12-27 11:00:00,7.462741,11.014649,168.01251,167.41478,21.8,1006.9912,0.0,64.25375,1.0 +2024-12-27 12:00:00,7.424453,12.170148,164.37256,164.0222,21.3,1007.27484,0.0,67.32508,0.0 +2024-12-27 13:00:00,6.9641943,11.086027,158.96242,158.29451,20.9,1007.7594,0.0,71.02206,0.0 +2024-12-27 14:00:00,6.597348,10.803009,152.46402,152.13039,20.75,1007.85443,0.0,70.7666,0.0 +2024-12-27 15:00:00,6.0,10.320005,143.13002,143.0745,21.0,1007.4647,0.0,58.296307,0.0 +2024-12-27 16:00:00,5.452064,10.298665,132.02618,132.44205,21.6,1007.1839,0.0,41.607292,0.0 +2024-12-27 17:00:00,5.202163,10.1233635,125.21768,123.92557,22.15,1006.7034,0.0,36.940807,0.0 +2024-12-27 18:00:00,5.3891096,10.29138,117.04044,114.69736,22.4,1006.41296,0.0,33.031055,0.0 +2024-12-27 19:00:00,5.472203,10.474015,109.75956,106.35875,22.45,1006.31525,0.0,28.62912,0.0 +2024-12-27 20:00:00,5.550901,10.564682,107.29254,102.85235,22.5,1006.1183,0.0,23.88325,0.0 +2024-12-27 21:00:00,5.554278,10.621205,103.53587,98.664055,22.5,1006.2174,0.0,22.460339,0.0 +2024-12-27 22:00:00,5.5993304,10.602122,100.80818,95.68362,22.75,1006.4227,0.0,22.283056,1.0 +2024-12-27 23:00:00,4.4059615,10.000125,99.14157,90.286476,24.8,1006.9755,0.0,20.27545,1.0 +2024-12-28 00:00:00,4.9862313,8.018884,105.7087,93.932816,27.45,1007.04755,0.0,17.586973,1.0 +2024-12-28 01:00:00,6.550191,9.061181,89.56265,87.15344,30.8,1006.34326,0.0,16.42339,1.0 +2024-12-28 02:00:00,6.5024996,8.867073,79.81343,77.29598,33.55,1005.9192,0.0,13.183593,1.0 +2024-12-28 03:00:00,5.5652943,7.48415,81.21479,77.2636,35.6,1005.2774,0.0,10.635644,1.0 +2024-12-28 04:00:00,3.367863,4.762877,108.16605,94.214096,36.1,1004.59546,0.0,9.691465,1.0 +2024-12-28 05:00:00,2.8783677,3.7443287,162.824,145.88548,36.8,1003.6213,0.0,9.360581,1.0 +2024-12-28 06:00:00,6.2169123,8.471274,191.12915,184.06145,34.7,1002.9725,0.0,21.03096,1.0 +2024-12-28 07:00:00,7.798878,11.448253,192.96709,185.2623,32.9,1002.4298,0.0,33.739098,1.0 +2024-12-28 08:00:00,9.638076,14.204312,187.7517,181.4119,31.05,1001.9848,0.0,34.666878,1.0 +2024-12-28 09:00:00,8.268312,12.459736,176.186,172.39026,29.5,1002.0431,0.0,35.37922,1.0 +2024-12-28 10:00:00,7.5804024,10.103712,169.35718,167.1329,29.35,1002.03906,0.0,34.307346,1.0 +2024-12-28 11:00:00,6.964194,11.021456,164.16754,162.30475,27.2,1002.18024,0.0,36.878292,1.0 +2024-12-28 12:00:00,7.3370633,12.121984,155.00673,154.59766,25.8,1002.1422,0.0,40.05159,0.0 +2024-12-28 13:00:00,5.3911963,10.320005,151.77132,150.70282,24.55,1002.70337,0.0,46.853798,0.0 +2024-12-28 14:00:00,4.674666,9.080198,147.66983,143.5086,24.25,1002.1993,0.0,48.4915,0.0 +2024-12-28 15:00:00,3.7901187,7.6858635,143.58353,138.42847,24.1,1001.79846,0.0,45.2147,0.0 +2024-12-28 16:00:00,2.1633308,6.2900715,123.6901,113.91625,23.35,1001.08344,0.0,39.227917,0.0 +2024-12-28 17:00:00,2.0359273,5.9076223,114.67685,92.910774,23.9,1000.50336,0.0,23.159811,0.0 +2024-12-28 18:00:00,2.34094,6.6592045,109.98319,86.98728,24.75,999.73303,0.0,15.73576,0.0 +2024-12-28 19:00:00,2.902585,8.099382,79.07724,69.775055,26.7,999.78613,0.0,13.605998,0.0 +2024-12-28 20:00:00,3.5735137,8.971343,72.07199,65.29179,28.15,999.825,0.0,12.405492,0.0 +2024-12-28 21:00:00,4.3200116,9.270383,73.87235,66.476776,29.35,999.75745,0.0,11.745511,0.0 +2024-12-28 22:00:00,4.938117,9.441001,74.134224,70.509384,30.0,999.87396,0.0,11.830014,1.0 +2024-12-28 23:00:00,5.536244,9.848858,69.92838,66.03751,31.55,1000.0139,0.0,11.743308,1.0 +2024-12-29 00:00:00,5.771698,9.25,54.51994,53.13002,32.75,999.94574,0.0,11.1758795,1.0 +2024-12-29 01:00:00,7.045566,9.901641,34.592358,34.091347,36.75,999.7503,0.0,11.944307,1.0 +2024-12-29 02:00:00,5.651991,7.827037,358.47925,4.763556,37.4,999.76666,0.0,13.457044,1.0 +2024-12-29 03:00:00,4.5721984,6.257995,283.2764,292.0565,35.3,999.9121,0.0,19.273245,1.0 +2024-12-29 04:00:00,4.8746796,6.467805,243.1722,250.58444,31.4,1000.109,0.0,30.404707,1.0 +2024-12-29 05:00:00,3.5014284,4.850258,271.63654,270.59064,31.2,1000.30206,0.0,33.053856,1.0 +2024-12-29 06:00:00,4.244997,5.4520636,254.98158,258.8962,30.95,1000.0974,0.0,34.30256,1.0 +2024-12-29 07:00:00,3.6090164,4.7,259.6242,270.0,31.25,1000.20447,0.0,37.521393,1.0 +2024-12-29 08:00:00,3.8626416,4.876474,248.74942,254.53873,30.35,1000.18066,0.0,38.496185,1.0 +2024-12-29 09:00:00,3.3120992,3.9815197,241.11351,234.71317,29.35,1000.3527,0.0,41.83964,1.0 +2024-12-29 10:00:00,3.9755502,5.1662364,230.10222,222.64667,26.35,1001.16534,0.0,59.007015,1.0 +2024-12-29 11:00:00,4.590479,6.2769423,212.99771,210.65059,23.8,1002.1867,0.0,79.30184,1.0 +2024-12-29 12:00:00,5.985399,8.542395,186.23439,185.7105,22.8,1003.1512,0.0,81.15947,0.0 +2024-12-29 13:00:00,4.569737,6.8938384,162.1597,161.82777,22.4,1003.93335,0.0,79.35398,0.0 +2024-12-29 14:00:00,3.6878178,5.920304,167.4712,164.32042,22.25,1004.0284,0.0,74.97091,0.0 +2024-12-29 15:00:00,3.083018,5.2280493,171.60716,167.2929,22.0,1003.8231,0.0,78.06287,0.0 +2024-12-29 16:00:00,3.6283605,5.4829283,168.0707,167.35785,21.8,1003.6191,0.0,82.56664,0.0 +2024-12-29 17:00:00,3.7769036,5.7558665,173.15732,172.01076,21.65,1003.2183,0.0,83.587814,0.0 +2024-12-29 18:00:00,3.5724642,5.65,173.57135,172.37195,21.5,1003.41254,0.0,84.88706,0.0 +2024-12-29 19:00:00,4.4922156,7.472616,163.17851,164.47583,21.05,1003.4988,0.0,88.91033,0.0 +2024-12-29 20:00:00,4.8283024,7.7403164,164.38055,164.2579,21.0,1003.49756,0.0,90.02084,0.0 +2024-12-29 21:00:00,4.0003123,6.9110417,161.79143,162.7448,20.6,1004.0813,0.0,92.83996,0.0 +2024-12-29 22:00:00,3.847077,6.150203,152.10283,152.39342,21.1,1004.78973,0.0,89.46964,1.0 +2024-12-29 23:00:00,3.8684623,5.3235326,153.10384,151.99092,22.25,1004.921,0.0,80.08135,1.0 +2024-12-30 00:00:00,2.147673,2.8151379,167.90526,160.27763,24.45,1005.18024,0.0,66.899666,1.0 +2024-12-30 01:00:00,3.0066593,3.748333,176.186,170.78905,25.6,1005.1127,0.0,60.14797,1.0 +2024-12-30 02:00:00,3.3365402,4.014038,199.24962,193.69006,26.25,1005.03107,0.0,59.356464,1.0 +2024-12-30 03:00:00,4.2807713,5.2021627,202.67139,197.9126,27.6,1004.7701,0.0,56.402798,1.0 +2024-12-30 04:00:00,5.0323954,6.232576,205.29198,200.17955,28.7,1004.7002,0.0,52.73656,1.0 +2024-12-30 05:00:00,5.662596,7.1233773,209.0545,203.14581,29.15,1004.4146,0.0,49.63156,1.0 +2024-12-30 06:00:00,6.138811,8.064894,200.50151,194.72552,28.95,1004.0127,0.0,50.051094,1.0 +2024-12-30 07:00:00,6.467032,8.727256,198.01479,191.56741,28.8,1003.71106,0.0,50.487957,1.0 +2024-12-30 08:00:00,6.247599,8.435787,192.47906,188.17804,27.95,1003.49,0.0,53.719296,1.0 +2024-12-30 09:00:00,5.71358,7.669746,188.55548,184.11215,27.05,1003.5649,0.0,58.801228,1.0 +2024-12-30 10:00:00,5.250238,7.2140484,180.54564,176.42374,25.6,1003.8232,0.0,64.661736,1.0 +2024-12-30 11:00:00,4.1548166,5.753477,182.75905,178.00795,24.3,1004.58105,0.0,71.86937,1.0 +2024-12-30 12:00:00,3.6912057,5.6035705,188.56906,182.04536,23.2,1005.0467,0.0,78.72691,0.0 +2024-12-30 13:00:00,3.700338,5.6008925,180.7742,178.97699,22.15,1005.3149,0.0,82.35142,0.0 +2024-12-30 14:00:00,3.667424,5.7238536,168.9965,165.84233,22.15,1005.7116,0.0,80.31882,0.0 +2024-12-30 15:00:00,3.156343,5.255949,183.63287,177.27374,22.05,1005.7089,0.0,81.57136,0.0 +2024-12-30 16:00:00,2.7372432,4.25,170.53775,171.20267,21.85,1005.3067,0.0,82.83104,0.0 +2024-12-30 17:00:00,2.1982946,4.1140003,162.80138,159.36237,21.65,1005.00354,0.0,84.111694,0.0 +2024-12-30 18:00:00,1.6194135,3.420526,171.11942,164.74483,21.0,1004.291,0.0,87.80397,0.0 +2024-12-30 19:00:00,1.4534442,3.25,183.94511,180.0,20.7,1003.9849,0.0,90.84488,0.0 +2024-12-30 20:00:00,1.2747549,2.9274564,191.30989,187.85323,20.4,1003.67883,0.0,92.829506,0.0 +2024-12-30 21:00:00,1.1401755,2.6443334,195.25517,195.35019,20.35,1004.0744,0.0,93.11646,0.0 +2024-12-30 22:00:00,0.9192388,2.0934422,247.61981,229.84407,21.0,1004.78687,0.0,92.57342,1.0 +2024-12-30 23:00:00,0.47169906,0.81394106,237.99466,227.4896,22.3,1005.5174,0.1,88.461075,1.0 +2024-12-31 00:00:00,0.35355338,0.8077747,135.0001,68.19853,24.55,1005.2823,0.0,75.34477,1.0 +2024-12-31 01:00:00,4.9236674,6.115963,235.34158,235.6603,26.1,1005.1262,0.0,67.442444,1.0 +2024-12-31 02:00:00,1.5041609,1.9006578,158.5522,144.63745,28.9,1004.50714,0.0,54.63593,1.0 +2024-12-31 03:00:00,3.748333,4.0816665,223.91916,210.96368,30.6,1004.453,0.0,50.164783,1.0 +2024-12-31 04:00:00,4.8600416,5.7982755,216.6342,212.3196,29.3,1004.5178,0.0,53.55333,1.0 +2024-12-31 05:00:00,4.900255,5.899576,216.28535,211.13025,30.05,1004.6369,0.0,48.630062,1.0 +2024-12-31 06:00:00,1.8124568,2.236068,204.44394,190.3048,31.85,1004.1882,0.0,39.03468,1.0 +2024-12-31 07:00:00,3.7124789,4.181507,225.5456,221.12137,31.95,1003.5957,0.0,39.941513,1.0 +2024-12-31 08:00:00,2.5480385,3.166228,195.94547,201.29742,30.45,1003.7549,0.2,44.339928,1.0 +2024-12-31 09:00:00,0.82462114,1.0700467,194.03627,142.59457,32.05,1003.39984,0.0,38.594944,1.0 +2024-12-31 10:00:00,2.0554805,2.2276669,198.43504,170.9606,29.85,1003.4411,0.0,48.42484,1.0 +2024-12-31 11:00:00,1.3000001,1.6140013,202.6199,163.81073,27.8,1004.4778,0.0,60.08952,1.0 +2024-12-31 12:00:00,3.3948488,5.127621,170.67648,136.18518,26.7,1003.9523,0.1,69.89362,0.0 +2024-12-31 13:00:00,3.3559647,6.735726,183.41652,161.83395,25.65,1003.72516,0.0,63.86681,0.0 +2024-12-31 14:00:00,3.3,5.9960403,180.0,163.5295,25.0,1004.30273,0.0,64.94104,0.0 +2024-12-31 15:00:00,3.535534,6.755183,135.0001,133.50052,24.75,1004.09735,0.0,64.88797,0.0 +2024-12-31 16:00:00,3.1819806,5.7658477,171.86998,158.10626,24.75,1004.1966,0.0,60.333206,0.0 +2024-12-31 17:00:00,3.828838,7.4249578,130.76352,135.5456,24.65,1003.30133,0.0,63.24865,0.0 +2024-12-31 18:00:00,3.823938,7.889233,152.76494,149.53453,25.1,1002.9169,0.0,59.08654,0.0 +2024-12-31 19:00:00,3.390059,6.789698,127.208,133.8066,24.9,1003.5064,0.0,58.291832,0.0 +2024-12-31 20:00:00,3.05,5.250238,90.0,109.4704,24.75,1003.10547,0.0,60.52524,0.0 +2024-12-31 21:00:00,4.160829,6.9641943,94.1346,111.03758,24.9,1003.1096,0.0,60.94526,0.0 +2024-12-31 22:00:00,3.5556293,6.040695,86.77554,109.3349,25.6,1003.228,0.0,58.088844,1.0 +2024-12-31 23:00:00,3.5046399,5.6035705,75.96373,92.045364,28.2,1003.59576,0.0,49.855408,1.0 +2025-01-01 00:00:00,3.710795,6.166036,75.96373,81.60716,30.85,1003.4676,0.0,42.926945,1.0 +2025-01-01 01:00:00,3.1148837,4.110961,71.27412,71.564964,34.35,1004.0547,0.0,34.354958,1.0 +2025-01-01 02:00:00,2.930017,3.9623227,36.674442,42.954597,34.55,1003.7624,0.0,33.33161,1.0 +2025-01-01 03:00:00,1.662077,1.3583078,248.83867,263.6599,34.95,1003.3756,0.0,31.777136,1.0 +2025-01-01 04:00:00,2.8504386,3.0302641,217.87505,217.6263,34.7,1002.4764,0.0,41.328743,1.0 +2025-01-01 05:00:00,2.9154758,3.2442257,210.96368,204.5901,36.2,1001.72064,0.0,38.39842,1.0 +2025-01-01 06:00:00,4.788789,6.180008,220.34167,216.77728,35.1,1001.8911,0.0,39.79912,1.0 +2025-01-01 07:00:00,5.489308,7.4488254,159.74928,154.98314,34.3,1001.573,0.0,38.480625,1.0 +2025-01-01 08:00:00,5.4520636,7.036512,168.89621,162.20871,36.05,1000.427,0.0,33.107544,1.0 +2025-01-01 09:00:00,5.9718084,8.420215,168.40785,164.14801,34.4,1000.2857,0.0,39.98177,1.0 +2025-01-01 10:00:00,6.1583276,9.698067,169.23752,163.52704,32.9,1000.644,0.0,42.540836,1.0 +2025-01-01 11:00:00,5.3956,9.024411,172.54579,167.19574,30.9,1000.9887,0.0,44.743107,1.0 +2025-01-01 12:00:00,4.7289004,8.411897,160.22383,151.60707,29.55,1001.64764,0.0,47.738995,0.0 +2025-01-01 13:00:00,4.0718546,7.367666,155.32315,150.30344,27.4,1001.888,0.0,55.29976,0.0 +2025-01-01 14:00:00,4.0131035,7.4607306,149.28117,146.2034,27.75,1001.99664,0.0,50.85719,0.0 +2025-01-01 15:00:00,2.6800187,5.7742968,165.96373,150.99368,27.2,1002.18024,0.0,51.857697,0.0 diff --git a/resource_files/wind/30.6617_-101.7096_2013_wtk_v2_60min_utc_tz.csv b/resource_files/wind/30.6617_-101.7096_2013_wtk_v2_60min_utc_tz.csv new file mode 100644 index 000000000..27948e40b --- /dev/null +++ b/resource_files/wind/30.6617_-101.7096_2013_wtk_v2_60min_utc_tz.csv @@ -0,0 +1,8762 @@ +SiteID,967684,Site Timezone,-6,Data Timezone,0,Longitude,-101.719573975,Latitude,30.6596946716 +Year,Month,Day,Hour,Minute,surface air pressure (Pa),air pressure at 100m (Pa),air pressure at 200m (Pa),relative humidity at 2m (%),surface precipitation rate (mm/h),wind speed at 10m (m/s),wind speed at 40m (m/s),wind speed at 60m (m/s),wind speed at 80m (m/s),wind speed at 100m (m/s),wind speed at 120m (m/s),wind speed at 140m (m/s),wind speed at 160m (m/s),wind speed at 200m (m/s),wind direction at 10m (deg),wind direction at 40m (deg),wind direction at 60m (deg),wind direction at 80m (deg),wind direction at 100m (deg),wind direction at 120m (deg),wind direction at 140m (deg),wind direction at 160m (deg),wind direction at 200m (deg),air temperature at 10m (C),air temperature at 40m (C),air temperature at 60m (C),air temperature at 80m (C),air temperature at 100m (C),air temperature at 120m (C),air temperature at 140m (C),air temperature at 160m (C),air temperature at 200m (C),density - DEPRECATED,power - DEPRECATED +2013,1,1,0,30,94160,93040,91950,33.58,0,3.56,6.22,7.22,7.59,7.73,7.74,7.72,7.69,7.72,352.61,352.46,352.08,351.2,350.07,348.83,347.59000000000003,346.51,345.09000000000003,13.98,14.9,15.120000000000001,15.09,14.97,14.82,14.63,14.44,14.06,N/A,N/A +2013,1,1,1,30,94180,93050,91960,34.04,0,4.17,7.04,8.2,8.85,9.120000000000001,9.18,9.09,8.97,8.68,343.84000000000003,342.43,341.49,340.93,340.92,341.16,341.74,342.26,342.82,13.46,14.200000000000001,14.41,14.450000000000001,14.38,14.280000000000001,14.13,13.98,13.66,N/A,N/A +2013,1,1,2,30,94220,93090,91990,46.6,0,1.8900000000000001,4.07,5.2,6.3,7.25,8.09,8.66,9.14,9.57,9.040000000000001,5.78,3.75,2.88,2.33,1.96,1.57,1.31,1.17,11.39,12.31,12.43,12.52,12.59,12.64,12.66,12.68,12.65,N/A,N/A +2013,1,1,3,30,94280,93140,92030,52.88,0,0.71,1.47,1.99,2.87,3.79,4.75,5.68,6.59,8.14,75.29,32.47,8.5,358.14,352.24,348.40000000000003,346.45,344.77,342.88,9.790000000000001,10.51,10.540000000000001,10.56,10.61,10.67,10.790000000000001,10.89,11.07,N/A,N/A +2013,1,1,4,30,94280,93130,92030,57.63,0,0.72,2.63,4.17,5.66,6.98,8.19,9.13,9.93,10.97,316.99,325.72,330.92,332.28000000000003,333.04,333.57,333.76,333.87,333.67,8.46,9.6,9.99,10.39,10.74,11.040000000000001,11.26,11.42,11.57,N/A,N/A +2013,1,1,5,30,94330,93190,92080,59.800000000000004,0,0.5,1.78,2.98,4.23,5.32,6.34,7.28,8.14,9.44,240.36,279.90000000000003,311.44,319.62,324.35,327.57,328.81,329.61,329.47,7.42,8.47,8.83,9.24,9.57,9.85,10.08,10.290000000000001,10.620000000000001,N/A,N/A +2013,1,1,6,30,94370,93220,92110,55.68,0,0.45,1.42,2.21,3.1,4.03,4.98,5.91,6.8100000000000005,8.35,146.4,230.36,287.11,305.88,314.71,319.51,322.35,324.77,327.43,7.98,8.3,8.21,8.370000000000001,8.63,8.9,9.21,9.47,9.93,N/A,N/A +2013,1,1,7,30,94440,93290,92180,61.480000000000004,0,1.86,4.19,5.34,6.3500000000000005,6.8100000000000005,7.0600000000000005,7.2,7.3100000000000005,7.51,283.34000000000003,303.47,314,316.94,316.85,315.95,315.17,314.58,313.96,6.18,7.49,7.95,8.38,8.63,8.790000000000001,8.83,8.85,8.81,N/A,N/A +2013,1,1,8,30,94480,93330,92210,66.95,0,1.24,2.44,3.2,4.42,5.38,6.19,6.9,7.58,8.84,263.43,292.72,307.90000000000003,311.3,312.47,312.75,312.99,313.08,312.77,5.24,6.44,6.87,7.33,7.62,7.84,7.99,8.120000000000001,8.3,N/A,N/A +2013,1,1,9,30,94500,93340,92220,69.56,0,0.81,2.32,3.47,4.65,5.5200000000000005,6.23,6.92,7.58,8.89,286.31,307.64,321.09000000000003,321.93,321.36,320.38,320.35,319.85,317.55,4.64,6.03,6.51,6.96,7.15,7.26,7.36,7.45,7.640000000000001,N/A,N/A +2013,1,1,10,30,94520,93360,92230,71.77,0,0.67,2.06,3.14,4.33,5.2,5.94,6.63,7.34,8.88,261.51,300.67,322.82,323.79,323.1,321.88,320.02,318.46,316.40000000000003,4.2700000000000005,5.48,5.82,6.140000000000001,6.3100000000000005,6.43,6.53,6.640000000000001,6.8500000000000005,N/A,N/A +2013,1,1,11,30,94550,93380,92260,75.07000000000001,0,1.37,2.83,3.7,4.9,5.78,6.5200000000000005,7.1000000000000005,7.72,9.15,228.3,289.67,316.07,321.05,321.46,320.7,319.37,318.31,316.92,3.79,5.34,5.73,5.97,6.07,6.13,6.19,6.2700000000000005,6.47,N/A,N/A +2013,1,1,12,30,94590,93420,92290,75.01,0,0.73,1.57,2.2,3.21,4.17,5.13,6.08,7.03,8.91,239,291.89,317.36,322.2,323.66,323.93,322.94,321.34000000000003,317.29,3.68,4.84,4.97,4.98,5.0200000000000005,5.0600000000000005,5.14,5.24,5.47,N/A,N/A +2013,1,1,13,30,94640,93470,92340,72.72,0,0.41000000000000003,2.62,4.96,6.72,7.83,8.65,9.02,9.31,9.86,251.27,296.44,331.25,331.41,329.1,326.39,323.77,321.36,317.35,3.79,4.89,5.07,5.26,5.44,5.58,5.68,5.74,5.76,N/A,N/A +2013,1,1,14,30,94710,93550,92420,54.300000000000004,0,4.93,7.41,8.4,9.1,9.46,9.68,9.84,10.06,10.73,323.18,323.40000000000003,322.99,321.79,320.01,318.27,316.93,316.04,315.58,5.63,5.83,5.8500000000000005,5.84,5.8,5.76,5.7,5.64,5.57,N/A,N/A +2013,1,1,15,30,94760,93600,92470,48.300000000000004,0,4.91,6.15,6.63,7.0200000000000005,7.5200000000000005,8.03,8.57,9.040000000000001,9.82,313.04,314.29,315.25,316.09000000000003,316.94,317.77,318.7,319.42,320.24,6.84,6.47,6.3100000000000005,6.15,6.0200000000000005,5.91,5.82,5.74,5.67,N/A,N/A +2013,1,1,16,30,94780,93630,92500,41.5,0,6.42,7.930000000000001,8.48,8.78,8.97,9.11,9.21,9.290000000000001,9.43,327.63,327.69,327.7,327.67,327.6,327.52,327.40000000000003,327.27,326.91,8.28,7.73,7.49,7.2700000000000005,7.0600000000000005,6.88,6.68,6.51,6.16,N/A,N/A +2013,1,1,17,30,94780,93630,92510,34.6,0,6.04,7.44,7.94,8.2,8.370000000000001,8.49,8.57,8.63,8.72,325.33,325.45,325.52,325.54,325.55,325.56,325.55,325.54,325.5,9.42,8.790000000000001,8.52,8.28,8.06,7.86,7.65,7.46,7.07,N/A,N/A +2013,1,1,18,30,94760,93610,92490,31.41,0,4.53,5.55,5.88,6.07,6.19,6.28,6.34,6.38,6.44,325.82,326.25,326.55,326.79,327.01,327.22,327.42,327.61,327.99,10.55,9.91,9.65,9.4,9.18,8.97,8.75,8.55,8.15,N/A,N/A +2013,1,1,19,30,94740,93600,92480,34.29,0,3.36,4.08,4.3,4.44,4.53,4.59,4.64,4.68,4.73,343.38,344.07,344.32,344.48,344.58,344.66,344.71,344.74,344.77,11.35,10.75,10.48,10.24,10.01,9.8,9.58,9.370000000000001,8.96,N/A,N/A +2013,1,1,20,30,94720,93580,92460,33.54,0,3.25,3.9,4.1,4.21,4.28,4.32,4.3500000000000005,4.38,4.41,351.08,350.83,350.75,350.67,350.58,350.51,350.44,350.37,350.23,11.450000000000001,10.88,10.620000000000001,10.38,10.15,9.94,9.72,9.52,9.11,N/A,N/A +2013,1,1,21,30,94680,93530,92420,36.17,0,3.36,4.03,4.19,4.26,4.29,4.32,4.32,4.3100000000000005,4.29,16.17,14.32,13.15,12.14,11.15,10.26,9.34,8.47,6.75,11.290000000000001,10.74,10.5,10.28,10.06,9.86,9.65,9.44,9.040000000000001,N/A,N/A +2013,1,1,22,30,94690,93540,92430,35.2,0,3.13,3.74,3.91,4,4.0600000000000005,4.1,4.11,4.13,4.13,342.42,343.89,344.88,345.7,346.35,346.90000000000003,347.37,347.77,348.39,11.14,10.700000000000001,10.49,10.28,10.07,9.870000000000001,9.66,9.47,9.07,N/A,N/A +2013,1,1,23,30,94700,93550,92430,41.92,0,2.0300000000000002,3.56,3.87,3.99,4.07,4.12,4.14,4.16,4.17,16.3,14.57,13.32,12.22,11.23,10.35,9.53,8.77,7.36,9.98,10.25,10.11,9.92,9.72,9.53,9.33,9.14,8.74,N/A,N/A +2013,1,2,0,30,94750,93600,92480,46.61,0,2.22,3.84,4.14,4.17,4.23,4.28,4.32,4.3500000000000005,4.4,21,21.400000000000002,22.59,24.990000000000002,26.78,28.22,28.85,29.21,28.990000000000002,8.9,9.76,9.81,9.66,9.51,9.36,9.15,8.94,8.52,N/A,N/A +2013,1,2,1,30,94770,93610,92490,48.01,0,2.9,4.78,5.34,5.73,5.91,6,5.96,5.91,5.78,50.980000000000004,54.36,56.35,57.5,58.31,58.92,59.09,59.050000000000004,58.22,8.01,8.44,8.5,8.52,8.46,8.39,8.24,8.08,7.7,N/A,N/A +2013,1,2,2,30,94790,93630,92500,51.93,0,2.89,4.75,5.4,5.95,6.36,6.67,6.78,6.73,6.09,36.88,41.69,44.6,46.86,48,48.63,48.15,47.29,43.52,7.17,7.37,7.36,7.33,7.2700000000000005,7.22,7.140000000000001,7.07,6.91,N/A,N/A +2013,1,2,3,30,94820,93650,92530,55.64,0,2.5,4.5,5.29,5.99,6.57,7.05,7.3,7.4,7.17,24.28,31.18,35.76,39.6,41.550000000000004,42.75,42.72,42.28,40.12,6.38,6.61,6.63,6.63,6.62,6.6000000000000005,6.55,6.48,6.3100000000000005,N/A,N/A +2013,1,2,4,30,94880,93710,92580,58.77,0,1.98,3.85,4.57,5.24,5.83,6.36,6.84,7.28,8.05,61.76,59.53,58.7,58.97,59.64,60.36,61.13,61.82,62.93,5.55,5.72,5.6000000000000005,5.48,5.32,5.18,5.01,4.8500000000000005,4.5200000000000005,N/A,N/A +2013,1,2,5,30,94910,93740,92600,59.49,0,0.81,1.98,2.69,3.43,4.13,4.78,5.36,5.89,6.79,74.5,82.25,84.12,81.14,78.99,77.24,76.34,75.69,74.98,4.99,5.11,4.97,4.79,4.59,4.4,4.21,4.03,3.67,N/A,N/A +2013,1,2,6,30,94940,93770,92630,60.35,0,0.38,1.07,1.58,2.15,2.7600000000000002,3.4,4.03,4.64,5.76,22,65.18,84.11,83.33,82.33,81.37,80.97,80.62,80.05,4.62,4.8100000000000005,4.68,4.48,4.2700000000000005,4.08,3.88,3.68,3.29,N/A,N/A +2013,1,2,7,30,94980,93800,92660,62.09,0,0.56,1.23,1.59,1.95,2.25,2.5300000000000002,2.88,3.27,4.11,103.54,110.05,110.64,106.49000000000001,102.57000000000001,98.97,95.74000000000001,92.98,88.76,4.05,4.3,4.21,4.05,3.83,3.63,3.41,3.2,2.77,N/A,N/A +2013,1,2,8,30,94980,93800,92660,62.59,0,0.64,1.25,1.54,1.83,2.07,2.2800000000000002,2.5,2.75,3.48,100.82000000000001,67.76,54.09,52.44,53.31,54.71,56.550000000000004,58.550000000000004,62.82,3.4,3.5,3.39,3.25,3.06,2.88,2.67,2.47,2.06,N/A,N/A +2013,1,2,9,30,94980,93790,92650,63.2,0,0.55,1.55,2.04,2.2600000000000002,2.5500000000000003,2.83,3.15,3.5,4.29,40.75,38.02,40.63,47.870000000000005,52.050000000000004,55.36,58.04,60.39,64.05,2.9,2.96,2.87,2.77,2.6,2.44,2.24,2.02,1.57,N/A,N/A +2013,1,2,10,30,94960,93780,92630,61.47,0,1.27,2.56,3,3.31,3.5500000000000003,3.74,3.92,4.1,4.51,60.86,60.09,60.24,61.050000000000004,61.39,61.59,61.620000000000005,61.65,61.74,2.49,2.5100000000000002,2.39,2.2600000000000002,2.09,1.93,1.74,1.54,1.1400000000000001,N/A,N/A +2013,1,2,11,30,94980,93800,92650,60.38,0,1.22,2.04,2.29,2.54,2.9,3.25,3.6,3.92,4.5,87.22,92.47,95.13,96.97,94.45,91.46000000000001,88.54,86.43,83.93,2.24,2.32,2.17,1.95,1.71,1.49,1.28,1.07,0.65,N/A,N/A +2013,1,2,12,30,95020,93830,92680,62.38,0,0.48,1.03,1.29,1.54,1.76,1.98,2.2600000000000002,2.5300000000000002,3.04,138.68,130.71,122.29,112.17,107.12,103.46000000000001,101.28,99.95,98.85000000000001,1.83,1.8800000000000001,1.76,1.58,1.36,1.16,0.9400000000000001,0.72,0.28,N/A,N/A +2013,1,2,13,30,95030,93840,92690,64.58,0,1.2,2.24,2.22,1.9000000000000001,1.95,2.04,2.14,2.27,2.57,139.9,134.95,129.01,122.72,109.8,99.63,98.18,97,95.36,1.3800000000000001,1.43,1.33,1.21,1.02,0.8300000000000001,0.62,0.41000000000000003,-0.01,N/A,N/A +2013,1,2,14,30,95060,93870,92710,61,0,1.3900000000000001,2.16,2.23,2.14,2.1,2.1,2.19,2.34,2.7,134.46,129.96,125.75,121.47,115.31,110.03,105.60000000000001,102.24000000000001,98,1.42,1.28,1.12,0.92,0.73,0.54,0.34,0.13,-0.29,N/A,N/A +2013,1,2,15,30,95070,93880,92720,57.2,0,1.55,1.85,1.93,1.97,1.99,2.0100000000000002,2.02,2.0300000000000002,2.07,105.60000000000001,105.21000000000001,105.05,104.96000000000001,104.86,104.78,104.75,104.74000000000001,104.8,2.02,1.61,1.41,1.22,1.01,0.8300000000000001,0.64,0.45,0.07,N/A,N/A +2013,1,2,16,30,95040,93850,92710,51.58,0,1.1,1.33,1.4000000000000001,1.45,1.48,1.51,1.54,1.57,1.6400000000000001,91.45,92.69,93.45,94.03,94.58,95.08,95.57000000000001,96.05,96.98,3.42,2.97,2.74,2.5500000000000003,2.34,2.16,1.97,1.78,1.41,N/A,N/A +2013,1,2,17,30,94980,93810,92670,45.01,0,1.09,1.29,1.35,1.3900000000000001,1.42,1.45,1.47,1.49,1.54,101.16,100.23,99.54,98.98,98.47,98.02,97.57000000000001,97.16,96.4,5.39,4.91,4.67,4.46,4.25,4.0600000000000005,3.86,3.67,3.29,N/A,N/A +2013,1,2,18,30,94930,93760,92630,39.9,0,1.21,1.4000000000000001,1.45,1.47,1.48,1.49,1.5,1.5,1.52,106.05,104.93,104.24000000000001,103.61,103.03,102.52,101.99000000000001,101.5,100.61,7.22,6.71,6.46,6.24,6.0200000000000005,5.82,5.62,5.42,5.04,N/A,N/A +2013,1,2,19,30,94890,93730,92610,36.660000000000004,0,1.37,1.56,1.6,1.61,1.61,1.62,1.61,1.61,1.61,112.48,111.44,110.73,110.10000000000001,109.47,108.92,108.34,107.81,106.78,8.67,8.15,7.890000000000001,7.67,7.44,7.25,7.04,6.84,6.45,N/A,N/A +2013,1,2,20,30,94840,93680,92560,34.63,0,1.37,1.59,1.6400000000000001,1.6600000000000001,1.68,1.69,1.7,1.71,1.72,115.48,114.76,114.26,113.72,113.21000000000001,112.75,112.2,111.69,110.67,9.67,9.15,8.9,8.68,8.46,8.27,8.06,7.86,7.46,N/A,N/A +2013,1,2,21,30,94780,93630,92510,33.52,0,1.24,1.49,1.57,1.61,1.6500000000000001,1.68,1.7,1.72,1.75,122.22,121.32000000000001,120.73,120.17,119.65,119.19,118.72,118.29,117.46000000000001,10.32,9.83,9.59,9.38,9.16,8.96,8.75,8.55,8.15,N/A,N/A +2013,1,2,22,30,94740,93590,92480,33.33,0,1.62,1.99,2.11,2.19,2.24,2.2800000000000002,2.31,2.34,2.37,123.9,124.52,124.72,124.7,124.59,124.48,124.31,124.15,123.76,10.540000000000001,10.120000000000001,9.9,9.700000000000001,9.48,9.290000000000001,9.08,8.89,8.49,N/A,N/A +2013,1,2,23,30,94760,93610,92490,39.2,0,1.93,3.29,3.48,3.5,3.5,3.49,3.47,3.46,3.42,124.60000000000001,122.99000000000001,122.21000000000001,121.79,121.49000000000001,121.25,121.06,120.89,120.53,9.64,9.9,9.77,9.58,9.39,9.21,9.01,8.82,8.43,N/A,N/A +2013,1,3,0,30,94810,93660,92540,44.18,0,2.0300000000000002,3.56,3.94,4.24,4.41,4.51,4.51,4.49,4.39,119.8,119.63,120.34,121.76,122.92,123.86,124.23,124.22,123.41,8.05,8.88,8.98,9.03,8.99,8.92,8.78,8.63,8.27,N/A,N/A +2013,1,3,1,30,94850,93690,92570,44.89,0,2.7,4.36,4.69,5.0200000000000005,5.33,5.61,5.78,5.87,5.8500000000000005,112.78,120.42,125.22,129.49,132.46,134.72,135.52,135.77,134.64000000000001,7.05,7.99,8.17,8.290000000000001,8.31,8.31,8.23,8.13,7.84,N/A,N/A +2013,1,3,2,30,94900,93730,92610,50,0,2.62,4.23,4.61,5.05,5.45,5.78,5.91,5.98,5.98,111.52,119.79,125.25,130.15,132.42000000000002,133.64000000000001,132.69,131.48,128.68,5.88,6.8100000000000005,7.0600000000000005,7.3100000000000005,7.55,7.74,7.82,7.82,7.62,N/A,N/A +2013,1,3,3,30,94950,93780,92650,48.54,0,2.87,5.62,6.8100000000000005,7.98,9.01,9.91,10.6,11.13,11.67,110.11,101.97,98.07000000000001,96.4,96.24000000000001,96.51,97.33,98.22,100.13,4.9,5.55,5.63,5.68,5.73,5.75,5.7700000000000005,5.76,5.68,N/A,N/A +2013,1,3,4,30,94980,93810,92680,49.18,0,3.0500000000000003,5.8,6.97,8.06,8.950000000000001,9.72,10.25,10.620000000000001,10.86,108.91,104.14,101.79,100.82000000000001,101.13,101.79,102.93,103.99000000000001,105.54,4.33,4.93,5.01,5.0600000000000005,5.09,5.13,5.17,5.2,5.23,N/A,N/A +2013,1,3,5,30,95030,93850,92710,55.7,0,2.27,4.5200000000000005,5.53,6.59,7.57,8.47,9.200000000000001,9.790000000000001,10.51,136.59,122.86,115.51,111.04,109.38,108.58,108.86,109.37,110.7,3.09,3.9,4,4.04,4.0600000000000005,4.07,4.08,4.09,4.1,N/A,N/A +2013,1,3,6,30,95080,93900,92760,59.11,0,0.09,0.98,2.27,3.5300000000000002,4.76,5.99,7.05,7.930000000000001,9.09,257.83,183.95000000000002,114.62,110.7,109.08,108.14,108.34,108.81,110.11,2.36,2.92,2.92,2.94,3.0100000000000002,3.09,3.19,3.29,3.42,N/A,N/A +2013,1,3,7,30,95140,93960,92810,60.35,0,0.13,0.92,1.98,3.06,4.09,5.11,6.0200000000000005,6.8,7.8500000000000005,136.77,125.84,116.45,112.96000000000001,111.2,110,109.69,109.64,109.86,2.2600000000000002,2.93,2.9,2.84,2.8000000000000003,2.79,2.84,2.92,3.1,N/A,N/A +2013,1,3,8,30,95180,94000,92850,62.71,0,0.66,1.3,1.69,2.25,2.69,3.11,3.63,4.2,5.38,61.83,68.38,76.56,88.65,95.60000000000001,100.51,102.38,103.58,104.49000000000001,1.78,2.5500000000000003,2.5300000000000002,2.44,2.37,2.32,2.27,2.24,2.31,N/A,N/A +2013,1,3,9,30,95190,94000,92850,66.99,0,1.41,1.81,1.84,1.98,2.3000000000000003,2.65,3.0500000000000003,3.48,4.3500000000000005,49.35,71.67,85.65,99.18,102.91,104.76,104.92,104.59,102.82000000000001,0.84,1.77,1.98,2.17,2.24,2.27,2.25,2.25,2.31,N/A,N/A +2013,1,3,10,30,95220,94030,92880,70.46000000000001,0,2.46,2.91,2.46,2.04,2.04,2.14,2.47,2.84,3.69,31.7,46.82,61.04,75.54,84.65,91.10000000000001,94.01,95.32000000000001,95.08,0.17,1.16,1.44,1.71,1.73,1.71,1.67,1.67,1.73,N/A,N/A +2013,1,3,11,30,95240,94040,92890,73.31,0,1.84,2.37,2.13,1.8800000000000001,1.85,1.92,2.2,2.5500000000000003,3.41,32.18,42.82,51.21,59.08,69.47,77.4,82.07000000000001,84.89,87.29,-0.38,0.54,0.75,0.9,1.06,1.16,1.18,1.21,1.29,N/A,N/A +2013,1,3,12,30,95280,94090,92930,75.44,0,2.06,2.82,2.74,2.66,2.83,3.0500000000000003,3.39,3.79,4.69,24.09,37.43,47.99,58.71,66.15,71.8,75.07000000000001,77.23,79.47,-0.51,0.41000000000000003,0.64,0.84,0.9,0.9400000000000001,0.9400000000000001,0.9500000000000001,1,N/A,N/A +2013,1,3,13,30,95330,94130,92970,71.08,0,1.33,1.68,1.76,1.98,2.3000000000000003,2.66,3.12,3.59,4.61,2.5100000000000002,24.69,39.31,54.58,64.85,72.81,76.74,79.24,81.69,-0.31,0.33,0.37,0.32,0.4,0.45,0.46,0.45,0.46,N/A,N/A +2013,1,3,14,30,95380,94180,93030,61.35,0,1.37,2.05,2.29,2.4,2.6,2.84,3.17,3.56,4.39,356.40000000000003,13.63,25.580000000000002,35.730000000000004,45.89,54.45,60.83,65.36,70.91,0.47000000000000003,0.59,0.66,0.68,0.74,0.78,0.78,0.72,0.54,N/A,N/A +2013,1,3,15,30,95410,94220,93060,54.44,0,1.59,1.78,1.86,1.99,2.34,2.71,3.0500000000000003,3.47,4.37,17.47,21.76,25.84,30.77,39.14,46.92,51.63,55.85,62.29,1.82,1.53,1.4000000000000001,1.27,1.19,1.09,0.9500000000000001,0.81,0.5700000000000001,N/A,N/A +2013,1,3,16,30,95450,94260,93110,41.77,0,2.7600000000000002,3.43,3.66,3.81,3.92,4.01,4.08,4.14,4.26,67.02,68.02,68.67,69.21000000000001,69.7,70.15,70.58,71,71.79,3.97,3.5300000000000002,3.3200000000000003,3.11,2.9,2.7,2.5,2.31,1.9100000000000001,N/A,N/A +2013,1,3,17,30,95440,94260,93110,38.13,0,3.29,4.03,4.26,4.4,4.49,4.57,4.63,4.68,4.76,83.72,84.32000000000001,84.66,84.92,85.12,85.31,85.48,85.64,85.91,4.89,4.3100000000000005,4.05,3.8200000000000003,3.59,3.38,3.17,2.97,2.57,N/A,N/A +2013,1,3,18,30,95430,94250,93100,37.62,0,4.26,5.21,5.49,5.64,5.73,5.8,5.8500000000000005,5.89,5.94,93.77,93.88,93.9,93.88,93.84,93.8,93.75,93.69,93.55,5.5,4.89,4.62,4.39,4.16,3.95,3.74,3.5300000000000002,3.12,N/A,N/A +2013,1,3,19,30,95390,94220,93070,36.910000000000004,0,4.03,4.88,5.14,5.29,5.38,5.45,5.5,5.54,5.6000000000000005,101.75,99.54,98.23,97.16,96.23,95.42,94.67,93.98,92.7,6.33,5.72,5.46,5.22,4.99,4.78,4.5600000000000005,4.3500000000000005,3.94,N/A,N/A +2013,1,3,20,30,95360,94190,93050,36.27,0,3.52,4.3100000000000005,4.57,4.74,4.86,4.94,5.01,5.07,5.15,98.4,97.9,97.58,97.25,96.95,96.68,96.43,96.19,95.73,6.8100000000000005,6.29,6.05,5.83,5.6000000000000005,5.4,5.19,4.98,4.58,N/A,N/A +2013,1,3,21,30,95380,94200,93060,45.02,0,3.7600000000000002,4.6000000000000005,4.8500000000000005,4.97,5.0600000000000005,5.13,5.18,5.22,5.3,96.23,97.28,97.78,98.17,98.56,98.9,99.25,99.58,100.24000000000001,5.73,5.23,4.99,4.7700000000000005,4.54,4.33,4.11,3.9,3.47,N/A,N/A +2013,1,3,22,30,95440,94250,93090,79.04,1.8,4.8500000000000005,5.94,6.22,6.3500000000000005,6.390000000000001,6.41,6.4,6.37,6.28,129.16,127.48,126.63000000000001,125.9,125.2,124.58,123.94,123.34,122.16,2.54,2.09,1.87,1.6600000000000001,1.44,1.23,1.02,0.8200000000000001,0.43,N/A,N/A +2013,1,3,23,30,95430,94250,93090,73.15,0,3.96,4.96,5.24,5.4,5.51,5.59,5.66,5.73,5.89,105.13,104.15,103.53,102.95,102.31,101.71000000000001,101.07000000000001,100.36,98.66,3.0300000000000002,2.66,2.46,2.27,2.06,1.87,1.68,1.48,1.1,N/A,N/A +2013,1,4,0,30,95450,94260,93110,66.64,0,4.23,5.44,5.87,6.21,6.49,6.7,6.79,7.01,7.5,75.09,74.91,74.91,74.98,75.13,75.25,75.31,75.49,75.67,3.63,3.33,3.16,3,2.81,2.63,2.44,2.27,2.0100000000000002,N/A,N/A +2013,1,4,1,30,95450,94260,93110,66.13,0,3.19,4.68,5.2,5.61,5.92,6.19,6.41,6.62,6.97,59.63,60.42,61.13,61.89,62.88,63.870000000000005,65.04,66.29,69.13,3.33,3.2,3.06,2.91,2.74,2.58,2.41,2.2600000000000002,1.98,N/A,N/A +2013,1,4,2,30,95430,94250,93100,66.72,0,3.13,4.83,5.49,6.0200000000000005,6.46,6.82,7.1000000000000005,7.2700000000000005,7.24,56.730000000000004,57.27,57.94,58.79,59.99,61.230000000000004,62.79,64.54,68.79,3.0300000000000002,3.02,2.95,2.86,2.77,2.69,2.62,2.5500000000000003,2.42,N/A,N/A +2013,1,4,3,30,95440,94260,93110,58.09,0,2.93,4.07,4.49,4.79,5.12,5.43,5.73,5.99,6.390000000000001,65.92,67.44,68.46000000000001,69.44,71.14,72.96000000000001,75.2,77.51,82.05,3.67,3.42,3.2600000000000002,3.11,2.95,2.82,2.7,2.6,2.38,N/A,N/A +2013,1,4,4,30,95450,94260,93110,54.51,0,2.81,3.8000000000000003,4.15,4.4,4.6000000000000005,4.75,4.87,4.97,5.11,88.13,90.15,91.35000000000001,92.42,93.33,94.13,94.88,95.58,96.92,3.7600000000000002,3.47,3.29,3.09,2.88,2.67,2.46,2.25,1.81,N/A,N/A +2013,1,4,5,30,95460,94280,93120,57.97,0,2.54,3.27,3.5,3.66,3.77,3.86,3.94,4,4.1,93.96000000000001,96.39,97.79,98.93,99.93,100.8,101.60000000000001,102.33,103.63,3.18,2.86,2.66,2.45,2.23,2.02,1.8,1.58,1.1400000000000001,N/A,N/A +2013,1,4,6,30,95510,94310,93150,92.89,0,2.71,3.29,3.43,3.5,3.5500000000000003,3.61,3.7,3.7600000000000002,3.92,120.61,121.7,122.31,122.7,122.85000000000001,122.85000000000001,122.58,122.43,121.4,0.68,0.36,0.2,0.06,-0.08,-0.2,-0.34,-0.5,-0.81,N/A,N/A +2013,1,4,7,30,95530,94330,93170,94.32000000000001,1.8,2.2,2.68,2.86,3,3.3200000000000003,3.61,3.83,4.09,4.53,115.52,115.66,115.49000000000001,115.09,114.37,113.46000000000001,112.12,110.08,105.33,0.54,0.24,0.1,-0.02,-0.16,-0.29,-0.46,-0.59,-0.8300000000000001,N/A,N/A +2013,1,4,8,30,95520,94320,93160,88.29,0,2.27,2.7600000000000002,2.9,3,3.16,3.31,3.48,3.7,4.08,80.55,78.77,77.48,76.18,74.43,73,72.06,71.52,72.48,0.6900000000000001,0.36,0.19,0.04,-0.09,-0.22,-0.37,-0.5,-0.79,N/A,N/A +2013,1,4,9,30,95500,94300,93140,92.33,0,3.34,4.16,4.42,4.61,4.82,5.01,5.16,5.24,5.34,88.18,87.7,87.4,87.14,86.84,86.61,86.48,86.66,87.87,0.32,0.03,-0.12,-0.27,-0.43,-0.5700000000000001,-0.74,-0.88,-1.1300000000000001,N/A,N/A +2013,1,4,10,30,95500,94300,93140,89.05,1.8,2.58,3.25,3.47,3.63,3.7600000000000002,3.9,4.0600000000000005,4.3500000000000005,4.97,98.42,98.04,97.75,97.46000000000001,97.13,96.84,96.55,96.27,96.59,0.54,0.22,0.05,-0.12,-0.3,-0.47000000000000003,-0.63,-0.8,-1.1300000000000001,N/A,N/A +2013,1,4,11,30,95510,94320,93150,87.53,0,1.57,2,2.18,2.33,2.5100000000000002,2.72,2.98,3.24,3.81,102.03,101.21000000000001,100.47,99.68,98.65,97.68,96.72,96.03,95.63,0.72,0.43,0.25,0.07,-0.11,-0.27,-0.44,-0.61,-0.96,N/A,N/A +2013,1,4,12,30,95530,94330,93170,90.47,0,1.16,1.46,1.62,1.79,2.18,2.57,2.87,3.2,3.84,108.44,107.59,106.88,106.02,103.83,101.74000000000001,100.45,99.41,98.41,0.62,0.33,0.17,0.01,-0.11,-0.24,-0.4,-0.56,-0.88,N/A,N/A +2013,1,4,13,30,95530,94330,93170,92.39,0,0.92,1.12,1.31,1.59,1.86,2.15,2.47,2.77,3.35,103.85000000000001,105.86,105.36,103.27,100.52,97.87,95.44,93.7,91.78,0.5,0.22,0.07,-0.05,-0.19,-0.33,-0.49,-0.65,-0.9400000000000001,N/A,N/A +2013,1,4,14,30,95540,94340,93180,93.19,0,0.68,0.97,1.18,1.42,1.71,2,2.31,2.65,3.3000000000000003,84.89,87.99,90.22,92.41,93.61,94.5,94.94,95.03,95.15,0.35000000000000003,0.11,0,-0.1,-0.26,-0.4,-0.55,-0.72,-1.04,N/A,N/A +2013,1,4,15,30,95550,94350,93190,83.82000000000001,0,2.24,2.83,3.04,3.17,3.2600000000000002,3.34,3.4,3.46,3.56,110.88,110.87,110.77,110.59,110.36,110.14,109.89,109.64,109.10000000000001,1.1400000000000001,0.6900000000000001,0.47000000000000003,0.28,0.08,-0.11,-0.29,-0.48,-0.84,N/A,N/A +2013,1,4,16,30,95530,94330,93170,76.22,0,2.06,2.57,2.74,2.84,2.91,2.97,3.02,3.0500000000000003,3.11,129.73,129.59,129.43,129.24,128.99,128.77,128.53,128.29,127.79,1.93,1.42,1.18,0.97,0.75,0.55,0.35000000000000003,0.16,-0.22,N/A,N/A +2013,1,4,17,30,95490,94300,93140,73.75,0,1.43,1.78,1.9100000000000001,1.99,2.06,2.11,2.15,2.2,2.27,114.32000000000001,115.71000000000001,116.28,116.63,116.91,117.15,117.34,117.52,117.85000000000001,2.46,1.98,1.74,1.53,1.31,1.12,0.91,0.72,0.33,N/A,N/A +2013,1,4,18,30,95440,94260,93100,66.19,0,1.71,2.04,2.14,2.2,2.23,2.2600000000000002,2.27,2.29,2.31,157.39000000000001,155.47,154.16,153.02,151.92000000000002,150.95000000000002,149.98,149.07,147.34,3.44,2.93,2.68,2.46,2.24,2.04,1.83,1.6300000000000001,1.24,N/A,N/A +2013,1,4,19,30,95400,94210,93060,67.44,0,2.38,2.7600000000000002,2.82,2.83,2.82,2.8000000000000003,2.77,2.74,2.68,93.89,97.24000000000001,99.42,101.31,103.21000000000001,104.91,106.68,108.4,111.87,3.7,3.21,2.98,2.77,2.56,2.36,2.16,1.96,1.57,N/A,N/A +2013,1,4,20,30,95340,94160,93010,66.84,0,1.94,2.33,2.43,2.48,2.5,2.5100000000000002,2.52,2.52,2.5100000000000002,90,93.95,96.28,98.16,99.96000000000001,101.57000000000001,103.19,104.81,108.09,3.99,3.52,3.29,3.09,2.87,2.68,2.48,2.2800000000000002,1.9000000000000001,N/A,N/A +2013,1,4,21,30,95300,94120,92970,68.71000000000001,0,1.51,1.8800000000000001,2.0100000000000002,2.1,2.18,2.24,2.3000000000000003,2.35,2.44,94.53,100.35000000000001,103.4,105.5,107.19,108.63,109.94,111.12,113.29,4.13,3.71,3.5,3.3000000000000003,3.09,2.9,2.7,2.5,2.11,N/A,N/A +2013,1,4,22,30,95270,94090,92940,63.64,0,1.48,1.8800000000000001,2.02,2.11,2.17,2.22,2.2600000000000002,2.29,2.34,156.88,159.38,160.56,161.37,162.03,162.59,163.09,163.56,164.44,4.69,4.28,4.07,3.87,3.66,3.47,3.27,3.0700000000000003,2.68,N/A,N/A +2013,1,4,23,30,95250,94070,92920,76.69,0,2.1,2.99,3.0700000000000003,3.09,3.0500000000000003,3.02,2.99,2.93,2.8000000000000003,130.94,131.99,133.26,134.75,136.79,138.67000000000002,140.46,143.08,149.62,3.79,3.7,3.54,3.37,3.18,3.0100000000000002,2.82,2.64,2.27,N/A,N/A +2013,1,5,0,30,95270,94090,92940,77.48,0,2.5500000000000003,3.31,3.22,3.0500000000000003,2.75,2.5,2.37,2.25,2.06,159.17000000000002,161.13,165.67000000000002,172.79,176.24,178.51,180.86,183.46,188.98,3.2,3.47,3.4,3.14,2.97,2.82,2.64,2.46,2.09,N/A,N/A +2013,1,5,1,30,95270,94080,92930,86.74,0,2.33,3.2800000000000002,3.2,3.08,3.0300000000000002,3,2.97,2.93,2.82,184.36,194.79,200.62,204.87,206.95000000000002,208.32,209.33,210.16,211.37,2.49,3.46,3.49,3.27,3.04,2.84,2.63,2.42,2.0100000000000002,N/A,N/A +2013,1,5,2,30,95270,94090,92940,89.27,0,1.49,1.99,2.04,2.21,2.37,2.5100000000000002,2.63,2.73,2.86,168.68,181.33,189.52,197.51,203.1,207.44,209.92000000000002,211.93,214.27,2.0100000000000002,2.77,2.82,2.79,2.7,2.61,2.48,2.34,2.0100000000000002,N/A,N/A +2013,1,5,3,30,95260,94070,92920,93.31,0,1.21,1.6,1.67,1.87,2.1,2.31,2.49,2.64,2.86,180.51,199.63,208.1,213.64000000000001,215.21,215.78,215.36,214.84,213.91,1.47,2.19,2.23,2.19,2.1,2.02,1.9100000000000001,1.8,1.55,N/A,N/A +2013,1,5,4,30,95240,94050,92900,98.35000000000001,0,0.56,1.06,1.34,1.71,2.05,2.37,2.67,2.91,3.34,197.04,216.91,222.68,220.63,218.51,216.63,215.46,214.76,213.89000000000001,0.75,1.43,1.51,1.56,1.59,1.61,1.6,1.57,1.41,N/A,N/A +2013,1,5,5,30,95230,94040,92880,102.83,0,0.63,0.92,1.03,1.23,1.48,1.74,2.0100000000000002,2.29,2.88,154.29,178.96,191.34,200.81,205.07,207.94,209.17000000000002,209.99,210.71,0.17,0.86,0.92,0.9400000000000001,0.91,0.89,0.86,0.84,0.81,N/A,N/A +2013,1,5,6,30,95230,94040,92880,106.62,0,1.42,2.25,2.4,2.52,2.63,2.72,2.81,2.9,3.04,162.11,162.21,163.52,165.70000000000002,169.03,172.27,175.73,178.93,184.78,-0.14,0.76,0.9,0.96,0.9400000000000001,0.9,0.8300000000000001,0.73,0.51,N/A,N/A +2013,1,5,7,30,95230,94030,92880,110,0,1.73,3.52,4.08,4.39,4.48,4.5200000000000005,4.48,4.43,4.39,192.28,196.56,199.77,202.71,205.04,206.93,208.47,209.76,211.8,-0.6900000000000001,0.32,0.59,0.8,0.9,0.96,0.9400000000000001,0.88,0.68,N/A,N/A +2013,1,5,8,30,95240,94040,92880,110,0,0.09,0.6900000000000001,1.4000000000000001,1.97,2.47,2.95,3.37,3.73,4.25,215.86,213.67000000000002,211.44,210.94,211.05,211.24,211.43,211.55,211.82,-1.6400000000000001,-0.8300000000000001,-0.72,-0.61,-0.52,-0.44,-0.35000000000000003,-0.27,-0.16,N/A,N/A +2013,1,5,9,30,95230,94030,92870,110,0,0.92,1.79,2.15,2.49,2.87,3.23,3.6,3.91,4.42,214.88,225.47,227.82,225.19,221.99,219.27,217.66,216.87,216.83,-1.94,-1.06,-0.91,-0.81,-0.68,-0.55,-0.42,-0.32,-0.19,N/A,N/A +2013,1,5,10,30,95210,94010,92850,110,0,1.6400000000000001,2.58,2.83,3.1,3.41,3.7,3.96,4.19,4.53,221,223.33,223.05,221.4,219.55,218.07,217.32,217.06,217.56,-2.0300000000000002,-1.1300000000000001,-0.9,-0.67,-0.47000000000000003,-0.31,-0.2,-0.15,-0.14,N/A,N/A +2013,1,5,11,30,95210,94020,92860,110,0,2.43,4.19,4.6000000000000005,4.8500000000000005,4.95,5.0200000000000005,5.08,5.14,5.28,200.03,202.35,204.43,206.76,209.91,212.77,215.32,217.70000000000002,221.94,-1.35,0,0.34,0.5700000000000001,0.64,0.66,0.59,0.51,0.4,N/A,N/A +2013,1,5,12,30,95240,94030,92870,110,0,0.39,1.1400000000000001,1.68,2.22,2.7,3.14,3.52,3.87,4.5,160.95000000000002,191.49,208.32,212.32,214.4,216.05,217.43,218.8,221.48000000000002,-2.2600000000000002,-1.3900000000000001,-1.22,-1.04,-0.89,-0.78,-0.72,-0.7000000000000001,-0.72,N/A,N/A +2013,1,5,13,30,95220,94020,92860,110,0,1.07,2.22,2.7,3.09,3.35,3.5700000000000003,3.73,3.86,4.08,198.59,208.84,213.75,216.13,218,219.49,220.44,221.25,223.14000000000001,-1.97,-1.02,-0.89,-0.79,-0.76,-0.76,-0.78,-0.8,-0.77,N/A,N/A +2013,1,5,14,30,95220,94020,92860,110,0,0.64,0.53,0.53,0.64,0.92,1.24,1.54,1.87,2.59,101.41,139.56,170.28,210.78,224.64000000000001,234.25,235.78,235.96,237.06,-2.84,-2.08,-1.87,-1.7,-1.46,-1.28,-1.17,-1.08,-0.78,N/A,N/A +2013,1,5,15,30,95220,94020,92860,98.25,0,1.07,0.98,0.72,0.49,0.65,0.91,1.35,1.83,2.75,73.24,77.42,96.68,117.25,161.31,202.9,220.43,231.99,243.88,-1.46,-1.6600000000000001,-1.6400000000000001,-1.55,-1.33,-1.09,-0.81,-0.39,0.55,N/A,N/A +2013,1,5,16,30,95180,93990,92840,77.82000000000001,0,0.2,0.25,0.27,0.27,0.31,0.38,0.58,0.97,2.06,143.77,145.35,149.84,157.25,170.39000000000001,184.14000000000001,201.3,218.21,244.79,2.14,1.76,1.58,1.42,1.26,1.1300000000000001,1.02,1.1,1.76,N/A,N/A +2013,1,5,17,30,95120,93950,92810,64.32000000000001,0,0.16,0.17,0.17,0.17,0.18,0.19,0.22,0.26,0.41000000000000003,347.71,349.19,344.66,336.57,323.58,310.72,295.92,283.43,264.51,4.9,4.48,4.26,4.07,3.88,3.71,3.5300000000000002,3.35,3.02,N/A,N/A +2013,1,5,18,30,95100,93930,92790,56,0,0.42,0.44,0.42,0.41000000000000003,0.39,0.38,0.38,0.39,0.43,293.55,292.45,291.28000000000003,289.52,286.74,283.90000000000003,279.91,275.76,266.11,6.890000000000001,6.45,6.23,6.03,5.82,5.64,5.45,5.2700000000000005,4.91,N/A,N/A +2013,1,5,19,30,95050,93890,92770,47.79,0,0.97,1.07,1.06,1.05,1.03,1.03,1.03,1.03,1.07,292.65000000000003,291.25,290.2,289.08,287.81,286.61,285.18,283.79,280.86,8.67,8.19,7.96,7.75,7.55,7.37,7.17,6.99,6.62,N/A,N/A +2013,1,5,20,30,95010,93860,92730,44.5,0,0.68,0.75,0.76,0.77,0.77,0.78,0.79,0.81,0.85,311.58,306.22,302.8,299.63,296.55,293.81,291.07,288.54,283.77,9.94,9.47,9.24,9.03,8.82,8.63,8.43,8.24,7.86,N/A,N/A +2013,1,5,21,30,94970,93820,92710,42.86,0,0.33,0.3,0.27,0.23,0.2,0.16,0.14,0.13,0.15,64.93,63.57,61.34,58.4,51.620000000000005,44.47,29.14,12.85,336.40000000000003,10.790000000000001,10.36,10.15,9.94,9.74,9.55,9.35,9.16,8.78,N/A,N/A +2013,1,5,22,30,94950,93800,92690,42.31,0,0.62,0.67,0.65,0.62,0.58,0.55,0.5,0.46,0.36,106.15,105.19,104.91,104.92,104.98,105.04,105.03,104.38,95.85000000000001,11.16,10.8,10.61,10.41,10.21,10.03,9.83,9.64,9.25,N/A,N/A +2013,1,5,23,30,94960,93810,92690,57.39,0,0.27,0.55,0.61,0.61,0.74,0.91,1.1500000000000001,1.41,1.95,31.45,34.29,30.17,21.04,9.66,357.58,350.89,345.03000000000003,337.45,9.69,10.51,10.48,10.34,10.17,10.01,9.83,9.65,9.3,N/A,N/A +2013,1,6,0,30,95010,93860,92740,66.05,0,0.7000000000000001,1.87,2.48,2.98,3.35,3.65,3.87,4.05,4.3,22.03,0.91,349.09000000000003,343.03000000000003,338.71,335.12,332.02,329.13,323.74,7.43,8.6,8.82,9.02,9.120000000000001,9.18,9.17,9.14,9,N/A,N/A +2013,1,6,1,30,95040,93870,92750,58.09,0,0.89,1.77,2.17,2.6,3.04,3.47,3.91,4.3100000000000005,4.98,291.1,290.19,291.88,295.51,299.79,303.87,306.95,309.31,311.48,6.8500000000000005,7.96,8.14,8.32,8.49,8.65,8.8,8.92,9.03,N/A,N/A +2013,1,6,2,30,95070,93900,92770,68.94,0,1.24,1.87,2.11,2.5100000000000002,3.02,3.5700000000000003,4.14,4.71,5.78,246.4,265.33,277.06,288.86,294.90000000000003,299.36,301.75,303.55,305.48,5.46,6.43,6.61,6.84,7.05,7.23,7.41,7.59,7.9,N/A,N/A +2013,1,6,3,30,95110,93940,92810,73.58,0,0.75,1.62,2.0100000000000002,2.38,2.8000000000000003,3.22,3.68,4.12,4.9,271.38,279.38,285.49,291.55,297.16,302.23,306.03000000000003,309.16,313.68,3.77,5.18,5.57,5.86,6.13,6.37,6.59,6.79,7.1000000000000005,N/A,N/A +2013,1,6,4,30,95150,93970,92840,78.11,0,0.11,0.61,1.1,1.57,2.06,2.56,3.06,3.54,4.43,143.86,238.51,298.05,309.08,313.95,317.58,319.69,321.37,323.64,2.71,4.09,4.39,4.55,4.72,4.88,5.05,5.22,5.53,N/A,N/A +2013,1,6,5,30,95170,93990,92850,79.9,0,1.09,2.07,2.5,2.98,3.54,4.09,4.64,5.17,6.12,263.32,288.71,301.11,309.53000000000003,314.27,318.03000000000003,320.36,321.93,323.37,2.65,3.79,3.96,4.05,4.19,4.3,4.39,4.49,4.78,N/A,N/A +2013,1,6,6,30,95230,94050,92900,82.48,0,1.06,2.14,2.75,3.5300000000000002,4.42,5.3100000000000005,6.15,6.83,7.73,247,282.13,299.88,312.55,317.94,321.85,323.46,324.17,324.31,2.56,3.16,3.11,3.08,3.21,3.37,3.58,3.8200000000000003,4.33,N/A,N/A +2013,1,6,7,30,95280,94100,92950,88.64,0,1.29,2.1,2.68,3.66,4.41,5.13,5.84,6.51,7.640000000000001,256.4,306.6,323.35,329.67,329.64,328.97,328.07,327.11,325.25,1.61,2.5500000000000003,2.84,3.16,3.25,3.31,3.37,3.43,3.6,N/A,N/A +2013,1,6,8,30,95310,94120,92970,90.28,0,1.82,2.61,3.38,4.93,5.82,6.61,7.42,8.15,9.26,246.58,300.69,317.38,324.59000000000003,326.40000000000003,327.32,327.53000000000003,327.24,325.87,1.35,1.3,1.46,1.96,2.17,2.32,2.46,2.68,3.25,N/A,N/A +2013,1,6,9,30,95340,94150,93000,99.63,0,1.75,2.52,3.23,4.5200000000000005,5.7,6.8100000000000005,7.79,8.67,10.08,247.41,292.67,309.40000000000003,321.09000000000003,323.53000000000003,324.89,325.41,325.71,326.22,-0.24,0.9,1.16,1.34,1.48,1.59,1.6600000000000001,1.77,2.32,N/A,N/A +2013,1,6,10,30,95360,94160,93010,106.24000000000001,0,2.41,4.39,5.44,6.8,7.88,8.68,9.03,8.78,8.02,258.22,300.43,316.12,323.46,326.24,328.32,329.73,334.32,344.32,-0.66,0.32,0.55,0.77,1.08,1.34,1.58,1.9000000000000001,2.38,N/A,N/A +2013,1,6,11,30,95400,94200,93040,105.57000000000001,0,2.29,5.18,6.21,6.91,7.34,7.34,6.7,6.37,6.13,293.6,312.65000000000003,320.71,324.45,328.77,335.59000000000003,346.58,354.68,6.83,-0.93,0.25,0.56,0.8200000000000001,1.07,1.33,1.67,1.8,1.81,N/A,N/A +2013,1,6,12,30,95430,94230,93080,84.45,0,3.94,6.5200000000000005,7.1000000000000005,7.38,6.33,5.69,5.51,5.45,5.62,306.45,313.13,316.66,319.21,334.74,346.04,354.42,1.01,10.67,-0.14,0.75,1.05,1.27,1.71,1.98,2,1.95,1.71,N/A,N/A +2013,1,6,13,30,95470,94270,93120,79.84,0,4.0200000000000005,6.7,7.17,7.23,6.93,6.58,6.13,6.03,6.19,311.61,316.73,319.93,322.51,329.2,338.78000000000003,353.92,2.33,11.59,-0.22,0.63,0.87,1.04,1.18,1.35,1.59,1.59,1.31,N/A,N/A +2013,1,6,14,30,95500,94300,93140,74.98,0,3.77,5.7,6.36,6.8500000000000005,7.04,6.8,6,5.78,5.88,302.75,308.69,313.75,318.88,323.83,333.39,349.66,359.24,10.86,-0.32,-0.2,-0.09,0.05,0.22,0.48,0.92,1.04,0.89,N/A,N/A +2013,1,6,15,30,95510,94310,93150,64.8,0,3.35,3.94,4.01,4,4.03,4.04,3.98,4.01,4.34,312.03000000000003,314.98,317.09000000000003,319.07,323.41,328.41,334.98,342.46,355.81,1.69,1.31,1.1400000000000001,1,0.86,0.75,0.67,0.65,0.72,N/A,N/A +2013,1,6,16,30,95470,94290,93140,52.95,0,2.99,3.56,3.67,3.72,3.71,3.7,3.67,3.63,3.5500000000000003,319.48,323.1,325.35,327.3,329.51,331.58,333.82,336.25,341.6,4.19,3.7,3.48,3.29,3.09,2.92,2.74,2.56,2.23,N/A,N/A +2013,1,6,17,30,95440,94260,93120,43.410000000000004,0,2.2800000000000002,2.79,2.94,3.0300000000000002,3.1,3.15,3.19,3.22,3.29,342.3,344.88,346.32,347.51,348.62,349.62,350.61,351.57,353.5,6.63,6.13,5.9,5.69,5.48,5.29,5.09,4.9,4.53,N/A,N/A +2013,1,6,18,30,95390,94220,93090,38.160000000000004,0,2.19,2.64,2.7600000000000002,2.84,2.88,2.92,2.95,2.97,3.02,335.32,338.11,339.76,341.14,342.41,343.53000000000003,344.59000000000003,345.56,347.37,8.3,7.7700000000000005,7.53,7.3100000000000005,7.1000000000000005,6.9,6.7,6.5,6.12,N/A,N/A +2013,1,6,19,30,95340,94180,93060,34.42,0,2.04,2.46,2.57,2.63,2.68,2.71,2.73,2.75,2.7800000000000002,337.37,339.53000000000003,340.81,341.92,342.97,343.90000000000003,344.82,345.68,347.34000000000003,9.76,9.23,8.98,8.76,8.540000000000001,8.35,8.14,7.94,7.55,N/A,N/A +2013,1,6,20,30,95280,94130,93000,29.48,0,1.53,1.84,1.92,1.97,2.0100000000000002,2.04,2.06,2.08,2.11,11.61,11.33,11.16,11.06,10.950000000000001,10.84,10.72,10.61,10.370000000000001,10.870000000000001,10.370000000000001,10.13,9.91,9.69,9.5,9.290000000000001,9.09,8.69,N/A,N/A +2013,1,6,21,30,95220,94070,92950,27.54,0,1.49,1.79,1.87,1.92,1.95,1.98,1.99,2.0100000000000002,2.0300000000000002,33.08,31.93,31.21,30.62,30.02,29.46,28.87,28.310000000000002,27.2,11.42,10.96,10.73,10.53,10.31,10.120000000000001,9.91,9.72,9.32,N/A,N/A +2013,1,6,22,30,95160,94010,92890,27.82,0,1.35,1.6600000000000001,1.75,1.81,1.84,1.87,1.8900000000000001,1.9100000000000001,1.93,51.230000000000004,49.29,48.19,47.36,46.58,45.87,45.14,44.44,43,11.48,11.11,10.91,10.72,10.51,10.33,10.120000000000001,9.93,9.540000000000001,N/A,N/A +2013,1,6,23,30,95140,93990,92870,41.08,0,0.49,0.63,0.71,0.9500000000000001,1.19,1.43,1.61,1.78,2.05,281.68,335.59000000000003,1.72,27.29,38.800000000000004,45.980000000000004,48.910000000000004,51.04,52.910000000000004,9.94,10.66,10.65,10.59,10.47,10.34,10.17,9.99,9.620000000000001,N/A,N/A +2013,1,7,0,30,95150,93990,92870,52.99,0,0.63,0.85,0.89,1.01,1.21,1.45,1.72,1.99,2.49,187.44,187.12,178.99,164.28,149.28,134.66,124.16,115.16,102.96000000000001,7.44,8.88,9.18,9.36,9.36,9.33,9.290000000000001,9.23,9.11,N/A,N/A +2013,1,7,1,30,95160,93990,92870,52.230000000000004,0,0.8,1.31,1.45,1.6400000000000001,1.92,2.23,2.58,2.91,3.46,154.45000000000002,149.83,145.61,140.51,134.18,128,123.60000000000001,120.15,116.02,6.42,7.5,7.67,7.8,7.94,8.06,8.13,8.17,8.17,N/A,N/A +2013,1,7,2,30,95150,93980,92850,61.85,0,0.39,0.97,1.3900000000000001,1.94,2.48,3.0100000000000002,3.5300000000000002,4,4.8100000000000005,221.4,176.22,151.3,135.78,128.57,123.55,121.04,119.18,117.12,4.44,6.3,6.74,6.92,7.07,7.21,7.38,7.53,7.7700000000000005,N/A,N/A +2013,1,7,3,30,95120,93950,92820,59.52,0,0.48,1.72,2.57,3.2600000000000002,3.88,4.45,4.94,5.36,5.93,138.54,129.88,124.07000000000001,120.7,118.28,116.29,115.04,114.24000000000001,114.11,4.36,5.9,6.24,6.43,6.63,6.8100000000000005,6.99,7.15,7.38,N/A,N/A +2013,1,7,4,30,95080,93910,92780,48.96,0,1.73,2.56,3.16,4.42,5.29,6.04,6.68,7.16,7.61,158.04,137.11,127.35000000000001,119.23,116.34,114.99000000000001,115.35000000000001,116.28,119.47,5.22,5.78,5.8100000000000005,6.0600000000000005,6.18,6.3100000000000005,6.61,6.9,7.3100000000000005,N/A,N/A +2013,1,7,5,30,95060,93890,92760,51.72,0,2.1,3.85,4.79,6.1000000000000005,7.2,8.17,8.9,9.4,9.83,139.67000000000002,127.11,121.92,119.64,119,118.99000000000001,120.18,121.68,125.22,4.3100000000000005,5.23,5.3500000000000005,5.54,5.78,6.01,6.33,6.58,6.9,N/A,N/A +2013,1,7,6,30,95040,93870,92740,51.77,0,3.47,5.5,6.2700000000000005,7.4,8.31,9.09,9.67,10.11,10.57,139.73,127.24000000000001,123.15,122.37,123.29,124.57000000000001,126.43,128.26,131.74,3.77,4.9,5.11,5.36,5.6000000000000005,5.83,6.08,6.3,6.640000000000001,N/A,N/A +2013,1,7,7,30,95030,93850,92720,51.02,0,3.5700000000000003,5.4,5.87,6.47,7.2700000000000005,8.05,8.78,9.370000000000001,10.14,150.35,141.44,136.41,132.21,131.2,131.07,132.23,133.95,138.11,3.4,4.4,4.57,4.72,4.93,5.13,5.38,5.64,6.07,N/A,N/A +2013,1,7,8,30,95000,93820,92680,54.160000000000004,0,2.93,5.01,5.59,6.16,6.99,7.8100000000000005,8.55,9.13,9.86,140.8,137.68,135.42000000000002,133.13,133.37,134.28,136.36,139.23,146.08,2.75,3.8200000000000003,3.94,3.97,4.14,4.3500000000000005,4.66,4.96,5.5,N/A,N/A +2013,1,7,9,30,94950,93770,92630,56.85,0,2.67,4.93,5.66,6.28,6.88,7.45,8.03,8.55,9.47,128.52,131.88,133.47,134.25,136.29,138.70000000000002,142.1,145.63,152.23,2.13,3.29,3.48,3.6,3.72,3.83,3.97,4.14,4.55,N/A,N/A +2013,1,7,10,30,94910,93720,92590,58.03,0,1.9000000000000001,4.15,5.15,6,6.76,7.48,8.24,8.89,10.06,113.32000000000001,124.96000000000001,130.57,133.09,135.69,138.36,141.76,144.66,149.67000000000002,1.78,2.73,2.96,3.14,3.3000000000000003,3.46,3.63,3.79,4.09,N/A,N/A +2013,1,7,11,30,94870,93690,92550,59.56,0,1.75,3.69,4.57,5.39,6.2,6.99,7.79,8.53,9.9,111.27,124.59,131.27,134.81,137.6,140.17000000000002,142.68,144.93,148.89000000000001,1.82,2.59,2.72,2.82,2.92,3.0100000000000002,3.13,3.24,3.44,N/A,N/A +2013,1,7,12,30,94830,93650,92510,62.51,0,1.83,4.46,5.69,6.65,7.48,8.27,9.09,9.950000000000001,11.700000000000001,119.36,133.12,139.05,140.47,141.94,143.46,145.33,147.19,150.75,1.61,2.52,2.75,2.93,3.0300000000000002,3.12,3.18,3.2600000000000002,3.46,N/A,N/A +2013,1,7,13,30,94810,93620,92480,67.72,0,2.6,5.5200000000000005,6.63,7.54,8.4,9.22,10.07,10.870000000000001,12.34,127.61,138.41,142.16,143.1,143.91,144.83,146.17000000000002,147.65,150.74,1.26,2.24,2.46,2.62,2.71,2.77,2.83,2.9,3.0700000000000003,N/A,N/A +2013,1,7,14,30,94800,93620,92470,60.74,0,3.48,6,7.08,7.930000000000001,8.69,9.39,10.06,10.73,12.05,133.78,137.34,138.66,138.84,139.84,141.07,142.79,144.46,147.56,2.29,2.58,2.69,2.7800000000000002,2.86,2.91,2.95,2.99,3.11,N/A,N/A +2013,1,7,15,30,94780,93600,92460,54.6,0,3.99,5.08,5.44,5.69,5.89,6.08,6.2700000000000005,6.55,7.61,131.97,134.04,135.32,136.42000000000002,137.6,138.72,139.89000000000001,141.28,145.11,4.16,3.75,3.5500000000000003,3.37,3.18,3.0100000000000002,2.83,2.67,2.36,N/A,N/A +2013,1,7,16,30,94730,93560,92420,50.870000000000005,0,4.61,5.82,6.19,6.41,6.5600000000000005,6.68,6.7700000000000005,6.8500000000000005,7.03,141.55,142.38,142.83,143.18,143.52,143.83,144.15,144.5,145.27,5.98,5.44,5.21,5,4.79,4.6000000000000005,4.41,4.22,3.84,N/A,N/A +2013,1,7,17,30,94650,93490,92360,47.46,0,5.09,6.4,6.8,7.03,7.18,7.28,7.36,7.42,7.5,149.33,149.8,150.03,150.20000000000002,150.34,150.47,150.59,150.72,150.97,7.66,7.05,6.79,6.57,6.3500000000000005,6.15,5.94,5.74,5.3500000000000005,N/A,N/A +2013,1,7,18,30,94580,93430,92310,43.52,0,5.58,6.99,7.41,7.66,7.8,7.91,7.98,8.03,8.1,147.45000000000002,147.85,148.06,148.22,148.34,148.45000000000002,148.56,148.66,148.87,8.8,8.15,7.890000000000001,7.66,7.43,7.22,7.01,6.8100000000000005,6.41,N/A,N/A +2013,1,7,19,30,94520,93370,92260,39.12,0,5.57,6.96,7.390000000000001,7.63,7.78,7.890000000000001,7.96,8.02,8.08,145.1,145.62,145.91,146.12,146.3,146.45000000000002,146.6,146.73,147,9.88,9.23,8.97,8.74,8.51,8.3,8.09,7.88,7.48,N/A,N/A +2013,1,7,20,30,94450,93300,92190,34.15,0,5.59,7.03,7.46,7.71,7.86,7.97,8.05,8.1,8.17,146.76,147,147.12,147.19,147.24,147.28,147.3,147.33,147.38,10.63,10.02,9.76,9.540000000000001,9.31,9.11,8.89,8.69,8.290000000000001,N/A,N/A +2013,1,7,21,30,94370,93230,92110,34.17,0,5.43,6.86,7.3,7.5600000000000005,7.72,7.8500000000000005,7.930000000000001,8,8.09,144.26,144.4,144.45000000000002,144.46,144.44,144.41,144.38,144.35,144.28,11,10.450000000000001,10.21,9.99,9.77,9.57,9.36,9.16,8.76,N/A,N/A +2013,1,7,22,30,94310,93170,92060,32.230000000000004,0,5.36,6.86,7.32,7.61,7.79,7.94,8.040000000000001,8.120000000000001,8.23,141.53,141.74,141.82,141.85,141.85,141.84,141.83,141.82,141.78,10.89,10.47,10.26,10.06,9.85,9.65,9.450000000000001,9.25,8.85,N/A,N/A +2013,1,7,23,30,94280,93140,92030,37.33,0,3.0700000000000003,5.26,6.1000000000000005,6.78,7.29,7.72,8.06,8.34,8.77,140.41,141.20000000000002,141.61,141.86,141.98,142.05,142,141.91,141.66,9.75,9.83,9.75,9.63,9.47,9.32,9.14,8.96,8.58,N/A,N/A +2013,1,8,0,30,94280,93130,92020,44.77,0,1.97,4.45,5.67,6.86,7.87,8.75,9.41,9.92,10.5,120.83,130.16,134.95,137.09,138.03,138.59,138.79,138.95000000000002,139.21,8.05,8.71,8.790000000000001,8.85,8.85,8.84,8.77,8.67,8.38,N/A,N/A +2013,1,8,1,30,94280,93130,92010,44.83,0,2.64,5.36,6.43,7.37,8.15,8.83,9.4,9.9,10.72,137.83,140.06,141.44,142.42000000000002,143.21,143.89000000000001,144.44,144.9,145.47,7.3500000000000005,8.1,8.16,8.18,8.16,8.120000000000001,8.05,7.96,7.73,N/A,N/A +2013,1,8,2,30,94260,93100,91980,49.78,0,2.13,4.3500000000000005,5.3,6.26,7.17,8.01,8.78,9.48,10.65,123.4,132.51,137.42000000000002,140.59,142.49,143.96,144.9,145.68,146.9,6.33,7,7.07,7.11,7.11,7.09,7.05,6.99,6.82,N/A,N/A +2013,1,8,3,30,94230,93070,91950,54.5,0,1.74,3.84,4.87,5.92,6.96,7.94,8.88,9.74,11.21,116.44,127.81,133.82,137.72,140,141.8,142.95000000000002,143.9,145.42000000000002,5.33,6.08,6.18,6.24,6.26,6.26,6.25,6.21,6.1000000000000005,N/A,N/A +2013,1,8,4,30,94200,93040,91920,60.11,0,1.72,3.48,4.3500000000000005,5.36,6.41,7.45,8.47,9.44,11.21,104.26,120.7,129.08,134.38,137.21,139.38,140.76,141.97,144,4.24,5.1000000000000005,5.24,5.3500000000000005,5.42,5.47,5.51,5.53,5.54,N/A,N/A +2013,1,8,5,30,94180,93010,91890,65.76,0,1.56,3.6,4.68,5.79,6.9,8,9.1,10.15,12.08,112.37,124.97,131.08,134.2,135.99,137.47,138.63,139.74,141.86,3.54,4.37,4.5,4.59,4.67,4.73,4.8,4.8500000000000005,4.95,N/A,N/A +2013,1,8,6,30,94160,92990,91870,70.77,0,2.15,5.2,6.66,7.930000000000001,9,9.96,10.870000000000001,11.73,13.23,131.43,131.56,131.65,131.73,132.89000000000001,134.27,136.08,137.87,141.48,3.37,4.22,4.3500000000000005,4.46,4.5600000000000005,4.64,4.73,4.82,5,N/A,N/A +2013,1,8,7,30,94150,92980,91850,75.35000000000001,0,1.71,4.25,5.57,6.65,7.67,8.66,9.77,10.86,12.86,134.16,130.88,129.84,130.61,132.58,134.68,136.86,138.96,143.14000000000001,2.42,3.41,3.58,3.69,3.79,3.9,4.08,4.32,4.89,N/A,N/A +2013,1,8,8,30,94110,92940,91820,81.26,0,1.36,4.05,5.73,7.16,8.5,9.75,10.88,11.81,13.06,120.09,131.09,136.52,137.34,138.14000000000001,139.03,140.35,141.82,144.9,2.19,3.46,3.84,4.19,4.54,4.87,5.21,5.5200000000000005,5.97,N/A,N/A +2013,1,8,9,30,94080,92910,91790,86.68,0,0.68,2.91,4.71,6.33,7.61,8.71,9.5,10.16,11.05,139.79,130.44,124.66,122.85000000000001,123.83,125.63000000000001,128.96,132.68,139.20000000000002,1.92,3.2600000000000002,3.7,4.09,4.42,4.71,4.99,5.26,5.67,N/A,N/A +2013,1,8,10,30,94060,92900,91770,76.82000000000001,0,0.7000000000000001,2.57,3.8200000000000003,4.67,5.3,5.82,6.24,6.67,7.58,117.55,121.43,123.43,123.17,124.18,125.54,127.62,130.04,135.28,4.21,4.9,5.01,4.96,4.8500000000000005,4.74,4.62,4.54,4.48,N/A,N/A +2013,1,8,11,30,94070,92910,91790,79.53,0,0.37,1.37,2.17,2.82,3.4,3.95,4.53,5.11,6.36,93.57000000000001,107.39,116.82000000000001,118.49000000000001,119.94,121.41,123.69,126.07000000000001,131.13,4.8500000000000005,5.19,5.22,5.2,5.12,5.04,4.97,4.92,4.87,N/A,N/A +2013,1,8,12,30,94050,92890,91770,81.99,0,0.75,1.3900000000000001,1.7,2.13,2.61,3.11,3.61,4.12,5.16,35.2,77.64,97.98,110.21000000000001,115.67,119.41,121.53,123.35000000000001,126.33,5.26,5.71,5.75,5.7,5.64,5.58,5.49,5.4,5.23,N/A,N/A +2013,1,8,13,30,94040,92890,91770,85.47,0,1.42,2.16,2.54,3.23,3.67,4.0200000000000005,4.36,4.69,5.3100000000000005,15.68,53.64,72.02,86.66,94.21000000000001,99.53,103.09,106.02,110.56,5.71,5.98,5.99,5.98,5.92,5.8500000000000005,5.76,5.66,5.41,N/A,N/A +2013,1,8,14,30,94060,92900,91780,85.92,0,1.6,2.2600000000000002,2.57,3.15,3.69,4.14,4.33,4.46,4.69,21.14,50.4,66.2,81.22,89.35000000000001,95.27,98.45,101.58,107.78,5.96,6.13,6.11,6.1000000000000005,6.05,6,5.92,5.82,5.59,N/A,N/A +2013,1,8,15,30,94080,92920,91800,87.05,0,1.25,1.98,2.14,2.34,2.8000000000000003,3.29,3.65,3.96,4.39,16.25,28.89,41.92,58.620000000000005,70.85000000000001,81.19,85.44,89.18,96.01,6.17,6.140000000000001,6.07,6.01,6,5.99,5.92,5.83,5.67,N/A,N/A +2013,1,8,16,30,94060,92910,91790,84.53,0,1.51,2.16,2.08,1.83,1.86,1.98,2.2800000000000002,2.59,3.2,8.89,17.71,31.95,48.77,62.63,73.95,80.43,85.4,92.22,6.79,6.63,6.57,6.55,6.45,6.36,6.25,6.15,5.97,N/A,N/A +2013,1,8,17,30,94070,92920,91800,82.4,0,1.43,2.2,2.46,2.54,2.37,2.19,1.97,1.79,1.54,359.8,6.99,12.97,18.79,24.650000000000002,29.580000000000002,34.550000000000004,39.5,52.21,7.33,7.15,7.07,7,6.88,6.76,6.61,6.46,6.2,N/A,N/A +2013,1,8,18,30,94030,92880,91770,79.81,0,0.74,0.99,1.18,1.43,1.82,2.22,2.49,2.59,2.38,10.28,12.88,14.41,15.69,16.85,18.14,19.78,22.330000000000002,29.01,7.68,7.37,7.19,7.0200000000000005,6.8500000000000005,6.71,6.63,6.58,6.5200000000000005,N/A,N/A +2013,1,8,19,30,94020,92870,91750,76.24,0,1.72,2.12,2.22,2.29,2.32,2.35,2.39,2.47,2.84,350.32,350.99,351.40000000000003,351.76,352.12,352.53000000000003,353.27,354.66,0.05,8.28,7.94,7.75,7.57,7.37,7.19,6.99,6.8,6.43,N/A,N/A +2013,1,8,20,30,94000,92860,91750,76.21000000000001,0,2.23,2.7600000000000002,2.9,2.98,3.02,3.0500000000000003,3.0700000000000003,3.08,3.06,336.28000000000003,338.2,339.46,340.67,342.11,343.39,344.47,345.7,348.66,8.71,8.38,8.2,8.01,7.8100000000000005,7.63,7.44,7.25,6.87,N/A,N/A +2013,1,8,21,30,93990,92840,91730,69.99,0,3.02,3.72,3.87,3.96,4.0200000000000005,4.04,4.01,3.99,4,320.2,325.01,327.18,328.5,331.78000000000003,335.38,340.61,345.33,353.62,8.14,7.88,7.71,7.55,7.390000000000001,7.26,7.15,7.03,6.7700000000000005,N/A,N/A +2013,1,8,22,30,93990,92840,91720,65.15,0,2.81,3.79,4.09,4.24,4.28,4.29,4.29,4.33,4.5200000000000005,316.53000000000003,323.95,329.09000000000003,333.84000000000003,340.03000000000003,345.73,351.32,356.17,3.81,7.76,7.59,7.5200000000000005,7.46,7.38,7.3,7.18,7.0600000000000005,6.79,N/A,N/A +2013,1,8,23,30,93990,92840,91730,65.62,0,2.7800000000000002,3.66,3.85,3.94,4,4.0600000000000005,4.17,4.3500000000000005,4.89,322.5,328.28000000000003,332.85,337.58,342.95,347.79,352.31,356.28000000000003,1.77,7.6000000000000005,7.43,7.34,7.25,7.15,7.05,6.93,6.79,6.5,N/A,N/A +2013,1,9,0,30,94020,92870,91760,70.61,0,2.02,3,3.35,3.66,3.96,4.25,4.53,4.8,5.29,328.44,334.2,337.81,341.07,343.86,346.26,348.18,349.6,351.76,7.8100000000000005,7.63,7.5,7.36,7.19,7.04,6.8500000000000005,6.67,6.32,N/A,N/A +2013,1,9,1,30,94050,92900,91780,72.17,0,1.92,2.87,3.18,3.45,3.68,3.89,4.12,4.34,4.8,322.02,328.16,332.26,336.13,340.04,343.6,347.05,350.13,355.39,7.76,7.58,7.44,7.3,7.140000000000001,6.99,6.8100000000000005,6.65,6.32,N/A,N/A +2013,1,9,2,30,94090,92940,91820,72.89,0,2.37,3.2600000000000002,3.47,3.61,3.75,3.89,4.1,4.33,4.88,314.94,320.52,324.93,329.48,335.05,340.23,345.22,349.36,355.38,7.69,7.5200000000000005,7.41,7.3,7.18,7.0600000000000005,6.92,6.7700000000000005,6.44,N/A,N/A +2013,1,9,3,30,94140,92980,91870,76.37,0,2.2800000000000002,3.24,3.5700000000000003,3.85,4.14,4.41,4.71,5,5.58,322.14,328.15000000000003,332.35,336.52,340.85,344.78000000000003,348.39,351.45,356.31,7.7,7.51,7.390000000000001,7.26,7.11,6.97,6.8100000000000005,6.65,6.32,N/A,N/A +2013,1,9,4,30,94190,93040,91920,78.68,0,2.04,3.23,3.67,4.0600000000000005,4.43,4.7700000000000005,5.09,5.4,5.93,338.15000000000003,343.96,347.82,351.48,354.81,357.76,0.35000000000000003,2.5300000000000002,5.89,7.8500000000000005,7.640000000000001,7.47,7.3,7.1000000000000005,6.93,6.75,6.58,6.2700000000000005,N/A,N/A +2013,1,9,5,30,94190,93040,91920,81.69,0,2.94,4.3,4.7700000000000005,5.17,5.55,5.89,6.22,6.5200000000000005,7.07,332.31,337.18,340.42,343.48,346.51,349.22,351.72,353.95,357.82,7.7700000000000005,7.53,7.36,7.19,6.99,6.8100000000000005,6.62,6.44,6.1000000000000005,N/A,N/A +2013,1,9,6,30,94330,93170,92050,85.03,1.8,2.89,3.9,4.2,4.43,4.62,4.79,5,5.25,5.87,336.38,338.55,340.3,342.15000000000003,344.87,347.56,350.7,353.72,359.23,7.390000000000001,7.16,7.03,6.890000000000001,6.73,6.59,6.43,6.28,5.96,N/A,N/A +2013,1,9,7,30,94350,93200,92080,86.02,0,1.4000000000000001,0.6,0.63,0.9500000000000001,1.6500000000000001,2.5500000000000003,3.2600000000000002,3.85,4.79,186.19,184.83,131.98,28.7,16.43,15.5,15.31,15.39,15.83,7.36,7.13,6.95,6.7700000000000005,6.55,6.36,6.15,5.96,5.59,N/A,N/A +2013,1,9,8,30,94240,93090,91970,89.28,0,4.51,6.17,6.8,7.34,7.8100000000000005,8.24,8.63,9.01,9.700000000000001,340.05,343.53000000000003,345.83,348.05,350.13,352.01,353.79,355.47,358.64,6.94,6.68,6.53,6.37,6.2,6.04,5.88,5.73,5.43,N/A,N/A +2013,1,9,9,30,94260,93110,91990,86.76,0,3.0300000000000002,4.66,5.39,6.05,6.61,7.12,7.57,7.97,8.65,3.49,5.66,6.94,8.040000000000001,8.97,9.790000000000001,10.52,11.200000000000001,12.450000000000001,7.12,6.890000000000001,6.73,6.57,6.390000000000001,6.22,6.04,5.87,5.5200000000000005,N/A,N/A +2013,1,9,10,30,94310,93160,92030,87.9,0,3.67,4.7700000000000005,4.93,4.93,4.75,4.57,4.42,4.42,4.88,281.54,283.39,285.12,287.34000000000003,292.35,297.83,306.24,314.98,332.32,6.91,6.7,6.5600000000000005,6.43,6.28,6.140000000000001,5.98,5.82,5.46,N/A,N/A +2013,1,9,11,30,94310,93150,92030,91.02,1.8,4.11,5.37,5.76,6.08,6.34,6.57,6.84,7.1000000000000005,7.62,328.54,331.54,334.26,337.26,340.7,343.83,346.85,349.56,354.29,6.63,6.42,6.29,6.17,6.03,5.91,5.78,5.65,5.39,N/A,N/A +2013,1,9,12,30,94320,93160,92040,87.9,0,2.87,4.26,4.84,5.3500000000000005,5.79,6.17,6.51,6.8100000000000005,7.3100000000000005,336.76,342.04,345.26,348.07,350.62,352.88,354.95,356.86,0.42,7.2,7.01,6.88,6.75,6.59,6.44,6.29,6.140000000000001,5.82,N/A,N/A +2013,1,9,13,30,94290,93140,92020,92.19,0,1.3800000000000001,2.19,2.58,3.04,3.64,4.23,4.84,5.41,6.44,301.33,327.75,341.55,353.97,1.47,7.65,11.620000000000001,14.71,19.11,7.5,7.390000000000001,7.28,7.16,7.01,6.87,6.72,6.57,6.25,N/A,N/A +2013,1,9,14,30,94300,93150,92030,95.49,0,0.88,1.6,2.24,3.23,4.26,5.3,6.29,7.21,8.84,283.18,347.15000000000003,7.62,22.88,27.64,31.580000000000002,33.84,35.6,38.24,7.6000000000000005,7.59,7.54,7.49,7.41,7.34,7.25,7.15,6.93,N/A,N/A +2013,1,9,15,30,94240,93090,91980,84.44,1.8,6.74,9.85,10.790000000000001,11.52,12.16,12.71,13.200000000000001,13.66,14.5,33.7,35.44,35.85,36.11,36.61,37.1,37.64,38.25,39.5,9.15,8.9,8.74,8.59,8.41,8.24,8.08,7.92,7.62,N/A,N/A +2013,1,9,16,30,94250,93100,91990,84.32000000000001,0,8.13,11.38,12.31,12.98,13.48,13.94,14.41,14.88,15.81,37.84,39.13,39.36,39.39,39.4,39.46,39.68,39.99,40.67,9.200000000000001,8.92,8.74,8.58,8.38,8.2,8.02,7.8500000000000005,7.5200000000000005,N/A,N/A +2013,1,9,17,30,94250,93110,92000,80.34,0,8.85,11.52,12.200000000000001,12.68,13,13.26,13.46,13.64,13.94,39.84,39.74,39.76,39.82,39.910000000000004,40,40.13,40.27,40.6,9.620000000000001,9.21,9,8.81,8.6,8.4,8.21,8.02,7.63,N/A,N/A +2013,1,9,18,30,94260,93110,92000,79.25,0,8.97,11.700000000000001,12.370000000000001,12.84,13.14,13.370000000000001,13.55,13.69,13.93,39.550000000000004,39.58,39.68,39.82,40.02,40.22,40.47,40.76,41.43,9.4,9.02,8.81,8.61,8.39,8.2,8,7.8100000000000005,7.43,N/A,N/A +2013,1,9,19,30,94220,93080,91960,76.67,0,7.72,10.120000000000001,10.75,11.200000000000001,11.49,11.71,11.870000000000001,12.01,12.23,33.06,33,33.05,33.13,33.27,33.42,33.62,33.87,34.480000000000004,9.44,9.040000000000001,8.83,8.64,8.42,8.23,8.03,7.83,7.44,N/A,N/A +2013,1,9,20,30,94240,93100,91980,75.04,0,6.25,8.35,8.950000000000001,9.39,9.68,9.9,10.06,10.17,10.33,28.740000000000002,29.11,29.330000000000002,29.51,29.68,29.830000000000002,30,30.17,30.54,9.46,9.08,8.86,8.66,8.43,8.23,8.02,7.82,7.42,N/A,N/A +2013,1,9,21,30,94270,93120,92000,78.10000000000001,0,4.67,6.09,6.46,6.71,6.88,7.01,7.1000000000000005,7.17,7.25,10.33,12.02,12.94,13.67,14.24,14.72,15.09,15.41,15.91,8.540000000000001,8.23,8.03,7.84,7.63,7.44,7.23,7.04,6.640000000000001,N/A,N/A +2013,1,9,22,30,94260,93100,91980,83.9,0,2.25,3.31,3.8000000000000003,4.22,4.65,5.05,5.46,5.8500000000000005,6.65,359.83,3.3200000000000003,5.2700000000000005,6.9,8.290000000000001,9.51,10.540000000000001,11.55,13.27,7.25,6.94,6.76,6.59,6.390000000000001,6.22,6.03,5.8500000000000005,5.48,N/A,N/A +2013,1,9,23,30,94340,93180,92060,87.10000000000001,1.8,3.39,4.3100000000000005,4.5200000000000005,4.66,4.74,4.8,4.8500000000000005,4.89,4.97,328.49,329.02,329.43,329.88,330.56,331.25,332.17,333.25,335.88,6.83,6.5200000000000005,6.33,6.16,5.96,5.78,5.59,5.41,5.04,N/A,N/A +2013,1,10,0,30,94350,93190,92070,89.38,1.8,4.7,6.16,6.48,6.63,6.82,6.97,7.03,7.0600000000000005,7.09,320.13,321.98,322.74,323.21,324.45,325.62,326.73,327.95,330.76,6.7700000000000005,6.49,6.3100000000000005,6.140000000000001,5.96,5.8,5.62,5.45,5.1000000000000005,N/A,N/A +2013,1,10,1,30,94360,93200,92080,88.47,0,3.69,4.79,5.09,5.32,5.46,5.59,5.72,5.83,6.0200000000000005,331.19,331.78000000000003,332.21,332.68,333.26,333.81,334.46,335.15000000000003,336.68,6.76,6.48,6.3100000000000005,6.13,5.94,5.76,5.58,5.4,5.05,N/A,N/A +2013,1,10,2,30,94350,93190,92070,88,0,3.12,4.26,4.66,4.99,5.32,5.6000000000000005,5.8100000000000005,5.95,6.19,330.02,331.52,332.2,332.67,333.36,333.93,334.2,334.31,334.61,6.72,6.45,6.28,6.11,5.91,5.74,5.55,5.37,5,N/A,N/A +2013,1,10,3,30,94320,93170,92040,87.01,0,3.56,4.86,5.32,5.72,6,6.21,6.3500000000000005,6.5,6.8,326.64,327.32,327.86,328.48,328.98,329.35,329.48,329.7,330.24,6.8100000000000005,6.54,6.36,6.19,5.99,5.8100000000000005,5.62,5.43,5.0600000000000005,N/A,N/A +2013,1,10,4,30,94340,93180,92060,86.15,0,2.86,4.09,4.55,4.92,5.25,5.54,5.79,6.0200000000000005,6.45,325.95,327.05,327.55,327.90000000000003,328.22,328.44,328.36,328.14,327.31,6.8,6.55,6.390000000000001,6.23,6.05,5.88,5.71,5.55,5.23,N/A,N/A +2013,1,10,5,30,94340,93180,92060,87.31,0,2.44,3.6,4.0600000000000005,4.44,4.79,5.1000000000000005,5.37,5.63,6.09,319.40000000000003,320.87,321.79,322.55,323.07,323.45,323.56,323.57,323.34000000000003,6.88,6.66,6.5,6.3500000000000005,6.17,6.01,5.83,5.67,5.3500000000000005,N/A,N/A +2013,1,10,6,30,94320,93170,92050,90.14,0,1,1.95,2.4,2.8000000000000003,3.17,3.5,3.83,4.14,4.74,287.54,296.90000000000003,301.90000000000003,305.33,308.25,310.86,313.16,315.09000000000003,317.66,6.74,6.55,6.42,6.2700000000000005,6.1000000000000005,5.95,5.78,5.61,5.29,N/A,N/A +2013,1,10,7,30,94350,93200,92070,90.42,0,1.32,2.31,2.7,3.02,3.25,3.44,3.59,3.72,3.97,265,271.43,274.99,277.51,279.81,281.90000000000003,284.04,286.02,289.6,6.78,6.640000000000001,6.51,6.38,6.22,6.07,5.91,5.75,5.43,N/A,N/A +2013,1,10,8,30,94350,93190,92070,88.37,0,1.96,3.12,3.61,4.0600000000000005,4.4,4.69,4.91,5.11,5.49,247.12,255.02,259.99,264.15,267.72,270.97,274.39,277.75,284.27,6.99,6.83,6.72,6.58,6.42,6.2700000000000005,6.1000000000000005,5.94,5.6000000000000005,N/A,N/A +2013,1,10,9,30,94320,93160,92040,87.42,0,3.09,4.43,4.9,5.2700000000000005,5.55,5.8,6.04,6.29,6.88,257.85,261.98,265.06,268.15,271.67,275.03000000000003,278.74,282.11,287.81,6.84,6.66,6.53,6.390000000000001,6.24,6.09,5.93,5.76,5.41,N/A,N/A +2013,1,10,10,30,94320,93160,92040,101.18,0,2.43,4.57,5.42,6.25,6.8500000000000005,7.3500000000000005,7.74,8.120000000000001,8.88,245.26,258.39,265.81,271.46,276.33,280.73,285.03000000000003,288.69,294.04,4.84,5.29,5.38,5.43,5.42,5.4,5.3500000000000005,5.28,5.11,N/A,N/A +2013,1,10,11,30,94320,93160,92040,101.8,0,2.64,5.69,6.98,8.06,8.870000000000001,9.540000000000001,10.1,10.6,11.49,281.65000000000003,283.1,284.67,286.58,288.87,291.02,292.92,294.49,296.7,5.0200000000000005,5.63,5.73,5.8100000000000005,5.82,5.8,5.74,5.65,5.41,N/A,N/A +2013,1,10,12,30,94340,93170,92050,104.79,0,2.16,4.55,5.65,6.65,7.43,8.09,8.65,9.19,10.32,271.46,277.61,281.77,284.85,287.55,289.97,292.15000000000003,293.98,296.56,4.33,5.01,5.13,5.22,5.26,5.28,5.26,5.22,5.0600000000000005,N/A,N/A +2013,1,10,13,30,94360,93200,92070,105.21000000000001,0,1.77,2.82,3.2800000000000002,4.0600000000000005,4.98,5.9,6.640000000000001,7.26,8.17,234.32,254.45000000000002,265.92,276.2,280.5,283.54,285.89,288.43,293.17,4.05,4.54,4.5600000000000005,4.61,4.7,4.7700000000000005,4.8100000000000005,4.8100000000000005,4.69,N/A,N/A +2013,1,10,14,30,94410,93240,92110,94.60000000000001,0,0.64,2.32,3.73,4.92,5.89,6.74,7.37,7.88,8.41,274.90000000000003,269.65,265.44,264.74,264.96,265.55,266.94,268.63,273.32,4.0600000000000005,4.2700000000000005,4.34,4.39,4.38,4.37,4.32,4.26,4.09,N/A,N/A +2013,1,10,15,30,94420,93260,92130,78.12,0,1.92,2.42,2.63,2.77,2.88,2.98,3.0700000000000003,3.17,3.47,275,276.24,277.16,278.22,279.28000000000003,280.24,280.96,281.95,286.17,6.49,6.1000000000000005,5.9,5.71,5.5200000000000005,5.34,5.14,4.96,4.61,N/A,N/A +2013,1,10,16,30,94410,93260,92140,68.97,0,3.93,4.79,5.07,5.22,5.3100000000000005,5.38,5.42,5.46,5.51,279.27,279.73,280.01,280.22,280.42,280.61,280.81,281.01,281.46,8.43,7.92,7.7,7.48,7.2700000000000005,7.09,6.88,6.69,6.32,N/A,N/A +2013,1,10,17,30,94360,93210,92100,63.58,0,4.55,5.55,5.9,6.09,6.22,6.32,6.390000000000001,6.45,6.55,289.46,289.54,289.53000000000003,289.42,289.27,289.12,288.93,288.75,288.37,9.96,9.39,9.15,8.92,8.71,8.51,8.31,8.120000000000001,7.73,N/A,N/A +2013,1,10,18,30,94300,93160,92060,56.93,0,4.7700000000000005,5.87,6.23,6.43,6.57,6.67,6.75,6.8100000000000005,6.91,288.56,288.59000000000003,288.56,288.46,288.34000000000003,288.23,288.09000000000003,287.95,287.67,11.61,11.01,10.76,10.53,10.3,10.11,9.9,9.700000000000001,9.31,N/A,N/A +2013,1,10,19,30,94290,93160,92060,52.83,0,3.64,4.48,4.73,4.88,4.99,5.08,5.14,5.2,5.29,275.44,275.62,275.7,275.73,275.74,275.74,275.73,275.71,275.67,12.9,12.32,12.07,11.85,11.620000000000001,11.42,11.21,11.02,10.620000000000001,N/A,N/A +2013,1,10,20,30,94250,93120,92030,50.480000000000004,0,4.2,5.18,5.5200000000000005,5.72,5.8500000000000005,5.95,6.03,6.1000000000000005,6.2,281.15000000000003,281.28000000000003,281.34000000000003,281.3,281.21,281.13,281.01,280.89,280.62,14.030000000000001,13.47,13.23,13,12.780000000000001,12.59,12.38,12.18,11.790000000000001,N/A,N/A +2013,1,10,21,30,94200,93070,91980,46.35,0,3.46,4.28,4.55,4.71,4.82,4.9,4.97,5.03,5.12,276.61,276.3,276.02,275.78000000000003,275.55,275.34000000000003,275.13,274.93,274.55,14.92,14.44,14.22,14,13.790000000000001,13.6,13.39,13.200000000000001,12.8,N/A,N/A +2013,1,10,22,30,94170,93050,91960,45.21,0,2.2800000000000002,2.86,3.0500000000000003,3.18,3.27,3.34,3.39,3.45,3.5300000000000002,260.54,260.49,260.45,260.38,260.3,260.2,260.07,259.95,259.67,15.21,14.85,14.66,14.46,14.26,14.07,13.870000000000001,13.68,13.290000000000001,N/A,N/A +2013,1,10,23,30,94130,93010,91920,60.370000000000005,0,0.58,1.44,1.84,2.0300000000000002,2.14,2.22,2.27,2.32,2.41,208.31,213,216.35,218.96,221,222.66,224.5,226.19,229.28,14.030000000000001,14.74,14.72,14.59,14.42,14.26,14.07,13.9,13.55,N/A,N/A +2013,1,11,0,30,94140,93020,91930,64.59,0,2.5500000000000003,3.85,3.89,3.9,3.91,3.93,4.01,4.1,4.3500000000000005,157.76,156.88,157.27,158.64000000000001,160.63,162.63,165.11,167.39000000000001,171.84,12.85,14.32,14.56,14.63,14.58,14.51,14.38,14.26,13.99,N/A,N/A +2013,1,11,1,30,94100,92970,91880,68.94,0,3.6,5.98,6.78,7.59,8.3,8.93,9.32,9.66,10.13,167.01,179.42000000000002,187.94,196.57,203.89000000000001,210.27,214.55,218.41,224.71,11.5,12.65,13.13,13.59,13.950000000000001,14.24,14.36,14.42,14.35,N/A,N/A +2013,1,11,2,30,94100,92970,91890,72.17,0,2.16,4.86,6.26,7.79,9.16,10.41,11.31,12.05,12.89,177.25,195.27,206.03,212.20000000000002,216.11,219.04,220.58,221.85,223.33,11.36,12.74,13.1,13.47,13.790000000000001,14.07,14.26,14.4,14.450000000000001,N/A,N/A +2013,1,11,3,30,94140,93010,91920,74.74,0,3.0500000000000003,6.28,7.49,8.58,9.46,10.21,10.8,11.31,12.120000000000001,185.56,189.03,191.34,193.3,195.19,196.95000000000002,198.77,200.45000000000002,203.53,11.08,12.3,12.52,12.73,12.91,13.06,13.17,13.25,13.33,N/A,N/A +2013,1,11,4,30,94150,93010,91920,81.29,0,1.17,3.4,5.0600000000000005,6.54,7.84,9.02,10.02,10.91,12.11,169.21,175,179.63,180.88,181.59,181.99,182.15,182.29,182.6,9.78,10.82,10.94,11.08,11.24,11.4,11.61,11.81,12.22,N/A,N/A +2013,1,11,5,30,94130,92990,91890,86.77,0,2.08,4.2,5.24,6.45,7.61,8.73,9.77,10.73,12.34,138.06,156.58,168.43,174.42000000000002,177.85,179.97,180.61,181.03,180.87,8.51,9.620000000000001,9.84,10.08,10.33,10.57,10.86,11.14,11.74,N/A,N/A +2013,1,11,6,30,94120,92980,91880,83.79,0,2.43,5.3,6.7,7.96,9.06,10.07,10.99,11.84,13.32,171.43,168.57,167.03,166.83,167.08,167.5,168.11,168.69,169.85,8.81,9.88,10.01,10.16,10.34,10.51,10.73,10.950000000000001,11.43,N/A,N/A +2013,1,11,7,30,94110,92970,91860,86.49,0,3.09,6.36,7.890000000000001,9.4,10.72,11.9,12.950000000000001,13.9,15.46,145.22,150.85,154.79,157.52,159.46,161.02,162.20000000000002,163.31,165.4,8.07,9.11,9.28,9.450000000000001,9.620000000000001,9.78,9.98,10.18,10.64,N/A,N/A +2013,1,11,8,30,94050,92900,91790,92.77,0,2,3.83,4.4,4.86,5.47,6.140000000000001,7.19,8.32,10.8,113.44,119.82000000000001,124.59,129.44,136.3,143.13,149.35,154.51,161.48,6.8500000000000005,7.73,7.8,7.8100000000000005,7.8500000000000005,7.9,8.02,8.17,8.59,N/A,N/A +2013,1,11,9,30,94020,92870,91760,96.42,0,2.65,4.91,5.65,6.34,7.07,7.79,8.6,9.44,11.24,124.08,132.69,138.24,143.07,147.33,151.15,154.42000000000002,157.31,161.94,6.48,7.41,7.55,7.67,7.79,7.9,8.03,8.17,8.5,N/A,N/A +2013,1,11,10,30,93960,92810,91710,95.93,0,2.94,5.5,6.42,7.34,8.24,9.1,10.01,10.9,12.63,135.32,143.89000000000001,149.02,152.91,155.87,158.38,160.33,162.04,164.76,6.890000000000001,7.79,7.94,8.08,8.22,8.34,8.49,8.64,9.01,N/A,N/A +2013,1,11,11,30,93960,92810,91700,101.11,0,2.15,4.22,4.94,5.49,6.15,6.83,7.72,8.620000000000001,10.540000000000001,124.51,132.47,137.94,142.49,147.24,151.81,155.54,158.67000000000002,162.95000000000002,6.3100000000000005,7.03,7.0600000000000005,7.0600000000000005,7.08,7.09,7.17,7.25,7.48,N/A,N/A +2013,1,11,12,30,93940,92790,91690,96.63,0,2.99,5.26,6.09,6.94,7.78,8.58,9.41,10.19,11.540000000000001,132.97,143.11,149.75,154.87,158.72,161.98,164.32,166.32,169.06,7.25,7.91,8.01,8.09,8.15,8.19,8.26,8.34,8.59,N/A,N/A +2013,1,11,13,30,93900,92760,91660,92.14,0,4.38,6.99,8.03,8.99,9.85,10.620000000000001,11.24,11.74,12.23,154.6,161.33,165.48,168.45000000000002,170.65,172.45000000000002,173.86,175.15,177.55,8.02,8.46,8.56,8.66,8.8,8.950000000000001,9.21,9.48,10.21,N/A,N/A +2013,1,11,14,30,93920,92780,91680,87.67,0,4.82,6.97,7.8500000000000005,8.620000000000001,9.23,9.75,10.17,10.48,10.59,157.44,161.08,163.59,165.59,167.20000000000002,168.57,169.88,171.11,173.75,8.63,8.71,8.700000000000001,8.68,8.700000000000001,8.73,8.870000000000001,9.040000000000001,9.63,N/A,N/A +2013,1,11,15,30,93940,92800,91690,90.21000000000001,0,4.36,5.69,6.34,6.8500000000000005,7.36,7.8500000000000005,8.21,8.51,8.790000000000001,156.81,159.49,161.36,162.79,164.21,165.57,167.03,168.52,172.23,8.65,8.32,8.17,8,7.97,7.99,8.2,8.45,9.19,N/A,N/A +2013,1,11,16,30,93920,92780,91680,82.63,0,4.57,5.47,5.76,5.94,6.09,6.22,6.3500000000000005,6.48,6.76,164.43,164.86,165.22,165.62,166.13,166.68,167.51,168.5,172.48,9.870000000000001,9.39,9.200000000000001,9.01,8.85,8.700000000000001,8.65,8.65,8.97,N/A,N/A +2013,1,11,17,30,93850,92720,91620,73.16,0,4.37,5.24,5.49,5.58,5.63,5.66,5.75,5.84,6.1000000000000005,164.81,165.9,166.81,167.78,168.89000000000001,169.99,171.52,173.24,179.69,11.47,10.93,10.71,10.51,10.34,10.19,10.040000000000001,9.92,9.870000000000001,N/A,N/A +2013,1,11,18,30,93800,92680,91590,64.52,0,4.68,5.5600000000000005,5.82,5.9,5.95,5.97,6.04,6.13,6.44,165.52,166.66,167.58,168.62,170.02,171.56,173.94,176.41,183.59,13.44,12.89,12.68,12.49,12.33,12.19,12.07,11.98,12,N/A,N/A +2013,1,11,19,30,93760,92640,91560,59.28,0,4.1,4.89,5.1000000000000005,5.18,5.23,5.28,5.37,5.48,5.86,170.99,172.63,173.89000000000001,175.36,177.20000000000002,179.18,182.22,185.3,192.95000000000002,15.16,14.63,14.42,14.24,14.08,13.94,13.84,13.76,13.76,N/A,N/A +2013,1,11,20,30,93720,92600,91520,56.02,0,4.47,5.26,5.45,5.47,5.44,5.38,5.41,5.46,5.8,169.46,170.89000000000001,172.08,173.59,175.5,177.64000000000001,181.14000000000001,184.74,194.05,16.06,15.55,15.35,15.16,15,14.86,14.74,14.63,14.56,N/A,N/A +2013,1,11,21,30,93680,92570,91490,55.69,0,3.2600000000000002,3.86,4.05,4.11,4.15,4.18,4.3,4.43,4.92,161.05,162.43,163.68,165.28,167.3,169.74,173.5,177.38,186.22,16.46,16.06,15.88,15.68,15.51,15.36,15.21,15.09,14.950000000000001,N/A,N/A +2013,1,11,22,30,93620,92510,91430,59.96,0,2.32,2.86,3.0300000000000002,3.15,3.2800000000000002,3.41,3.58,3.75,4.32,145.01,146.48,147.73,149.33,151.36,153.58,157.22,161.34,174.5,15.84,15.530000000000001,15.35,15.14,14.94,14.75,14.58,14.43,14.290000000000001,N/A,N/A +2013,1,11,23,30,93620,92500,91420,73.82000000000001,0,1.61,3.04,3.54,3.92,4.22,4.46,4.65,4.83,5.24,128.99,132.48,135.43,138.46,141.67000000000002,144.93,149.42000000000002,154,165.16,14.44,14.46,14.3,14.07,13.89,13.73,13.64,13.57,13.540000000000001,N/A,N/A +2013,1,12,0,30,93650,92530,91440,77.07000000000001,0,2.3000000000000003,3.73,4.3500000000000005,4.91,5.4,5.84,6.24,6.59,7.03,142.78,146.92000000000002,150.36,153.31,155.95000000000002,158.4,160.74,162.99,169.27,13.39,13.38,13.3,13.16,13.06,12.96,12.91,12.89,13.15,N/A,N/A +2013,1,12,1,30,93670,92550,91460,81.61,0,1.8800000000000001,3.38,4.05,4.65,5.18,5.65,6.08,6.47,7.0200000000000005,136.21,143.27,148.83,152.62,155.68,158.21,160.33,162.26,166.4,12.83,12.9,12.83,12.73,12.64,12.55,12.49,12.46,12.58,N/A,N/A +2013,1,12,2,30,93630,92510,91430,86.06,0,1.44,3.15,3.96,4.66,5.26,5.79,6.3,6.78,7.43,134.38,141.3,146.27,149.8,152.75,155.32,157.99,160.61,167,12.38,12.450000000000001,12.4,12.36,12.34,12.32,12.36,12.42,12.76,N/A,N/A +2013,1,12,3,30,93640,92520,91430,86.74,0,1.09,2.19,2.66,3.08,3.61,4.22,4.89,5.54,6.53,106.57000000000001,117.21000000000001,126.18,135.32,142.79,149.51,154.23,158.46,164.32,12.39,12.56,12.530000000000001,12.48,12.47,12.48,12.52,12.58,12.83,N/A,N/A +2013,1,12,4,30,93620,92490,91410,89.12,0,1.25,2.62,3.3000000000000003,3.99,4.68,5.37,5.99,6.57,7.49,121.8,128.49,133.82,138.5,142.55,146.21,149.12,151.78,156.64000000000001,12.17,12.43,12.44,12.450000000000001,12.46,12.47,12.49,12.51,12.6,N/A,N/A +2013,1,12,5,30,93590,92470,91380,94.59,0,1.42,3.22,4.07,4.75,5.3100000000000005,5.79,6.23,6.63,7.3500000000000005,133.17000000000002,136,138.32,140.6,142.76,144.75,147.21,149.68,155.25,12.39,12.58,12.52,12.43,12.33,12.23,12.14,12.08,12,N/A,N/A +2013,1,12,6,30,93630,92510,91420,97.52,0,0.35000000000000003,0.85,1.1400000000000001,1.5,1.96,2.5,3.0100000000000002,3.54,4.67,76.14,116.98,143.17000000000002,157.35,163.83,166.68,167.74,168.68,170.23,12.09,12.38,12.35,12.24,12.120000000000001,12,11.91,11.82,11.69,N/A,N/A +2013,1,12,7,30,93660,92530,91450,92.91,0,3.13,4.14,4.26,4.18,3.88,3.58,3.3200000000000003,3.13,2.91,311.6,309.6,307.5,304.77,299.51,294.48,287.91,282.1,269.13,12.32,12.22,12.15,12.07,11.96,11.85,11.68,11.53,11.32,N/A,N/A +2013,1,12,8,30,93650,92530,91440,90.51,0,0.2,0.6,0.89,1.17,1.42,1.6500000000000001,1.86,2.05,2.37,228.39000000000001,259.67,281.06,277.18,272.76,268.1,264.41,261.11,255.98000000000002,12.030000000000001,12.14,12.14,12.11,12.040000000000001,11.96,11.81,11.65,11.27,N/A,N/A +2013,1,12,9,30,93650,92530,91440,91.73,0,0.23,0.39,0.47000000000000003,0.67,0.9,1.17,1.43,1.7,2.18,27.16,344.62,316.01,287.75,268.22,254.31,246.6,239.77,230.59,11.97,12.05,12.030000000000001,11.950000000000001,11.86,11.77,11.64,11.5,11.21,N/A,N/A +2013,1,12,10,30,93630,92500,91410,94.8,0,0.19,0.6900000000000001,0.97,0.93,0.89,0.85,0.85,0.87,0.91,70.78,43.2,15.33,358.14,342.97,330.01,318.66,310.73,301.93,11.84,11.91,11.870000000000001,11.77,11.63,11.48,11.3,11.13,10.77,N/A,N/A +2013,1,12,11,30,93600,92480,91380,94.46000000000001,0,1.18,1.6500000000000001,1.6600000000000001,1.68,1.71,1.74,1.77,1.81,1.98,283.08,292.66,301.97,315.38,328.18,339.96,350.18,358.79,11.13,11.64,11.55,11.48,11.43,11.38,11.34,11.23,11.120000000000001,10.81,N/A,N/A +2013,1,12,12,30,93610,92480,91390,77.16,0,3.0500000000000003,3.98,4.14,4.05,3.93,3.8200000000000003,3.8200000000000003,3.81,3.67,299.99,307.88,315.46,325.5,337.69,349.81,356.75,2.4,9.700000000000001,11.17,11.200000000000001,11.25,11.3,11.36,11.42,11.370000000000001,11.31,11.13,N/A,N/A +2013,1,12,13,30,93600,92460,91370,58.35,0,1.86,3.81,4.71,5.69,6.43,7.04,7.3100000000000005,7.46,7.15,328.21,344.18,353.73,0.02,4.99,9.33,14.58,19.62,28.61,9.790000000000001,10.36,10.47,10.56,10.6,10.61,10.57,10.51,10.33,N/A,N/A +2013,1,12,14,30,93660,92520,91420,51.01,0,2.44,3.5700000000000003,4.04,4.5200000000000005,5.01,5.5,5.95,6.3500000000000005,6.8500000000000005,320.16,330.22,337.84000000000003,344.7,350.51,355.72,0.23,4.3500000000000005,11.85,10.17,10.120000000000001,10.040000000000001,9.96,9.870000000000001,9.790000000000001,9.71,9.64,9.51,N/A,N/A +2013,1,12,15,30,93690,92550,91450,42.62,0,4.79,5.88,6.22,6.390000000000001,6.5,6.57,6.61,6.640000000000001,6.71,346.28000000000003,347.42,348.18,348.89,349.61,350.28000000000003,351.14,352.01,354.21,10.61,10.19,9.98,9.78,9.58,9.4,9.21,9.02,8.66,N/A,N/A +2013,1,12,16,30,93690,92550,91450,35.300000000000004,0,3.71,4.54,4.78,4.91,4.98,5.03,5.05,5.0600000000000005,5.05,358.64,358.71,358.79,358.82,358.84000000000003,358.85,358.85,358.85,358.85,11.13,10.61,10.370000000000001,10.16,9.94,9.75,9.55,9.36,8.97,N/A,N/A +2013,1,12,17,30,93660,92530,91430,31.67,0,3.96,4.82,5.0600000000000005,5.2,5.28,5.33,5.36,5.38,5.4,341.02,341.05,341.08,341.11,341.11,341.11,341.09000000000003,341.06,340.99,12.05,11.46,11.21,10.98,10.77,10.57,10.36,10.16,9.77,N/A,N/A +2013,1,12,18,30,93700,92580,91480,32.160000000000004,0,4.91,5.92,6.28,6.44,6.54,6.61,6.65,6.67,6.69,323.45,324,324.40000000000003,324.69,324.94,325.16,325.38,325.56,325.94,12.85,12.23,11.96,11.72,11.49,11.290000000000001,11.08,10.88,10.48,N/A,N/A +2013,1,12,19,30,93680,92550,91460,28.560000000000002,0,5.41,6.62,6.99,7.17,7.28,7.3500000000000005,7.38,7.4,7.41,317.6,318.05,318.33,318.55,318.75,318.92,319.09000000000003,319.24,319.55,13.450000000000001,12.81,12.540000000000001,12.3,12.08,11.88,11.66,11.46,11.06,N/A,N/A +2013,1,12,20,30,93670,92550,91450,26.25,0,5.26,6.47,6.8500000000000005,7.0600000000000005,7.19,7.28,7.34,7.390000000000001,7.44,321.44,321.52,321.6,321.63,321.67,321.7,321.72,321.74,321.77,13.76,13.15,12.89,12.65,12.43,12.23,12.01,11.82,11.42,N/A,N/A +2013,1,12,21,30,93660,92530,91440,24.43,0,4.96,6.11,6.46,6.640000000000001,6.75,6.83,6.88,6.91,6.93,322.33,322.72,322.94,323.08,323.2,323.3,323.39,323.47,323.61,13.86,13.31,13.07,12.85,12.63,12.43,12.22,12.02,11.63,N/A,N/A +2013,1,12,22,30,93690,92560,91470,23.07,0,5.43,6.78,7.19,7.42,7.5600000000000005,7.67,7.72,7.7700000000000005,7.8100000000000005,323.65000000000003,324.17,324.51,324.79,325.03000000000003,325.25,325.48,325.69,326.13,13.68,13.26,13.06,12.85,12.64,12.450000000000001,12.24,12.040000000000001,11.65,N/A,N/A +2013,1,12,23,30,93700,92580,91480,27.51,0,3.5100000000000002,5.47,6.23,6.8100000000000005,7.26,7.63,7.92,8.18,8.56,317.5,318.79,319.61,320.2,320.67,321.09000000000003,321.48,321.85,322.56,12.09,12.11,12.02,11.88,11.700000000000001,11.53,11.33,11.15,10.76,N/A,N/A +2013,1,13,0,30,93770,92640,91540,30.11,0,4.37,6.84,7.99,8.92,9.67,10.3,10.76,11.15,11.55,316.91,319.49,321.32,322.43,323.25,323.89,324.5,325.12,326.67,10.46,10.76,10.8,10.790000000000001,10.73,10.66,10.540000000000001,10.42,10.15,N/A,N/A +2013,1,13,1,30,93780,92640,91540,30.400000000000002,0,5.4,8.2,9.34,10.24,10.89,11.4,11.71,11.950000000000001,12.13,318.85,322.55,324.67,325.99,326.78000000000003,327.32,327.89,328.56,330.63,9.96,10.290000000000001,10.370000000000001,10.41,10.39,10.35,10.26,10.16,9.950000000000001,N/A,N/A +2013,1,13,2,30,93820,92680,91580,31.68,0,5.88,8.620000000000001,9.74,10.620000000000001,11.27,11.790000000000001,12.05,12.21,12.11,327.73,330.28000000000003,332.03000000000003,333.53000000000003,334.79,335.87,336.74,337.52,339.03000000000003,9.58,9.89,9.99,10.06,10.11,10.13,10.1,10.040000000000001,9.85,N/A,N/A +2013,1,13,3,30,93860,92720,91620,39.35,0,2.8000000000000003,5.68,6.83,7.84,8.55,9.08,9.35,9.52,9.55,338.13,346.2,350.58,353.33,355.5,357.34000000000003,358.91,0.25,2.32,8.02,8.96,9.17,9.35,9.450000000000001,9.5,9.48,9.42,9.200000000000001,N/A,N/A +2013,1,13,4,30,93930,92780,91660,45.88,0,2.41,5.23,6.49,7.63,8.27,8.74,9.23,9.77,10.700000000000001,328.25,348.58,359.6,5.87,11.76,17.11,22.740000000000002,26.98,30.63,6.61,7.42,7.5,7.49,7.390000000000001,7.28,7.11,6.96,6.73,N/A,N/A +2013,1,13,5,30,94060,92900,91770,49.06,0,3.2,4.34,4.46,4.65,4.99,5.38,5.99,6.66,8.19,301.44,315.82,326.32,337.35,348.17,358.29,7.43,15.13,25.87,5.44,5.84,5.84,5.78,5.69,5.6000000000000005,5.47,5.34,5.09,N/A,N/A +2013,1,13,6,30,94110,92950,91830,53.33,0,3.16,4.96,5.38,5.71,5.83,5.9,5.89,6.07,7.23,310.33,320.67,328.25,335.76,343.44,350.97,0.44,10.040000000000001,27.46,4.61,5.2,5.23,5.15,4.99,4.82,4.61,4.4,4.11,N/A,N/A +2013,1,13,7,30,94190,93030,91900,62.870000000000005,0,2.85,5,5.8500000000000005,6.75,7.32,7.76,8.05,8.3,8.67,314.47,333.34000000000003,344.5,353.77,1.49,8.34,15,19.86,23.88,3.64,4.3,4.37,4.37,4.2,4.03,3.88,3.81,3.74,N/A,N/A +2013,1,13,8,30,94290,93110,91980,60.410000000000004,0,3.61,5.15,5.44,5.55,5.75,5.96,6.21,6.48,7.2,306.63,314.51,321.94,330.67,340.47,349.65000000000003,358.13,5.71,18.36,2.98,3.44,3.5100000000000002,3.47,3.4,3.33,3.23,3.1,2.7,N/A,N/A +2013,1,13,9,30,94350,93180,92040,70.01,0,3.16,4.83,5.42,6.05,6.66,7.19,7.5,7.73,8.07,312.46,326.22,336.11,345.57,353.64,0.87,7.5,13.5,22.46,1.94,2.39,2.45,2.43,2.35,2.27,2.13,1.99,1.7,N/A,N/A +2013,1,13,10,30,94430,93250,92100,74.62,0,2.19,3.67,4.29,5.19,5.8500000000000005,6.390000000000001,6.76,7.140000000000001,7.97,309.46,334.04,349.39,0.98,8.64,14.84,20.740000000000002,26.080000000000002,33.7,0.98,1.62,1.62,1.57,1.44,1.29,1.1,0.91,0.55,N/A,N/A +2013,1,13,11,30,94510,93330,92180,78.53,0,1.94,3.94,4.84,5.55,5.84,6.01,6.22,6.51,7.140000000000001,328.67,349.92,3.63,10.5,16.47,21.43,25.11,26.82,24.8,-0.17,0.49,0.48,0.4,0.26,0.13,0,-0.1,-0.2,N/A,N/A +2013,1,13,12,30,94580,93390,92230,81.64,0,1.11,2.4,3.15,3.97,4.65,5.23,5.66,6.01,6.57,311.54,335.26,348.8,356.63,2.2,6.83,10.07,13.18,18.67,-0.86,-0.31,-0.29,-0.32,-0.4,-0.5,-0.64,-0.81,-1.22,N/A,N/A +2013,1,13,13,30,94650,93450,92290,78.12,0,1.9100000000000001,3.69,4.63,5.76,6.54,7.17,7.75,8.290000000000001,9.02,314.44,340.94,356.8,4.72,10.05,14.280000000000001,17.72,20.18,22.69,-1.49,-1.16,-1.24,-1.31,-1.41,-1.52,-1.6600000000000001,-1.79,-1.87,N/A,N/A +2013,1,13,14,30,94680,93490,92330,63.2,0,3,4.17,4.79,5.3500000000000005,5.82,6.26,6.73,7.16,8,3,6.390000000000001,8.71,10.89,11.9,12.67,13.43,14.1,14.99,-1.09,-1.3900000000000001,-1.56,-1.74,-1.93,-2.1,-2.29,-2.47,-2.73,N/A,N/A +2013,1,13,15,30,94710,93510,92360,58.56,0,2.97,3.74,4.01,4.17,4.28,4.37,4.44,4.51,4.65,4.8500000000000005,5.78,6.28,6.62,6.8500000000000005,7.04,7.19,7.34,7.8100000000000005,0.23,-0.23,-0.45,-0.64,-0.84,-1.03,-1.21,-1.4000000000000001,-1.76,N/A,N/A +2013,1,13,16,30,94720,93540,92390,51.52,0,3.15,3.84,4.09,4.22,4.3100000000000005,4.38,4.43,4.47,4.54,2.0100000000000002,1.96,1.87,1.77,1.7,1.6300000000000001,1.55,1.48,1.37,2.17,1.6500000000000001,1.41,1.19,0.98,0.79,0.59,0.4,0.02,N/A,N/A +2013,1,13,17,30,94670,93490,92350,45.37,0,3.06,3.72,3.96,4.1,4.19,4.26,4.3100000000000005,4.3500000000000005,4.43,6.43,5.63,5.1000000000000005,4.66,4.26,3.91,3.5300000000000002,3.19,2.52,3.91,3.37,3.11,2.89,2.67,2.47,2.27,2.08,1.69,N/A,N/A +2013,1,13,18,30,94620,93450,92320,37.44,0,3.34,4.07,4.32,4.45,4.54,4.61,4.66,4.7,4.76,5.39,5.11,4.89,4.74,4.63,4.53,4.44,4.37,4.24,5.5200000000000005,4.93,4.67,4.44,4.21,4.01,3.79,3.6,3.2,N/A,N/A +2013,1,13,19,30,94580,93410,92280,33.02,0,3.59,4.36,4.6000000000000005,4.73,4.8100000000000005,4.87,4.91,4.94,4.97,17.31,17,16.8,16.63,16.47,16.330000000000002,16.18,16.03,15.74,6.44,5.84,5.57,5.34,5.11,4.91,4.69,4.49,4.09,N/A,N/A +2013,1,13,20,30,94560,93400,92270,31.75,0,3.58,4.32,4.5600000000000005,4.68,4.76,4.8100000000000005,4.84,4.86,4.88,31.57,31.16,30.830000000000002,30.560000000000002,30.3,30.060000000000002,29.8,29.57,29.09,7.0200000000000005,6.44,6.18,5.94,5.72,5.51,5.3,5.09,4.69,N/A,N/A +2013,1,13,21,30,94530,93370,92240,31.8,0,3.75,4.5200000000000005,4.7700000000000005,4.89,4.96,5.01,5.03,5.05,5.0600000000000005,42.32,42.04,41.83,41.68,41.54,41.410000000000004,41.28,41.15,40.89,7.18,6.640000000000001,6.390000000000001,6.17,5.95,5.74,5.53,5.33,4.93,N/A,N/A +2013,1,13,22,30,94510,93340,92220,33.02,0,3.8200000000000003,4.66,4.91,5.03,5.1000000000000005,5.15,5.17,5.18,5.18,53.78,53.65,53.59,53.550000000000004,53.51,53.47,53.43,53.4,53.32,6.95,6.5,6.28,6.07,5.8500000000000005,5.66,5.45,5.25,4.8500000000000005,N/A,N/A +2013,1,13,23,30,94520,93360,92230,38.42,0,3.5500000000000003,4.99,5.47,5.8,6,6.16,6.25,6.32,6.390000000000001,69.52,69.73,69.75,69.73,69.65,69.56,69.42,69.28,68.93,5.9,5.8,5.67,5.51,5.32,5.14,4.94,4.74,4.3500000000000005,N/A,N/A +2013,1,14,0,30,94540,93370,92240,44.230000000000004,0,3.04,4.89,5.51,6,6.42,6.79,7.1000000000000005,7.34,7.66,70.89,71.93,72.85000000000001,73.97,74.9,75.65,76.03,76.23,76.17,4.26,4.64,4.66,4.59,4.46,4.3100000000000005,4.13,3.94,3.56,N/A,N/A +2013,1,14,1,30,94580,93410,92270,43.85,0,3.49,5.59,6.45,7.11,7.6000000000000005,8,8.3,8.55,8.93,70.81,70.52,70.58,71.07000000000001,71.89,72.78,73.84,74.82000000000001,76.56,3.45,3.72,3.73,3.69,3.6,3.5,3.36,3.21,2.88,N/A,N/A +2013,1,14,2,30,94590,93410,92270,53.71,0,2.18,4.42,5.44,6.43,7.28,8.040000000000001,8.700000000000001,9.25,10.07,92.64,85.73,81.9,79.96000000000001,79.19,78.77,78.79,78.92,79.47,2.11,2.5500000000000003,2.5300000000000002,2.49,2.4,2.32,2.22,2.1,1.85,N/A,N/A +2013,1,14,3,30,94610,93430,92280,56.410000000000004,0,2.0100000000000002,4.21,5.2700000000000005,6.26,7.11,7.88,8.55,9.14,10.09,78.53,76.14,74.74,73.93,73.68,73.64,73.92,74.31,75.38,1.37,1.78,1.73,1.6500000000000001,1.54,1.44,1.31,1.19,0.92,N/A,N/A +2013,1,14,4,30,94650,93460,92310,58.47,0,1.82,3.72,4.67,5.58,6.4,7.16,7.87,8.51,9.64,62.85,70.34,74.43,75.51,75.68,75.64,75.54,75.53,75.82000000000001,0.49,0.88,0.81,0.7000000000000001,0.5700000000000001,0.44,0.29,0.15,-0.13,N/A,N/A +2013,1,14,5,30,94680,93490,92340,61.65,0,0.89,1.73,2.29,3.16,4.04,4.93,5.7700000000000005,6.57,8.02,23.990000000000002,52.59,66.22,68.86,70.27,71.33,72.19,72.96000000000001,74.22,-0.42,0.16,0.07,-0.16,-0.35000000000000003,-0.52,-0.6900000000000001,-0.86,-1.18,N/A,N/A +2013,1,14,6,30,94730,93530,92370,60.44,0,2.15,3.73,4.25,4.74,5.37,6,6.65,7.28,8.48,43.08,55.35,61.93,65.83,67.62,68.93,69.95,70.77,72,-1.12,-0.64,-0.71,-0.88,-1.05,-1.2,-1.36,-1.53,-1.86,N/A,N/A +2013,1,14,7,30,94770,93570,92410,55.93,0,2.99,4.78,5.5200000000000005,6.17,6.76,7.29,7.79,8.25,9.11,56.31,57.11,58.49,60.59,62.99,65.17,66.99,68.42,70.45,-1.36,-1.23,-1.3,-1.42,-1.57,-1.71,-1.87,-2.0300000000000002,-2.34,N/A,N/A +2013,1,14,8,30,94790,93590,92420,58.89,0,2.04,3.72,4.34,4.87,5.4,5.91,6.41,6.890000000000001,7.84,59.870000000000005,56.11,55.050000000000004,56,57.26,58.54,59.9,61.2,63.6,-1.8800000000000001,-1.6,-1.68,-1.79,-1.94,-2.08,-2.24,-2.4,-2.72,N/A,N/A +2013,1,14,9,30,94790,93590,92420,57.160000000000004,0,2.05,3.66,4.16,4.57,5.03,5.48,5.97,6.43,7.3,48.67,47.7,48.75,51.410000000000004,53.32,55.02,56.72,58.33,61.22,-2.0100000000000002,-1.76,-1.87,-2.0300000000000002,-2.18,-2.33,-2.49,-2.65,-2.98,N/A,N/A +2013,1,14,10,30,94790,93590,92430,55.46,0,1.96,3.46,3.9,4.21,4.5600000000000005,4.93,5.3500000000000005,5.7700000000000005,6.59,42.71,43.37,45.21,48.31,50.83,53.09,55.32,57.34,60.88,-2.17,-1.9100000000000001,-2.04,-2.22,-2.4,-2.56,-2.73,-2.89,-3.21,N/A,N/A +2013,1,14,11,30,94810,93610,92440,57.56,0,1.78,3.14,3.56,3.88,4.24,4.61,5.0200000000000005,5.43,6.23,52,51.06,51.980000000000004,54.59,56.81,58.71,60.25,61.65,64.14,-2.5100000000000002,-2.2600000000000002,-2.37,-2.52,-2.68,-2.83,-3,-3.17,-3.5100000000000002,N/A,N/A +2013,1,14,12,30,94830,93630,92460,59.82,0,1.75,3.11,3.52,3.79,4.12,4.45,4.83,5.22,5.99,42.97,42.79,44.4,47.7,50.31,52.59,54.61,56.5,59.85,-2.83,-2.58,-2.69,-2.85,-3.0100000000000002,-3.17,-3.34,-3.5100000000000002,-3.86,N/A,N/A +2013,1,14,13,30,94840,93630,92460,61.33,0,1.59,2.95,3.34,3.56,3.8000000000000003,4.05,4.38,4.73,5.47,36.44,36.57,38.64,42.18,45.46,48.34,50.93,53.32,57.58,-3.11,-2.88,-2.99,-3.13,-3.29,-3.45,-3.62,-3.79,-4.12,N/A,N/A +2013,1,14,14,30,94840,93640,92470,55.01,0,2.52,3.18,3.42,3.59,3.74,3.88,4.0600000000000005,4.32,4.92,51.160000000000004,52.19,53.03,53.92,54.94,56.050000000000004,57.5,59.4,63.22,-2.62,-2.92,-3.1,-3.2800000000000002,-3.46,-3.64,-3.81,-3.98,-4.3100000000000005,N/A,N/A +2013,1,14,15,30,94840,93640,92470,50.99,0,3.63,4.4,4.64,4.7700000000000005,4.84,4.89,4.91,4.93,4.95,60.17,60.93,61.480000000000004,61.99,62.51,63,63.51,64.04,65.15,-1.36,-1.84,-2.07,-2.2800000000000002,-2.49,-2.68,-2.88,-3.0700000000000003,-3.46,N/A,N/A +2013,1,14,16,30,94820,93620,92460,46.71,0,3.27,3.92,4.14,4.26,4.32,4.37,4.39,4.41,4.43,64.61,65.24,65.69,66.12,66.55,66.93,67.32000000000001,67.71000000000001,68.52,0.16,-0.37,-0.62,-0.84,-1.06,-1.26,-1.46,-1.6600000000000001,-2.05,N/A,N/A +2013,1,14,17,30,94760,93570,92420,42.76,0,3.09,3.73,3.94,4.05,4.12,4.17,4.2,4.22,4.25,72.65,72.9,73.09,73.28,73.47,73.63,73.81,73.99,74.33,1.73,1.17,0.9,0.68,0.46,0.25,0.05,-0.15,-0.54,N/A,N/A +2013,1,14,18,30,94700,93520,92370,39.62,0,2.98,3.6,3.8000000000000003,3.9,3.96,4.01,4.04,4.07,4.09,83.54,83.7,83.77,83.84,83.91,83.97,84.03,84.08,84.19,3.19,2.63,2.36,2.12,1.9000000000000001,1.69,1.48,1.28,0.88,N/A,N/A +2013,1,14,19,30,94640,93470,92330,37.18,0,2.84,3.43,3.63,3.72,3.7800000000000002,3.83,3.86,3.89,3.92,93.04,93.27,93.41,93.49,93.55,93.58,93.62,93.64,93.68,4.26,3.7,3.44,3.21,2.99,2.79,2.58,2.38,1.98,N/A,N/A +2013,1,14,20,30,94600,93430,92300,35.71,0,3.18,3.8200000000000003,4.03,4.13,4.18,4.22,4.25,4.26,4.28,94.72,95.23,95.53,95.74000000000001,95.9,96.03,96.16,96.26,96.45,5.11,4.5600000000000005,4.3,4.07,3.85,3.65,3.43,3.23,2.84,N/A,N/A +2013,1,14,21,30,94560,93390,92250,35.25,0,3.24,3.93,4.17,4.29,4.38,4.44,4.48,4.51,4.5600000000000005,92.23,92.85000000000001,93.25,93.51,93.73,93.92,94.11,94.27,94.59,5.6000000000000005,5.07,4.83,4.61,4.38,4.18,3.97,3.77,3.37,N/A,N/A +2013,1,14,22,30,94530,93360,92230,35.56,0,3.5100000000000002,4.29,4.57,4.72,4.82,4.89,4.94,4.98,5.03,90.67,91.65,92.26,92.69,93.02,93.31,93.57000000000001,93.8,94.22,5.7,5.2700000000000005,5.05,4.84,4.62,4.43,4.22,4.0200000000000005,3.62,N/A,N/A +2013,1,14,23,30,94540,93380,92240,40.660000000000004,0,3.15,4.5200000000000005,4.95,5.24,5.43,5.5600000000000005,5.66,5.73,5.84,73.14,74.41,75.57000000000001,76.88,78.13,79.25,80.33,81.33,83.21000000000001,4.63,4.62,4.5200000000000005,4.37,4.2,4.04,3.84,3.65,3.27,N/A,N/A +2013,1,15,0,30,94560,93380,92240,40.72,0,4.54,6.8100000000000005,7.67,8.25,8.53,8.68,8.64,8.56,8.33,71.9,72.35000000000001,72.71000000000001,73.06,73.31,73.51,73.65,73.87,74.71000000000001,3.2800000000000002,3.47,3.48,3.44,3.35,3.25,3.1,2.95,2.61,N/A,N/A +2013,1,15,1,30,94570,93390,92240,47.04,0,4.2,6.43,7.32,8.05,8.6,9.05,9.4,9.67,10.02,59.370000000000005,60.370000000000005,61.160000000000004,61.980000000000004,63.06,64.18,65.54,66.96000000000001,69.89,1.86,1.96,1.92,1.87,1.8,1.72,1.6300000000000001,1.54,1.34,N/A,N/A +2013,1,15,2,30,94580,93400,92250,47.07,0,4.3100000000000005,6.54,7.51,8.34,9.05,9.66,10.18,10.620000000000001,11.32,62.440000000000005,63.28,63.88,64.47,65.23,66.01,66.93,67.9,70.07000000000001,0.86,0.87,0.79,0.7000000000000001,0.6,0.5,0.4,0.3,0.11,N/A,N/A +2013,1,15,3,30,94610,93420,92270,56.75,0,2.22,4.3,5.2,6.04,6.7700000000000005,7.42,8,8.52,9.370000000000001,58.65,60.64,62.1,63.230000000000004,64.35,65.43,66.57000000000001,67.71000000000001,69.94,-0.22,0.26,0.18,0.09,-0.02,-0.12,-0.23,-0.33,-0.52,N/A,N/A +2013,1,15,4,30,94610,93420,92260,60.04,0,1.52,3.42,4.24,4.82,5.38,5.93,6.5200000000000005,7.12,8.3,44.25,41.52,42.65,46.56,50.480000000000004,53.910000000000004,56.69,58.88,62.27,-1.11,-0.73,-0.78,-0.87,-1,-1.1,-1.21,-1.31,-1.5,N/A,N/A +2013,1,15,5,30,94640,93440,92290,61.81,0,1.58,3.38,4.03,4.3,4.63,4.98,5.44,5.95,7.09,30.98,31.3,33.82,38.24,42.19,45.74,49.1,52.21,57.63,-1.56,-1.19,-1.26,-1.37,-1.51,-1.6300000000000001,-1.75,-1.86,-2.09,N/A,N/A +2013,1,15,6,30,94660,93460,92300,61.06,0,1.34,3.12,3.7600000000000002,4.03,4.3100000000000005,4.61,5.01,5.45,6.45,24.05,26.68,30.48,35.04,39.67,43.58,46.64,49.34,54.230000000000004,-1.85,-1.58,-1.6600000000000001,-1.77,-1.93,-2.07,-2.21,-2.35,-2.59,N/A,N/A +2013,1,15,7,30,94680,93490,92320,59.69,0,1.36,3.0700000000000003,3.77,4.12,4.46,4.79,5.18,5.58,6.41,31.95,33.64,36.74,41.28,45.01,48.1,50.42,52.47,56.21,-2.04,-1.73,-1.8,-1.92,-2.08,-2.22,-2.36,-2.5100000000000002,-2.7800000000000002,N/A,N/A +2013,1,15,8,30,94660,93470,92300,59.52,0,1.5,3.2600000000000002,3.84,4.13,4.4,4.68,5,5.36,6.1000000000000005,22.88,28.740000000000002,33.59,38.02,41.76,44.86,47.39,49.63,53.59,-2.2,-1.95,-2.06,-2.21,-2.37,-2.5300000000000002,-2.68,-2.83,-3.1,N/A,N/A +2013,1,15,9,30,94690,93480,92320,62.03,0,0.07,1.06,2.59,3.33,3.71,4.0200000000000005,4.33,4.69,5.49,211.76,291.2,28.79,31.76,35.95,39.82,43.22,45.800000000000004,49.59,-2.86,-2.44,-2.48,-2.61,-2.77,-2.92,-3.0700000000000003,-3.22,-3.5,N/A,N/A +2013,1,15,10,30,94680,93480,92310,62.01,0,0.31,1.25,2.08,2.7800000000000002,3.12,3.38,3.69,4.07,4.94,248.44,323.8,15.39,21.52,28.21,34.06,38.78,42.25,47.01,-3.04,-2.61,-2.66,-2.81,-2.98,-3.13,-3.29,-3.44,-3.71,N/A,N/A +2013,1,15,11,30,94690,93490,92320,62.58,0,0.6,1.25,1.72,2.44,2.88,3.2,3.34,3.5500000000000003,4.2,281.34000000000003,329.92,356.09000000000003,7.19,14.540000000000001,20.92,27.19,32.39,39.92,-3.14,-2.8000000000000003,-2.87,-2.99,-3.15,-3.31,-3.49,-3.65,-3.95,N/A,N/A +2013,1,15,12,30,94710,93510,92340,62.56,0,1.3800000000000001,2.08,2.42,3.04,3.65,4.18,4.5200000000000005,4.79,5.3100000000000005,314.11,340.56,354.65000000000003,5.2700000000000005,10.89,15.51,19.43,23.04,28.94,-3.11,-2.81,-2.91,-3.0500000000000003,-3.21,-3.36,-3.5100000000000002,-3.68,-4.04,N/A,N/A +2013,1,15,13,30,94750,93540,92370,63.96,0,2.27,3.23,3.4,3.69,4.17,4.62,4.97,5.15,5.36,310.85,324.93,335.44,346.39,353.92,0.08,4.41,8.120000000000001,14.4,-3.37,-2.96,-3.0100000000000002,-3.12,-3.29,-3.45,-3.61,-3.7600000000000002,-4.07,N/A,N/A +2013,1,15,14,30,94800,93590,92420,52.160000000000004,0,2.16,2.99,3.45,3.88,4.22,4.53,4.8500000000000005,5.18,5.8,344.94,351.23,354.47,355.98,358.64,1.23,3.59,5.96,10.72,-2.47,-2.71,-2.88,-3.06,-3.25,-3.42,-3.6,-3.79,-4.15,N/A,N/A +2013,1,15,15,30,94810,93610,92450,45.58,0,3,3.7,3.94,4.08,4.17,4.25,4.3100000000000005,4.36,4.46,3.69,3.5700000000000003,3.48,3.47,3.49,3.54,3.64,3.77,4.15,-1.24,-1.7,-1.92,-2.12,-2.33,-2.52,-2.71,-2.9,-3.2800000000000002,N/A,N/A +2013,1,15,16,30,94800,93610,92450,40.26,0,3.36,4.14,4.4,4.55,4.65,4.72,4.79,4.83,4.91,4.68,5.13,5.47,5.7700000000000005,6.0600000000000005,6.33,6.61,6.890000000000001,7.46,0.52,-0.01,-0.26,-0.48,-0.6900000000000001,-0.89,-1.09,-1.29,-1.68,N/A,N/A +2013,1,15,17,30,94790,93600,92440,36.79,0,3.58,4.36,4.62,4.7700000000000005,4.86,4.94,5,5.04,5.11,357.87,357.89,357.89,357.91,357.93,357.96,357.98,358.01,358.08,1.77,1.19,0.92,0.6900000000000001,0.46,0.25,0.04,-0.16,-0.56,N/A,N/A +2013,1,15,18,30,94760,93580,92430,34.53,0,3.71,4.5200000000000005,4.78,4.93,5.04,5.11,5.17,5.22,5.29,353.49,353.71,353.82,353.90000000000003,353.96,354.02,354.07,354.12,354.2,2.96,2.36,2.09,1.85,1.62,1.41,1.19,0.99,0.58,N/A,N/A +2013,1,15,19,30,94760,93580,92430,33.14,0,4.19,5.11,5.41,5.6000000000000005,5.72,5.82,5.89,5.95,6.03,357.49,356.86,356.46,356.15000000000003,355.90000000000003,355.69,355.48,355.29,354.95,3.9,3.29,3.0300000000000002,2.79,2.5500000000000003,2.34,2.12,1.9100000000000001,1.51,N/A,N/A +2013,1,15,20,30,94750,93570,92430,32.410000000000004,0,4.67,5.66,5.98,6.19,6.3100000000000005,6.41,6.49,6.54,6.63,355.42,353.64,352.61,351.86,351.28000000000003,350.81,350.41,350.06,349.49,4.3100000000000005,3.72,3.46,3.22,2.98,2.7800000000000002,2.56,2.35,1.94,N/A,N/A +2013,1,15,21,30,94760,93580,92440,31.52,0,5.46,6.75,7.15,7.3500000000000005,7.46,7.55,7.6000000000000005,7.640000000000001,7.68,347.23,347.39,347.43,347.42,347.40000000000003,347.38,347.36,347.34000000000003,347.29,4.46,3.9,3.65,3.43,3.21,3.0100000000000002,2.8000000000000003,2.6,2.2,N/A,N/A +2013,1,15,22,30,94790,93610,92470,31.66,0,5.55,6.91,7.3100000000000005,7.5,7.62,7.71,7.75,7.79,7.82,348.26,348.44,348.49,348.47,348.45,348.43,348.40000000000003,348.36,348.28000000000003,4.44,4,3.7800000000000002,3.58,3.36,3.17,2.96,2.77,2.37,N/A,N/A +2013,1,15,23,30,94830,93660,92510,34.480000000000004,0,4.23,6.16,6.8,7.15,7.36,7.5200000000000005,7.62,7.7,7.8100000000000005,353.05,353.15000000000003,353.25,353.36,353.47,353.57,353.64,353.68,353.72,3.66,3.61,3.49,3.33,3.14,2.96,2.77,2.57,2.19,N/A,N/A +2013,1,16,0,30,94910,93730,92580,39.87,0,3.39,6.46,7.79,8.58,8.870000000000001,8.98,8.89,8.77,8.5,356.53000000000003,359.64,1.44,2.18,2.54,2.74,2.75,2.67,2.21,2.17,2.84,2.97,2.98,2.87,2.74,2.5500000000000003,2.36,1.98,N/A,N/A +2013,1,16,1,30,94960,93780,92630,46.18,0,2.84,5.51,6.45,7.07,7.43,7.68,7.8500000000000005,7.98,8.21,359.18,0.8300000000000001,1.83,2.33,2.5,2.52,2.23,1.75,0.26,1.3900000000000001,2.4,2.5300000000000002,2.56,2.49,2.39,2.25,2.1,1.77,N/A,N/A +2013,1,16,2,30,95000,93810,92660,54.74,0,2.62,4.17,4.49,4.79,5.19,5.61,6.13,6.66,7.58,303.36,312.36,318.48,324.17,329.40000000000003,333.92,337.58,341.18,346.76,-0.35000000000000003,0.62,0.78,0.84,0.86,0.86,0.84,0.85,0.8300000000000001,N/A,N/A +2013,1,16,3,30,95040,93840,92680,57.67,0,1.08,2.6,3.46,4.22,4.78,5.2700000000000005,5.76,6.15,6.78,276.64,305.29,319.53000000000003,323.17,324.43,325.67,328.01,331.11,337.99,-1.06,-0.3,-0.14,-0.01,0.03,0.07,0.08,0.08,0.06,N/A,N/A +2013,1,16,4,30,95070,93870,92710,67.52,0,1.07,2.33,3.15,4.16,4.91,5.57,6.12,6.66,7.5200000000000005,230.02,282.56,305.71,313.17,316.18,318.40000000000003,320.16,322.43,327.53000000000003,-1.42,-0.85,-0.73,-0.64,-0.58,-0.54,-0.5,-0.45,-0.34,N/A,N/A +2013,1,16,5,30,95110,93910,92750,64.32000000000001,0,0.75,1.04,1.3,1.9100000000000001,2.5500000000000003,3.23,3.86,4.47,5.59,210.87,274.41,301.68,317.52,321.95,324.04,325.62,326.8,328.53000000000003,-1.2,-0.63,-0.64,-0.6900000000000001,-0.74,-0.79,-0.8200000000000001,-0.8300000000000001,-0.77,N/A,N/A +2013,1,16,6,30,95130,93930,92770,63.300000000000004,0,0.79,0.97,0.96,1.01,1.29,1.6400000000000001,2.0300000000000002,2.47,3.47,258.59000000000003,282.8,301.34000000000003,321.98,329.37,333.83,333.64,333.19,332.13,-1.07,-0.42,-0.45,-0.54,-0.63,-0.71,-0.8,-0.84,-0.84,N/A,N/A +2013,1,16,7,30,95150,93950,92790,71.21000000000001,0,1.09,1.96,2.37,2.89,3.39,3.88,4.36,4.8100000000000005,5.6000000000000005,248.33,273.08,286.83,296.92,301.93,305.57,307.65000000000003,309.15000000000003,311.33,-1.82,-1.12,-1.02,-0.96,-0.89,-0.8200000000000001,-0.72,-0.63,-0.53,N/A,N/A +2013,1,16,8,30,95150,93950,92790,72,0,1.45,3.25,4.14,4.97,5.5,5.92,6.23,6.49,6.95,274.45,294.39,302.95,306.2,306.31,306.13,305.89,305.74,305.71,-1.79,-0.87,-0.63,-0.43,-0.32,-0.26,-0.28,-0.33,-0.45,N/A,N/A +2013,1,16,9,30,95140,93940,92780,72.8,0,2.38,4.07,4.68,5.36,6.04,6.7,7.4,8.08,9.35,257.49,284.58,296.55,304.02,305.02,305.19,304.49,304.21,304.76,-1.95,-0.99,-0.91,-0.9500000000000001,-0.97,-0.99,-1.01,-1.03,-1.08,N/A,N/A +2013,1,16,10,30,95170,93970,92800,74.08,0,0.81,1.46,2.0300000000000002,3.06,4.09,5.11,6.0600000000000005,6.890000000000001,8.24,207.5,267.37,293.16,307.3,310.07,311.43,312.2,312.45,312.33,-2.44,-2.05,-2.0300000000000002,-1.93,-1.79,-1.6600000000000001,-1.56,-1.5,-1.46,N/A,N/A +2013,1,16,11,30,95190,93980,92820,75.12,0,1.26,2.29,3.0300000000000002,4.13,5.23,6.2700000000000005,7.140000000000001,7.88,9.27,240.18,273.5,290.83,305.87,309.5,311.32,310.73,309.57,306.99,-2.93,-2.24,-2.07,-1.8800000000000001,-1.6600000000000001,-1.47,-1.32,-1.24,-1.16,N/A,N/A +2013,1,16,12,30,95180,93980,92810,74.31,0,0.91,2.23,3.09,4.08,4.93,5.76,6.54,7.16,8.23,266.56,293.66,305.56,310.96,312.07,312.37,311.58,310.81,309.79,-2.97,-2.18,-2,-1.84,-1.69,-1.56,-1.43,-1.37,-1.31,N/A,N/A +2013,1,16,13,30,95180,93970,92810,73.92,0,1.22,1.94,2.67,3.96,4.6000000000000005,5.21,5.82,6.42,7.5200000000000005,205.49,274.61,295.75,305.24,306.79,307.79,308.21,308.28000000000003,307.54,-3.0700000000000003,-2.34,-2.02,-1.6500000000000001,-1.6300000000000001,-1.6,-1.56,-1.5,-1.41,N/A,N/A +2013,1,16,14,30,95190,93990,92820,61.050000000000004,0,1.8,1.54,2.14,3.74,4.62,5.46,6.2700000000000005,6.98,8.21,211.34,259.54,279.90000000000003,306.6,308.77,309.39,308.48,307.29,305.18,-1.9100000000000001,-2.42,-2.38,-2.16,-1.94,-1.74,-1.52,-1.33,-1.1,N/A,N/A +2013,1,16,15,30,95160,93970,92810,43.89,0,4.09,5.14,5.66,6.18,7.140000000000001,8.07,8.93,9.620000000000001,10.73,298.02,300.77,302.62,304.42,306.84000000000003,308.58,309.1,308.94,307.6,0.9400000000000001,0.6,0.47000000000000003,0.38,0.34,0.33,0.36,0.4,0.47000000000000003,N/A,N/A +2013,1,16,16,30,95130,93950,92800,32.06,0,4.84,6.04,6.37,6.58,6.73,6.86,6.99,7.13,7.47,296.54,297.01,297.18,297.27,297.37,297.46,297.58,297.76,298.23,3.36,2.82,2.59,2.4,2.2,2.02,1.85,1.68,1.36,N/A,N/A +2013,1,16,17,30,95080,93910,92760,24.82,0,7.09,8.91,9.39,9.68,9.870000000000001,10,10.1,10.18,10.3,303.51,304.07,304.34000000000003,304.53000000000003,304.69,304.81,304.93,305.05,305.26,5.76,5.16,4.9,4.69,4.46,4.26,4.0600000000000005,3.86,3.47,N/A,N/A +2013,1,16,18,30,95040,93880,92740,23.580000000000002,0,7.6000000000000005,9.52,10.03,10.35,10.540000000000001,10.68,10.790000000000001,10.86,10.98,308.93,309.13,309.19,309.2,309.19,309.18,309.15000000000003,309.12,309.05,7.1000000000000005,6.47,6.21,5.98,5.75,5.54,5.34,5.13,4.74,N/A,N/A +2013,1,16,19,30,95010,93850,92720,24.86,0,7.140000000000001,8.99,9.5,9.81,10.01,10.16,10.28,10.36,10.49,309.87,310.18,310.31,310.40000000000003,310.44,310.49,310.53000000000003,310.55,310.61,8.26,7.640000000000001,7.38,7.16,6.93,6.72,6.51,6.3100000000000005,5.91,N/A,N/A +2013,1,16,20,30,94980,93820,92700,27.02,0,7.3,9.15,9.63,9.92,10.1,10.24,10.34,10.42,10.53,315.83,315.88,315.87,315.83,315.8,315.75,315.71,315.67,315.59000000000003,9.25,8.65,8.4,8.18,7.95,7.75,7.55,7.34,6.95,N/A,N/A +2013,1,16,21,30,94970,93820,92700,25.85,0,6.1000000000000005,7.7,8.120000000000001,8.39,8.56,8.700000000000001,8.8,8.88,9,311.71,311.7,311.71,311.69,311.68,311.66,311.64,311.63,311.59000000000003,9.88,9.36,9.13,8.92,8.700000000000001,8.5,8.290000000000001,8.09,7.69,N/A,N/A +2013,1,16,22,30,94970,93810,92690,23.740000000000002,0,6.07,7.8100000000000005,8.26,8.57,8.77,8.94,9.06,9.16,9.31,301.41,302.19,302.61,302.93,303.23,303.5,303.75,303.99,304.43,10.02,9.65,9.450000000000001,9.26,9.05,8.86,8.66,8.46,8.06,N/A,N/A +2013,1,16,23,30,94990,93830,92710,36.72,0,1.99,4.28,5.26,6.18,6.95,7.63,8.21,8.72,9.58,279.91,295.12,302.23,306.33,308.49,310.05,310.79,311.26,311.58,8.39,8.99,8.98,8.93,8.81,8.69,8.52,8.36,8,N/A,N/A +2013,1,17,0,30,95030,93860,92730,42.5,0,2.67,3.96,4.64,5.83,6.94,7.95,8.75,9.46,10.790000000000001,242.01,279.76,296.93,311.40000000000003,315.89,318.26,318.31,317.99,316.76,6.45,7.13,7.23,7.36,7.5200000000000005,7.640000000000001,7.71,7.72,7.62,N/A,N/A +2013,1,17,1,30,95060,93890,92760,42.75,0,3.58,4.37,4.8500000000000005,5.73,6.66,7.47,8.02,8.61,9.89,241.11,270.42,288.31,307.42,312.14,314.47,313.82,313.31,312.88,5.2700000000000005,6.01,6.32,6.62,6.94,7.18,7.3,7.33,7.2700000000000005,N/A,N/A +2013,1,17,2,30,95110,93930,92810,43.94,0,3.93,4.5600000000000005,5.26,6.49,7.54,8.4,8.91,9.370000000000001,10.24,237.53,269.71,288.95,309.64,314.36,316.76,316.61,316.25,315.62,4.67,5.46,6,6.5600000000000005,7.0200000000000005,7.33,7.43,7.42,7.23,N/A,N/A +2013,1,17,3,30,95170,94000,92870,44.94,0,4.1,5.09,5.74,6.79,7.5200000000000005,8.14,8.63,9.08,9.96,240.25,274.94,291.93,307.27,310.27,311.81,312.14,312.56,313.53000000000003,4.49,5.4,5.91,6.41,6.69,6.87,6.93,6.95,6.93,N/A,N/A +2013,1,17,4,30,95230,94050,92920,47.300000000000004,0,3.84,5.65,6.53,7.71,8.25,8.69,9.13,9.540000000000001,10.34,253.39000000000001,287.79,301.54,310.13,311.13,311.40000000000003,311.72,311.85,311.84000000000003,4.26,5.34,5.8500000000000005,6.3100000000000005,6.55,6.71,6.8,6.86,6.96,N/A,N/A +2013,1,17,5,30,95280,94100,92970,54.77,0,2.71,6.15,7.46,8.47,9.200000000000001,9.81,10.34,10.82,11.66,322.37,320.12,318.06,316.01,314.36,312.91,311.64,310.74,310.13,3.29,4.72,5.17,5.53,5.8100000000000005,6.0200000000000005,6.18,6.3100000000000005,6.53,N/A,N/A +2013,1,17,6,30,95290,94120,92990,48.04,0,3.63,7.3500000000000005,8.83,10.08,11.040000000000001,11.86,12.55,13.13,13.97,317.43,319.23,319.92,320.18,320.08,319.95,319.84000000000003,319.88,320.54,4.6000000000000005,5.65,5.97,6.28,6.59,6.88,7.17,7.45,8,N/A,N/A +2013,1,17,7,30,95380,94200,93060,54.620000000000005,0,1.16,1.74,2.4,4.0200000000000005,5.54,7.0200000000000005,8.290000000000001,9.41,11.11,175.64000000000001,271.11,303.26,315.89,321.39,324.85,326.40000000000003,327.46,328.48,3.18,4.1,4.17,4.25,4.3500000000000005,4.45,4.57,4.72,5.09,N/A,N/A +2013,1,17,8,30,95430,94250,93110,56.6,0,1.32,3.75,5.48,7.49,8.64,9.53,10.22,10.69,11.08,216.34,272.81,302.14,315.21,319.72,322.18,322.77,323.07,324.01,2.77,3.4,3.7,4.28,4.53,4.71,4.8500000000000005,4.99,5.2700000000000005,N/A,N/A +2013,1,17,9,30,95480,94290,93150,57.26,0,2.45,3.46,4.28,5.84,6.67,7.33,7.9,8.32,8.870000000000001,233.88,275.44,293.68,309.63,312.76,314.19,314.7,315.78000000000003,319.62,2.34,2.7,2.74,2.93,3.0700000000000003,3.2800000000000002,3.66,4.01,4.72,N/A,N/A +2013,1,17,10,30,95530,94340,93190,61.95,0,1.68,4.29,5.3500000000000005,6.05,6.28,6.51,6.83,7.17,7.82,300.81,316.43,320.29,318.62,316.87,315.75,315.63,316.19,319.07,1.33,2.72,3.0300000000000002,3.25,3.36,3.45,3.5500000000000003,3.7,4.19,N/A,N/A +2013,1,17,11,30,95570,94370,93220,63.86,0,1.94,2.35,2.7600000000000002,3.59,4.6000000000000005,5.62,6.54,7.33,8.49,244.8,286.75,303.65000000000003,318.48,321.26,322.48,322.06,321.49,321.15000000000003,0.46,1.52,1.8800000000000001,2.21,2.41,2.58,2.75,3.06,3.85,N/A,N/A +2013,1,17,12,30,95620,94420,93270,59.82,0,2.64,3.63,3.84,4.18,4.79,5.41,6.1000000000000005,6.7700000000000005,7.98,225.01,276.59000000000003,299.40000000000003,316.73,321.52,324.62,325.8,325.88,324.58,1.29,1.24,1.53,2.13,2.2600000000000002,2.38,2.5100000000000002,2.66,3.0500000000000003,N/A,N/A +2013,1,17,13,30,95670,94470,93320,62,0,2.41,4.17,5.19,6.640000000000001,7.29,7.61,7.45,7.32,7.33,252.99,293.25,309.46,318.66,320.28000000000003,320.57,319.6,319,319.54,0.33,1.56,2.06,2.56,2.7800000000000002,2.9,2.89,2.9,3.0700000000000003,N/A,N/A +2013,1,17,14,30,95700,94500,93350,53.28,0,2.04,3.99,5.11,6.26,6.99,7.51,7.73,7.92,8.25,302.47,314.04,319.62,322.91,323.27,323.05,322.06,321.86,323.52,1.51,1.73,1.9100000000000001,2.1,2.32,2.5300000000000002,2.73,2.91,3.33,N/A,N/A +2013,1,17,15,30,95720,94530,93380,43.480000000000004,0,3.2,3.9,4.07,4.17,4.3500000000000005,4.57,4.95,5.4,6.38,303.98,308.02,310.58,312.81,316.51,320.12,324.11,326.74,329.15000000000003,4.54,4.15,3.97,3.8200000000000003,3.65,3.5100000000000002,3.36,3.25,3.17,N/A,N/A +2013,1,17,16,30,95720,94540,93400,39.02,0,3.72,4.44,4.58,4.61,4.57,4.53,4.5,4.51,4.57,303.74,307.42,309.7,311.66,313.76,315.83,318.64,322.04,330.12,6.71,6.21,6,5.83,5.67,5.53,5.38,5.25,5.01,N/A,N/A +2013,1,17,17,30,95700,94530,93400,35.02,0,2.86,3.36,3.45,3.47,3.44,3.41,3.35,3.2800000000000002,3.16,308.87,312.8,315.26,317.45,319.81,321.95,324.38,326.89,332.73,9.24,8.73,8.5,8.31,8.11,7.94,7.76,7.58,7.24,N/A,N/A +2013,1,17,18,30,95650,94500,93370,32.57,0,1.79,2.12,2.21,2.25,2.2800000000000002,2.31,2.33,2.35,2.4,329.26,334.1,336.97,339.48,341.92,344.09000000000003,346.29,348.34000000000003,352.3,11.58,11.08,10.84,10.63,10.42,10.24,10.040000000000001,9.85,9.47,N/A,N/A +2013,1,17,19,30,95620,94470,93360,29.41,0,1.33,1.6300000000000001,1.72,1.78,1.83,1.87,1.9100000000000001,1.94,1.99,10.63,11.69,12.15,12.48,12.71,12.89,13.030000000000001,13.13,13.200000000000001,13.44,12.94,12.700000000000001,12.48,12.26,12.07,11.86,11.67,11.27,N/A,N/A +2013,1,17,20,30,95600,94460,93340,25.8,0,1.54,1.85,1.95,2.0100000000000002,2.05,2.08,2.11,2.13,2.17,22.84,21.3,20.53,20.01,19.56,19.17,18.79,18.43,17.7,14.38,13.88,13.64,13.42,13.21,13.01,12.8,12.61,12.21,N/A,N/A +2013,1,17,21,30,95570,94430,93320,26.02,0,1.12,1.36,1.44,1.49,1.53,1.56,1.6,1.6300000000000001,1.68,11.790000000000001,15.22,17.18,18.76,20.11,21.27,22.28,23.18,24.73,14.86,14.41,14.19,13.98,13.77,13.58,13.370000000000001,13.18,12.790000000000001,N/A,N/A +2013,1,17,22,30,95560,94420,93310,23.68,0,0.91,1.12,1.2,1.26,1.31,1.35,1.3900000000000001,1.43,1.49,27.98,31.38,33.4,34.95,36.24,37.35,38.34,39.22,40.75,15.08,14.72,14.530000000000001,14.33,14.13,13.94,13.73,13.540000000000001,13.15,N/A,N/A +2013,1,17,23,30,95570,94420,93310,41.15,0,1.5,2.43,2.43,2.29,2.13,1.99,1.8,1.6300000000000001,1.29,300.19,299.07,298.21,297.41,297.97,298.87,301.7,305.11,317.33,13.25,13.790000000000001,13.72,13.58,13.43,13.290000000000001,13.13,12.97,12.65,N/A,N/A +2013,1,18,0,30,95590,94440,93330,42.17,0,1.81,2.29,2.18,2.15,2.14,2.12,2.06,2,1.81,319.03000000000003,307.04,303.3,302.78000000000003,304.84000000000003,307.35,310.24,312.89,318.5,11.91,13.040000000000001,13.11,13.08,13.01,12.93,12.83,12.72,12.47,N/A,N/A +2013,1,18,1,30,95620,94470,93360,45.910000000000004,0,0.22,0.24,0.23,0.25,0.27,0.29,0.31,0.33,0.4,124.41,60.88,27.990000000000002,355.04,338.93,329.74,340.98,354.95,32.14,10.19,11.67,11.97,12.13,12.16,12.15,12.1,12.06,11.96,N/A,N/A +2013,1,18,2,30,95640,94480,93370,51.980000000000004,0,0.04,0.32,0.6900000000000001,1.05,1.35,1.6,1.76,1.8900000000000001,2.04,235.65,141.57,65.69,76.28,83.23,88.46000000000001,91.17,93.01,93.34,8.620000000000001,10.6,11.09,11.32,11.43,11.49,11.49,11.47,11.38,N/A,N/A +2013,1,18,3,30,95650,94490,93370,58.04,0,0.09,0.51,0.89,1.22,1.42,1.55,1.61,1.6400000000000001,1.72,251.46,344.71,49.050000000000004,59.95,71.56,82.10000000000001,89.12,94.07000000000001,99.73,7.01,8.77,9.43,9.99,10.4,10.71,10.790000000000001,10.83,10.790000000000001,N/A,N/A +2013,1,18,4,30,95670,94500,93370,64.13,0,0.58,0.41000000000000003,0.42,0.62,0.98,1.45,1.8900000000000001,2.35,3.2800000000000002,288.67,343.2,18.25,75.34,93.74,102.99000000000001,103.97,104.79,105.92,5.75,7.48,8.2,8.85,9.35,9.700000000000001,9.66,9.63,9.66,N/A,N/A +2013,1,18,5,30,95660,94490,93360,68.06,0,0.54,0.71,0.54,0.36,0.47000000000000003,0.6900000000000001,1.1400000000000001,1.6600000000000001,2.68,232.23000000000002,276.09000000000003,322.83,4.49,54.36,107.82000000000001,114.76,119.01,117.88,4.82,6.99,7.61,7.890000000000001,8.28,8.620000000000001,8.8,8.91,9,N/A,N/A +2013,1,18,6,30,95680,94500,93370,71.23,0,0.5700000000000001,0.19,0.27,0.9,1.54,2.19,2.73,3.24,4.1,321.12,324.05,348.04,93.18,121,121.34,121.17,121.24000000000001,122.44,3.79,6.1000000000000005,6.8500000000000005,7.28,7.55,7.7700000000000005,7.930000000000001,8.08,8.35,N/A,N/A +2013,1,18,7,30,95690,94500,93370,72.51,0,0.46,0.8300000000000001,1.12,1.6400000000000001,2.11,2.56,3,3.45,4.33,2.2800000000000002,53.51,76.2,90.14,98.69,105.88,111.54,116.35000000000001,123.3,3.36,5.11,5.68,6.09,6.4,6.67,6.99,7.3,7.92,N/A,N/A +2013,1,18,8,30,95680,94500,93360,78.7,0,0.76,0.46,0.59,1.28,1.8900000000000001,2.49,3.0100000000000002,3.49,4.36,291.44,19.580000000000002,45.09,82.36,94.45,101.41,106.67,111.53,119.89,1.94,4.53,5.41,5.89,6.21,6.5,6.8100000000000005,7.13,7.7700000000000005,N/A,N/A +2013,1,18,9,30,95660,94470,93330,79.75,0,0.55,0.44,0.45,0.61,1.05,1.67,2.16,2.65,3.6,275.42,291.31,339.3,69.34,89.91,101.35000000000001,108.56,114.72,123.23,1.85,3.6,4.41,5.19,5.74,6.17,6.47,6.72,7.15,N/A,N/A +2013,1,18,10,30,95630,94440,93300,86.18,0,0.61,0.71,0.56,0.43,0.84,1.52,2.05,2.58,3.59,270.5,263.87,203.42000000000002,130.82,120.97,117.24000000000001,120.82000000000001,124.43,130.42000000000002,0.86,2.89,3.8000000000000003,4.61,5.16,5.57,5.84,6.07,6.54,N/A,N/A +2013,1,18,11,30,95610,94420,93280,88.55,0,0.54,0.8200000000000001,0.67,0.49,0.87,1.47,2.0300000000000002,2.59,3.67,271.28000000000003,261.56,214.35,161.98,143,125.28,126.08,128,133.39000000000001,0.28,2.37,3.15,3.73,4.12,4.45,4.79,5.11,5.76,N/A,N/A +2013,1,18,12,30,95610,94420,93270,91.83,0,0.33,0.1,0.17,0.8200000000000001,1.35,1.8800000000000001,2.39,2.91,3.96,308.1,316.85,336.55,88.61,114.01,123.44,130.39000000000001,135.72,142.33,-0.52,1.6,2.38,2.89,3.4,3.85,4.28,4.63,5.21,N/A,N/A +2013,1,18,13,30,95600,94410,93260,91.54,0,0.63,0.51,0.6,0.96,1.43,1.97,2.47,2.99,4.05,243.84,194.79,167.55,125.41,124.92,130.99,137.94,143.36,150.43,-0.59,1.8,2.4,2.5300000000000002,2.95,3.35,3.7,4.03,4.67,N/A,N/A +2013,1,18,14,30,95590,94400,93250,77.88,0,0.08,0.64,1.31,1.74,2.1,2.47,2.91,3.39,4.38,298.71,38.37,117.73,120.3,128.91,137.44,143.99,148.94,155.32,0.22,2.13,2.81,3.0700000000000003,3.2800000000000002,3.49,3.73,4.0200000000000005,4.65,N/A,N/A +2013,1,18,15,30,95560,94380,93240,55.31,0,1.07,1.34,1.43,1.49,1.99,2.63,3.23,3.8200000000000003,4.97,126.08,131.93,135.19,137.9,144.94,152.47,155.15,157.18,159.59,5.37,5.05,4.89,4.73,4.73,4.8,4.99,5.14,5.4,N/A,N/A +2013,1,18,16,30,95520,94350,93220,45.18,0,3.08,3.8200000000000003,4.05,4.18,4.2700000000000005,4.3500000000000005,4.49,4.64,5.05,157.01,157.85,158.39000000000001,158.88,159.45000000000002,160.03,160.85,161.71,163.6,8.72,8.24,8.03,7.84,7.66,7.49,7.33,7.19,6.95,N/A,N/A +2013,1,18,17,30,95450,94290,93160,40.76,0,4.23,5.21,5.49,5.64,5.72,5.76,5.79,5.82,5.88,165.19,165.21,165.23,165.26,165.31,165.36,165.46,165.57,165.94,10.57,10,9.76,9.55,9.34,9.16,8.96,8.78,8.43,N/A,N/A +2013,1,18,18,30,95380,94230,93110,36.74,0,5.08,6.3,6.66,6.86,6.98,7.0600000000000005,7.11,7.15,7.2,171.85,171.71,171.6,171.51,171.44,171.37,171.32,171.28,171.21,12.1,11.47,11.21,10.98,10.76,10.56,10.35,10.16,9.77,N/A,N/A +2013,1,18,19,30,95320,94180,93060,32.92,0,5.91,7.38,7.83,8.08,8.25,8.370000000000001,8.45,8.52,8.620000000000001,174.52,174.24,174.07,173.95000000000002,173.84,173.75,173.67000000000002,173.59,173.47,13.21,12.56,12.3,12.06,11.83,11.63,11.41,11.21,10.81,N/A,N/A +2013,1,18,20,30,95260,94110,93000,30.87,0,6.34,7.930000000000001,8.41,8.69,8.870000000000001,8.99,9.08,9.14,9.23,177.21,176.96,176.8,176.68,176.57,176.47,176.39000000000001,176.31,176.18,13.91,13.280000000000001,13.030000000000001,12.790000000000001,12.56,12.36,12.14,11.93,11.53,N/A,N/A +2013,1,18,21,30,95190,94050,92940,31.04,0,5.94,7.43,7.87,8.120000000000001,8.28,8.39,8.47,8.52,8.59,177.95000000000002,178.03,178.09,178.17000000000002,178.24,178.31,178.39000000000001,178.47,178.62,14.200000000000001,13.65,13.42,13.19,12.97,12.77,12.55,12.36,11.950000000000001,N/A,N/A +2013,1,18,22,30,95140,94000,92890,32.58,0,5.86,7.38,7.8,8.03,8.18,8.290000000000001,8.35,8.4,8.45,180.26,180.26,180.27,180.3,180.33,180.36,180.41,180.45000000000002,180.54,14.08,13.68,13.48,13.27,13.06,12.870000000000001,12.66,12.47,12.07,N/A,N/A +2013,1,18,23,30,95100,93960,92850,39.38,0,3.94,6.140000000000001,6.87,7.42,7.82,8.15,8.370000000000001,8.55,8.74,177.65,177.96,178.20000000000002,178.47,178.68,178.84,178.91,178.92000000000002,178.75,12.700000000000001,12.86,12.82,12.73,12.58,12.44,12.25,12.07,11.69,N/A,N/A +2013,1,19,0,30,95110,93960,92850,47.74,0,3.5700000000000003,6.24,7.13,7.87,8.41,8.84,9.09,9.27,9.39,173.82,173.66,173.4,172.97,172.51,172.07,171.69,171.36,170.73,11.040000000000001,11.83,12,12.07,12.030000000000001,11.96,11.790000000000001,11.63,11.25,N/A,N/A +2013,1,19,1,30,95100,93950,92840,55.69,0,2.97,5.78,6.78,7.73,8.52,9.21,9.71,10.1,10.51,157.02,159.31,160.47,161.08,161.48,161.8,162.11,162.42000000000002,163,9.84,10.96,11.19,11.36,11.42,11.450000000000001,11.38,11.28,10.98,N/A,N/A +2013,1,19,2,30,95070,93920,92810,59.85,0,2.59,4.86,5.69,6.5200000000000005,7.45,8.370000000000001,9.3,10.14,11.47,138.68,143.51,146.33,148.47,150.33,152.03,153.56,154.98,157.53,8.72,9.8,10,10.15,10.25,10.33,10.39,10.42,10.41,N/A,N/A +2013,1,19,3,30,95050,93890,92770,65.37,0,2.0300000000000002,4.1,5.0200000000000005,6.01,7.09,8.18,9.34,10.450000000000001,12.41,135.35,140.97,144.71,148.14000000000001,150.91,153.38,155.27,156.94,159.63,7.68,8.700000000000001,8.870000000000001,9.01,9.13,9.25,9.370000000000001,9.49,9.68,N/A,N/A +2013,1,19,4,30,95010,93850,92730,67.13,0,2.59,5.25,6.34,7.41,8.5,9.56,10.69,11.790000000000001,13.790000000000001,135.89000000000001,144.33,148.85,151.8,153.99,155.9,157.6,159.22,162.27,7.3100000000000005,8.39,8.58,8.74,8.86,8.96,9.08,9.19,9.39,N/A,N/A +2013,1,19,5,30,94970,93810,92690,68.29,0,3.0500000000000003,5.9,7.0200000000000005,8.19,9.370000000000001,10.5,11.620000000000001,12.620000000000001,14.25,144.39000000000001,150.61,154.19,157.01,159.08,160.85,162.32,163.68,166.17000000000002,7.11,8.16,8.32,8.45,8.56,8.67,8.8,8.91,9.13,N/A,N/A +2013,1,19,6,30,94950,93790,92670,63.64,0,3.7600000000000002,6.78,7.97,9.11,10.14,11.09,12,12.83,14.27,146.33,152.93,156.5,158.92000000000002,160.65,162.1,163.35,164.53,166.86,7.26,8.040000000000001,8.21,8.35,8.47,8.56,8.65,8.74,8.9,N/A,N/A +2013,1,19,7,30,94940,93780,92660,61.870000000000005,0,3.89,6.98,8.23,9.38,10.38,11.27,12.08,12.82,14.07,152,157.72,160.79,162.81,164.26,165.48,166.56,167.59,169.63,7.390000000000001,7.98,8.08,8.15,8.21,8.26,8.33,8.4,8.56,N/A,N/A +2013,1,19,8,30,94920,93760,92640,63.46,0,3.63,6.41,7.49,8.51,9.41,10.23,10.98,11.64,12.69,154.38,160.11,163.3,165.55,167.13,168.43,169.46,170.41,172.23,7.08,7.61,7.68,7.73,7.79,7.84,7.92,8,8.2,N/A,N/A +2013,1,19,9,30,94910,93740,92620,73.45,0,2.58,4.94,5.84,6.76,7.63,8.43,9.18,9.84,10.9,140.91,154.36,161.49,166.15,168.89000000000001,170.96,172.24,173.32,175.02,5.83,6.73,6.86,6.96,7.0600000000000005,7.15,7.24,7.34,7.5600000000000005,N/A,N/A +2013,1,19,10,30,94890,93730,92600,75.65,0,2.29,4.49,5.37,6.22,7.04,7.8,8.45,9,9.78,148.9,159.20000000000002,164.71,168.34,170.62,172.44,173.72,174.86,176.93,5.41,6.29,6.390000000000001,6.49,6.57,6.65,6.7700000000000005,6.890000000000001,7.17,N/A,N/A +2013,1,19,11,30,94890,93720,92590,76.63,0,2.5300000000000002,4.62,5.37,6.15,6.82,7.4,7.88,8.23,8.56,148.35,158.22,163.68,167.72,170.37,172.5,174.09,175.61,178.64000000000001,5.14,6.03,6.12,6.2,6.3,6.41,6.57,6.74,7.13,N/A,N/A +2013,1,19,12,30,94870,93710,92580,77.38,0,2.42,4.51,5.25,5.96,6.55,7.04,7.33,7.49,7.45,155.25,161.66,165.21,167.86,169.82,171.54,173.23,175.14000000000001,179.86,4.94,5.82,5.91,5.98,6.1000000000000005,6.23,6.44,6.67,7.140000000000001,N/A,N/A +2013,1,19,13,30,94880,93710,92580,80.34,0,2.15,4.03,4.67,5.29,5.76,6.13,6.28,6.34,6.26,146.77,155.98,161.21,165.20000000000002,167.96,170.38,172.95000000000002,175.85,182.53,4.3500000000000005,5.2700000000000005,5.42,5.55,5.75,5.95,6.22,6.48,6.99,N/A,N/A +2013,1,19,14,30,94890,93720,92590,72.51,0,1.84,3.5500000000000003,4.18,4.7700000000000005,5.17,5.46,5.5600000000000005,5.6000000000000005,5.58,153.18,160.59,164.5,167.1,169.13,171.17000000000002,174.26,177.69,185.45000000000002,5.09,5.5,5.53,5.5600000000000005,5.68,5.83,6.0600000000000005,6.3,6.76,N/A,N/A +2013,1,19,15,30,94920,93750,92620,58.33,0,1.19,1.56,1.69,1.76,1.9000000000000001,2.07,2.37,2.72,3.5300000000000002,161.62,162.69,163.65,164.71,167.16,169.98,173.97,178.07,185.68,7.22,6.87,6.69,6.5200000000000005,6.3500000000000005,6.2,6.08,6.0200000000000005,6.1000000000000005,N/A,N/A +2013,1,19,16,30,94900,93750,92630,49.67,0,1.52,1.86,1.98,2.06,2.12,2.17,2.2,2.22,2.29,200.3,194.37,191.15,188.84,187.1,185.66,184.43,183.41,182.11,9.48,9.03,8.83,8.64,8.45,8.28,8.1,7.94,7.61,N/A,N/A +2013,1,19,17,30,94860,93720,92600,42.84,0,1.99,2.39,2.49,2.54,2.56,2.58,2.58,2.57,2.5500000000000003,201.72,200.69,200.21,199.93,199.78,199.69,199.69,199.70000000000002,199.78,11.55,11.040000000000001,10.81,10.6,10.4,10.21,10.01,9.83,9.450000000000001,N/A,N/A +2013,1,19,18,30,94820,93680,92580,38.11,0,1.98,2.37,2.46,2.5,2.52,2.5300000000000002,2.52,2.52,2.49,206.93,206.94,207.03,207.21,207.47,207.71,208.07,208.42000000000002,209.28,13.530000000000001,13,12.76,12.540000000000001,12.34,12.15,11.950000000000001,11.76,11.38,N/A,N/A +2013,1,19,19,30,94790,93660,92560,33.78,0,1.21,1.46,1.53,1.57,1.6,1.62,1.6400000000000001,1.6500000000000001,1.68,212.62,211.65,211.21,211,210.88,210.8,210.82,210.85,211.03,15.280000000000001,14.780000000000001,14.530000000000001,14.32,14.11,13.92,13.71,13.52,13.13,N/A,N/A +2013,1,19,20,30,94760,93630,92540,30.28,0,1.07,1.27,1.32,1.34,1.36,1.3800000000000001,1.3900000000000001,1.4000000000000001,1.42,224.13,224.33,224.55,224.85,225.23000000000002,225.59,226.01,226.41,227.26,16.580000000000002,16.080000000000002,15.85,15.64,15.42,15.23,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2013,1,19,21,30,94720,93600,92510,29.8,0,1.48,1.76,1.83,1.86,1.8800000000000001,1.8900000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,213.54,214.3,214.86,215.44,216.04,216.59,217.20000000000002,217.78,219.01,17.35,16.87,16.65,16.44,16.22,16.03,15.83,15.63,15.24,N/A,N/A +2013,1,19,22,30,94690,93570,92490,29.580000000000002,0,2.02,2.42,2.52,2.56,2.58,2.59,2.58,2.58,2.5500000000000003,204.17000000000002,205.29,206.03,206.70000000000002,207.39000000000001,208.03,208.74,209.41,210.86,17.56,17.16,16.97,16.77,16.56,16.37,16.17,15.98,15.59,N/A,N/A +2013,1,19,23,30,94700,93570,92490,40.58,0,2.2800000000000002,3.87,4.07,4.1,4.0200000000000005,3.92,3.75,3.6,3.23,180.20000000000002,183.83,185.85,187.22,188.45000000000002,189.5,190.94,192.43,197.29,16.15,16.73,16.67,16.5,16.31,16.13,15.94,15.77,15.44,N/A,N/A +2013,1,20,0,30,94740,93610,92520,48.84,0,2.49,4.54,4.84,4.74,4.21,3.67,3.42,3.22,2.91,180.70000000000002,184.51,187.59,190.61,198.14000000000001,205.54,212.11,217.79,229.08,13.88,15.36,15.66,15.83,15.92,15.98,15.88,15.780000000000001,15.47,N/A,N/A +2013,1,20,1,30,94770,93640,92540,51.370000000000005,0,1.77,2.74,2.57,2.15,1.95,1.83,1.81,1.79,1.78,182.42000000000002,193.28,203.67000000000002,215.54,225.9,234.74,240.16,244.23000000000002,247.07,12.68,14.34,14.700000000000001,14.86,14.88,14.85,14.76,14.67,14.47,N/A,N/A +2013,1,20,2,30,94800,93660,92560,55.34,0,0.97,0.79,0.73,0.9,1.05,1.19,1.41,1.67,2.38,184.33,229.81,244.34,254.69,254.15,249.65,242.54,236.28,229.70000000000002,11.56,12.370000000000001,12.32,12.24,12.13,12.030000000000001,12.18,12.450000000000001,13.47,N/A,N/A +2013,1,20,3,30,94830,93690,92580,59.910000000000004,0,0.38,0.58,0.6900000000000001,0.9400000000000001,1.36,1.9100000000000001,2.41,2.87,3.47,196.86,223.96,231.94,230.47,224.88,217.20000000000002,216.04,215.45000000000002,217.18,10.26,11.09,11.14,11.23,11.73,12.26,12.59,12.86,13.22,N/A,N/A +2013,1,20,4,30,94870,93720,92610,65.08,0,0.35000000000000003,0.33,0.45,1.02,1.59,2.15,2.64,3.12,3.95,85.33,214.5,244.99,248.42000000000002,246.93,243.1,238.88,234.8,228.39000000000001,8.88,10.14,10.49,10.84,11.19,11.5,11.82,12.120000000000001,12.68,N/A,N/A +2013,1,20,5,30,94880,93730,92620,71.91,0,0.85,1.03,1.08,1.3,1.72,2.23,2.71,3.17,3.99,223.66,231.23000000000002,234.85,238.31,237.73000000000002,235.83,232.99,230.20000000000002,225.4,7.42,8.78,9.27,9.76,10.34,10.88,11.43,11.92,12.71,N/A,N/A +2013,1,20,6,30,94910,93750,92640,80.04,0,0.38,0.36,0.46,0.9,1.28,1.6400000000000001,2,2.37,3.16,29.78,318.55,294.83,270.15,259.87,254.34,249.11,244,234.97,6.07,7.930000000000001,8.52,8.91,9.290000000000001,9.64,10.1,10.58,11.57,N/A,N/A +2013,1,20,7,30,94930,93770,92650,84.69,0,0.18,0.46,0.6900000000000001,1,1.3900000000000001,1.82,2.22,2.62,3.31,11.81,0.52,345.21,321.23,308.06,297.3,290.51,283.94,271.68,4.93,6.54,7.11,7.5600000000000005,7.99,8.38,8.8,9.24,10.22,N/A,N/A +2013,1,20,8,30,94930,93770,92640,88.59,0,0.34,0.37,0.43,0.64,0.96,1.37,1.84,2.34,3.16,330.23,275.12,262.84000000000003,264.05,276.40000000000003,291.92,300.37,307.37,313.7,4.23,5.7700000000000005,6.2,6.47,6.78,7.08,7.5200000000000005,8.02,9.16,N/A,N/A +2013,1,20,9,30,94940,93770,92640,94.21000000000001,0,0.44,1.1,1.54,2.08,2.66,3.25,3.83,4.36,5.17,0.87,344.84000000000003,338.43,338.88,339.61,340.3,340.48,340.18,337.96,3.2600000000000002,4.4,4.88,5.4,6,6.51,6.93,7.33,8.21,N/A,N/A +2013,1,20,10,30,94930,93750,92630,99.57000000000001,0,0.27,1.29,2.2800000000000002,3.3000000000000003,4.25,5.16,5.89,6.3100000000000005,6.19,234.70000000000002,286.83,318.79,321.59000000000003,322.98,323.78000000000003,323.2,321.52,317.15000000000003,2.39,4.23,4.89,5.36,5.67,5.96,6.34,6.76,7.63,N/A,N/A +2013,1,20,11,30,94920,93750,92620,83.49,0,1.12,2.5100000000000002,3.44,4.68,5.68,6.5,6.890000000000001,6.98,6.63,272.41,310.21,325.11,326.24,324.63,322.1,318.12,315,312.73,3.0300000000000002,4.44,4.75,4.94,5.15,5.41,5.93,6.28,6.69,N/A,N/A +2013,1,20,12,30,94940,93770,92630,87.92,0,1.5,3.02,4.01,5.4,6.5200000000000005,7.4,7.67,7.640000000000001,7.3100000000000005,270.07,308.69,322.85,324.96,323.96,322.43,320.7,319.71,319.92,1.71,3.33,3.84,4.21,4.6000000000000005,4.91,5.0200000000000005,5.12,5.47,N/A,N/A +2013,1,20,13,30,94960,93770,92640,94.03,0,1.32,2.87,3.9,5.26,6.23,6.98,7.2700000000000005,7.33,7.25,281.3,314.31,325.94,324.95,322.3,319.53000000000003,316.97,315.25,315.19,0.5700000000000001,2.16,2.72,3.21,3.7,4.09,4.37,4.5,4.75,N/A,N/A +2013,1,20,14,30,94970,93790,92650,77.74,0,1.27,2.37,3.21,4.21,5.15,6.03,6.76,7.18,7.43,272,308.88,322.27,322.93,322.07,321.03000000000003,319.97,319.12,318.28000000000003,1.11,2.11,2.5100000000000002,2.7,2.91,3.17,3.59,3.91,4.49,N/A,N/A +2013,1,20,15,30,94970,93800,92660,54.35,0,3.44,4.17,4.3500000000000005,4.44,4.67,4.97,5.61,6.15,7.0200000000000005,307.49,310.01,311.83,313.61,316.86,320.1,323.74,325.64,325.86,5.6000000000000005,5.22,5.0600000000000005,4.91,4.78,4.68,4.62,4.62,4.94,N/A,N/A +2013,1,20,16,30,94940,93780,92650,44.77,0,3.87,4.64,4.82,4.88,4.88,4.87,4.86,4.9,5.19,312.72,315.73,317.67,319.43,321.27,323.02,325.29,327.85,333.69,8.26,7.76,7.5600000000000005,7.390000000000001,7.23,7.08,6.95,6.83,6.640000000000001,N/A,N/A +2013,1,20,17,30,94880,93730,92610,37.45,0,3.46,4.15,4.3100000000000005,4.38,4.39,4.39,4.36,4.32,4.25,310.61,313.64,315.54,317.2,318.87,320.38,322.06,323.68,327.37,11.05,10.5,10.27,10.07,9.88,9.71,9.53,9.370000000000001,9.06,N/A,N/A +2013,1,20,18,30,94820,93680,92570,32.55,0,3.2,3.81,3.95,4,4.01,4,3.98,3.94,3.86,311.25,313.6,315.04,316.26,317.49,318.61,319.89,321.11,323.75,13.24,12.68,12.44,12.23,12.030000000000001,11.85,11.66,11.48,11.13,N/A,N/A +2013,1,20,19,30,94770,93640,92540,29.11,0,2.49,2.96,3.0700000000000003,3.1,3.11,3.11,3.09,3.0700000000000003,3.0100000000000002,311.89,313.64,314.71,315.62,316.5,317.29,318.17,319,320.77,15.030000000000001,14.48,14.24,14.030000000000001,13.82,13.64,13.44,13.26,12.89,N/A,N/A +2013,1,20,20,30,94700,93570,92480,27.21,0,1.86,2.19,2.2600000000000002,2.2800000000000002,2.2800000000000002,2.2800000000000002,2.2600000000000002,2.24,2.2,306.19,307.53000000000003,308.34000000000003,309,309.6,310.14,310.68,311.18,312.16,16.37,15.860000000000001,15.63,15.42,15.21,15.030000000000001,14.83,14.64,14.26,N/A,N/A +2013,1,20,21,30,94640,93520,92430,26.12,0,1.45,1.71,1.77,1.79,1.8,1.81,1.8,1.8,1.78,303.03000000000003,304.15000000000003,304.78000000000003,305.25,305.65000000000003,306,306.31,306.58,306.98,17.2,16.740000000000002,16.52,16.31,16.11,15.92,15.72,15.530000000000001,15.15,N/A,N/A +2013,1,20,22,30,94600,93480,92390,26.27,0,0.9,1.07,1.12,1.1400000000000001,1.1500000000000001,1.16,1.16,1.17,1.17,305.71,306.45,306.83,307.08,307.2,307.25,307.17,307.03000000000003,306.39,17.38,17.01,16.82,16.62,16.42,16.23,16.03,15.84,15.46,N/A,N/A +2013,1,20,23,30,94580,93450,92370,36.89,0,0.19,0.22,0.22,0.26,0.3,0.32,0.33,0.32,0.27,135.57,74.21000000000001,53.83,46.800000000000004,43.12,41.07,35.89,28.75,353.11,15.99,16.75,16.71,16.55,16.37,16.2,16.01,15.83,15.46,N/A,N/A +2013,1,21,0,30,94570,93440,92360,43.58,0,0.36,0.6,0.65,0.7000000000000001,0.74,0.77,0.61,0.48,0.36,110.34,102.56,99.79,99.56,94.89,89.13,91.91,104.32000000000001,160.75,13.370000000000001,14.870000000000001,15.280000000000001,15.68,15.92,16.1,16.02,15.93,15.66,N/A,N/A +2013,1,21,1,30,94580,93450,92360,46.61,0,0.32,0.9500000000000001,1.31,1.56,1.72,1.83,1.84,1.81,1.61,137.29,134.56,132.78,131.8,131.92000000000002,132.37,132.19,132.82,140.23,11.94,13.49,13.91,14.26,14.51,14.71,14.870000000000001,15,15.21,N/A,N/A +2013,1,21,2,30,94590,93460,92360,50.09,0,0.34,1.09,1.55,1.8900000000000001,2.14,2.34,2.5500000000000003,2.74,3.12,86.49,98.88,109.26,117.65,126.23,134.32,141.21,147.05,154.44,10.56,12.280000000000001,12.83,13.31,13.72,14.06,14.35,14.6,14.89,N/A,N/A +2013,1,21,3,30,94610,93470,92370,54.33,0,0.03,0.49,1.1500000000000001,1.33,1.56,1.82,2.13,2.44,3.04,19.06,55.58,114.35000000000001,129.21,141.29,152.21,157.73,162.3,167.04,8.99,11.26,12.08,12.71,13.13,13.450000000000001,13.65,13.81,14,N/A,N/A +2013,1,21,4,30,94620,93470,92370,58.96,0,0.34,0.67,0.77,0.84,1.09,1.43,1.84,2.2600000000000002,3.08,2.32,69.85000000000001,111.85000000000001,144.23,162.91,178.56,181.69,184,184.55,7.87,10.48,11.42,12.030000000000001,12.41,12.68,12.88,13.05,13.34,N/A,N/A +2013,1,21,5,30,94640,93490,92380,62.370000000000005,0,0.12,0.44,0.66,0.8300000000000001,0.99,1.17,1.47,1.81,2.58,327.88,50.51,103.01,118.88,138.34,157.46,167.39000000000001,175.32,182.12,7.08,9.19,9.950000000000001,10.52,10.96,11.31,11.57,11.81,12.19,N/A,N/A +2013,1,21,6,30,94660,93510,92400,67.43,0,0.44,0.3,0.35000000000000003,0.7000000000000001,0.9,1.05,1.32,1.6500000000000001,2.5,316.88,38.27,65.38,104.44,130.55,149.64000000000001,165.17000000000002,176.48,183.84,6.0600000000000005,8.02,8.72,9.28,9.75,10.15,10.540000000000001,10.86,11.38,N/A,N/A +2013,1,21,7,30,94700,93540,92430,72.12,0,0.09,0.1,0.15,0.34,0.59,0.91,1.3,1.73,2.66,315.34000000000003,327.31,1.69,105.34,148.78,171.72,178.6,183.6,186.04,5.0200000000000005,6.87,7.640000000000001,8.34,8.94,9.44,9.84,10.17,10.700000000000001,N/A,N/A +2013,1,21,8,30,94710,93550,92440,76.68,0,0.07,0.25,0.28,0.23,0.41000000000000003,0.75,1.09,1.48,2.34,247.4,280.45,257.21,203.06,192.62,187.34,189.56,190.20000000000002,187.43,3.92,5.6000000000000005,6.47,7.36,8.15,8.790000000000001,9.26,9.64,10.22,N/A,N/A +2013,1,21,9,30,94740,93570,92450,78.94,0,0.87,1.74,1.76,1.54,1.06,0.62,0.19,0.2,0.9500000000000001,17.47,15.56,13.01,10.290000000000001,7.6000000000000005,13.3,30.48,56.7,170.62,3.19,4.67,5.2700000000000005,5.78,6.51,7.19,7.87,8.43,9.23,N/A,N/A +2013,1,21,10,30,94740,93570,92450,83.29,0,0.96,0.96,0.99,1.25,1.26,1.11,0.7000000000000001,0.56,0.86,242.86,291.72,318.51,349.88,351.48,342.77,320.49,266.72,173.77,2.56,3.96,4.51,4.98,5.8,6.69,8.040000000000001,8.97,9.86,N/A,N/A +2013,1,21,11,30,94810,93640,92510,86.69,0,0.93,1.78,2.0300000000000002,2.22,2.45,2.67,2.84,2.87,2.44,276.21,279.91,286,294.5,302.79,309.8,314.02,316.42,316.15000000000003,2.7800000000000002,4.03,4.39,4.66,4.97,5.28,5.67,6.11,7.28,N/A,N/A +2013,1,21,12,30,94850,93670,92550,91.61,0,1.21,2.24,2.64,3.0300000000000002,3.45,3.8200000000000003,4.16,4.43,4.65,263.08,281.1,290.29,296.73,300.7,303.44,303.94,303.17,299.45,2.2600000000000002,3.36,3.8200000000000003,4.2700000000000005,4.78,5.25,5.75,6.24,7.17,N/A,N/A +2013,1,21,13,30,94890,93710,92580,88.13,0,1.1,1.93,2.27,2.68,3.14,3.58,3.93,4.2,4.54,287.66,304.06,313.54,321.3,324.04,325.17,323.61,321.1,314.28000000000003,2.05,3,3.33,3.7,4.05,4.36,4.68,4.95,5.44,N/A,N/A +2013,1,21,14,30,94960,93780,92640,77.45,0,0.36,0.99,1.6300000000000001,2.44,3.35,4.3,5.21,6.0600000000000005,7.44,243.74,324.86,354.58,340.77,334.74,330.24,327.95,326.17,323.17,2.09,2.56,2.86,3.12,3.34,3.5,3.5700000000000003,3.58,3.62,N/A,N/A +2013,1,21,15,30,94980,93810,92680,53.64,0,3.83,4.71,4.95,5.08,5.13,5.16,5.17,5.2,5.44,317.17,318.90000000000003,319.99,320.91,321.77,322.57,323.58,324.73,326.69,5.67,5.23,5.03,4.8500000000000005,4.67,4.51,4.3500000000000005,4.2,3.92,N/A,N/A +2013,1,21,16,30,94990,93830,92700,49.160000000000004,0,4.42,5.39,5.64,5.76,5.8100000000000005,5.84,5.83,5.8100000000000005,5.76,316.95,318.17,318.90000000000003,319.53000000000003,320.14,320.69,321.22,321.76,323.06,7.140000000000001,6.59,6.36,6.16,5.97,5.79,5.62,5.45,5.13,N/A,N/A +2013,1,21,17,30,94980,93830,92700,43.71,0,4.76,5.78,6.03,6.13,6.16,6.17,6.15,6.12,6.0200000000000005,319.97,320.5,320.81,321.04,321.24,321.41,321.59000000000003,321.73,321.96,9.07,8.45,8.2,7.99,7.78,7.6000000000000005,7.41,7.23,6.890000000000001,N/A,N/A +2013,1,21,18,30,94960,93810,92690,42.86,0,4.11,4.92,5.1000000000000005,5.15,5.15,5.14,5.09,5.03,4.89,318.49,319.74,320.53000000000003,321.21,321.90000000000003,322.54,323.26,323.97,325.61,10.63,10.01,9.75,9.53,9.32,9.13,8.94,8.75,8.39,N/A,N/A +2013,1,21,19,30,94950,93810,92700,42.54,0,3.62,4.32,4.49,4.55,4.57,4.57,4.54,4.51,4.43,319.04,320.91,322.08,323.1,324.12,325.03000000000003,326.06,327.04,329.18,12.09,11.49,11.24,11.02,10.8,10.61,10.41,10.22,9.84,N/A,N/A +2013,1,21,20,30,94910,93770,92660,42.19,0,3.59,4.2700000000000005,4.43,4.49,4.5,4.5,4.47,4.45,4.37,316.92,319.31,320.81,322.11,323.39,324.54,325.79,326.97,329.48,13.36,12.76,12.51,12.290000000000001,12.07,11.88,11.67,11.49,11.1,N/A,N/A +2013,1,21,21,30,94850,93720,92620,40.97,0,3.52,4.21,4.36,4.4,4.4,4.39,4.34,4.3,4.18,311.59000000000003,314.25,315.91,317.33,318.76,320.04,321.54,322.96,326.03000000000003,14.120000000000001,13.57,13.33,13.120000000000001,12.91,12.72,12.530000000000001,12.34,11.97,N/A,N/A +2013,1,21,22,30,94810,93680,92570,40.47,0,3.7800000000000002,4.49,4.62,4.63,4.58,4.5200000000000005,4.43,4.33,4.12,305.17,307.63,309.23,310.7,312.27,313.72,315.49,317.19,321.25,14.200000000000001,13.76,13.56,13.370000000000001,13.18,13.01,12.82,12.65,12.3,N/A,N/A +2013,1,21,23,30,94800,93660,92560,42.25,0,4.01,5.79,6.29,6.5200000000000005,6.48,6.36,5.94,5.43,4.3100000000000005,313.78000000000003,314.18,314.32,314.33,314.64,315.03000000000003,316.77,319.88,331.08,13.040000000000001,12.98,12.9,12.8,12.71,12.63,12.57,12.56,12.540000000000001,N/A,N/A +2013,1,22,0,30,94810,93670,92570,51.02,0,2.94,5.45,6.18,6.5600000000000005,6.13,5.59,5.11,4.7700000000000005,4.46,315.77,317.41,318.23,318.56,323.13,328.03000000000003,335.06,341.31,353.78000000000003,11.44,12.1,12.200000000000001,12.22,12.280000000000001,12.34,12.370000000000001,12.36,12.19,N/A,N/A +2013,1,22,1,30,94830,93690,92580,56.35,0,2.32,4.1,4.4,4.45,4.25,4.03,4.04,4.1,4.43,328.43,339.99,347.98,355.26,10.450000000000001,24.54,31.98,37.980000000000004,46.19,10.47,11.48,11.67,11.78,11.74,11.68,11.52,11.370000000000001,11.09,N/A,N/A +2013,1,22,2,30,94860,93720,92600,59.08,0,1.73,1.8800000000000001,1.81,1.98,2.09,2.18,2.41,2.69,3.47,332.27,2.5300000000000002,18.81,35.76,44.74,50.71,54.550000000000004,57.96,63.59,9.86,10.81,10.84,10.700000000000001,10.52,10.34,10.16,10,9.69,N/A,N/A +2013,1,22,3,30,94870,93720,92610,61.86,0,0.92,2.2,2.41,2.19,2.07,2,1.97,2.02,2.5,325.47,357.68,20.09,35.53,43.71,49.65,56.47,61.620000000000005,69.38,8.89,9.74,9.76,9.65,9.47,9.290000000000001,9.15,9.07,9.040000000000001,N/A,N/A +2013,1,22,4,30,94870,93720,92600,61.36,0,1.52,2.73,2.8000000000000003,2.62,2.66,2.73,2.73,2.81,3.33,356.31,12.46,25.36,37.72,46.89,54.89,64.15,72.47,85.56,8.4,9.22,9.16,8.950000000000001,8.74,8.56,8.41,8.32,8.27,N/A,N/A +2013,1,22,5,30,94870,93710,92590,62.120000000000005,0,1.45,2.72,2.66,2.27,2.06,1.96,2.15,2.42,3.16,11.44,14.93,24.04,35.43,51.81,65.59,75.81,83.56,93.48,8.22,8.76,8.58,8.35,8.2,8.120000000000001,8.17,8.25,8.42,N/A,N/A +2013,1,22,6,30,94870,93720,92600,62.5,0,1.32,2.08,1.77,1.29,1.23,1.23,1.22,1.27,1.67,0.47000000000000003,7.95,19.53,31.78,40.050000000000004,47.59,57.64,68.27,91.49,7.7700000000000005,8.46,8.41,8.31,8.2,8.09,7.94,7.84,7.97,N/A,N/A +2013,1,22,7,30,94890,93730,92610,72.44,0,0.58,0.45,0.51,0.78,1.07,1.35,1.44,1.57,1.99,219.38,261.32,294.23,351.02,10.9,24.26,41.25,59.160000000000004,92.08,5.54,6.92,7.22,7.3,7.3100000000000005,7.37,7.66,7.98,8.52,N/A,N/A +2013,1,22,8,30,94890,93730,92600,75.94,0,0.76,0.56,0.58,0.8300000000000001,1.11,1.34,1.34,1.31,1.3800000000000001,219.42000000000002,288.43,315.84000000000003,349.18,2.75,13.22,24.98,39.38,75.06,4.89,6.390000000000001,6.640000000000001,6.57,6.58,6.62,6.73,7.01,7.9,N/A,N/A +2013,1,22,9,30,94900,93730,92610,75.57000000000001,0,0.67,1.33,1.6400000000000001,2,2.0100000000000002,1.9000000000000001,1.59,1.16,0.63,264.92,320.65000000000003,344.3,354.99,356.40000000000003,355.46,351.81,1.53,66.63,4.96,5.82,5.91,5.9,5.95,6.09,6.54,7.11,8.17,N/A,N/A +2013,1,22,10,30,94890,93720,92600,68.38,0,0.77,1.19,1.46,1.75,2.06,2.24,2,1.51,0.35000000000000003,285.25,323.09000000000003,341.53000000000003,352.15000000000003,356.97,358.88,354.71,348.89,270.82,5.16,5.7,5.86,5.87,5.97,6.19,6.8100000000000005,7.48,8.64,N/A,N/A +2013,1,22,11,30,94930,93760,92630,78.2,0,0.8,1.25,1.1400000000000001,0.9400000000000001,0.9500000000000001,0.9400000000000001,0.84,0.5,0.47000000000000003,240.35,251.77,269.72,289.17,310.14,325.8,329.52,297.67,231.75,4.61,5.54,5.73,5.84,5.9,6.04,6.44,6.97,8.03,N/A,N/A +2013,1,22,12,30,94940,93770,92650,65.91,0,0.77,1.06,1.03,0.89,0.98,1.03,0.84,0.48,0.53,212.36,236.88,259.99,281.47,307.96,331.49,341.16,45.910000000000004,123.02,5.4,5.53,5.67,5.8100000000000005,6.09,6.41,6.96,7.48,8.31,N/A,N/A +2013,1,22,13,30,94950,93780,92660,64.69,0,0.66,0.88,1.02,1.16,1.05,0.81,0.39,0.38,0.97,196.91,236.07,256.57,271.9,280.71,283.04,276.41,239.27,149.42000000000002,5.83,5.89,6.0600000000000005,6.28,6.72,7.18,7.7700000000000005,8.17,8.56,N/A,N/A +2013,1,22,14,30,94970,93800,92690,63.95,0,0.36,0.63,0.87,1.17,0.98,0.81,0.74,0.93,2.1,340.86,322.13,310.26,297.26,281.28000000000003,261.06,210.67000000000002,183.56,161.24,6.09,5.89,6.11,6.5,7.16,7.76,8.25,8.59,8.97,N/A,N/A +2013,1,22,15,30,95000,93840,92720,63.22,0,0.6,0.63,0.8,1.19,1.05,0.9,0.84,0.97,1.75,243.61,254.08,261.22,270.98,257.85,240.54,207.74,187.05,165.82,6.8100000000000005,6.62,6.890000000000001,7.37,7.930000000000001,8.36,8.56,8.67,8.76,N/A,N/A +2013,1,22,16,30,95000,93840,92730,59.7,0,0.5700000000000001,0.5700000000000001,0.6,0.6900000000000001,0.84,1.03,1.48,1.96,2.88,274.29,273.41,263.23,245.95000000000002,209.88,176.45000000000002,168.94,164.68,166.32,7.930000000000001,7.67,7.73,7.9,8.51,9.040000000000001,9.27,9.42,9.49,N/A,N/A +2013,1,22,17,30,94970,93820,92710,55.53,0,0.28,0.24,0.37,0.85,1.36,1.9000000000000001,2.43,2.97,3.92,344.96,353.5,24.77,121.27,153.09,163.21,167.39000000000001,170.99,175.52,9.33,9.07,9.18,9.43,9.64,9.81,9.9,9.98,10.08,N/A,N/A +2013,1,22,18,30,94950,93800,92700,72.75,0,1.16,1.58,1.79,1.99,2.32,2.69,3.2600000000000002,3.81,4.74,161.15,161.46,162.05,163.07,165.20000000000002,167.59,169.94,171.91,174.06,11.72,11.39,11.22,11.06,10.89,10.74,10.620000000000001,10.52,10.38,N/A,N/A +2013,1,22,19,30,94920,93780,92670,83.27,0,2.97,3.74,3.98,4.13,4.23,4.3,4.36,4.43,4.71,179.96,179.62,179.46,179.41,179.46,179.54,179.75,179.97,180.47,13.13,12.72,12.530000000000001,12.33,12.14,11.96,11.77,11.6,11.25,N/A,N/A +2013,1,22,20,30,94890,93750,92650,77.92,0,3.77,4.66,4.9,5.0200000000000005,5.09,5.14,5.16,5.18,5.21,165.62,166.46,166.99,167.44,167.89000000000001,168.3,168.79,169.26,170.38,14.370000000000001,13.85,13.63,13.42,13.21,13.02,12.82,12.63,12.26,N/A,N/A +2013,1,22,21,30,94850,93720,92620,76.81,0,4.4,5.5,5.82,6,6.11,6.19,6.23,6.2700000000000005,6.33,165.15,166.17000000000002,166.81,167.4,167.99,168.52,169.13,169.70000000000002,170.96,14.99,14.41,14.16,13.950000000000001,13.73,13.540000000000001,13.33,13.15,12.77,N/A,N/A +2013,1,22,22,30,94820,93690,92600,78.34,0,4.03,5.0200000000000005,5.28,5.42,5.5,5.55,5.57,5.59,5.62,171.9,171.91,171.92000000000002,171.96,172.01,172.06,172.16,172.25,172.49,15.030000000000001,14.56,14.35,14.14,13.93,13.75,13.540000000000001,13.35,12.97,N/A,N/A +2013,1,22,23,30,94810,93680,92580,83.59,0,3.66,5.01,5.43,5.74,5.98,6.16,6.3,6.42,6.6000000000000005,152.08,154.33,155.81,157.29,158.76,160.11,161.54,162.86,165.39000000000001,14.21,13.96,13.8,13.620000000000001,13.44,13.26,13.06,12.88,12.49,N/A,N/A +2013,1,23,0,30,94820,93680,92590,102.21000000000001,0,0.6900000000000001,2.06,2.79,3.33,3.71,4.0200000000000005,4.32,4.61,5.25,169.70000000000002,168.99,168.74,168.76,168.4,167.96,167.52,167.15,166.6,12.58,13.290000000000001,13.39,13.43,13.41,13.370000000000001,13.25,13.14,12.870000000000001,N/A,N/A +2013,1,23,1,30,94830,93690,92600,106.58,0,1.82,3.65,4.38,5.17,6.0200000000000005,6.87,7.62,8.26,9.03,157.18,159.15,160.8,162.71,164.1,165.27,165.55,165.71,165.46,12.11,12.91,13.1,13.27,13.370000000000001,13.44,13.43,13.4,13.23,N/A,N/A +2013,1,23,2,30,94840,93710,92610,104.44,0,2.63,5.19,6.09,6.92,7.61,8.21,8.69,9.09,9.61,154.19,157.74,159.48,160.44,160.94,161.29,161.6,161.95000000000002,163.08,11.76,12.5,12.61,12.68,12.72,12.74,12.72,12.68,12.55,N/A,N/A +2013,1,23,3,30,94860,93720,92610,101,0,2.69,5.45,6.49,7.47,8.34,9.13,9.83,10.450000000000001,11.290000000000001,146.83,153.84,157.42000000000002,159.67000000000002,161.32,162.73,164.09,165.38,167.79,11.24,11.92,11.98,12.030000000000001,12.05,12.06,12.06,12.06,12.07,N/A,N/A +2013,1,23,4,30,94890,93750,92650,93.52,0,3.38,6.11,7.2,8.24,9.17,10.03,10.83,11.55,12.74,153.3,159.17000000000002,162.24,164.29,165.68,166.81,167.66,168.42000000000002,169.75,11.24,11.63,11.67,11.700000000000001,11.73,11.75,11.78,11.82,11.950000000000001,N/A,N/A +2013,1,23,5,30,94900,93760,92650,104.4,0,2.73,5.46,6.54,7.640000000000001,8.69,9.67,10.620000000000001,11.48,12.92,146.91,156.13,160.92000000000002,164.09,165.99,167.45000000000002,168.33,169.05,170.05,10.42,11.14,11.24,11.32,11.38,11.44,11.51,11.57,11.69,N/A,N/A +2013,1,23,6,30,94930,93780,92670,107.75,0,2.37,4.86,5.92,7.0200000000000005,8.08,9.07,10.01,10.9,12.450000000000001,140.35,153.84,160.67000000000002,164.84,167.22,168.95000000000002,169.82,170.52,171.36,9.96,10.81,10.96,11.1,11.22,11.32,11.42,11.51,11.68,N/A,N/A +2013,1,23,7,30,94960,93810,92700,110,0,1.3900000000000001,3.38,4.41,5.4,6.32,7.2,8.09,8.94,10.56,138.15,155.73,164.96,169.63,171.95000000000002,173.51,174.14000000000001,174.61,175,9.6,10.42,10.55,10.67,10.76,10.84,10.94,11.02,11.200000000000001,N/A,N/A +2013,1,23,8,30,94970,93820,92710,110,0,1.36,3.09,3.92,4.74,5.44,6.1000000000000005,6.8,7.45,8.67,147.98,167.52,176.24,178.39000000000001,179.64000000000001,180.52,180.70000000000002,180.69,180.07,8.92,9.72,9.94,10.13,10.25,10.34,10.44,10.52,10.68,N/A,N/A +2013,1,23,9,30,94970,93820,92700,102.13,0,1.1300000000000001,2.37,2.97,3.65,4.25,4.79,5.3,5.8,6.86,145.73,172.63,182.41,182.72,182.9,183.03,183.08,183.02,182.38,9.15,9.53,9.65,9.700000000000001,9.73,9.75,9.76,9.77,9.83,N/A,N/A +2013,1,23,10,30,94970,93820,92710,100.25,0,1.57,2.39,2.79,3.3000000000000003,3.7800000000000002,4.24,4.67,5.1000000000000005,6.0600000000000005,135.96,165.93,176.91,180.55,182.52,183.87,184.17000000000002,184.25,183.5,9.24,9.47,9.540000000000001,9.540000000000001,9.5,9.450000000000001,9.38,9.33,9.33,N/A,N/A +2013,1,23,11,30,94980,93830,92710,100.33,0,1.3900000000000001,2.11,2.46,2.98,3.52,4.03,4.43,4.84,5.7700000000000005,131.04,155.49,166.99,175.03,178.13,179.86,180.36,180.78,181.09,9.18,9.21,9.21,9.18,9.18,9.17,9.120000000000001,9.08,9.1,N/A,N/A +2013,1,23,12,30,95010,93850,92740,100.26,0,1.19,1.93,2.29,2.79,3.18,3.5300000000000002,3.86,4.2,4.92,125.54,153.27,165.91,173.79,177.85,180.70000000000002,182.53,184.08,186.27,9.200000000000001,9.28,9.3,9.290000000000001,9.25,9.21,9.14,9.09,9,N/A,N/A +2013,1,23,13,30,95030,93870,92760,99.61,0,1.67,2.22,2.41,2.66,2.91,3.14,3.4,3.63,4.08,119.55,133.56,145.88,160.67000000000002,169.01,175.17000000000002,179.57,183.32,188.34,9.19,9.120000000000001,9.13,9.16,9.15,9.14,9.13,9.11,9.09,N/A,N/A +2013,1,23,14,30,95050,93900,92780,99.3,0,1.43,2.18,2.48,2.74,3,3.23,3.38,3.5100000000000002,3.65,130.61,141.06,149.48,158.61,167.4,175.17000000000002,180.27,184.75,191.49,9.3,9.21,9.200000000000001,9.21,9.25,9.290000000000001,9.27,9.24,9.09,N/A,N/A +2013,1,23,15,30,95090,93940,92820,98.54,0,1.68,2.02,2.24,2.5500000000000003,2.81,3.0300000000000002,3.14,3.21,3.2600000000000002,149.51,157.26,164.07,172.61,179.6,185.6,189.95000000000002,193.01,195.67000000000002,9.8,9.61,9.58,9.57,9.540000000000001,9.5,9.41,9.32,9.11,N/A,N/A +2013,1,23,16,30,95100,93950,92830,96,0,1.1300000000000001,1.37,1.44,1.49,1.74,2.06,2.49,2.8000000000000003,2.95,174.57,178.91,182.93,187.66,195.1,202.67000000000002,203.89000000000001,204.69,204.98000000000002,10.58,10.24,10.09,9.97,9.86,9.76,9.66,9.56,9.35,N/A,N/A +2013,1,23,17,30,95090,93940,92830,90.37,0,1.07,1.37,1.47,1.55,1.61,1.6600000000000001,1.7,1.74,1.83,195.19,191.71,190.05,189.01,188.39000000000001,187.95000000000002,187.87,187.87,187.62,11.49,11.07,10.870000000000001,10.68,10.47,10.290000000000001,10.08,9.92,9.65,N/A,N/A +2013,1,23,18,30,95060,93920,92810,82.16,0,0.7000000000000001,0.86,0.92,0.98,1.03,1.08,1.1400000000000001,1.19,1.31,203.49,189.93,183.3,178.56,174.97,172,169.61,167.59,164.87,13.09,12.65,12.44,12.25,12.06,11.88,11.69,11.5,11.120000000000001,N/A,N/A +2013,1,23,19,30,95030,93900,92800,68.2,0,1.27,1.51,1.57,1.6,1.61,1.62,1.62,1.61,1.6,188.52,183.87,181.72,180.42000000000002,179.61,179.01,178.72,178.51,178.46,15.99,15.48,15.25,15.040000000000001,14.83,14.65,14.450000000000001,14.27,13.88,N/A,N/A +2013,1,23,20,30,94980,93860,92780,58.63,0,2.1,2.49,2.57,2.6,2.59,2.58,2.5500000000000003,2.52,2.44,171.75,172.99,173.77,174.51,175.3,176.04,177,177.91,180.25,18,17.46,17.22,17.01,16.8,16.62,16.42,16.23,15.860000000000001,N/A,N/A +2013,1,23,21,30,94930,93810,92730,54.97,0,2.32,2.79,2.9,2.93,2.94,2.93,2.91,2.87,2.79,178.84,179.39000000000001,179.79,180.19,180.63,181.04,181.58,182.1,183.38,19.21,18.7,18.48,18.27,18.06,17.87,17.67,17.490000000000002,17.1,N/A,N/A +2013,1,23,22,30,94890,93780,92700,53.620000000000005,0,2.87,3.48,3.61,3.66,3.66,3.65,3.6,3.56,3.43,177.02,176.79,176.65,176.5,176.36,176.23,176.11,176.01,175.93,19.55,19.12,18.92,18.71,18.51,18.330000000000002,18.13,17.94,17.56,N/A,N/A +2013,1,23,23,30,94880,93760,92680,65.33,0,1.83,3.34,3.69,3.98,4.19,4.36,4.49,4.61,4.82,175.4,175.74,176.01,176.25,176.35,176.39000000000001,176.27,176.14000000000001,175.79,18.32,18.56,18.47,18.330000000000002,18.17,18,17.81,17.62,17.240000000000002,N/A,N/A +2013,1,24,0,30,94890,93770,92690,76.7,0,2.97,5.37,5.98,6.45,6.73,6.92,6.92,6.9,6.6000000000000005,163.23,164.64000000000001,165.55,166.34,166.96,167.47,167.84,168.13,168.81,16.66,17.41,17.47,17.46,17.38,17.29,17.14,16.990000000000002,16.72,N/A,N/A +2013,1,24,1,30,94910,93790,92700,86.11,0,2.7,4.96,5.61,6.23,6.73,7.140000000000001,7.34,7.46,7.26,154.01,161.45000000000002,165.52,168.4,170.20000000000002,171.51,172.24,172.92000000000002,174.75,15.13,15.82,15.88,15.91,15.92,15.92,15.96,16,16.21,N/A,N/A +2013,1,24,2,30,94940,93810,92720,93.21000000000001,0,1.6500000000000001,2.52,2.86,3.54,4.32,5.12,5.84,6.5,7.42,113.54,137.08,149.70000000000002,161.20000000000002,167.52,171.88,173.74,175.36,177.13,13.74,14.46,14.56,14.64,14.71,14.76,14.82,14.870000000000001,14.98,N/A,N/A +2013,1,24,3,30,94940,93810,92720,97.94,0,1.77,1.8,1.84,2.37,3.04,3.8000000000000003,4.5200000000000005,5.24,6.59,98.7,115.31,132.51,162.76,173.91,177.94,180.42000000000002,182.63,185.22,13.06,13.61,13.84,14.26,14.4,14.450000000000001,14.51,14.59,14.84,N/A,N/A +2013,1,24,4,30,94950,93810,92720,102.28,0,1.17,1.86,2.13,2.62,3.2,3.81,4.43,5.04,6.2,112.60000000000001,141.09,154.92000000000002,164.98,170.99,175.5,177.67000000000002,179.54,181.41,12.31,13.71,14.09,14.280000000000001,14.42,14.51,14.63,14.74,14.950000000000001,N/A,N/A +2013,1,24,5,30,94950,93820,92720,106.14,0,0.81,1.7,2.15,2.73,3.33,3.93,4.55,5.16,6.3100000000000005,118.03,149.75,164.92000000000002,172.12,176.19,179.1,180.26,181.24,182.08,11.78,13.370000000000001,13.780000000000001,13.950000000000001,14.06,14.14,14.21,14.280000000000001,14.44,N/A,N/A +2013,1,24,6,30,94970,93830,92740,108.17,0,1.06,2.1,2.5300000000000002,3.02,3.5300000000000002,4.05,4.59,5.13,6.21,135.62,156.37,167.26,173.69,177.43,180.09,180.92000000000002,181.52,181.54,11.9,13.31,13.620000000000001,13.75,13.8,13.83,13.86,13.89,13.98,N/A,N/A +2013,1,24,7,30,94980,93840,92750,110,0,1.4000000000000001,2.47,2.8000000000000003,3.2,3.67,4.16,4.68,5.19,6.23,122.52,141.64000000000001,152.99,162.61,168.31,172.51,174.75,176.71,179.13,11.61,12.83,13.120000000000001,13.32,13.47,13.59,13.69,13.780000000000001,13.98,N/A,N/A +2013,1,24,8,30,94980,93840,92740,110,0,1.44,2.19,2.37,2.68,3.08,3.52,3.98,4.44,5.38,125.96000000000001,152.57,166.71,177.95000000000002,183.6,187.3,188.26,188.96,189.03,10.64,12.09,12.620000000000001,12.97,13.17,13.290000000000001,13.370000000000001,13.450000000000001,13.61,N/A,N/A +2013,1,24,9,30,94970,93830,92730,99.57000000000001,0,1.77,2.0300000000000002,2.09,2.2800000000000002,2.66,3.11,3.6,4.09,5.04,99.72,129.59,149.35,171.12,183.27,192.41,194.88,196.53,196.01,10.11,10.82,11.200000000000001,11.48,11.78,12.040000000000001,12.3,12.52,12.870000000000001,N/A,N/A +2013,1,24,10,30,94960,93810,92710,99.79,0,1.5,1.77,1.84,2.02,2.39,2.8000000000000003,3.21,3.67,4.8,114.56,127.34,145.55,173.59,182.33,185.92000000000002,188.63,190.98,193.20000000000002,10.53,10.44,10.52,10.71,10.75,10.75,10.68,10.790000000000001,11.66,N/A,N/A +2013,1,24,11,30,94970,93820,92710,99.31,0,1.59,1.84,1.6600000000000001,1.37,1.54,1.85,2.29,2.8000000000000003,3.93,103.98,115.55,132.25,153.33,165.44,175.84,180.4,184.05,186.71,10.23,10.15,10.15,10.17,10.22,10.290000000000001,10.44,10.620000000000001,10.91,N/A,N/A +2013,1,24,12,30,94970,93820,92710,99.57000000000001,0,0.86,1.03,1.02,1.03,1.22,1.46,1.76,2.1,2.95,86.81,114.93,132.8,150.42000000000002,163.61,175.76,182.27,187.98,194.05,10.27,10.23,10.17,10.08,10,9.93,9.9,9.96,10.23,N/A,N/A +2013,1,24,13,30,94980,93830,92720,99.73,0,0.68,1.17,1.23,1.22,1.2,1.17,1.19,1.21,1.43,154.43,167.53,174.99,180.47,180.52,179.26,175.46,173.54,178.74,10.36,10.19,10.08,9.98,9.86,9.77,9.700000000000001,9.68,9.72,N/A,N/A +2013,1,24,14,30,94990,93840,92730,98.89,0,1.09,1.47,1.57,1.58,1.36,1.1400000000000001,1.02,0.96,1.1400000000000001,175.93,174.62,173.38,171.99,169.68,167.89000000000001,168.16,168.35,177.07,10.14,10.01,9.93,9.82,9.76,9.72,9.72,9.68,9.53,N/A,N/A +2013,1,24,15,30,95000,93850,92740,98.63,0,0.54,0.56,0.58,0.65,0.7000000000000001,0.74,0.8200000000000001,0.9,1.09,110.85000000000001,114.87,123.08,136.81,139.89000000000001,140.07,141.68,149.36,177.53,10.47,10.25,10.15,10.040000000000001,9.93,9.83,9.72,9.64,9.5,N/A,N/A +2013,1,24,16,30,94990,93840,92730,98.05,0,1.57,1.76,1.74,1.6500000000000001,1.53,1.41,1.26,1.25,1.75,126.56,128.71,130.2,131.68,134.28,138.12,162.59,181.11,202.95000000000002,10.64,10.370000000000001,10.25,10.13,10.01,9.89,9.82,9.76,9.71,N/A,N/A +2013,1,24,17,30,94950,93800,92700,96.49000000000001,0,1.59,1.79,1.78,1.71,1.57,1.45,1.41,1.6400000000000001,3.43,105.94,111.11,115.14,119.41,126.01,133.13,158.8,177.9,204.47,11.06,10.69,10.55,10.450000000000001,10.35,10.25,10.18,10.200000000000001,11.8,N/A,N/A +2013,1,24,18,30,94870,93750,92660,69.16,0,1.43,1.6500000000000001,1.68,1.69,1.71,1.72,1.81,1.95,2.62,91.49,100.45,106.63,113.09,119.94,126.36,134.37,142.24,162.61,16.02,15.57,15.370000000000001,15.21,15.07,14.93,14.8,14.67,14.47,N/A,N/A +2013,1,24,19,30,94810,93700,92630,46.800000000000004,0,2.91,3.5,3.65,3.72,3.75,3.7600000000000002,3.7600000000000002,3.7600000000000002,3.74,179.26,181.23,182.61,183.99,185.32,186.56,187.94,189.22,192.33,21.14,20.580000000000002,20.34,20.12,19.92,19.73,19.54,19.36,19.01,N/A,N/A +2013,1,24,20,30,94750,93650,92590,44.76,0,3.27,3.96,4.15,4.23,4.2700000000000005,4.28,4.28,4.28,4.24,183.48,184.76,185.64000000000001,186.48,187.3,188.08,188.96,189.78,191.68,22.3,21.73,21.490000000000002,21.26,21.06,20.86,20.66,20.48,20.09,N/A,N/A +2013,1,24,21,30,94670,93580,92520,37.56,0,4.49,5.5600000000000005,5.88,6.05,6.15,6.21,6.24,6.25,6.24,189.85,190.41,190.8,191.15,191.47,191.77,192.06,192.33,192.93,24.02,23.490000000000002,23.27,23.04,22.830000000000002,22.63,22.42,22.23,21.84,N/A,N/A +2013,1,24,22,30,94620,93520,92460,40.33,0,5.14,6.44,6.79,6.99,7.11,7.18,7.21,7.22,7.21,179.13,179.9,180.41,180.88,181.3,181.68,182.07,182.43,183.22,23.38,22.990000000000002,22.8,22.59,22.39,22.2,22,21.81,21.43,N/A,N/A +2013,1,24,23,30,94600,93490,92430,53.02,0,3.84,5.94,6.72,7.42,7.98,8.45,8.78,9.05,9.290000000000001,154.53,160.93,165.09,168.52,171.56,174.28,177.09,179.73,185.58,20.740000000000002,20.77,20.71,20.62,20.54,20.47,20.43,20.400000000000002,20.43,N/A,N/A +2013,1,25,0,30,94580,93480,92410,56.67,0,4.24,6.84,7.7,8.41,8.92,9.31,9.55,9.74,9.96,161.86,167.82,171.58,174.79,177.95000000000002,180.9,184.34,187.56,193.92000000000002,19.330000000000002,19.84,20.01,20.21,20.45,20.69,20.95,21.17,21.48,N/A,N/A +2013,1,25,1,30,94590,93490,92420,62.54,0,4.0600000000000005,6.74,7.67,8.48,9.09,9.56,9.83,10.03,10.24,163.1,168.81,172.20000000000002,174.8,177.02,178.95000000000002,181.16,183.26,187.89000000000001,18.36,18.87,19.04,19.240000000000002,19.52,19.8,20.12,20.400000000000002,20.82,N/A,N/A +2013,1,25,2,30,94620,93500,92430,73.13,0,3.6,6,6.86,7.78,8.5,9.09,9.450000000000001,9.74,9.93,152.58,161.78,167.07,170.9,173.66,175.85,177.62,179.27,182.92000000000002,16.97,17.46,17.57,17.7,17.87,18.03,18.3,18.57,19.19,N/A,N/A +2013,1,25,3,30,94640,93530,92450,84.82000000000001,0,3.38,5.51,6.2700000000000005,7.2,8.01,8.74,9.28,9.72,10.16,138.51,151.09,158.58,164.42000000000002,168.49,171.58,173.78,175.70000000000002,178.78,15.790000000000001,16.3,16.4,16.51,16.64,16.77,16.97,17.17,17.650000000000002,N/A,N/A +2013,1,25,4,30,94640,93520,92440,91.81,0,3.2800000000000002,5.29,6.07,7.07,7.95,8.76,9.450000000000001,10.05,10.9,136.14000000000001,148.3,155.8,161.87,166.18,169.5,171.88,173.96,177.08,15.200000000000001,15.610000000000001,15.69,15.790000000000001,15.89,15.99,16.15,16.3,16.67,N/A,N/A +2013,1,25,5,30,94640,93520,92430,95.32000000000001,0,3,4.61,5.17,5.89,6.59,7.26,7.91,8.51,9.6,126.95,139.56,147.74,155.19,160.73,165.23,168.49,171.36,175.68,14.84,15.15,15.21,15.280000000000001,15.35,15.43,15.530000000000001,15.63,15.9,N/A,N/A +2013,1,25,6,30,94660,93530,92440,105,0,1.23,2.2600000000000002,2.67,3.27,3.91,4.5600000000000005,5.24,5.89,7.03,110.99000000000001,134.88,149.61,161.18,168.32,173.06,175.68,177.84,179.73,13.98,14.56,14.65,14.68,14.67,14.66,14.68,14.69,14.73,N/A,N/A +2013,1,25,7,30,94670,93540,92450,108.89,0,1.42,2.57,2.91,3.2600000000000002,3.65,4.05,4.48,4.91,5.92,161.46,171.99,177.97,181.79,184.48,186.61,188.20000000000002,189.57,190.68,13.620000000000001,14.23,14.23,14.1,13.97,13.85,13.75,13.66,13.58,N/A,N/A +2013,1,25,8,30,94660,93530,92440,106.95,0,1.36,2.71,3.21,3.64,3.98,4.25,4.5600000000000005,4.89,5.76,178.53,182.54,185.56,188.76,190.33,191.15,191.07,190.85,189.64000000000001,13.5,13.77,13.72,13.61,13.49,13.38,13.27,13.19,13.11,N/A,N/A +2013,1,25,9,30,94630,93500,92400,99.10000000000001,0,1.94,2.87,3.17,3.4,3.5100000000000002,3.5700000000000003,3.79,4.03,4.75,168.41,175.65,180,183.29,185,185.96,186.43,186.85,188.09,13.6,13.41,13.3,13.200000000000001,13.1,13,12.88,12.780000000000001,12.700000000000001,N/A,N/A +2013,1,25,10,30,94610,93480,92380,99.35000000000001,0,1.53,1.8900000000000001,1.93,1.97,2.04,2.12,2.1,2.1,2.32,182.48,194.68,200.07,202.1,202.57,202.46,204.52,206.12,209.48000000000002,13.040000000000001,12.870000000000001,12.76,12.64,12.49,12.35,12.26,12.19,12.48,N/A,N/A +2013,1,25,11,30,94600,93470,92370,99.5,0,0.23,0.72,0.92,0.88,0.92,0.97,1.11,1.21,1.3900000000000001,251.3,274.63,281.97,269.44,254.93,240.25,239.84,240.18,249.59,12.82,12.540000000000001,12.370000000000001,12.21,12.11,12.040000000000001,11.99,11.93,12,N/A,N/A +2013,1,25,12,30,94620,93490,92390,98.79,0,1.79,1.62,1.32,1,0.81,0.6900000000000001,0.56,0.48,0.42,160.3,159.65,160.55,162.45000000000002,169.61,177.03,184.31,194.52,227,12.06,11.99,11.96,11.92,11.84,11.75,11.65,11.55,11.33,N/A,N/A +2013,1,25,13,30,94640,93500,92400,99.04,0,0.43,0.26,0.21,0.22,0.22,0.22,0.19,0.13,0.04,211,184.35,172.12,158.47,139.15,119.38,103.65,94.96000000000001,56.93,12.27,12.120000000000001,12.030000000000001,11.93,11.83,11.74,11.620000000000001,11.51,11.28,N/A,N/A +2013,1,25,14,30,94650,93510,92410,98.84,0,0.8200000000000001,1.03,1.04,0.96,0.9500000000000001,0.97,1.01,1.04,1.43,240.45000000000002,248.97,258.87,272.38,284.24,295,298.8,301.78000000000003,304.41,12.16,12,11.92,11.85,11.71,11.57,11.370000000000001,11.200000000000001,11.99,N/A,N/A +2013,1,25,15,30,94680,93540,92440,93.97,0,1.07,1.25,1.28,1.28,1.27,1.26,1.48,1.78,2.93,291.77,297.19,300.45,302.81,306.16,309.51,317.22,322.54,319.54,12.56,12.19,12,11.790000000000001,11.63,11.5,11.370000000000001,11.59,13.540000000000001,N/A,N/A +2013,1,25,16,30,94690,93570,92470,77.61,0,1.61,1.85,1.8900000000000001,1.8900000000000001,1.92,1.97,2.18,2.43,3.45,291.32,297.78000000000003,302.17,306.42,312.24,318.31,326.37,333.59000000000003,340.55,14.69,14.26,14.07,13.91,13.75,13.620000000000001,13.49,13.42,13.84,N/A,N/A +2013,1,25,17,30,94650,93530,92450,46.76,0,2.77,3.4,3.6,3.71,3.79,3.86,3.91,3.96,4.07,295.68,298.49,300.31,301.82,303.18,304.41,305.68,306.84000000000003,309.26,18.54,18.03,17.8,17.6,17.400000000000002,17.23,17.04,16.86,16.51,N/A,N/A +2013,1,25,18,30,94610,93510,92440,32.89,0,2.75,3.44,3.68,3.8200000000000003,3.92,4,4.07,4.12,4.21,315.92,316.39,316.54,316.61,316.67,316.72,316.76,316.79,316.85,21.32,20.78,20.54,20.32,20.11,19.91,19.71,19.52,19.13,N/A,N/A +2013,1,25,19,30,94580,93480,92410,26.14,0,2.95,3.63,3.85,3.98,4.07,4.14,4.19,4.24,4.3100000000000005,320.22,319.71,319.38,319.06,318.76,318.48,318.18,317.92,317.33,22.69,22.16,21.93,21.7,21.490000000000002,21.29,21.080000000000002,20.89,20.5,N/A,N/A +2013,1,25,20,30,94560,93470,92400,28.32,0,3.99,4.89,5.16,5.3,5.4,5.46,5.5,5.53,5.57,321.13,320.44,319.99,319.53000000000003,319.12,318.73,318.33,317.96,317.17,23.04,22.52,22.3,22.07,21.86,21.66,21.45,21.26,20.86,N/A,N/A +2013,1,25,21,30,94520,93430,92360,28.42,0,3.4,4.25,4.53,4.68,4.8,4.88,4.95,5,5.08,311.05,310.54,310.33,310.12,309.94,309.78000000000003,309.62,309.48,309.21,23.06,22.650000000000002,22.44,22.23,22.03,21.830000000000002,21.63,21.44,21.04,N/A,N/A +2013,1,25,22,30,94510,93410,92350,29.85,0,3.11,4.05,4.36,4.58,4.75,4.88,4.98,5.07,5.2,310.68,310.75,310.75,310.7,310.65000000000003,310.6,310.54,310.47,310.27,22.82,22.53,22.36,22.16,21.97,21.79,21.580000000000002,21.400000000000002,21,N/A,N/A +2013,1,25,23,30,94520,93420,92360,36.61,0,1.23,2.74,3.43,4.05,4.5600000000000005,4.99,5.32,5.62,6.03,293.01,299.74,304.15000000000003,306.66,308.71,310.43,311.7,312.79,313.92,21.48,21.84,21.84,21.79,21.7,21.59,21.43,21.28,20.91,N/A,N/A +2013,1,26,0,30,94530,93420,92350,44.87,0,3.0500000000000003,4.57,5.13,5.58,5.91,6.16,6.3100000000000005,6.41,6.41,331.67,331.86,331.5,330.33,328.43,326.22,323.25,320.38,314.32,19.41,19.31,19.21,19.1,19,18.900000000000002,18.82,18.75,18.66,N/A,N/A +2013,1,26,1,30,94520,93410,92330,50.61,0,0.29,0.45,0.51,0.62,0.63,0.59,0.79,1.07,2.0100000000000002,169.66,113.38,83.52,65.07000000000001,43.95,25.150000000000002,3.16,339.72,328.42,18.63,18.740000000000002,18.66,18.56,18.47,18.400000000000002,18.45,18.53,19.02,N/A,N/A +2013,1,26,2,30,94520,93410,92330,55.22,0,0.21,0.26,0.28,0.44,0.58,0.6900000000000001,0.88,1.1,1.68,69.56,50.64,43.21,35.88,22.59,6.04,353.18,340.96,332.07,17.73,18.330000000000002,18.39,18.32,18.27,18.23,18.32,18.43,18.81,N/A,N/A +2013,1,26,3,30,94550,93430,92350,60.5,0,1.85,3.14,3.43,3.7600000000000002,4.14,4.5200000000000005,4.66,4.73,4.46,35.2,44.2,50.97,58.72,64.16,68.41,70.43,71.87,72.48,17.11,17.46,17.43,17.35,17.25,17.150000000000002,17.09,17.05,17.09,N/A,N/A +2013,1,26,4,30,94590,93470,92390,56.49,0,1.84,3.54,4.11,4.62,5.24,5.92,6.5,6.93,6.74,42.62,47.45,51.29,55.58,58.78,61.480000000000004,63.13,64.65,68.34,16.1,16.48,16.43,16.34,16.22,16.09,15.98,15.9,15.92,N/A,N/A +2013,1,26,5,30,94600,93480,92390,51.09,0,1.78,3.6,4.26,4.79,5.39,6.01,6.53,6.9,6.75,42.25,45.27,48.2,52.050000000000004,55.52,58.75,61,63.26,68.96000000000001,15.040000000000001,15.41,15.36,15.280000000000001,15.18,15.07,14.97,14.91,15,N/A,N/A +2013,1,26,6,30,94640,93510,92420,47.910000000000004,0,1.54,2.91,3.31,3.64,4.15,4.72,5.14,5.47,5.76,30.27,36.57,43.4,52.76,59.56,65.38,69.99,74.48,82.77,14.05,14.43,14.36,14.26,14.19,14.14,14.18,14.24,14.46,N/A,N/A +2013,1,26,7,30,94650,93520,92430,50.17,0,1.69,2.37,2.45,2.7,3.0500000000000003,3.43,3.89,4.37,5.46,24.64,50.370000000000005,68.26,88.79,95.79,98.19,97.82000000000001,97.42,96.87,13.42,13.98,14.06,14.13,14.040000000000001,13.92,13.77,13.620000000000001,13.47,N/A,N/A +2013,1,26,8,30,94630,93500,92400,47.64,0,2.8000000000000003,4.11,3.93,3.44,3.5,3.72,4.41,5.14,6.53,16.81,23.56,32.980000000000004,45.61,58.39,70.68,77.26,83.16,90.55,12.96,13.23,13.15,13.02,12.98,12.97,12.96,13.01,13.22,N/A,N/A +2013,1,26,9,30,94630,93490,92390,51.65,0,2.17,3.43,3.36,3.06,3.19,3.42,3.8000000000000003,4.2,5.19,18.830000000000002,29.28,43.57,62.96,76.8,88.51,92.23,94.99,97.07000000000001,11.94,12.42,12.36,12.26,12.33,12.44,12.49,12.51,12.47,N/A,N/A +2013,1,26,10,30,94600,93460,92360,51.32,0,2.19,3.04,2.98,2.96,3.17,3.46,4.0200000000000005,4.55,5.57,20.740000000000002,33.26,49.53,72.67,83.32000000000001,90.05,92.62,94.71000000000001,98.03,11.790000000000001,11.950000000000001,11.84,11.75,11.75,11.78,11.83,11.84,11.91,N/A,N/A +2013,1,26,11,30,94590,93450,92350,51.160000000000004,0,2.35,3.21,3.15,3.02,3.23,3.52,3.98,4.46,5.53,24.77,38.27,51.97,69.14,81.27,91.26,93.41,95.5,100.3,11.3,11.44,11.44,11.450000000000001,11.56,11.66,11.56,11.5,11.67,N/A,N/A +2013,1,26,12,30,94590,93450,92350,54.24,0,2.07,2.98,2.83,2.56,2.66,2.86,3.27,3.72,4.82,24.03,35.6,51.45,72.57000000000001,84.99,94.44,97.42,99.56,101.98,10.950000000000001,11.24,11.32,11.450000000000001,11.48,11.48,11.41,11.35,11.36,N/A,N/A +2013,1,26,13,30,94590,93450,92340,54.1,0,2.44,2.97,3,3.29,3.66,4.05,4.5600000000000005,5.08,6.1000000000000005,24.810000000000002,51.38,68.34,86.78,93.91,97.47,99.39,101.64,107.69,10.790000000000001,11.040000000000001,11.14,11.3,11.32,11.31,11.23,11.200000000000001,11.38,N/A,N/A +2013,1,26,14,30,94600,93460,92350,54.08,0,1.6500000000000001,2.24,2.64,3.25,3.89,4.53,5.14,5.71,6.640000000000001,45.6,71.60000000000001,84.92,94.01,98.51,101.5,103.03,105.15,111.55,11.48,11.44,11.39,11.32,11.21,11.11,10.99,10.97,11.22,N/A,N/A +2013,1,26,15,30,94570,93440,92340,51.88,0,1.78,2.24,2.42,2.54,2.68,2.81,3.23,3.8000000000000003,5.46,105.01,107.03,108,108.66,108.94,109.18,111.86,114.7,120.88,13.48,13.07,12.89,12.71,12.540000000000001,12.38,12.22,12.13,12.25,N/A,N/A +2013,1,26,16,30,94540,93420,92330,52.57,0,2.88,3.59,3.81,3.92,4.01,4.07,4.13,4.18,4.32,135.05,135.38,135.55,135.69,135.82,135.93,136.09,136.25,136.66,16.11,15.58,15.36,15.15,14.96,14.780000000000001,14.58,14.4,14.040000000000001,N/A,N/A +2013,1,26,17,30,94500,93380,92300,53.04,0,3.4,4.2700000000000005,4.55,4.71,4.82,4.91,4.97,5.03,5.13,137.39000000000001,138.17000000000002,138.6,138.91,139.18,139.41,139.66,139.88,140.39000000000001,18.34,17.76,17.51,17.29,17.07,16.88,16.67,16.48,16.1,N/A,N/A +2013,1,26,18,30,94440,93330,92260,50.28,0,4.62,5.7700000000000005,6.140000000000001,6.36,6.5,6.6000000000000005,6.68,6.74,6.82,146.48,147.25,147.68,148.02,148.31,148.57,148.84,149.07,149.55,20.09,19.44,19.17,18.93,18.7,18.5,18.28,18.09,17.69,N/A,N/A +2013,1,26,19,30,94400,93290,92230,50.230000000000004,0,5.59,6.95,7.37,7.6000000000000005,7.74,7.8500000000000005,7.91,7.96,8.02,157.1,157.11,157.11,157.09,157.08,157.06,157.05,157.04,157.02,21.21,20.52,20.25,20,19.77,19.56,19.34,19.14,18.740000000000002,N/A,N/A +2013,1,26,20,30,94340,93240,92180,53.35,0,5.57,6.96,7.41,7.65,7.82,7.94,8.03,8.09,8.18,159.24,159.37,159.44,159.5,159.54,159.57,159.6,159.63,159.69,22,21.35,21.09,20.85,20.62,20.41,20.2,20,19.59,N/A,N/A +2013,1,26,21,30,94270,93180,92110,53.06,0,5.88,7.3500000000000005,7.78,8.01,8.16,8.26,8.32,8.370000000000001,8.4,156.07,156.26,156.4,156.51,156.61,156.70000000000002,156.8,156.88,157.07,22.240000000000002,21.650000000000002,21.400000000000002,21.17,20.95,20.740000000000002,20.53,20.330000000000002,19.93,N/A,N/A +2013,1,26,22,30,94240,93150,92080,55.18,0,5.38,6.79,7.24,7.5,7.67,7.79,7.87,7.930000000000001,8,151.9,152.19,152.37,152.52,152.65,152.77,152.9,153.01,153.26,21.52,21.06,20.84,20.62,20.41,20.21,20.01,19.82,19.42,N/A,N/A +2013,1,26,23,30,94220,93120,92060,59.32,0,4.32,5.94,6.49,6.91,7.22,7.48,7.68,7.8500000000000005,8.1,147.46,147.45000000000002,147.48,147.51,147.55,147.59,147.65,147.70000000000002,147.83,20.59,20.34,20.18,20,19.81,19.62,19.42,19.240000000000002,18.84,N/A,N/A +2013,1,27,0,30,94230,93120,92060,64.69,0,3.15,4.89,5.6000000000000005,6.2,6.7,7.13,7.51,7.86,8.48,135.34,136.56,137.41,138.16,138.87,139.54,140.18,140.78,141.92000000000002,19.54,19.400000000000002,19.27,19.12,18.95,18.79,18.6,18.43,18.06,N/A,N/A +2013,1,27,1,30,94250,93140,92070,66.29,0,3.19,4.97,5.73,6.37,6.92,7.41,7.87,8.290000000000001,9.09,140.61,141.43,141.98,142.44,142.86,143.26,143.69,144.12,145.02,18.79,18.61,18.47,18.3,18.13,17.95,17.76,17.580000000000002,17.19,N/A,N/A +2013,1,27,2,30,94260,93150,92080,74.49,0,1.76,3.69,4.58,5.34,6.01,6.6000000000000005,7.16,7.68,8.65,135.87,139,140.87,141.87,142.63,143.26,143.65,143.98,144.29,17.8,17.73,17.6,17.45,17.27,17.11,16.92,16.75,16.37,N/A,N/A +2013,1,27,3,30,94270,93160,92080,82,0,2.0300000000000002,4.22,5.26,6.18,6.99,7.72,8.44,9.11,10.41,132.04,136.85,139.70000000000002,141.16,142.24,143.1,143.82,144.47,145.67000000000002,16.9,16.9,16.8,16.67,16.53,16.39,16.240000000000002,16.1,15.81,N/A,N/A +2013,1,27,4,30,94260,93140,92070,83.62,0,2.81,4.9,5.86,6.71,7.44,8.11,8.75,9.35,10.55,135.08,138.39000000000001,140.37,141.64000000000001,142.77,143.78,144.86,145.91,148.16,16.68,16.6,16.51,16.4,16.28,16.17,16.04,15.93,15.700000000000001,N/A,N/A +2013,1,27,5,30,94240,93120,92050,83.32000000000001,0,3.39,5.58,6.5600000000000005,7.45,8.24,8.97,9.68,10.36,11.66,137.38,140.64000000000001,142.62,144.09,145.36,146.51,147.55,148.51,150.17000000000002,16.75,16.71,16.65,16.57,16.490000000000002,16.41,16.31,16.23,16.05,N/A,N/A +2013,1,27,6,30,94230,93120,92040,77.2,0,4.49,6.8100000000000005,7.75,8.58,9.32,9.98,10.620000000000001,11.23,12.43,145.18,146.29,147.02,147.76,148.55,149.33,150.22,151.07,152.9,17.02,16.93,16.84,16.740000000000002,16.63,16.53,16.43,16.330000000000002,16.15,N/A,N/A +2013,1,27,7,30,94260,93150,92070,70.38,0,4.33,6.75,7.75,8.61,9.34,9.99,10.63,11.22,12.36,149.44,150.53,151.3,152,152.70000000000002,153.37,154.1,154.8,156.21,16.7,16.7,16.64,16.55,16.45,16.35,16.240000000000002,16.14,15.93,N/A,N/A +2013,1,27,8,30,94230,93120,92030,57.660000000000004,0,6.54,9.290000000000001,10.38,11.32,12.15,12.9,13.64,14.33,15.73,145.66,148.13,149.76,151.17000000000002,152.44,153.6,154.69,155.70000000000002,157.64000000000001,16.53,16.490000000000002,16.41,16.31,16.21,16.12,16.01,15.9,15.700000000000001,N/A,N/A +2013,1,27,9,30,94250,93140,92050,65.03,0,4.62,6.92,8.08,9.120000000000001,10.02,10.81,11.53,12.19,13.39,138.36,143.1,146.5,148.79,150.58,152.03,153.24,154.33,156.16,16.14,16.02,15.9,15.77,15.63,15.5,15.35,15.22,14.96,N/A,N/A +2013,1,27,10,30,94140,93020,91940,69.29,0,8.68,11.620000000000001,12.59,13.36,13.99,14.51,15.01,15.47,16.330000000000002,145.85,147.48,148.42000000000002,149.27,150.07,150.8,151.58,152.32,153.86,16.04,15.860000000000001,15.74,15.6,15.450000000000001,15.32,15.18,15.06,14.82,N/A,N/A +2013,1,27,11,30,94150,93040,91960,73.79,0,7.41,9.93,10.83,11.53,12.120000000000001,12.63,13.120000000000001,13.57,14.450000000000001,144.25,145.35,146.18,146.98,147.78,148.53,149.36,150.15,151.8,15.76,15.59,15.46,15.32,15.17,15.030000000000001,14.89,14.75,14.49,N/A,N/A +2013,1,27,12,30,94130,93010,91930,78.32000000000001,0,6.8,9.25,10.19,10.950000000000001,11.57,12.11,12.59,13.040000000000001,13.86,141.18,143.19,144.48,145.53,146.45000000000002,147.28,148.08,148.83,150.25,15.43,15.25,15.11,14.96,14.82,14.67,14.52,14.38,14.11,N/A,N/A +2013,1,27,13,30,94230,93110,92030,90.02,0,2.02,3.87,4.5,5.05,5.62,6.19,6.74,7.2700000000000005,8.23,184.02,179.87,178.46,180.02,180.67000000000002,180.81,180.11,179.28,177.07,14.41,14.77,14.700000000000001,14.56,14.41,14.27,14.11,13.97,13.68,N/A,N/A +2013,1,27,14,30,94260,93140,92050,85.16,0,2.7800000000000002,4.13,4.8500000000000005,5.51,6.09,6.6000000000000005,7.0600000000000005,7.48,8.22,179.85,182.34,183.08,182.5,181.62,180.64000000000001,179.42000000000002,178.24,175.88,14.8,14.52,14.36,14.17,14,13.84,13.66,13.49,13.120000000000001,N/A,N/A +2013,1,27,15,30,94280,93160,92070,84,0,3.9,4.92,5.26,5.47,5.61,5.71,5.79,5.86,5.99,174,173.41,173.08,172.83,172.63,172.47,172.33,172.20000000000002,171.96,15.25,14.82,14.620000000000001,14.41,14.200000000000001,14.02,13.81,13.620000000000001,13.23,N/A,N/A +2013,1,27,16,30,94270,93150,92070,74.84,0,3.71,4.6000000000000005,4.9,5.05,5.16,5.23,5.28,5.32,5.39,170.91,169.88,169.23,168.73,168.28,167.88,167.49,167.15,166.48,16.64,16.06,15.82,15.59,15.38,15.19,14.99,14.81,14.43,N/A,N/A +2013,1,27,17,30,94230,93120,92050,61.88,0,3.96,4.89,5.19,5.3500000000000005,5.44,5.51,5.54,5.57,5.59,166.72,166.69,166.68,166.69,166.71,166.72,166.74,166.77,166.86,18.6,17.97,17.71,17.47,17.25,17.05,16.84,16.65,16.25,N/A,N/A +2013,1,27,18,30,94190,93090,92020,54.33,0,4.32,5.3,5.61,5.76,5.8500000000000005,5.91,5.94,5.96,5.96,167.86,168.17000000000002,168.36,168.53,168.69,168.84,169,169.15,169.47,20.14,19.48,19.2,18.96,18.73,18.52,18.31,18.11,17.71,N/A,N/A +2013,1,27,19,30,94170,93070,92000,49.02,0,3.9,4.76,5.04,5.18,5.26,5.3100000000000005,5.34,5.36,5.36,176.51,176.31,176.20000000000002,176.14000000000001,176.11,176.08,176.07,176.07,176.11,21.46,20.81,20.54,20.29,20.06,19.85,19.64,19.44,19.04,N/A,N/A +2013,1,27,20,30,94120,93030,91970,45.95,0,4.07,4.93,5.18,5.2700000000000005,5.33,5.3500000000000005,5.3500000000000005,5.34,5.29,177.11,176.91,176.8,176.69,176.6,176.51,176.44,176.37,176.26,22.2,21.57,21.31,21.07,20.85,20.64,20.43,20.240000000000002,19.84,N/A,N/A +2013,1,27,21,30,94060,92970,91910,44.31,0,3.75,4.61,4.8500000000000005,4.96,5.0200000000000005,5.0600000000000005,5.07,5.08,5.07,176.08,176.20000000000002,176.29,176.37,176.46,176.56,176.67000000000002,176.76,177,22.75,22.17,21.93,21.7,21.48,21.28,21.07,20.87,20.47,N/A,N/A +2013,1,27,22,30,94040,92950,91890,44.46,0,3.5500000000000003,4.37,4.61,4.74,4.8100000000000005,4.86,4.88,4.9,4.91,172.91,172.87,172.84,172.8,172.77,172.73,172.68,172.65,172.57,22.830000000000002,22.36,22.150000000000002,21.92,21.72,21.52,21.31,21.12,20.72,N/A,N/A +2013,1,27,23,30,94020,92930,91870,49.36,0,2.73,4.08,4.51,4.8100000000000005,5.03,5.2,5.32,5.43,5.57,160.49,161.38,162.04,162.67000000000002,163.17000000000002,163.6,163.91,164.17000000000002,164.46,22.01,21.900000000000002,21.79,21.62,21.45,21.27,21.080000000000002,20.900000000000002,20.5,N/A,N/A +2013,1,28,0,30,94040,92940,91880,60.92,0,1.82,3.87,4.76,5.61,6.33,6.93,7.390000000000001,7.79,8.32,147.18,155.07,160.17000000000002,162.68,164.27,165.21,165.56,165.75,165.23,19.88,20.56,20.6,20.62,20.6,20.56,20.48,20.39,20.12,N/A,N/A +2013,1,28,1,30,94060,92960,91890,66.42,0,2,3.86,4.5600000000000005,5.36,6.140000000000001,6.9,7.62,8.3,9.48,128.46,140.93,148.47,153.29,156.61,158.99,160.47,161.69,162.98,18.81,19.51,19.57,19.6,19.61,19.6,19.56,19.51,19.35,N/A,N/A +2013,1,28,2,30,94060,92960,91890,61.78,0,3.54,6.01,6.92,7.8100000000000005,8.6,9.33,10.03,10.69,11.88,145.64000000000001,151.11,154.33,156.56,158.17000000000002,159.44,160.4,161.25,162.53,18.53,18.94,18.98,18.990000000000002,18.98,18.96,18.91,18.86,18.740000000000002,N/A,N/A +2013,1,28,3,30,94080,92980,91910,60.64,0,4.13,6.68,7.72,8.76,9.69,10.57,11.4,12.17,13.44,143.52,148.83,152.29,154.77,156.71,158.3,159.61,160.78,162.76,17.92,18.28,18.36,18.43,18.48,18.52,18.56,18.580000000000002,18.61,N/A,N/A +2013,1,28,4,30,94090,92980,91920,55.61,0,5.58,8.51,9.75,10.91,11.91,12.81,13.59,14.290000000000001,15.290000000000001,154.70000000000002,156.64000000000001,157.85,158.63,159.21,159.67000000000002,160.1,160.51,161.55,18.42,18.75,18.84,18.93,19.01,19.07,19.12,19.17,19.2,N/A,N/A +2013,1,28,5,30,94100,92990,91920,63.42,0,3.77,6.48,7.65,8.790000000000001,9.83,10.8,11.75,12.63,14.120000000000001,133.38,139.81,143.74,146.03,147.64000000000001,148.85,149.83,150.75,152.64000000000001,16.740000000000002,17.16,17.23,17.27,17.27,17.27,17.25,17.240000000000002,17.22,N/A,N/A +2013,1,28,6,30,94120,93000,91920,92.2,0,3.0500000000000003,5.66,6.88,8.02,8.98,9.83,10.61,11.33,12.65,121.28,131.74,138.21,141.48,143.71,145.32,146.68,147.96,150.56,15.33,15.63,15.65,15.64,15.63,15.610000000000001,15.59,15.58,15.610000000000001,N/A,N/A +2013,1,28,7,30,94110,92990,91910,100.35000000000001,0,3.0700000000000003,5.66,6.84,7.92,8.83,9.63,10.34,10.99,12.16,125.43,134.04,139.15,141.70000000000002,143.45000000000002,144.70000000000002,145.68,146.57,148.25,15.5,15.67,15.63,15.57,15.51,15.44,15.370000000000001,15.3,15.18,N/A,N/A +2013,1,28,8,30,94120,93010,91930,109.89,0,1.24,3.7600000000000002,5.46,6.7700000000000005,7.8100000000000005,8.65,9.33,9.94,10.96,108.25,132.21,148.6,150.88,152.02,152.45000000000002,152.6,152.72,152.95000000000002,15.1,15.52,15.43,15.32,15.200000000000001,15.08,14.950000000000001,14.83,14.58,N/A,N/A +2013,1,28,9,30,94120,93010,91930,100.03,0,1.9100000000000001,5.48,7.67,8.89,9.77,10.42,10.94,11.41,12.280000000000001,140.5,153.07,161.49,162.34,162.64000000000001,162.58,162.36,162.12,161.53,15.99,16.09,16.01,15.89,15.780000000000001,15.66,15.530000000000001,15.4,15.120000000000001,N/A,N/A +2013,1,28,10,30,94080,92970,91890,97.73,0,5.0600000000000005,7.38,8.290000000000001,9.03,9.63,10.120000000000001,10.540000000000001,10.91,11.59,142.71,145.14000000000001,146.69,147.56,148.08,148.39000000000001,148.52,148.62,148.71,16.06,16.01,15.91,15.780000000000001,15.64,15.5,15.35,15.21,15,N/A,N/A +2013,1,28,11,30,94080,92970,91890,89.72,0,6.3500000000000005,8.9,9.96,10.85,11.56,12.16,12.66,13.11,13.83,150.68,153.1,154.64000000000001,155.81,156.77,157.59,158.32,158.99,160.19,16.5,16.34,16.22,16.080000000000002,15.94,15.8,15.65,15.51,15.23,N/A,N/A +2013,1,28,12,30,94070,92960,91880,96.48,0,3.97,5.7700000000000005,6.5200000000000005,7.16,7.67,8.09,8.45,8.77,9.290000000000001,149.25,152.3,154.17000000000002,155.51,156.55,157.41,158.17000000000002,158.87,160.16,16,15.77,15.610000000000001,15.450000000000001,15.31,15.18,15.08,15,14.81,N/A,N/A +2013,1,28,13,30,94080,92970,91890,95.7,0,5.0200000000000005,7.63,8.81,9.84,10.69,11.42,12.02,12.540000000000001,13.25,156.24,159.14000000000001,161,162.21,163.17000000000002,163.97,164.71,165.38,166.73,15.67,15.610000000000001,15.49,15.33,15.15,14.98,14.790000000000001,14.61,14.200000000000001,N/A,N/A +2013,1,28,14,30,94060,92950,91860,92.03,0,5.33,7.3500000000000005,8.1,8.77,9.33,9.81,10.32,10.790000000000001,11.66,165.38,166.54,167.18,167.76,168.24,168.67000000000002,169.3,169.94,171.35,15.790000000000001,15.5,15.31,15.1,14.88,14.68,14.49,14.32,14.1,N/A,N/A +2013,1,28,15,30,94110,93000,91920,86.62,0,5.82,7.5,8.07,8.46,8.74,8.950000000000001,9.120000000000001,9.27,9.5,176.99,177.31,177.57,177.81,178.04,178.27,178.52,178.76,179.26,16.22,15.83,15.63,15.42,15.21,15.02,14.81,14.61,14.19,N/A,N/A +2013,1,28,16,30,94080,92970,91890,77.24,0,7.82,9.67,10.16,10.4,10.52,10.57,10.57,10.57,10.58,180.02,180.09,180.20000000000002,180.35,180.52,180.70000000000002,180.95000000000002,181.20000000000002,182.01,16.990000000000002,16.38,16.15,15.93,15.73,15.56,15.39,15.23,14.97,N/A,N/A +2013,1,28,17,30,94090,92990,91910,69.19,0,8.02,9.67,10.16,10.32,10.4,10.4,10.370000000000001,10.32,10.23,184.85,185.14000000000001,185.37,185.74,186.13,186.55,187.05,187.55,189.03,18.22,17.55,17.3,17.080000000000002,16.89,16.73,16.57,16.43,16.2,N/A,N/A +2013,1,28,18,30,94050,92950,91880,62.480000000000004,0,5.08,6.22,6.5600000000000005,6.71,6.79,6.84,6.86,6.87,6.8500000000000005,176.3,176.09,176.04,176.03,176.05,176.09,176.18,176.28,176.61,19.53,18.84,18.57,18.330000000000002,18.11,17.91,17.7,17.51,17.13,N/A,N/A +2013,1,28,19,30,94000,92900,91840,52.77,0,5.86,7.18,7.640000000000001,7.86,8.02,8.11,8.18,8.23,8.290000000000001,188.54,188.79,188.97,189.26,189.56,189.88,190.23,190.56,191.32,21.55,20.87,20.6,20.34,20.12,19.91,19.7,19.51,19.12,N/A,N/A +2013,1,28,20,30,93920,92830,91780,35.25,0,5.84,7.25,7.73,7.99,8.17,8.3,8.4,8.48,8.59,198.11,198.84,199.37,199.9,200.37,200.82,201.28,201.71,202.58,23.38,22.740000000000002,22.48,22.240000000000002,22.02,21.81,21.61,21.41,21.01,N/A,N/A +2013,1,28,21,30,93880,92800,91740,23.41,0,6.2,7.67,8.2,8.5,8.72,8.88,9.01,9.120000000000001,9.28,210.32,210.59,210.85,211.11,211.36,211.58,211.79,211.99,212.37,24.400000000000002,23.85,23.63,23.39,23.17,22.96,22.75,22.55,22.150000000000002,N/A,N/A +2013,1,28,22,30,93880,92810,91750,28.26,0,4.62,5.63,6.13,6.390000000000001,6.59,6.72,6.82,6.9,7.0200000000000005,195.03,195.71,196.38,196.92000000000002,197.37,197.77,198.12,198.44,199.03,24.11,23.73,23.53,23.3,23.1,22.89,22.69,22.490000000000002,22.09,N/A,N/A +2013,1,28,23,30,93780,92700,91640,43.230000000000004,0,3.85,5.64,6.24,6.640000000000001,6.96,7.21,7.390000000000001,7.55,7.73,169.94,170.16,170.5,171.23,171.89000000000001,172.5,172.94,173.28,173.61,22.14,22.22,22.16,22.03,21.88,21.71,21.52,21.35,20.96,N/A,N/A +2013,1,29,0,30,93790,92700,91640,48.13,0,3.64,5.38,5.82,6.3,6.83,7.57,8.32,9.07,10.19,132.29,136.54,140.4,146.9,152.32,157.21,160.67000000000002,163.14000000000001,165.63,19.71,20.53,20.79,20.78,20.77,20.75,20.73,20.71,20.56,N/A,N/A +2013,1,29,1,30,93720,92630,91570,61.230000000000004,0,4.9,7.67,8.88,10,10.97,11.81,12.48,13.05,13.75,152.58,155.17000000000002,156.70000000000002,157.11,157.21,157.04,156.87,156.70000000000002,156.66,19.23,19.63,19.76,19.86,19.91,19.93,19.89,19.84,19.6,N/A,N/A +2013,1,29,2,30,93680,92580,91520,71.3,0,5.33,8.120000000000001,9.35,10.53,11.55,12.47,13.25,13.950000000000001,14.83,154.70000000000002,157.70000000000002,159.31,160.13,160.49,160.59,160.53,160.45000000000002,160.71,18.43,18.55,18.56,18.57,18.57,18.57,18.59,18.6,18.63,N/A,N/A +2013,1,29,3,30,93640,92540,91480,75.63,0,6.5,9.38,10.5,11.49,12.34,13.1,13.780000000000001,14.4,15.370000000000001,149.75,150.46,150.81,150.9,150.9,150.85,150.83,150.82,151.19,18.61,18.69,18.69,18.68,18.68,18.68,18.68,18.67,18.650000000000002,N/A,N/A +2013,1,29,4,30,93590,92490,91430,77.96000000000001,0,5.57,8.07,9.05,10,10.9,11.73,12.56,13.35,14.91,136.66,140.15,142.3,144.15,145.68,147,148.08,149.07,150.84,17.830000000000002,17.92,17.94,17.95,17.96,17.97,17.96,17.96,17.94,N/A,N/A +2013,1,29,5,30,93550,92450,91390,71.8,0,7.26,10.18,11.4,12.55,13.63,14.69,15.74,16.73,18.64,153.89000000000001,154.79,155.3,155.61,155.88,156.11,156.45000000000002,156.8,157.95000000000002,18.22,18.29,18.29,18.26,18.240000000000002,18.22,18.21,18.21,18.25,N/A,N/A +2013,1,29,6,30,93550,92450,91390,72.16,0,10.13,13.370000000000001,14.67,15.74,16.68,17.55,18.39,19.18,20.64,164.99,165.54,165.98,166.36,166.68,166.95000000000002,167.24,167.54,168.39000000000001,17.86,17.96,17.97,18,18.03,18.06,18.11,18.17,18.32,N/A,N/A +2013,1,29,7,30,93700,92600,91520,85.72,0,4.55,5.89,6.28,5.89,5.3100000000000005,4.3100000000000005,4.29,4.8500000000000005,6.67,295.73,291.74,287.99,278.09000000000003,263.54,238.44,223.73000000000002,212.57,197.22,15.66,15.89,16,15.98,16.06,16.330000000000002,16.39,16.31,16.15,N/A,N/A +2013,1,29,8,30,93580,92480,91410,82.26,0,4.05,6.51,7.66,8.83,9.870000000000001,10.82,11.65,12.41,13.55,158.58,165.34,170.38,173.51,175.91,177.67000000000002,179.09,180.33,182.70000000000002,15.99,16.45,16.6,16.78,16.94,17.1,17.27,17.43,17.77,N/A,N/A +2013,1,29,9,30,93540,92440,91380,72.08,0,4.61,7.0200000000000005,8.01,8.83,9.47,9.96,10.43,10.870000000000001,11.64,170.22,175.35,179.77,183.49,186.87,190.17000000000002,193.64000000000001,197.13,203.63,17.01,18.12,18.71,19.36,19.84,20.19,20.38,20.490000000000002,20.45,N/A,N/A +2013,1,29,10,30,93470,92370,91310,77.24,0,6.04,8.58,9.290000000000001,9.620000000000001,9.82,9.94,10.23,10.53,11.3,169.12,170.28,171.85,174.75,179.16,184.31,191.49,198.52,211.36,16.5,17.32,17.75,18.27,18.76,19.23,19.59,19.89,19.88,N/A,N/A +2013,1,29,11,30,93520,92430,91360,80.28,0,4.53,6.66,7.47,7.86,8.11,8.19,8.28,8.38,8.53,163.20000000000002,165.68,168.17000000000002,172.22,176.23,181.19,186.79,192.76,206.13,15.790000000000001,16.7,17.11,17.55,17.900000000000002,18.17,18.35,18.47,18.62,N/A,N/A +2013,1,29,12,30,93520,92410,91330,101.06,0,0.8200000000000001,1.25,1.3900000000000001,1.81,2.16,2.45,2.68,2.88,3.2800000000000002,322.58,278.13,250.45000000000002,237.19,229.25,226.06,225.14000000000001,224.83,225.17000000000002,12.85,14.17,14.52,14.69,14.81,14.89,14.950000000000001,15,15.05,N/A,N/A +2013,1,29,13,30,93450,92330,91260,105.19,0,1.49,2.69,2.84,2.82,2.79,2.7600000000000002,2.65,2.58,2.8000000000000003,215.53,218.46,222.39000000000001,227.69,228.22,227.65,227.18,228.95000000000002,241.84,12.11,13.870000000000001,14.22,14.25,14.280000000000001,14.31,14.450000000000001,14.61,15.07,N/A,N/A +2013,1,29,14,30,93540,92420,91330,52.67,0,8.89,12.08,13.16,14.040000000000001,14.81,15.49,16.1,16.65,17.51,316.3,316.88,317.14,317.28000000000003,317.32,317.31,317.18,316.99,316.39,12.84,12.61,12.450000000000001,12.290000000000001,12.120000000000001,11.96,11.8,11.65,11.370000000000001,N/A,N/A +2013,1,29,15,30,93670,92550,91460,50.33,0,8.08,9.91,10.65,11.040000000000001,11.33,11.53,11.69,11.83,12.05,307.36,308.13,308.74,309.12,309.41,309.65000000000003,309.85,310.02,310.31,13.25,12.780000000000001,12.55,12.32,12.11,11.91,11.700000000000001,11.51,11.11,N/A,N/A +2013,1,29,16,30,93650,92530,91440,44.69,0,9.72,11.96,12.8,13.26,13.57,13.790000000000001,13.94,14.06,14.21,310.77,311.32,311.68,311.88,312.04,312.16,312.25,312.33,312.44,13.33,12.71,12.450000000000001,12.200000000000001,11.97,11.76,11.540000000000001,11.34,10.93,N/A,N/A +2013,1,29,17,30,93590,92460,91370,42.51,0,8.09,10.26,10.9,11.31,11.59,11.81,11.97,12.1,12.3,308.44,308.56,308.6,308.6,308.6,308.59000000000003,308.58,308.57,308.53000000000003,13.870000000000001,13.17,12.9,12.65,12.42,12.200000000000001,11.98,11.77,11.36,N/A,N/A +2013,1,29,18,30,93550,92430,91340,36.06,0,8.52,10.72,11.370000000000001,11.76,12.030000000000001,12.24,12.39,12.51,12.68,301.44,301.25,301.11,300.96,300.79,300.64,300.48,300.33,300.03000000000003,14.55,13.81,13.530000000000001,13.27,13.030000000000001,12.82,12.59,12.38,11.96,N/A,N/A +2013,1,29,19,30,93540,92420,91340,30.28,0,8.39,10.77,11.49,11.98,12.33,12.61,12.84,13.030000000000001,13.33,283.07,283.42,283.52,283.55,283.55,283.55,283.53000000000003,283.51,283.44,15.34,14.620000000000001,14.34,14.09,13.84,13.620000000000001,13.39,13.18,12.76,N/A,N/A +2013,1,29,20,30,93560,92440,91350,26.28,0,11.51,14.39,15.48,16.1,16.55,16.88,17.12,17.32,17.59,284.45,284.22,284.05,283.89,283.75,283.6,283.47,283.34000000000003,283.07,15.14,14.47,14.19,13.92,13.69,13.47,13.24,13.030000000000001,12.61,N/A,N/A +2013,1,29,21,30,93530,92410,91320,26.61,0,10.47,13.31,14.08,14.58,14.92,15.19,15.4,15.56,15.82,284.68,284.53000000000003,284.39,284.23,284.06,283.90000000000003,283.73,283.57,283.25,14.21,13.59,13.33,13.1,12.86,12.65,12.43,12.22,11.81,N/A,N/A +2013,1,29,22,30,93570,92450,91350,28.77,0,10.950000000000001,14.08,14.950000000000001,15.52,15.93,16.25,16.48,16.68,16.97,276.25,276.77,277.03000000000003,277.23,277.38,277.51,277.62,277.72,277.88,13.23,12.74,12.51,12.3,12.07,11.870000000000001,11.66,11.450000000000001,11.05,N/A,N/A +2013,1,29,23,30,93710,92580,91480,22.22,0,9.42,11.68,12.8,13.46,13.97,14.36,14.68,14.94,15.370000000000001,288.92,289.03000000000003,289.13,289.16,289.16,289.14,289.11,289.06,288.93,12.16,11.96,11.81,11.6,11.42,11.22,11.02,10.84,10.44,N/A,N/A +2013,1,30,0,30,93800,92670,91560,24.3,0,2.46,4.61,6.19,7.54,8.74,9.8,10.74,11.58,12.98,272.24,276.39,282.66,284.94,286.54,287.24,287.71,288.01,288.41,9.85,10.61,10.68,10.58,10.48,10.35,10.21,10.06,9.74,N/A,N/A +2013,1,30,1,30,93670,92540,91430,26.62,0,2.3000000000000003,3.87,4.6000000000000005,5.59,6.72,7.83,8.94,10.03,12.08,214.34,244.32,257.79,268.4,273.56,277.37,279.06,280.11,280.83,9.56,9.97,9.83,9.66,9.5,9.35,9.19,9.040000000000001,8.73,N/A,N/A +2013,1,30,2,30,93810,92670,91560,27.79,0,1.72,3.88,5.51,6.95,8.23,9.34,10.31,11.200000000000001,12.780000000000001,280.57,279.59000000000003,278.76,279.17,279.62,280.12,280.58,281,281.63,8.03,8.9,8.96,8.96,8.91,8.84,8.73,8.61,8.31,N/A,N/A +2013,1,30,3,30,93840,92700,91590,29.7,0,2.7800000000000002,5.98,7.8500000000000005,9.19,10.33,11.33,12.290000000000001,13.200000000000001,14.94,261.47,266.33,270.74,272.78000000000003,274.61,276.29,277.86,279.32,281.87,7.26,8.2,8.27,8.290000000000001,8.27,8.24,8.15,8.06,7.82,N/A,N/A +2013,1,30,4,30,93840,92690,91580,26.46,0,5.0600000000000005,7.97,9.5,10.78,11.89,12.89,13.82,14.71,16.43,270.56,271.29,271.97,273,274.11,275.25,276.42,277.51,279.40000000000003,7.26,7.58,7.640000000000001,7.62,7.57,7.51,7.41,7.3100000000000005,7.09,N/A,N/A +2013,1,30,5,30,93870,92720,91600,28.09,0,5.36,8.44,10.120000000000001,11.620000000000001,12.9,14.040000000000001,15.09,16.05,17.740000000000002,279.37,280.09000000000003,280.67,281.40000000000003,282.09000000000003,282.75,283.42,284.05,285.26,6.83,7.08,7.11,7.08,7.01,6.94,6.83,6.73,6.49,N/A,N/A +2013,1,30,6,30,93960,92800,91680,31.96,0,6.0600000000000005,9,10.52,11.82,12.94,13.92,14.790000000000001,15.59,16.97,281.41,282.47,283.36,284.19,284.96,285.66,286.37,287.04,288.34000000000003,6.42,6.63,6.65,6.61,6.55,6.48,6.38,6.2700000000000005,6.03,N/A,N/A +2013,1,30,7,30,94000,92850,91730,31.470000000000002,0,7.24,10.4,11.870000000000001,13.1,14.17,15.11,16.01,16.82,18.28,284.3,285.03000000000003,285.71,286.46,287.28000000000003,288.07,288.95,289.78000000000003,291.33,6.18,6.29,6.2700000000000005,6.22,6.140000000000001,6.07,5.97,5.87,5.65,N/A,N/A +2013,1,30,8,30,93990,92830,91710,32.64,0,5.83,9.35,10.83,12.14,13.32,14.39,15.38,16.29,17.900000000000002,276.44,278.97,280.53000000000003,281.97,283.41,284.72,285.99,287.19,289.37,5.32,5.5,5.51,5.51,5.47,5.43,5.37,5.3,5.11,N/A,N/A +2013,1,30,9,30,94110,92950,91820,30.43,0,7.01,10.21,11.64,12.86,13.93,14.9,15.81,16.65,18.22,288.68,289.14,289.55,290.04,290.67,291.32,292.05,292.77,294.17,5.17,5.29,5.2700000000000005,5.23,5.15,5.07,4.98,4.87,4.65,N/A,N/A +2013,1,30,10,30,94140,92980,91850,32,0,6.63,10.290000000000001,11.63,12.790000000000001,13.89,14.870000000000001,15.76,16.59,18.06,297.34000000000003,298.55,299.06,299.48,299.86,300.23,300.57,300.96,301.8,4.5,4.64,4.65,4.64,4.58,4.5,4.41,4.29,4.04,N/A,N/A +2013,1,30,11,30,94360,93190,92060,36.04,0,6.7,9.71,11,12.08,13.01,13.82,14.55,15.200000000000001,16.3,305.19,306.52,307.41,308.21,309.1,309.98,310.97,311.94,313.86,3.92,4.05,4.0600000000000005,4.04,3.99,3.93,3.85,3.7600000000000002,3.56,N/A,N/A +2013,1,30,12,30,94520,93350,92210,49.25,0,3.04,5.48,6.67,7.72,8.58,9.3,9.88,10.41,11.3,305.84000000000003,309.24,311.76,313.11,314.41,315.64,317.21,318.79,322.11,2.3000000000000003,3,3.18,3.27,3.3000000000000003,3.31,3.25,3.19,3.0100000000000002,N/A,N/A +2013,1,30,13,30,94500,93330,92190,48.88,0,4.46,7.04,7.97,8.78,9.85,10.84,11.8,12.6,13.8,301.68,303.36,303.7,303.74,304.41,305.14,305.99,306.90000000000003,308.73,2.7,3.09,3.14,3.13,3.0500000000000003,2.98,2.91,2.84,2.7,N/A,N/A +2013,1,30,14,30,94670,93490,92350,42.7,0,5.93,7.95,8.8,9.49,10.11,10.68,11.24,11.75,12.69,304.04,304.98,305.48,305.68,305.74,305.79,306.04,306.40000000000003,307.65000000000003,3.52,3.33,3.23,3.12,3.06,3,2.95,2.92,2.87,N/A,N/A +2013,1,30,15,30,94780,93610,92470,40.85,0,7.15,8.76,9.38,9.72,9.96,10.14,10.28,10.4,10.61,305.76,306.18,306.56,306.91,307.24,307.54,307.91,308.26,309.03000000000003,5.5200000000000005,5.04,4.8100000000000005,4.59,4.38,4.19,3.99,3.8000000000000003,3.43,N/A,N/A +2013,1,30,16,30,94790,93620,92490,36.99,0,7.13,8.790000000000001,9.31,9.59,9.77,9.9,9.99,10.06,10.15,316.75,316.79,316.79,316.76,316.73,316.69,316.65000000000003,316.6,316.5,6.36,5.73,5.47,5.23,5,4.8,4.58,4.38,3.98,N/A,N/A +2013,1,30,17,30,94780,93620,92490,31.28,0,6.72,8.4,8.89,9.18,9.38,9.540000000000001,9.66,9.75,9.91,315.61,315.81,315.90000000000003,315.96,316,316.04,316.08,316.1,316.15000000000003,7.42,6.74,6.47,6.22,5.99,5.7700000000000005,5.5600000000000005,5.3500000000000005,4.94,N/A,N/A +2013,1,30,18,30,94800,93640,92510,25.21,0,6.5,8.07,8.540000000000001,8.83,9.02,9.17,9.28,9.38,9.53,311.32,311.46,311.54,311.58,311.61,311.64,311.65000000000003,311.66,311.68,8.42,7.71,7.43,7.18,6.94,6.72,6.5,6.29,5.87,N/A,N/A +2013,1,30,19,30,94780,93620,92500,22.1,0,7.07,8.81,9.33,9.63,9.83,9.99,10.1,10.200000000000001,10.34,301.59000000000003,302.11,302.40000000000003,302.61,302.79,302.94,303.08,303.2,303.45,9.13,8.41,8.13,7.88,7.640000000000001,7.42,7.19,6.98,6.57,N/A,N/A +2013,1,30,20,30,94770,93610,92490,20.62,0,6.82,8.46,8.96,9.24,9.43,9.57,9.67,9.76,9.88,305.55,305.66,305.69,305.68,305.66,305.64,305.61,305.58,305.51,9.58,8.9,8.63,8.38,8.14,7.930000000000001,7.71,7.5,7.08,N/A,N/A +2013,1,30,21,30,94730,93570,92450,19.31,0,6.74,8.38,8.88,9.17,9.36,9.51,9.61,9.700000000000001,9.83,306.77,306.71,306.59000000000003,306.46,306.32,306.19,306.06,305.92,305.66,10.13,9.51,9.26,9.02,8.790000000000001,8.58,8.36,8.16,7.75,N/A,N/A +2013,1,30,22,30,94740,93600,92480,17.93,0,6.05,7.5200000000000005,8.11,8.44,8.69,8.88,9.02,9.14,9.32,304.22,304.2,304.17,304.07,303.97,303.87,303.76,303.67,303.45,10.4,9.93,9.700000000000001,9.48,9.26,9.06,8.85,8.65,8.24,N/A,N/A +2013,1,30,23,30,94730,93580,92460,18.36,0,4.86,6.62,7.3100000000000005,7.82,8.2,8.52,8.77,8.99,9.31,309.06,309.16,309.16,309.1,309.03000000000003,308.96,308.85,308.74,308.47,10.03,9.86,9.71,9.53,9.35,9.17,8.97,8.78,8.4,N/A,N/A +2013,1,31,0,30,94750,93600,92480,26.92,0,1.73,3.75,4.72,5.45,6.0200000000000005,6.48,6.890000000000001,7.25,7.83,318.5,315.83,314.36,314.29,314.3,314.32,314.08,313.8,313.07,8.03,9.18,9.36,9.34,9.22,9.09,8.91,8.74,8.38,N/A,N/A +2013,1,31,1,30,94770,93610,92490,30.09,0,0.42,1.21,1.83,2.52,3.17,3.8000000000000003,4.38,4.95,5.99,230.34,270.27,298.1,303.39,306.3,308.1,309.57,310.75,312.02,6.84,8.05,8.31,8.46,8.52,8.540000000000001,8.5,8.45,8.31,N/A,N/A +2013,1,31,2,30,94790,93640,92510,27.060000000000002,0,1.6,2.14,2.14,2.3000000000000003,2.5500000000000003,2.83,3.23,3.63,4.54,220.68,247.63,263.65,277.34000000000003,286,292.61,297.27,301.1,305.18,7.28,8.47,8.52,8.41,8.3,8.2,8.13,8.07,8,N/A,N/A +2013,1,31,3,30,94810,93650,92530,27.44,0,1.86,2.7800000000000002,2.75,2.58,2.58,2.64,2.91,3.18,3.7600000000000002,251.61,276.22,288.44,292.98,294.87,295.82,296.34000000000003,296.83,297.96,6.69,8.13,8.31,8.290000000000001,8.27,8.24,8.23,8.22,8.2,N/A,N/A +2013,1,31,4,30,94840,93680,92560,34.42,0,2.44,4.25,4.8,5.19,5.33,5.37,5.26,5.14,4.86,252.83,261.65,268.65,274.96,279.34000000000003,282.59000000000003,283.69,284.27,283.85,4.82,6.4,6.9,7.37,7.67,7.88,7.92,7.92,7.84,N/A,N/A +2013,1,31,5,30,94900,93730,92600,37.11,0,0.55,1.51,2.46,3.42,4.3,5.11,5.76,6.37,7.37,309.21,298.19,286.18,284.2,284.52,286.69,289.33,291.85,295.79,3.89,5.09,5.33,5.53,5.79,6.07,6.390000000000001,6.67,7.16,N/A,N/A +2013,1,31,6,30,94900,93730,92600,37.410000000000004,0,2.29,2.1,1.4000000000000001,0.8300000000000001,1.03,1.6,2.4,3.31,5.08,139.87,144.41,165.17000000000002,198.20000000000002,229.08,272.15,278.77,284.6,289.31,4.12,5.38,5.49,5.44,5.49,5.58,5.69,5.8,6.04,N/A,N/A +2013,1,31,7,30,94920,93750,92620,39.81,0,1.6300000000000001,2.2800000000000002,2.49,3.16,3.84,4.5200000000000005,5.2,5.86,7.09,241.22,259.6,269.24,274.62,277.94,280.36,282.04,283.58,286.54,3.43,4.89,5.2,5.4,5.6000000000000005,5.78,5.9,6.0200000000000005,6.25,N/A,N/A +2013,1,31,8,30,94900,93730,92600,40.19,0,1.16,1.93,2.34,3.08,3.8000000000000003,4.49,5.14,5.76,6.92,190.72,234.45000000000002,257.95,272,280.37,286.59000000000003,290.41,293.55,297.55,3.18,4.36,4.53,4.7,4.9,5.1000000000000005,5.32,5.53,5.94,N/A,N/A +2013,1,31,9,30,94930,93760,92620,38.84,0,1.74,1.8900000000000001,1.6400000000000001,1.6500000000000001,1.8900000000000001,2.27,2.7,3.16,4.17,196.73000000000002,223.23000000000002,241.85,264.03000000000003,276.09000000000003,284.54,288.94,292.63,296.34000000000003,2.96,4.3500000000000005,4.5200000000000005,4.59,4.64,4.69,4.74,4.8,4.96,N/A,N/A +2013,1,31,10,30,94910,93740,92600,36.39,0,1.5,2.05,1.81,1.43,1.36,1.3900000000000001,1.6500000000000001,1.97,2.93,234.52,236.4,235.63,232.87,239.44,247.92000000000002,259.18,269.06,282.7,3.71,5.11,5.17,5.12,5.03,4.93,4.84,4.8,4.88,N/A,N/A +2013,1,31,11,30,94920,93740,92600,37.59,0,0.8200000000000001,0.92,0.92,1.1,1.19,1.25,1.23,1.27,1.62,142.78,152.91,161.21,173.24,180.57,186.77,199.47,213.27,243.27,2.66,3.99,4.2,4.42,4.57,4.67,4.65,4.6000000000000005,4.48,N/A,N/A +2013,1,31,12,30,94940,93760,92620,37.34,0,1.1500000000000001,1.6600000000000001,1.6600000000000001,1.62,1.59,1.62,2.15,2.74,3.95,297.01,301.5,301.18,296.1,288.07,280.57,279.45,279.04,281.21,2.31,3.47,3.41,3.24,3.15,3.17,3.7600000000000002,4.19,4.65,N/A,N/A +2013,1,31,13,30,94950,93760,92620,46.54,0,0.85,1.25,1.21,1.1,1.34,1.69,2.18,2.69,3.69,49.77,21.44,356.42,330.32,311.01,293.79,287.66,283.89,282.41,-0.26,1.61,2.3000000000000003,2.9,3.22,3.46,3.67,3.87,4.26,N/A,N/A +2013,1,31,14,30,95000,93810,92670,34.61,0,1.4000000000000001,1.79,1.54,1.09,0.9500000000000001,0.9500000000000001,1.32,1.76,2.81,127.2,124.25,132.89000000000001,145.55,183.74,214.81,236.48000000000002,252.19,268.33,1.6300000000000001,1.69,1.97,2.4,2.86,3.23,3.43,3.64,4.17,N/A,N/A +2013,1,31,15,30,95030,93850,92720,29.28,0,0.74,0.6,0.58,0.66,1.08,1.72,2.07,2.43,3.16,41.22,42.58,88.64,184.83,216.46,236.21,244,250.91,261.49,4.48,4.25,4.24,4.33,4.84,5.33,5.47,5.5600000000000005,5.66,N/A,N/A +2013,1,31,16,30,95020,93860,92730,23.61,0,0.29,0.42,0.51,0.63,0.75,0.87,1,1.16,1.67,139.33,172.56,190.64000000000001,199.67000000000002,205.54,210.38,215.75,221.92000000000002,237.19,8.6,8.2,8,7.82,7.640000000000001,7.48,7.32,7.17,6.9,N/A,N/A +2013,1,31,17,30,94980,93830,92710,21.95,0,0.76,0.85,0.86,0.87,0.89,0.92,0.97,1.03,1.19,290.82,283.26,277.76,272.19,266.56,261.36,256.25,251.72,244.4,10.99,10.540000000000001,10.31,10.11,9.91,9.74,9.55,9.370000000000001,9.02,N/A,N/A +2013,1,31,18,30,94960,93820,92710,20.45,0,0.98,1.1500000000000001,1.19,1.21,1.23,1.25,1.28,1.31,1.4000000000000001,297.46,292.57,288.97,285.19,281.34000000000003,277.64,273.5,269.62,262.04,13.370000000000001,12.9,12.65,12.43,12.22,12.030000000000001,11.83,11.65,11.28,N/A,N/A +2013,1,31,19,30,94930,93800,92700,18.23,0,1.34,1.59,1.68,1.73,1.77,1.82,1.86,1.9000000000000001,2.0100000000000002,318.19,313.3,309.63,306.32,303.24,300.35,297.53000000000003,294.94,289.89,15.21,14.700000000000001,14.44,14.22,14.01,13.81,13.61,13.42,13.040000000000001,N/A,N/A +2013,1,31,20,30,94880,93760,92660,15.75,0,3.69,4.41,4.64,4.75,4.83,4.88,4.92,4.95,5,306.34000000000003,306.88,307.22,307.43,307.61,307.75,307.89,308.01,308.2,16.64,16.05,15.790000000000001,15.55,15.32,15.120000000000001,14.9,14.71,14.3,N/A,N/A +2013,1,31,21,30,94840,93710,92620,15.36,0,3.54,4.33,4.59,4.74,4.84,4.92,4.97,5.0200000000000005,5.1000000000000005,307.98,308.04,308.07,308.02,307.97,307.92,307.84000000000003,307.76,307.57,17.02,16.48,16.240000000000002,16.01,15.790000000000001,15.59,15.38,15.18,14.780000000000001,N/A,N/A +2013,1,31,22,30,94800,93680,92590,15.36,0,3.0700000000000003,3.79,4.03,4.17,4.28,4.3500000000000005,4.4,4.45,4.5200000000000005,307.51,306.40000000000003,305.65000000000003,304.97,304.35,303.78000000000003,303.22,302.7,301.69,17.38,16.95,16.740000000000002,16.53,16.32,16.13,15.92,15.72,15.32,N/A,N/A +2013,1,31,23,30,94810,93680,92590,20.69,0,2.42,4.09,4.54,4.78,4.92,5.01,5.03,5.04,4.98,334.2,331.23,329.21,327.87,326.73,325.75,324.72,323.74,321.54,16.18,16.44,16.37,16.19,16.01,15.83,15.63,15.450000000000001,15.07,N/A,N/A +2013,2,1,0,30,94830,93700,92610,25.37,0,1.8900000000000001,3.65,4.24,4.73,4.99,5.14,5.15,5.15,5.1000000000000005,15.14,345.62,333.63,329.26,326.93,325.63,325.28000000000003,324.95,323.36,13.69,15.36,15.76,15.950000000000001,15.91,15.76,15.540000000000001,15.35,14.97,N/A,N/A +2013,2,1,1,30,94890,93750,92650,26.87,0,0.53,1.21,1.59,1.93,2.23,2.49,2.66,2.7800000000000002,2.86,108.36,71.97,45.72,31.470000000000002,43.050000000000004,34.06,27.57,21.91,350.56,13,14.33,14.47,14.44,14.47,14.52,14.530000000000001,14.530000000000001,14.4,N/A,N/A +2013,2,1,2,30,94920,93790,92680,27.490000000000002,0,0.99,1.26,1.24,1.3,1.4000000000000001,1.51,1.52,1.52,1.42,164.71,159.78,157.82,156.79,153.99,150.61,147.59,145.11,141.87,12.4,13.59,13.64,13.620000000000001,13.6,13.58,13.5,13.41,13.11,N/A,N/A +2013,2,1,3,30,94960,93810,92700,30.55,0,1.4000000000000001,2.19,2.06,1.67,1.28,0.99,0.48,0.35000000000000003,0.56,96.5,103.31,106.15,106.48,103.51,100.68,100.32000000000001,113.19,202.03,10.1,11.28,11.51,11.82,12.09,12.34,12.64,12.950000000000001,13.530000000000001,N/A,N/A +2013,2,1,4,30,94970,93820,92710,33.3,0,0.55,0.75,0.72,0.71,0.73,0.76,0.89,1.03,1.29,141.65,157.25,164.57,168.16,168.21,167.37,166.47,165.35,164.96,9.08,10.35,10.57,10.75,11.11,11.49,12.16,12.67,13.09,N/A,N/A +2013,2,1,5,30,94990,93840,92730,32.18,0,0.8,0.65,0.45,0.36,0.48,0.71,1.05,1.44,2.19,127.63000000000001,132.7,141.21,157.82,232.36,210.22,209.12,208.26,209.17000000000002,9.41,10.63,10.67,10.63,10.67,10.75,11.14,11.52,12.24,N/A,N/A +2013,2,1,6,30,95020,93870,92760,34.85,0,1.19,1.48,1.4000000000000001,1.4000000000000001,1.54,1.72,2.0100000000000002,2.3000000000000003,2.92,133.4,148.69,159.72,172.89000000000001,181.81,189.25,192.33,194.72,196.51,8.06,9.67,10.040000000000001,10.33,10.540000000000001,10.69,10.83,10.96,11.26,N/A,N/A +2013,2,1,7,30,95050,93890,92780,36.27,0,1.86,2.69,2.71,2.72,2.83,2.95,3.16,3.35,3.7800000000000002,135.61,142.58,148.54,155.71,162.58,168.78,173.6,177.48,181.94,7.29,8.99,9.47,9.91,10.21,10.44,10.57,10.68,10.76,N/A,N/A +2013,2,1,8,30,95060,93890,92770,39.27,0,1.23,1.8800000000000001,1.96,2.05,2.2,2.38,2.63,2.9,3.48,123.79,130.67000000000002,137.82,147.63,157.45000000000002,166.63,173.26,178.63,184.78,6.03,7.76,8.290000000000001,8.78,9.15,9.43,9.65,9.82,10.07,N/A,N/A +2013,2,1,9,30,95050,93880,92760,42.47,0,0.71,1.5,1.79,1.93,1.99,2.05,2.2,2.4,2.96,115.96000000000001,119.83,125.19,133.53,143.8,153.62,162.35,169.34,177.79,4.96,6.68,7.26,7.7700000000000005,8.2,8.56,8.84,9.07,9.44,N/A,N/A +2013,2,1,10,30,95040,93870,92750,45.71,0,0.51,1.02,1.28,1.46,1.6400000000000001,1.83,2.08,2.33,2.92,179.48,165.58,159.56,150.6,151.45000000000002,154.88,160.38,165.42000000000002,173.85,3.7,5.65,6.34,6.86,7.29,7.65,7.96,8.24,8.700000000000001,N/A,N/A +2013,2,1,11,30,95070,93890,92760,47.15,0,0.6,1.25,1.59,1.97,2.23,2.46,2.67,2.88,3.34,115.98,119.63,122.11,125.93,131.67000000000002,137.75,144.31,150.32,160.8,3.2800000000000002,4.97,5.48,5.91,6.32,6.67,7.0200000000000005,7.32,7.86,N/A,N/A +2013,2,1,12,30,95070,93900,92770,47.18,0,0.8200000000000001,1.74,2.08,2.3000000000000003,2.43,2.54,2.7600000000000002,3.04,3.77,136.62,135.5,136.08,138.3,143.18,148.32,154.44,159.54,166.85,3.59,4.7,4.88,5.09,5.4,5.72,6.13,6.53,7.34,N/A,N/A +2013,2,1,13,30,95080,93900,92770,51.32,0,0.32,0.64,0.89,1.24,1.6,1.98,2.46,2.95,3.98,276.13,178.09,137.16,142.75,150.43,158.24,162.4,165.63,169.20000000000002,2.2,3.92,4.5,4.97,5.47,5.93,6.44,6.92,7.7700000000000005,N/A,N/A +2013,2,1,14,30,95090,93910,92780,44.300000000000004,0,0.39,0.75,1.11,1.48,1.94,2.45,2.99,3.5300000000000002,4.58,236.16,208.11,186,169.39000000000001,165.20000000000002,164.68,166.37,168.07,171.17000000000002,2.36,3.7600000000000002,4.61,5.24,5.78,6.23,6.68,7.08,7.8100000000000005,N/A,N/A +2013,2,1,15,30,95100,93930,92810,32.87,0,1.4000000000000001,1.6400000000000001,1.78,1.97,2.33,2.75,3.2600000000000002,3.8000000000000003,4.97,105.41,112.26,117.95,125.11,134.21,143.8,149.64000000000001,154.52,160.54,7.18,6.92,6.8100000000000005,6.72,6.93,7.18,7.33,7.43,7.5600000000000005,N/A,N/A +2013,2,1,16,30,95060,93910,92790,25.47,0,3.46,4.3,4.62,4.8100000000000005,4.94,5.04,5.17,5.3,5.78,164.88,165.56,166.01,166.39000000000001,166.75,167.1,167.53,167.96,169.05,11.65,11.13,10.9,10.69,10.5,10.32,10.14,9.98,9.700000000000001,N/A,N/A +2013,2,1,17,30,95000,93860,92760,23.71,0,4.64,5.72,6.1000000000000005,6.3100000000000005,6.44,6.53,6.6000000000000005,6.65,6.7700000000000005,169.23,169.42000000000002,169.53,169.62,169.69,169.75,169.84,169.91,170.11,13.71,13.09,12.83,12.6,12.39,12.200000000000001,12,11.81,11.450000000000001,N/A,N/A +2013,2,1,18,30,94940,93810,92710,20.51,0,6.19,7.67,8.16,8.43,8.61,8.73,8.8,8.86,8.94,175.42000000000002,175.33,175.26,175.19,175.12,175.07,175.01,174.97,174.87,15.69,15.01,14.73,14.48,14.25,14.040000000000001,13.82,13.620000000000001,13.22,N/A,N/A +2013,2,1,19,30,94910,93780,92690,19.76,0,6.3100000000000005,7.7700000000000005,8.26,8.5,8.66,8.77,8.83,8.88,8.93,176.25,176.16,176.09,176.05,176.01,175.99,175.97,175.95000000000002,175.94,16.6,15.91,15.63,15.38,15.14,14.93,14.71,14.51,14.1,N/A,N/A +2013,2,1,20,30,94850,93730,92640,21.54,0,6.16,7.6000000000000005,8.07,8.31,8.46,8.57,8.63,8.68,8.72,177.03,177.02,177.01,177.03,177.05,177.07,177.1,177.13,177.22,17.29,16.62,16.35,16.1,15.88,15.66,15.44,15.24,14.83,N/A,N/A +2013,2,1,21,30,94800,93670,92580,23.09,0,5.72,7.04,7.46,7.67,7.8,7.88,7.930000000000001,7.96,7.99,178.06,178.18,178.26,178.34,178.43,178.51,178.61,178.69,178.88,17.48,16.89,16.65,16.41,16.18,15.98,15.76,15.57,15.16,N/A,N/A +2013,2,1,22,30,94760,93640,92550,28.66,0,5.79,7.19,7.640000000000001,7.86,8.01,8.1,8.15,8.19,8.21,177.93,177.95000000000002,177.99,178.05,178.11,178.18,178.26,178.34,178.52,17.19,16.740000000000002,16.53,16.31,16.1,15.9,15.69,15.49,15.09,N/A,N/A +2013,2,1,23,30,94730,93610,92520,37.43,0,4.07,5.95,6.62,7.07,7.41,7.67,7.88,8.06,8.36,169.18,169.74,170.20000000000002,170.71,171.17000000000002,171.63,172.06,172.47,173.22,16.32,16.34,16.25,16.09,15.93,15.76,15.57,15.39,15.01,N/A,N/A +2013,2,2,0,30,94720,93600,92500,44.68,0,4.3,6.8500000000000005,7.890000000000001,8.71,9.34,9.83,10.16,10.42,10.69,160.73,162.11,163.08,163.71,164.20000000000002,164.59,164.91,165.20000000000002,165.84,14.83,15.31,15.4,15.43,15.39,15.32,15.18,15.05,14.700000000000001,N/A,N/A +2013,2,2,1,30,94720,93590,92500,49.79,0,4.3100000000000005,7.08,8.27,9.26,10.03,10.66,11.07,11.4,11.75,157.91,160.02,161.35,162.12,162.72,163.19,163.58,163.93,164.62,13.91,14.52,14.72,14.85,14.9,14.91,14.81,14.700000000000001,14.370000000000001,N/A,N/A +2013,2,2,2,30,94700,93570,92480,50.78,0,5.07,7.88,9.06,10.120000000000001,11.01,11.8,12.42,12.96,13.61,161,162.21,163.02,163.59,164.14000000000001,164.67000000000002,165.32,165.96,167.38,13.83,14.24,14.35,14.44,14.49,14.52,14.5,14.48,14.31,N/A,N/A +2013,2,2,3,30,94710,93580,92480,56.42,0,3.96,6.86,8.13,9.290000000000001,10.32,11.24,12.11,12.89,14.120000000000001,151.18,155.68,158.55,160.3,161.6,162.66,163.67000000000002,164.62,166.55,12.55,13.18,13.32,13.42,13.49,13.530000000000001,13.56,13.58,13.57,N/A,N/A +2013,2,2,4,30,94740,93600,92500,66.52,0,3.12,5.93,7.08,8.19,9.17,10.040000000000001,10.86,11.63,12.92,143.05,150.4,155.75,158.92000000000002,161.32,163.22,164.92000000000002,166.48,169.18,11.22,12.34,12.46,12.56,12.63,12.69,12.77,12.83,12.94,N/A,N/A +2013,2,2,5,30,94710,93570,92470,62.15,0,3.6,6.79,8.11,9.36,10.450000000000001,11.42,12.27,13.030000000000001,14.16,150.8,157.17000000000002,161.11,163.5,165.24,166.63,167.72,168.71,170.31,11.28,12.24,12.39,12.530000000000001,12.65,12.75,12.86,12.950000000000001,13.120000000000001,N/A,N/A +2013,2,2,6,30,94740,93600,92500,71.98,0,2.95,5.29,6.15,7.19,8.14,9,9.86,10.67,12.19,132.59,141.70000000000002,147.92000000000002,153.29,157.14000000000001,160.22,162.67000000000002,164.87,168.27,9.77,10.92,11.09,11.24,11.4,11.540000000000001,11.69,11.83,12.08,N/A,N/A +2013,2,2,7,30,94790,93640,92530,76.53,0,1.33,2.7600000000000002,3.49,4.3,5.09,5.87,6.640000000000001,7.38,8.78,144.22,155.23,162.15,165.62,168.24,170.42000000000002,171.77,172.92000000000002,174.3,9,10.120000000000001,10.24,10.35,10.44,10.52,10.59,10.66,10.78,N/A,N/A +2013,2,2,8,30,94790,93640,92530,80.78,0,0.91,2.15,2.92,3.8200000000000003,4.5600000000000005,5.2,5.79,6.33,7.22,163.92000000000002,180.99,189.61,188.55,186.75,184.72,183.1,181.70000000000002,179.98,7.99,9.27,9.57,9.84,9.99,10.09,10.19,10.290000000000001,10.48,N/A,N/A +2013,2,2,9,30,94790,93640,92530,82.42,0,0.08,0.61,1.24,1.68,2.11,2.5500000000000003,3.02,3.47,4.2700000000000005,131.42000000000002,186.07,234.13,222.95000000000002,213.54,204.97,199.34,194.55,189.04,7.61,8.91,9.06,9.05,9.08,9.120000000000001,9.21,9.32,9.6,N/A,N/A +2013,2,2,10,30,94820,93660,92540,87.43,0,0.14,0.34,0.43,0.44,0.55,0.71,1.04,1.41,2.07,212.58,241.73000000000002,254.34,247.79,226.37,198.4,188.1,179.8,178.19,5.5,6.79,7.17,7.51,7.79,8.040000000000001,8.31,8.56,9.16,N/A,N/A +2013,2,2,11,30,94830,93670,92540,89.14,0,0.85,1.6300000000000001,1.77,1.74,1.68,1.6300000000000001,1.69,1.73,1.9100000000000001,267.64,264.81,263.08,262.04,255.44,248.52,240.95000000000002,237.34,248.32,4.03,5.36,5.86,6.33,6.72,7.05,7.4,7.78,8.74,N/A,N/A +2013,2,2,12,30,94910,93730,92610,90.24,0,0.66,1.62,2.16,2.65,3.11,3.5500000000000003,4.0200000000000005,4.5,5.5,280.51,291.09000000000003,298.87,305.13,309.98,314.3,318.19,321.37,325.54,3.24,4.4,4.82,5.24,5.72,6.18,6.68,7.17,8.11,N/A,N/A +2013,2,2,13,30,94940,93770,92640,76.2,0,0.8200000000000001,1.73,2.38,3.35,4.25,5.1000000000000005,5.74,6.24,6.7700000000000005,248.79,297.23,319.45,326.21,328.5,329.3,328.36,326.96,323.61,4.11,5.2,5.37,5.53,5.8100000000000005,6.11,6.57,7.0200000000000005,7.84,N/A,N/A +2013,2,2,14,30,94980,93810,92680,52.5,0,1.8,2.31,2.9,3.97,4.78,5.5,6.18,6.7700000000000005,7.61,240.27,288.7,308.59000000000003,317.06,320.31,322.02,322.39,322.88,324.90000000000003,5.46,5.19,5.28,5.55,5.7,5.89,6.42,6.95,8.1,N/A,N/A +2013,2,2,15,30,95040,93880,92760,34.94,0,3.19,3.87,4.12,4.32,4.79,5.32,6,6.67,7.890000000000001,300.01,304.24,307.34000000000003,310.49,315.56,320.7,323.5,325.05,324.22,8.59,8.18,8.01,7.87,7.76,7.66,7.62,7.63,7.94,N/A,N/A +2013,2,2,16,30,95080,93920,92810,29.240000000000002,0,4.08,5.01,5.3100000000000005,5.47,5.57,5.64,5.69,5.74,5.86,317.55,318.59000000000003,319.28000000000003,319.88,320.39,320.84000000000003,321.28000000000003,321.71,322.74,11.4,10.84,10.6,10.39,10.19,10.01,9.82,9.65,9.3,N/A,N/A +2013,2,2,17,30,95060,93920,92810,23.59,0,5.75,7.04,7.43,7.61,7.72,7.79,7.8100000000000005,7.83,7.83,320.2,320.34000000000003,320.42,320.46,320.49,320.51,320.52,320.52,320.51,13.5,12.84,12.58,12.36,12.15,11.96,11.76,11.58,11.23,N/A,N/A +2013,2,2,18,30,95070,93930,92830,22.080000000000002,0,4.95,5.99,6.3100000000000005,6.45,6.53,6.58,6.6000000000000005,6.6000000000000005,6.57,326.52,327.38,327.91,328.40000000000003,328.86,329.29,329.76,330.21,331.18,14.99,14.33,14.06,13.81,13.59,13.39,13.18,12.99,12.6,N/A,N/A +2013,2,2,19,30,95050,93920,92830,20.93,0,3.88,4.69,4.94,5.07,5.16,5.22,5.2700000000000005,5.3100000000000005,5.37,326.59000000000003,329.26,331.01,332.52,333.93,335.23,336.55,337.76,340.2,16.75,16.15,15.89,15.65,15.44,15.24,15.030000000000001,14.84,14.450000000000001,N/A,N/A +2013,2,2,20,30,95020,93890,92800,17.36,0,3.85,4.68,4.92,5.05,5.13,5.19,5.23,5.26,5.3,21.98,22.13,22.09,22.03,21.96,21.89,21.8,21.72,21.56,18.42,17.81,17.55,17.31,17.080000000000002,16.88,16.66,16.46,16.05,N/A,N/A +2013,2,2,21,30,94990,93870,92780,17.51,0,3.7800000000000002,4.66,4.91,5.05,5.15,5.22,5.26,5.3,5.36,22.14,22.64,22.97,23.27,23.54,23.79,24.05,24.29,24.77,18.92,18.37,18.13,17.900000000000002,17.68,17.48,17.27,17.07,16.66,N/A,N/A +2013,2,2,22,30,94980,93860,92780,17.830000000000002,0,3.58,4.44,4.7,4.8500000000000005,4.95,5.0200000000000005,5.08,5.12,5.18,36.39,36.93,37.27,37.57,37.84,38.08,38.32,38.54,38.980000000000004,19.080000000000002,18.650000000000002,18.44,18.23,18.02,17.82,17.61,17.42,17.02,N/A,N/A +2013,2,2,23,30,94990,93870,92790,23.69,0,3.02,5.13,5.7,6.03,6.24,6.38,6.46,6.53,6.58,43.12,43.34,43.47,43.56,43.7,43.88,44.1,44.31,44.74,18,18.330000000000002,18.26,18.09,17.900000000000002,17.72,17.51,17.32,16.93,N/A,N/A +2013,2,3,0,30,95040,93920,92830,28.89,0,3.64,6.28,7.22,8.09,8.73,9.23,9.44,9.57,9.49,46.21,49.230000000000004,51.21,52.92,54.08,54.93,55.31,55.57,55.64,15.530000000000001,16.56,16.84,16.990000000000002,17,16.94,16.78,16.62,16.25,N/A,N/A +2013,2,3,1,30,95100,93970,92870,25.36,0,4.2700000000000005,7.1000000000000005,8.13,8.91,9.44,9.84,10.06,10.23,10.34,57.76,59.76,60.96,61.68,62.2,62.59,62.9,63.17,63.57,15.07,15.92,16.17,16.31,16.330000000000002,16.3,16.17,16.04,15.68,N/A,N/A +2013,2,3,2,30,95140,94000,92910,29.560000000000002,0,3.81,6.63,7.75,8.78,9.65,10.42,10.97,11.4,11.77,51.54,56.57,59.65,61.81,63.31,64.46000000000001,65.2,65.82000000000001,66.74,13.35,14.120000000000001,14.32,14.49,14.6,14.69,14.71,14.700000000000001,14.55,N/A,N/A +2013,2,3,3,30,95180,94030,92930,34.06,0,3.09,6.07,7.24,8.38,9.38,10.290000000000001,10.97,11.52,12.01,48.4,54.730000000000004,58.65,61.45,63.4,64.95,66.02,66.96000000000001,68.5,11.94,12.92,13.05,13.200000000000001,13.34,13.46,13.57,13.64,13.700000000000001,N/A,N/A +2013,2,3,4,30,95210,94050,92950,38.71,0,1.35,2.87,3.66,4.6000000000000005,5.64,6.74,7.7700000000000005,8.73,10.14,10.83,31.38,44.35,53.81,59.93,64.79,67.61,70.04,73.02,10.16,11.08,11.23,11.39,11.57,11.74,11.92,12.07,12.290000000000001,N/A,N/A +2013,2,3,5,30,95220,94070,92960,40.85,0,1.17,1.8,2.0300000000000002,2.5,3.19,4.0200000000000005,4.84,5.67,7.17,342.29,15.44,34.42,51.03,60.81,68.25,71.41,74.10000000000001,76.91,9.58,10.91,11.06,11,11,11.02,11.07,11.13,11.33,N/A,N/A +2013,2,3,6,30,95230,94080,92960,42.99,0,1.32,1.6300000000000001,1.76,2.24,2.91,3.67,4.45,5.22,6.61,354.19,23.76,39.19,54.99,63.63,70.05,72.9,75.23,77.54,9.06,10.17,10.290000000000001,10.35,10.47,10.58,10.700000000000001,10.84,11.24,N/A,N/A +2013,2,3,7,30,95260,94100,92980,45.08,0,1.09,1.01,1.03,1.34,1.79,2.33,2.97,3.64,5,9.09,24.85,34.02,46.5,58.39,70.27,75.38,79.59,83.69,8.6,10.01,10.120000000000001,10,9.99,10.01,10.09,10.19,10.48,N/A,N/A +2013,2,3,8,30,95240,94080,92970,48.4,0,1.41,1.6,1.6400000000000001,1.97,2.2800000000000002,2.58,3.0500000000000003,3.5500000000000003,4.7,2.5500000000000003,22.96,37.76,57.5,70.10000000000001,79.87,85.10000000000001,88.92,91.34,7.6000000000000005,9.16,9.5,9.700000000000001,9.91,10.07,10.06,10.07,10.16,N/A,N/A +2013,2,3,9,30,95220,94060,92940,50.34,0,1.46,1.31,1.01,0.8200000000000001,1.03,1.3900000000000001,2.04,2.7600000000000002,4.1,357.64,1,13.17,30.44,49.81,71.27,79.21000000000001,86.12,92.61,7.62,8.63,8.59,8.48,8.46,8.5,8.86,9.13,9.43,N/A,N/A +2013,2,3,10,30,95190,94030,92900,53.28,0,0.91,0.89,0.7000000000000001,0.59,0.91,1.48,2.18,2.96,4.49,358.34000000000003,352.01,6.890000000000001,32.13,54.06,81.18,87.94,93.52,97.86,7.23,8.07,7.98,7.87,7.88,7.94,8.16,8.4,8.88,N/A,N/A +2013,2,3,11,30,95180,94010,92890,56.53,0,0.45,0.44,0.42,0.49,1.02,2.0100000000000002,2.7800000000000002,3.5700000000000003,4.96,307.3,274.56,318.68,59.27,81.33,89.32000000000001,92.98,96.04,99.26,6.24,6.86,6.99,7.29,7.68,8.03,8.39,8.65,8.94,N/A,N/A +2013,2,3,12,30,95170,94000,92870,55.410000000000004,0,0.43,0.7000000000000001,0.8300000000000001,1.07,1.68,2.54,3.34,4.13,5.5600000000000005,233.4,180.13,149.86,122.56,112.11,104.9,104.34,104.05,104.72,5.51,6.43,6.83,7.2700000000000005,7.61,7.88,8.14,8.35,8.61,N/A,N/A +2013,2,3,13,30,95130,93960,92840,56,0,0.76,0.67,0.74,1.17,1.81,2.59,3.25,3.91,5.13,233.31,147.96,122.38,104.59,101.88,103.01,105.13,107.27,111.16,5.48,6.96,7.42,7.65,7.82,7.97,8.11,8.21,8.32,N/A,N/A +2013,2,3,14,30,95120,93960,92830,48.95,0,0.47000000000000003,1.07,1.6400000000000001,2.34,2.93,3.48,4.01,4.54,5.64,220.56,143.20000000000002,107.15,107.38,110.12,113.31,115.85000000000001,118.15,122.05,6.48,7.19,7.65,8.040000000000001,8.18,8.24,8.25,8.26,8.31,N/A,N/A +2013,2,3,15,30,95100,93950,92830,41.1,0,1.77,2.43,2.72,2.93,3.12,3.3000000000000003,3.54,3.87,5.03,126.34,127.71000000000001,128.52,129.11,129.47,129.86,131.37,133.43,138.25,10.22,9.81,9.61,9.43,9.25,9.09,8.92,8.77,8.6,N/A,N/A +2013,2,3,16,30,95030,93890,92780,39.07,0,3.35,4.18,4.45,4.6000000000000005,4.7,4.7700000000000005,4.83,4.88,4.98,144.98,146.08,146.72,147.24,147.75,148.22,148.74,149.26,150.48,13.02,12.47,12.23,12.02,11.81,11.620000000000001,11.42,11.24,10.88,N/A,N/A +2013,2,3,17,30,94960,93820,92720,39.12,0,4.89,6.09,6.47,6.68,6.8100000000000005,6.92,6.98,7.03,7.11,161.61,161.68,161.69,161.67000000000002,161.66,161.65,161.63,161.62,161.6,15.1,14.44,14.17,13.93,13.700000000000001,13.49,13.280000000000001,13.08,12.68,N/A,N/A +2013,2,3,18,30,94870,93740,92640,42.72,0,5.4,6.72,7.140000000000001,7.38,7.53,7.640000000000001,7.72,7.79,7.88,164.5,164.5,164.49,164.46,164.43,164.39000000000001,164.37,164.34,164.29,16.3,15.6,15.31,15.06,14.82,14.61,14.39,14.19,13.780000000000001,N/A,N/A +2013,2,3,19,30,94770,93650,92560,43.49,0,5.92,7.36,7.8,8.040000000000001,8.21,8.33,8.41,8.47,8.56,167.84,167.86,167.84,167.82,167.79,167.76,167.73,167.70000000000002,167.64000000000001,17.26,16.54,16.26,16,15.76,15.55,15.32,15.120000000000001,14.71,N/A,N/A +2013,2,3,20,30,94670,93550,92460,44.94,0,6.32,7.88,8.36,8.620000000000001,8.8,8.93,9.02,9.09,9.18,171.36,171.01,170.81,170.64000000000001,170.49,170.36,170.24,170.13,169.91,17.94,17.25,16.98,16.73,16.490000000000002,16.28,16.05,15.85,15.43,N/A,N/A +2013,2,3,21,30,94560,93440,92360,45.76,0,6.78,8.48,9.01,9.31,9.51,9.66,9.76,9.84,9.950000000000001,170.29,170.13,170.04,169.96,169.89000000000001,169.82,169.75,169.70000000000002,169.6,18.26,17.63,17.37,17.13,16.9,16.69,16.47,16.26,15.85,N/A,N/A +2013,2,3,22,30,94460,93340,92260,51.47,0,7.05,8.9,9.44,9.74,9.950000000000001,10.1,10.19,10.27,10.36,161.28,161.43,161.54,161.64000000000001,161.75,161.84,161.94,162.04,162.25,17.66,17.16,16.94,16.71,16.490000000000002,16.3,16.080000000000002,15.88,15.48,N/A,N/A +2013,2,3,23,30,94380,93270,92190,61.300000000000004,0,6.03,7.94,8.52,8.93,9.22,9.46,9.64,9.790000000000001,10.02,157.31,157.52,157.65,157.76,157.88,158,158.14000000000001,158.27,158.54,16.89,16.63,16.47,16.27,16.080000000000002,15.89,15.69,15.5,15.1,N/A,N/A +2013,2,4,0,30,94350,93230,92150,70.12,0,4,6.13,6.92,7.5600000000000005,8.08,8.52,8.91,9.27,9.870000000000001,157.35,157.48,157.6,157.77,157.95000000000002,158.12,158.26,158.38,158.59,15.540000000000001,15.57,15.5,15.4,15.27,15.14,14.97,14.82,14.48,N/A,N/A +2013,2,4,1,30,94320,93200,92110,70.76,0,4.33,6.49,7.3500000000000005,8.08,8.69,9.24,9.77,10.25,11.11,157.36,157.86,158.20000000000002,158.48,158.69,158.85,158.94,159.01,159.03,15.25,15.18,15.08,14.950000000000001,14.8,14.64,14.46,14.290000000000001,13.9,N/A,N/A +2013,2,4,2,30,94260,93140,92050,76.84,0,5.25,7.32,8.15,8.84,9.43,9.950000000000001,10.46,10.92,11.82,148.67000000000002,149.42000000000002,149.92000000000002,150.36,150.74,151.08,151.4,151.69,152.22,14.67,14.49,14.35,14.200000000000001,14.040000000000001,13.88,13.71,13.55,13.22,N/A,N/A +2013,2,4,3,30,94220,93090,92000,83.15,0,5.5600000000000005,7.76,8.59,9.26,9.82,10.32,10.78,11.200000000000001,12.01,149.63,150.39000000000001,150.9,151.39000000000001,151.87,152.34,152.85,153.35,154.43,14.05,13.89,13.76,13.61,13.46,13.31,13.14,12.99,12.67,N/A,N/A +2013,2,4,4,30,94180,93060,91970,85.38,0,5.51,7.61,8.41,9.05,9.59,10.06,10.5,10.9,11.67,155.42000000000002,156.01,156.44,156.87,157.33,157.77,158.21,158.62,159.42000000000002,14.1,13.93,13.8,13.64,13.48,13.32,13.15,13,12.68,N/A,N/A +2013,2,4,5,30,94150,93020,91940,86.37,0,5.23,7.1000000000000005,7.83,8.43,8.950000000000001,9.41,9.88,10.31,11.19,156.6,157.09,157.48,157.91,158.38,158.85,159.36,159.84,160.89000000000001,14.18,13.93,13.77,13.6,13.42,13.26,13.08,12.92,12.6,N/A,N/A +2013,2,4,6,30,94110,92990,91900,87.95,0,5.98,7.930000000000001,8.620000000000001,9.16,9.59,9.96,10.32,10.64,11.28,159.35,159.78,160.13,160.53,160.95000000000002,161.37,161.83,162.28,163.21,14.51,14.27,14.11,13.94,13.76,13.59,13.41,13.24,12.9,N/A,N/A +2013,2,4,7,30,94090,92970,91880,88.68,0,6.15,8.290000000000001,9.09,9.71,10.22,10.65,11.07,11.46,12.23,163.55,163.99,164.33,164.70000000000002,165.08,165.45000000000002,165.87,166.27,167.11,14.47,14.280000000000001,14.14,13.97,13.8,13.64,13.47,13.31,12.97,N/A,N/A +2013,2,4,8,30,94040,92920,91830,87.92,0,5.69,7.74,8.53,9.16,9.69,10.15,10.59,10.99,11.78,158.67000000000002,159.25,159.72,160.17000000000002,160.63,161.05,161.5,161.92000000000002,162.79,14.41,14.200000000000001,14.06,13.89,13.72,13.56,13.38,13.21,12.870000000000001,N/A,N/A +2013,2,4,9,30,94000,92880,91790,88.3,0,4.65,6.7700000000000005,7.6000000000000005,8.290000000000001,8.870000000000001,9.36,9.83,10.27,11.16,166.87,166.74,166.76,166.9,167.08,167.27,167.45000000000002,167.62,167.9,13.92,13.83,13.72,13.57,13.41,13.26,13.08,12.91,12.57,N/A,N/A +2013,2,4,10,30,94000,92880,91790,90.39,0,3.29,5.15,5.91,6.58,7.13,7.61,8.08,8.540000000000001,9.44,172.33,171.55,171.31,171.55,171.84,172.14000000000001,172.34,172.5,172.6,13.08,13.07,13,12.9,12.76,12.61,12.44,12.27,11.92,N/A,N/A +2013,2,4,11,30,93990,92860,91770,93.42,0,3.17,5.34,6.2,7.03,7.75,8.39,8.99,9.540000000000001,10.52,171.96,176.33,178.35,178.4,178.35,178.25,177.93,177.58,176.71,12.24,12.450000000000001,12.41,12.32,12.19,12.06,11.9,11.74,11.42,N/A,N/A +2013,2,4,12,30,93960,92830,91740,93.09,0,4.2,6.140000000000001,6.88,7.6000000000000005,8.290000000000001,8.950000000000001,9.49,9.96,10.57,165.32,171.8,175.33,176.85,177.47,177.65,177.65,177.70000000000002,178.54,12.02,12.09,12.02,11.92,11.790000000000001,11.66,11.51,11.38,11.19,N/A,N/A +2013,2,4,13,30,93970,92840,91740,95.34,0,2.47,4.74,5.5600000000000005,6.34,7.01,7.61,8.040000000000001,8.4,8.620000000000001,166.44,172.32,175.49,176.91,177.6,177.97,178.37,178.85,180.99,11.040000000000001,11.49,11.42,11.34,11.23,11.13,11.05,10.98,10.91,N/A,N/A +2013,2,4,14,30,94020,92890,91790,93.87,0,1.72,2.17,2.45,2.84,3.18,3.5,3.9,4.26,4.68,160.66,181.79,192.41,196.05,198.25,199.73000000000002,200.75,201.67000000000002,203.23000000000002,11.35,11.18,11.08,10.93,10.75,10.57,10.4,10.26,10.11,N/A,N/A +2013,2,4,15,30,94030,92900,91810,86.60000000000001,0,1.6600000000000001,2.04,2.16,2.22,2.25,2.2600000000000002,2.2600000000000002,2.2600000000000002,2.29,211.95000000000002,212.31,212.61,213.04,213.58,214.11,215.15,215.94,216.93,12.55,12.15,11.950000000000001,11.74,11.540000000000001,11.35,11.14,10.94,10.49,N/A,N/A +2013,2,4,16,30,94020,92890,91810,74.47,0,0.33,0.47000000000000003,0.55,0.63,0.7000000000000001,0.76,0.8300000000000001,0.9,1.04,236.20000000000002,235.32,235.11,235.27,235.52,235.8,236.03,236.36,237.68,14.530000000000001,14.08,13.86,13.65,13.450000000000001,13.27,13.08,12.9,12.530000000000001,N/A,N/A +2013,2,4,17,30,93980,92870,91790,53.2,0,1.73,2.09,2.21,2.29,2.36,2.42,2.48,2.5500000000000003,2.69,293.77,292.87,292.18,291.8,291.74,291.83,292.25,292.72,294.03000000000003,17.41,16.88,16.63,16.41,16.2,16.01,15.82,15.64,15.26,N/A,N/A +2013,2,4,18,30,93930,92830,91760,28.37,0,2.84,3.58,3.88,4.08,4.24,4.37,4.49,4.59,4.78,303.08,303.23,303.26,303.22,303.18,303.13,303.09000000000003,303.05,302.98,20.240000000000002,19.67,19.41,19.17,18.95,18.740000000000002,18.53,18.34,17.94,N/A,N/A +2013,2,4,19,30,93910,92810,91750,19.18,0,4.82,5.87,6.21,6.390000000000001,6.51,6.6000000000000005,6.66,6.71,6.78,308.41,308.90000000000003,309.2,309.41,309.58,309.73,309.86,309.98,310.19,21.54,20.88,20.6,20.35,20.12,19.900000000000002,19.68,19.48,19.06,N/A,N/A +2013,2,4,20,30,93900,92810,91740,21.43,0,4.92,5.99,6.37,6.57,6.71,6.8100000000000005,6.890000000000001,6.95,7.05,314.38,314.57,314.68,314.73,314.77,314.81,314.83,314.85,314.88,21.87,21.23,20.96,20.71,20.490000000000002,20.27,20.05,19.85,19.44,N/A,N/A +2013,2,4,21,30,93850,92760,91700,19.97,0,5.5600000000000005,6.88,7.26,7.47,7.61,7.72,7.79,7.84,7.91,314.93,314.97,314.97,314.93,314.88,314.83,314.78000000000003,314.73,314.62,21.87,21.27,21.03,20.79,20.56,20.36,20.14,19.94,19.53,N/A,N/A +2013,2,4,22,30,93850,92750,91690,22.09,0,5.04,6.28,6.68,6.9,7.0600000000000005,7.17,7.26,7.33,7.44,306.37,306.57,306.67,306.73,306.76,306.79,306.8,306.81,306.82,21.44,20.97,20.76,20.54,20.330000000000002,20.13,19.92,19.72,19.32,N/A,N/A +2013,2,4,23,30,93840,92740,91680,24.13,0,3.7800000000000002,5.91,6.73,7.41,7.930000000000001,8.35,8.67,8.950000000000001,9.32,305,304.61,304.38,304.24,304.15000000000003,304.09000000000003,304.07,304.05,304,21.03,21.02,20.92,20.75,20.57,20.39,20.18,19.990000000000002,19.59,N/A,N/A +2013,2,5,0,30,93860,92770,91700,30.35,0,2.77,6.3,7.87,8.950000000000001,9.61,9.99,10.11,10.17,10.09,302.98,305.26,306.54,306.76,306.95,307.11,307.53000000000003,307.97,308.99,18.69,20.09,20.35,20.38,20.3,20.16,19.98,19.8,19.41,N/A,N/A +2013,2,5,1,30,93920,92820,91750,31.79,0,2.8000000000000003,5.68,6.84,7.88,8.72,9.43,9.91,10.28,10.540000000000001,324.01,327.61,329.39,329.2,328.72,328.09000000000003,327.63,327.24,326.68,16.88,18.14,18.44,18.650000000000002,18.73,18.75,18.66,18.56,18.23,N/A,N/A +2013,2,5,2,30,93960,92850,91770,32.04,0,2.91,6.09,7.37,8.43,9.17,9.71,9.98,10.18,10.25,314.7,323.61,328.83,330.88,332.18,333.04,334.08,335.12,337.65000000000003,16.06,17.39,17.71,17.96,18.09,18.150000000000002,18.11,18.05,17.79,N/A,N/A +2013,2,5,3,30,94000,92880,91800,35.9,0,1.8800000000000001,2.12,2.25,3.15,4.07,5,5.7700000000000005,6.49,7.45,228.62,280.40000000000003,304.38,327.6,339.72,346.04,348.95,351.29,352.92,14.32,15.21,15.33,15.48,15.6,15.71,15.84,15.97,16.22,N/A,N/A +2013,2,5,4,30,94020,92900,91810,37.4,0,1.29,1.59,1.54,1.61,1.9100000000000001,2.32,2.82,3.34,4.42,271.43,295.05,311.35,330.61,343.08,353.92,357.65000000000003,0.58,0.72,13.56,14.99,15.19,15.18,15.15,15.120000000000001,15.05,15,15,N/A,N/A +2013,2,5,5,30,94030,92910,91820,39.32,0,0.71,1.28,1.59,2.15,2.73,3.33,4,4.7,6.01,267.35,305.7,326.08,338.98,346.01,350.55,352.34000000000003,353.73,353.95,12.31,13.81,14.1,14.200000000000001,14.23,14.23,14.33,14.44,14.870000000000001,N/A,N/A +2013,2,5,6,30,94070,92940,91850,41.14,0,0.87,1.24,1.05,0.76,0.84,1.04,1.56,2.19,3.58,250.89000000000001,256.62,267.44,282.1,308.15000000000003,341.14,350.07,358.35,2.88,11.6,12.92,13.18,13.370000000000001,13.44,13.450000000000001,13.44,13.48,13.82,N/A,N/A +2013,2,5,7,30,94120,92980,91880,43.33,0,0.7000000000000001,1,1.05,1.17,1.5,1.93,2.44,2.96,3.92,341.68,334.90000000000003,335.88,342.92,349.39,356.17,359.1,1.79,5.67,10.23,11.33,11.540000000000001,11.74,12,12.26,12.42,12.51,12.64,N/A,N/A +2013,2,5,8,30,94120,92990,91890,45.910000000000004,0,0.64,0.71,0.8,1.17,1.56,1.98,2.2600000000000002,2.5300000000000002,3.06,203.28,263.4,292.43,324.45,339.54,347.98,351.84000000000003,355.57,3.14,9.14,10.93,11.43,11.71,11.85,11.950000000000001,11.96,11.98,12.1,N/A,N/A +2013,2,5,9,30,94120,92970,91870,47.89,0,0.9400000000000001,1.55,1.72,1.9000000000000001,2.13,2.37,2.69,3.02,3.67,285.03000000000003,303.23,312.2,317.94,322.52,326.64,330.81,334.64,341.47,8.33,9.620000000000001,9.950000000000001,10.23,10.51,10.78,11.03,11.27,11.77,N/A,N/A +2013,2,5,10,30,94110,92970,91860,52.050000000000004,0,0.27,0.98,1.62,2.42,3.0700000000000003,3.63,3.84,3.93,3.75,197.61,283.31,330.21,330.28000000000003,328.81,327.01,325.96,325.56,326.66,7.3100000000000005,8.72,9.15,9.47,9.790000000000001,10.08,10.42,10.74,11.17,N/A,N/A +2013,2,5,11,30,94120,92970,91870,52.46,0,0.89,0.31,0.32,0.74,1.27,1.8900000000000001,2.38,2.86,3.58,201.43,209.47,236.92000000000002,330.73,353.99,349.49,345.3,340.95,333.68,7.07,8.02,8.2,8.36,8.65,8.93,9.25,9.6,10.42,N/A,N/A +2013,2,5,12,30,94170,93010,91910,55.35,0,0.78,1.56,1.94,2.4,2.72,2.94,2.9,2.86,2.85,282.46,326.21,346.98,356.5,2.16,5.84,4.88,2.31,356.44,6.4,7.48,7.640000000000001,7.71,8.06,8.45,9.02,9.540000000000001,10.450000000000001,N/A,N/A +2013,2,5,13,30,94190,93030,91920,56.72,0,1.02,1.48,1.4000000000000001,1.28,1.37,1.53,1.83,2.16,2.75,241.6,250.95000000000002,262.71,277.09000000000003,293.59000000000003,308.67,317.3,323.90000000000003,332.59000000000003,5.83,7.24,7.57,7.74,7.74,7.74,7.87,8.23,9.6,N/A,N/A +2013,2,5,14,30,94220,93060,91950,49.07,0,0.36,0.8200000000000001,1.32,2.06,2.62,3.08,3.27,3.34,3.23,309.84000000000003,294.81,289.93,294.89,297.54,299.58,301.5,302.42,301.41,6.49,6.34,6.53,6.890000000000001,7.41,7.91,8.4,8.89,9.950000000000001,N/A,N/A +2013,2,5,15,30,94250,93100,92000,41.14,0,0.4,0.51,0.59,0.7000000000000001,1.03,1.47,2.0100000000000002,2.4,2.4,27.98,5.79,352.24,340.91,335.19,329.63,321.56,314.64,307.81,9.39,9.040000000000001,8.88,8.74,8.58,8.51,8.950000000000001,9.55,11.02,N/A,N/A +2013,2,5,16,30,94230,93100,92000,34.26,0,0.87,0.99,1.01,1.01,1.03,1.07,1.22,1.3800000000000001,1.47,38.28,31.54,26.85,22.19,15.65,9.07,0.4,351.56,334.77,12.83,12.43,12.24,12.08,11.93,11.790000000000001,11.68,11.71,12.43,N/A,N/A +2013,2,5,17,30,94190,93070,91990,27.6,0,0.6,0.7000000000000001,0.71,0.72,0.73,0.73,0.73,0.74,0.75,347.62,349.47,350.92,352.55,354.37,356.11,358.21,0.18,3.98,16.7,16.27,16.05,15.85,15.67,15.5,15.32,15.15,14.81,N/A,N/A +2013,2,5,18,30,94150,93040,91960,23,0,0.24,0.25,0.24,0.22,0.2,0.18,0.16,0.13,0.1,283.75,282.95,283.24,284.3,286.17,288.08,291.59000000000003,295.25,308.75,19.23,18.76,18.52,18.3,18.09,17.900000000000002,17.7,17.51,17.13,N/A,N/A +2013,2,5,19,30,94120,93020,91950,18.85,0,1.03,1.03,0.98,0.93,0.88,0.84,0.8,0.76,0.71,232.33,228.41,225.95000000000002,223.53,221.08,218.81,216.26,213.98000000000002,209.74,20.91,20.39,20.14,19.91,19.69,19.490000000000002,19.28,19.080000000000002,18.69,N/A,N/A +2013,2,5,20,30,94060,92970,91900,18.1,0,0.77,0.79,0.76,0.74,0.72,0.71,0.7000000000000001,0.68,0.67,209.06,202.79,199.75,197.51,195.5,193.71,192.16,190.83,188.53,21.88,21.37,21.12,20.89,20.67,20.47,20.25,20.06,19.66,N/A,N/A +2013,2,5,21,30,94010,92910,91850,18.2,0,1.18,1.31,1.32,1.31,1.3,1.28,1.27,1.26,1.24,112.5,115.99000000000001,118.12,120.03,121.82000000000001,123.46000000000001,125.14,126.68,129.87,22.400000000000002,21.900000000000002,21.67,21.44,21.23,21.03,20.82,20.63,20.23,N/A,N/A +2013,2,5,22,30,93960,92870,91810,18.36,0,1.4000000000000001,1.6600000000000001,1.72,1.76,1.78,1.79,1.8,1.81,1.82,130.31,134.38,136.59,138.29,139.73,140.98,142.16,143.21,145.12,22.62,22.2,21.990000000000002,21.78,21.57,21.38,21.17,20.98,20.580000000000002,N/A,N/A +2013,2,5,23,30,93950,92860,91800,23.71,0,2.04,3.42,3.5700000000000003,3.59,3.6,3.59,3.58,3.5700000000000003,3.54,148.18,152.08,153.64000000000001,153.79,153.88,153.95000000000002,153.91,153.86,153.69,21.75,22,21.86,21.66,21.47,21.28,21.080000000000002,20.89,20.5,N/A,N/A +2013,2,6,0,30,93960,92860,91800,24.84,0,2.9,4.33,4.3500000000000005,4.39,4.41,4.42,4.41,4.39,4.26,159.98,156.65,155.53,155.78,155.63,155.29,154.9,154.55,153.91,20.54,21.87,21.88,21.54,21.330000000000002,21.19,21,20.830000000000002,20.53,N/A,N/A +2013,2,6,1,30,93970,92870,91810,28.07,0,3.0100000000000002,5.12,5.49,5.74,5.89,5.98,5.95,5.9,5.62,156.3,159.74,161.86,163.67000000000002,165.1,166.26,166.73,166.98,166.02,18.97,20.38,20.62,20.71,20.73,20.71,20.63,20.56,20.34,N/A,N/A +2013,2,6,2,30,94000,92890,91830,40.13,0,4.88,7.82,8.88,9.66,10.03,10.200000000000001,9.950000000000001,9.66,8.73,167.72,170.01,171.15,171.70000000000002,171.89000000000001,171.91,171.78,171.64000000000001,171.07,17.92,18.32,18.43,18.53,18.64,18.740000000000002,18.88,19,19.19,N/A,N/A +2013,2,6,3,30,94010,92900,91830,62.13,0,2.93,5.55,6.3,6.87,7.17,7.34,7.25,7.140000000000001,6.8100000000000005,155.42000000000002,160.89000000000001,163.68,165.1,165.78,166.11,165.76,165.34,163.94,16.4,17.37,17.54,17.740000000000002,18,18.26,18.5,18.71,18.91,N/A,N/A +2013,2,6,4,30,94030,92910,91840,79.29,0,1.68,3.66,4.51,5.29,5.95,6.53,6.99,7.390000000000001,7.9,146.85,159.06,166.06,169.41,171.4,172.69,173.24,173.62,173.59,15.540000000000001,16.48,16.6,16.73,16.87,16.990000000000002,17.13,17.240000000000002,17.41,N/A,N/A +2013,2,6,5,30,94040,92920,91850,83.27,0,1.54,2.36,2.54,2.86,3.2800000000000002,3.7600000000000002,4.23,4.67,5.42,97.19,116.89,132.07,150.9,160.8,166.9,170.33,173.25,176.6,13.66,14.56,14.82,15.14,15.34,15.48,15.6,15.71,15.89,N/A,N/A +2013,2,6,6,30,94090,92970,91880,85.9,0,2.29,3.1,3,2.97,3.2,3.5300000000000002,3.96,4.38,5.17,120.01,117.48,120.35000000000001,128.32,135.73,142.99,148.54,153.43,159.78,13.22,13.89,13.92,13.950000000000001,13.93,13.9,13.94,13.98,14.13,N/A,N/A +2013,2,6,7,30,94090,92960,91880,88.25,0,1.95,3.41,3.74,3.99,4.17,4.3,4.5,4.72,5.32,124.5,131.4,136.31,141.24,145.99,150.33,154.22,157.58,162.36,12.55,13.33,13.48,13.66,13.8,13.91,14.08,14.24,14.58,N/A,N/A +2013,2,6,8,30,94070,92950,91860,90.48,0,1.67,3.15,3.6,3.99,4.33,4.65,5,5.34,6.11,122.78,124.93,127.47,130.93,135.59,140.33,143.85,146.92000000000002,151.42000000000002,11.8,12.57,12.74,12.9,13.08,13.26,13.43,13.58,13.8,N/A,N/A +2013,2,6,9,30,94080,92950,91860,91.31,0,1.8800000000000001,4.09,4.94,5.53,5.97,6.33,6.8100000000000005,7.34,8.65,124.34,122.46000000000001,122.71000000000001,125.01,129.07,133.42000000000002,138.24,142.89000000000001,151.39000000000001,11.38,12.16,12.3,12.4,12.48,12.56,12.700000000000001,12.86,13.21,N/A,N/A +2013,2,6,10,30,94040,92910,91820,91.92,0,0.19,0.85,1.51,2.16,2.87,3.62,4.36,5.13,6.69,64.14,96.9,125.03,134.2,140.03,144.5,146.70000000000002,148.77,151.97,11.08,11.74,11.81,11.870000000000001,11.950000000000001,12.030000000000001,12.120000000000001,12.22,12.48,N/A,N/A +2013,2,6,11,30,94040,92910,91810,92.73,0,0.8300000000000001,1.9000000000000001,2.52,3.31,4.1,4.89,5.69,6.47,7.95,44.38,85.84,110.12,121.95,129.61,135.39000000000001,138.81,141.94,146.58,11.13,11.950000000000001,12.05,12.06,12.07,12.1,12.120000000000001,12.13,12.18,N/A,N/A +2013,2,6,12,30,94030,92900,91810,92.49,0,0.44,1.86,3.0300000000000002,4.26,5.33,6.3100000000000005,7.2,8.03,9.450000000000001,279.13,216.89000000000001,175.96,171.27,168.8,167.27,166.75,166.44,166.86,11.58,12.25,12.26,12.280000000000001,12.280000000000001,12.27,12.27,12.27,12.26,N/A,N/A +2013,2,6,13,30,94070,92940,91850,93.85000000000001,0,1.1,0.9400000000000001,0.99,2.05,3.16,4.15,4.97,5.76,7.2,328.35,191.78,153.09,150.49,149.25,149.4,150.12,150.97,153.47,12.09,12.39,12.31,12.200000000000001,12.11,12.030000000000001,11.950000000000001,11.89,11.78,N/A,N/A +2013,2,6,14,30,94060,92930,91840,94.81,0,1.32,1.8900000000000001,1.99,2.24,2.69,3.25,3.91,4.59,6.01,88.34,108.24000000000001,122.13,138.05,148.5,157.19,161.32,164.91,168.38,12.26,12.32,12.19,12.030000000000001,11.9,11.78,11.68,11.59,11.44,N/A,N/A +2013,2,6,15,30,94030,92910,91820,78.75,0,4.89,6.22,6.68,6.98,7.19,7.36,7.51,7.66,8.02,155.92000000000002,156.83,157.42000000000002,157.94,158.47,158.94,159.5,160.04,161.32,14.85,14.31,14.09,13.88,13.68,13.5,13.3,13.13,12.790000000000001,N/A,N/A +2013,2,6,16,30,94010,92890,91810,74.67,0,5.51,6.7700000000000005,7.13,7.29,7.390000000000001,7.45,7.46,7.48,7.47,166.17000000000002,166,165.9,165.84,165.8,165.77,165.76,165.75,165.79,15.9,15.25,14.99,14.75,14.540000000000001,14.35,14.14,13.950000000000001,13.58,N/A,N/A +2013,2,6,17,30,93970,92860,91780,70.49,0,4.94,6.03,6.34,6.48,6.55,6.59,6.59,6.58,6.53,167.69,167.94,168.11,168.29,168.5,168.69,168.95000000000002,169.19,169.8,16.96,16.27,16,15.76,15.540000000000001,15.34,15.14,14.950000000000001,14.57,N/A,N/A +2013,2,6,18,30,93920,92820,91740,60.42,0,3.86,4.71,4.97,5.09,5.16,5.21,5.23,5.24,5.24,178.28,178.35,178.4,178.49,178.6,178.71,178.86,178.99,179.32,19.07,18.41,18.13,17.88,17.66,17.45,17.240000000000002,17.05,16.66,N/A,N/A +2013,2,6,19,30,93870,92770,91710,52.32,0,3.96,4.83,5.1000000000000005,5.23,5.3100000000000005,5.36,5.38,5.4,5.4,174.87,175.56,175.96,176.3,176.63,176.92000000000002,177.24,177.54,178.20000000000002,20.87,20.2,19.92,19.67,19.44,19.23,19.01,18.82,18.42,N/A,N/A +2013,2,6,20,30,93800,92710,91650,49.06,0,3.79,4.62,4.87,5,5.08,5.14,5.17,5.19,5.22,179.3,180.41,181.1,181.68,182.22,182.71,183.21,183.67000000000002,184.61,21.92,21.28,21.01,20.76,20.54,20.330000000000002,20.11,19.91,19.51,N/A,N/A +2013,2,6,21,30,93750,92670,91610,46.550000000000004,0,4.01,4.89,5.15,5.28,5.36,5.41,5.44,5.46,5.47,175.65,176.71,177.43,178.07,178.64000000000001,179.15,179.65,180.1,180.99,22.5,21.900000000000002,21.650000000000002,21.41,21.19,20.98,20.77,20.57,20.16,N/A,N/A +2013,2,6,22,30,93720,92630,91570,46.57,0,4.32,5.3,5.57,5.7,5.7700000000000005,5.82,5.84,5.8500000000000005,5.8500000000000005,166.41,168.36,169.55,170.51,171.38,172.18,172.99,173.71,175.13,22.37,21.86,21.64,21.42,21.21,21,20.79,20.6,20.2,N/A,N/A +2013,2,6,23,30,93700,92610,91550,50.76,0,3.9,5.3100000000000005,5.67,5.86,5.98,6.05,6.07,6.09,6.07,175.74,175.01,174.54,174.09,173.66,173.25,172.84,172.46,171.66,21.73,21.5,21.34,21.150000000000002,20.96,20.77,20.57,20.38,19.990000000000002,N/A,N/A +2013,2,7,0,30,93720,92630,91570,56.81,0,3.72,5.82,6.41,6.71,6.88,6.98,7.03,7.07,7.1000000000000005,165.99,166.01,165.95000000000002,165.73,165.49,165.24,165.03,164.84,164.6,20.26,20.59,20.61,20.53,20.41,20.26,20.07,19.900000000000002,19.51,N/A,N/A +2013,2,7,1,30,93770,92670,91610,68.45,0,1.57,3.35,4.16,4.95,5.58,6.07,6.43,6.73,7.18,141.74,149.52,154.78,157.43,158.61,158.71,158.09,157.34,156.18,18.37,19.23,19.42,19.5,19.48,19.400000000000002,19.26,19.13,18.81,N/A,N/A +2013,2,7,2,30,93810,92710,91640,77.57000000000001,0,1.6,3.3000000000000003,3.93,4.46,4.95,5.44,5.97,6.51,7.55,133.44,136.52,138.61,140.34,141.85,143.23,144.68,146.12,149.17000000000002,17.46,18.13,18.2,18.17,18.080000000000002,17.96,17.82,17.68,17.37,N/A,N/A +2013,2,7,3,30,93820,92720,91650,88.48,0,2.31,4.2700000000000005,4.99,5.92,6.8100000000000005,7.68,8.46,9.19,10.42,124.47,131.54,136.15,140.37,143.66,146.42000000000002,148.81,151.02,154.51,16.330000000000002,16.96,17.04,17.04,16.97,16.88,16.75,16.62,16.330000000000002,N/A,N/A +2013,2,7,4,30,93850,92740,91670,92.21000000000001,0,1.58,2.75,3,3.22,3.52,3.85,4.41,5.01,6.46,109.69,118.24000000000001,124.59,131.75,138.91,146.01,151.84,157.1,163.02,15.56,15.96,15.93,15.88,15.83,15.77,15.700000000000001,15.64,15.48,N/A,N/A +2013,2,7,5,30,93880,92770,91690,93.82000000000001,0,1.54,2.54,2.81,3.25,3.8200000000000003,4.5200000000000005,5.25,5.99,7.44,103.55,119.75,130.91,142.1,150.64000000000001,157.82,162.15,165.83,170.06,14.93,15.370000000000001,15.35,15.32,15.290000000000001,15.280000000000001,15.27,15.26,15.200000000000001,N/A,N/A +2013,2,7,6,30,93930,92820,91740,89.37,0,0.49,0.86,1.02,1.34,1.73,2.2,2.66,3.13,4.08,95.97,138.09,163.4,180.34,189.51,193.23000000000002,194.1,194.34,193.04,15.47,15.540000000000001,15.56,15.51,15.450000000000001,15.38,15.280000000000001,15.18,14.93,N/A,N/A +2013,2,7,7,30,93970,92860,91780,89.51,0,0.4,0.88,1.17,1.6400000000000001,2.11,2.6,3.09,3.58,4.55,112.9,149.86,172.57,181.63,186.91,189.39000000000001,190.18,190.57,189.94,15.860000000000001,15.790000000000001,15.71,15.58,15.44,15.3,15.14,14.99,14.68,N/A,N/A +2013,2,7,8,30,93990,92870,91800,90.19,0,0.77,0.67,0.64,0.92,1.3,1.79,2.29,2.8000000000000003,3.81,62.77,105.82000000000001,127.75,160.54,177.34,183.58,185.27,186.22,185.76,15.84,15.72,15.6,15.43,15.25,15.09,14.92,14.76,14.5,N/A,N/A +2013,2,7,9,30,94010,92900,91820,91.51,0,0.16,0.72,1.35,1.78,2.25,2.77,3.2800000000000002,3.8000000000000003,4.87,316.37,275.5,229.57,220.78,214.97,211.56,209.32,207.35,203.8,15.780000000000001,15.65,15.530000000000001,15.35,15.200000000000001,15.06,14.96,14.88,14.83,N/A,N/A +2013,2,7,10,30,93990,92880,91810,94,0,1.75,3.27,3.98,4.7,5.26,5.73,5.9,5.98,5.67,156.47,170.16,178.29,183.07,186.23,188.43,189.78,190.84,191.8,16.01,16.04,16.03,15.99,15.950000000000001,15.9,15.83,15.76,15.58,N/A,N/A +2013,2,7,11,30,94020,92910,91830,98.72,0,2.11,3.29,3.46,3.7,3.96,4.23,4.41,4.55,4.63,153.63,162.54,169.29,177.61,184.20000000000002,189.77,193.45000000000002,196.45000000000002,200.11,14.120000000000001,14.84,14.96,15.040000000000001,15.07,15.08,15.05,15.02,14.92,N/A,N/A +2013,2,7,12,30,94060,92940,91860,99.29,0,1.36,2.37,2.83,3.23,3.46,3.5700000000000003,3.61,3.63,3.61,252.74,252.31,250.68,246.67000000000002,242.13,237.59,234.23000000000002,231.04,223.19,14.63,14.74,14.82,14.91,14.83,14.69,14.49,14.32,14.15,N/A,N/A +2013,2,7,13,30,94060,92950,91860,96.65,0,1.44,2.94,3.4,3.67,3.79,3.83,3.73,3.6,3.17,220.37,219.22,218.92000000000002,219.07,218.84,218.49,217.97,217.81,220.27,14.24,14.88,14.790000000000001,14.57,14.290000000000001,14.02,13.74,13.52,13.290000000000001,N/A,N/A +2013,2,7,14,30,94140,93010,91920,98.12,0,1.8900000000000001,2.09,2.1,2.09,2.2600000000000002,2.49,2.82,3.11,3.5300000000000002,274.81,268.15,262.94,257.72,261.6,267.79,276.24,283.23,291.3,11.93,11.68,11.540000000000001,11.39,11.16,10.96,11.86,12.61,13.58,N/A,N/A +2013,2,7,15,30,94180,93050,91960,93.89,0,0.29,0.6,0.85,1.17,1.75,2.58,3.3000000000000003,4.01,5.08,171.6,188.79,210.85,243.08,265.72,287.75,294.39,300.2,305.17,11.25,10.950000000000001,11.1,11.56,11.99,12.35,12.790000000000001,13.09,13.23,N/A,N/A +2013,2,7,16,30,94200,93090,92010,37.08,0,1.71,2.5300000000000002,3.0300000000000002,3.41,3.71,3.97,4.2,4.4,4.76,298.79,300.41,301.29,301.73,302.05,302.3,302.5,302.68,302.96,17.32,16.87,16.66,16.45,16.26,16.080000000000002,15.9,15.72,15.36,N/A,N/A +2013,2,7,17,30,94230,93120,92050,24.45,0,5.07,6.25,6.7700000000000005,7.07,7.28,7.42,7.53,7.62,7.74,326.78000000000003,326.11,325.62,325.24,324.91,324.64,324.39,324.16,323.74,19.59,18.95,18.67,18.400000000000002,18.18,17.96,17.740000000000002,17.55,17.14,N/A,N/A +2013,2,7,18,30,94230,93130,92050,19.71,0,6.63,8.08,8.61,8.86,9.03,9.14,9.21,9.27,9.32,319.57,319.67,319.74,319.73,319.72,319.69,319.66,319.62,319.54,20.47,19.76,19.47,19.2,18.97,18.76,18.54,18.35,17.95,N/A,N/A +2013,2,7,19,30,94200,93100,92030,19.02,0,6.29,7.79,8.26,8.51,8.69,8.81,8.9,8.97,9.06,319.13,319.53000000000003,319.77,319.97,320.14,320.29,320.44,320.56,320.81,21.25,20.53,20.25,20,19.77,19.55,19.330000000000002,19.13,18.72,N/A,N/A +2013,2,7,20,30,94220,93120,92050,18.32,0,5.58,6.86,7.3,7.54,7.71,7.83,7.91,7.99,8.09,319.53000000000003,319.89,320.12,320.31,320.46,320.6,320.73,320.85,321.09000000000003,21.86,21.2,20.93,20.67,20.44,20.23,20,19.8,19.39,N/A,N/A +2013,2,7,21,30,94190,93090,92020,18.31,0,6.28,7.78,8.23,8.47,8.63,8.75,8.83,8.89,8.97,316.97,317.36,317.59000000000003,317.78000000000003,317.94,318.07,318.21,318.32,318.56,21.93,21.31,21.06,20.82,20.59,20.38,20.16,19.97,19.55,N/A,N/A +2013,2,7,22,30,94230,93130,92060,18.21,0,5.92,7.33,7.78,8,8.15,8.25,8.32,8.370000000000001,8.43,316.56,316.98,317.27,317.49,317.68,317.86,318.02,318.16,318.47,21.6,21.12,20.91,20.68,20.47,20.27,20.06,19.87,19.46,N/A,N/A +2013,2,7,23,30,94260,93160,92090,19.830000000000002,0,4.28,5.89,6.41,6.76,7.01,7.2,7.33,7.43,7.57,316.7,318.25,319.3,320.28000000000003,321.17,322,322.77,323.45,324.65000000000003,20.78,20.67,20.55,20.38,20.21,20.03,19.84,19.66,19.26,N/A,N/A +2013,2,8,0,30,94340,93230,92160,24.97,0,3.4,6.28,7.5200000000000005,8.19,8.53,8.59,8.52,8.41,8.24,339.42,341.73,343.43,344.13,344.8,345.44,346.22,346.95,348.32,18.31,19.34,19.62,19.72,19.7,19.59,19.42,19.240000000000002,18.84,N/A,N/A +2013,2,8,1,30,94370,93260,92190,29.57,0,3.84,6.8500000000000005,7.96,8.65,9.03,9.25,9.35,9.41,9.44,4.3500000000000005,4.08,4.22,5,5.74,6.41,6.53,6.5,5.74,17.72,18.61,18.830000000000002,18.91,18.85,18.73,18.55,18.38,18.02,N/A,N/A +2013,2,8,2,30,94470,93350,92270,38.88,0,1.93,4.53,6.08,7.43,8.44,9.14,9.65,10.08,10.73,53.1,37.54,25.69,22.990000000000002,22.29,23.11,24.490000000000002,25.830000000000002,27.22,15.040000000000001,16.15,16.38,16.580000000000002,16.69,16.73,16.69,16.64,16.47,N/A,N/A +2013,2,8,3,30,94540,93420,92330,44.58,0,0.91,3.0100000000000002,4.82,6.15,7.11,7.74,8.5,9.27,11.19,90.03,56.94,28.42,26.150000000000002,26.42,28.490000000000002,30.43,32.15,34.1,13.84,14.59,14.58,14.57,14.57,14.56,14.56,14.57,14.59,N/A,N/A +2013,2,8,4,30,94550,93420,92330,53.29,0,2.93,6.67,8.32,9.36,10.35,11.28,12.44,13.540000000000001,15.38,33.230000000000004,29.580000000000002,28.6,30.86,33.97,37.36,39.480000000000004,41.18,42.32,13.08,13.82,13.8,13.74,13.69,13.65,13.63,13.620000000000001,13.6,N/A,N/A +2013,2,8,5,30,94600,93460,92360,50.82,0,5.09,7.71,8.8,9.74,10.68,11.61,12.57,13.46,15.06,31.990000000000002,34.59,36.97,39.87,42.300000000000004,44.45,45.59,46.47,47.03,12.47,12.69,12.71,12.69,12.68,12.66,12.64,12.61,12.52,N/A,N/A +2013,2,8,6,30,94660,93530,92420,54.43,0,3.7,6.46,7.68,8.69,9.63,10.52,11.44,12.31,13.92,30.28,32.09,34.05,36.94,39.7,42.33,44.230000000000004,45.84,47.72,11.55,11.950000000000001,11.98,11.950000000000001,11.91,11.870000000000001,11.85,11.83,11.81,N/A,N/A +2013,2,8,7,30,94730,93590,92480,65.3,0,0.2,2.11,5.17,6.34,7.2,7.8500000000000005,8.64,9.42,11.11,245.12,297.76,15.16,21.830000000000002,28.59,35.04,39.78,43.77,48.32,10.13,10.790000000000001,10.73,10.67,10.61,10.55,10.51,10.47,10.44,N/A,N/A +2013,2,8,8,30,94750,93600,92490,68.48,0,2.27,0.77,0.8,3.34,5.7700000000000005,7.1000000000000005,8.31,9.52,11.83,214.99,116.82000000000001,98.09,58.04,35.39,38.15,41.04,43.7,47.480000000000004,9.450000000000001,9.93,9.790000000000001,9.71,9.620000000000001,9.53,9.46,9.4,9.290000000000001,N/A,N/A +2013,2,8,9,30,94790,93630,92520,75.04,0,0.72,1.59,1.95,2.11,2.95,4.3,5.38,6.48,8.56,311.31,256.64,271.97,16.79,45.88,47.04,48.160000000000004,49.28,51.21,8.5,9.21,9.18,9.120000000000001,8.99,8.84,8.68,8.53,8.27,N/A,N/A +2013,2,8,10,30,94790,93640,92520,73.37,0,1.72,1.94,1.61,1.33,1.72,2.5,3.31,4.21,6.17,241.85,245.05,285.53000000000003,359.76,22.89,33.730000000000004,37.410000000000004,41.01,46.35,8.07,8.86,8.73,8.43,8.19,8,7.8100000000000005,7.640000000000001,7.34,N/A,N/A +2013,2,8,11,30,94820,93670,92540,77.59,0,1.9100000000000001,3.0500000000000003,2.79,2.2,2.49,3.04,3.71,4.42,5.98,245.49,262.17,311.18,22.54,38.83,42.58,44.09,45.730000000000004,49.18,7.11,7.67,7.63,7.62,7.51,7.38,7.23,7.08,6.8,N/A,N/A +2013,2,8,12,30,94860,93700,92580,77.2,0,0.86,1.53,1.77,2.06,2.34,2.63,3.15,3.73,5.2,182.27,66.45,32.13,61.32,65.92,62.910000000000004,60.800000000000004,59.44,59.57,6.92,7.61,7.54,7.36,7.16,6.98,6.8,6.640000000000001,6.34,N/A,N/A +2013,2,8,13,30,94900,93740,92610,80.64,0,0.55,0.93,1.17,1.6400000000000001,2.18,2.7600000000000002,3.44,4.16,5.75,186.74,115.95,85.09,77.91,73.41,69.97,69.47,69.38,70.5,6.43,7.21,7.16,6.97,6.78,6.61,6.43,6.26,5.95,N/A,N/A +2013,2,8,14,30,94920,93760,92630,67.9,0,0.58,0.51,0.48,0.49,1.1,2.48,3.13,3.79,5.08,77.71000000000001,64.17,53.51,40.5,47.39,68,68.94,69.81,71.25,7.1000000000000005,6.79,6.62,6.46,6.4,6.36,6.24,6.12,5.89,N/A,N/A +2013,2,8,15,30,94920,93760,92640,58.46,0,2.23,2.73,2.9,3,3.0700000000000003,3.13,3.19,3.24,3.35,82.92,82.26,81.74,81.28,80.83,80.42,79.98,79.58,78.75,9.38,8.9,8.68,8.48,8.28,8.09,7.890000000000001,7.71,7.33,N/A,N/A +2013,2,8,16,30,94900,93750,92630,51.64,0,2.27,2.8000000000000003,2.99,3.1,3.18,3.24,3.3000000000000003,3.35,3.45,101.62,100.57000000000001,99.89,99.27,98.66,98.10000000000001,97.48,96.89,95.67,11.23,10.700000000000001,10.450000000000001,10.23,10.02,9.83,9.63,9.44,9.07,N/A,N/A +2013,2,8,17,30,94830,93700,92590,43.82,0,3.42,4.19,4.46,4.6000000000000005,4.7,4.78,4.83,4.88,4.96,108.26,108.46000000000001,108.53,108.49000000000001,108.42,108.34,108.23,108.11,107.84,13.41,12.8,12.530000000000001,12.290000000000001,12.07,11.86,11.65,11.450000000000001,11.06,N/A,N/A +2013,2,8,18,30,94760,93630,92530,37.730000000000004,0,4.19,5.17,5.48,5.65,5.76,5.8500000000000005,5.91,5.96,6.03,116.55,116.67,116.68,116.61,116.52,116.44,116.33,116.23,116.01,15.21,14.540000000000001,14.26,14.01,13.77,13.57,13.34,13.14,12.74,N/A,N/A +2013,2,8,19,30,94690,93570,92470,34.33,0,4.48,5.54,5.88,6.07,6.2,6.3,6.36,6.42,6.49,125.37,125.4,125.36,125.28,125.18,125.07000000000001,124.96000000000001,124.85000000000001,124.62,16.48,15.8,15.52,15.26,15.030000000000001,14.82,14.6,14.39,13.98,N/A,N/A +2013,2,8,20,30,94610,93490,92400,31.400000000000002,0,5.09,6.32,6.7,6.91,7.0600000000000005,7.16,7.23,7.29,7.36,132.61,132.68,132.67000000000002,132.61,132.54,132.46,132.36,132.27,132.08,17.38,16.7,16.43,16.18,15.94,15.73,15.51,15.31,14.89,N/A,N/A +2013,2,8,21,30,94520,93400,92320,30.080000000000002,0,5.4,6.74,7.18,7.43,7.6000000000000005,7.72,7.8100000000000005,7.890000000000001,8,133.74,134.09,134.27,134.36,134.42000000000002,134.45,134.49,134.53,134.56,17.95,17.32,17.07,16.830000000000002,16.6,16.39,16.17,15.97,15.56,N/A,N/A +2013,2,8,22,30,94430,93310,92230,31.37,0,5.54,6.99,7.46,7.74,7.930000000000001,8.08,8.19,8.28,8.41,132.45,133.17000000000002,133.57,133.86,134.1,134.31,134.5,134.68,135,18.150000000000002,17.64,17.41,17.19,16.97,16.77,16.55,16.36,15.950000000000001,N/A,N/A +2013,2,8,23,30,94370,93260,92170,31.8,0,5.36,7.17,7.75,8.18,8.5,8.76,8.97,9.15,9.43,139.91,140.15,140.26,140.32,140.38,140.44,140.49,140.54,140.63,17.85,17.61,17.45,17.26,17.07,16.89,16.69,16.5,16.1,N/A,N/A +2013,2,9,0,30,94340,93230,92140,39.35,0,2.98,5.44,6.41,7.25,7.99,8.65,9.24,9.78,10.620000000000001,137.98,139.34,140.36,141.18,141.93,142.62,143.19,143.69,144.33,15.860000000000001,16.44,16.51,16.51,16.46,16.39,16.27,16.16,15.85,N/A,N/A +2013,2,9,1,30,94310,93190,92100,41.230000000000004,0,5.05,7.87,8.94,9.84,10.57,11.200000000000001,11.73,12.19,12.91,157.94,157.55,157.20000000000002,156.78,156.32,155.88,155.43,155.01,154.26,15.700000000000001,15.85,15.83,15.780000000000001,15.68,15.59,15.46,15.33,15.02,N/A,N/A +2013,2,9,2,30,94310,93180,92100,46.39,0,3.8200000000000003,6.34,7.3500000000000005,8.25,9.08,9.86,10.64,11.370000000000001,12.620000000000001,145.56,146.98,148.17000000000002,149.51,150.84,152.09,152.95000000000002,153.62,154.05,14.4,14.67,14.71,14.71,14.67,14.63,14.55,14.46,14.24,N/A,N/A +2013,2,9,3,30,94300,93180,92090,45.34,0,5.73,8.16,9.17,9.99,10.69,11.3,11.870000000000001,12.38,13.290000000000001,145.17000000000002,145.53,145.79,145.99,146.17000000000002,146.35,146.53,146.71,147.06,15.13,15.040000000000001,14.93,14.790000000000001,14.65,14.51,14.35,14.200000000000001,13.88,N/A,N/A +2013,2,9,4,30,94270,93140,92050,48.4,0,4.89,7.0200000000000005,7.930000000000001,8.67,9.3,9.85,10.38,10.86,11.74,138.23,139.22,139.92000000000002,140.6,141.26,141.89000000000001,142.54,143.15,144.34,14.69,14.56,14.44,14.290000000000001,14.14,13.99,13.82,13.66,13.32,N/A,N/A +2013,2,9,5,30,94250,93130,92030,52.480000000000004,0,5.15,7.28,8.22,8.98,9.63,10.19,10.72,11.200000000000001,12.08,143.86,144.96,145.76,146.44,147.06,147.63,148.18,148.69,149.58,14.49,14.33,14.200000000000001,14.05,13.88,13.73,13.55,13.39,13.040000000000001,N/A,N/A +2013,2,9,6,30,94260,93130,92040,56.75,0,5.48,7.62,8.57,9.33,9.96,10.5,10.97,11.41,12.18,140.8,142.08,143.08,143.86,144.52,145.09,145.62,146.1,146.96,14.31,14.120000000000001,13.98,13.8,13.63,13.46,13.280000000000001,13.11,12.75,N/A,N/A +2013,2,9,7,30,94210,93080,91990,60.1,0,6.87,9.22,10.11,10.790000000000001,11.33,11.78,12.19,12.56,13.22,141.95000000000002,142.63,143.15,143.61,144.05,144.44,144.88,145.29,146.14000000000001,13.92,13.700000000000001,13.55,13.370000000000001,13.19,13.02,12.83,12.66,12.290000000000001,N/A,N/A +2013,2,9,8,30,94200,93070,91970,63.1,0,6.6000000000000005,8.870000000000001,9.85,10.63,11.26,11.78,12.25,12.67,13.450000000000001,144.74,145.85,146.67000000000002,147.31,147.84,148.31,148.76,149.17000000000002,149.97,13.56,13.34,13.19,13.01,12.83,12.65,12.46,12.280000000000001,11.9,N/A,N/A +2013,2,9,9,30,94150,93020,91930,70.44,0,4.67,6.59,7.42,8.09,8.66,9.16,9.6,10.01,10.76,152.34,152.87,153.19,153.37,153.53,153.66,153.82,153.98,154.34,12.76,12.56,12.41,12.24,12.07,11.9,11.72,11.56,11.21,N/A,N/A +2013,2,9,10,30,93990,92860,91770,68.22,0,10.55,13.77,14.75,15.450000000000001,16,16.45,16.85,17.21,17.87,154.19,154.38,154.53,154.69,154.87,155.04,155.27,155.5,156.04,13.16,12.92,12.76,12.59,12.42,12.25,12.07,11.9,11.56,N/A,N/A +2013,2,9,11,30,93960,92830,91740,73.06,0,7.11,10.07,11.23,12.22,13.01,13.69,14.26,14.780000000000001,15.700000000000001,144.96,146.74,147.71,148.41,148.95000000000002,149.4,149.82,150.21,150.99,12.76,12.55,12.4,12.24,12.07,11.91,11.73,11.56,11.22,N/A,N/A +2013,2,9,12,30,94050,92920,91830,79.81,0,1.79,4,5.2700000000000005,6.3500000000000005,7.23,7.98,8.59,9.15,10.08,143.67000000000002,148.91,152.48,153.46,153.99,154.26,154.4,154.53,154.78,12.370000000000001,12.32,12.18,12.02,11.85,11.69,11.51,11.34,10.98,N/A,N/A +2013,2,9,13,30,94050,92920,91830,79.45,0,4.26,5.86,6.59,7.17,7.67,8.11,8.52,8.9,9.6,147.09,148.57,149.62,150.43,151.14000000000001,151.76,152.36,152.92000000000002,153.93,12.47,12.21,12.05,11.86,11.67,11.49,11.3,11.120000000000001,10.74,N/A,N/A +2013,2,9,14,30,94000,92870,91780,79.95,0,5.08,7.11,7.98,8.49,9,9.49,9.950000000000001,10.370000000000001,11.05,140.81,142.77,144.28,145.69,146.9,147.98,148.87,149.65,150.84,12.540000000000001,12.27,12.1,11.91,11.72,11.55,11.36,11.18,10.81,N/A,N/A +2013,2,9,15,30,93970,92850,91750,76.03,0,5.82,7.390000000000001,7.99,8.370000000000001,8.64,8.84,9.01,9.15,9.42,143.91,144.77,145.35,145.88,146.38,146.84,147.34,147.83,148.92000000000002,12.93,12.48,12.27,12.05,11.85,11.65,11.450000000000001,11.26,10.88,N/A,N/A +2013,2,9,16,30,93920,92800,91710,70.07000000000001,0,4.87,6.2,6.7,7.01,7.22,7.390000000000001,7.5,7.6000000000000005,7.74,151.53,152.31,152.81,153.20000000000002,153.52,153.8,154.06,154.3,154.79,14.47,13.950000000000001,13.72,13.49,13.280000000000001,13.08,12.870000000000001,12.68,12.290000000000001,N/A,N/A +2013,2,9,17,30,93830,92710,91630,64.75,0,5.79,7.3,7.79,8.08,8.27,8.41,8.51,8.59,8.700000000000001,159.19,159.72,160.02,160.25,160.43,160.59,160.74,160.88,161.14000000000001,16.39,15.76,15.51,15.27,15.05,14.85,14.63,14.43,14.030000000000001,N/A,N/A +2013,2,9,18,30,93730,92620,91550,60.24,0,6.41,8.040000000000001,8.55,8.85,9.05,9.18,9.27,9.34,9.43,160.16,160.55,160.77,160.92000000000002,161.03,161.12,161.21,161.27,161.4,18.080000000000002,17.42,17.16,16.91,16.68,16.47,16.25,16.05,15.64,N/A,N/A +2013,2,9,19,30,93650,92550,91480,58.22,0,6.9,8.61,9.15,9.450000000000001,9.64,9.77,9.85,9.91,9.98,159.67000000000002,159.91,160.08,160.19,160.28,160.36,160.44,160.51,160.65,18.990000000000002,18.3,18.03,17.78,17.55,17.34,17.12,16.91,16.51,N/A,N/A +2013,2,9,20,30,93560,92460,91400,55.31,0,6.83,8.48,9.06,9.370000000000001,9.58,9.71,9.8,9.870000000000001,9.93,162.3,162.15,162.04,161.93,161.83,161.74,161.65,161.58,161.42000000000002,19.96,19.330000000000002,19.080000000000002,18.830000000000002,18.6,18.39,18.17,17.97,17.56,N/A,N/A +2013,2,9,21,30,93490,92400,91340,55.14,0,6.65,8.2,8.82,9.14,9.36,9.49,9.59,9.66,9.72,161.11,161.27,161.4,161.46,161.5,161.53,161.55,161.57,161.6,20.490000000000002,19.93,19.69,19.43,19.22,19,18.79,18.59,18.19,N/A,N/A +2013,2,9,22,30,93410,92310,91250,58.71,0,6.3100000000000005,7.96,8.48,8.77,8.98,9.11,9.200000000000001,9.27,9.35,156.12,156.16,156.19,156.21,156.22,156.24,156.27,156.29,156.35,20.07,19.63,19.42,19.2,19,18.8,18.59,18.400000000000002,18,N/A,N/A +2013,2,9,23,30,93390,92300,91240,66.11,0,6.3,8.06,8.84,9.34,9.73,10.03,10.28,10.48,10.84,151.63,151.72,151.89000000000001,151.96,152.01,152.06,152.1,152.15,152.27,19.04,18.8,18.64,18.43,18.25,18.05,17.86,17.67,17.28,N/A,N/A +2013,2,10,0,30,93430,92330,91260,79.31,0,2.74,1.3,0.49,1.62,3.63,4.78,5.8500000000000005,6.79,8.27,347.91,232.20000000000002,193.78,181.85,163.43,160.68,158.46,156.85,154.81,17.400000000000002,17.56,17.39,17.080000000000002,16.81,16.55,16.3,16.07,15.64,N/A,N/A +2013,2,10,1,30,93350,92250,91190,91.29,0,2.08,4.73,6.1000000000000005,7.32,8.36,9.25,10.02,10.72,11.950000000000001,156.72,158.43,159.5,159.86,160.08,160.18,160.31,160.46,161.11,16.23,16.59,16.51,16.42,16.330000000000002,16.240000000000002,16.14,16.06,15.89,N/A,N/A +2013,2,10,2,30,93420,92320,91250,93.29,0,0.6900000000000001,1.74,2.47,3.42,4.3500000000000005,5.24,6.09,6.92,8.43,109.97,148.37,175.08,179.52,182.97,185.48,186.15,186.28,185.15,15.85,16.37,16.46,16.5,16.51,16.490000000000002,16.45,16.41,16.29,N/A,N/A +2013,2,10,3,30,93410,92320,91250,83.62,0,5.5600000000000005,7.97,8.88,9.700000000000001,10.41,11.05,11.66,12.22,13.26,185.64000000000001,184.61,183.96,183.47,183,182.56,181.99,181.44,180.49,17.56,17.48,17.39,17.28,17.18,17.080000000000002,16.990000000000002,16.92,16.87,N/A,N/A +2013,2,10,4,30,93430,92330,91270,82.28,0,9.620000000000001,12.6,13.52,14.200000000000001,14.75,15.22,15.59,15.9,16.23,176.92000000000002,177.53,177.92000000000002,178.37,178.91,179.47,180.29,181.14000000000001,184.09,17.77,17.66,17.580000000000002,17.490000000000002,17.43,17.37,17.36,17.36,17.54,N/A,N/A +2013,2,10,5,30,93650,92550,91480,77.56,0,4.78,6.42,7.01,7.57,8.08,8.58,9.07,9.53,10.43,292.38,296.73,299.28000000000003,301.97,304.56,307.04,309.32,311.38,314.76,17.55,17.37,17.23,17.06,16.89,16.73,16.54,16.36,15.99,N/A,N/A +2013,2,10,6,30,93770,92660,91580,25.17,0,7.24,9.66,10.82,11.72,12.450000000000001,13.06,13.56,13.98,14.620000000000001,325.16,325.29,325.37,325.17,324.88,324.45,323.91,323.35,321.93,15.36,15.32,15.25,15.13,15.02,14.9,14.77,14.65,14.370000000000001,N/A,N/A +2013,2,10,7,30,93790,92660,91580,27.54,0,7.04,9.86,11.1,12.18,13.1,13.91,14.620000000000001,15.25,16.18,316.51,317.55,318.25,318.91,319.53000000000003,320.11,320.65000000000003,321.12,321.76,14,13.950000000000001,13.86,13.74,13.6,13.47,13.31,13.16,12.84,N/A,N/A +2013,2,10,8,30,93850,92720,91620,30.970000000000002,0,5.25,7.46,8.52,9.450000000000001,10.23,10.9,11.51,12.08,13.120000000000001,320.04,320.23,320.44,320.77,321.11,321.46,321.78000000000003,322.06,322.45,12.56,12.530000000000001,12.46,12.36,12.25,12.14,12.01,11.89,11.6,N/A,N/A +2013,2,10,9,30,93850,92720,91620,33.34,0,3.21,5.6000000000000005,6.74,7.72,8.55,9.28,9.91,10.47,11.450000000000001,310.69,314.43,316.81,318.43,319.52,320.35,320.63,320.75,320.25,11.43,11.57,11.540000000000001,11.47,11.370000000000001,11.25,11.1,10.950000000000001,10.620000000000001,N/A,N/A +2013,2,10,10,30,93910,92780,91680,40.36,0,1.41,2.96,3.8200000000000003,4.42,4.8500000000000005,5.15,5.74,6.46,8.9,303.48,307.17,310.40000000000003,311.07,311.65000000000003,312.15000000000003,313.22,314.33,315.99,9.68,10.31,10.38,10.42,10.4,10.35,10.23,10.1,9.8,N/A,N/A +2013,2,10,11,30,93940,92800,91690,42.54,0,0.6900000000000001,2.8000000000000003,5.7700000000000005,8.290000000000001,10.21,11.34,11.98,12.48,13.51,333.86,333.75,333.12,328.44,324.75,322.43,320.96,319.84000000000003,318.71,8.77,9.81,10.03,10.07,10.07,10.03,9.89,9.74,9.39,N/A,N/A +2013,2,10,12,30,93940,92800,91700,33.44,0,1.6600000000000001,3.91,5.22,6.59,7.890000000000001,9.15,10.27,11.3,12.94,2,345.46,334.92,329.83,326.78000000000003,324.64,323.58,322.66,321.3,9.09,9.540000000000001,9.49,9.42,9.34,9.25,9.14,9.03,8.790000000000001,N/A,N/A +2013,2,10,13,30,93970,92830,91720,30.3,0,3.25,5.8100000000000005,7.0200000000000005,8.13,9.05,9.870000000000001,10.55,11.16,12.18,329.75,330.09000000000003,330.34000000000003,330.33,329.95,329.44,328.5,327.52,325.28000000000003,8.82,9.17,9.18,9.15,9.08,9,8.88,8.76,8.49,N/A,N/A +2013,2,10,14,30,94010,92860,91750,22.830000000000002,0,6.2,8.07,8.870000000000001,9.540000000000001,10.120000000000001,10.63,11.02,11.39,12.08,325.47,325.58,325.53000000000003,325.34000000000003,325.18,325.06,325.41,325.58,324.94,9.83,9.5,9.32,9.14,8.96,8.790000000000001,8.6,8.43,8.09,N/A,N/A +2013,2,10,15,30,94050,92910,91800,19.92,0,6.69,8.370000000000001,8.93,9.27,9.5,9.67,9.81,9.92,10.09,328.09000000000003,327.78000000000003,327.55,327.34000000000003,327.15000000000003,326.99,326.81,326.64,326.31,11.05,10.51,10.27,10.040000000000001,9.83,9.63,9.42,9.22,8.83,N/A,N/A +2013,2,10,16,30,94040,92900,91800,18.29,0,6.3100000000000005,7.84,8.39,8.700000000000001,8.91,9.07,9.200000000000001,9.3,9.450000000000001,317.93,317.88,317.86,317.8,317.74,317.68,317.61,317.55,317.41,12.17,11.52,11.26,11.02,10.790000000000001,10.59,10.370000000000001,10.17,9.77,N/A,N/A +2013,2,10,17,30,94040,92910,91810,15,0,6.11,7.59,8.15,8.47,8.68,8.84,8.950000000000001,9.05,9.17,320.13,319.87,319.68,319.53000000000003,319.38,319.26,319.14,319.03000000000003,318.81,13.65,12.950000000000001,12.66,12.4,12.16,11.94,11.72,11.52,11.11,N/A,N/A +2013,2,10,18,30,94030,92910,91810,13.32,0,5.47,6.7,7.19,7.47,7.67,7.8100000000000005,7.92,8.01,8.14,317.89,317.59000000000003,317.38,317.19,317.03000000000003,316.88,316.73,316.61,316.36,14.700000000000001,14.01,13.71,13.450000000000001,13.21,12.99,12.77,12.56,12.14,N/A,N/A +2013,2,10,19,30,94000,92880,91790,12.76,0,5.47,6.68,7.140000000000001,7.37,7.54,7.67,7.75,7.83,7.930000000000001,308.27,308.49,308.66,308.76,308.83,308.88,308.92,308.96,309.01,15.69,15,14.700000000000001,14.44,14.200000000000001,13.98,13.76,13.55,13.14,N/A,N/A +2013,2,10,20,30,93940,92820,91740,12.67,0,4.71,5.8,6.13,6.32,6.45,6.55,6.62,6.67,6.76,315.81,315.67,315.55,315.42,315.28000000000003,315.14,314.99,314.86,314.56,16.4,15.74,15.46,15.21,14.98,14.77,14.55,14.35,13.94,N/A,N/A +2013,2,10,21,30,93910,92800,91710,12.27,0,3.99,4.92,5.19,5.3500000000000005,5.45,5.53,5.58,5.63,5.69,328.38,327.44,326.85,326.35,325.89,325.5,325.08,324.7,323.97,16.79,16.19,15.94,15.71,15.48,15.280000000000001,15.06,14.85,14.450000000000001,N/A,N/A +2013,2,10,22,30,93920,92800,91720,12.42,0,3.9,4.79,5.0600000000000005,5.2,5.29,5.3500000000000005,5.39,5.42,5.44,340.38,339.31,338.63,338.05,337.53000000000003,337.06,336.59000000000003,336.16,335.31,16.78,16.28,16.05,15.83,15.620000000000001,15.42,15.21,15.01,14.61,N/A,N/A +2013,2,10,23,30,93900,92790,91700,13.98,0,2.59,3.7800000000000002,4.12,4.36,4.53,4.65,4.73,4.79,4.86,348.68,347.82,347.35,347.04,346.84000000000003,346.7,346.6,346.53000000000003,346.45,16.15,15.9,15.73,15.540000000000001,15.34,15.15,14.94,14.74,14.35,N/A,N/A +2013,2,11,0,30,93980,92860,91780,18.38,0,2.06,3.8200000000000003,4.41,4.71,4.9,5.04,5.11,5.16,5.18,340.53000000000003,339.91,339.55,339.61,339.89,340.32,340.95,341.59000000000003,343.18,14.14,15.290000000000001,15.41,15.290000000000001,15.14,14.96,14.76,14.57,14.18,N/A,N/A +2013,2,11,1,30,93990,92870,91780,18.75,0,2.85,5.12,5.66,5.62,5.5,5.3500000000000005,5.19,5.04,4.78,349.71,354.91,358.37,359.92,0.9400000000000001,1.6300000000000001,1.87,1.86,0.14,13.36,14.870000000000001,15.18,15.07,14.92,14.74,14.58,14.43,14.16,N/A,N/A +2013,2,11,2,30,94030,92900,91820,20.580000000000002,0,1.6300000000000001,3.04,3.58,4.07,4.39,4.59,4.6000000000000005,4.5600000000000005,4.3500000000000005,38.82,30.89,25.01,20.28,16.44,13.31,11.84,10.870000000000001,10.32,12,13.01,13.19,13.450000000000001,13.72,13.96,14.120000000000001,14.23,14.21,N/A,N/A +2013,2,11,3,30,94070,92940,91840,19.23,0,0.63,1.61,2.2,2.58,2.87,3.09,3.2800000000000002,3.44,3.61,55.32,37.37,24.79,22.64,22.8,24.080000000000002,26.37,28.68,33.83,11.93,12.65,12.57,12.57,12.700000000000001,12.89,13.16,13.4,13.72,N/A,N/A +2013,2,11,4,30,94070,92940,91850,19.32,0,0.48,0.93,1.1,1.27,1.46,1.6400000000000001,1.86,2.08,2.49,82.2,75.09,70.42,65.77,62.730000000000004,60.42,62.54,64.82000000000001,68.95,11.14,12.09,12.25,12.3,12.34,12.36,12.530000000000001,12.71,13.09,N/A,N/A +2013,2,11,5,30,94090,92950,91860,20.59,0,0.7000000000000001,0.11,0.12,0.63,1.29,1.92,2.5100000000000002,3.1,3.96,329.48,33.84,43.89,89.81,111.93,105.97,103.08,100.67,98.98,10.89,11.76,11.96,12.11,12.23,12.33,12.5,12.67,13.01,N/A,N/A +2013,2,11,6,30,94130,92990,91890,24.2,0,0.58,0.81,0.77,0.71,0.75,0.8300000000000001,1.21,1.6500000000000001,2.49,278.2,306.90000000000003,330.40000000000003,356.81,31.28,67.99,83.61,97.47,104.19,9.33,10.53,10.86,11.21,11.64,12.05,12.530000000000001,12.92,13.43,N/A,N/A +2013,2,11,7,30,94150,93000,91900,27.16,0,0.51,0.44,0.48,0.8200000000000001,1.04,1.21,1.3800000000000001,1.61,2.27,237.67000000000002,287.78000000000003,312.31,349.19,8.43,20.1,35.44,49.28,71.85000000000001,8.06,9.23,9.59,9.9,10.26,10.63,11.23,11.85,13.09,N/A,N/A +2013,2,11,8,30,94170,93020,91920,27.87,0,0.86,0.87,0.86,1.07,1.2,1.3,1.42,1.6300000000000001,2.4,243.17000000000002,299.86,326.29,351.85,13.93,33.55,58.870000000000005,79.41,104.23,7.7,8.950000000000001,9.1,9.01,9.39,9.88,10.700000000000001,11.42,12.51,N/A,N/A +2013,2,11,9,30,94180,93030,91920,29.400000000000002,0,0.6900000000000001,0.8,0.5700000000000001,0.34,0.65,1.52,2.14,2.81,3.98,300.02,305.86,15.97,112.09,128.6,131.41,130.48,129.84,129.9,6.5600000000000005,8.15,8.67,9.040000000000001,9.51,9.94,10.25,10.53,11.06,N/A,N/A +2013,2,11,10,30,94190,93040,91930,30.51,0,0.49,0.63,0.8200000000000001,1.49,2.19,2.92,3.6,4.28,5.49,319.63,59.85,98.23,109.2,116.48,121.95,125.59,128.9,133.46,5.86,7.88,8.49,8.72,9.14,9.58,10.13,10.61,11.370000000000001,N/A,N/A +2013,2,11,11,30,94210,93050,91950,31.55,0,0.41000000000000003,0.74,1.04,1.82,2.62,3.43,4.15,4.8500000000000005,6.09,314.15000000000003,50.75,99.77,116.01,125.48,131.19,134.58,137.63,141.91,4.99,7.19,8.14,8.86,9.43,9.89,10.290000000000001,10.620000000000001,11.11,N/A,N/A +2013,2,11,12,30,94230,93070,91960,28.01,0,1.32,1.81,1.84,2,2.44,3.02,3.7,4.39,5.75,46.61,58.2,69.97,87.46000000000001,101.94,115.95,122.61,128.47,135.72,5.91,7.32,7.8500000000000005,8.52,9.05,9.47,9.75,9.98,10.34,N/A,N/A +2013,2,11,13,30,94230,93090,91980,25.12,0,2.91,3.92,3.8000000000000003,3.81,4.04,4.34,4.89,5.44,6.57,55.15,77.31,92.74,108.60000000000001,117.94,124.62,128.23,131.27,135.28,7.97,9.74,10,9.97,9.85,9.72,9.73,9.78,9.99,N/A,N/A +2013,2,11,14,30,94260,93110,92000,21.68,0,2.38,3.52,4.19,4.79,5.29,5.73,6.12,6.49,7.21,112.79,110.77,110.04,110.94,112.76,114.84,117.45,120.01,125.45,9.51,9.68,9.81,9.9,9.91,9.89,9.84,9.8,9.8,N/A,N/A +2013,2,11,15,30,94260,93120,92010,18.44,0,2.91,3.62,3.89,4.0600000000000005,4.19,4.3,4.43,4.57,5.04,105.82000000000001,106.72,107.27,107.69,108.10000000000001,108.49000000000001,108.96000000000001,109.52,111.73,12.01,11.55,11.34,11.14,10.950000000000001,10.78,10.59,10.42,10.09,N/A,N/A +2013,2,11,16,30,94220,93090,92000,20.94,0,3.69,4.57,4.9,5.08,5.2,5.29,5.37,5.43,5.54,130.36,131.14000000000001,131.66,132.05,132.4,132.71,133.04,133.35,134.04,14.15,13.58,13.33,13.1,12.89,12.700000000000001,12.49,12.3,11.92,N/A,N/A +2013,2,11,17,30,94190,93060,91970,20.87,0,4.11,5.09,5.44,5.62,5.76,5.8500000000000005,5.92,5.98,6.07,137.36,138.28,138.88,139.33,139.73,140.09,140.45000000000002,140.78,141.46,15.8,15.17,14.9,14.66,14.43,14.23,14.01,13.82,13.42,N/A,N/A +2013,2,11,18,30,94150,93040,91950,20.96,0,4.51,5.55,5.93,6.13,6.2700000000000005,6.37,6.44,6.5,6.58,142.41,143.25,143.79,144.21,144.55,144.85,145.15,145.42000000000002,145.95000000000002,17.44,16.77,16.490000000000002,16.23,16,15.790000000000001,15.57,15.370000000000001,14.96,N/A,N/A +2013,2,11,19,30,94100,92990,91910,23.26,0,5.18,6.3500000000000005,6.79,7.0200000000000005,7.17,7.28,7.3500000000000005,7.41,7.47,158.62,158.64000000000001,158.65,158.61,158.57,158.53,158.48,158.44,158.36,18.82,18.14,17.84,17.580000000000002,17.34,17.12,16.9,16.69,16.28,N/A,N/A +2013,2,11,20,30,94000,92890,91820,23.6,0,4.95,6.140000000000001,6.5200000000000005,6.74,6.87,6.97,7.04,7.1000000000000005,7.17,153.75,154.24,154.55,154.79,154.99,155.15,155.33,155.49,155.8,19.55,18.88,18.61,18.36,18.12,17.91,17.69,17.490000000000002,17.080000000000002,N/A,N/A +2013,2,11,21,30,93920,92820,91750,22.76,0,4.65,5.75,6.11,6.3100000000000005,6.45,6.55,6.63,6.69,6.78,148.51,149.52,150.15,150.68,151.14000000000001,151.54,151.95000000000002,152.31,153,20.38,19.77,19.52,19.28,19.05,18.84,18.62,18.42,18.01,N/A,N/A +2013,2,11,22,30,93870,92770,91700,25.19,0,4.65,5.7700000000000005,6.16,6.38,6.53,6.640000000000001,6.72,6.79,6.88,154.05,154.42000000000002,154.73,154.97,155.19,155.38,155.57,155.75,156.1,20.57,20.080000000000002,19.86,19.63,19.42,19.21,19,18.8,18.400000000000002,N/A,N/A +2013,2,11,23,30,93840,92740,91680,29.51,0,4.54,6.08,6.68,7.08,7.390000000000001,7.62,7.79,7.930000000000001,8.11,145.5,145.96,146.33,146.66,146.97,147.29,147.6,147.9,148.45000000000002,20.02,19.84,19.7,19.51,19.330000000000002,19.150000000000002,18.95,18.76,18.37,N/A,N/A +2013,2,12,0,30,93830,92730,91660,43.51,0,2.7,5.08,5.92,6.73,7.5,8.23,8.91,9.53,10.4,132.93,133.05,133.42000000000002,134.21,135.03,135.88,136.66,137.38,138.57,17.330000000000002,18.240000000000002,18.35,18.37,18.330000000000002,18.25,18.11,17.97,17.62,N/A,N/A +2013,2,12,1,30,93830,92720,91640,37.49,0,5.19,7.82,8.84,9.68,10.370000000000001,10.97,11.49,11.97,12.72,149.25,149.51,149.6,149.59,149.45000000000002,149.25,148.91,148.57,147.78,16.37,16.47,16.43,16.330000000000002,16.2,16.07,15.9,15.74,15.38,N/A,N/A +2013,2,12,2,30,93870,92750,91670,46.46,0,5.23,7.65,8.83,9.78,10.58,11.290000000000001,11.92,12.5,13.46,148.07,148.57,148.92000000000002,148.76,148.45000000000002,147.99,147.43,146.87,145.70000000000002,15.09,15.18,15.15,15.07,14.99,14.89,14.77,14.65,14.38,N/A,N/A +2013,2,12,3,30,93840,92720,91630,47.9,0,5.36,7.91,8.99,9.9,10.65,11.290000000000001,11.870000000000001,12.38,13.26,149.65,150.8,151.41,151.59,151.45000000000002,151.16,150.54,149.89000000000001,148.14000000000001,14.08,14.1,14.040000000000001,13.950000000000001,13.83,13.72,13.58,13.44,13.15,N/A,N/A +2013,2,12,4,30,93850,92730,91630,56.550000000000004,0,3.2600000000000002,5.42,6.37,7.2700000000000005,8.05,8.75,9.35,9.9,10.86,115.97,124.88000000000001,130.71,134.41,136.88,138.71,139.64000000000001,140.34,140.6,12.57,12.700000000000001,12.65,12.57,12.47,12.370000000000001,12.24,12.11,11.83,N/A,N/A +2013,2,12,5,30,93880,92750,91660,60.06,0,2.25,4.09,5.43,6.23,6.95,7.6000000000000005,8.25,8.870000000000001,10.02,130.8,134.72,137.67000000000002,138.77,139.37,139.68,139.71,139.67000000000002,139.36,12.18,12.02,11.92,11.77,11.61,11.47,11.31,11.16,10.84,N/A,N/A +2013,2,12,6,30,93840,92710,91620,69.35000000000001,0,4.38,5.97,6.63,7.21,7.71,8.14,8.45,8.75,9.27,135.17000000000002,136.01,136.5,136.87,137.17000000000002,137.44,137.42000000000002,137.44,137.55,12.6,12.31,12.13,11.94,11.75,11.57,11.36,11.17,10.78,N/A,N/A +2013,2,12,7,30,93870,92740,91640,72.17,0,3.48,4.84,5.55,6.2,6.74,7.21,7.62,7.98,8.6,141.17000000000002,142.04,142.63,143.06,143.29,143.4,143.41,143.4,143.37,12.48,12.200000000000001,12.030000000000001,11.82,11.63,11.44,11.24,11.05,10.64,N/A,N/A +2013,2,12,8,30,93850,92730,91630,89.75,0,2.35,4.71,5.8500000000000005,6.8100000000000005,7.62,8.33,8.98,9.56,10.64,152.64000000000001,154.18,155.47,155.84,156.13,156.35,156.44,156.51,156.51,10.790000000000001,11.34,11.28,11.17,11.05,10.92,10.76,10.6,10.25,N/A,N/A +2013,2,12,9,30,93840,92710,91600,91.95,0,1.76,3.86,5.12,6.28,7.33,8.28,9.17,10.02,11.55,132.48,141.51,149.09,151.62,153.3,154.33,154.94,155.44,156.07,9.82,10.3,10.200000000000001,10.06,9.93,9.790000000000001,9.65,9.5,9.200000000000001,N/A,N/A +2013,2,12,10,30,93930,92790,91680,92.07000000000001,0,1.54,3.1,3.81,4.25,4.7,5.15,5.5200000000000005,5.87,6.61,342,303.03000000000003,275.18,268.18,262.1,256.56,250.17000000000002,243.96,231.03,8.93,9.5,9.4,9.16,8.91,8.67,8.41,8.18,7.76,N/A,N/A +2013,2,12,11,30,93940,92790,91690,92.82000000000001,0,1.1500000000000001,2.65,3.63,4.8500000000000005,5.84,6.65,6.47,6.28,6.05,207.82,192.21,184.46,188.96,192.29,194.84,203.61,211.09,223.07,7.24,7.96,8.1,8.28,8.43,8.55,8.85,9.08,9.38,N/A,N/A +2013,2,12,12,30,93960,92820,91710,65.75,0,1.55,2.05,2.05,2.63,3.13,3.56,3.92,4.28,5.19,165.38,200.01,224.45000000000002,248.21,262.57,268.59000000000003,273.42,277.64,283.1,8.74,10.040000000000001,10.11,10.02,9.9,9.74,9.53,9.33,8.94,N/A,N/A +2013,2,12,13,30,94000,92850,91740,74.11,0,1.71,2.1,2.02,2.82,3.69,4.65,5.68,6.74,8.48,227.68,254.08,271.36,285.18,293.88,297.55,298.11,297.96,296.91,6.93,7.9,7.9,7.91,8.09,8.38,8.66,8.88,8.99,N/A,N/A +2013,2,12,14,30,93990,92840,91740,44.76,0,1.25,2.95,4.57,5.51,6.37,7.18,7.94,8.69,10.18,276.86,290.17,299.04,297.27,295.56,293.92,292.59000000000003,291.34000000000003,289.17,8.89,8.99,9.1,9.16,9.16,9.13,9.06,8.98,8.8,N/A,N/A +2013,2,12,15,30,94040,92900,91810,31.2,0,9.67,12.27,13.17,13.77,14.21,14.55,14.82,15.05,15.42,287.08,286.94,286.75,286.6,286.48,286.38,286.3,286.22,286.11,12.84,12.34,12.11,11.89,11.67,11.47,11.25,11.06,10.65,N/A,N/A +2013,2,12,16,30,94050,92920,91820,29.05,0,9.67,12.24,13.09,13.63,14,14.290000000000001,14.51,14.69,14.97,287.74,288,288.18,288.32,288.44,288.54,288.65000000000003,288.76,288.97,13.08,12.42,12.16,11.92,11.68,11.48,11.26,11.05,10.65,N/A,N/A +2013,2,12,17,30,94050,92920,91830,23.48,0,9.33,11.61,12.38,12.84,13.16,13.4,13.58,13.74,13.97,286.72,286.92,287.02,287.08,287.13,287.17,287.2,287.24,287.31,14.35,13.63,13.34,13.09,12.85,12.64,12.41,12.21,11.8,N/A,N/A +2013,2,12,18,30,94010,92880,91780,17.39,0,10.71,13.59,14.27,14.700000000000001,14.98,15.200000000000001,15.36,15.49,15.67,288.92,289.11,289.17,289.21,289.25,289.27,289.3,289.32,289.37,14.530000000000001,13.8,13.51,13.26,13.01,12.790000000000001,12.56,12.34,11.92,N/A,N/A +2013,2,12,19,30,93910,92790,91690,17.72,0,10.4,13.74,14.33,14.74,15.030000000000001,15.24,15.42,15.56,15.76,293.11,293.15000000000003,293.14,293.12,293.11,293.09000000000003,293.06,293.04,292.99,13.870000000000001,13.41,13.11,12.86,12.63,12.39,12.18,11.96,11.540000000000001,N/A,N/A +2013,2,12,20,30,94100,92980,91880,18.46,0,8.39,10.61,11.33,11.790000000000001,12.11,12.36,12.55,12.700000000000001,12.950000000000001,300.43,300.52,300.52,300.52,300.51,300.5,300.49,300.47,300.46,14.61,13.89,13.6,13.35,13.1,12.88,12.65,12.43,12.01,N/A,N/A +2013,2,12,21,30,94120,92990,91890,20.13,0,9.01,11.26,11.98,12.39,12.66,12.870000000000001,13.01,13.120000000000001,13.280000000000001,305.45,305.42,305.39,305.34000000000003,305.29,305.25,305.22,305.18,305.11,14.44,13.780000000000001,13.52,13.280000000000001,13.040000000000001,12.83,12.61,12.4,11.99,N/A,N/A +2013,2,12,22,30,94120,92990,91890,21.95,0,7.79,9.81,10.43,10.790000000000001,11.040000000000001,11.23,11.36,11.47,11.64,303.89,304.43,304.8,305.07,305.31,305.52,305.71,305.89,306.23,14.27,13.74,13.51,13.290000000000001,13.07,12.870000000000001,12.65,12.450000000000001,12.040000000000001,N/A,N/A +2013,2,12,23,30,94160,93030,91940,23.150000000000002,0,6.5600000000000005,8.44,9.06,9.49,9.81,10.07,10.27,10.450000000000001,10.72,326.57,326.35,326.08,325.81,325.56,325.34000000000003,325.11,324.91,324.54,13.83,13.540000000000001,13.36,13.15,12.950000000000001,12.76,12.55,12.36,11.96,N/A,N/A +2013,2,13,0,30,94140,93000,91910,28.16,0,3.42,6,6.82,7.5200000000000005,8.22,8.84,9.42,9.93,10.78,305.87,311.03000000000003,313.7,315.96,317.6,318.93,319.88,320.62,321.66,12.18,12.57,12.55,12.48,12.32,12.16,11.97,11.790000000000001,11.42,N/A,N/A +2013,2,13,1,30,94240,93110,92010,33.18,0,3.24,6.12,7.0200000000000005,7.58,7.94,8.22,8.45,8.66,9.06,332.16,336.44,338.48,339.47,340,340.35,340.40000000000003,340.28000000000003,339.45,11.16,11.93,12.030000000000001,11.98,11.86,11.74,11.56,11.4,11.03,N/A,N/A +2013,2,13,2,30,94290,93150,92040,35.49,0,3.71,7.3,8.83,10.07,10.98,11.72,12.22,12.58,12.91,323.98,333.21,339.61,345.71,352.15000000000003,357.90000000000003,2.3000000000000003,5.64,9.16,10.23,10.89,10.950000000000001,10.85,10.64,10.43,10.17,9.91,9.39,N/A,N/A +2013,2,13,3,30,94440,93290,92180,57.32,0,2.86,5.41,6.86,8.18,9.35,10.41,11.3,12.09,13.200000000000001,22.19,20.76,19.18,18.1,17.16,16.32,15.56,14.86,13.55,8.35,8.94,9,8.93,8.8,8.63,8.41,8.21,7.8100000000000005,N/A,N/A +2013,2,13,4,30,94460,93300,92180,57.76,0,1.94,2.4,2.56,3.36,4.5200000000000005,5.94,7.25,8.46,10.36,274.99,300.32,319.54,347.69,1.1500000000000001,9.09,10.700000000000001,12,12.91,7.33,7.71,7.54,7.34,7.17,7.01,6.88,6.7700000000000005,6.58,N/A,N/A +2013,2,13,5,30,94490,93330,92210,64.91,0,3.52,4.38,4.53,4.97,5.66,6.43,7.2700000000000005,8.07,9.5,294,314.26,329.12,346.1,356.63,4.82,9.07,12.27,14.88,6.43,6.65,6.59,6.46,6.3500000000000005,6.24,6.1000000000000005,5.95,5.63,N/A,N/A +2013,2,13,6,30,94530,93360,92230,71.34,0,3.0700000000000003,3.92,4.01,4.26,4.98,5.79,6.54,7.26,8.61,292.79,305.90000000000003,319.27,336.8,349.5,0.31,6.59,11.31,16.54,5.37,5.8,5.7,5.43,5.2700000000000005,5.14,5.01,4.88,4.6000000000000005,N/A,N/A +2013,2,13,7,30,94590,93420,92290,79.46000000000001,0,1.7,2.7,2.89,3.08,3.6,4.21,5,5.76,7.1000000000000005,306.87,317.89,328.64,341.65000000000003,354.08,5.38,12.06,16.97,21.900000000000002,4.19,4.87,4.82,4.64,4.44,4.25,4.08,3.94,3.65,N/A,N/A +2013,2,13,8,30,94630,93460,92320,84.64,0,0.99,1.92,2.22,2.39,2.73,3.12,3.5300000000000002,3.98,4.97,286.98,293.57,316.19,356.75,9.98,15.66,18.78,21.48,25.28,3.12,3.86,3.87,3.75,3.56,3.39,3.21,3.04,2.74,N/A,N/A +2013,2,13,9,30,94630,93460,92320,85.28,0,2.2800000000000002,2.68,2.48,2.44,2.68,3.0100000000000002,3.45,3.91,4.92,271.44,302.24,321.56,339.65000000000003,348.12,353.96,358.40000000000003,2.0100000000000002,6.99,2.74,3.5100000000000002,3.5300000000000002,3.44,3.31,3.18,3.04,2.91,2.65,N/A,N/A +2013,2,13,10,30,94630,93450,92310,86.23,0,2.46,3.5500000000000003,3.6,3.66,3.66,3.67,3.8000000000000003,3.96,4.4,274.49,288.48,301.12,315.55,328.18,338.07,343.32,347.67,354.73,2.19,2.98,3.0700000000000003,3.1,3.11,3.1,2.98,2.83,2.5,N/A,N/A +2013,2,13,11,30,94650,93480,92330,86.23,0,2.21,2.97,2.84,2.73,2.69,2.68,2.75,2.87,3.19,278.01,290.26,302.03000000000003,315.43,324.47,331.65000000000003,337.96,342.7,348.93,1.74,2.47,2.58,2.69,2.69,2.66,2.57,2.45,2.14,N/A,N/A +2013,2,13,12,30,94700,93520,92380,88.85000000000001,0,1.49,2.41,2.62,2.83,2.96,3.0500000000000003,3.1,3.16,3.38,312.38,304.34000000000003,302.09000000000003,303.29,307.97,313.36,320.63,327.97,341.31,0.8300000000000001,1.77,1.99,2.17,2.31,2.41,2.49,2.5500000000000003,2.6,N/A,N/A +2013,2,13,13,30,94700,93520,92370,90.57000000000001,0,1.53,2.63,2.94,3.2,3.35,3.46,3.49,3.49,3.5,293.11,296.66,299.34000000000003,302.01,303.75,305.11,306.11,307.59000000000003,313.37,0.13,1.01,1.26,1.51,1.71,1.8800000000000001,2.0300000000000002,2.16,2.35,N/A,N/A +2013,2,13,14,30,94710,93530,92390,77.23,0,2.13,2.45,2.7600000000000002,3.2800000000000002,3.8000000000000003,4.25,4.46,4.5600000000000005,4.54,292.72,296.22,300.21,305.85,308.81,310.8,311.40000000000003,312.44,316.17,2.09,1.81,1.72,1.6600000000000001,1.73,1.84,2.02,2.21,2.59,N/A,N/A +2013,2,13,15,30,94710,93530,92400,64.66,0,2.08,2.45,2.54,2.56,2.58,2.61,2.68,2.81,3.21,288.96,293.44,296.38,298.95,301.72,304.46,308.03000000000003,311.56,316.99,4.6000000000000005,4.16,3.96,3.79,3.64,3.5,3.37,3.2600000000000002,3.15,N/A,N/A +2013,2,13,16,30,94680,93520,92390,51.15,0,2.3000000000000003,2.72,2.82,2.84,2.84,2.83,2.8000000000000003,2.7800000000000002,2.73,293.81,295,295.73,296.33,296.94,297.49,298.15000000000003,298.81,300.38,7.2700000000000005,6.76,6.5200000000000005,6.32,6.13,5.97,5.8,5.64,5.34,N/A,N/A +2013,2,13,17,30,94630,93480,92360,39.61,0,2.18,2.5500000000000003,2.64,2.66,2.66,2.66,2.64,2.62,2.58,300.27,300.23,300.17,300.06,299.92,299.79,299.61,299.43,299.05,9.85,9.31,9.05,8.83,8.620000000000001,8.44,8.24,8.06,7.71,N/A,N/A +2013,2,13,18,30,94560,93420,92310,29.900000000000002,0,1.59,1.81,1.85,1.86,1.86,1.85,1.84,1.83,1.81,297.56,296.15000000000003,295.21,294.33,293.5,292.76,291.98,291.25,289.83,11.85,11.3,11.03,10.8,10.57,10.370000000000001,10.16,9.97,9.58,N/A,N/A +2013,2,13,19,30,94520,93380,92270,24.22,0,1.1,1.27,1.31,1.33,1.35,1.36,1.37,1.3900000000000001,1.41,317.81,314.71,312.77,311.07,309.5,308.12,306.66,305.32,302.74,13.040000000000001,12.51,12.24,12,11.77,11.57,11.35,11.15,10.75,N/A,N/A +2013,2,13,20,30,94450,93320,92220,23.8,0,0.97,1.12,1.16,1.18,1.19,1.21,1.22,1.23,1.26,308.41,305.68,303.75,301.81,299.93,298.21,296.34000000000003,294.62,291.23,13.9,13.38,13.120000000000001,12.88,12.65,12.450000000000001,12.23,12.030000000000001,11.63,N/A,N/A +2013,2,13,21,30,94360,93230,92140,20.88,0,1.93,2.16,2.2,2.21,2.22,2.22,2.21,2.21,2.19,225.68,230.3,232.86,234.84,236.59,238.1,239.58,240.89000000000001,243.37,14.58,14.040000000000001,13.790000000000001,13.56,13.34,13.14,12.92,12.72,12.31,N/A,N/A +2013,2,13,22,30,94310,93180,92090,19.66,0,2.41,2.84,2.94,2.99,3.02,3.04,3.0500000000000003,3.06,3.0700000000000003,243.99,244.31,244.56,244.85,245.14000000000001,245.4,245.71,245.99,246.6,14.99,14.5,14.280000000000001,14.06,13.84,13.65,13.44,13.24,12.84,N/A,N/A +2013,2,13,23,30,94280,93150,92060,20.5,0,1.67,2.22,2.4,2.52,2.61,2.68,2.72,2.75,2.79,233.85,233.82,234.16,234.72,235.34,235.93,236.58,237.18,238.39000000000001,14.91,14.61,14.43,14.23,14.02,13.84,13.63,13.44,13.040000000000001,N/A,N/A +2013,2,14,0,30,94280,93150,92060,25.69,0,1.28,2.47,2.84,3.11,3.27,3.37,3.4,3.42,3.43,186.84,199.18,205.99,209.66,212.52,214.85,216.58,218.07,220.37,13.1,14.05,14.09,14.02,13.89,13.75,13.55,13.370000000000001,13.01,N/A,N/A +2013,2,14,1,30,94270,93140,92040,29.18,0,2.84,4.79,5.05,5.0600000000000005,4.78,4.46,4.1,3.81,3.2800000000000002,168.27,175.73,179.85,182.53,185.48,188.05,190.75,193.15,198.17000000000002,12.23,13.51,13.71,13.75,13.71,13.66,13.530000000000001,13.4,13.08,N/A,N/A +2013,2,14,2,30,94280,93140,92050,31.93,0,2.84,5.2,5.8,6.19,6.33,6.4,6.32,6.23,5.93,164.18,171.8,176.12,179.04,181.39000000000001,183.35,185.38,187.19,190.45000000000002,11.3,12.530000000000001,12.76,12.93,12.98,13,12.94,12.88,12.67,N/A,N/A +2013,2,14,3,30,94320,93180,92080,35.57,0,1.7,3.27,3.7800000000000002,4.19,4.34,4.4,4.33,4.26,4.11,143.26,158.15,166.35,171.27,174.55,177.04,179.38,181.56,185.98,9.8,10.98,11.26,11.52,11.72,11.89,11.98,12.040000000000001,12.030000000000001,N/A,N/A +2013,2,14,4,30,94340,93200,92090,38.53,0,0.9400000000000001,2.18,2.8000000000000003,3.37,3.7800000000000002,4.11,4.32,4.47,4.6000000000000005,173.12,180.57,184.39000000000001,185.88,186.27,186.3,185.89000000000001,185.43,184.36,8.9,10.120000000000001,10.41,10.67,10.870000000000001,11.03,11.14,11.23,11.290000000000001,N/A,N/A +2013,2,14,5,30,94370,93220,92110,41.62,0,0.1,0.65,1.26,1.9000000000000001,2.5100000000000002,3.13,3.68,4.21,5.13,56.95,156.11,222.5,216.87,211.95000000000002,207.34,204.04,201.08,196.53,7.83,9.040000000000001,9.290000000000001,9.46,9.61,9.74,9.870000000000001,10,10.23,N/A,N/A +2013,2,14,6,30,94390,93240,92130,40.92,0,1.26,3.02,3.85,4.51,5.05,5.51,5.88,6.19,6.68,190.31,190.67000000000002,191.44,192.71,193.62,194.34,194.6,194.73000000000002,194.56,8.09,9.43,9.68,9.89,10.03,10.13,10.18,10.200000000000001,10.21,N/A,N/A +2013,2,14,7,30,94420,93270,92150,43.61,0,1.1500000000000001,1.69,1.9100000000000001,2.36,2.88,3.42,3.96,4.48,5.44,133.98,170.14000000000001,187.26,199.84,205.97,210.09,211.14000000000001,211.48000000000002,210.01,7.24,8.44,8.61,8.76,8.870000000000001,8.96,9.03,9.1,9.18,N/A,N/A +2013,2,14,8,30,94410,93260,92150,46.12,0,2.23,2.64,2.46,2.41,2.65,2.96,3.42,3.88,4.8100000000000005,140.04,161.62,176.17000000000002,191.63,201.6,209.20000000000002,210.38,210.41,207.5,6.22,8.05,8.51,8.8,8.950000000000001,9.06,9.120000000000001,9.17,9.23,N/A,N/A +2013,2,14,9,30,94400,93240,92130,48.88,0,1.33,1.41,1.12,0.89,1.08,1.3900000000000001,1.82,2.27,3.22,165.82,166.46,178.85,196.1,210.34,223.13,221,217.71,209.31,5.08,6.75,7.26,7.71,8.02,8.26,8.4,8.51,8.67,N/A,N/A +2013,2,14,10,30,94390,93230,92110,53.21,0,0.43,0.51,0.48,0.47000000000000003,0.76,1.21,1.69,2.18,3.13,229.46,224.92000000000002,215.18,201.31,206.13,214.4,211.84,209.20000000000002,204.85,3.79,4.99,5.47,6.05,6.82,7.45,7.79,8.040000000000001,8.36,N/A,N/A +2013,2,14,11,30,94400,93230,92110,57.11,0,0.45,0.74,0.77,0.79,1.03,1.36,1.83,2.3000000000000003,3.16,210.24,239.72,246.89000000000001,243.72,231.32,218.29,213.09,209.55,206.6,2.63,3.98,4.5200000000000005,5.09,5.74,6.3100000000000005,6.82,7.23,7.82,N/A,N/A +2013,2,14,12,30,94420,93240,92120,61.56,0,0.19,0.38,0.44,0.48,0.77,1.19,1.6300000000000001,2.07,2.87,318,281.29,249.09,215.83,203.23000000000002,193.39000000000001,192.96,193.13,194.4,1.35,3.3200000000000003,3.96,4.37,4.8,5.19,5.6000000000000005,5.99,6.72,N/A,N/A +2013,2,14,13,30,94430,93260,92130,65.8,0,0.14,0.4,0.45,0.39,0.55,0.79,1.16,1.55,2.31,50.38,312.75,263.15,250.87,230.17000000000002,208.77,200.8,195.32,191.35,0.29,2.74,3.59,4.09,4.46,4.78,5.12,5.44,6.01,N/A,N/A +2013,2,14,14,30,94450,93270,92150,50.620000000000005,0,0.5700000000000001,0.7000000000000001,0.85,1.1,1.25,1.3900000000000001,1.59,1.84,2.47,28.71,67.92,89.49,109.06,126.14,141.59,156.76,169.29,188.03,2.39,2.52,3.1,3.94,4.46,4.88,5.2,5.48,5.97,N/A,N/A +2013,2,14,15,30,94460,93290,92170,39.08,0,0.29,0.42,0.49,0.55,0.64,0.77,1.07,1.35,1.7,73.75,81.17,86.26,91.34,100.18,113.11,143.71,168.76,201.41,6.2700000000000005,5.9,5.73,5.59,5.44,5.36,5.4,5.71,6.53,N/A,N/A +2013,2,14,16,30,94430,93280,92170,31.71,0,0.7000000000000001,0.87,0.92,0.9500000000000001,0.97,0.99,1.02,1.08,1.34,123.89,126.37,128.57,131,134.56,138.27,144.22,151.71,176.8,10.01,9.59,9.39,9.21,9.03,8.88,8.71,8.56,8.33,N/A,N/A +2013,2,14,17,30,94380,93250,92140,22.62,0,0.27,0.33,0.35000000000000003,0.36,0.37,0.38,0.4,0.42,0.49,141.71,147.04,151.29,156.39000000000001,162.35,168.11,175.72,182.97,197.48000000000002,13.26,12.8,12.56,12.34,12.14,11.950000000000001,11.75,11.57,11.200000000000001,N/A,N/A +2013,2,14,18,30,94330,93200,92110,17.82,0,0.7000000000000001,0.84,0.88,0.91,0.9400000000000001,0.97,0.99,1.02,1.07,191.18,189.53,188.97,188.98,189.28,189.64000000000001,190.19,190.75,192.13,15.370000000000001,14.870000000000001,14.61,14.38,14.16,13.96,13.75,13.55,13.16,N/A,N/A +2013,2,14,19,30,94270,93150,92070,12.13,0,2.27,2.8000000000000003,2.98,3.1,3.19,3.2600000000000002,3.31,3.36,3.44,215.77,218.21,219.43,220.41,221.26,222,222.71,223.34,224.52,17.44,16.86,16.59,16.35,16.12,15.9,15.68,15.48,15.07,N/A,N/A +2013,2,14,20,30,94230,93120,92030,12.55,0,3.86,4.61,4.82,4.92,4.97,5.01,5.0200000000000005,5.04,5.03,222.58,223.6,224.29,224.93,225.52,226.06,226.62,227.14000000000001,228.21,18.09,17.46,17.2,16.95,16.72,16.51,16.29,16.09,15.68,N/A,N/A +2013,2,14,21,30,94170,93050,91970,12.98,0,2.62,3.21,3.42,3.54,3.63,3.7,3.7600000000000002,3.81,3.9,192,194.01,195.41,196.66,197.81,198.85,199.89000000000001,200.84,202.69,18.56,18.03,17.78,17.55,17.330000000000002,17.13,16.91,16.72,16.32,N/A,N/A +2013,2,14,22,30,94120,93010,91930,11.96,0,2.87,3.5700000000000003,3.81,3.96,4.07,4.16,4.23,4.29,4.39,200.47,202.14000000000001,203.18,204.03,204.79,205.46,206.11,206.70000000000002,207.82,18.87,18.400000000000002,18.18,17.97,17.76,17.56,17.35,17.16,16.76,N/A,N/A +2013,2,14,23,30,94070,92960,91880,13.6,0,2.62,3.79,4.0200000000000005,4.1,4.1,4.07,4,3.93,3.7600000000000002,166.34,166.6,166.99,167.5,168.05,168.57,169.23,169.85,171.33,18.56,18.43,18.28,18.09,17.900000000000002,17.71,17.51,17.32,16.94,N/A,N/A +2013,2,15,0,30,94080,92960,91890,17.05,0,3.19,5.46,5.87,6.13,6.33,6.5,6.67,6.83,7.1000000000000005,152.55,151.44,151.39000000000001,152.29,153.43,154.59,155.76,156.79,158.3,16.3,17.66,17.81,17.76,17.61,17.44,17.23,17.03,16.62,N/A,N/A +2013,2,15,1,30,94090,92970,91890,19.21,0,4.18,7.16,8.25,9.16,9.74,10.17,10.31,10.39,10.24,157.52,161.19,163.13,164.31,165.22,165.99,166.98,167.96,170.28,15.08,15.8,16,16.15,16.19,16.19,16.080000000000002,15.97,15.67,N/A,N/A +2013,2,15,2,30,94140,93010,91920,25.63,0,2.27,4.28,5.03,5.87,6.6000000000000005,7.2700000000000005,7.8,8.25,8.77,125.76,136.63,143.4,148.70000000000002,152.48,155.53,157.83,159.9,163.3,13.23,14.4,14.58,14.74,14.85,14.950000000000001,15.01,15.05,15.06,N/A,N/A +2013,2,15,3,30,94190,93060,91970,28.32,0,2.15,3.1,3.27,3.67,4.14,4.63,5.15,5.64,6.5200000000000005,99.65,113.74000000000001,123.29,133.75,140.87,146.62,150.38,153.68,158.36,12.09,13.35,13.61,13.89,14.07,14.21,14.31,14.39,14.48,N/A,N/A +2013,2,15,4,30,94250,93120,92030,31.18,0,0.74,1.1,1.17,1.32,1.59,1.93,2.29,2.64,3.31,122.17,128.13,136.46,151.81,160.59,166.83,169.37,171.49,173.96,11.26,12.620000000000001,12.950000000000001,13.3,13.56,13.76,13.84,13.89,13.84,N/A,N/A +2013,2,15,5,30,94290,93150,92060,34.550000000000004,0,1.22,2.08,2.2600000000000002,2.38,2.5,2.61,2.7800000000000002,2.96,3.42,129.22,129.91,132.41,137.72,143.73,149.79,155.41,160.39000000000001,167.94,10.61,12.17,12.51,12.81,13,13.14,13.19,13.23,13.19,N/A,N/A +2013,2,15,6,30,94320,93180,92090,42.1,0,2.59,3.66,3.52,3.3200000000000003,3.0700000000000003,2.84,2.69,2.6,2.73,136.56,134.57,133.96,134.04,136.48,139.19,145.68,151.82,164.78,10.17,11.6,11.9,12.19,12.4,12.57,12.67,12.73,12.73,N/A,N/A +2013,2,15,7,30,94370,93230,92140,50.08,0,3.2,4.37,4.16,3.92,3.71,3.5300000000000002,3.45,3.41,3.5300000000000002,131.25,134.81,137.93,141.94,147.25,152.47,159.33,165.46,176.62,9.41,10.97,11.41,11.89,12.3,12.65,12.84,12.98,13.01,N/A,N/A +2013,2,15,8,30,94520,93370,92250,42.75,0,4.22,7.23,8.540000000000001,9.68,10.86,12.02,13.08,13.93,14.35,23.2,27.73,31.62,36.09,39.35,42.01,42.980000000000004,43.58,43.92,8.4,8.870000000000001,8.9,8.86,8.78,8.700000000000001,8.63,8.58,8.6,N/A,N/A +2013,2,15,9,30,94600,93440,92310,61.370000000000005,0,7.24,10,11.02,11.77,12.5,13.18,14.07,15.01,17.17,23.85,25.35,27.01,29.22,31.96,34.64,37.25,39.42,42.46,6.8,6.83,6.7700000000000005,6.68,6.58,6.48,6.38,6.28,6.11,N/A,N/A +2013,2,15,10,30,94680,93520,92390,67.72,0,7.44,10.39,11.540000000000001,12.46,13.280000000000001,14.030000000000001,14.83,15.64,17.400000000000002,29.04,30.14,31.220000000000002,32.59,34.4,36.21,38.1,39.78,42.43,5.91,5.86,5.76,5.65,5.5200000000000005,5.39,5.25,5.11,4.82,N/A,N/A +2013,2,15,11,30,94780,93610,92480,70.77,0,7.03,10.07,11.44,12.59,13.55,14.39,15.18,15.93,17.490000000000002,34.38,33.81,33.69,34.03,34.71,35.47,36.42,37.35,39.160000000000004,4.86,4.78,4.68,4.55,4.39,4.24,4.07,3.9,3.5500000000000003,N/A,N/A +2013,2,15,12,30,94950,93770,92630,81.8,0,3.1,2.8000000000000003,2.33,2.19,3.0300000000000002,4.53,5.91,7.28,9.58,264.01,276.47,302.34000000000003,352.61,12.74,26.43,29.21,31.55,34.11,3.6,3.86,3.8000000000000003,3.66,3.49,3.33,3.16,2.99,2.66,N/A,N/A +2013,2,15,13,30,95050,93870,92730,81.63,0,3.94,5.24,5.73,6.17,6.67,7.15,7.67,8.15,9.03,328.24,337.15000000000003,343.8,350.37,356.22,1.43,5.78,9.63,16.09,3.84,3.67,3.54,3.38,3.22,3.06,2.89,2.72,2.38,N/A,N/A +2013,2,15,14,30,95130,93950,92800,80.77,0,4.83,6.15,6.58,6.88,7.11,7.3,7.47,7.640000000000001,8,352.15000000000003,353.89,355.18,356.40000000000003,357.71,358.97,0.53,2.1,5.55,4.07,3.74,3.5500000000000003,3.36,3.15,2.96,2.7600000000000002,2.57,2.18,N/A,N/A +2013,2,15,15,30,95180,94000,92850,76.84,0,4.78,5.96,6.33,6.5600000000000005,6.7,6.8,6.87,6.93,7,9.94,10.790000000000001,11.38,11.950000000000001,12.58,13.16,13.81,14.46,15.85,4.46,3.98,3.7600000000000002,3.5500000000000003,3.33,3.14,2.94,2.74,2.35,N/A,N/A +2013,2,15,16,30,95180,94020,92880,55.71,0,5.79,7.18,7.63,7.890000000000001,8.06,8.19,8.28,8.36,8.47,30.34,30.46,30.59,30.71,30.830000000000002,30.96,31.09,31.220000000000002,31.490000000000002,7.15,6.48,6.21,5.96,5.73,5.5200000000000005,5.3100000000000005,5.1000000000000005,4.7,N/A,N/A +2013,2,15,17,30,95190,94030,92900,46.57,0,5.82,7.17,7.62,7.88,8.040000000000001,8.17,8.26,8.33,8.44,32.89,33.04,33.14,33.25,33.33,33.410000000000004,33.5,33.58,33.72,8.47,7.76,7.46,7.21,6.97,6.75,6.53,6.32,5.91,N/A,N/A +2013,2,15,18,30,95170,94010,92890,40.47,0,5.57,6.84,7.23,7.45,7.6000000000000005,7.7,7.78,7.84,7.92,32.53,32.72,32.87,32.980000000000004,33.08,33.160000000000004,33.230000000000004,33.3,33.42,9.64,8.91,8.61,8.35,8.11,7.890000000000001,7.67,7.46,7.05,N/A,N/A +2013,2,15,19,30,95160,94000,92880,38.61,0,5.05,6.16,6.5200000000000005,6.71,6.84,6.93,7,7.05,7.12,30.89,30.970000000000002,31.04,31.1,31.150000000000002,31.2,31.240000000000002,31.28,31.34,10.66,9.950000000000001,9.66,9.4,9.16,8.94,8.71,8.51,8.09,N/A,N/A +2013,2,15,20,30,95130,93980,92860,36.32,0,4.53,5.51,5.83,6,6.11,6.19,6.25,6.3,6.37,30.12,29.990000000000002,29.900000000000002,29.830000000000002,29.76,29.7,29.650000000000002,29.59,29.490000000000002,11.450000000000001,10.78,10.49,10.24,10,9.790000000000001,9.56,9.36,8.94,N/A,N/A +2013,2,15,21,30,95100,93950,92840,34.53,0,4.39,5.32,5.63,5.78,5.89,5.96,6.0200000000000005,6.05,6.11,30.22,29.94,29.740000000000002,29.59,29.47,29.36,29.25,29.14,28.96,11.97,11.35,11.08,10.83,10.6,10.39,10.17,9.97,9.56,N/A,N/A +2013,2,15,22,30,95090,93940,92820,33.8,0,4.03,4.92,5.21,5.36,5.47,5.55,5.6000000000000005,5.65,5.71,37.04,36.15,35.550000000000004,35.04,34.59,34.18,33.77,33.39,32.660000000000004,12.030000000000001,11.5,11.26,11.03,10.81,10.61,10.4,10.19,9.790000000000001,N/A,N/A +2013,2,15,23,30,95110,93960,92840,34.230000000000004,0,4.1,5.13,5.46,5.66,5.79,5.89,5.96,6.01,6.09,37.230000000000004,36.43,35.86,35.37,34.89,34.47,34.03,33.63,32.86,11.75,11.4,11.21,11.01,10.8,10.61,10.41,10.21,9.81,N/A,N/A +2013,2,16,0,30,95150,94000,92880,41.74,0,2.36,4.14,4.59,4.95,5.23,5.46,5.64,5.79,6.0200000000000005,43.13,40.84,39.49,38.58,37.85,37.230000000000004,36.6,36,34.81,10.03,10.51,10.47,10.38,10.24,10.1,9.92,9.75,9.39,N/A,N/A +2013,2,16,1,30,95230,94070,92950,44.08,0,2.38,4.36,5.05,5.71,6.3,6.83,7.29,7.68,8.23,43.43,43.14,42.77,42.17,41.49,40.800000000000004,40.26,39.82,39.45,8.76,9.39,9.43,9.44,9.4,9.35,9.24,9.13,8.83,N/A,N/A +2013,2,16,2,30,95300,94140,93010,44.1,0,2.7600000000000002,4.78,5.44,6.04,6.6000000000000005,7.13,7.58,7.97,8.55,26.09,31.66,35.6,38.95,40.92,42.28,42.69,42.94,42.89,7.8,8.36,8.4,8.39,8.370000000000001,8.34,8.27,8.19,7.95,N/A,N/A +2013,2,16,3,30,95350,94180,93050,45.68,0,2.35,4.34,4.95,5.43,6,6.55,7.1000000000000005,7.58,8.27,20.25,26.87,32.38,38.31,42.68,46.29,48.22,49.61,50.86,6.88,7.5,7.48,7.41,7.36,7.32,7.2700000000000005,7.21,7.03,N/A,N/A +2013,2,16,4,30,95430,94260,93120,46.04,0,0.65,1.56,2.18,2.84,3.56,4.33,5.1000000000000005,5.8500000000000005,7.11,299.36,342.48,13.540000000000001,28.39,37.980000000000004,45.28,48.29,50.5,51.6,5.7700000000000005,6.4,6.37,6.34,6.32,6.3100000000000005,6.3,6.28,6.22,N/A,N/A +2013,2,16,5,30,95470,94290,93150,46.43,0,0.64,1.28,1.62,2.05,2.5100000000000002,2.99,3.59,4.2,5.37,275.1,316.92,348.95,19.580000000000002,34.56,43.6,48.730000000000004,52.88,57.22,5.3100000000000005,6.0200000000000005,6.01,6,5.88,5.75,5.65,5.57,5.49,N/A,N/A +2013,2,16,6,30,95500,94330,93190,47.43,0,0.3,0.8200000000000001,1.16,1.5,1.9100000000000001,2.37,2.89,3.45,4.54,299.27,355.31,26.98,36.95,44.94,52.24,56.89,60.61,64.3,4.7,5.69,5.69,5.53,5.4,5.3,5.21,5.16,5.15,N/A,N/A +2013,2,16,7,30,95550,94360,93220,53.550000000000004,0,0.26,0.32,0.37,0.51,0.67,0.85,1.1400000000000001,1.47,2.22,240.78,272.1,298.89,340.62,11.57,38.14,51.230000000000004,61.17,69.42,3.09,4.18,4.49,4.8,4.86,4.86,4.75,4.68,4.71,N/A,N/A +2013,2,16,8,30,95560,94370,93220,53.89,0,0.77,1.7,2.04,2.15,1.96,1.73,1.42,1.09,0.52,252.68,251.44,252.32,255.47,259.98,263.66,266.05,265.21,234.52,2.31,3.42,3.68,3.87,4.09,4.26,4.2700000000000005,4.24,4.15,N/A,N/A +2013,2,16,9,30,95550,94360,93210,54.44,0,0.29,0.9500000000000001,1.35,1.62,1.76,1.87,1.96,2.07,2.2800000000000002,314.2,285.97,269.41,264.93,264.63,264.33,261.67,256.56,243.07,1.48,2.68,2.96,3.14,3.29,3.43,3.63,3.81,3.99,N/A,N/A +2013,2,16,10,30,95550,94350,93200,61.04,0,0.14,0.55,0.9,1.24,1.5,1.72,1.8800000000000001,2.05,2.48,158.06,209.14000000000001,238.4,241.8,245.34,248.81,252.26000000000002,254.12,254.34,0.18,1.51,1.87,2.09,2.25,2.42,2.64,2.87,3.25,N/A,N/A +2013,2,16,11,30,95550,94350,93200,64.23,0,0.29,0.33,0.45,0.8200000000000001,1.1500000000000001,1.46,1.72,2.0100000000000002,2.65,76.84,219.96,259.49,271.5,272.73,270.69,264.62,259.59000000000003,252.20000000000002,-0.67,1.12,1.49,1.48,1.62,1.82,2.17,2.61,3.5,N/A,N/A +2013,2,16,12,30,95570,94370,93220,68.69,0,0.38,0.55,0.5,0.43,0.73,1.21,1.7,2.19,3.0500000000000003,112.41,125.33,168.14000000000001,226.53,247.21,264.62,265.25,263.64,256.62,-1.28,0.1,0.59,0.97,1.3,1.62,2.09,2.6,3.59,N/A,N/A +2013,2,16,13,30,95560,94360,93210,73.16,0,0.54,0.5700000000000001,0.59,0.71,1.12,1.6500000000000001,2.17,2.66,3.47,47.85,92.95,133.8,190.79,211.37,227.04,232.14000000000001,235.26,237.21,-1.83,-0.34,0.28,0.8,1.3800000000000001,1.92,2.47,2.93,3.65,N/A,N/A +2013,2,16,14,30,95550,94350,93200,55.38,0,0.68,0.63,0.65,0.72,1.1400000000000001,1.68,2.17,2.62,3.39,61.59,79.64,120.03,181.20000000000002,202.44,219.72,225.75,229.52,232.89000000000001,0.42,0.38,0.6900000000000001,1.16,1.85,2.46,3.0100000000000002,3.39,3.83,N/A,N/A +2013,2,16,15,30,95520,94340,93190,42.28,0,0.8,0.84,0.79,0.74,0.78,0.96,1.82,2.64,3.7,86.77,95.85000000000001,105.01,115.31,140.61,164.85,189.79,206.75,212.07,4.38,4.0200000000000005,3.86,3.73,3.62,3.61,3.9,4.13,4.4,N/A,N/A +2013,2,16,16,30,95470,94300,93170,32.42,0,0.99,1.5,1.77,1.99,2.17,2.34,2.48,2.62,2.86,195.01,198.58,200.18,201.03,201.58,202.01,202.33,202.64000000000001,203.17000000000002,9.200000000000001,8.75,8.52,8.31,8.11,7.930000000000001,7.73,7.55,7.18,N/A,N/A +2013,2,16,17,30,95400,94250,93130,30.01,0,2.88,3.49,3.67,3.7600000000000002,3.81,3.85,3.86,3.87,3.87,208.05,208.07,208.15,208.29,208.48000000000002,208.67000000000002,208.9,209.13,209.63,11.25,10.67,10.4,10.17,9.950000000000001,9.75,9.540000000000001,9.35,8.96,N/A,N/A +2013,2,16,18,30,95320,94180,93060,25.53,0,3.27,3.96,4.15,4.25,4.3100000000000005,4.3500000000000005,4.37,4.38,4.38,205.12,205.3,205.46,205.64000000000001,205.86,206.07,206.3,206.52,206.99,13.06,12.44,12.16,11.92,11.69,11.49,11.27,11.07,10.67,N/A,N/A +2013,2,16,19,30,95260,94120,93010,21.86,0,3.44,4.15,4.36,4.47,4.54,4.58,4.61,4.62,4.64,208.31,208.45000000000002,208.57,208.74,208.93,209.11,209.33,209.53,209.96,14.46,13.83,13.55,13.3,13.07,12.86,12.64,12.44,12.030000000000001,N/A,N/A +2013,2,16,20,30,95160,94020,92920,19.19,0,3.69,4.49,4.73,4.86,4.95,5.01,5.05,5.08,5.12,211.53,211.77,211.95000000000002,212.16,212.39000000000001,212.6,212.84,213.07,213.52,15.57,14.950000000000001,14.67,14.43,14.200000000000001,13.99,13.77,13.57,13.16,N/A,N/A +2013,2,16,21,30,95060,93930,92830,17.59,0,4.0600000000000005,4.95,5.23,5.38,5.48,5.54,5.59,5.62,5.67,209.08,209.5,209.81,210.13,210.44,210.74,211.04,211.32,211.9,16.19,15.59,15.34,15.1,14.88,14.67,14.450000000000001,14.25,13.84,N/A,N/A +2013,2,16,22,30,94970,93840,92740,17.38,0,4.51,5.59,5.92,6.09,6.21,6.29,6.3500000000000005,6.390000000000001,6.45,206.58,207.12,207.53,207.93,208.31,208.65,209,209.33,209.99,16.35,15.84,15.610000000000001,15.39,15.17,14.97,14.76,14.56,14.16,N/A,N/A +2013,2,16,23,30,94920,93790,92700,18.57,0,4.36,5.76,6.23,6.54,6.7700000000000005,6.94,7.08,7.19,7.34,198.34,198.99,199.51,200.03,200.51,200.95000000000002,201.39000000000001,201.79,202.6,15.89,15.66,15.49,15.3,15.11,14.92,14.72,14.530000000000001,14.13,N/A,N/A +2013,2,17,0,30,94870,93740,92640,20.23,0,4.37,6.8100000000000005,7.67,8.3,8.75,9.1,9.32,9.5,9.72,181.01,183.66,185.66,187.5,189.08,190.45000000000002,191.6,192.61,194.26,13.94,14.49,14.61,14.65,14.6,14.51,14.36,14.200000000000001,13.84,N/A,N/A +2013,2,17,1,30,94840,93700,92600,25.44,0,5.68,8.26,9.24,10.040000000000001,10.61,11.06,11.26,11.39,11.290000000000001,175.99,177.20000000000002,178.1,179,179.85,180.61,181.48,182.37,185.03,12.64,12.92,12.99,13.040000000000001,13.06,13.07,13.01,12.94,12.74,N/A,N/A +2013,2,17,2,30,94820,93680,92580,25.740000000000002,0,4.88,7.63,8.8,9.8,10.540000000000001,11.14,11.450000000000001,11.66,11.71,175.59,176.24,176.8,177.47,178.35,179.25,180.87,182.65,187.92000000000002,11.9,12.36,12.52,12.67,12.81,12.93,13.02,13.09,13.13,N/A,N/A +2013,2,17,3,30,94800,93650,92550,27.04,0,5.37,8.290000000000001,9.56,10.66,11.47,12.120000000000001,12.370000000000001,12.48,12.1,176.74,177.04,177.28,177.53,177.85,178.18,178.93,179.87,183.46,11.5,11.950000000000001,12.11,12.27,12.43,12.56,12.68,12.780000000000001,12.9,N/A,N/A +2013,2,17,4,30,94770,93620,92520,30.11,0,4.8500000000000005,7.82,9.17,10.4,11.450000000000001,12.39,13.040000000000001,13.55,13.86,173.92000000000002,175.74,176.74,177.17000000000002,177.31,177.35,177.36,177.46,178.22,10.68,11.15,11.3,11.44,11.59,11.72,11.85,11.96,12.120000000000001,N/A,N/A +2013,2,17,5,30,94750,93600,92490,33.35,0,5.17,8.03,9.32,10.56,11.63,12.58,13.27,13.790000000000001,14.13,174.07,174.85,175.23,175.28,175.11,174.87,174.63,174.49,174.81,10,10.41,10.55,10.700000000000001,10.86,11.01,11.17,11.32,11.57,N/A,N/A +2013,2,17,6,30,94740,93590,92480,37.57,0,3.96,6.71,7.91,9.08,10.09,10.99,11.65,12.17,12.540000000000001,170.84,172.68,173.84,174.55,174.93,175.17000000000002,175.4,175.72,176.86,8.91,9.56,9.74,9.93,10.13,10.32,10.55,10.76,11.19,N/A,N/A +2013,2,17,7,30,94740,93580,92470,47.45,0,2.3000000000000003,4.44,5.34,6.3100000000000005,7.18,7.98,8.65,9.21,9.870000000000001,147.87,162.5,170.72,175.03,177.16,178.5,179.1,179.65,180.83,7.3,8.33,8.46,8.6,8.76,8.9,9.11,9.31,9.74,N/A,N/A +2013,2,17,8,30,94710,93550,92430,52.71,0,2.66,4.66,5.29,5.93,6.54,7.08,7.47,7.7700000000000005,8.09,147.68,160.6,168.24,173.73,176.48,178.24,179.16,180.02,181.83,6.6000000000000005,7.65,7.7700000000000005,7.890000000000001,8.02,8.13,8.31,8.49,8.88,N/A,N/A +2013,2,17,9,30,94660,93500,92370,58.85,0,2.58,4.24,4.67,5.19,5.59,5.91,6.1000000000000005,6.23,6.41,128.18,146.45000000000002,156.67000000000002,164.15,168.94,172.61,175.41,178.13,183.78,4.78,6.04,6.37,6.66,6.92,7.15,7.390000000000001,7.6000000000000005,8,N/A,N/A +2013,2,17,10,30,94610,93450,92320,63.96,0,2.31,4.23,4.86,5.41,5.73,5.95,6.0200000000000005,6.07,6.16,142.26,151.54,157.1,161.03,164.4,167.5,171.46,175.5,184.04,4.12,5.32,5.61,5.89,6.19,6.47,6.78,7.07,7.59,N/A,N/A +2013,2,17,11,30,94590,93430,92310,67.28,0,2.65,4.67,5.26,5.74,5.98,6.12,6.09,6.07,6.09,142.43,151.43,157,160.87,164.53,167.93,172.31,176.71,185.99,3.85,5.16,5.47,5.76,6.09,6.41,6.75,7.0600000000000005,7.62,N/A,N/A +2013,2,17,12,30,94570,93410,92280,69.79,0,2.93,5.21,5.87,6.390000000000001,6.66,6.8100000000000005,6.75,6.69,6.59,144.11,151.1,155.28,158.08,160.78,163.4,167.29,171.36,180.41,3.47,4.67,4.92,5.17,5.47,5.76,6.140000000000001,6.49,7.15,N/A,N/A +2013,2,17,13,30,94540,93370,92250,71.94,0,3.0100000000000002,5.46,6.23,6.88,7.28,7.54,7.5600000000000005,7.5,7.29,145.91,151.77,155.25,157.61,159.66,161.61,164.17000000000002,167.15,174.55,3.21,4.43,4.69,4.93,5.25,5.57,5.96,6.33,7.05,N/A,N/A +2013,2,17,14,30,94540,93370,92250,55.2,0,3.25,4.04,4.58,5.36,6.03,6.63,7.08,7.38,7.6000000000000005,141.5,146.68,150.48,154.59,157.71,160.44,163.16,165.95000000000002,172.13,4.99,4.75,4.68,4.64,4.8,5.03,5.47,5.9,6.75,N/A,N/A +2013,2,17,15,30,94520,93370,92250,42.83,0,4.1,4.99,5.2700000000000005,5.41,5.51,5.6000000000000005,5.8,6.0200000000000005,6.63,156.28,157.55,158.46,159.31,160.26,161.19,162.58,163.94,167.11,8.64,8.15,7.94,7.75,7.57,7.41,7.2700000000000005,7.17,7.16,N/A,N/A +2013,2,17,16,30,94450,93310,92200,36.17,0,5.15,6.3100000000000005,6.66,6.83,6.91,6.96,6.96,6.97,7,167.35,167.73,167.97,168.17000000000002,168.38,168.56,168.78,169.01,169.58,11.290000000000001,10.67,10.42,10.200000000000001,9.99,9.81,9.620000000000001,9.450000000000001,9.120000000000001,N/A,N/A +2013,2,17,17,30,94380,93240,92140,32.09,0,6.24,7.72,8.18,8.42,8.56,8.65,8.68,8.71,8.71,168.85,168.91,168.94,168.96,168.99,169.01,169.04,169.07,169.15,13.15,12.450000000000001,12.16,11.91,11.68,11.48,11.27,11.07,10.69,N/A,N/A +2013,2,17,18,30,94300,93170,92080,29.740000000000002,0,6.73,8.32,8.84,9.120000000000001,9.28,9.39,9.44,9.48,9.49,170.75,170.59,170.47,170.38,170.28,170.20000000000002,170.11,170.04,169.88,14.780000000000001,14.030000000000001,13.74,13.48,13.24,13.030000000000001,12.81,12.61,12.21,N/A,N/A +2013,2,17,19,30,94210,93090,92000,24.42,0,7.33,9.1,9.63,9.92,10.09,10.21,10.26,10.31,10.33,172.01,171.85,171.74,171.64000000000001,171.55,171.46,171.36,171.28,171.12,16.3,15.55,15.25,14.99,14.75,14.540000000000001,14.31,14.11,13.71,N/A,N/A +2013,2,17,20,30,94140,93020,91940,21.71,0,7.4,9.14,9.72,10.03,10.21,10.33,10.4,10.44,10.46,173.53,173.42000000000002,173.36,173.3,173.24,173.19,173.14000000000001,173.1,173.01,17.2,16.48,16.19,15.93,15.69,15.47,15.25,15.05,14.64,N/A,N/A +2013,2,17,21,30,94050,92940,91860,21.51,0,7.44,9.21,9.790000000000001,10.1,10.290000000000001,10.42,10.49,10.55,10.59,174.26,174.12,174.03,173.95000000000002,173.89000000000001,173.83,173.78,173.73,173.64000000000001,17.740000000000002,17.09,16.82,16.57,16.330000000000002,16.12,15.9,15.700000000000001,15.290000000000001,N/A,N/A +2013,2,17,22,30,93980,92870,91790,23.19,0,6.88,8.57,9.14,9.450000000000001,9.65,9.8,9.89,9.97,10.05,169.54,169.35,169.24,169.17000000000002,169.11,169.05,169,168.96,168.88,17.72,17.2,16.97,16.740000000000002,16.52,16.31,16.1,15.9,15.5,N/A,N/A +2013,2,17,23,30,93920,92810,91730,27.22,0,6.25,8.07,8.71,9.13,9.450000000000001,9.700000000000001,9.9,10.08,10.35,167.57,167.53,167.51,167.5,167.49,167.48,167.46,167.45000000000002,167.43,17.17,16.92,16.76,16.56,16.37,16.18,15.98,15.790000000000001,15.4,N/A,N/A +2013,2,18,0,30,93890,92770,91690,36.89,0,5.05,7.57,8.67,9.59,10.36,11.01,11.6,12.13,13,160.03,161.06,161.81,162.39000000000001,162.83,163.17000000000002,163.39000000000001,163.57,163.68,15.540000000000001,15.71,15.69,15.63,15.540000000000001,15.44,15.3,15.17,14.85,N/A,N/A +2013,2,18,1,30,93870,92750,91670,46.09,0,6.65,9.5,10.74,11.78,12.68,13.48,14.200000000000001,14.85,15.94,151.42000000000002,152.58,153.4,154.07,154.65,155.18,155.72,156.24,157.37,14.77,14.86,14.84,14.790000000000001,14.74,14.67,14.59,14.51,14.3,N/A,N/A +2013,2,18,2,30,93840,92720,91630,58.04,0,7.13,10.05,11.31,12.370000000000001,13.26,14.05,14.8,15.48,16.72,150.37,151.54,152.35,152.97,153.52,154.02,154.55,155.08,156.23,13.89,13.950000000000001,13.92,13.86,13.8,13.74,13.68,13.620000000000001,13.47,N/A,N/A +2013,2,18,3,30,93780,92660,91580,60.53,0,8.67,11.93,13.22,14.31,15.25,16.080000000000002,16.88,17.62,19.02,152.09,153.45000000000002,154.35,155.1,155.79,156.42000000000002,157.08,157.70000000000002,159.04,13.73,13.75,13.71,13.65,13.59,13.540000000000001,13.48,13.43,13.31,N/A,N/A +2013,2,18,4,30,93740,92620,91540,62.54,0,9.68,13.15,14.49,15.64,16.63,17.5,18.36,19.16,20.64,155.89000000000001,157.02,157.78,158.48,159.15,159.76,160.44,161.09,162.45000000000002,13.59,13.6,13.57,13.530000000000001,13.49,13.450000000000001,13.41,13.38,13.290000000000001,N/A,N/A +2013,2,18,5,30,93710,92590,91500,62.57,0,9.56,12.96,14.25,15.32,16.25,17.07,17.84,18.56,19.96,157.69,158.78,159.52,160.15,160.73,161.27,161.85,162.41,163.61,13.65,13.66,13.61,13.55,13.48,13.42,13.36,13.3,13.18,N/A,N/A +2013,2,18,6,30,93770,92640,91550,76.36,0,4.15,6.5200000000000005,7.6000000000000005,8.620000000000001,9.55,10.44,11.3,12.120000000000001,13.74,124.65,132.13,137.43,141.24,144.35,147.01,149.20000000000002,151.19,154.53,11.3,11.540000000000001,11.56,11.540000000000001,11.51,11.47,11.41,11.35,11.24,N/A,N/A +2013,2,18,7,30,93800,92660,91570,89.47,0,3.8000000000000003,6.05,7.13,8.1,8.99,9.81,10.63,11.41,12.98,125.74000000000001,132.99,138.65,142.58,145.71,148.32,150.42000000000002,152.3,155.27,10.58,10.8,10.81,10.77,10.71,10.65,10.57,10.5,10.33,N/A,N/A +2013,2,18,8,30,93800,92660,91570,90.81,0,3.67,5.33,6.18,6.99,7.76,8.49,9.27,10.03,11.55,147.73,149.49,150.95000000000002,152.63,154.23,155.75,157.16,158.44,160.53,11.33,11.1,10.96,10.8,10.65,10.51,10.370000000000001,10.25,10.02,N/A,N/A +2013,2,18,9,30,93850,92720,91630,92.57000000000001,0,2.95,4.4,5.21,5.96,6.63,7.24,7.91,8.53,9.52,180.93,179.93,179.26,178.76,178.29,177.86,177.37,176.92000000000002,176.25,11.46,11.22,11.07,10.9,10.73,10.57,10.42,10.290000000000001,10.08,N/A,N/A +2013,2,18,10,30,93850,92720,91620,94.33,0,4.05,5.75,6.48,6.92,7.33,7.73,8.02,8.26,8.47,180.35,179.8,179.45000000000002,179.26,179.07,178.87,178.81,178.8,179.04,11.31,11.040000000000001,10.870000000000001,10.68,10.49,10.33,10.15,9.99,9.71,N/A,N/A +2013,2,18,11,30,93870,92740,91640,96.05,0,3.04,4.49,5.04,5.48,5.7700000000000005,5.98,6.1000000000000005,6.0200000000000005,5.2,183.23,183.32,183.4,183.54,183.86,184.22,184.67000000000002,185.67000000000002,190.21,10.68,10.5,10.34,10.15,9.96,9.8,9.64,9.49,9.17,N/A,N/A +2013,2,18,12,30,93920,92780,91680,96.3,0,3.2800000000000002,5.03,5.48,5.74,5.62,5.37,4.71,4.2700000000000005,3.89,184.49,185.03,185.74,186.94,190.22,193.9,204.23000000000002,212.03,223.45000000000002,9.75,9.97,9.9,9.77,9.77,9.81,9.93,9.97,9.73,N/A,N/A +2013,2,18,13,30,93920,92790,91690,85.67,0,3.62,5.48,5.41,4.97,4.46,4.08,4.29,4.65,6.08,192.94,207.99,222.16,237.83,255.84,270.04,273.25,276.81,285.03000000000003,10.25,11.31,11.53,11.56,11.34,11.09,10.93,10.85,11.01,N/A,N/A +2013,2,18,14,30,93940,92800,91710,60.52,0,2.19,2.72,3.13,3.77,4.33,4.84,5.3100000000000005,5.8,7.01,221.13,221.46,225.91,234.68,242.72,250.14000000000001,256.79,262.69,271.83,11.71,11.34,11.200000000000001,11.1,11.39,11.72,12.11,12.450000000000001,13.02,N/A,N/A +2013,2,18,15,30,94030,92910,91830,57.57,0,0.92,1.06,1.37,3.67,6.0200000000000005,7.12,8.03,8.84,10.07,49.09,16.01,353.25,323.05,298.41,296.2,294.67,293.43,292.14,14.06,13.91,14.17,15.48,16.14,16.35,16.35,16.28,16.05,N/A,N/A +2013,2,18,16,30,94040,92940,91860,18.28,0,6.63,8.06,8.63,8.93,9.15,9.31,9.43,9.540000000000001,9.71,294.34000000000003,294.27,294.24,294.26,294.29,294.35,294.42,294.49,294.68,18.92,18.31,18.05,17.81,17.59,17.38,17.16,16.97,16.57,N/A,N/A +2013,2,18,17,30,94030,92920,91850,15.51,0,7.09,8.76,9.32,9.63,9.85,10.02,10.14,10.24,10.39,306.03000000000003,306.31,306.40000000000003,306.45,306.46,306.47,306.46,306.46,306.41,19.57,18.87,18.6,18.34,18.1,17.88,17.66,17.45,17.04,N/A,N/A +2013,2,18,18,30,94050,92950,91870,12.84,0,7.46,9.18,9.74,10.040000000000001,10.26,10.42,10.53,10.64,10.78,307.96,308.2,308.34000000000003,308.41,308.46,308.49,308.52,308.54,308.57,20,19.26,18.98,18.72,18.47,18.25,18.03,17.82,17.400000000000002,N/A,N/A +2013,2,18,19,30,94070,92960,91890,11.68,0,6.76,8.41,8.91,9.200000000000001,9.41,9.56,9.67,9.77,9.91,318.09000000000003,318.2,318.26,318.3,318.34000000000003,318.37,318.39,318.42,318.46,20.31,19.580000000000002,19.3,19.04,18.8,18.580000000000002,18.36,18.150000000000002,17.73,N/A,N/A +2013,2,18,20,30,94100,93000,91920,10.82,0,6.37,7.78,8.31,8.58,8.77,8.91,9,9.08,9.18,317.43,317.49,317.54,317.53000000000003,317.51,317.49,317.44,317.40000000000003,317.29,20.650000000000002,19.96,19.68,19.41,19.17,18.95,18.73,18.52,18.1,N/A,N/A +2013,2,18,21,30,94070,92960,91890,10.18,0,5.79,7.17,7.61,7.8500000000000005,8.03,8.15,8.25,8.33,8.44,318.84000000000003,318.67,318.48,318.29,318.12,317.96,317.8,317.66,317.38,20.77,20.14,19.89,19.64,19.41,19.2,18.98,18.78,18.36,N/A,N/A +2013,2,18,22,30,94050,92950,91880,9.69,0,5.93,7.43,7.88,8.13,8.31,8.44,8.53,8.61,8.71,317.17,317.12,317.06,316.97,316.87,316.78000000000003,316.69,316.59000000000003,316.39,20.6,20.09,19.87,19.64,19.42,19.22,19.01,18.81,18.400000000000002,N/A,N/A +2013,2,18,23,30,94110,93010,91930,10.56,0,5.22,6.97,7.6000000000000005,8.01,8.32,8.56,8.73,8.86,9.01,323.07,323.21,323.26,323.26,323.23,323.19,323.13,323.06,322.89,19.93,19.740000000000002,19.59,19.41,19.22,19.04,18.84,18.650000000000002,18.25,N/A,N/A +2013,2,19,0,30,94170,93060,91990,15.370000000000001,0,2.93,6.04,7.42,8.290000000000001,8.870000000000001,9.200000000000001,9.370000000000001,9.48,9.56,328.48,328.40000000000003,328.16,327.39,326.85,326.49,326.25,326.06,325.8,17.28,18.650000000000002,18.94,18.97,18.89,18.740000000000002,18.55,18.36,17.97,N/A,N/A +2013,2,19,1,30,94210,93100,92020,13.15,0,3.94,6.71,7.92,8.73,9.19,9.38,9.4,9.370000000000001,9.26,330.02,329.35,328.63,327.40000000000003,326.6,326.11,326.02,326.05,326.41,17.3,18.22,18.56,18.72,18.71,18.61,18.44,18.26,17.900000000000002,N/A,N/A +2013,2,19,2,30,94200,93090,92010,16.48,0,1.99,4.74,5.8100000000000005,6.55,6.9,7.12,7.16,7.17,7.08,335.05,339.36,341.39,342.31,342.43,342.32,341.6,340.92,339.48,15.870000000000001,17.68,18.14,18.39,18.44,18.43,18.31,18.19,17.88,N/A,N/A +2013,2,19,3,30,94340,93220,92140,17.12,0,1.6500000000000001,3.09,3.74,4.54,5.28,5.98,6.59,7.13,7.84,80.57000000000001,61.68,47.14,40.300000000000004,35.87,33.74,33.22,33.22,34.67,14.790000000000001,15.68,15.64,15.66,15.72,15.83,15.94,16.05,16.13,N/A,N/A +2013,2,19,4,30,94350,93230,92130,20.62,0,2.0100000000000002,4.19,5.14,6.01,6.96,7.94,9.06,10.14,11.91,31.150000000000002,36.18,40.44,45.36,49.51,53.29,55.71,57.77,59.99,13.4,14.13,14.14,14.1,14.02,13.94,13.81,13.700000000000001,13.44,N/A,N/A +2013,2,19,5,30,94420,93280,92180,30.68,0,1.1,2.94,4.07,5.15,6.19,7.19,8.15,9.08,10.83,76.09,73.74,72.15,70.75,70.25,70.12,70.39,70.7,71.44,11.98,12.46,12.370000000000001,12.25,12.13,12,11.870000000000001,11.74,11.48,N/A,N/A +2013,2,19,6,30,94460,93330,92220,40.62,0,4.04,6.46,7.55,8.55,9.450000000000001,10.26,10.98,11.64,12.700000000000001,67.27,66.17,65.62,65.38,65.39,65.49,65.8,66.13,66.94,11.65,11.700000000000001,11.620000000000001,11.51,11.39,11.28,11.17,11.06,10.9,N/A,N/A +2013,2,19,7,30,94530,93390,92280,47.65,0,1.55,3.63,4.72,5.75,6.66,7.49,8.26,8.97,10.26,82.19,75.21000000000001,71.11,70.03,69.58,69.41,69.5,69.63,70.07000000000001,10.56,10.9,10.8,10.68,10.55,10.43,10.290000000000001,10.15,9.89,N/A,N/A +2013,2,19,8,30,94540,93390,92280,52.33,0,0.7000000000000001,1.9000000000000001,2.83,3.97,5.03,6.04,6.99,7.9,9.57,11.370000000000001,36.83,53.550000000000004,56.47,59.24,61.89,63.79,65.52,68.01,9.48,10.13,10.11,9.97,9.83,9.700000000000001,9.57,9.450000000000001,9.24,N/A,N/A +2013,2,19,9,30,94580,93440,92320,52.79,0,1.57,3.2,3.99,4.76,5.55,6.34,7.1000000000000005,7.84,9.31,38.050000000000004,51.03,61.120000000000005,67.46000000000001,71.41,74.05,75.63,76.96000000000001,78.42,8.85,9.5,9.5,9.41,9.31,9.23,9.11,8.99,8.75,N/A,N/A +2013,2,19,10,30,94610,93460,92340,54.95,0,0.45,0.84,1.12,1.6400000000000001,2.13,2.61,3.21,3.89,5.5600000000000005,306.39,194.77,150.14000000000001,144.13,136.45,128.31,121.33,115.12,106.59,8.85,9.36,9.21,9.02,8.81,8.61,8.39,8.18,7.79,N/A,N/A +2013,2,19,11,30,94670,93510,92390,59.71,0,0.47000000000000003,1.01,1.37,1.86,2.34,2.81,3.31,3.83,5.0600000000000005,278.39,214.1,171.94,151.14000000000001,136.44,124.73,117.12,110.56,102.92,7.49,8.02,7.96,7.84,7.71,7.59,7.44,7.29,7,N/A,N/A +2013,2,19,12,30,94730,93570,92440,57.75,0,1.26,1.36,1.5,2.25,2.83,3.3200000000000003,4.01,4.76,6.42,214.24,183.87,162.1,126.45,111.19,104.95,103.38,102.35000000000001,102.18,7.44,7.5200000000000005,7.44,7.38,7.24,7.09,6.94,6.8,6.55,N/A,N/A +2013,2,19,13,30,94750,93590,92470,56.15,0,1.32,2.92,3.77,4.71,5.5600000000000005,6.37,7.1000000000000005,7.78,8.91,120.53,122.16,123.31,124.5,123.64,122.14,120.12,118.27,115.68,7.73,7.79,7.66,7.53,7.390000000000001,7.26,7.12,6.98,6.71,N/A,N/A +2013,2,19,14,30,94760,93600,92480,49.84,0,4.53,5.73,6.140000000000001,6.4,6.6000000000000005,6.78,6.95,7.140000000000001,7.61,117.26,117.3,117.19,116.83,116.32000000000001,115.78,115.16,114.57000000000001,113.54,8.71,8.3,8.09,7.9,7.7,7.5200000000000005,7.33,7.140000000000001,6.78,N/A,N/A +2013,2,19,15,30,94770,93620,92500,46,0,5.7700000000000005,7.16,7.6000000000000005,7.83,7.97,8.07,8.13,8.19,8.290000000000001,127.15,127.53,127.71000000000001,127.76,127.77,127.77,127.75,127.73,127.7,9.92,9.33,9.09,8.870000000000001,8.66,8.47,8.27,8.09,7.71,N/A,N/A +2013,2,19,16,30,94720,93580,92470,39.11,0,6.19,7.69,8.18,8.44,8.61,8.73,8.8,8.86,8.93,127.55,128.11,128.41,128.62,128.79,128.94,129.1,129.26,129.59,11.9,11.23,10.950000000000001,10.71,10.49,10.290000000000001,10.08,9.89,9.5,N/A,N/A +2013,2,19,17,30,94670,93530,92430,33.88,0,6.16,7.640000000000001,8.14,8.41,8.58,8.71,8.790000000000001,8.85,8.93,137.15,137.75,138.07,138.32,138.55,138.75,138.95000000000002,139.14000000000001,139.52,13.76,13.030000000000001,12.74,12.48,12.25,12.030000000000001,11.81,11.61,11.200000000000001,N/A,N/A +2013,2,19,18,30,94620,93490,92390,30.55,0,6.0200000000000005,7.43,7.95,8.22,8.4,8.540000000000001,8.63,8.71,8.82,142.91,143.25,143.47,143.62,143.73,143.83,143.91,144,144.16,15.1,14.4,14.11,13.84,13.61,13.39,13.17,12.96,12.55,N/A,N/A +2013,2,19,19,30,94580,93450,92360,28.35,0,6.07,7.55,8.08,8.36,8.56,8.700000000000001,8.81,8.89,9.01,144.22,144.69,145.02,145.25,145.46,145.64000000000001,145.83,145.99,146.31,16.19,15.5,15.21,14.96,14.72,14.5,14.280000000000001,14.08,13.66,N/A,N/A +2013,2,19,20,30,94490,93360,92270,29,0,6.0200000000000005,7.54,8.040000000000001,8.31,8.5,8.63,8.72,8.790000000000001,8.88,141.65,141.84,141.98,142.09,142.18,142.27,142.35,142.44,142.61,16.29,15.67,15.42,15.18,14.950000000000001,14.74,14.52,14.31,13.9,N/A,N/A +2013,2,19,21,30,94430,93310,92230,29.1,0,5.78,7.22,7.72,8,8.19,8.33,8.43,8.51,8.61,141.94,142.18,142.33,142.43,142.49,142.54,142.58,142.62,142.70000000000002,16.71,16.15,15.9,15.67,15.44,15.24,15.02,14.82,14.41,N/A,N/A +2013,2,19,22,30,94360,93240,92150,28.330000000000002,0,5.84,7.42,7.98,8.32,8.56,8.75,8.88,9,9.16,140.11,140.35,140.5,140.6,140.68,140.75,140.82,140.87,140.99,16.75,16.32,16.12,15.9,15.69,15.49,15.280000000000001,15.09,14.68,N/A,N/A +2013,2,19,23,30,94280,93160,92080,31.7,0,6.34,8.25,8.86,9.26,9.56,9.8,9.99,10.14,10.38,139.98,140.1,140.17000000000002,140.20000000000002,140.22,140.23,140.24,140.26,140.27,16.490000000000002,16.19,16.01,15.81,15.610000000000001,15.42,15.21,15.02,14.620000000000001,N/A,N/A +2013,2,20,0,30,94260,93140,92050,35.1,0,3.97,6.0600000000000005,6.9,7.57,8.13,8.61,9.02,9.38,10.01,140.76,140.96,141.1,141.18,141.24,141.28,141.28,141.25,141.11,15.51,15.44,15.34,15.200000000000001,15.040000000000001,14.89,14.71,14.540000000000001,14.17,N/A,N/A +2013,2,20,1,30,94270,93150,92060,37.050000000000004,0,3.21,5.2700000000000005,6.2700000000000005,7.11,7.84,8.49,9.09,9.65,10.64,137.81,138.48,138.92000000000002,138.95000000000002,138.9,138.79,138.64000000000001,138.48,138.23,14.86,14.82,14.74,14.620000000000001,14.47,14.33,14.16,13.99,13.63,N/A,N/A +2013,2,20,2,30,94290,93160,92070,39.68,0,7.17,9.53,10.38,10.98,11.47,11.88,12.23,12.540000000000001,13.06,134.4,134.83,135.1,135.33,135.54,135.72,135.93,136.11,136.44,14.38,14.120000000000001,13.950000000000001,13.76,13.57,13.39,13.19,13.01,12.620000000000001,N/A,N/A +2013,2,20,3,30,94310,93180,92080,44.02,0,7.22,9.38,10.18,10.73,11.15,11.5,11.790000000000001,12.05,12.5,141.15,140.87,140.79,140.74,140.71,140.70000000000002,140.72,140.75,140.87,13.5,13.23,13.06,12.870000000000001,12.68,12.49,12.290000000000001,12.1,11.71,N/A,N/A +2013,2,20,4,30,94220,93080,91980,51.6,1.8,5.63,7.390000000000001,8.040000000000001,8.5,8.870000000000001,9.16,9.41,9.620000000000001,9.98,130.69,130.71,130.84,130.86,130.97,131.09,131.29,131.45,131.72,12.39,12.120000000000001,11.950000000000001,11.76,11.56,11.38,11.18,10.99,10.6,N/A,N/A +2013,2,20,5,30,94150,93020,91920,51.74,0,6.3100000000000005,8.53,9.41,10.08,10.63,11.09,11.51,11.89,12.59,131.67000000000002,133.03,133.87,134.44,135.02,135.56,136.05,136.5,137.38,12.200000000000001,11.96,11.790000000000001,11.61,11.42,11.25,11.05,10.870000000000001,10.48,N/A,N/A +2013,2,20,6,30,94180,93030,91920,74.27,1.8,6.34,8.22,8.9,9.38,9.75,10.05,10.32,10.57,11.09,130.59,131.32,131.82,132.16,132.43,132.66,132.87,133.07,133.46,9.790000000000001,9.46,9.27,9.08,8.88,8.700000000000001,8.5,8.31,7.94,N/A,N/A +2013,2,20,7,30,94170,93020,91910,81.25,1.8,3.84,5.08,5.5600000000000005,5.93,6.2700000000000005,6.57,6.9,7.22,7.92,128.04,130.04,131.27,132.35,133.43,134.47,135.66,136.76,138.85,9.01,8.67,8.49,8.3,8.11,7.930000000000001,7.74,7.57,7.21,N/A,N/A +2013,2,20,8,30,94110,92970,91860,83.11,0,2.98,4.72,5.69,6.37,6.890000000000001,7.34,7.83,8.32,9.290000000000001,122.89,128.91,132.98,135.29,136.93,138.21,139.35,140.43,142.38,9.120000000000001,8.86,8.71,8.56,8.4,8.24,8.08,7.930000000000001,7.62,N/A,N/A +2013,2,20,9,30,94060,92910,91800,85.36,0,3.7,4.9,5.44,5.8100000000000005,6.15,6.44,6.79,7.140000000000001,7.96,124.10000000000001,126.5,128.2,129.32,130.46,131.53,132.53,133.46,135.43,9.01,8.700000000000001,8.52,8.33,8.14,7.96,7.78,7.61,7.28,N/A,N/A +2013,2,20,10,30,93960,92820,91710,86.08,0,4.7,6.24,6.88,7.390000000000001,7.86,8.27,8.73,9.18,10.120000000000001,125.08,127.13000000000001,128.47,129.63,130.71,131.71,132.71,133.63,135.27,8.93,8.620000000000001,8.44,8.25,8.06,7.890000000000001,7.69,7.51,7.15,N/A,N/A +2013,2,20,11,30,93930,92790,91680,88.17,1.8,5.44,7.38,8.23,8.92,9.5,10,10.450000000000001,10.88,11.8,136.57,137.39000000000001,137.95000000000002,138.41,138.79,139.12,139.5,139.92000000000002,140.95000000000002,8.76,8.51,8.35,8.18,8.01,7.86,7.69,7.53,7.25,N/A,N/A +2013,2,20,12,30,93880,92740,91630,88.16,0,5.73,8.19,9.370000000000001,10.39,11.21,11.88,12.49,13.040000000000001,14.030000000000001,139.59,140.99,142.04,142.9,143.44,143.8,144.16,144.49,145.25,8.6,8.53,8.44,8.32,8.19,8.07,7.95,7.83,7.6000000000000005,N/A,N/A +2013,2,20,13,30,93740,92610,91500,88.11,1.8,8.26,11.42,12.620000000000001,13.61,14.44,15.15,15.77,16.330000000000002,17.35,149.09,150.16,150.75,151.17000000000002,151.56,151.91,152.24,152.58,153.36,9.31,9.23,9.14,9.05,8.950000000000001,8.870000000000001,8.790000000000001,8.72,8.61,N/A,N/A +2013,2,20,14,30,93700,92570,91470,84.86,0,8.23,11.42,12.48,13.13,13.85,14.530000000000001,15.24,15.84,16.97,150.45000000000002,152.14000000000001,152.77,152.94,153.37,153.79,154.04,154.25,154.82,10.38,10.040000000000001,9.88,9.72,9.57,9.44,9.33,9.22,9.11,N/A,N/A +2013,2,20,15,30,93700,92570,91470,81.92,0,8.13,10.51,11.34,11.97,12.52,12.99,13.44,13.74,14.22,151.01,151.58,151.92000000000002,152.21,152.55,152.87,153.15,153.28,153.48,11.67,11.13,10.91,10.73,10.55,10.4,10.25,10.11,9.81,N/A,N/A +2013,2,20,16,30,93630,92510,91420,79.14,0,8.790000000000001,11.11,11.83,12.3,12.63,12.88,13.1,13.31,13.76,154.04,154.32,154.48,154.61,154.75,154.87,155.06,155.26,155.79,13.32,12.65,12.39,12.17,11.96,11.78,11.6,11.43,11.120000000000001,N/A,N/A +2013,2,20,17,30,93580,92460,91370,77.27,0,8.44,10.64,11.39,11.88,12.24,12.52,12.77,13,13.540000000000001,156.49,156.93,157.17000000000002,157.32,157.45000000000002,157.56,157.69,157.82,158.22,13.93,13.19,12.91,12.67,12.46,12.27,12.09,11.92,11.620000000000001,N/A,N/A +2013,2,20,18,30,93530,92410,91330,75.94,0,8.06,10.07,10.82,11.27,11.58,11.8,11.98,12.13,12.450000000000001,156.23,156.46,156.6,156.65,156.69,156.72,156.76,156.81,157.02,14.540000000000001,13.77,13.47,13.21,12.99,12.790000000000001,12.6,12.43,12.09,N/A,N/A +2013,2,20,19,30,93480,92360,91280,74.89,0,7.63,9.44,10.16,10.56,10.83,11.02,11.17,11.290000000000001,11.55,158.32,158.27,158.25,158.20000000000002,158.16,158.14000000000001,158.15,158.17000000000002,158.37,15.18,14.42,14.120000000000001,13.86,13.64,13.44,13.25,13.08,12.75,N/A,N/A +2013,2,20,20,30,93390,92290,91210,73.67,0,6.95,8.61,9.31,9.67,9.94,10.120000000000001,10.26,10.370000000000001,10.57,149.17000000000002,149.20000000000002,149.25,149.29,149.35,149.42000000000002,149.54,149.67000000000002,150.06,15.91,15.18,14.88,14.61,14.39,14.18,13.98,13.790000000000001,13.42,N/A,N/A +2013,2,20,21,30,93230,92130,91050,77.44,0,5.72,7.4,7.92,8.26,8.49,8.67,8.8,8.93,9.13,137.62,138.42000000000002,138.85,139.18,139.51,139.8,140.14000000000001,140.48,141.24,15.76,15.16,14.91,14.69,14.47,14.27,14.07,13.88,13.49,N/A,N/A +2013,2,20,22,30,93170,92070,90990,79.06,0,5.53,7.0200000000000005,7.640000000000001,8.040000000000001,8.34,8.57,8.76,8.94,9.290000000000001,138.75,139.88,140.64000000000001,141.23,141.77,142.26,142.79,143.28,144.45000000000002,15.97,15.41,15.17,14.94,14.73,14.540000000000001,14.34,14.16,13.8,N/A,N/A +2013,2,20,23,30,93100,92000,90930,83.52,0,5.59,7.18,7.86,8.370000000000001,8.700000000000001,8.91,9.14,9.36,9.97,144.85,144.95000000000002,145.14000000000001,145.32,145.34,145.23,145.3,145.42000000000002,146.07,15.9,15.540000000000001,15.36,15.16,14.97,14.790000000000001,14.6,14.43,14.09,N/A,N/A +2013,2,21,0,30,92980,91870,90810,86,0,5.04,6.82,7.57,8.290000000000001,8.85,9.33,9.51,9.700000000000001,10.48,138.25,139.05,139.46,139.74,140.39000000000001,141.13,141.33,141.55,142.54,15.9,15.6,15.44,15.27,15.09,14.92,14.72,14.55,14.23,N/A,N/A +2013,2,21,1,30,92950,91850,90790,90.27,0,7.55,10.27,11.34,12.13,12.74,13.23,13.700000000000001,14.120000000000001,14.91,148.59,149.5,150.09,150.41,150.66,150.86,151.14000000000001,151.43,152.14000000000001,15.790000000000001,15.71,15.610000000000001,15.48,15.35,15.22,15.09,14.97,14.72,N/A,N/A +2013,2,21,2,30,92810,91710,90650,87.7,0,11.120000000000001,14.73,15.59,16.26,16.82,17.32,17.78,18.22,19.06,156.92000000000002,157.55,157.83,158.08,158.32,158.54,158.77,158.98,159.41,16.88,16.66,16.53,16.41,16.27,16.15,16.02,15.9,15.67,N/A,N/A +2013,2,21,3,30,92850,91760,90700,88.17,1.8,10.790000000000001,14.07,14.99,15.67,16.22,16.68,17.12,17.52,18.26,165.29,165.5,165.62,165.71,165.78,165.83,165.89000000000001,165.94,166.05,17.41,17.21,17.09,16.96,16.830000000000002,16.71,16.59,16.47,16.240000000000002,N/A,N/A +2013,2,21,4,30,92850,91760,90700,88.74,0,11,14.3,15.23,15.91,16.46,16.92,17.35,17.75,18.5,167.46,167.59,167.66,167.73,167.82,167.9,168,168.1,168.33,17.580000000000002,17.39,17.27,17.150000000000002,17.02,16.9,16.78,16.66,16.44,N/A,N/A +2013,2,21,5,30,92910,91820,90760,91.73,1.8,8.77,11.72,12.72,13.51,14.16,14.72,15.24,15.72,16.64,180.64000000000001,180.12,179.8,179.57,179.39000000000001,179.25,179.14000000000001,179.04,178.92000000000002,16.94,16.89,16.8,16.69,16.580000000000002,16.47,16.35,16.240000000000002,16.03,N/A,N/A +2013,2,21,6,30,93060,91970,90900,90.19,0,3.96,6.37,7.3,7.98,8.46,8.81,9.02,9.19,9.38,208.33,210.98000000000002,212.47,214.01,215.64000000000001,217.31,219.45000000000002,221.56,226.69,16.16,16.51,16.59,16.61,16.6,16.57,16.5,16.43,16.22,N/A,N/A +2013,2,21,7,30,93110,92010,90940,88.77,0,4.17,6.17,6.8500000000000005,7.32,7.68,7.99,8.27,8.53,9.71,213.70000000000002,228,239.16,249.87,258.76,266.44,273.08,279.01,289.75,14.700000000000001,15.1,15.19,15.200000000000001,15.19,15.19,15.17,15.14,14.97,N/A,N/A +2013,2,21,8,30,93150,92040,90960,68.08,0,3.7600000000000002,4.7,4.92,5.8100000000000005,6.84,7.97,8.870000000000001,9.72,11.39,226.21,255.85,274.01,291.89,301.72,307.14,308.56,309.29,308.82,13.15,13.75,13.88,13.94,13.91,13.84,13.700000000000001,13.55,13.18,N/A,N/A +2013,2,21,9,30,93210,92090,91000,69.36,0,2.42,3.91,4.5,5.73,6.74,7.62,8.01,8.290000000000001,8.56,256.8,293.83,313.38,323.8,328.42,329.92,328.8,327.43,323.61,11.33,12.030000000000001,12.030000000000001,12.02,12,11.99,11.97,11.93,11.74,N/A,N/A +2013,2,21,10,30,93300,92170,91080,56.14,0,3.9,6.5600000000000005,7.83,8.98,9.97,10.86,11.700000000000001,12.51,14.09,303.47,306.88,309.1,309.92,310.01,309.76,309.03000000000003,308.32,307.01,10.16,10.41,10.4,10.34,10.25,10.15,10.01,9.88,9.59,N/A,N/A +2013,2,21,11,30,93490,92350,91250,61.85,0,3.14,5.48,7.03,8.35,9.55,10.65,11.65,12.58,14.25,316.65000000000003,315.89,314.92,313.65000000000003,312.49,311.40000000000003,310.47,309.64,308.31,8.55,8.96,8.98,8.91,8.82,8.72,8.59,8.47,8.18,N/A,N/A +2013,2,21,12,30,93500,92360,91260,61.03,0,2.3000000000000003,4.92,6.57,8.23,9.81,11.34,12.71,13.98,16.05,296.97,298.51,299.68,298.62,297.83,297.26,296.95,296.7,296.37,7.4,8.290000000000001,8.43,8.41,8.36,8.290000000000001,8.19,8.09,7.87,N/A,N/A +2013,2,21,13,30,93470,92330,91220,45.5,0,7.67,10.6,11.73,12.69,13.59,14.4,15.200000000000001,15.96,17.41,296.34000000000003,295.28000000000003,294.26,293.06,291.89,290.82,289.92,289.15000000000003,287.93,8.5,8.61,8.61,8.58,8.52,8.46,8.370000000000001,8.27,8.06,N/A,N/A +2013,2,21,14,30,93560,92420,91320,39.5,0,10.61,13.46,14.540000000000001,15.27,15.85,16.35,16.78,17.16,17.900000000000002,286.28000000000003,286.3,286.37,286.37,286.40000000000003,286.43,286.48,286.54,286.71,9.75,9.43,9.25,9.05,8.85,8.67,8.47,8.290000000000001,7.91,N/A,N/A +2013,2,21,15,30,93650,92510,91410,36.800000000000004,0,10.67,13.280000000000001,14.19,14.71,15.08,15.35,15.55,15.72,15.96,295.79,295.92,295.98,295.99,296,295.99,295.99,295.98,295.95,10.19,9.65,9.41,9.17,8.950000000000001,8.74,8.53,8.33,7.92,N/A,N/A +2013,2,21,16,30,93700,92570,91460,30.17,0,9.870000000000001,12.18,13.09,13.58,13.93,14.19,14.370000000000001,14.530000000000001,14.75,287.87,287.87,287.95,287.99,288.02,288.04,288.06,288.09000000000003,288.13,11.01,10.35,10.07,9.81,9.57,9.35,9.13,8.92,8.51,N/A,N/A +2013,2,21,17,30,93630,92500,91400,21.06,0,10.41,13,13.81,14.290000000000001,14.61,14.86,15.040000000000001,15.19,15.4,282.72,283.05,283.17,283.26,283.35,283.42,283.49,283.56,283.69,12.35,11.61,11.32,11.06,10.81,10.59,10.36,10.15,9.73,N/A,N/A +2013,2,21,18,30,93480,92360,91260,18.81,0,11.120000000000001,14.32,14.92,15.34,15.6,15.8,15.950000000000001,16.06,16.22,277.12,277.17,277.24,277.29,277.35,277.40000000000003,277.45,277.5,277.61,12.99,12.32,12.030000000000001,11.790000000000001,11.540000000000001,11.32,11.1,10.89,10.48,N/A,N/A +2013,2,21,19,30,93650,92530,91440,14.52,0,8.33,10.19,10.92,11.32,11.59,11.8,11.94,12.06,12.24,276.15000000000003,276.13,276.16,276.18,276.18,276.19,276.18,276.18,276.17,14.73,13.98,13.67,13.4,13.15,12.92,12.69,12.49,12.06,N/A,N/A +2013,2,21,20,30,93600,92490,91400,14.43,0,8.09,10.11,10.75,11.13,11.39,11.59,11.74,11.86,12.040000000000001,282.68,282.65000000000003,282.6,282.55,282.49,282.43,282.37,282.3,282.18,15.64,14.91,14.620000000000001,14.36,14.120000000000001,13.9,13.67,13.46,13.040000000000001,N/A,N/A +2013,2,21,21,30,93520,92410,91320,15.120000000000001,0,7.8100000000000005,10.07,10.56,10.9,11.120000000000001,11.31,11.450000000000001,11.56,11.73,288.03000000000003,287.65000000000003,287.48,287.35,287.22,287.11,287.02,286.93,286.76,15.97,15.36,15.09,14.870000000000001,14.63,14.42,14.200000000000001,13.99,13.58,N/A,N/A +2013,2,21,22,30,93710,92610,91520,13.950000000000001,0,5.17,6.26,6.95,7.36,7.66,7.88,8.05,8.2,8.43,289.72,289.55,289.39,289.2,289.03000000000003,288.87,288.72,288.58,288.31,16.55,16.09,15.85,15.6,15.38,15.17,14.96,14.75,14.35,N/A,N/A +2013,2,21,23,30,93560,92440,91360,14.01,0,6.95,8.97,9.450000000000001,9.78,10.02,10.21,10.35,10.48,10.67,280.62,280.78000000000003,280.83,280.85,280.84000000000003,280.83,280.79,280.74,280.6,16.17,15.89,15.71,15.530000000000001,15.33,15.14,14.94,14.74,14.35,N/A,N/A +2013,2,22,0,30,93750,92640,91550,20.47,0,0.9400000000000001,0.7000000000000001,0.42,0.98,1.72,2.37,2.98,3.58,4.53,96.16,24.580000000000002,351.96,330.31,308,303.26,300.31,298.49,296.77,13.69,14.870000000000001,14.91,14.85,14.790000000000001,14.72,14.63,14.540000000000001,14.280000000000001,N/A,N/A +2013,2,22,1,30,93690,92570,91480,23.6,0,0.21,0.74,1.21,1.9000000000000001,2.5300000000000002,3.14,3.64,4.1,4.84,134.38,239.23000000000002,288.87,293.26,295.79,297.69,298.85,299.74,300.26,12.52,13.57,13.77,13.950000000000001,14.09,14.200000000000001,14.24,14.25,14.13,N/A,N/A +2013,2,22,2,30,93750,92620,91540,23.900000000000002,0,0.71,1.12,1.27,1.56,1.92,2.31,2.73,3.14,3.9,321.89,322.41,320.26,314.18,311.38,309.88,309.65000000000003,309.44,309.01,12,13.77,14.17,14.4,14.370000000000001,14.27,14.15,14.05,13.8,N/A,N/A +2013,2,22,3,30,93820,92700,91610,25.82,0,1.48,1.77,1.6300000000000001,1.6500000000000001,1.84,2.13,2.46,2.7600000000000002,3.16,327.55,322.5,320.55,320.77,321.06,321.42,321.53000000000003,321.57,321.1,10.82,12.36,12.66,12.94,13.19,13.43,13.56,13.64,13.56,N/A,N/A +2013,2,22,4,30,93840,92700,91600,27.26,0,1.8,2.75,2.77,2.75,2.71,2.67,2.6,2.5500000000000003,2.58,8.88,3.5700000000000003,358.74,353.16,349.04,345.84000000000003,344.59000000000003,343.72,342.71,9.950000000000001,11.08,11.16,11.22,11.27,11.31,11.4,11.49,11.77,N/A,N/A +2013,2,22,5,30,93850,92710,91610,30.86,0,1.36,2.2600000000000002,2.5,2.7600000000000002,3.0300000000000002,3.2800000000000002,3.5300000000000002,3.77,4.19,260.03000000000003,272.22,280.73,288.37,295.06,301.1,305.76,309.90000000000003,316.2,8.16,9.33,9.56,9.8,10.09,10.38,10.71,11.01,11.56,N/A,N/A +2013,2,22,6,30,93860,92710,91610,34.04,0,0.74,1.24,1.51,1.99,2.56,3.18,3.83,4.47,5.7,251.4,284.19,301.40000000000003,313,318.06,321.12,322.27,323.15000000000003,323.54,6.9,8.35,8.77,9.11,9.36,9.57,9.82,10.09,10.72,N/A,N/A +2013,2,22,7,30,93970,92830,91720,35.300000000000004,0,1.09,1.3900000000000001,1.34,1.3900000000000001,1.58,1.85,2.25,2.67,3.61,265.12,284.27,298.28000000000003,313.58,323.74,331.89,332.57,332.14,327.49,6.67,8.02,8.33,8.53,8.700000000000001,8.85,9.06,9.27,9.71,N/A,N/A +2013,2,22,8,30,93960,92810,91700,38.08,0,0.8200000000000001,1.49,1.72,1.98,2.34,2.73,3.19,3.64,4.5200000000000005,328.62,333.67,332.57,327.55,323.35,319.81,318.57,318.16,319.78000000000003,5.7,7.11,7.46,7.69,7.9,8.08,8.33,8.61,9.290000000000001,N/A,N/A +2013,2,22,9,30,93970,92820,91710,38.63,0,1.1,2.13,2.56,2.99,3.36,3.7,4.01,4.3,4.8500000000000005,282.82,294.3,300.81,305.18,307.63,309.48,310.97,312.33,314.89,5.5600000000000005,6.7700000000000005,7.11,7.4,7.61,7.7700000000000005,7.94,8.11,8.51,N/A,N/A +2013,2,22,10,30,94010,92850,91730,39.52,0,0.64,1.02,1.29,1.81,2.31,2.7800000000000002,3.16,3.48,3.93,221.69,280.09000000000003,304.21,317.04,321.1,323.11,323.85,324.66,326.97,5.29,6.1000000000000005,6.23,6.33,6.58,6.84,7.18,7.5,8.1,N/A,N/A +2013,2,22,11,30,94100,92940,91820,40.99,0,0.99,2.34,2.84,2.89,2.86,2.83,2.95,3.09,3.45,12.36,20.16,24.94,25.27,24.68,23.79,21.990000000000002,19.38,11.69,4.72,5.64,5.8100000000000005,5.92,6.0600000000000005,6.2,6.43,6.66,7.18,N/A,N/A +2013,2,22,12,30,94160,93000,91880,44.89,0,0.5,1.7,2.59,3.2800000000000002,3.83,4.32,4.75,5.12,5.58,78.23,58.93,48.14,51.79,55.27,58.28,59.44,59.89,58.77,3.7800000000000002,4.74,5,5.2700000000000005,5.49,5.67,5.82,5.93,6.03,N/A,N/A +2013,2,22,13,30,94180,93020,91890,54.65,0,1.69,2.0300000000000002,1.96,2,2.2600000000000002,2.5300000000000002,2.82,3.08,3.45,31.21,53.44,66.44,78.82000000000001,83.28,85.32000000000001,82.85000000000001,79.15,70.29,3.46,4.43,4.6000000000000005,4.71,4.69,4.66,4.65,4.68,4.88,N/A,N/A +2013,2,22,14,30,94230,93060,91930,64.78,0,1.74,1.96,1.99,1.98,2.0300000000000002,2.07,2.09,2.21,2.67,21.75,22.63,23.47,24.55,31.6,39.83,51.2,59.78,68.08,4.29,3.94,3.77,3.61,3.54,3.56,3.9,4.2700000000000005,5.12,N/A,N/A +2013,2,22,15,30,94240,93080,91960,64.38,0,2.11,2.44,2.49,2.47,2.4,2.34,2.2600000000000002,2.16,2.04,15.83,18.27,20.11,21.95,24.34,26.71,30.25,35.39,55.660000000000004,6.53,6.08,5.87,5.7,5.53,5.39,5.24,5.12,4.97,N/A,N/A +2013,2,22,16,30,94220,93070,91960,51.17,0,1.9000000000000001,2.19,2.23,2.23,2.2,2.17,2.13,2.09,2.02,20.64,22.17,23.38,24.580000000000002,25.93,27.19,28.91,30.7,35.550000000000004,9.73,9.25,9.02,8.82,8.63,8.45,8.27,8.1,7.75,N/A,N/A +2013,2,22,17,30,94170,93030,91930,35.33,0,1.86,2.09,2.11,2.08,2.04,1.99,1.93,1.8800000000000001,1.76,21.830000000000002,21.02,20.55,20.18,19.85,19.57,19.31,19.11,18.79,12.56,12.040000000000001,11.78,11.56,11.35,11.17,10.97,10.790000000000001,10.42,N/A,N/A +2013,2,22,18,30,94130,93000,91910,25.88,0,1.62,1.78,1.77,1.72,1.67,1.62,1.57,1.51,1.4000000000000001,25.84,25.97,26.12,26.35,26.63,26.88,27.240000000000002,27.580000000000002,28.39,14.49,13.96,13.68,13.44,13.22,13.02,12.81,12.620000000000001,12.23,N/A,N/A +2013,2,22,19,30,94090,92970,91880,20.830000000000002,0,1.03,1.06,1.03,0.98,0.9400000000000001,0.9,0.85,0.8200000000000001,0.75,32.85,34.15,35.1,36.21,37.4,38.550000000000004,40.07,41.52,45.02,15.92,15.4,15.13,14.88,14.65,14.44,14.22,14.02,13.61,N/A,N/A +2013,2,22,20,30,94060,92940,91860,20.650000000000002,0,0.52,0.5700000000000001,0.5700000000000001,0.56,0.56,0.55,0.53,0.52,0.49,236.83,236.47,236.75,236.71,236.59,236.45000000000002,236.22,235.99,235.43,16.78,16.29,16.02,15.77,15.540000000000001,15.32,15.1,14.9,14.49,N/A,N/A +2013,2,22,21,30,94020,92910,91820,21.25,0,1.36,1.45,1.43,1.37,1.32,1.27,1.22,1.17,1.07,178.43,176.97,176.15,175.63,175.20000000000002,174.83,174.45000000000002,174.11,173.46,17.13,16.62,16.37,16.13,15.9,15.700000000000001,15.48,15.290000000000001,14.88,N/A,N/A +2013,2,22,22,30,93990,92870,91790,20.080000000000002,0,1.29,1.37,1.34,1.31,1.29,1.27,1.25,1.24,1.21,193.72,194.78,195.5,196.34,197.14000000000001,197.86,198.58,199.23000000000002,200.48000000000002,17.31,16.84,16.62,16.41,16.2,16.01,15.790000000000001,15.6,15.21,N/A,N/A +2013,2,22,23,30,93980,92870,91790,20.96,0,0.81,0.97,1.01,1.03,1.03,1.03,1.03,1.02,1.01,221.49,230.51,234.94,237.02,238.53,239.70000000000002,240.48000000000002,241.12,241.91,17.240000000000002,16.91,16.73,16.53,16.330000000000002,16.15,15.950000000000001,15.76,15.370000000000001,N/A,N/A +2013,2,23,0,30,94010,92900,91820,27.39,0,1.55,2.33,2.3000000000000003,2.18,2.0100000000000002,1.86,1.73,1.6300000000000001,1.42,101.86,103.91,105.47,107.01,108.95,110.85000000000001,112.58,114.16,117.97,15.65,16.53,16.54,16.44,16.3,16.17,16,15.83,15.48,N/A,N/A +2013,2,23,1,30,94050,92930,91840,30.45,0,0.45,0.5700000000000001,0.49,0.41000000000000003,0.4,0.43,0.52,0.62,0.8200000000000001,126.68,128.9,134.58,147.67000000000002,160.6,174.75,180.94,185.65,190.17000000000002,14.290000000000001,15.19,15.23,15.23,15.21,15.19,15.21,15.24,15.35,N/A,N/A +2013,2,23,2,30,94080,92960,91870,30.18,0,0.15,0.18,0.15,0.13,0.14,0.16,0.15,0.13,0.11,164.42000000000002,193.02,206.47,218.04,212.52,196.82,193.37,208.13,308.24,12.81,14.13,14.450000000000001,14.68,14.790000000000001,14.83,14.86,14.88,14.88,N/A,N/A +2013,2,23,3,30,94140,93010,91920,32.25,0,1.79,2.84,3.02,3.22,3.4,3.58,3.41,3.2,2.83,61.08,69.42,75.33,78.89,80.21000000000001,79.78,77.19,74.56,68.4,11.21,12.38,12.57,12.68,12.74,12.77,12.77,12.75,12.68,N/A,N/A +2013,2,23,4,30,94160,93020,91920,48.9,0,0.66,1.1300000000000001,1.43,2.19,3.23,4.57,5.44,6.0200000000000005,5.65,193.42000000000002,162.98,144.05,126.51,116.31,109.96000000000001,109.13,109.11,112.39,10.01,10.67,10.56,10.35,10.290000000000001,10.28,10.67,11.03,11.58,N/A,N/A +2013,2,23,5,30,94150,93010,91900,49.35,0,2.59,3.35,3.67,4.59,4.93,5.08,5.05,4.98,4.62,134.14000000000001,117.54,108.99000000000001,100.60000000000001,99.59,100.73,103.95,107.64,117.08,9.51,9.97,9.68,9.32,9.25,9.27,9.44,9.64,10.120000000000001,N/A,N/A +2013,2,23,6,30,94230,93080,91970,52.57,0,1.44,2.04,2.2800000000000002,3.0700000000000003,3.72,4.2700000000000005,4.53,4.72,4.78,118.06,95.57000000000001,85.03,82.10000000000001,84.97,90.56,96.11,101.26,110.48,8.22,8.66,8.43,8.27,8.36,8.540000000000001,8.82,9.07,9.49,N/A,N/A +2013,2,23,7,30,94250,93100,91990,57.660000000000004,0,1.1400000000000001,1.98,2.46,3.33,3.63,3.68,3.5700000000000003,3.5,3.47,37.71,76.14,94.25,98.26,101.82000000000001,104.71000000000001,107.24000000000001,109.39,113.61,6.48,7.6000000000000005,7.78,7.79,7.8100000000000005,7.84,7.87,7.890000000000001,7.94,N/A,N/A +2013,2,23,8,30,94260,93110,91990,59.22,0,1.51,1.78,1.57,1.41,1.61,1.92,2.23,2.5,2.77,22.94,55.74,78.03,100.45,109.48,115.25,118.27,121.44,129.59,5.78,6.4,6.44,6.54,6.5200000000000005,6.5,6.59,6.72,7.15,N/A,N/A +2013,2,23,9,30,94240,93080,91960,62.940000000000005,0,0.27,0.5,0.49,0.42,0.43,0.49,0.74,1.05,1.73,58.43,70.29,82.14,93.28,120.43,143.78,151.69,156.79,162.21,4.71,5.8500000000000005,6.07,6.15,6.11,6.09,6.15,6.28,6.71,N/A,N/A +2013,2,23,10,30,94300,93130,92000,67.14,0,1.77,2.67,2.35,1.79,1.3800000000000001,1.1300000000000001,1.08,1.11,1.25,33.21,29.830000000000002,25.39,20.29,7.32,354.34000000000003,331.49,311.89,273.71,3.47,4.3,4.48,4.64,4.72,4.78,4.87,5.09,5.96,N/A,N/A +2013,2,23,11,30,94300,93130,92010,71.84,0,0.36,0.55,0.52,0.45,0.75,1.27,1.82,2.35,2.99,102.18,87.38,111.75,159.6,181.97,204.43,208.4,212.34,222.91,2.58,3.69,4.12,4.5600000000000005,4.92,5.2700000000000005,5.8500000000000005,6.43,7.45,N/A,N/A +2013,2,23,12,30,94320,93150,92030,74.49,0,1.07,1.29,0.97,0.7000000000000001,0.31,0.27,0.72,1.29,2.36,48.28,57.17,66.73,74.78,152.13,184.53,231.92000000000002,266.27,283.12,2.12,3.41,3.98,4.51,5.08,5.6000000000000005,6.15,6.59,7.09,N/A,N/A +2013,2,23,13,30,94360,93190,92070,72.93,0,0.25,0.98,1.77,2.81,3.85,4.92,5.94,6.95,8.84,194.09,248.85,290.3,299.1,303.25,305.62,306.46,307.03000000000003,307.28000000000003,2.2600000000000002,3.65,4.24,4.86,5.34,5.74,6.0200000000000005,6.26,6.65,N/A,N/A +2013,2,23,14,30,94410,93250,92120,40.47,0,2.05,3.37,4.38,5.32,6.140000000000001,6.88,7.59,8.26,9.56,343.81,333.43,327.09000000000003,326.66,325.33,323.68,323.06,322.62,322.41,6.59,6.65,6.69,6.65,6.6000000000000005,6.5600000000000005,6.5,6.44,6.34,N/A,N/A +2013,2,23,15,30,94410,93270,92150,29.53,0,4.75,5.72,6.08,6.24,6.34,6.42,6.49,6.55,6.76,309.49,309.86,310.23,310.41,310.54,310.63,310.7,310.77,310.97,9.88,9.370000000000001,9.14,8.93,8.73,8.55,8.370000000000001,8.2,7.86,N/A,N/A +2013,2,23,16,30,94350,93210,92100,24.28,0,3.68,4.57,4.87,5.05,5.18,5.28,5.36,5.43,5.54,308.46,309.03000000000003,309.38,309.62,309.81,309.97,310.12,310.26,310.51,11.6,11,10.75,10.52,10.3,10.1,9.89,9.69,9.3,N/A,N/A +2013,2,23,17,30,94280,93140,92040,19.21,0,4.8,5.96,6.29,6.48,6.61,6.71,6.78,6.84,6.92,303.41,303.7,303.82,303.89,303.93,303.96,303.98,304.01,304.03000000000003,13.19,12.52,12.24,12,11.77,11.56,11.35,11.14,10.74,N/A,N/A +2013,2,23,18,30,94240,93110,92010,17.06,0,4.2,5.14,5.43,5.59,5.69,5.7700000000000005,5.83,5.88,5.95,303.39,303.31,303.22,303.08,302.94,302.8,302.64,302.5,302.19,14.4,13.73,13.450000000000001,13.200000000000001,12.97,12.76,12.540000000000001,12.33,11.93,N/A,N/A +2013,2,23,19,30,94200,93070,91980,15.5,0,3.46,4.17,4.41,4.54,4.63,4.69,4.74,4.78,4.8500000000000005,304.03000000000003,302.93,302.17,301.49,300.87,300.3,299.73,299.19,298.15000000000003,15.6,14.98,14.700000000000001,14.44,14.21,14,13.780000000000001,13.58,13.17,N/A,N/A +2013,2,23,20,30,94080,92960,91880,13.82,0,3.3000000000000003,4.0200000000000005,4.25,4.38,4.47,4.54,4.6000000000000005,4.65,4.73,289.78000000000003,288.94,288.42,287.94,287.49,287.09000000000003,286.67,286.28000000000003,285.52,16.76,16.14,15.870000000000001,15.63,15.4,15.19,14.97,14.77,14.36,N/A,N/A +2013,2,23,21,30,94000,92890,91810,11.96,0,3.0700000000000003,3.75,3.99,4.14,4.24,4.32,4.39,4.45,4.55,280.53000000000003,280.39,280.28000000000003,280.17,280.06,279.96,279.86,279.76,279.58,17.71,17.14,16.89,16.65,16.42,16.22,16,15.8,15.39,N/A,N/A +2013,2,23,22,30,93910,92800,91720,8.99,0,3.5500000000000003,4.4,4.67,4.83,4.95,5.03,5.1000000000000005,5.15,5.24,285.92,285.71,285.55,285.36,285.15000000000003,284.97,284.76,284.56,284.15000000000003,18.31,17.81,17.580000000000002,17.36,17.14,16.94,16.73,16.53,16.13,N/A,N/A +2013,2,23,23,30,93860,92750,91670,11.4,0,2.41,3.3200000000000003,3.6,3.77,3.89,3.97,4.0200000000000005,4.0600000000000005,4.1,257.55,259.77,261.13,262.17,263.02,263.73,264.34000000000003,264.88,265.76,18.03,17.76,17.59,17.39,17.19,17,16.79,16.6,16.2,N/A,N/A +2013,2,24,0,30,93820,92710,91630,15.870000000000001,0,0.19,0.62,0.91,1.18,1.36,1.5,1.6,1.69,1.8800000000000001,149.09,219.64000000000001,259.9,264.97,266.05,265.49,262.62,259.57,251.75,15.870000000000001,17.32,17.46,17.39,17.25,17.1,16.92,16.76,16.4,N/A,N/A +2013,2,24,1,30,93820,92710,91630,17.5,0,2.44,4.28,4.76,5.2,5.48,5.66,5.73,5.78,5.7700000000000005,160.71,164.84,167.77,170.20000000000002,172,173.41,174.47,175.35,176.56,15.13,16.78,17,16.990000000000002,16.91,16.8,16.67,16.54,16.25,N/A,N/A +2013,2,24,2,30,93790,92670,91590,20.080000000000002,0,3.74,6,6.51,6.91,7.2,7.43,7.58,7.7,7.7700000000000005,138.94,141.89000000000001,144.63,148.02,150.83,153.23,155.01,156.5,158.64000000000001,13.98,15.26,15.610000000000001,15.89,16.09,16.25,16.32,16.36,16.28,N/A,N/A +2013,2,24,3,30,93770,92640,91560,24.36,0,3.7600000000000002,6.62,7.57,8.370000000000001,9.040000000000001,9.63,10.06,10.41,10.74,155.07,157.69,159.17000000000002,160.15,160.91,161.55,162.06,162.5,163.08,13.1,14.38,14.69,14.94,15.14,15.290000000000001,15.4,15.49,15.56,N/A,N/A +2013,2,24,4,30,93750,92630,91540,29.84,0,3.24,5.95,6.8500000000000005,7.68,8.46,9.18,9.8,10.35,11.19,150.73,153.13,154.88,156.41,157.87,159.26,160.42000000000002,161.49,163.45000000000002,11.64,13.13,13.44,13.75,14,14.22,14.42,14.59,14.870000000000001,N/A,N/A +2013,2,24,5,30,93710,92580,91500,31.470000000000002,0,2.87,5.67,6.78,7.84,8.82,9.74,10.56,11.290000000000001,12.3,155.6,157.62,159.48,161.71,163.54,165.15,166.15,166.99,168.12,11.11,12.72,13.1,13.46,13.780000000000001,14.07,14.35,14.59,14.98,N/A,N/A +2013,2,24,6,30,93700,92560,91470,33.93,0,3.12,5.34,5.84,6.22,6.9,7.68,8.72,9.75,11.69,119.84,125.57000000000001,131.25,138.5,146.3,153.92000000000002,158.91,162.95000000000002,167.11,9.51,10.76,10.92,11,11.15,11.31,11.57,11.83,12.370000000000001,N/A,N/A +2013,2,24,7,30,93690,92560,91460,36.22,0,4.21,7.17,8.32,9.43,10.44,11.370000000000001,12.23,13.030000000000001,14.450000000000001,141.59,149.5,154.1,157.46,159.78,161.64000000000001,162.84,163.84,165.1,10.27,11.15,11.4,11.620000000000001,11.83,12,12.19,12.36,12.71,N/A,N/A +2013,2,24,8,30,93670,92530,91440,47.15,0,3.23,5.98,6.93,7.82,8.700000000000001,9.540000000000001,10.52,11.48,13.450000000000001,135.32,142.52,147.36,151.33,154.73,157.78,160.28,162.45000000000002,165.48,8.77,9.89,10.03,10.17,10.33,10.49,10.700000000000001,10.92,11.41,N/A,N/A +2013,2,24,9,30,93620,92480,91390,44.160000000000004,0,4.65,7.29,8.34,9.41,10.51,11.59,12.77,13.88,15.91,138.15,145.22,149.95000000000002,154.03,157.3,160.16,162.21,163.93,166.07,9.14,9.790000000000001,9.99,10.22,10.47,10.71,10.99,11.24,11.71,N/A,N/A +2013,2,24,10,30,93550,92420,91330,43.27,0,5.96,9.13,10.57,11.97,13.26,14.450000000000001,15.57,16.580000000000002,18.26,147.16,152.95000000000002,156.68,159.52,161.66,163.44,164.71,165.79,167.21,10.09,10.63,10.83,11.03,11.22,11.38,11.57,11.74,12.040000000000001,N/A,N/A +2013,2,24,11,30,93560,92420,91330,49.01,0,4.46,7.22,8.44,9.700000000000001,10.9,12.02,13.17,14.25,16.23,129.03,138.1,144.05,148.43,151.73,154.48,156.62,158.53,161.51,8.64,9.290000000000001,9.48,9.65,9.81,9.950000000000001,10.120000000000001,10.27,10.58,N/A,N/A +2013,2,24,12,30,93510,92370,91280,49.84,0,5.04,8.44,9.97,11.4,12.64,13.75,14.8,15.76,17.46,145.49,151.54,154.88,157.07,158.64000000000001,159.95000000000002,161.11,162.19,164.21,9.32,9.81,9.94,10.06,10.18,10.28,10.42,10.55,10.84,N/A,N/A +2013,2,24,13,30,93510,92370,91280,52.370000000000005,0,5.12,8.44,9.98,11.35,12.5,13.530000000000001,14.44,15.280000000000001,16.78,146.94,151.63,154.36,156.09,157.39000000000001,158.5,159.55,160.58,162.73,9.040000000000001,9.38,9.46,9.52,9.58,9.65,9.74,9.83,10.07,N/A,N/A +2013,2,24,14,30,93520,92390,91300,49.45,0,4.3500000000000005,6.69,8.120000000000001,9.5,10.75,11.89,12.82,13.68,15.27,149.06,154.94,158.49,160.44,161.79,162.87,163.56,164.20000000000002,165.39000000000001,11.040000000000001,10.74,10.61,10.49,10.4,10.33,10.28,10.25,10.26,N/A,N/A +2013,2,24,15,30,93540,92420,91320,50.410000000000004,0,5.5,7.03,7.68,8.14,8.5,8.790000000000001,9.09,9.4,10.15,158.85,160.08,160.88,161.45000000000002,161.95000000000002,162.39000000000001,162.88,163.37,164.54,12.46,11.91,11.67,11.450000000000001,11.24,11.06,10.870000000000001,10.700000000000001,10.370000000000001,N/A,N/A +2013,2,24,16,30,93500,92380,91290,48.67,0,5.28,6.61,7.11,7.4,7.61,7.76,7.87,7.97,8.15,160.32,161.1,161.57,161.94,162.27,162.56,162.87,163.16,163.78,14.14,13.49,13.23,12.98,12.76,12.56,12.36,12.17,11.78,N/A,N/A +2013,2,24,17,30,93440,92330,91250,45.44,0,5.3500000000000005,6.61,7.07,7.32,7.49,7.61,7.68,7.74,7.82,169.5,169.78,169.96,170.1,170.22,170.33,170.44,170.53,170.74,16.18,15.48,15.19,14.93,14.71,14.49,14.280000000000001,14.09,13.69,N/A,N/A +2013,2,24,18,30,93380,92280,91200,40.050000000000004,0,5.76,6.98,7.42,7.62,7.75,7.82,7.86,7.890000000000001,7.890000000000001,172.59,172.45000000000002,172.36,172.29,172.24,172.19,172.16,172.13,172.11,17.900000000000002,17.18,16.88,16.62,16.38,16.17,15.950000000000001,15.76,15.36,N/A,N/A +2013,2,24,19,30,93260,92160,91100,33.910000000000004,0,5.84,7.23,7.61,7.79,7.9,7.97,7.99,8.01,7.99,176.08,176.37,176.56,176.72,176.89000000000001,177.04,177.22,177.39000000000001,177.76,19.400000000000002,18.66,18.37,18.12,17.89,17.67,17.46,17.26,16.86,N/A,N/A +2013,2,24,20,30,93210,92120,91060,32.730000000000004,0,6.140000000000001,7.53,7.97,8.16,8.28,8.34,8.370000000000001,8.38,8.370000000000001,172.21,172.38,172.49,172.58,172.67000000000002,172.74,172.84,172.92000000000002,173.14000000000001,20.29,19.580000000000002,19.29,19.03,18.8,18.59,18.37,18.18,17.78,N/A,N/A +2013,2,24,21,30,93100,92010,90950,31.490000000000002,0,7.07,8.75,9.28,9.540000000000001,9.71,9.81,9.88,9.92,9.96,175.8,175.85,175.89000000000001,175.91,175.93,175.95000000000002,175.98,176.02,176.11,21.1,20.44,20.18,19.93,19.7,19.5,19.28,19.080000000000002,18.68,N/A,N/A +2013,2,24,22,30,93030,91940,90890,34.44,0,6.7,8.25,8.83,9.13,9.34,9.47,9.56,9.64,9.72,164.70000000000002,164.81,164.92000000000002,165.06,165.18,165.32,165.45000000000002,165.59,165.89000000000001,21.55,21.03,20.8,20.56,20.35,20.14,19.93,19.73,19.330000000000002,N/A,N/A +2013,2,24,23,30,92960,91880,90820,37.11,0,5.72,7.33,7.86,8.21,8.47,8.66,8.82,8.96,9.16,157.11,157.20000000000002,157.36,157.49,157.61,157.72,157.85,157.97,158.20000000000002,21.21,20.93,20.77,20.57,20.38,20.19,19.990000000000002,19.8,19.41,N/A,N/A +2013,2,25,0,30,92920,91830,90770,47.37,0,4.54,6.97,7.92,8.56,9.06,9.47,9.83,10.15,10.75,131.24,132.04,132.92000000000002,134.35,135.9,137.54,139.09,140.51,142.87,18.86,19.2,19.25,19.2,19.1,18.97,18.81,18.650000000000002,18.28,N/A,N/A +2013,2,25,1,30,92880,91790,90730,51.18,0,5.03,7.78,8.94,10.01,11,11.93,12.73,13.44,14.370000000000001,141.49,141.91,142.19,142.37,142.48,142.55,142.75,143.01,144.35,17.66,18.04,18.16,18.23,18.240000000000002,18.22,18.1,17.990000000000002,17.63,N/A,N/A +2013,2,25,2,30,92870,91770,90710,55.97,0,7.0600000000000005,9.85,10.98,11.96,12.84,13.66,14.47,15.24,16.740000000000002,144.58,145.38,145.86,146.08,146.39000000000001,146.77,147.44,148.17000000000002,150.4,16.95,17.16,17.21,17.2,17.16,17.11,17.03,16.96,16.78,N/A,N/A +2013,2,25,3,30,92890,91790,90730,65.02,0,8.22,11.44,12.540000000000001,13.48,14.32,15.06,15.790000000000001,16.46,17.8,164.58,164.76,164.72,164.59,164.67000000000002,164.84,165.26,165.68,166.74,16.44,16.6,16.63,16.64,16.62,16.59,16.52,16.45,16.25,N/A,N/A +2013,2,25,4,30,93170,92070,91000,30.51,0,5.03,7.67,8.93,10.05,10.950000000000001,11.71,12.23,12.61,12.77,335.24,336.83,336.99,336.12,334.82,333.35,331.52,329.78000000000003,326.46,17.54,17.48,17.39,17.28,17.16,17.04,16.89,16.740000000000002,16.4,N/A,N/A +2013,2,25,5,30,93200,92080,91000,27.66,0,8.09,11.450000000000001,12.63,13.64,14.530000000000001,15.31,16.080000000000002,16.78,18.05,299.05,301.86,303.49,304.91,306.07,307.06,307.86,308.51,309.42,13.19,13.13,13.030000000000001,12.91,12.75,12.6,12.42,12.23,11.84,N/A,N/A +2013,2,25,6,30,93350,92220,91120,16.14,0,8.040000000000001,11.07,12.27,13.27,14.120000000000001,14.86,15.58,16.240000000000002,17.490000000000002,299.73,299.99,299.95,299.72,299.5,299.31,299.16,299.05,298.97,10.97,10.91,10.8,10.67,10.51,10.370000000000001,10.200000000000001,10.040000000000001,9.700000000000001,N/A,N/A +2013,2,25,7,30,93450,92320,91210,19.05,0,3.89,6.07,7,7.83,8.69,9.51,10.38,11.19,12.64,318.01,317.27,315.84000000000003,313.33,311.19,309.29,307.98,306.87,305.32,9.18,9.52,9.55,9.48,9.35,9.22,9.07,8.92,8.61,N/A,N/A +2013,2,25,8,30,93470,92330,91220,24.03,0,0.8300000000000001,1.55,2.0300000000000002,3.09,4.11,5.05,5.83,6.59,7.99,84.65,22.87,337.22,325.94,317.40000000000003,311.69,306.91,302.45,295.34000000000003,7.49,8.290000000000001,8.31,8.23,8.13,8.01,7.88,7.75,7.48,N/A,N/A +2013,2,25,9,30,93510,92370,91260,31.34,0,5.39,7.32,8.18,8.19,8.290000000000001,8.49,8.81,9.16,10.14,257.8,261.24,265.06,271.36,276.21,280.17,283.17,285.68,289.05,7.69,7.92,7.97,7.83,7.68,7.51,7.33,7.15,6.78,N/A,N/A +2013,2,25,10,30,93310,92160,91060,32.78,0,4.83,8.43,9.93,11.3,12.56,13.72,14.8,15.83,17.71,260.37,264.82,267.14,269.15,270.95,272.54,273.96,275.19,277.24,6.68,6.84,6.83,6.8,6.73,6.65,6.55,6.44,6.21,N/A,N/A +2013,2,25,11,30,93490,92340,91230,35.910000000000004,0,3.84,6.54,8.15,9.84,11.3,12.58,13.38,14,14.81,258.03000000000003,262.75,267.01,269.59000000000003,271.86,273.89,275.86,277.71,281.16,5.3100000000000005,5.86,5.99,6.01,6.01,5.99,5.92,5.84,5.58,N/A,N/A +2013,2,25,12,30,93480,92320,91200,33.38,0,2.88,5.48,6.890000000000001,8.290000000000001,9.55,10.71,11.76,12.74,14.46,252.18,260.72,267.84000000000003,271.38,273.82,275.46,276.52,277.41,278.79,4.0200000000000005,4.95,5.01,5.01,4.97,4.92,4.83,4.74,4.5,N/A,N/A +2013,2,25,13,30,93530,92380,91250,36.89,0,4.34,6.69,7.890000000000001,8.98,9.94,10.82,11.64,12.41,13.82,302.36,299.01,296.72,295.05,293.88,292.98,292.49,292.12,291.89,4.0200000000000005,4.09,4.0200000000000005,3.89,3.72,3.56,3.36,3.16,2.75,N/A,N/A +2013,2,25,14,30,93540,92380,91250,56.06,0,12.530000000000001,15.75,16.9,17.63,18.16,18.59,18.92,19.21,19.68,292.3,293.05,293.54,293.90000000000003,294.19,294.44,294.67,294.89,295.28000000000003,4.13,3.7,3.48,3.2600000000000002,3.04,2.85,2.64,2.44,2.04,N/A,N/A +2013,2,25,15,30,93560,92400,91280,47.52,0,12.88,16.62,17.64,18.330000000000002,18.81,19.2,19.5,19.73,20.1,301.3,301.84000000000003,302.05,302.2,302.3,302.39,302.46,302.52,302.62,4.84,4.23,3.97,3.74,3.5,3.29,3.0700000000000003,2.86,2.46,N/A,N/A +2013,2,25,16,30,93660,92500,91380,42.21,0,13.77,17.26,18.41,19.12,19.61,20,20.28,20.51,20.86,307.57,307.85,308.02,308.14,308.25,308.34000000000003,308.43,308.51,308.65000000000003,5.82,5.11,4.82,4.5600000000000005,4.3100000000000005,4.09,3.86,3.65,3.23,N/A,N/A +2013,2,25,17,30,93760,92610,91490,40.46,0,12.68,15.42,16.84,17.62,18.2,18.61,18.94,19.21,19.61,307.48,307.6,307.76,307.84000000000003,307.89,307.93,307.96,307.99,308.02,7.37,6.640000000000001,6.32,6.01,5.76,5.5200000000000005,5.29,5.07,4.64,N/A,N/A +2013,2,25,18,30,93690,92540,91420,34.75,0,14.51,18.29,19.46,20.19,20.69,21.080000000000002,21.37,21.61,21.96,310.90000000000003,311.18,311.33,311.45,311.55,311.65000000000003,311.72,311.8,311.93,8.290000000000001,7.49,7.18,6.91,6.65,6.42,6.18,5.96,5.53,N/A,N/A +2013,2,25,19,30,93690,92550,91440,35.37,0,13.82,17.5,18.63,19.35,19.86,20.25,20.54,20.79,21.16,314.22,314.48,314.56,314.61,314.65000000000003,314.69,314.71,314.73,314.75,9.08,8.28,7.98,7.7,7.44,7.21,6.97,6.76,6.32,N/A,N/A +2013,2,25,20,30,93750,92610,91500,32.82,0,12.530000000000001,15.88,16.9,17.56,18.02,18.38,18.66,18.89,19.25,317.44,317.72,317.86,317.94,318,318.06,318.1,318.14,318.2,9.790000000000001,9.040000000000001,8.74,8.48,8.23,8,7.7700000000000005,7.55,7.12,N/A,N/A +2013,2,25,21,30,93770,92630,91520,31.57,0,12.35,15.72,16.77,17.45,17.93,18.31,18.61,18.86,19.240000000000002,318.32,318.62,318.78000000000003,318.89,318.98,319.04,319.1,319.16,319.24,10.370000000000001,9.69,9.41,9.16,8.92,8.700000000000001,8.47,8.25,7.83,N/A,N/A +2013,2,25,22,30,93820,92680,91580,32.7,0,12.040000000000001,15.200000000000001,16.32,17.02,17.53,17.92,18.21,18.46,18.84,323.36,323.55,323.62,323.65000000000003,323.66,323.66,323.65000000000003,323.63,323.59000000000003,10.370000000000001,9.82,9.58,9.33,9.1,8.89,8.67,8.46,8.040000000000001,N/A,N/A +2013,2,25,23,30,93830,92690,91590,34.660000000000004,0,10.16,13.11,13.99,14.61,15.05,15.4,15.69,15.93,16.330000000000002,326.36,326.49,326.51,326.5,326.46,326.42,326.36,326.31,326.17,10.01,9.65,9.44,9.25,9.03,8.84,8.63,8.43,8.040000000000001,N/A,N/A +2013,2,26,0,30,93870,92720,91610,37.730000000000004,0,5.39,7.86,8.82,9.620000000000001,10.31,10.92,11.51,12.07,13.120000000000001,325.42,325.89,326.16,326.28000000000003,326.3,326.28000000000003,326.16,326.02,325.67,8.92,8.94,8.86,8.76,8.63,8.49,8.34,8.19,7.86,N/A,N/A +2013,2,26,1,30,93960,92810,91700,45.21,0,1.9000000000000001,3.89,4.87,5.84,6.76,7.62,8.41,9.15,10.450000000000001,326.97,329.01,330.07,330.11,329.96,329.74,329.39,329.08,328.67,7.51,8.1,8.09,8.02,7.930000000000001,7.84,7.7,7.57,7.26,N/A,N/A +2013,2,26,2,30,94040,92890,91770,48.54,0,1.4000000000000001,3.81,5.71,7.22,8.540000000000001,9.71,10.67,11.53,12.92,300.31,314.3,326.33,328.17,329.12,329.56,329.72,329.84000000000003,329.86,6.4,7.09,7.11,7.1000000000000005,7.08,7.04,6.96,6.87,6.63,N/A,N/A +2013,2,26,3,30,94030,92870,91750,52.160000000000004,0,2.66,5.97,7.6000000000000005,9.02,10.19,11.22,12.16,13.02,14.5,316.58,324.17,328.23,329.40000000000003,329.77,329.90000000000003,329.86,329.83,329.76,5.75,6.51,6.5600000000000005,6.57,6.54,6.49,6.42,6.34,6.15,N/A,N/A +2013,2,26,4,30,94090,92940,91820,45.96,0,4.43,7.37,8.93,10.31,11.52,12.63,13.620000000000001,14.52,15.99,327.86,329.59000000000003,330.72,331.24,331.57,331.8,331.89,331.93,331.74,5.97,6.3500000000000005,6.42,6.44,6.44,6.44,6.42,6.4,6.34,N/A,N/A +2013,2,26,5,30,94060,92910,91790,51.15,0,2.87,5.15,6.0600000000000005,7.29,8.44,9.540000000000001,10.52,11.41,12.870000000000001,275.8,299.95,315.53000000000003,324.2,329.52,333.24,335.21,336.8,338.49,4.74,5.8500000000000005,6.05,6.22,6.3100000000000005,6.37,6.36,6.32,6.18,N/A,N/A +2013,2,26,6,30,94140,92980,91850,54.65,0,3.1,4.14,4.29,4.79,5.61,6.53,7.65,8.72,10.41,270.92,286.36,295.89,304.96,310.5,314.98,318.22,321.09000000000003,325.65000000000003,4.3,5.25,5.36,5.36,5.46,5.5600000000000005,5.63,5.66,5.54,N/A,N/A +2013,2,26,7,30,94160,93000,91880,54.4,0,2.87,4.3,4.55,5,5.6000000000000005,6.23,6.8500000000000005,7.38,8.2,282.83,296.34000000000003,304.85,311.79,316.57,320.41,322.83,324.93,328.29,4.01,5.37,5.59,5.63,5.66,5.67,5.62,5.54,5.2700000000000005,N/A,N/A +2013,2,26,8,30,94120,92950,91830,56.7,0,2.66,4.19,4.78,5.75,6.58,7.3,7.73,8.040000000000001,8.4,319.14,330.09000000000003,335.26,337.89,338.72,338.99,339.11,339.37,340.39,3.21,4.41,4.7,4.99,5.17,5.28,5.29,5.25,5.04,N/A,N/A +2013,2,26,9,30,94040,92870,91750,60.300000000000004,0,2.44,5.18,6.41,7.53,8.35,9,9.4,9.66,9.84,310.52,321.19,327.28000000000003,331.17,334.29,336.98,339.24,340.90000000000003,342.32,3.0300000000000002,4.26,4.54,4.7700000000000005,4.91,4.99,4.95,4.87,4.6000000000000005,N/A,N/A +2013,2,26,10,30,94090,92920,91790,64.83,0,2.39,3.35,3.46,4.14,4.72,5.24,5.66,6.01,6.42,240.23000000000002,265.71,285.97,303.84000000000003,314.87,321.09000000000003,324.85,327.88,330.91,0.78,1.95,2.2800000000000002,2.68,3,3.2800000000000002,3.5,3.68,3.86,N/A,N/A +2013,2,26,11,30,94050,92880,91740,66.34,0,1.68,2.81,3.0100000000000002,3.09,3.11,3.15,3.36,3.63,4.32,268.57,287.38,300.39,311.37,321.48,330.07,337.54,342.53000000000003,346.28000000000003,0.28,1.35,1.68,2.04,2.33,2.57,2.75,2.89,3.11,N/A,N/A +2013,2,26,12,30,94050,92870,91730,68.05,0,0.87,1.16,1.24,1.41,1.6300000000000001,1.83,1.99,2.14,2.43,219.77,247.96,264.47,279.62,288.82,296.35,302.36,307.69,316.64,-0.48,0.18,0.21,0.25,0.38,0.52,0.72,0.91,1.29,N/A,N/A +2013,2,26,13,30,94050,92870,91740,69.35000000000001,0,0.9,1.35,1.36,1.34,1.27,1.21,1.17,1.17,1.24,310.75,290.08,279.7,274.94,269.06,263.45,256.35,251.68,248.79,-1.17,0.5,1.08,1.46,1.83,2.14,2.33,2.45,2.54,N/A,N/A +2013,2,26,14,30,94050,92870,91740,54.81,0,0.97,0.72,0.42,0.2,0.25,0.36,0.6,0.78,1.08,136.08,140.91,169.98,195.88,269.28000000000003,342.06,341.51,326.86,280.83,0.92,0.79,1.05,1.5,2.04,2.48,2.7800000000000002,3.0300000000000002,3.48,N/A,N/A +2013,2,26,15,30,94050,92880,91760,41.99,0,0.46,0.52,0.54,0.5700000000000001,0.61,0.67,0.97,1.41,2.62,240.20000000000002,236.38,234.32,232.33,230.73000000000002,229.42000000000002,231.98000000000002,235.43,245.04,4.73,4.38,4.2,4.0600000000000005,3.93,3.8200000000000003,3.7800000000000002,3.94,4.73,N/A,N/A +2013,2,26,16,30,93990,92840,91720,30.25,0,0.1,0.16,0.21,0.27,0.34,0.42,0.52,0.64,0.97,180.05,197.13,204.98000000000002,208.18,210.63,212.91,215.38,218.04,225.13,8.53,8.120000000000001,7.9,7.71,7.53,7.38,7.22,7.07,6.8,N/A,N/A +2013,2,26,17,30,93940,92810,91710,22.96,0,0.23,0.25,0.26,0.26,0.27,0.28,0.31,0.36,0.51,146.9,152.49,158.20000000000002,164.96,173.03,181.94,191.56,200.70000000000002,215.63,11.94,11.540000000000001,11.290000000000001,11.07,10.88,10.700000000000001,10.51,10.33,9.99,N/A,N/A +2013,2,26,18,30,93920,92800,91710,20.34,0,2.2800000000000002,2.48,2.48,2.4,2.32,2.23,2.15,2.06,1.9000000000000001,108.76,110.32000000000001,111.66,113.12,114.51,115.92,117.54,119.07000000000001,122.94,14.21,13.700000000000001,13.41,13.16,12.94,12.73,12.530000000000001,12.33,11.94,N/A,N/A +2013,2,26,19,30,93840,92730,91640,16.6,0,1.37,1.5,1.51,1.5,1.5,1.49,1.49,1.49,1.5,133.17000000000002,140.22,144.83,149.27,153.41,157.27,161.12,164.62,171.46,16,15.48,15.200000000000001,14.950000000000001,14.72,14.51,14.290000000000001,14.09,13.69,N/A,N/A +2013,2,26,20,30,93720,92610,91530,14.18,0,2.57,3.15,3.31,3.4,3.46,3.5100000000000002,3.5500000000000003,3.58,3.63,215.23000000000002,216.27,216.74,217.15,217.55,217.91,218.28,218.62,219.33,17.12,16.52,16.26,16.03,15.8,15.59,15.38,15.18,14.77,N/A,N/A +2013,2,26,21,30,93680,92570,91500,11.51,0,3.21,3.91,4.15,4.29,4.39,4.46,4.51,4.55,4.62,219,220.70000000000002,221.83,222.75,223.53,224.24,224.91,225.52,226.70000000000002,18.97,18.400000000000002,18.150000000000002,17.900000000000002,17.68,17.47,17.25,17.06,16.64,N/A,N/A +2013,2,26,22,30,93610,92510,91440,11.43,0,4.01,4.91,5.15,5.2700000000000005,5.34,5.4,5.43,5.46,5.48,214.05,214.81,215.33,215.85,216.38,216.85,217.35,217.82,218.79,19.240000000000002,18.72,18.5,18.28,18.07,17.88,17.67,17.47,17.07,N/A,N/A +2013,2,26,23,30,93600,92500,91430,12.91,0,2.84,4.03,4.47,4.83,5.11,5.3500000000000005,5.54,5.71,5.97,200.18,201.14000000000001,201.70000000000002,202.20000000000002,202.6,202.92000000000002,203.17000000000002,203.39000000000001,203.69,19.46,19.22,19.06,18.87,18.68,18.5,18.29,18.1,17.71,N/A,N/A +2013,2,27,0,30,93580,92470,91410,13.55,0,4.04,7.1000000000000005,7.94,8.41,8.67,8.83,8.86,8.88,8.91,201.8,204.62,205.38,204.74,203.68,202.59,201.51,200.63,199.72,17.47,18.72,18.89,18.75,18.54,18.330000000000002,18.14,17.98,17.66,N/A,N/A +2013,2,27,1,30,93650,92540,91460,21.09,0,7.29,10,11.09,11.88,12.44,12.82,13,13.11,13.040000000000001,165.27,165.54,165.82,166.24,166.81,167.48,168.49,169.52,172.20000000000002,15.09,15.34,15.41,15.46,15.49,15.49,15.450000000000001,15.4,15.22,N/A,N/A +2013,2,27,2,30,93650,92540,91460,22.26,0,8.82,11.73,12.89,13.780000000000001,14.46,15.02,15.4,15.700000000000001,15.88,167.81,168.27,168.62,169.08,169.74,170.56,172.02,173.63,179.6,14.620000000000001,14.790000000000001,14.84,14.870000000000001,14.9,14.94,15.030000000000001,15.13,15.610000000000001,N/A,N/A +2013,2,27,3,30,93660,92540,91460,23.03,0,8.2,11.35,12.59,13.64,14.42,15.040000000000001,15.26,15.33,14.99,179.91,180.32,180.66,181.15,181.88,182.68,184.66,187.16,196.92000000000002,14.040000000000001,14.34,14.48,14.64,14.82,14.99,15.23,15.47,16.06,N/A,N/A +2013,2,27,4,30,93720,92600,91520,24.63,0,5.48,8.58,9.97,11.19,12.02,12.65,12.81,12.84,12.24,197.05,196.74,196.64000000000001,196.71,197.44,198.4,200.98000000000002,203.75,211.20000000000002,13.15,13.66,13.88,14.14,14.43,14.71,15.02,15.280000000000001,15.65,N/A,N/A +2013,2,27,5,30,93820,92700,91610,32.05,0,2.36,4.71,5.89,7.1000000000000005,8.13,9.02,9.58,10.02,10.23,187.81,193.04,197.07,199.25,201.19,202.94,205.36,207.82,215.46,11.120000000000001,12.530000000000001,12.76,13.05,13.34,13.65,13.93,14.17,14.35,N/A,N/A +2013,2,27,6,30,93890,92760,91670,33.84,0,0.54,0.33,0.28,0.6900000000000001,1.1300000000000001,1.46,1.94,2.52,4,56.64,329.92,306.57,299.33,292.65000000000003,289,283.98,280.14,287.69,10.23,11.64,11.76,11.75,11.73,11.700000000000001,11.92,12.19,12.93,N/A,N/A +2013,2,27,7,30,93960,92830,91740,30.650000000000002,0,2.38,4.69,5.53,6.34,7.38,8.46,9.72,11,13.620000000000001,283.09000000000003,288.21,293.06,298.52,304.25,309.6,312.69,315.75,322.52,10.06,11.81,12.200000000000001,12.49,12.75,12.96,13.1,13.19,13.15,N/A,N/A +2013,2,27,8,30,94190,93040,91930,27.05,0,2.87,7.03,9.41,10.56,11.67,12.77,13.790000000000001,14.76,16.6,303.45,324.3,339.69,343.66,345.88,347.12,347.94,348.63,349.55,8.07,9.25,9.33,9.38,9.36,9.3,9.200000000000001,9.09,8.84,N/A,N/A +2013,2,27,9,30,94240,93090,91970,30.64,0,2.6,4.3100000000000005,4.83,5.46,6.09,6.69,7.32,7.97,9.47,287.67,312.89,322.28000000000003,325.58,327.36,328.82,330.63,332.54,336.68,6.76,8.19,8.34,8.31,8.21,8.120000000000001,8.01,7.890000000000001,7.640000000000001,N/A,N/A +2013,2,27,10,30,94340,93180,92060,32.89,0,2.87,5.62,6.93,8.47,9.290000000000001,9.82,10.21,10.6,11.53,300.51,317.97,326.7,329.44,331.06,332.22,333.43,334.82,338.41,6.0200000000000005,6.99,7.03,7.12,7.12,7.09,7.01,6.92,6.72,N/A,N/A +2013,2,27,11,30,94430,93270,92150,30.35,0,3.46,5.16,5.82,7.22,8.11,8.76,9.290000000000001,9.81,10.89,298.66,315.33,321.93,322.84000000000003,323.34000000000003,323.68,324.01,324.39,325.49,5.94,6.890000000000001,6.87,6.9,6.88,6.82,6.7,6.57,6.3100000000000005,N/A,N/A +2013,2,27,12,30,94530,93360,92230,34.5,0,3.2600000000000002,6.43,7.74,8.78,9.370000000000001,9.76,10.14,10.55,11.65,303.91,312.07,317.49,320.63,321.61,321.76,321.39,321.05,320.7,4.54,5.89,6,5.96,5.83,5.69,5.5200000000000005,5.36,5.04,N/A,N/A +2013,2,27,13,30,94680,93520,92380,31.02,0,4.25,6.43,7.49,8.21,8.86,9.46,10.03,10.57,11.66,304.24,310.32,316.13,319.63,321.64,322.51,322.33,321.97,321.28000000000003,4.43,5.0600000000000005,5.24,5.07,4.93,4.8100000000000005,4.67,4.54,4.22,N/A,N/A +2013,2,27,14,30,94780,93610,92470,33.01,0,7.07,8.65,9.28,9.64,9.9,10.1,10.26,10.41,10.72,328.68,329.52,330.21,330.96,331.72,332.47,333.36,334.25,336.35,5.17,4.78,4.58,4.37,4.17,3.99,3.79,3.61,3.24,N/A,N/A +2013,2,27,15,30,94880,93710,92570,35.36,0,5.18,6.24,6.7,6.94,7.1000000000000005,7.21,7.29,7.36,7.46,338.35,339.05,339.69,340.23,340.71,341.15000000000003,341.6,342.03000000000003,342.90000000000003,6.3500000000000005,5.8,5.54,5.3,5.09,4.88,4.68,4.49,4.1,N/A,N/A +2013,2,27,16,30,94930,93770,92640,32.29,0,4.93,5.93,6.45,6.72,6.92,7.07,7.18,7.2700000000000005,7.42,346.48,346.66,346.83,346.98,347.1,347.22,347.34000000000003,347.45,347.67,8.58,7.98,7.69,7.42,7.19,6.97,6.76,6.5600000000000005,6.15,N/A,N/A +2013,2,27,17,30,94900,93750,92620,30.6,0,5.71,6.92,7.43,7.71,7.9,8.040000000000001,8.15,8.23,8.370000000000001,334.25,334.81,335.29,335.68,336.01,336.3,336.59000000000003,336.85,337.34000000000003,10.4,9.71,9.41,9.13,8.89,8.67,8.44,8.24,7.82,N/A,N/A +2013,2,27,18,30,94860,93710,92590,28.990000000000002,0,5.42,6.69,7.11,7.3500000000000005,7.53,7.66,7.75,7.83,7.96,341.49,341.69,341.8,341.88,341.95,342.02,342.08,342.14,342.25,11.620000000000001,10.89,10.59,10.33,10.08,9.86,9.63,9.42,9,N/A,N/A +2013,2,27,19,30,94850,93700,92590,23.26,0,5.44,6.68,7.11,7.34,7.5,7.62,7.71,7.78,7.890000000000001,347.73,347.5,347.37,347.24,347.12,347.02,346.91,346.81,346.62,12.57,11.85,11.55,11.290000000000001,11.040000000000001,10.83,10.59,10.38,9.97,N/A,N/A +2013,2,27,20,30,94830,93690,92580,16.61,0,6.33,7.69,8.11,8.27,8.36,8.42,8.44,8.46,8.46,356.86,356.01,355.48,355.09000000000003,354.74,354.43,354.13,353.85,353.34000000000003,13.17,12.46,12.17,11.92,11.69,11.48,11.26,11.06,10.65,N/A,N/A +2013,2,27,21,30,94780,93650,92540,19.1,0,5.66,6.83,7.19,7.41,7.55,7.65,7.72,7.78,7.86,347.67,348.62,349.23,349.68,350,350.25,350.43,350.57,350.74,13.71,13.06,12.790000000000001,12.540000000000001,12.3,12.09,11.86,11.66,11.24,N/A,N/A +2013,2,27,22,30,94760,93620,92510,19.44,0,5.98,7.28,7.54,7.59,7.61,7.62,7.61,7.61,7.58,355.62,356.15000000000003,356.33,356.36,356.33,356.29,356.22,356.16,356.02,13.36,12.81,12.59,12.38,12.17,11.98,11.78,11.58,11.200000000000001,N/A,N/A +2013,2,27,23,30,94770,93630,92530,20.6,0,5.51,6.78,7.03,7.08,7.09,7.09,7.08,7.0600000000000005,7.0200000000000005,357.91,358.47,358.83,359.16,359.47,359.73,359.95,0.14,0.4,13.01,12.64,12.450000000000001,12.26,12.06,11.88,11.68,11.49,11.1,N/A,N/A +2013,2,28,0,30,94820,93680,92570,24.76,0,3.71,5.76,6.4,6.8100000000000005,7.09,7.3,7.390000000000001,7.44,7.42,356.17,358.41,0.02,1.36,2.33,3.1,3.46,3.7,3.67,11.59,11.9,11.9,11.81,11.68,11.540000000000001,11.36,11.200000000000001,10.83,N/A,N/A +2013,2,28,1,30,94880,93730,92620,30.3,0,2.99,5.62,6.76,7.640000000000001,8.08,8.26,8.19,8.11,8.01,8.98,13.56,16,16.080000000000002,15.99,15.83,16.12,16.45,17.27,10.03,10.85,11.040000000000001,11.15,11.13,11.040000000000001,10.86,10.68,10.290000000000001,N/A,N/A +2013,2,28,2,30,94940,93780,92660,34.480000000000004,0,2.65,4.62,5.13,5.51,6.12,6.79,7.59,8.34,9.57,32.72,32.67,33.82,36.19,37.58,38.56,38.34,37.96,36.67,8.4,9.24,9.27,9.18,9.11,9.05,9.03,9,8.9,N/A,N/A +2013,2,28,3,30,95010,93850,92730,33.21,0,2.7800000000000002,5.09,5.84,6.33,7.05,7.86,8.83,9.74,11.22,27.98,28.89,31.220000000000002,36.32,40.18,43.5,44.45,45.07,44.980000000000004,7.26,8.14,8.17,8.02,7.890000000000001,7.7700000000000005,7.69,7.61,7.43,N/A,N/A +2013,2,28,4,30,95040,93880,92750,32.67,0,2.68,4.8,5.54,6.16,7.1000000000000005,8.18,9.450000000000001,10.620000000000001,12.450000000000001,16.28,22.77,28.64,35.67,39.97,43.2,44.01,44.49,44.11,5.89,6.71,6.76,6.76,6.74,6.73,6.7,6.65,6.45,N/A,N/A +2013,2,28,5,30,95080,93900,92770,36.050000000000004,0,0.91,2.31,3.2,3.99,5.07,6.29,7.44,8.55,10.53,335.67,4.66,24.79,33.71,37.5,39.730000000000004,41.97,43.800000000000004,45.94,4.8500000000000005,5.46,5.4,5.34,5.28,5.23,5.19,5.15,5.0200000000000005,N/A,N/A +2013,2,28,6,30,95120,93950,92810,41.64,0,1.4000000000000001,1.68,1.6,1.6600000000000001,2.2,2.98,3.73,4.5200000000000005,6.15,310.51,277.59000000000003,295.19,357.13,19.48,31.94,38.14,43.160000000000004,48.45,4.28,4.96,4.95,4.91,4.78,4.64,4.48,4.33,4.05,N/A,N/A +2013,2,28,7,30,95170,93990,92850,46.300000000000004,0,1.05,1.68,1.7,1.59,1.95,2.5100000000000002,3.24,4.03,5.63,286,319.59000000000003,350.93,25.97,41.94,53.6,58.32,61.89,64.55,3.61,4.33,4.28,4.19,4.04,3.88,3.74,3.61,3.4,N/A,N/A +2013,2,28,8,30,95170,93990,92840,51.76,0,2.07,3.2600000000000002,3.29,3.06,3.22,3.5100000000000002,4.0200000000000005,4.57,5.84,265,312.04,340.36,356.28000000000003,15.07,33.09,38.87,43.22,46.79,2.73,3.5100000000000002,3.5,3.43,3.31,3.19,3.08,3.0500000000000003,3.23,N/A,N/A +2013,2,28,9,30,95150,93970,92820,62.86,0,1.19,2.43,2.48,1.97,1.95,2.04,2.32,2.7,3.79,290.7,299.3,324.7,0.86,13.57,21.42,30.93,38.28,45.92,1.79,2.97,3.0700000000000003,2.89,2.69,2.52,2.41,2.4,2.64,N/A,N/A +2013,2,28,10,30,95150,93960,92820,70.44,0,0.09,0.44,0.79,1.06,1.16,1.22,1.35,1.54,2.17,355.54,9.86,18.56,15.67,11.9,9.36,12.6,17.740000000000002,30.53,0.89,1.97,2.2,2.33,2.24,2.1,1.92,1.92,2.27,N/A,N/A +2013,2,28,11,30,95180,93990,92840,75.17,0,0.36,0.52,0.68,1.1,1.32,1.45,1.44,1.43,1.51,166.38,61.78,20.27,10.52,2.04,355.26,351.66,354.84000000000003,13.780000000000001,-0.27,1.17,1.62,1.8900000000000001,1.96,1.97,1.97,1.99,2.13,N/A,N/A +2013,2,28,12,30,95210,94010,92860,79.15,0,0.05,0.1,0.15,0.26,0.49,0.81,1.02,1.1400000000000001,1.1500000000000001,126.03,151.6,129.75,27.05,358.42,346.35,340.75,340.67,357.6,-1.12,0.13,0.48,0.67,0.97,1.28,1.6600000000000001,1.95,2.31,N/A,N/A +2013,2,28,13,30,95240,94040,92890,81.54,0,0.07,0.38,0.62,0.64,0.74,0.87,1.07,1.17,1.02,337.13,292.34000000000003,256.83,260.24,274.74,289.87,298.24,308.83,334.88,-1.87,-0.34,0.28,0.62,0.74,0.85,1.12,1.47,2.24,N/A,N/A +2013,2,28,14,30,95260,94070,92910,65,0,0.34,0.46,0.61,0.92,1.29,1.6500000000000001,1.75,1.75,1.43,279.09000000000003,284.37,291.59000000000003,305.07,306.81,305.15000000000003,300.89,300.03000000000003,310.83,0.47000000000000003,0.24,0.2,0.22,0.64,1.07,1.5,1.8800000000000001,2.56,N/A,N/A +2013,2,28,15,30,95260,94080,92930,51.51,0,0.59,0.81,0.92,1.02,1.11,1.2,1.31,1.44,1.83,292.98,298.41,301.83,304.04,306.01,307.88,310.45,312.3,315,4.26,3.88,3.68,3.5100000000000002,3.33,3.17,3,2.84,2.89,N/A,N/A +2013,2,28,16,30,95220,94060,92920,43.35,0,1.08,1.25,1.29,1.3,1.3,1.3,1.29,1.28,1.27,300.06,302.98,304.97,306.84000000000003,308.85,310.74,312.93,315.05,319.43,7.7,7.24,7,6.79,6.59,6.41,6.21,6.03,5.67,N/A,N/A +2013,2,28,17,30,95190,94030,92910,34.660000000000004,0,0.98,1.09,1.11,1.12,1.1300000000000001,1.1400000000000001,1.1400000000000001,1.1400000000000001,1.16,19.31,16.31,14.48,13.16,12.13,11.28,10.65,10.11,9.36,9.86,9.370000000000001,9.1,8.85,8.620000000000001,8.42,8.2,7.99,7.59,N/A,N/A +2013,2,28,18,30,95140,93990,92870,26.12,0,0.96,1.12,1.17,1.2,1.22,1.25,1.26,1.28,1.32,20.46,20.71,20.8,20.84,20.84,20.82,20.78,20.73,20.62,11.33,10.82,10.540000000000001,10.28,10.040000000000001,9.83,9.61,9.41,9,N/A,N/A +2013,2,28,19,30,95090,93950,92830,21.95,0,1.99,2.3000000000000003,2.37,2.41,2.43,2.44,2.45,2.45,2.46,42.27,40.58,39.49,38.61,37.82,37.1,36.38,35.72,34.45,12.39,11.83,11.540000000000001,11.290000000000001,11.06,10.84,10.620000000000001,10.41,10,N/A,N/A +2013,2,28,20,30,95040,93890,92780,21.36,0,1.69,1.9100000000000001,1.95,1.97,1.98,1.99,2,2.0100000000000002,2.02,43.85,40.39,38.230000000000004,36.300000000000004,34.62,33.160000000000004,31.71,30.41,27.990000000000002,13.200000000000001,12.64,12.36,12.11,11.88,11.67,11.44,11.24,10.82,N/A,N/A +2013,2,28,21,30,94990,93850,92740,20.52,0,1.46,1.69,1.76,1.79,1.82,1.84,1.86,1.8800000000000001,1.9100000000000001,1.18,2.21,2.8000000000000003,3.2,3.48,3.69,3.8000000000000003,3.89,3.94,13.52,12.99,12.74,12.51,12.290000000000001,12.09,11.870000000000001,11.67,11.27,N/A,N/A +2013,2,28,22,30,94950,93810,92700,19.81,0,2.04,2.13,2.08,2.04,2,1.97,1.94,1.92,1.8900000000000001,309.3,316.57,320.85,324.75,328.11,330.94,333.57,335.84000000000003,339.63,13.98,13.49,13.26,13.030000000000001,12.81,12.61,12.39,12.200000000000001,11.790000000000001,N/A,N/A +2013,2,28,23,30,94940,93800,92700,20.68,0,2.62,3.18,3.33,3.41,3.45,3.48,3.49,3.5,3.5100000000000002,319.74,320.04,320.36,320.74,321.1,321.43,321.79,322.12,322.76,13.89,13.5,13.3,13.1,12.89,12.700000000000001,12.49,12.290000000000001,11.89,N/A,N/A +2013,3,1,0,30,94950,93810,92700,25.35,0,0.6,1.58,2.06,2.35,2.64,2.91,3.1,3.2800000000000002,3.5300000000000002,298.16,307.28000000000003,310.49,306.96,305.67,305.23,304.75,304.39,304.22,12.66,13.36,13.26,13.02,12.82,12.65,12.44,12.25,11.86,N/A,N/A +2013,3,1,1,30,94970,93820,92720,26.02,0,1.21,2.12,2.36,2.57,2.72,2.84,2.91,2.97,3.08,346.29,351.66,353.57,353.24,351.99,350.5,348.14,345.91,341.40000000000003,11.31,12.290000000000001,12.39,12.42,12.370000000000001,12.32,12.21,12.1,11.81,N/A,N/A +2013,3,1,2,30,95010,93860,92750,28.310000000000002,0,0.41000000000000003,0.8300000000000001,1.07,1.41,1.72,2.0300000000000002,2.3000000000000003,2.56,2.99,279.90000000000003,309.42,325.55,328.2,327.82,326.03000000000003,323.90000000000003,321.88,318.55,10.39,11.35,11.43,11.47,11.46,11.43,11.34,11.25,11.01,N/A,N/A +2013,3,1,3,30,95010,93860,92740,31.830000000000002,0,0.8200000000000001,0.96,0.72,0.55,0.61,0.73,1.02,1.37,2.11,227.06,241.19,252.70000000000002,262.15,297.05,337.52,334.93,331.85,327.43,8.870000000000001,10.02,10.23,10.39,10.41,10.4,10.31,10.22,10.07,N/A,N/A +2013,3,1,4,30,95010,93860,92740,33.49,0,0.76,1.24,1.18,1.01,0.9500000000000001,0.9500000000000001,1.2,1.46,2.02,247.86,258.79,269.9,282.23,306.54,329.56,342.46,351.53000000000003,352.19,7.8,8.94,9.23,9.56,9.790000000000001,9.94,9.92,9.89,9.75,N/A,N/A +2013,3,1,5,30,95010,93850,92730,36.5,0,0.3,0.65,0.71,0.67,0.76,0.92,1.1400000000000001,1.37,1.81,217.58,253.9,284.32,308.32,329.05,348.78000000000003,355.05,81.74,81.95,6.3500000000000005,7.73,8.15,8.53,8.84,9.1,9.25,9.36,9.47,N/A,N/A +2013,3,1,6,30,95010,93850,92720,38.88,0,0.74,1.1500000000000001,1.23,1.35,1.46,1.54,1.52,1.49,1.32,140.79,175.6,194.48000000000002,209.55,117.59,119.64,116.61,112.08,196.14000000000001,5.51,6.75,7.05,7.3100000000000005,7.51,7.69,7.86,8.03,8.45,N/A,N/A +2013,3,1,7,30,95030,93860,92730,42.84,0,0.75,1.26,1.3,1.23,1.21,1.22,1.34,1.46,1.81,91.68,110.98,123.49000000000001,132.62,142.39000000000001,150.34,154.66,158.28,163.94,4.04,5.67,6.12,6.4,6.68,6.9,7.09,7.2700000000000005,7.65,N/A,N/A +2013,3,1,8,30,95020,93840,92710,44.14,0,0.75,1.04,1.04,1.06,1.2,1.34,1.46,1.58,1.8900000000000001,279.79,273.26,268.58,265.04,259.86,253.8,244.87,234.73000000000002,215.75,3.38,4.59,4.99,5.39,5.7,5.97,6.22,6.49,7.0200000000000005,N/A,N/A +2013,3,1,9,30,95000,93820,92690,43.08,0,0.56,1.06,1.24,1.3900000000000001,1.51,1.6400000000000001,1.78,1.96,2.4,180.73,297.99,284.54,276.91,276.17,276.19,273.99,269.72,256.19,2.77,4.07,4.33,4.46,4.66,4.9,5.28,5.7,6.67,N/A,N/A +2013,3,1,10,30,94980,93790,92660,46.910000000000004,0,0.11,0.46,0.79,1.19,1.61,2.02,2.3000000000000003,2.54,2.96,115.91,195.42000000000002,243.67000000000002,265.69,274.21,278.02,276.48,273.47,264.98,1.42,3.06,3.65,4.1,4.55,4.97,5.45,5.94,6.86,N/A,N/A +2013,3,1,11,30,94960,93780,92640,50.59,0,0.26,0.29,0.3,0.35000000000000003,0.65,1.11,1.54,1.97,2.77,50.15,105.93,154.85,231.63,254.39000000000001,269.67,268.31,265.47,257.14,0.44,2.21,2.8000000000000003,3.18,3.79,4.38,5.0200000000000005,5.61,6.73,N/A,N/A +2013,3,1,12,30,94970,93780,92640,53.03,0,0.39,0.53,0.42,0.3,0.45,0.81,1.24,1.73,2.63,109.49000000000001,93.22,81.47,80.49,259.65,254.87,260.56,264.1,264.96,-0.32,1.6300000000000001,2.23,2.5300000000000002,2.92,3.37,4.1,4.95,6.55,N/A,N/A +2013,3,1,13,30,94970,93780,92640,53.42,0,0.14,0.29,0.31,0.25,0.37,0.68,1.04,1.4000000000000001,1.92,197.81,336.19,274.49,243.59,249.71,258.85,261.38,264.41,269.13,-0.87,1.02,1.77,2.27,2.66,3.0700000000000003,3.68,4.34,5.65,N/A,N/A +2013,3,1,14,30,95020,93830,92690,40.79,0,0.17,0.23,0.29,0.45,0.8300000000000001,1.35,1.93,2.5300000000000002,3.69,257.79,236.43,250.15,308.23,313.77,310.59000000000003,314.64,317.61,319.49,1.51,1.3,1.59,2.11,2.74,3.3200000000000003,3.92,4.55,5.79,N/A,N/A +2013,3,1,15,30,95020,93840,92710,30.5,0,1.05,1.33,1.46,1.58,1.97,2.5300000000000002,3.71,4.64,5.64,281.97,286.19,289.79,293.86,301.62,308.93,310.39,311.66,312.07,5.82,5.47,5.33,5.21,5.11,5.17,5.74,6.25,6.93,N/A,N/A +2013,3,1,16,30,95010,93860,92740,21.72,0,2.7800000000000002,3.34,3.5300000000000002,3.63,3.69,3.73,3.77,3.81,3.9,297.95,300.33,301.87,303.08,304.16,305.11,306.08,306.95,308.52,10.41,9.870000000000001,9.63,9.42,9.22,9.040000000000001,8.85,8.67,8.32,N/A,N/A +2013,3,1,17,30,94980,93830,92720,19.66,0,3.44,4.26,4.54,4.7,4.83,4.93,5.01,5.1000000000000005,5.26,309.03000000000003,310.35,311.18,311.88,312.53000000000003,313.11,313.7,314.26,315.36,12.97,12.36,12.09,11.86,11.64,11.450000000000001,11.25,11.06,10.69,N/A,N/A +2013,3,1,18,30,94950,93810,92710,15.68,0,6.49,8.05,8.51,8.78,8.96,9.09,9.18,9.25,9.36,322.51,322.17,321.92,321.68,321.44,321.22,320.99,320.78000000000003,320.34000000000003,15.05,14.31,14.02,13.76,13.52,13.31,13.09,12.88,12.47,N/A,N/A +2013,3,1,19,30,94920,93790,92690,15.040000000000001,0,5.72,7.1000000000000005,7.53,7.78,7.95,8.09,8.19,8.27,8.41,323.45,323.63,323.75,323.83,323.92,323.99,324.07,324.13,324.25,16.330000000000002,15.610000000000001,15.32,15.07,14.83,14.61,14.38,14.18,13.76,N/A,N/A +2013,3,1,20,30,94890,93760,92670,14.950000000000001,0,6.74,8.4,8.92,9.23,9.44,9.6,9.72,9.81,9.96,334.94,335.36,335.63,335.84000000000003,336.04,336.21,336.38,336.54,336.84000000000003,17.25,16.52,16.23,15.98,15.73,15.51,15.290000000000001,15.08,14.65,N/A,N/A +2013,3,1,21,30,94860,93740,92640,13.47,0,7.04,8.76,9.28,9.59,9.81,9.97,10.09,10.19,10.35,336.03000000000003,336.38,336.64,336.88,337.08,337.27,337.46,337.63,337.96,17.68,17.02,16.75,16.5,16.27,16.05,15.83,15.620000000000001,15.200000000000001,N/A,N/A +2013,3,1,22,30,94860,93740,92640,12.65,0,6.99,8.76,9.290000000000001,9.63,9.85,10.03,10.16,10.27,10.450000000000001,342.31,342.95,343.31,343.6,343.84000000000003,344.04,344.2,344.34000000000003,344.59000000000003,17.62,17.07,16.84,16.61,16.38,16.18,15.96,15.75,15.34,N/A,N/A +2013,3,1,23,30,94880,93760,92660,12.35,0,7.74,9.93,10.56,10.94,11.19,11.39,11.53,11.64,11.790000000000001,344.22,344.45,344.63,344.79,344.95,345.09000000000003,345.23,345.36,345.59000000000003,16.92,16.580000000000002,16.4,16.2,16,15.81,15.6,15.42,15.02,N/A,N/A +2013,3,2,0,30,94950,93810,92720,13.31,0,5.71,8.83,10,10.790000000000001,11.370000000000001,11.81,12.09,12.32,12.540000000000001,347.76,348.33,348.65000000000003,348.73,348.78000000000003,348.82,348.88,348.94,349.16,15.26,15.610000000000001,15.64,15.56,15.42,15.280000000000001,15.08,14.9,14.51,N/A,N/A +2013,3,2,1,30,95020,93880,92780,15.98,0,4.84,8.01,9.26,10.09,10.76,11.33,11.81,12.18,12.4,350.14,352.98,355.15000000000003,357.27,358.91,0.27,0.97,1.52,1.98,13.71,14.370000000000001,14.55,14.620000000000001,14.56,14.48,14.3,14.13,13.780000000000001,N/A,N/A +2013,3,2,2,30,95070,93930,92830,23.05,0,1.54,3.65,4.86,6.1000000000000005,7.16,8.1,8.77,9.36,10.24,352.39,357.39,0.53,1.92,2.61,3.02,3.19,3.2800000000000002,2.94,11.09,12.280000000000001,12.58,12.89,13.11,13.290000000000001,13.33,13.35,13.23,N/A,N/A +2013,3,2,3,30,95120,93970,92860,25.71,0,0.53,1.35,1.93,2.71,3.5100000000000002,4.34,5.15,5.95,7.42,296.84000000000003,335.87,357.96,5.67,8.97,10.6,10.9,10.97,10.23,9.69,10.67,10.82,10.96,11.120000000000001,11.26,11.41,11.540000000000001,11.75,N/A,N/A +2013,3,2,4,30,95160,94000,92890,27.77,0,0.31,0.9,1.44,2.2800000000000002,3.15,4.07,5,5.9,7.47,220.59,315.32,4.89,7.6000000000000005,8.8,9.44,10.09,10.82,12.200000000000001,9.120000000000001,10.120000000000001,10.15,10.11,10.13,10.17,10.27,10.44,10.88,N/A,N/A +2013,3,2,5,30,95190,94030,92910,30.18,0,0.04,0.65,1.72,2.42,3.14,3.9,4.65,5.36,6.59,21.01,19,13.8,13.52,13.620000000000001,13.93,15.06,16.39,19.42,8.53,9.450000000000001,9.450000000000001,9.43,9.43,9.46,9.59,9.74,10.120000000000001,N/A,N/A +2013,3,2,6,30,95220,94060,92940,33.06,0,0.07,0.75,1.68,2.36,2.98,3.56,4.17,4.79,6.0600000000000005,98.7,58.14,16.080000000000002,18.71,22.740000000000002,26.96,29.990000000000002,32.67,36.7,7.7700000000000005,8.78,8.83,8.82,8.91,9.02,9.15,9.27,9.450000000000001,N/A,N/A +2013,3,2,7,30,95270,94110,92980,36.2,0,1.01,1.18,1.3,1.6500000000000001,2.09,2.5500000000000003,3.04,3.5300000000000002,4.57,248.09,301.04,325.88,350.34000000000003,2.87,12.77,19.85,26.34,36.75,6.5,8.14,8.46,8.59,8.55,8.49,8.46,8.44,8.45,N/A,N/A +2013,3,2,8,30,95320,94150,93030,38.35,0,0.6,1.12,0.99,0.73,0.72,0.78,1.07,1.4000000000000001,2.19,262.99,269.01,283.47,299.25,331.78000000000003,359.84000000000003,19.87,35.050000000000004,50.64,6.03,7.69,8,8.120000000000001,8.040000000000001,7.95,7.88,7.8,7.62,N/A,N/A +2013,3,2,9,30,95350,94180,93050,43.13,0,0.37,0.75,0.99,1.29,1.3900000000000001,1.44,1.47,1.54,1.83,42.39,16.11,6.45,3.19,9.700000000000001,17.47,27.35,36.63,52.79,4.49,5.89,6.51,7.15,7.3500000000000005,7.42,7.32,7.21,7.01,N/A,N/A +2013,3,2,10,30,95380,94200,93070,46.5,0,0.14,0.65,1.1,1.59,1.78,1.85,1.72,1.6600000000000001,1.81,301.77,346.02,9.21,15.22,18.39,22.06,28.28,34.83,47.25,3.3200000000000003,4.78,5.23,5.57,5.99,6.3100000000000005,6.46,6.53,6.54,N/A,N/A +2013,3,2,11,30,95420,94240,93100,49.9,0,0.2,0.9,1.51,2.16,2.58,2.9,3.04,3.15,3.35,267,327.69,359.58,7.46,12.790000000000001,17.93,23.6,29.09,39.47,2.36,3.77,4.28,4.72,5.11,5.4,5.57,5.67,5.76,N/A,N/A +2013,3,2,12,30,95450,94260,93120,53.46,0,0.12,0.71,1.3,1.8800000000000001,2.4,2.84,3.12,3.22,3.16,13.77,8.65,7.53,9.61,10.22,11.17,13.21,16.98,27.29,1.27,2.72,3.2,3.5500000000000003,4.0600000000000005,4.45,4.69,4.8,4.89,N/A,N/A +2013,3,2,13,30,95470,94280,93140,55.11,0,0.38,0.89,1.27,1.8,2.2,2.48,2.5100000000000002,2.45,2.27,244.23000000000002,312.87,340.23,353.35,358.35,2.66,6.37,10.94,22.13,0.49,2.21,2.7800000000000002,3.14,3.65,4.03,4.25,4.37,4.5200000000000005,N/A,N/A +2013,3,2,14,30,95520,94330,93190,42.36,0,0.75,0.72,0.74,0.81,1.21,1.6400000000000001,1.92,1.97,1.75,253.36,256.92,279.88,315,334.42,351.5,357.22,2.68,15.48,3.0300000000000002,2.7800000000000002,2.74,2.74,3.22,3.67,4.09,4.33,4.63,N/A,N/A +2013,3,2,15,30,95540,94360,93220,36.58,0,0.64,0.65,0.61,0.56,0.51,0.45,0.37,0.27,0.25,253.78,250.44,248.47,246.79,245.4,244.89000000000001,246.16,310.61,78.3,6.23,5.83,5.65,5.49,5.33,5.2,5.07,5.01,5.21,N/A,N/A +2013,3,2,16,30,95500,94330,93200,32.71,0,1.02,0.98,0.92,0.86,0.81,0.77,0.74,0.72,0.7000000000000001,275.91,273.99,272.1,270.06,267.07,264.14,260.2,256.01,246.15,9.28,8.8,8.56,8.36,8.17,7.99,7.8,7.62,7.28,N/A,N/A +2013,3,2,17,30,95440,94280,93160,27.19,0,1.08,1.16,1.1500000000000001,1.1500000000000001,1.1400000000000001,1.1400000000000001,1.1400000000000001,1.1300000000000001,1.1300000000000001,271.05,267.95,265.95,264.03000000000003,262.06,260.29,258.46,256.77,253.5,11.78,11.27,11.02,10.8,10.59,10.41,10.21,10.02,9.65,N/A,N/A +2013,3,2,18,30,95380,94230,93120,23.580000000000002,0,1.02,1.1400000000000001,1.16,1.16,1.17,1.18,1.19,1.21,1.24,303.63,298.16,294.69,291.46,288.48,285.86,283.25,280.91,276.84000000000003,14.040000000000001,13.52,13.25,13.02,12.8,12.61,12.4,12.200000000000001,11.82,N/A,N/A +2013,3,2,19,30,95310,94170,93060,21.34,0,1.57,1.82,1.87,1.8900000000000001,1.9000000000000001,1.9100000000000001,1.92,1.92,1.94,317.5,314.61,313,311.65000000000003,310.38,309.26,308.13,307.12,305.28000000000003,15.780000000000001,15.22,14.950000000000001,14.71,14.49,14.290000000000001,14.07,13.88,13.48,N/A,N/A +2013,3,2,20,30,95220,94090,93000,19.38,0,1.69,2.04,2.14,2.2,2.25,2.29,2.32,2.35,2.4,316.26,314.88,314.09000000000003,313.47,312.87,312.35,311.85,311.38,310.46,17.16,16.59,16.330000000000002,16.09,15.860000000000001,15.65,15.44,15.24,14.84,N/A,N/A +2013,3,2,21,30,95130,94010,92910,18.46,0,1.04,1.28,1.37,1.43,1.48,1.53,1.58,1.62,1.7,289.84000000000003,291.95,293.21,294.26,295.17,295.96,296.72,297.40000000000003,298.65000000000003,17.96,17.43,17.18,16.95,16.73,16.53,16.31,16.11,15.71,N/A,N/A +2013,3,2,22,30,95070,93950,92860,17.400000000000002,0,1.76,2.15,2.27,2.34,2.4,2.44,2.47,2.49,2.5300000000000002,320.5,319.96,319.53000000000003,319.08,318.66,318.27,317.87,317.5,316.77,18.7,18.2,17.97,17.75,17.53,17.330000000000002,17.12,16.92,16.51,N/A,N/A +2013,3,2,23,30,95030,93900,92820,17.46,0,1.67,2,2.08,2.11,2.13,2.14,2.14,2.14,2.13,316.94,313.83,312.05,310.56,309.21,308.02,306.8,305.69,303.42,18.64,18.27,18.07,17.87,17.67,17.48,17.27,17.09,16.69,N/A,N/A +2013,3,3,0,30,95000,93870,92780,24.51,0,0.77,1.03,0.96,0.87,0.8200000000000001,0.8,0.76,0.74,0.77,166.76,172.11,176.63,181.93,187.88,193.41,202.09,210.3,229.24,16.740000000000002,17.62,17.62,17.55,17.43,17.31,17.14,16.990000000000002,16.66,N/A,N/A +2013,3,3,1,30,94980,93850,92760,24.18,0,2.44,3.2600000000000002,3.0700000000000003,2.91,2.74,2.59,2.47,2.37,2.21,162.09,167.85,171.3,174.53,177.92000000000002,180.9,184.27,187.23,192.66,16.02,17.27,17.38,17.37,17.3,17.22,17.1,16.98,16.69,N/A,N/A +2013,3,3,2,30,94970,93840,92750,27.73,0,2.5100000000000002,5.07,5.8500000000000005,6.4,6.640000000000001,6.7700000000000005,6.67,6.53,6.0600000000000005,180.13,187.95000000000002,191.49,192.89000000000001,193.52,193.88,193.9,193.9,193.77,14.51,15.88,16.13,16.29,16.35,16.38,16.330000000000002,16.27,16.07,N/A,N/A +2013,3,3,3,30,94970,93840,92740,29.59,0,2.16,4.13,4.71,5.16,5.46,5.69,5.76,5.79,5.69,172.33,180.28,184.4,187.05,188.76,190.06,190.9,191.61,192.83,13.42,14.94,15.27,15.51,15.66,15.76,15.790000000000001,15.8,15.72,N/A,N/A +2013,3,3,4,30,94960,93820,92730,31.27,0,1.18,2.2600000000000002,2.63,2.98,3.27,3.5300000000000002,3.74,3.93,4.18,147.44,163.75,172.62,179.15,183.3,186.54,188.68,190.47,192.79,12.5,13.93,14.23,14.47,14.63,14.74,14.8,14.84,14.85,N/A,N/A +2013,3,3,5,30,94950,93810,92710,32.89,0,1.23,2.54,3.04,3.49,3.8000000000000003,4.0600000000000005,4.2,4.3,4.37,149.91,168.35,178.14000000000001,184.1,187.69,190.29,191.85,193.07,194.4,11.51,12.93,13.23,13.5,13.69,13.84,13.94,14.01,14.07,N/A,N/A +2013,3,3,6,30,94930,93790,92690,34.67,0,1.54,2.25,2.4,2.69,3.1,3.54,4.01,4.45,5.24,114.99000000000001,139.28,152.57,164.73,172.24,178.24,181.45000000000002,184.03,186.77,10.61,12.14,12.51,12.84,13.08,13.280000000000001,13.43,13.55,13.71,N/A,N/A +2013,3,3,7,30,94930,93780,92680,35.82,0,1.23,2.44,3,3.67,4.3100000000000005,4.9,5.44,5.94,6.7700000000000005,140.05,166.62,178.98,185.46,188.16,189.70000000000002,189.93,189.96,189.25,9.94,11.4,11.73,12.040000000000001,12.280000000000001,12.47,12.64,12.790000000000001,13.02,N/A,N/A +2013,3,3,8,30,94900,93750,92640,37.980000000000004,0,0.92,2.02,2.66,3.44,4.21,4.96,5.65,6.3100000000000005,7.43,136.36,169.55,184.81,190.93,192.73000000000002,193.3,192.74,192.04,190.29,9.05,10.48,10.790000000000001,11.06,11.31,11.52,11.73,11.92,12.26,N/A,N/A +2013,3,3,9,30,94860,93700,92590,41.09,0,1.09,2.27,2.84,3.5100000000000002,4.18,4.84,5.46,6.05,7.1000000000000005,145.69,172.1,183.52,187.97,189.17000000000002,189.42000000000002,188.84,188.18,186.61,8.24,9.700000000000001,10.040000000000001,10.34,10.59,10.8,10.99,11.18,11.52,N/A,N/A +2013,3,3,10,30,94800,93640,92530,43.63,0,1.8,2.93,3.36,4.0200000000000005,4.66,5.28,5.89,6.49,7.62,139.05,161.03,170.52,176.01,177.8,178.71,178.85,178.91,178.91,7.62,9.290000000000001,9.72,10.08,10.31,10.49,10.65,10.8,11.07,N/A,N/A +2013,3,3,11,30,94760,93600,92490,45.71,0,2.0300000000000002,3.44,3.99,4.74,5.49,6.21,6.92,7.61,8.9,135.77,150.94,159.55,167.24,169.86,171.32,171.88,172.29,172.78,7.05,8.46,8.92,9.43,9.74,9.99,10.19,10.38,10.76,N/A,N/A +2013,3,3,12,30,94730,93570,92460,48.06,0,1.74,3.5700000000000003,4.42,5.34,6.22,7.08,7.96,8.8,10.290000000000001,138.41,150.03,157.06,162.91,166,168.28,169.67000000000002,170.75,172.05,6.640000000000001,7.97,8.3,8.66,8.950000000000001,9.21,9.5,9.76,10.24,N/A,N/A +2013,3,3,13,30,94690,93530,92410,49.01,0,2.07,3.89,4.66,5.55,6.34,7.08,7.8,8.540000000000001,9.97,129.6,145.72,154.41,160.87,165.15,168.5,170.38,171.91,173.91,6.42,7.63,7.890000000000001,8.15,8.4,8.63,8.83,9.05,9.540000000000001,N/A,N/A +2013,3,3,14,30,94660,93500,92390,37.03,0,2.38,2.93,3.44,4.2700000000000005,4.99,5.67,6.36,7.03,8.3,124.76,138.34,147.17000000000002,156.69,161.56,165.23,168.15,170.6,174.11,8.700000000000001,8.47,8.48,8.55,8.63,8.72,8.88,9.07,9.540000000000001,N/A,N/A +2013,3,3,15,30,94610,93470,92370,28.64,0,3.87,4.8500000000000005,5.16,5.3500000000000005,5.48,5.6000000000000005,5.79,6,6.53,165.23,166.4,167.16,167.84,168.56,169.23,170.11,170.97,172.9,12.58,12.08,11.870000000000001,11.68,11.5,11.34,11.17,11.040000000000001,10.86,N/A,N/A +2013,3,3,16,30,94530,93400,92310,24.36,0,4.65,5.69,5.95,6.08,6.13,6.140000000000001,6.13,6.11,6.140000000000001,165.09,165.86,166.34,166.79,167.28,167.74,168.4,169.08,171.03,15.3,14.69,14.450000000000001,14.24,14.040000000000001,13.86,13.68,13.51,13.200000000000001,N/A,N/A +2013,3,3,17,30,94430,93320,92230,19.14,0,5.21,6.43,6.78,6.96,7.07,7.13,7.140000000000001,7.15,7.140000000000001,172.52,173.41,173.93,174.4,174.88,175.32,175.85,176.36,177.58,18.23,17.54,17.27,17.03,16.8,16.61,16.4,16.21,15.84,N/A,N/A +2013,3,3,18,30,94340,93240,92160,17.32,0,5.73,7.13,7.54,7.76,7.9,8,8.05,8.09,8.13,188.26,188.77,189.11,189.45000000000002,189.81,190.15,190.54,190.9,191.71,20.06,19.330000000000002,19.05,18.8,18.56,18.36,18.14,17.94,17.55,N/A,N/A +2013,3,3,19,30,94260,93160,92090,13.870000000000001,0,6.3,7.8500000000000005,8.32,8.58,8.76,8.88,8.96,9.03,9.11,198.28,198.38,198.5,198.65,198.81,198.97,199.16,199.33,199.69,22.06,21.32,21.03,20.77,20.53,20.32,20.09,19.89,19.48,N/A,N/A +2013,3,3,20,30,94160,93060,92000,13.23,0,7.23,9,9.48,9.74,9.89,10,10.07,10.11,10.15,192.93,193.42000000000002,193.74,194.08,194.41,194.73000000000002,195.07,195.39000000000001,196.06,23.06,22.32,22.04,21.79,21.55,21.34,21.12,20.92,20.52,N/A,N/A +2013,3,3,21,30,94060,92970,91910,13.65,0,7.48,9.32,9.83,10.11,10.28,10.4,10.46,10.5,10.53,187.59,187.95000000000002,188.21,188.51,188.81,189.1,189.42000000000002,189.72,190.37,23.28,22.61,22.34,22.1,21.86,21.66,21.44,21.240000000000002,20.84,N/A,N/A +2013,3,3,22,30,93950,92860,91800,14.07,0,8.47,10.69,11.21,11.51,11.68,11.790000000000001,11.84,11.88,11.88,184.07,184.33,184.51,184.71,184.94,185.15,185.42000000000002,185.67000000000002,186.23,23.43,22.89,22.66,22.44,22.22,22.03,21.82,21.62,21.23,N/A,N/A +2013,3,3,23,30,93890,92800,91750,14.66,0,8.19,10.53,11.18,11.6,11.91,12.15,12.32,12.48,12.700000000000001,177.94,178.29,178.55,178.82,179.1,179.36,179.66,179.93,180.59,23.32,23.04,22.88,22.69,22.5,22.32,22.13,21.94,21.57,N/A,N/A +2013,3,4,0,30,93840,92740,91680,17.61,0,9.69,13.02,14.09,14.88,15.51,16.03,16.43,16.78,17.26,168.84,169.43,169.85,170.32,170.8,171.28,171.82,172.34,173.48,21.54,21.650000000000002,21.64,21.59,21.52,21.44,21.32,21.21,20.92,N/A,N/A +2013,3,4,1,30,93800,92710,91640,18.29,0,9.68,13.19,14.32,15.23,16.01,16.7,17.330000000000002,17.91,18.89,172.89000000000001,173.22,173.38,173.47,173.46,173.41,173.29,173.20000000000002,173.14000000000001,20.68,20.830000000000002,20.84,20.830000000000002,20.8,20.77,20.71,20.63,20.43,N/A,N/A +2013,3,4,2,30,93790,92690,91630,19.89,0,10.6,14.36,15.63,16.7,17.64,18.490000000000002,19.26,19.95,20.96,172.41,172.77,172.96,173.11,173.13,173.1,173,172.92000000000002,173.1,19.740000000000002,19.88,19.91,19.93,19.94,19.94,19.93,19.92,19.900000000000002,N/A,N/A +2013,3,4,3,30,93790,92690,91620,20.73,0,6.88,10.4,11.950000000000001,13.5,14.94,16.27,17.47,18.55,20.04,155.16,161.48,164.93,167.25,168.65,169.65,170.13,170.57,171.55,18.16,18.43,18.51,18.580000000000002,18.66,18.73,18.82,18.900000000000002,19.13,N/A,N/A +2013,3,4,4,30,93800,92690,91620,22.27,0,5.88,9.11,10.57,12.02,13.280000000000001,14.41,15.23,15.88,16.12,155.21,161.59,165.46,168.17000000000002,170.08,171.55,172.63,173.65,176.07,17.080000000000002,17.44,17.55,17.650000000000002,17.77,17.88,18.05,18.22,18.75,N/A,N/A +2013,3,4,5,30,93810,92700,91620,26,0,4.21,6.63,7.54,8.56,9.52,10.43,11.11,11.66,11.99,134.52,145.92000000000002,153.48,159.43,163.71,167.01,169.56,171.85,176.51,15.51,16.12,16.23,16.330000000000002,16.43,16.53,16.7,16.87,17.34,N/A,N/A +2013,3,4,6,30,93800,92680,91600,30.43,0,3.8000000000000003,6.19,7.0200000000000005,7.97,8.78,9.5,9.96,10.26,10.05,138.75,151.03,158.75,164.64000000000001,168.89000000000001,172.22,174.9,177.56,184.98,14.19,14.98,15.16,15.34,15.540000000000001,15.73,15.97,16.22,16.8,N/A,N/A +2013,3,4,7,30,93830,92710,91630,38.85,0,2.7,4,4.25,4.82,5.14,5.33,5.48,5.62,5.89,113.4,135.89000000000001,151.1,167.78,180.08,189.65,197.22,203.70000000000002,213.07,11.88,13.32,13.82,14.450000000000001,14.9,15.26,15.610000000000001,15.88,16.080000000000002,N/A,N/A +2013,3,4,8,30,93790,92670,91590,38.01,0,3.2800000000000002,3.54,2.7600000000000002,2.04,1.67,1.43,1.68,2.06,3.8000000000000003,148.12,166.24,179.85,194.69,211.25,225.88,241.21,254.02,261.37,12.69,15.1,15.66,15.84,15.88,15.85,15.860000000000001,15.98,17.06,N/A,N/A +2013,3,4,9,30,93770,92650,91570,36.980000000000004,0,2.15,3.24,2.5100000000000002,1.42,1.11,1.01,1.6600000000000001,2.5500000000000003,4.53,143.01,148.09,151.12,152.81,181.62,215.21,233.43,252.63,266.83,12.46,13.55,13.73,14.08,14.36,14.59,15.36,16.18,18.09,N/A,N/A +2013,3,4,10,30,93710,92600,91530,23.43,0,1.1,1.42,1.3800000000000001,1.47,2.04,3.0500000000000003,3.93,4.83,6.47,201.17000000000002,203.5,207.15,213.81,231.72,261.37,268.74,273.82,278.58,15.84,16.53,16.03,15.5,16.16,17.22,17.97,18.52,18.79,N/A,N/A +2013,3,4,11,30,93710,92600,91520,26.990000000000002,0,1.37,2.67,3.13,3.5500000000000003,4.03,4.54,5.32,6.13,7.8,211.89000000000001,234.33,250.21,263.61,273.33,281.24,285.8,289.52,291.84000000000003,14.030000000000001,16.48,16.85,16.95,17.080000000000002,17.22,17.55,17.86,18.36,N/A,N/A +2013,3,4,12,30,93720,92600,91520,27.37,0,0.9500000000000001,1.49,1.23,0.81,1.05,1.6,2.54,3.69,5.91,156.92000000000002,110.41,72.76,41.230000000000004,7.26,317.81,310.43,302.85,297.25,13.48,14.89,14.91,15.030000000000001,15.370000000000001,15.74,16.2,16.62,17.44,N/A,N/A +2013,3,4,13,30,93740,92620,91540,30.5,0,2.06,1.26,1.05,1.3900000000000001,2.15,3.41,4.45,5.5200000000000005,7.37,95.23,83.54,54.27,346.3,319.6,309.88,307.46,305.29,302.19,11.790000000000001,13.82,14.56,15.51,16.09,16.490000000000002,16.92,17.31,17.990000000000002,N/A,N/A +2013,3,4,14,30,93770,92650,91580,19.04,0,0.86,0.4,0.42,1.17,2.15,3.16,4.13,5.15,7.01,141.14000000000001,240.62,266.36,284.57,295.13,294.46,293.84000000000003,293.18,292.03000000000003,15.25,15.31,15.43,15.610000000000001,16.04,16.54,17.12,17.63,18.43,N/A,N/A +2013,3,4,15,30,93760,92650,91590,18.85,0,1.44,1.27,1.34,2.05,2.98,4.17,5.15,6.09,7.65,102.92,95.78,71.07000000000001,348.05,305.21,297.74,295.07,293.39,291.6,17.97,17.71,17.91,18.64,19.06,19.31,19.66,19.98,20.46,N/A,N/A +2013,3,4,16,30,93690,92610,91560,10.66,0,2.04,2.91,3.36,3.73,4.05,4.3500000000000005,4.63,4.89,5.38,318.12,311.54,307.85,305.59000000000003,303.75,302.18,300.90000000000003,299.75,297.89,24.1,23.63,23.42,23.23,23.04,22.87,22.7,22.54,22.2,N/A,N/A +2013,3,4,17,30,93690,92620,91570,8.45,0,2.86,3.52,3.85,4.08,4.28,4.45,4.61,4.75,5.0200000000000005,324.73,320.25,316.53000000000003,313.57,311.11,308.96,307.03000000000003,305.29,302.31,26.03,25.490000000000002,25.25,25.01,24.8,24.59,24.39,24.2,23.81,N/A,N/A +2013,3,4,18,30,93630,92560,91520,5.8,0,5.66,6.99,7.49,7.76,7.97,8.120000000000001,8.24,8.34,8.49,275.32,275.58,275.76,275.88,275.98,276.06,276.13,276.19,276.3,27.67,26.98,26.71,26.44,26.21,25.990000000000002,25.77,25.57,25.150000000000002,N/A,N/A +2013,3,4,19,30,93620,92550,91510,4.88,0,5.57,6.7700000000000005,7.3100000000000005,7.61,7.84,8.01,8.14,8.25,8.43,271.27,271.58,271.98,272.3,272.57,272.8,273.01,273.2,273.55,28.84,28.19,27.92,27.64,27.41,27.18,26.96,26.75,26.34,N/A,N/A +2013,3,4,20,30,93480,92410,91380,4.38,0,7.09,9.040000000000001,9.53,9.82,10.03,10.19,10.3,10.39,10.51,264.31,265,265.34000000000003,265.62,265.87,266.08,266.28000000000003,266.46,266.79,29.14,28.48,28.22,27.98,27.75,27.54,27.32,27.11,26.7,N/A,N/A +2013,3,4,21,30,93460,92390,91360,4.63,0,6.13,7.640000000000001,8.09,8.370000000000001,8.56,8.700000000000001,8.82,8.91,9.05,266.92,266.43,266.27,266.2,266.13,266.07,266.01,265.96,265.87,29.5,28.900000000000002,28.66,28.42,28.2,27.990000000000002,27.77,27.57,27.16,N/A,N/A +2013,3,4,22,30,93430,92380,91340,3.18,0,6.55,8.18,8.73,9.040000000000001,9.27,9.44,9.57,9.68,9.85,272.38,273.03000000000003,273.38,273.69,273.93,274.12,274.27,274.40000000000003,274.58,29.91,29.44,29.240000000000002,29.01,28.8,28.6,28.39,28.2,27.8,N/A,N/A +2013,3,4,23,30,93450,92390,91360,5.21,0,5.5,7.5,8.4,9.1,9.67,10.15,10.55,10.9,11.47,284.64,284.6,284.64,284.75,284.86,284.97,285.08,285.16,285.3,28.91,28.79,28.68,28.51,28.35,28.17,27.990000000000002,27.810000000000002,27.43,N/A,N/A +2013,3,5,0,30,93450,92380,91350,9.4,0,2.49,4.63,5.29,5.97,6.61,7.23,7.8100000000000005,8.36,9.36,263.61,272.01,277.47,280.7,283.14,284.96,286.13,287.01,287.83,25.09,27.16,27.580000000000002,27.740000000000002,27.75,27.64,27.48,27.330000000000002,26.98,N/A,N/A +2013,3,5,1,30,93490,92420,91390,7.8500000000000005,0,3.54,6.29,7.03,7.58,8.03,8.42,8.8,9.16,9.84,268.94,277.72,283.92,285.38,286.81,288.33,289.41,290.2,291.36,25.12,27.72,28.2,28,27.77,27.490000000000002,27.25,27.03,26.73,N/A,N/A +2013,3,5,2,30,93570,92490,91450,8.88,0,3.94,7.5600000000000005,8.89,9.41,9.32,8.55,7.79,7.1000000000000005,6.95,246.82,253.76000000000002,259.16,262.28000000000003,263.67,263.18,264.58,266.58,272.24,23.01,25.490000000000002,26.12,26.22,26.23,26.12,26.04,25.98,25.69,N/A,N/A +2013,3,5,3,30,93640,92550,91510,11.13,0,2.64,4.79,5.53,6.49,7.47,8.51,9.33,10.05,10.56,348.27,324.62,308.92,298.46,292.29,289.56,290.64,292.82,298.45,20.8,22.61,22.92,23.42,23.91,24.38,24.79,25.14,25.32,N/A,N/A +2013,3,5,4,30,93730,92650,91600,10.74,0,3.37,5.3100000000000005,5.55,5.8,6.05,6.34,6.8100000000000005,7.34,8.15,305.89,294.13,287.43,288.91,291.78000000000003,296.51,300.16,303.31,306.33,21.02,23.39,23.87,23.96,23.98,23.95,23.87,23.78,23.57,N/A,N/A +2013,3,5,5,30,93740,92650,91590,12.6,0,2.25,3.7600000000000002,4.18,4.8100000000000005,5.3500000000000005,5.83,6.45,7.09,8.52,305.94,307.77,309.62,312.44,312.83,312.24,311.72,311.27,310.86,20.2,22.09,22.12,21.78,21.61,21.5,21.43,21.38,21.41,N/A,N/A +2013,3,5,6,30,93850,92750,91690,17.95,0,4.12,7.28,7.7700000000000005,7.53,7.61,7.82,8.64,9.540000000000001,12.06,333.98,332.03000000000003,329.06,324.73,322.41,320.99,320.88,320.72,318.66,18.94,20.79,21.16,21.17,21.05,20.89,20.77,20.69,20.71,N/A,N/A +2013,3,5,7,30,93980,92880,91810,18.91,0,7.03,10.44,11.73,12.63,13.44,14.17,14.97,15.72,17.18,318.17,318.67,318.54,317.65000000000003,316.7,315.75,315.19,314.78000000000003,315.24,19.28,19.830000000000002,19.990000000000002,20.09,20.16,20.22,20.240000000000002,20.25,20.240000000000002,N/A,N/A +2013,3,5,8,30,94110,93010,91940,22.04,0,7.7,10.89,12.16,13.030000000000001,13.74,14.33,14.92,15.47,16.61,322.69,322.82,322.69,321.97,321.13,320.2,319.49,318.90000000000003,319.04,18.16,18.6,18.76,18.87,18.94,18.98,18.990000000000002,18.990000000000002,18.92,N/A,N/A +2013,3,5,9,30,94330,93220,92140,25.32,0,7.41,10.15,11.41,12.46,13.36,14.16,14.9,15.59,16.93,335.49,337.39,338.94,340.81,342.68,344.7,346.91,349.1,354.09000000000003,16.98,17.18,17.18,17.12,17.06,16.97,16.85,16.73,16.39,N/A,N/A +2013,3,5,10,30,94570,93440,92340,51.95,0,1.7,2.13,2.2,3.44,4.66,5.79,6.65,7.42,8.57,267.92,321.25,350.72,8.27,19.41,23.54,25.85,27.740000000000002,30.32,12.1,12.65,12.47,12.280000000000001,12.11,11.950000000000001,11.790000000000001,11.64,11.34,N/A,N/A +2013,3,5,11,30,94790,93640,92520,50.910000000000004,0,5.8500000000000005,8.73,10.07,11.200000000000001,12.120000000000001,12.91,13.55,14.11,15.030000000000001,26.080000000000002,27.07,27.740000000000002,28.240000000000002,28.6,28.89,29.05,29.17,29.21,9.97,9.86,9.73,9.58,9.42,9.26,9.08,8.91,8.55,N/A,N/A +2013,3,5,12,30,94990,93830,92710,61.09,0,2.14,4.91,6.47,7.95,9.24,10.41,11.38,12.26,13.67,341.42,355.96,5.5200000000000005,10.26,13.56,16.11,17.94,19.55,21.97,7.66,7.8500000000000005,7.67,7.46,7.24,7.04,6.83,6.62,6.22,N/A,N/A +2013,3,5,13,30,95120,93950,92820,61.1,0,4.1,6.49,7.6000000000000005,8.57,9.4,10.13,10.76,11.33,12.32,12.11,15.64,17.54,18.94,20.02,20.95,21.79,22.57,24.01,6.88,6.7,6.55,6.38,6.19,6.0200000000000005,5.83,5.64,5.26,N/A,N/A +2013,3,5,14,30,95250,94080,92950,53.85,0,6.67,8.66,9.34,9.8,10.13,10.39,10.6,10.77,11.05,17.94,18.330000000000002,18.61,18.87,19.11,19.31,19.52,19.7,20.07,7.37,6.87,6.640000000000001,6.43,6.21,6,5.8,5.6000000000000005,5.2,N/A,N/A +2013,3,5,15,30,95350,94180,93050,46.42,0,6.140000000000001,7.73,8.290000000000001,8.63,8.870000000000001,9.06,9.200000000000001,9.31,9.49,22.51,22.73,22.89,23.03,23.150000000000002,23.26,23.36,23.47,23.66,8.33,7.69,7.42,7.19,6.95,6.75,6.53,6.33,5.92,N/A,N/A +2013,3,5,16,30,95390,94220,93100,36.89,0,5.5,6.8500000000000005,7.29,7.55,7.73,7.87,7.97,8.06,8.19,25.41,25.36,25.36,25.37,25.400000000000002,25.41,25.43,25.46,25.5,9.66,8.96,8.67,8.42,8.19,7.98,7.76,7.55,7.140000000000001,N/A,N/A +2013,3,5,17,30,95380,94220,93100,31.6,0,5.17,6.390000000000001,6.7700000000000005,6.99,7.13,7.25,7.32,7.390000000000001,7.49,22.88,22.95,23.02,23.09,23.14,23.19,23.22,23.25,23.31,11.040000000000001,10.32,10.02,9.77,9.52,9.31,9.09,8.88,8.47,N/A,N/A +2013,3,5,18,30,95360,94210,93090,28.75,0,4.96,6.09,6.45,6.640000000000001,6.78,6.88,6.95,7.01,7.09,18.06,18.19,18.26,18.330000000000002,18.39,18.44,18.5,18.54,18.63,12.47,11.74,11.44,11.17,10.93,10.72,10.49,10.28,9.870000000000001,N/A,N/A +2013,3,5,19,30,95330,94190,93070,25.51,0,4.45,5.43,5.73,5.9,6.01,6.09,6.15,6.2,6.26,24.76,24.72,24.740000000000002,24.76,24.79,24.810000000000002,24.84,24.86,24.91,13.700000000000001,13,12.69,12.43,12.19,11.97,11.75,11.540000000000001,11.13,N/A,N/A +2013,3,5,20,30,95280,94140,93030,19.47,0,3.69,4.49,4.72,4.8500000000000005,4.94,5.01,5.05,5.09,5.14,30.91,30.94,30.94,30.95,30.970000000000002,30.970000000000002,30.98,30.98,30.98,14.77,14.11,13.82,13.57,13.33,13.120000000000001,12.89,12.68,12.27,N/A,N/A +2013,3,5,21,30,95220,94080,92980,17.77,0,3.49,4.23,4.44,4.5600000000000005,4.64,4.69,4.73,4.76,4.8,34.56,34.550000000000004,34.58,34.62,34.65,34.68,34.7,34.71,34.75,15.39,14.76,14.49,14.25,14.02,13.81,13.59,13.38,12.97,N/A,N/A +2013,3,5,22,30,95190,94050,92950,18.1,0,3.06,3.7,3.89,3.99,4.0600000000000005,4.1,4.13,4.16,4.19,37.160000000000004,37.68,37.980000000000004,38.24,38.5,38.74,38.96,39.17,39.58,15.68,15.13,14.88,14.65,14.43,14.23,14.01,13.81,13.41,N/A,N/A +2013,3,5,23,30,95170,94030,92930,17.900000000000002,0,3.27,3.99,4.19,4.29,4.3500000000000005,4.39,4.4,4.42,4.42,56.480000000000004,56.26,56.1,55.96,55.81,55.660000000000004,55.51,55.370000000000005,55.08,15.48,15.05,14.85,14.63,14.42,14.23,14.02,13.82,13.42,N/A,N/A +2013,3,6,0,30,95170,94030,92920,23.330000000000002,0,2.79,4.55,4.73,4.76,4.7700000000000005,4.7700000000000005,4.76,4.74,4.68,49.230000000000004,49.74,50.36,51.21,52.03,52.76,53.480000000000004,54.14,55.39,13.790000000000001,14.48,14.42,14.23,14.030000000000001,13.86,13.66,13.47,13.08,N/A,N/A +2013,3,6,1,30,95190,94050,92940,22.25,0,3.44,5.48,5.76,5.66,5.5200000000000005,5.39,5.25,5.12,4.88,67.37,62.97,61.44,61.81,62.57,63.370000000000005,64.18,64.79,65.19,12.950000000000001,13.89,14,13.83,13.65,13.49,13.3,13.120000000000001,12.75,N/A,N/A +2013,3,6,2,30,95200,94060,92950,21.28,0,3.64,6.04,6.78,7.33,7.6000000000000005,7.74,7.6000000000000005,7.390000000000001,6.76,87.06,85.01,84.09,83.72,83.79,83.99,84.45,84.83,84.97,11.71,12.72,13,13.13,13.07,12.97,12.780000000000001,12.6,12.22,N/A,N/A +2013,3,6,3,30,95220,94060,92950,21.35,0,2.98,5.9,6.92,7.83,8.31,8.6,8.46,8.13,7.08,98.22,91.56,88.83,88.3,88.49,88.82000000000001,88.95,88.94,88.55,10.120000000000001,11.24,11.51,11.75,11.89,11.98,11.96,11.92,11.76,N/A,N/A +2013,3,6,4,30,95240,94090,92970,21.53,0,2.04,4.13,5.11,6.22,7.0600000000000005,7.75,8.08,8.21,7.9,126.89,109.18,100.43,96.42,94.8,93.95,93.65,93.38,92.87,8.72,9.67,9.85,10.040000000000001,10.25,10.43,10.59,10.700000000000001,10.77,N/A,N/A +2013,3,6,5,30,95250,94090,92970,21.68,0,1.81,2.93,3.43,4.26,5.13,5.96,6.54,6.95,7.17,159.47,132.91,119.33,108.66,103.51,100.01,98.5,97.39,96.37,7.78,8.63,8.72,8.82,8.97,9.11,9.3,9.450000000000001,9.69,N/A,N/A +2013,3,6,6,30,95270,94100,92980,21.16,0,0.37,1.17,1.85,2.72,3.54,4.36,5.08,5.72,6.61,175.53,130.83,106.96000000000001,102.21000000000001,99.73,98.03,97.51,97.25,97.57000000000001,7.33,8.27,8.31,8.3,8.25,8.22,8.28,8.41,8.78,N/A,N/A +2013,3,6,7,30,95270,94110,92980,21.47,0,0.42,1.03,1.56,2.43,3.39,4.42,5.39,6.28,7.57,357,50.15,76.75,87.49,92.03,94.72,95.61,96.32000000000001,97.03,7.04,7.8500000000000005,7.76,7.640000000000001,7.58,7.55,7.66,7.87,8.51,N/A,N/A +2013,3,6,8,30,95270,94100,92970,22.82,0,0.49,1.1500000000000001,1.73,2.71,3.72,4.7700000000000005,5.76,6.7,8.17,161.73,125.35000000000001,109.03,104.63,102.46000000000001,100.86,99.87,99.14,98.53,5.88,7.05,7.12,7.05,6.95,6.87,6.84,6.88,7.28,N/A,N/A +2013,3,6,9,30,95260,94090,92960,24.13,0,0.21,1.11,2.06,3.0700000000000003,4.14,5.26,6.3,7.24,8.67,149.65,123.66,106.57000000000001,103.72,102.09,100.79,100.02,99.54,99.48,5.55,6.48,6.44,6.3500000000000005,6.29,6.25,6.29,6.43,7,N/A,N/A +2013,3,6,10,30,95270,94100,92970,25.310000000000002,0,1.6400000000000001,2.1,2.52,3.61,4.89,6.26,7.53,8.6,9.92,136.19,129.01,123.72,116.24000000000001,111.01,106.60000000000001,104.88,103.93,104.14,4.9,5.79,5.8100000000000005,5.84,5.87,5.92,6.04,6.2,6.57,N/A,N/A +2013,3,6,11,30,95280,94100,92970,25.12,0,2.89,3.92,4.33,5.24,6.2700000000000005,7.29,8.23,9,9.85,134.34,121.74000000000001,115.11,108.94,106.06,104.2,103.92,104.08,105.96000000000001,4.91,5.8,5.8,5.7700000000000005,5.82,5.89,6.07,6.2700000000000005,6.73,N/A,N/A +2013,3,6,12,30,95300,94130,92990,23.8,0,3.23,5.0200000000000005,5.19,5.2,5.62,6.13,6.82,7.51,8.74,144.6,137.49,130.8,123.4,117.8,113.52,111.85000000000001,110.94,111.11,5.03,5.71,5.67,5.53,5.42,5.3500000000000005,5.37,5.43,5.69,N/A,N/A +2013,3,6,13,30,95330,94150,93010,25.87,0,2.16,4.66,5.45,5.83,5.83,5.83,5.99,6.34,7.44,158.59,150.85,144.77,139.07,133.08,128.08,124.09,121.60000000000001,119.58,4.49,5,4.98,4.93,4.8,4.67,4.53,4.43,4.41,N/A,N/A +2013,3,6,14,30,95350,94180,93040,21.330000000000002,0,3.72,4.61,4.88,5.04,5.19,5.33,5.5600000000000005,5.99,7.21,133.64000000000001,134.48,134.87,135.05,134.93,134.71,134.22,133.25,131.11,5.95,5.53,5.34,5.17,4.99,4.84,4.69,4.59,4.55,N/A,N/A +2013,3,6,15,30,95310,94140,93010,18.62,0,3.72,4.63,4.9,5.05,5.14,5.2,5.26,5.32,5.49,135.1,135.81,136.16,136.37,136.53,136.66,136.79,136.95000000000002,137.34,8.31,7.7700000000000005,7.54,7.33,7.140000000000001,6.96,6.78,6.61,6.29,N/A,N/A +2013,3,6,16,30,95260,94110,92980,15.540000000000001,0,5.0200000000000005,6.25,6.62,6.83,6.96,7.0600000000000005,7.12,7.16,7.22,147.24,147.86,148.19,148.44,148.67000000000002,148.86,149.06,149.24,149.61,10.72,10.06,9.790000000000001,9.55,9.32,9.120000000000001,8.9,8.71,8.31,N/A,N/A +2013,3,6,17,30,95170,94020,92900,14.59,0,5.3,6.57,6.96,7.17,7.3,7.390000000000001,7.46,7.5,7.5600000000000005,152.93,153.21,153.35,153.45000000000002,153.51,153.56,153.62,153.66,153.75,12.13,11.41,11.120000000000001,10.870000000000001,10.63,10.42,10.200000000000001,9.99,9.59,N/A,N/A +2013,3,6,18,30,95100,93960,92850,13.97,0,5.89,7.32,7.75,8,8.15,8.26,8.33,8.4,8.47,162,161.93,161.89000000000001,161.84,161.8,161.75,161.70000000000002,161.66,161.58,13.52,12.77,12.46,12.200000000000001,11.950000000000001,11.74,11.51,11.3,10.89,N/A,N/A +2013,3,6,19,30,95030,93900,92790,13.81,0,6.47,8.02,8.5,8.76,8.93,9.05,9.13,9.19,9.27,162.72,162.6,162.53,162.45000000000002,162.39000000000001,162.32,162.27,162.22,162.12,14.76,13.99,13.68,13.42,13.17,12.950000000000001,12.72,12.51,12.1,N/A,N/A +2013,3,6,20,30,94950,93810,92710,14.36,0,6.390000000000001,7.930000000000001,8.4,8.65,8.8,8.91,8.98,9.040000000000001,9.09,162.95000000000002,162.85,162.79,162.75,162.70000000000002,162.66,162.62,162.59,162.53,15.73,14.99,14.69,14.42,14.18,13.97,13.74,13.530000000000001,13.120000000000001,N/A,N/A +2013,3,6,21,30,94850,93720,92620,15.22,0,5.92,7.34,7.78,8.01,8.16,8.26,8.32,8.370000000000001,8.42,161.11,161.05,160.99,160.93,160.87,160.81,160.75,160.69,160.59,16.3,15.610000000000001,15.34,15.09,14.85,14.64,14.42,14.21,13.8,N/A,N/A +2013,3,6,22,30,94780,93650,92560,15.96,0,6.0200000000000005,7.49,7.94,8.19,8.35,8.46,8.53,8.58,8.64,159.21,159.19,159.17000000000002,159.14000000000001,159.11,159.09,159.06,159.05,159.01,16.490000000000002,15.89,15.64,15.4,15.18,14.97,14.75,14.55,14.14,N/A,N/A +2013,3,6,23,30,94720,93590,92500,17.62,0,6.66,8.42,8.91,9.19,9.38,9.51,9.59,9.65,9.71,158.89000000000001,158.85,158.82,158.79,158.76,158.74,158.72,158.71,158.69,16.01,15.57,15.36,15.15,14.94,14.74,14.530000000000001,14.34,13.94,N/A,N/A +2013,3,7,0,30,94710,93580,92480,19.88,0,4.9,7.24,8.08,8.72,9.23,9.64,9.98,10.26,10.67,157.49,157.46,157.5,157.63,157.79,157.96,158.12,158.27,158.48,14.530000000000001,14.55,14.46,14.34,14.19,14.05,13.870000000000001,13.69,13.32,N/A,N/A +2013,3,7,1,30,94690,93560,92460,20.32,0,5.24,7.640000000000001,8.55,9.290000000000001,9.92,10.48,10.98,11.41,12.13,156.74,156.71,156.74,156.8,156.91,157.03,157.15,157.25,157.43,13.73,13.68,13.58,13.47,13.33,13.200000000000001,13.040000000000001,12.9,12.56,N/A,N/A +2013,3,7,2,30,94700,93560,92460,20.45,0,4.5200000000000005,6.54,7.3100000000000005,7.930000000000001,8.44,8.88,9.290000000000001,9.67,10.35,154.6,154.53,154.55,154.63,154.79,154.95000000000002,155.18,155.4,155.9,13.33,13.200000000000001,13.08,12.94,12.780000000000001,12.63,12.47,12.3,11.97,N/A,N/A +2013,3,7,3,30,94690,93550,92450,20.25,0,5.46,7.7700000000000005,8.67,9.41,10.040000000000001,10.59,11.11,11.59,12.48,154.25,154.49,154.70000000000002,154.93,155.21,155.48,155.8,156.1,156.74,12.72,12.58,12.46,12.32,12.16,12.01,11.85,11.69,11.370000000000001,N/A,N/A +2013,3,7,4,30,94670,93530,92420,23.47,0,3.5300000000000002,5.98,6.98,7.83,8.58,9.25,9.9,10.52,11.69,149.26,151.11,152.34,153.38,154.32,155.16,155.9,156.57,157.74,11.42,11.6,11.56,11.49,11.39,11.290000000000001,11.16,11.040000000000001,10.78,N/A,N/A +2013,3,7,5,30,94630,93480,92370,27.01,0,2.85,5.63,6.78,7.8100000000000005,8.73,9.56,10.36,11.1,12.46,140.45000000000002,145.57,148.47,150.36,151.69,152.78,153.6,154.33,155.55,10.3,10.78,10.78,10.76,10.700000000000001,10.63,10.55,10.46,10.26,N/A,N/A +2013,3,7,6,30,94600,93460,92350,24.41,0,4.03,7.12,8.48,9.66,10.65,11.53,12.34,13.09,14.5,148.39000000000001,151.70000000000002,153.44,154.49,155.24,155.86,156.44,157.03,158.32,10.200000000000001,10.44,10.43,10.4,10.35,10.3,10.24,10.18,10.07,N/A,N/A +2013,3,7,7,30,94600,93450,92340,24.28,0,4.67,7.51,8.69,9.67,10.540000000000001,11.33,12.120000000000001,12.88,14.39,152.07,152.87,153.46,154.01,154.68,155.34,156.17000000000002,157.02,158.88,9.83,10.01,10,9.97,9.92,9.88,9.83,9.790000000000001,9.74,N/A,N/A +2013,3,7,8,30,94580,93430,92320,24.740000000000002,0,3.5100000000000002,5.95,6.94,7.8,8.58,9.3,10.03,10.76,12.27,144.43,146.56,148.22,149.92000000000002,151.69,153.34,154.92000000000002,156.36,158.81,9.540000000000001,9.68,9.66,9.61,9.55,9.48,9.41,9.34,9.22,N/A,N/A +2013,3,7,9,30,94560,93410,92300,24.810000000000002,0,3.02,5.2700000000000005,6.22,7.08,7.890000000000001,8.64,9.41,10.17,11.700000000000001,146.55,149.25,151.25,153.22,154.95000000000002,156.49,157.75,158.83,160.5,9.47,9.6,9.57,9.52,9.44,9.370000000000001,9.290000000000001,9.22,9.07,N/A,N/A +2013,3,7,10,30,94530,93380,92270,24.830000000000002,0,3.3000000000000003,5.63,6.68,7.61,8.47,9.26,10.040000000000001,10.790000000000001,12.3,144.65,147.86,150.06,151.98,153.72,155.3,156.64000000000001,157.83,159.85,9.56,9.64,9.6,9.55,9.47,9.41,9.33,9.26,9.120000000000001,N/A,N/A +2013,3,7,11,30,94520,93370,92260,27.21,0,2.58,4.82,5.83,6.74,7.57,8.35,9.15,9.93,11.55,134.05,139.26,142.86,145.87,148.52,150.91,152.95000000000002,154.77,157.75,9.33,9.46,9.4,9.32,9.23,9.14,9.040000000000001,8.950000000000001,8.78,N/A,N/A +2013,3,7,12,30,94500,93350,92240,31.150000000000002,0,4.29,6.63,7.67,8.59,9.43,10.200000000000001,10.950000000000001,11.67,13.08,146.55,148.8,150.42000000000002,152.01,153.54,154.96,156.26,157.45000000000002,159.48,9.72,9.66,9.58,9.48,9.370000000000001,9.26,9.15,9.05,8.85,N/A,N/A +2013,3,7,13,30,94510,93360,92250,42.62,0,4.78,7.13,8.120000000000001,8.98,9.74,10.41,11.040000000000001,11.64,12.790000000000001,151,153.1,154.51,155.73,156.86,157.88,158.83,159.70000000000002,161.23,10.1,9.97,9.85,9.72,9.58,9.450000000000001,9.31,9.18,8.93,N/A,N/A +2013,3,7,14,30,94540,93400,92290,51.5,0,4.89,6.43,7.01,7.47,7.88,8.24,8.64,9.040000000000001,9.82,154.38,155.44,156.16,156.86,157.58,158.25,159,159.72,161,10.75,10.36,10.17,9.97,9.77,9.59,9.4,9.22,8.85,N/A,N/A +2013,3,7,15,30,94550,93410,92300,62.18,0,6.1000000000000005,7.7,8.2,8.51,8.71,8.85,8.96,9.05,9.21,157.53,157.83,157.97,158.09,158.21,158.32,158.44,158.57,158.86,12.08,11.49,11.25,11.03,10.81,10.620000000000001,10.41,10.22,9.83,N/A,N/A +2013,3,7,16,30,94530,93390,92290,64.3,0,6.93,8.69,9.23,9.540000000000001,9.73,9.86,9.94,10,10.06,157.9,158.15,158.31,158.44,158.57,158.68,158.8,158.92000000000002,159.17000000000002,13.33,12.63,12.35,12.1,11.870000000000001,11.67,11.450000000000001,11.25,10.86,N/A,N/A +2013,3,7,17,30,94510,93380,92280,56.38,0,6.88,8.56,9.07,9.36,9.540000000000001,9.66,9.73,9.790000000000001,9.84,163.82,163.83,163.81,163.8,163.8,163.81,163.82,163.83,163.88,14.76,14,13.71,13.450000000000001,13.200000000000001,12.99,12.77,12.57,12.16,N/A,N/A +2013,3,7,18,30,94470,93350,92260,49.49,0,7.04,8.66,9.11,9.34,9.48,9.57,9.620000000000001,9.65,9.68,163.56,163.51,163.52,163.49,163.45000000000002,163.42000000000002,163.38,163.34,163.26,15.98,15.19,14.89,14.63,14.39,14.18,13.96,13.76,13.35,N/A,N/A +2013,3,7,19,30,94420,93300,92220,46.71,0,6.41,7.98,8.44,8.71,8.870000000000001,8.99,9.06,9.120000000000001,9.19,153.66,153.96,154.12,154.24,154.35,154.43,154.53,154.61,154.77,17.330000000000002,16.55,16.240000000000002,15.98,15.73,15.52,15.290000000000001,15.09,14.67,N/A,N/A +2013,3,7,20,30,94400,93290,92200,44.62,0,6.67,8.22,8.74,9.01,9.18,9.290000000000001,9.36,9.41,9.46,156.29,156.47,156.57,156.64000000000001,156.70000000000002,156.75,156.8,156.85,156.93,18.34,17.57,17.27,17,16.76,16.54,16.31,16.11,15.69,N/A,N/A +2013,3,7,21,30,94360,93250,92170,47.5,0,6.96,8.620000000000001,9.13,9.4,9.57,9.68,9.75,9.8,9.84,157.20000000000002,157.26,157.31,157.34,157.36,157.37,157.39000000000001,157.41,157.44,18.34,17.62,17.34,17.080000000000002,16.84,16.62,16.4,16.2,15.790000000000001,N/A,N/A +2013,3,7,22,30,94320,93210,92130,48.58,0,6.5600000000000005,8.22,8.75,9.05,9.25,9.4,9.49,9.57,9.67,150.59,150.9,151.08,151.23,151.35,151.47,151.58,151.69,151.9,18.64,18.02,17.77,17.52,17.3,17.09,16.88,16.67,16.27,N/A,N/A +2013,3,7,23,30,94300,93190,92110,48.9,0,6.88,8.700000000000001,9.27,9.6,9.83,9.99,10.11,10.200000000000001,10.31,154.24,154.19,154.16,154.14000000000001,154.12,154.1,154.08,154.07,154.04,18.84,18.400000000000002,18.2,17.98,17.77,17.57,17.36,17.17,16.77,N/A,N/A +2013,3,8,0,30,94280,93170,92090,58.19,0,4.43,6.79,7.67,8.36,8.91,9.370000000000001,9.76,10.11,10.68,152.57,152.25,152.12,152.12,152.17000000000002,152.25,152.3,152.33,152.31,17.41,17.46,17.39,17.28,17.150000000000002,17.01,16.84,16.68,16.330000000000002,N/A,N/A +2013,3,8,1,30,94310,93190,92110,66.64,0,3.87,6.5200000000000005,7.67,8.69,9.61,10.450000000000001,11.200000000000001,11.9,13.05,147.64000000000001,148.70000000000002,149.56,150.58,151.6,152.6,153.37,154.03,154.66,16.2,16.35,16.330000000000002,16.26,16.16,16.07,15.94,15.81,15.51,N/A,N/A +2013,3,8,2,30,94330,93210,92130,76.89,0,3.02,5.67,6.87,7.92,8.870000000000001,9.73,10.55,11.31,12.700000000000001,138.22,140.07,141.42000000000002,142.61,143.69,144.68,145.56,146.38,147.85,15.08,15.43,15.47,15.450000000000001,15.4,15.35,15.26,15.18,14.97,N/A,N/A +2013,3,8,3,30,94330,93210,92120,80.97,0,3.61,6.42,7.7,8.78,9.74,10.6,11.44,12.21,13.68,136.89000000000001,138.86,140.24,141.43,142.51,143.51,144.43,145.28,146.81,14.99,15.24,15.24,15.19,15.120000000000001,15.040000000000001,14.94,14.85,14.63,N/A,N/A +2013,3,8,4,30,94330,93210,92120,85.39,0,4.62,7.46,8.76,9.86,10.81,11.66,12.44,13.17,14.530000000000001,142.29,143.29,143.98,144.57,145.08,145.55,145.94,146.3,146.93,14.780000000000001,14.88,14.84,14.76,14.66,14.56,14.44,14.33,14.08,N/A,N/A +2013,3,8,5,30,94330,93220,92130,80.92,0,5.96,8.16,9.040000000000001,9.74,10.31,10.790000000000001,11.22,11.6,12.290000000000001,148.65,149.11,149.44,149.75,150.07,150.36,150.67000000000002,150.96,151.56,16.14,15.91,15.76,15.57,15.39,15.21,15.02,14.84,14.46,N/A,N/A +2013,3,8,6,30,94330,93220,92130,83.2,0,5.9,8.09,8.94,9.620000000000001,10.18,10.66,11.09,11.49,12.19,152.76,153.12,153.34,153.58,153.82,154.06,154.32,154.57,155.08,16.05,15.82,15.67,15.49,15.31,15.14,14.950000000000001,14.780000000000001,14.41,N/A,N/A +2013,3,8,7,30,94350,93240,92150,85.02,0,5.51,7.5,8.31,8.950000000000001,9.47,9.92,10.32,10.68,11.33,152,152.41,152.70000000000002,153.03,153.36,153.68,154.01,154.33,154.96,15.9,15.66,15.51,15.32,15.14,14.96,14.77,14.59,14.21,N/A,N/A +2013,3,8,8,30,94330,93210,92130,87.25,0,5.33,7.3100000000000005,8.06,8.64,9.120000000000001,9.55,9.92,10.27,10.89,155.22,155.71,156.06,156.43,156.81,157.19,157.58,157.94,158.65,15.860000000000001,15.610000000000001,15.46,15.280000000000001,15.09,14.92,14.72,14.55,14.16,N/A,N/A +2013,3,8,9,30,94290,93170,92090,89.96000000000001,0,5.11,6.95,7.61,8.14,8.57,8.950000000000001,9.31,9.63,10.23,157.85,157.82,157.87,158.03,158.24,158.48,158.76,159.03,159.61,15.81,15.56,15.4,15.21,15.02,14.84,14.64,14.46,14.1,N/A,N/A +2013,3,8,10,30,94290,93170,92090,91.98,0,5.3500000000000005,7.19,7.84,8.34,8.76,9.120000000000001,9.450000000000001,9.76,10.33,162.51,162.62,162.75,162.93,163.13,163.33,163.56,163.78,164.23,15.68,15.41,15.25,15.06,14.870000000000001,14.69,14.51,14.34,14.06,N/A,N/A +2013,3,8,11,30,94260,93150,92060,95.72,0,4.55,6.43,7.18,7.8,8.31,8.76,9.15,9.51,10.19,145.28,147.42000000000002,148.85,150.24,151.5,152.63,153.63,154.54,156.23,15.23,14.96,14.8,14.64,14.49,14.370000000000001,14.280000000000001,14.200000000000001,14.02,N/A,N/A +2013,3,8,12,30,94280,93160,92080,92.95,0,5.23,7.04,7.67,8.16,8.57,8.92,9.23,9.52,10.05,159.37,159.65,159.85,160.07,160.31,160.55,160.81,161.06,161.59,15.700000000000001,15.44,15.290000000000001,15.1,14.92,14.75,14.57,14.42,14.200000000000001,N/A,N/A +2013,3,8,13,30,94260,93150,92070,93.07000000000001,0,5.22,7.01,7.63,8.1,8.5,8.84,9.16,9.47,10.05,160.33,160.47,160.63,160.83,161.08,161.31,161.6,161.87,162.45000000000002,15.860000000000001,15.610000000000001,15.450000000000001,15.27,15.09,14.92,14.75,14.6,14.39,N/A,N/A +2013,3,8,14,30,94270,93150,92070,94.32000000000001,0,4.88,6.61,7.24,7.73,8.14,8.5,8.82,9.120000000000001,9.69,161.24,161.19,161.22,161.3,161.43,161.58,161.78,161.98,162.49,15.91,15.65,15.49,15.31,15.13,14.96,14.84,14.73,14.55,N/A,N/A +2013,3,8,15,30,94260,93150,92070,87.19,0,5.74,7.37,7.930000000000001,8.32,8.620000000000001,8.870000000000001,9.13,9.36,9.83,151.83,152.81,153.37,153.99,154.62,155.23,155.98,156.68,158.09,16.79,16.37,16.17,15.97,15.790000000000001,15.610000000000001,15.44,15.280000000000001,14.96,N/A,N/A +2013,3,8,16,30,94250,93140,92070,82.88,0,5.29,6.640000000000001,7.08,7.33,7.51,7.640000000000001,7.73,7.82,7.96,158.59,158.5,158.44,158.45000000000002,158.49,158.55,158.66,158.78,159.14000000000001,17.55,17.07,16.86,16.65,16.44,16.26,16.06,15.88,15.51,N/A,N/A +2013,3,8,17,30,94230,93120,92050,75.67,0,6.03,7.51,8.01,8.290000000000001,8.47,8.6,8.69,8.76,8.84,156.09,156.43,156.69,156.95000000000002,157.19,157.42000000000002,157.66,157.88,158.39000000000001,18.7,18.09,17.84,17.6,17.38,17.18,16.97,16.78,16.39,N/A,N/A +2013,3,8,18,30,94160,93060,91990,64.73,0,5.95,7.37,7.82,8.06,8.22,8.34,8.41,8.47,8.53,155.66,156.6,157.14000000000001,157.58,157.96,158.3,158.64000000000001,158.94,159.53,20.740000000000002,19.98,19.69,19.43,19.19,18.97,18.75,18.55,18.14,N/A,N/A +2013,3,8,19,30,94100,93010,91950,55.88,0,6.58,8.13,8.620000000000001,8.86,9.02,9.11,9.17,9.22,9.24,158.93,159.32,159.55,159.70000000000002,159.82,159.93,160.03,160.11,160.29,22.34,21.55,21.25,20.990000000000002,20.740000000000002,20.53,20.31,20.1,19.69,N/A,N/A +2013,3,8,20,30,94030,92940,91890,51.730000000000004,0,7.640000000000001,9.49,10.05,10.35,10.55,10.68,10.76,10.83,10.89,156.77,157.36,157.67000000000002,157.91,158.11,158.29,158.46,158.62,158.92000000000002,23.26,22.46,22.17,21.89,21.650000000000002,21.43,21.2,21,20.580000000000002,N/A,N/A +2013,3,8,21,30,93960,92870,91820,51.31,0,8.38,10.4,10.99,11.290000000000001,11.48,11.59,11.66,11.71,11.73,159.65,159.70000000000002,159.72,159.73,159.72,159.72,159.71,159.71,159.71,23.56,22.82,22.54,22.27,22.04,21.82,21.6,21.400000000000002,20.990000000000002,N/A,N/A +2013,3,8,22,30,93900,92810,91750,55.71,0,9.28,11.6,12.24,12.59,12.81,12.94,13.02,13.07,13.08,149.53,149.81,149.97,150.1,150.22,150.33,150.45000000000002,150.56,150.8,22.76,22.13,21.88,21.63,21.400000000000002,21.19,20.98,20.78,20.38,N/A,N/A +2013,3,8,23,30,93900,92810,91750,59.550000000000004,0,8.32,10.57,11.200000000000001,11.58,11.84,12.01,12.13,12.23,12.34,149.69,149.97,150.13,150.27,150.4,150.53,150.67000000000002,150.79,151.06,21.900000000000002,21.44,21.240000000000002,21.02,20.81,20.61,20.400000000000002,20.2,19.8,N/A,N/A +2013,3,9,0,30,93890,92790,91730,67.76,0,7.34,9.98,10.82,11.44,11.94,12.36,12.71,13.02,13.530000000000001,151.20000000000002,151.35,151.44,151.52,151.6,151.70000000000002,151.82,151.93,152.21,20.25,20.1,19.97,19.81,19.64,19.47,19.28,19.11,18.72,N/A,N/A +2013,3,9,1,30,93890,92790,91720,74.47,0,8.33,11.21,12.200000000000001,12.96,13.59,14.13,14.620000000000001,15.05,15.82,150.32,150.35,150.36,150.31,150.25,150.18,150.14000000000001,150.11,150.20000000000002,19.2,19.07,18.95,18.8,18.64,18.490000000000002,18.31,18.150000000000002,17.79,N/A,N/A +2013,3,9,2,30,93850,92750,91690,75.96000000000001,0,8.61,11.620000000000001,12.63,13.42,14.1,14.69,15.280000000000001,15.82,16.89,153.09,152.99,152.95000000000002,152.88,152.88,152.9,153.01,153.14000000000001,153.6,18.84,18.740000000000002,18.650000000000002,18.53,18.400000000000002,18.28,18.150000000000002,18.03,17.78,N/A,N/A +2013,3,9,3,30,93820,92720,91660,76.7,0,7.88,10.82,11.88,12.790000000000001,13.63,14.4,15.18,15.91,17.27,153.64000000000001,153.49,153.44,153.42000000000002,153.49,153.59,153.79,153.98,154.53,18.45,18.44,18.400000000000002,18.35,18.29,18.240000000000002,18.17,18.11,17.96,N/A,N/A +2013,3,9,4,30,93760,92650,91590,69.54,0,9.05,12.4,13.49,14.370000000000001,15.14,15.81,16.44,17.02,18.06,148.41,148.1,147.99,147.95000000000002,148.04,148.17000000000002,148.48,148.81,149.75,18.16,18.1,18.02,17.93,17.82,17.73,17.61,17.5,17.27,N/A,N/A +2013,3,9,5,30,93750,92640,91570,80.23,0,9.02,12.15,13.200000000000001,14,14.71,15.34,15.96,16.53,17.64,151.29,151.31,151.33,151.39000000000001,151.5,151.63,151.85,152.07,152.67000000000002,16.84,16.76,16.68,16.580000000000002,16.47,16.37,16.27,16.17,15.97,N/A,N/A +2013,3,9,6,30,93750,92640,91570,85.29,0,9.450000000000001,12.57,13.65,14.5,15.24,15.91,16.59,17.22,18.490000000000002,155.1,155.12,155.14000000000001,155.19,155.28,155.38,155.54,155.70000000000002,156.14000000000001,16.16,16.07,15.97,15.860000000000001,15.75,15.64,15.52,15.41,15.19,N/A,N/A +2013,3,9,7,30,93750,92640,91560,89.71000000000001,0,9.34,12.55,13.64,14.49,15.22,15.860000000000001,16.45,16.990000000000002,18.03,158.38,158.61,158.81,159.06,159.32,159.58,159.87,160.14000000000001,160.74,15.76,15.63,15.51,15.38,15.24,15.1,14.96,14.83,14.56,N/A,N/A +2013,3,9,8,30,93730,92620,91540,88.02,0,9.55,12.49,13.370000000000001,14.01,14.52,14.950000000000001,15.34,15.69,16.35,158.03,158.26,158.47,158.70000000000002,158.95000000000002,159.19,159.47,159.73,160.28,16.34,16.07,15.91,15.73,15.55,15.39,15.200000000000001,15.030000000000001,14.67,N/A,N/A +2013,3,9,9,30,93720,92610,91540,89.07000000000001,0,8.44,11,11.83,12.41,12.870000000000001,13.26,13.61,13.93,14.52,157.78,157.8,157.83,157.93,158.06,158.20000000000002,158.39000000000001,158.58,159.01,16.45,16.18,16.02,15.83,15.65,15.47,15.280000000000001,15.1,14.74,N/A,N/A +2013,3,9,10,30,93630,92520,91450,89.98,0,8.6,11.36,12.120000000000001,12.69,13.14,13.530000000000001,13.86,14.17,14.73,157.24,157.48,157.64000000000001,157.79,157.98,158.15,158.35,158.55,158.99,16.29,16,15.83,15.65,15.450000000000001,15.27,15.08,14.9,14.530000000000001,N/A,N/A +2013,3,9,11,30,93630,92530,91450,90.76,0,8.33,10.83,11.65,12.25,12.71,13.1,13.43,13.74,14.31,161.3,161.43,161.53,161.62,161.75,161.88,162.06,162.23,162.72,16.11,15.84,15.68,15.49,15.31,15.13,14.93,14.76,14.41,N/A,N/A +2013,3,9,12,30,93640,92530,91460,91.71000000000001,0,6.61,8.98,9.89,10.61,11.18,11.65,12.05,12.41,13.040000000000001,169,169.04,169.09,169.19,169.32,169.45000000000002,169.62,169.79,170.26,15.790000000000001,15.610000000000001,15.47,15.290000000000001,15.11,14.92,14.73,14.55,14.18,N/A,N/A +2013,3,9,13,30,93610,92500,91430,92.91,0,5.8100000000000005,8.19,9.05,9.73,10.27,10.73,11.15,11.540000000000001,12.13,175.58,174.75,174.3,174.13,174.26,174.52,175.08,175.65,177.05,15.46,15.370000000000001,15.26,15.13,14.97,14.82,14.65,14.49,14.16,N/A,N/A +2013,3,9,14,30,93650,92550,91470,84.47,0,7,8.700000000000001,9.19,9.450000000000001,9.63,9.77,9.88,9.98,10.21,191.95000000000002,191.96,192.01,192.22,192.49,192.78,193.15,193.51,194.34,16.21,15.75,15.540000000000001,15.34,15.14,14.97,14.780000000000001,14.61,14.26,N/A,N/A +2013,3,9,15,30,93760,92660,91580,79.26,0,4.26,5.33,5.76,5.99,6.16,6.2700000000000005,6.3500000000000005,6.42,6.5,267.12,266.12,265.61,265.32,265.1,264.93,264.81,264.7,264.54,16.86,16.46,16.26,16.05,15.85,15.66,15.46,15.280000000000001,14.9,N/A,N/A +2013,3,9,16,30,93720,92620,91550,35.84,0,4.95,6.0200000000000005,6.38,6.5600000000000005,6.68,6.7700000000000005,6.83,6.88,6.95,319.27,319.14,319.04,318.96,318.90000000000003,318.84000000000003,318.78000000000003,318.72,318.6,19.150000000000002,18.48,18.2,17.95,17.73,17.52,17.3,17.1,16.69,N/A,N/A +2013,3,9,17,30,93640,92540,91470,29.77,0,5.12,6.3100000000000005,6.61,6.78,6.890000000000001,6.97,7.0200000000000005,7.05,7.1000000000000005,305.91,306.3,306.52,306.69,306.82,306.95,307.06,307.16,307.35,20.12,19.39,19.1,18.85,18.61,18.400000000000002,18.18,17.98,17.57,N/A,N/A +2013,3,9,18,30,93640,92550,91480,29.13,0,4.36,5.22,5.55,5.69,5.79,5.86,5.9,5.94,5.97,307.19,307.14,307.17,307.13,307.09000000000003,307.04,306.98,306.91,306.77,21.21,20.53,20.22,19.95,19.71,19.48,19.26,19.06,18.64,N/A,N/A +2013,3,9,19,30,93550,92460,91400,27.68,0,4.2,5.13,5.37,5.49,5.57,5.63,5.67,5.69,5.72,293.33,293.38,293.36,293.27,293.14,293,292.83,292.67,292.31,21.92,21.21,20.92,20.66,20.42,20.2,19.98,19.77,19.35,N/A,N/A +2013,3,9,20,30,93490,92400,91340,27.14,0,3.98,4.8,4.99,5.09,5.15,5.2,5.22,5.24,5.26,276.57,276.86,276.91,276.93,276.92,276.90000000000003,276.87,276.83,276.73,22.37,21.68,21.39,21.14,20.900000000000002,20.69,20.46,20.25,19.830000000000002,N/A,N/A +2013,3,9,21,30,93500,92410,91350,26.62,0,4.3,5.12,5.4,5.53,5.61,5.66,5.68,5.7,5.71,317.09000000000003,316.58,316.19,315.85,315.56,315.29,315.03000000000003,314.8,314.31,22.35,21.7,21.42,21.150000000000002,20.92,20.7,20.48,20.28,19.86,N/A,N/A +2013,3,9,22,30,93480,92390,91330,25.18,0,7.01,8.53,9.09,9.32,9.48,9.57,9.63,9.67,9.68,329.28000000000003,329.08,328.94,328.81,328.7,328.61,328.51,328.42,328.22,21.35,20.73,20.46,20.21,19.98,19.77,19.55,19.36,18.95,N/A,N/A +2013,3,9,23,30,93420,92320,91260,24.19,0,7.13,8.950000000000001,9.450000000000001,9.72,9.89,10.01,10.07,10.13,10.16,327.08,326.92,326.8,326.69,326.58,326.48,326.37,326.26,326.03000000000003,20.48,20.02,19.8,19.59,19.37,19.18,18.97,18.77,18.37,N/A,N/A +2013,3,10,0,30,93470,92380,91310,26.35,0,5.65,7.890000000000001,8.85,9.56,10.120000000000001,10.56,10.9,11.18,11.52,326.71,326.7,326.64,326.61,326.57,326.55,326.52,326.5,326.43,19.26,19.2,19.11,18.95,18.79,18.63,18.45,18.28,17.900000000000002,N/A,N/A +2013,3,10,1,30,93500,92390,91320,26.47,0,5.95,8.43,9.49,10.33,11.02,11.620000000000001,12.08,12.48,13,337.24,337.41,337.45,337.31,337.11,336.87,336.6,336.35,335.78000000000003,17.490000000000002,17.47,17.39,17.27,17.14,17,16.85,16.7,16.38,N/A,N/A +2013,3,10,2,30,93560,92450,91380,23.240000000000002,0,4.28,6.96,8.19,9.24,10.14,10.950000000000001,11.59,12.14,12.780000000000001,337.86,338.11,338.12,337.71,337.07,336.31,335.33,334.38,332.41,16.65,16.9,16.92,16.87,16.78,16.68,16.54,16.4,16.06,N/A,N/A +2013,3,10,3,30,93590,92470,91400,26.68,0,2.2600000000000002,5.12,6.51,7.95,9.19,10.3,11.24,12.11,13.66,339.79,336.44,334.1,331.79,329.96,328.35,327.08,325.95,324.36,14.67,15.370000000000001,15.46,15.530000000000001,15.55,15.56,15.49,15.41,15.15,N/A,N/A +2013,3,10,4,30,93630,92510,91430,21.900000000000002,0,5.5600000000000005,8.44,9.58,10.51,11.290000000000001,11.97,12.73,13.47,14.96,319.48,320.5,320.84000000000003,320.71,320.46,320.2,320.08,319.97,319.65000000000003,14.52,14.74,14.77,14.76,14.71,14.64,14.55,14.46,14.280000000000001,N/A,N/A +2013,3,10,5,30,93720,92600,91510,28.76,0,2.82,5.3500000000000005,6.67,8.02,9.24,10.39,11.33,12.18,13.52,306.33,312.2,316.81,318.76,319.84000000000003,320.23,320.16,319.99,319.46,12.07,12.86,13.08,13.32,13.51,13.66,13.71,13.73,13.56,N/A,N/A +2013,3,10,6,30,93730,92610,91520,30.18,0,2.02,3.21,4.05,5.84,7.54,9.22,10.68,12.040000000000001,14.31,267.16,291.56,302.62,310.99,313.85,314.93,315.01,315.04,314.98,11.78,12.32,12.41,12.6,12.780000000000001,12.93,13,13.030000000000001,12.950000000000001,N/A,N/A +2013,3,10,7,30,93790,92660,91570,33.7,0,1.47,4.01,5.62,7,7.8100000000000005,8.34,8.46,8.63,9.370000000000001,282.18,309.3,324.52,324.39,323.93,323.37,321.46,319.72,316.77,10.13,11.700000000000001,12.18,12.450000000000001,12.6,12.700000000000001,12.63,12.55,12.27,N/A,N/A +2013,3,10,8,30,93870,92740,91640,34.89,0,0.72,2.02,3.08,4.18,5.18,6.07,6.93,7.78,9.450000000000001,357.48,342.73,329.27,323.1,320.51,320.22,319.69,319.07,317.37,9.790000000000001,10.85,11.040000000000001,11.25,11.46,11.65,11.78,11.85,11.74,N/A,N/A +2013,3,10,9,30,93900,92770,91670,34.65,0,2.9,4.21,4.22,4.23,4.39,4.57,4.87,5.21,6.16,44.2,34.51,29.2,24.78,18.62,12.49,6.61,0.56,347.17,11.19,12.56,12.48,12.07,11.82,11.620000000000001,11.370000000000001,11.15,10.77,N/A,N/A +2013,3,10,10,30,93950,92820,91720,36.82,0,3.6,6.5600000000000005,7.3500000000000005,7.51,7.72,7.930000000000001,8.26,8.620000000000001,9.66,329.85,329.39,327.59000000000003,323.85,321.01,318.68,317.34000000000003,316.40000000000003,316.11,10.05,10.88,10.950000000000001,11.05,11.01,10.94,10.73,10.55,10.19,N/A,N/A +2013,3,10,11,30,94070,92930,91820,40.550000000000004,0,3.97,7.07,8.66,9.8,10.63,11.26,11.83,12.4,13.85,322.28000000000003,324.6,326.13,326.03000000000003,325.18,323.96,322.42,321.07,319.45,8.35,9.06,9.23,9.25,9.24,9.22,9.18,9.14,9.03,N/A,N/A +2013,3,10,12,30,94140,92990,91880,40.12,0,5.54,8.290000000000001,9.64,10.790000000000001,11.77,12.620000000000001,13.39,14.1,15.43,323.28000000000003,326.08,328.29,330.08,331.73,333.26,334.88,336.44,339.62,8.1,8.370000000000001,8.4,8.35,8.28,8.2,8.08,7.96,7.71,N/A,N/A +2013,3,10,13,30,94210,93060,91940,44.08,0,4.59,7.23,8.48,9.6,10.63,11.58,12.5,13.35,14.91,332.8,338.91,342.72,345.55,347.76,349.65000000000003,351.19,352.52,354.63,7.0600000000000005,7.15,7.11,7.04,6.93,6.82,6.68,6.55,6.2700000000000005,N/A,N/A +2013,3,10,14,30,94350,93200,92080,37.82,0,6.75,8.540000000000001,9.23,9.68,10.01,10.27,10.47,10.64,10.92,347.23,348.21,348.88,349.39,349.82,350.19,350.52,350.83,351.36,8.3,7.84,7.62,7.4,7.19,6.99,6.7700000000000005,6.58,6.18,N/A,N/A +2013,3,10,15,30,94380,93230,92110,35.96,0,7.18,9.03,9.67,10.06,10.33,10.540000000000001,10.69,10.82,11.01,346.33,346.72,346.96,347.17,347.35,347.52,347.68,347.82,348.1,9.08,8.44,8.18,7.94,7.7,7.49,7.2700000000000005,7.07,6.66,N/A,N/A +2013,3,10,16,30,94420,93270,92160,32.67,0,7.04,8.76,9.39,9.75,9.99,10.18,10.32,10.43,10.59,346.42,346.57,346.68,346.76,346.83,346.89,346.95,347,347.1,10.26,9.53,9.23,8.97,8.73,8.52,8.290000000000001,8.08,7.67,N/A,N/A +2013,3,10,17,30,94440,93300,92180,28.55,0,6.8500000000000005,8.46,9.05,9.39,9.63,9.81,9.94,10.05,10.21,343.84000000000003,343.75,343.74,343.74,343.75,343.76,343.78000000000003,343.81,343.85,11.450000000000001,10.69,10.370000000000001,10.1,9.85,9.63,9.39,9.18,8.76,N/A,N/A +2013,3,10,18,30,94420,93280,92170,24.22,0,6.8500000000000005,8.5,9.05,9.370000000000001,9.59,9.76,9.88,9.98,10.14,348.11,348.26,348.35,348.43,348.5,348.56,348.62,348.68,348.78000000000003,12.44,11.65,11.34,11.06,10.81,10.58,10.35,10.13,9.71,N/A,N/A +2013,3,10,19,30,94400,93260,92160,22.1,0,6.8,8.44,9,9.31,9.53,9.700000000000001,9.82,9.92,10.08,341.05,341.40000000000003,341.63,341.78000000000003,341.90000000000003,342,342.09000000000003,342.17,342.31,13.42,12.64,12.32,12.05,11.790000000000001,11.57,11.33,11.120000000000001,10.69,N/A,N/A +2013,3,10,20,30,94350,93220,92120,18.830000000000002,0,6.8100000000000005,8.47,8.99,9.27,9.47,9.620000000000001,9.73,9.81,9.94,345.36,345.32,345.31,345.29,345.27,345.26,345.24,345.23,345.21,13.96,13.19,12.9,12.63,12.39,12.17,11.94,11.72,11.3,N/A,N/A +2013,3,10,21,30,94340,93210,92110,18.62,0,5.89,7.24,7.72,8,8.19,8.34,8.45,8.540000000000001,8.69,339.37,339.47,339.56,339.64,339.7,339.76,339.81,339.85,339.94,14.44,13.74,13.46,13.19,12.950000000000001,12.73,12.5,12.290000000000001,11.870000000000001,N/A,N/A +2013,3,10,22,30,94340,93210,92110,16.36,0,6.13,7.62,8.120000000000001,8.43,8.65,8.81,8.94,9.040000000000001,9.200000000000001,340.31,340.51,340.65000000000003,340.76,340.86,340.94,341.02,341.09000000000003,341.22,14.44,13.83,13.57,13.33,13.1,12.89,12.66,12.450000000000001,12.040000000000001,N/A,N/A +2013,3,10,23,30,94380,93250,92150,16.18,0,6.3,7.92,8.45,8.76,8.97,9.13,9.24,9.34,9.47,340.41,340.95,341.27,341.5,341.68,341.83,341.97,342.09000000000003,342.29,14,13.55,13.34,13.120000000000001,12.91,12.71,12.5,12.3,11.89,N/A,N/A +2013,3,11,0,30,94420,93290,92180,16.830000000000002,0,3.89,6.37,7.3,8,8.5,8.89,9.14,9.33,9.55,356.08,355.37,354.90000000000003,354.5,354.12,353.77,353.41,353.06,352.3,12.49,12.65,12.58,12.47,12.31,12.16,11.97,11.790000000000001,11.42,N/A,N/A +2013,3,11,1,30,94510,93370,92270,18.77,0,3.47,6.390000000000001,7.67,8.42,8.870000000000001,9.17,9.27,9.35,9.41,352.84000000000003,354.48,355.47,355.74,355.63,355.37,354.55,353.66,351.28000000000003,11.120000000000001,11.74,11.86,11.86,11.78,11.68,11.53,11.38,11.03,N/A,N/A +2013,3,11,2,30,94550,93410,92310,19.66,0,3.68,6.8,8.06,8.76,9.1,9.27,9.32,9.370000000000001,9.44,355.23,355.02,355.15000000000003,355.75,356.31,356.8,356.53000000000003,356.05,353.92,10.700000000000001,11.5,11.71,11.75,11.67,11.55,11.38,11.22,10.89,N/A,N/A +2013,3,11,3,30,94600,93450,92340,24.740000000000002,0,0.88,2.61,3.86,5.1000000000000005,6.17,7.13,7.8100000000000005,8.39,9.19,23.52,9.88,1.53,359.72,359.24,359.25,359.19,358.92,357.39,8.58,9.59,9.84,10.1,10.32,10.51,10.620000000000001,10.67,10.58,N/A,N/A +2013,3,11,4,30,94640,93480,92370,26.37,0,1.25,2.5500000000000003,3.4,4.76,5.95,7.05,7.890000000000001,8.6,9.46,302.83,332.21,348.05,355.65000000000003,359.49,1.9100000000000001,3.0300000000000002,3.84,4.17,7.34,8.38,8.6,8.82,9.03,9.22,9.39,9.52,9.65,N/A,N/A +2013,3,11,5,30,94660,93500,92380,29.25,0,1.56,2.29,2.39,2.56,2.84,3.15,3.63,4.14,5.19,253.61,264.83,281.12,306.54,322.72,335.35,342.93,348.88,355.04,6.36,7.44,7.66,7.87,7.95,7.99,8.02,8.040000000000001,8.09,N/A,N/A +2013,3,11,6,30,94690,93530,92400,29.310000000000002,0,1.9100000000000001,2.2800000000000002,1.97,1.67,1.54,1.5,1.71,2,2.88,256.23,265.13,275.03000000000003,286.90000000000003,305.21,321.76,336.99,348.01,358.06,6.01,7.2700000000000005,7.42,7.44,7.4,7.34,7.28,7.22,7.18,N/A,N/A +2013,3,11,7,30,94730,93560,92440,31.07,0,0.09,0.39,0.66,0.96,1.1500000000000001,1.33,1.56,1.85,2.58,265.47,282.42,295.05,299.22,307.90000000000003,317.08,327.06,335.28000000000003,346.67,4.66,5.88,6.140000000000001,6.32,6.44,6.5200000000000005,6.55,6.55,6.48,N/A,N/A +2013,3,11,8,30,94740,93570,92450,34.38,0,0.44,1.19,1.61,1.97,2.32,2.68,3.1,3.5,4.29,264.43,273.94,284.65000000000003,297.7,307.92,316.85,323.74,329.46,337.83,3.65,5.37,5.91,6.32,6.51,6.65,6.8,6.9,6.98,N/A,N/A +2013,3,11,9,30,94730,93560,92430,35.93,0,0.37,0.86,1.07,1.22,1.32,1.44,1.68,1.99,2.83,180.87,229.46,252.03,262.12,273.3,283.93,295.83,305.51,318.76,2.7,4.46,4.96,5.28,5.45,5.58,5.69,5.8,5.97,N/A,N/A +2013,3,11,10,30,94720,93550,92420,35.15,0,0.34,0.8200000000000001,1.02,1.1400000000000001,1.32,1.55,1.87,2.24,3.1,249.28,254.71,269.47,291.11,306.31,318.44,324.89,328.71,331.15000000000003,2.94,4.49,4.91,5.21,5.2700000000000005,5.3,5.32,5.3500000000000005,5.45,N/A,N/A +2013,3,11,11,30,94750,93570,92430,38.61,0,0.13,0.65,1.08,1.3900000000000001,1.6400000000000001,1.87,2.08,2.32,2.9,291.99,287.97,294.39,309.91,321.59000000000003,331.91,340.59000000000003,347.2,353.08,1.41,2.69,3.27,3.9,4.55,5.0200000000000005,5.2,5.3500000000000005,5.61,N/A,N/A +2013,3,11,12,30,94750,93570,92430,39.19,0,1.04,1.9100000000000001,2.14,2.31,2.44,2.59,2.85,3.17,3.88,264.26,283.46,295.07,304.58,310.81,315.83,320.01,323.15000000000003,327.52,1.36,2.66,3.24,3.87,4.26,4.55,4.72,4.84,5.0600000000000005,N/A,N/A +2013,3,11,13,30,94740,93560,92430,37.95,0,0.76,1.6600000000000001,2.0300000000000002,2.31,2.62,2.92,3.24,3.54,4.0600000000000005,312.26,319.62,323.51,325.97,327.26,328.63,330.57,332.21,333.98,1.3900000000000001,2.41,2.79,3.13,3.52,3.87,4.23,4.5200000000000005,4.86,N/A,N/A +2013,3,11,14,30,94760,93590,92450,29.43,0,0.8200000000000001,1.07,1.17,1.26,1.6600000000000001,2.17,2.81,3.3200000000000003,3.89,304.55,306.71,309.75,313.75,322.19,329.49,328.82,327.98,327.05,4.32,3.99,3.83,3.69,3.54,3.5500000000000003,3.96,4.43,5.15,N/A,N/A +2013,3,11,15,30,94730,93570,92450,23.48,0,1.35,1.6500000000000001,1.75,1.81,1.86,1.93,2.0300000000000002,2.13,2.62,298.07,301.61,303.67,305.35,307.53000000000003,309.81,313.2,315.89,317.12,7.96,7.53,7.33,7.15,6.97,6.8100000000000005,6.63,6.44,6.23,N/A,N/A +2013,3,11,16,30,94700,93550,92440,17.53,0,2.09,2.35,2.36,2.32,2.27,2.22,2.17,2.11,2.0300000000000002,280.89,283.31,284.91,286.36,287.97,289.43,291.11,292.73,296.31,11.4,10.89,10.66,10.46,10.27,10.1,9.92,9.76,9.43,N/A,N/A +2013,3,11,17,30,94630,93500,92400,14.040000000000001,0,2.09,2.5,2.6,2.66,2.69,2.72,2.75,2.7600000000000002,2.8000000000000003,285.92,285.85,285.71,285.53000000000003,285.31,285.1,284.84000000000003,284.58,284.02,14.31,13.76,13.49,13.27,13.06,12.870000000000001,12.67,12.48,12.11,N/A,N/A +2013,3,11,18,30,94570,93440,92350,14.69,0,2.11,2.64,2.84,2.96,3.0700000000000003,3.16,3.24,3.3200000000000003,3.46,301.16,299.93,299.1,298.39,297.74,297.17,296.61,296.09000000000003,295.11,16.51,15.94,15.65,15.41,15.18,14.98,14.76,14.56,14.17,N/A,N/A +2013,3,11,19,30,94490,93370,92290,15.47,0,4.07,4.97,5.24,5.39,5.49,5.57,5.62,5.67,5.74,307.02,306.69,306.43,306.18,305.92,305.69,305.43,305.19,304.72,18.36,17.68,17.39,17.13,16.89,16.68,16.45,16.25,15.83,N/A,N/A +2013,3,11,20,30,94400,93290,92210,14.09,0,3.9,4.75,5,5.14,5.23,5.3,5.36,5.4,5.46,308.36,307.66,307.22,306.82,306.43,306.08,305.73,305.40000000000003,304.73,19.28,18.62,18.34,18.080000000000002,17.85,17.63,17.41,17.2,16.79,N/A,N/A +2013,3,11,21,30,94320,93220,92140,13.540000000000001,0,3.5300000000000002,4.3,4.5200000000000005,4.64,4.73,4.79,4.83,4.87,4.92,310.58,309.7,309.14,308.63,308.15000000000003,307.72,307.28000000000003,306.88,306.07,19.95,19.330000000000002,19.06,18.82,18.59,18.38,18.16,17.96,17.55,N/A,N/A +2013,3,11,22,30,94270,93160,92090,13.34,0,2.75,3.34,3.52,3.61,3.68,3.73,3.77,3.81,3.86,312.25,310.63,309.62,308.73,307.91,307.18,306.42,305.73,304.41,20.36,19.82,19.59,19.36,19.14,18.94,18.72,18.52,18.12,N/A,N/A +2013,3,11,23,30,94230,93130,92060,13.42,0,2.04,2.56,2.74,2.85,2.94,3.02,3.0700000000000003,3.13,3.22,295.12,294.39,293.90000000000003,293.43,293,292.62,292.23,291.89,291.23,20.43,20.04,19.84,19.64,19.43,19.240000000000002,19.03,18.84,18.44,N/A,N/A +2013,3,12,0,30,94220,93120,92040,20.04,0,0.29,0.81,1.1,1.32,1.46,1.55,1.61,1.67,1.77,25.92,354.76,334.14,326.86,321.54,317.51,313.99,310.8,304.85,18.48,19.6,19.650000000000002,19.580000000000002,19.44,19.28,19.09,18.91,18.52,N/A,N/A +2013,3,12,1,30,94220,93110,92030,21.48,0,1.03,1.56,1.48,1.28,1.1300000000000001,1,0.93,0.88,0.73,134.86,124.92,116.48,106.82000000000001,94.36,82.88,72.89,66.23,68.04,16.71,18.1,18.3,18.400000000000002,18.490000000000002,18.57,18.6,18.61,18.41,N/A,N/A +2013,3,12,2,30,94250,93130,92050,21.490000000000002,0,3.09,5.05,5.3100000000000005,5.49,5.59,5.64,5.6000000000000005,5.55,5.3100000000000005,149.87,150.28,150.56,150.88,151.08,151.23,151.12,150.95000000000002,150.21,16.25,17.64,17.78,17.8,17.740000000000002,17.67,17.55,17.43,17.17,N/A,N/A +2013,3,12,3,30,94240,93120,92050,19.61,0,3.99,7.07,8,8.73,9.22,9.58,9.8,9.99,10.3,188,201.91,209.99,215.95000000000002,220.44,224.06,226.59,228.71,231.76,15.88,17.21,17.53,17.75,17.900000000000002,18,18.03,18.03,17.88,N/A,N/A +2013,3,12,4,30,94260,93140,92060,21.05,0,3.22,6.1000000000000005,7,7.75,8.370000000000001,8.9,9.38,9.82,10.61,208.28,215.6,220.76,225.59,229.59,233.04,235.54,237.6,240.04,14.32,15.98,16.32,16.580000000000002,16.75,16.88,16.93,16.96,16.89,N/A,N/A +2013,3,12,5,30,94280,93150,92060,22.66,0,1.06,2.15,2.58,3,3.47,3.94,4.43,4.93,6.05,182.91,203.91,214.72,219.85,225.64000000000001,231.54,236.37,240.77,247.6,12.84,14.4,14.63,14.77,14.81,14.82,14.77,14.74,14.73,N/A,N/A +2013,3,12,6,30,94300,93170,92080,22.900000000000002,0,0.74,0.7000000000000001,0.6900000000000001,0.87,1.32,2.0100000000000002,2.64,3.33,4.8100000000000005,108.66,206.24,236.46,251.57,257.08,259.48,258.82,258.21,257.94,12.36,13.870000000000001,14.13,14.4,14.48,14.5,14.42,14.35,14.280000000000001,N/A,N/A +2013,3,12,7,30,94320,93190,92100,24.45,0,0.77,0.8300000000000001,0.56,0.32,0.49,0.93,1.3800000000000001,1.8900000000000001,2.97,107.77,99.47,125.62,159.53,186.21,228.20000000000002,233.16,238.04,243.78,11.17,13.15,13.61,13.91,13.97,13.96,13.97,13.98,14.07,N/A,N/A +2013,3,12,8,30,94340,93200,92110,26.59,0,3.39,5.5,5.38,4.8500000000000005,4.38,3.98,3.39,2.84,1.83,165.53,177.24,186.01,194.36,202.96,210.06,214.18,215.77,212.1,10.14,12.19,12.86,13.47,13.790000000000001,14.01,14.09,14.13,14,N/A,N/A +2013,3,12,9,30,94330,93190,92100,29.62,0,2.5100000000000002,4.7,5.17,5.3500000000000005,5.22,5.0200000000000005,4.71,4.42,3.91,151.15,165.42000000000002,173.53,179.1,184.5,189.18,194.23000000000002,198.89000000000001,207.81,9.05,11.01,11.700000000000001,12.39,12.950000000000001,13.41,13.71,13.92,14.06,N/A,N/A +2013,3,12,10,30,94350,93210,92100,30.12,0,2.72,4.44,4.84,5.2700000000000005,5.58,5.83,5.92,5.98,6.04,139.4,154.52,163.29,170.35,176.02,180.81,184.94,188.98,197.24,8.4,10.1,10.53,10.91,11.26,11.56,11.85,12.08,12.44,N/A,N/A +2013,3,12,11,30,94370,93220,92120,32.46,0,2.74,4.37,4.75,5.19,5.58,5.92,6.140000000000001,6.3100000000000005,6.49,136.28,152.36,162.94,173.25,179.26,183.8,187.38,190.55,195.99,7.3100000000000005,9.31,10.01,10.66,11.16,11.56,11.86,12.09,12.38,N/A,N/A +2013,3,12,12,30,94400,93260,92150,31.990000000000002,0,2.48,3.88,4.04,4.15,4.3,4.45,4.66,4.89,5.44,146.81,155.93,164.43,174.66,182.9,189.84,195.57,200.25,206.64000000000001,7.49,9.25,9.73,10.22,10.57,10.84,11.03,11.18,11.4,N/A,N/A +2013,3,12,13,30,94420,93280,92170,29.580000000000002,0,2.3000000000000003,3.62,3.72,3.73,3.71,3.7,3.77,3.9,4.42,173.75,181.15,186.96,193.05,199.12,204.27,208.03,210.65,212.82,8.540000000000001,9.96,10.31,10.64,10.88,11.06,11.17,11.24,11.34,N/A,N/A +2013,3,12,14,30,94490,93340,92230,24.67,0,0.7000000000000001,0.42,0.45,0.73,1.21,1.87,2.47,3.08,4.09,66.61,57.92,96.29,203.34,224.02,216.46,214.31,213.21,215.74,9.870000000000001,9.61,9.57,9.6,9.75,9.92,10.19,10.49,11.18,N/A,N/A +2013,3,12,15,30,94550,93410,92310,20.84,0,0.52,0.49,0.42,0.33,0.27,0.23,0.43,0.72,1.52,344.88,338.94,332.04,323.33,291.73,262.98,244.6,232.5,263.8,12.73,12.35,12.18,12.030000000000001,11.88,11.76,11.67,11.700000000000001,12.120000000000001,N/A,N/A +2013,3,12,16,30,94560,93430,92340,15.77,0,1.07,1.23,1.25,1.25,1.25,1.25,1.26,1.28,1.35,296.82,296.39,295.96,295.35,294.54,293.73,292.79,291.95,290.73,16.18,15.71,15.47,15.27,15.08,14.9,14.72,14.55,14.200000000000001,N/A,N/A +2013,3,12,17,30,94550,93430,92350,15,0,1.85,2.21,2.31,2.36,2.39,2.41,2.43,2.45,2.48,289.03000000000003,291.65000000000003,293.12,294.2,295.17,296.02,296.89,297.69,299.39,18.73,18.19,17.93,17.7,17.490000000000002,17.29,17.09,16.9,16.52,N/A,N/A +2013,3,12,18,30,94540,93430,92350,15.120000000000001,0,2.9,3.54,3.73,3.84,3.91,3.97,4.01,4.04,4.1,314.43,314.24,314.08,313.91,313.72,313.54,313.34000000000003,313.15000000000003,312.73,20.7,20.080000000000002,19.8,19.55,19.32,19.11,18.89,18.69,18.29,N/A,N/A +2013,3,12,19,30,94540,93440,92370,14.74,0,4.0600000000000005,4.84,5.05,5.14,5.2,5.23,5.25,5.26,5.26,319.99,319.27,318.76,318.29,317.87,317.47,317.06,316.69,315.91,22.13,21.45,21.16,20.900000000000002,20.66,20.45,20.23,20.02,19.61,N/A,N/A +2013,3,12,20,30,94520,93420,92360,14.44,0,3.5500000000000003,4.32,4.55,4.67,4.76,4.82,4.87,4.91,4.97,323.38,323.03000000000003,322.85,322.69,322.54,322.40000000000003,322.27,322.14,321.88,22.830000000000002,22.18,21.900000000000002,21.64,21.41,21.19,20.97,20.77,20.35,N/A,N/A +2013,3,12,21,30,94500,93400,92340,13.620000000000001,0,4.09,4.98,5.23,5.37,5.45,5.51,5.55,5.58,5.61,319.95,320.67,321.12,321.49,321.82,322.11,322.39,322.65000000000003,323.13,23.54,22.900000000000002,22.63,22.38,22.150000000000002,21.94,21.72,21.51,21.1,N/A,N/A +2013,3,12,22,30,94510,93420,92350,14.26,0,4.04,4.9,5.15,5.25,5.3100000000000005,5.3500000000000005,5.36,5.37,5.36,351.69,351.61,351.5,351.43,351.38,351.33,351.29,351.25,351.18,23.42,22.85,22.61,22.38,22.16,21.95,21.740000000000002,21.54,21.14,N/A,N/A +2013,3,12,23,30,94560,93460,92390,15.39,0,4.58,5.76,6.11,6.29,6.41,6.5,6.55,6.58,6.6000000000000005,11.74,12.06,12.200000000000001,12.3,12.38,12.44,12.5,12.55,12.65,22.650000000000002,22.23,22.03,21.82,21.61,21.41,21.2,21.01,20.61,N/A,N/A +2013,3,13,0,30,94640,93530,92460,19.77,0,5.19,7.88,8.950000000000001,9.75,10.34,10.790000000000001,11.07,11.28,11.4,28.29,28.060000000000002,27.97,27.93,27.96,28.02,28.12,28.23,28.47,19.61,19.7,19.650000000000002,19.53,19.38,19.22,19.03,18.85,18.46,N/A,N/A +2013,3,13,1,30,94720,93600,92520,21.31,0,5.74,8.620000000000001,9.790000000000001,10.8,11.65,12.39,13,13.52,14.22,29.61,29.93,30.17,30.47,30.75,31.02,31.25,31.46,31.78,17.240000000000002,17.31,17.27,17.19,17.09,16.990000000000002,16.84,16.7,16.38,N/A,N/A +2013,3,13,2,30,94800,93680,92580,23.330000000000002,0,6.15,9.02,10.19,11.19,12.09,12.9,13.65,14.33,15.450000000000001,29.77,30.330000000000002,30.84,31.470000000000002,32.14,32.77,33.3,33.76,34.39,15.72,15.76,15.72,15.65,15.57,15.48,15.36,15.24,14.96,N/A,N/A +2013,3,13,3,30,94890,93750,92650,26.11,0,4.84,7.74,9,10.11,11.1,11.99,12.83,13.61,15.01,36.2,35.27,35.01,35.26,35.82,36.44,37.1,37.71,38.79,14.25,14.33,14.3,14.25,14.18,14.120000000000001,14.030000000000001,13.94,13.75,N/A,N/A +2013,3,13,4,30,94990,93850,92740,31.8,0,2.56,2.42,2.94,6.07,8,8.950000000000001,9.88,10.75,12.38,199.67000000000002,70.12,36.93,37.62,38.54,39.410000000000004,40.47,41.56,43.95,13.07,13.33,13.200000000000001,13.21,13.11,12.99,12.91,12.83,12.700000000000001,N/A,N/A +2013,3,13,5,30,95040,93890,92780,34.4,0,2.15,4.0600000000000005,5.23,7.32,8.32,8.84,9.55,10.27,11.89,248.85,336.49,15.35,26.57,32.62,36.15,39.27,42,46.21,12.19,12.540000000000001,12.38,12.280000000000001,12.15,12.02,11.92,11.83,11.66,N/A,N/A +2013,3,13,6,30,95100,93950,92840,37.18,0,2.31,4.55,5.19,5.5,6.38,7.42,8.120000000000001,8.86,10.57,249.35,335.93,13.5,19.1,28.45,38.65,41.79,44.62,49.56,11.01,11.25,11.07,11.02,10.93,10.84,10.74,10.65,10.540000000000001,N/A,N/A +2013,3,13,7,30,95160,94000,92890,39.99,0,1.54,3.38,4.43,5.79,6.46,6.890000000000001,7.59,8.35,10.16,231.1,327.66,12.56,24.77,32.34,37.76,42.28,46.18,52.15,10.07,10.43,10.28,10.19,10.05,9.93,9.84,9.78,9.700000000000001,N/A,N/A +2013,3,13,8,30,95190,94030,92910,43.33,0,1.1300000000000001,2.47,2.83,2.87,3.56,4.46,5.51,6.61,8.96,355.8,16.71,28.77,36.26,38.81,40.71,45.46,50.120000000000005,58.13,8.9,9.52,9.4,9.18,9.07,8.99,8.96,8.96,9.02,N/A,N/A +2013,3,13,9,30,95210,94050,92930,45.47,0,1.47,3.23,3.67,3.66,4.12,4.71,5.61,6.59,8.8,2.02,14.51,24.650000000000002,33.77,39.82,45.08,49.86,54.31,61.75,8.22,8.88,8.74,8.52,8.43,8.38,8.39,8.43,8.55,N/A,N/A +2013,3,13,10,30,95230,94070,92940,46.96,0,1.81,3.45,3.56,3.21,3.5300000000000002,4.0200000000000005,4.8100000000000005,5.71,7.930000000000001,355.07,6.63,16.18,25.080000000000002,31.55,37.54,43.78,49.61,59.45,8.02,8.67,8.43,8.07,7.95,7.890000000000001,7.9,7.930000000000001,8.06,N/A,N/A +2013,3,13,11,30,95270,94100,92970,49.4,0,1.79,3.06,3.0500000000000003,2.79,3.23,3.86,4.68,5.58,7.63,353.64,6.21,16.84,27.310000000000002,35.21,42.74,49.53,55.44,64.09,7.49,8.120000000000001,7.94,7.72,7.68,7.68,7.69,7.71,7.79,N/A,N/A +2013,3,13,12,30,95300,94140,93010,51.910000000000004,0,2.29,3.06,2.87,2.68,3.18,3.84,4.61,5.44,7.3,1.6,16.21,25.91,35.09,42.95,50.620000000000005,56.84,62.050000000000004,69.44,7.17,7.73,7.5200000000000005,7.29,7.2,7.16,7.16,7.19,7.3,N/A,N/A +2013,3,13,13,30,95320,94160,93020,51.59,0,2.19,2.84,2.83,2.96,3.31,3.77,4.68,5.53,7.16,354.46,6.11,23.18,47.92,55.5,59.99,65.94,70.57000000000001,76.11,7,7.29,7.11,6.9,6.87,6.88,6.86,6.88,6.99,N/A,N/A +2013,3,13,14,30,95360,94200,93080,40.59,0,2,2.5300000000000002,2.72,2.86,2.99,3.11,3.25,3.38,3.74,63.02,66.72,68.94,70.89,72.74,74.4,76.10000000000001,77.49,80.11,9.790000000000001,9.39,9.200000000000001,9.02,8.83,8.67,8.49,8.32,7.98,N/A,N/A +2013,3,13,15,30,95360,94210,93090,37.08,0,1.9000000000000001,2.39,2.5500000000000003,2.66,2.75,2.82,2.89,2.95,3.09,93.49,92.46000000000001,91.85000000000001,91.32000000000001,90.82000000000001,90.36,89.88,89.43,88.55,12.15,11.66,11.44,11.24,11.040000000000001,10.86,10.66,10.48,10.120000000000001,N/A,N/A +2013,3,13,16,30,95350,94210,93100,32.81,0,2.11,2.57,2.71,2.79,2.85,2.89,2.93,2.96,3.0100000000000002,108.15,108.11,107.98,107.84,107.7,107.59,107.46000000000001,107.33,107.05,14.64,14.09,13.84,13.620000000000001,13.4,13.21,13.01,12.82,12.43,N/A,N/A +2013,3,13,17,30,95310,94180,93080,29.22,0,2.5500000000000003,3.09,3.25,3.33,3.38,3.42,3.45,3.46,3.49,133.27,133.41,133.44,133.44,133.41,133.36,133.32,133.28,133.21,16.73,16.13,15.860000000000001,15.610000000000001,15.39,15.18,14.97,14.77,14.38,N/A,N/A +2013,3,13,18,30,95260,94130,93040,26.72,0,3.09,3.7800000000000002,3.97,4.07,4.14,4.18,4.21,4.23,4.25,148.02,148.73,149.11,149.37,149.6,149.79,149.97,150.14000000000001,150.46,18.46,17.82,17.53,17.28,17.05,16.84,16.62,16.41,16.01,N/A,N/A +2013,3,13,19,30,95210,94090,93010,23.16,0,3.74,4.6000000000000005,4.8500000000000005,4.98,5.07,5.13,5.17,5.2,5.23,162.15,162.31,162.34,162.34,162.32,162.31,162.3,162.28,162.25,19.95,19.27,18.97,18.72,18.48,18.26,18.04,17.830000000000002,17.42,N/A,N/A +2013,3,13,20,30,95150,94040,92960,22.39,0,4.19,5.14,5.42,5.57,5.67,5.74,5.79,5.82,5.86,168.1,168.5,168.72,168.9,169.05,169.18,169.3,169.4,169.62,20.98,20.29,20,19.740000000000002,19.5,19.29,19.06,18.86,18.44,N/A,N/A +2013,3,13,21,30,95080,93970,92900,20.12,0,4.38,5.39,5.69,5.84,5.95,6.0200000000000005,6.0600000000000005,6.1000000000000005,6.140000000000001,176.37,176.18,176.02,175.88,175.75,175.65,175.53,175.43,175.24,21.59,20.93,20.66,20.400000000000002,20.17,19.96,19.73,19.53,19.12,N/A,N/A +2013,3,13,22,30,95040,93930,92850,18.73,0,4.37,5.4,5.7,5.8500000000000005,5.96,6.03,6.08,6.11,6.15,175.29,174.87,174.63,174.43,174.26,174.11,173.97,173.84,173.61,21.82,21.22,20.98,20.740000000000002,20.52,20.31,20.1,19.900000000000002,19.490000000000002,N/A,N/A +2013,3,13,23,30,95010,93900,92820,20.61,0,4.5,5.65,5.98,6.17,6.29,6.38,6.44,6.48,6.53,170.92000000000002,170.82,170.74,170.64000000000001,170.56,170.47,170.39000000000001,170.31,170.15,21.59,21.16,20.96,20.740000000000002,20.53,20.34,20.13,19.93,19.53,N/A,N/A +2013,3,14,0,30,95000,93880,92800,25.54,0,3.7,6.01,6.67,7.15,7.5,7.7700000000000005,7.96,8.11,8.3,168.45000000000002,168.94,169.3,169.69,170.01,170.28,170.41,170.49,170.39000000000001,19.650000000000002,20.1,20.13,20.06,19.93,19.78,19.59,19.41,19.02,N/A,N/A +2013,3,14,1,30,95020,93900,92820,33.27,0,3.59,6.07,6.78,7.32,7.72,8.040000000000001,8.290000000000001,8.51,8.84,163.38,163.56,163.66,163.64000000000001,163.73,163.85,163.99,164.11,164.18,18.32,19.1,19.26,19.330000000000002,19.31,19.25,19.12,18.990000000000002,18.66,N/A,N/A +2013,3,14,2,30,95050,93920,92840,37.04,0,3.74,6.61,7.79,8.950000000000001,10.03,11.040000000000001,11.77,12.36,12.85,149.39000000000001,150.59,151.45000000000002,152.31,153.18,154.01,154.5,154.88,155.20000000000002,16.95,17.7,17.94,18.13,18.22,18.28,18.240000000000002,18.18,17.91,N/A,N/A +2013,3,14,3,30,95050,93930,92840,40.74,0,4.41,7.53,8.82,9.97,10.950000000000001,11.82,12.51,13.09,13.780000000000001,149.01,151.26,152.37,152.94,153.34,153.66,153.97,154.25,154.74,16.44,16.990000000000002,17.16,17.3,17.39,17.45,17.47,17.46,17.32,N/A,N/A +2013,3,14,4,30,95060,93930,92840,43.18,0,4.76,7.82,9.05,10.14,11.11,11.99,12.81,13.530000000000001,14.65,148.20000000000002,150.52,151.57,151.96,152.18,152.31,152.58,152.87,153.76,15.72,16.15,16.28,16.37,16.43,16.47,16.490000000000002,16.51,16.490000000000002,N/A,N/A +2013,3,14,5,30,95060,93930,92830,47.07,0,4.45,7.47,8.66,9.71,10.67,11.55,12.4,13.18,14.56,145.61,148.81,150.3,151.04,151.56,152,152.56,153.15,154.65,14.81,15.23,15.34,15.4,15.46,15.5,15.540000000000001,15.58,15.66,N/A,N/A +2013,3,14,6,30,95070,93930,92840,51.29,0,3.83,7.11,8.47,9.68,10.73,11.68,12.59,13.450000000000001,15.02,142.41,148,150.62,151.91,152.69,153.28,153.91,154.54,155.98,13.93,14.51,14.63,14.71,14.76,14.790000000000001,14.83,14.870000000000001,14.94,N/A,N/A +2013,3,14,7,30,95090,93950,92850,54,0,4.57,7.86,9.25,10.46,11.51,12.44,13.32,14.14,15.620000000000001,142.21,146.73,148.93,150.15,150.98,151.66,152.43,153.23,155.17000000000002,13.36,13.71,13.77,13.790000000000001,13.790000000000001,13.780000000000001,13.790000000000001,13.8,13.84,N/A,N/A +2013,3,14,8,30,95090,93950,92840,62.29,0,3.7800000000000002,7.04,8.45,9.75,10.89,11.93,12.92,13.86,15.610000000000001,137.29,144.79,148.63,151.05,152.83,154.35,155.79,157.18,159.98,11.84,12.27,12.34,12.39,12.42,12.44,12.47,12.51,12.61,N/A,N/A +2013,3,14,9,30,95080,93940,92830,69.53,0,3.42,6.8,8.28,9.64,10.83,11.9,12.89,13.81,15.450000000000001,136.55,145.93,150.68,153.49,155.42000000000002,157.02,158.37,159.64000000000001,162.03,11.14,11.65,11.71,11.75,11.78,11.790000000000001,11.81,11.82,11.88,N/A,N/A +2013,3,14,10,30,95090,93940,92830,81.43,0,2.2600000000000002,5.3,6.72,8.01,9.11,10.09,11,11.85,13.4,125.23,138.44,145.1,148.29,150.41,152.15,153.73,155.27,158.41,9.82,10.58,10.63,10.68,10.700000000000001,10.73,10.77,10.82,10.96,N/A,N/A +2013,3,14,11,30,95110,93960,92850,83.60000000000001,0,2.5300000000000002,5.37,6.5600000000000005,7.69,8.69,9.61,10.5,11.33,12.950000000000001,124.56,136.48,142.68,146.48,149.16,151.42000000000002,153.45000000000002,155.37,159.1,9.25,10.040000000000001,10.120000000000001,10.17,10.21,10.25,10.3,10.36,10.51,N/A,N/A +2013,3,14,12,30,95140,93980,92870,87,0,1.85,4.46,5.78,7.0200000000000005,8.120000000000001,9.16,10.16,11.13,13,124.81,138.20000000000002,145.19,148.91,151.6,153.92000000000002,156.02,158,161.67000000000002,8.63,9.38,9.47,9.53,9.58,9.63,9.69,9.76,9.93,N/A,N/A +2013,3,14,13,30,95150,93990,92880,90.98,0,1.04,3.23,4.59,5.82,6.92,7.94,8.94,9.92,11.86,124.31,138.51,146.53,150.17000000000002,152.92000000000002,155.34,157.5,159.53,163.14000000000001,8.46,8.9,8.97,9.03,9.08,9.120000000000001,9.18,9.24,9.4,N/A,N/A +2013,3,14,14,30,95170,94030,92910,74.5,0,4.42,5.72,6.18,6.5200000000000005,6.8100000000000005,7.07,7.36,7.66,8.44,156.03,156.8,157.34,157.87,158.48,159.06,159.76,160.43,161.87,11.870000000000001,11.42,11.21,11.02,10.84,10.66,10.49,10.32,10.02,N/A,N/A +2013,3,14,15,30,95180,94040,92930,67.05,0,4.88,6.13,6.5,6.72,6.86,6.96,7.03,7.09,7.22,163.18,163.34,163.43,163.53,163.64000000000001,163.75,163.88,164.02,164.4,14.15,13.540000000000001,13.3,13.08,12.86,12.67,12.47,12.290000000000001,11.92,N/A,N/A +2013,3,14,16,30,95150,94020,92920,58.980000000000004,0,6.0200000000000005,7.57,8.040000000000001,8.31,8.48,8.6,8.68,8.74,8.82,165.62,165.73,165.79,165.84,165.9,165.95000000000002,166.01,166.08,166.22,16.56,15.85,15.57,15.32,15.09,14.89,14.67,14.47,14.08,N/A,N/A +2013,3,14,17,30,95100,93980,92890,50.84,0,6.63,8.3,8.790000000000001,9.07,9.24,9.36,9.43,9.49,9.55,167.74,167.9,168,168.07,168.15,168.21,168.27,168.33,168.45000000000002,18.5,17.73,17.43,17.16,16.92,16.7,16.48,16.28,15.870000000000001,N/A,N/A +2013,3,14,18,30,95060,93940,92860,42.49,0,6.62,8.23,8.69,8.950000000000001,9.11,9.21,9.28,9.33,9.370000000000001,170.72,170.71,170.71,170.69,170.68,170.68,170.67000000000002,170.66,170.66,20.05,19.25,18.94,18.67,18.43,18.21,17.98,17.77,17.36,N/A,N/A +2013,3,14,19,30,95020,93910,92830,37.43,0,6.2700000000000005,7.7700000000000005,8.19,8.4,8.540000000000001,8.63,8.68,8.72,8.74,173.32,173.24,173.18,173.12,173.08,173.04,173,172.97,172.91,21.21,20.42,20.12,19.85,19.6,19.38,19.150000000000002,18.95,18.54,N/A,N/A +2013,3,14,20,30,94950,93850,92770,34.97,0,5.87,7.25,7.640000000000001,7.84,7.97,8.05,8.1,8.13,8.15,171.34,171.36,171.35,171.34,171.33,171.32,171.3,171.29,171.28,21.990000000000002,21.23,20.93,20.67,20.43,20.21,19.98,19.78,19.37,N/A,N/A +2013,3,14,21,30,94900,93790,92720,32.72,0,5.46,6.75,7.1000000000000005,7.3,7.41,7.49,7.53,7.5600000000000005,7.58,169.95000000000002,169.95000000000002,169.95000000000002,169.95000000000002,169.95000000000002,169.95000000000002,169.96,169.96,169.97,22.45,21.740000000000002,21.47,21.21,20.97,20.76,20.54,20.34,19.92,N/A,N/A +2013,3,14,22,30,94850,93740,92670,31.970000000000002,0,5.65,7.0200000000000005,7.4,7.61,7.74,7.82,7.87,7.91,7.95,166.98,167.15,167.24,167.3,167.35,167.4,167.43,167.46,167.52,22.48,21.86,21.61,21.37,21.14,20.93,20.71,20.52,20.11,N/A,N/A +2013,3,14,23,30,94810,93710,92640,35.15,0,5.72,7.21,7.61,7.83,7.98,8.08,8.14,8.19,8.24,165.73,165.84,165.92000000000002,165.98,166.04,166.09,166.15,166.19,166.29,21.93,21.47,21.26,21.04,20.830000000000002,20.64,20.42,20.23,19.830000000000002,N/A,N/A +2013,3,15,0,30,94800,93690,92620,42.33,0,4.01,6.3100000000000005,7.0600000000000005,7.62,8.05,8.4,8.65,8.870000000000001,9.15,156.92000000000002,157.27,157.61,158.03,158.48,158.91,159.33,159.72,160.41,20.29,20.47,20.44,20.35,20.22,20.080000000000002,19.900000000000002,19.73,19.35,N/A,N/A +2013,3,15,1,30,94820,93700,92630,48.230000000000004,0,3.87,6.47,7.44,8.28,9.02,9.67,10.16,10.58,11.02,149.56,150.23,150.59,150.78,151.05,151.35,151.84,152.34,153.62,18.740000000000002,19.080000000000002,19.12,19.12,19.080000000000002,19.04,18.94,18.84,18.57,N/A,N/A +2013,3,15,2,30,94830,93720,92640,54.84,0,4.24,7.07,8.2,9.19,10.06,10.85,11.55,12.16,13.07,146.89000000000001,148.58,149.58,150.37,151.17000000000002,151.95000000000002,152.71,153.41,154.63,17.69,18.05,18.14,18.21,18.25,18.27,18.25,18.22,18.07,N/A,N/A +2013,3,15,3,30,94830,93710,92630,51.660000000000004,0,5.15,8.19,9.39,10.47,11.42,12.27,13.02,13.69,14.75,150.08,152.45000000000002,153.71,154.62,155.36,155.99,156.6,157.19,158.41,17.330000000000002,17.6,17.66,17.71,17.73,17.75,17.740000000000002,17.73,17.650000000000002,N/A,N/A +2013,3,15,4,30,94810,93690,92610,52.800000000000004,0,4.2,7.26,8.51,9.67,10.72,11.68,12.59,13.42,14.790000000000001,149.95000000000002,154.03,156.08,157.3,158.12,158.77,159.38,159.99,161.32,16.44,16.9,17.03,17.13,17.2,17.26,17.3,17.34,17.37,N/A,N/A +2013,3,15,5,30,94810,93680,92600,50.19,0,4.24,7.3500000000000005,8.59,9.69,10.68,11.57,12.41,13.17,14.530000000000001,153.31,157.70000000000002,159.87,161.15,162.05,162.76,163.47,164.17000000000002,165.75,16.11,16.59,16.69,16.76,16.81,16.86,16.89,16.93,16.96,N/A,N/A +2013,3,15,6,30,94800,93680,92590,52.72,0,3.79,6.91,8.120000000000001,9.27,10.28,11.19,12.05,12.85,14.290000000000001,148.48,155.46,159.06,161.36,162.93,164.19,165.18,166.07,167.6,15.3,15.88,16,16.09,16.17,16.23,16.3,16.35,16.45,N/A,N/A +2013,3,15,7,30,94800,93670,92580,59.75,0,3.31,6.67,7.99,9.25,10.38,11.4,12.370000000000001,13.26,14.85,145.27,154.07,158.48,161.04,162.70000000000002,163.99,164.99,165.9,167.51,14.26,15.120000000000001,15.280000000000001,15.41,15.530000000000001,15.63,15.74,15.83,16.01,N/A,N/A +2013,3,15,8,30,94770,93640,92550,58.36,0,3.8200000000000003,7.0600000000000005,8.38,9.64,10.77,11.8,12.77,13.68,15.31,142.01,150.47,154.68,157.26,158.97,160.33,161.42000000000002,162.44,164.38,13.8,14.46,14.63,14.76,14.86,14.96,15.040000000000001,15.120000000000001,15.26,N/A,N/A +2013,3,15,9,30,94740,93610,92510,62.620000000000005,0,3.7600000000000002,7.09,8.48,9.81,11.01,12.1,13.1,14.02,15.58,139.66,149.19,153.93,156.99,159.15,160.95000000000002,162.45000000000002,163.82,166.24,12.85,13.46,13.59,13.71,13.8,13.89,13.98,14.06,14.24,N/A,N/A +2013,3,15,10,30,94710,93570,92470,73.3,0,3.7800000000000002,6.73,7.92,9.02,10.01,10.9,11.72,12.48,13.780000000000001,136.19,144.85,149.34,152.32,154.48,156.27,157.8,159.22,161.95000000000002,11.950000000000001,12.450000000000001,12.55,12.620000000000001,12.67,12.700000000000001,12.73,12.76,12.85,N/A,N/A +2013,3,15,11,30,94710,93570,92470,86.99,0,2.45,5.43,6.71,7.91,8.96,9.92,10.78,11.58,13.01,134.92000000000002,147.22,153.23,156.46,158.51,160.14000000000001,161.4,162.6,164.96,10.790000000000001,11.55,11.64,11.71,11.75,11.8,11.85,11.9,12.07,N/A,N/A +2013,3,15,12,30,94720,93570,92470,91.44,0,1.77,4.01,5.05,6.09,7.03,7.9,8.700000000000001,9.46,10.82,131.82,144.62,151.23,155.23,157.81,159.88,161.37,162.71,165.04,9.74,10.56,10.700000000000001,10.8,10.86,10.9,10.93,10.97,11.05,N/A,N/A +2013,3,15,13,30,94700,93560,92450,94.85000000000001,0,1.86,4.08,5.03,5.93,6.74,7.49,8.23,8.94,10.3,143.1,152.53,157.42000000000002,160.53,162.64000000000001,164.37,165.68,166.83,168.66,9.76,10.200000000000001,10.27,10.32,10.33,10.33,10.33,10.34,10.4,N/A,N/A +2013,3,15,14,30,94690,93560,92450,78.15,0,4.12,5.29,5.7,6,6.25,6.46,6.71,7.01,8.07,159.04,160.8,161.9,162.93,163.95000000000002,164.89000000000001,165.89000000000001,166.95000000000002,169.47,12.85,12.41,12.22,12.040000000000001,11.86,11.71,11.540000000000001,11.41,11.28,N/A,N/A +2013,3,15,15,30,94660,93530,92440,66.31,0,5.04,6.33,6.69,6.91,7.03,7.12,7.18,7.23,7.390000000000001,164.81,165.29,165.56,165.79,166.02,166.23,166.48,166.73,167.37,15.35,14.74,14.51,14.290000000000001,14.09,13.9,13.71,13.540000000000001,13.19,N/A,N/A +2013,3,15,16,30,94600,93480,92400,54.93,0,5.69,7.07,7.44,7.640000000000001,7.74,7.8,7.82,7.83,7.8100000000000005,171.77,171.75,171.75,171.75,171.77,171.78,171.81,171.84,171.95000000000002,17.82,17.12,16.85,16.61,16.39,16.19,15.99,15.8,15.43,N/A,N/A +2013,3,15,17,30,94530,93420,92340,44.35,0,6.18,7.66,8.06,8.26,8.38,8.45,8.47,8.48,8.46,173.09,173.02,173,172.99,172.99,172.99,173.01,173.02,173.08,20.080000000000002,19.32,19.03,18.78,18.54,18.34,18.13,17.93,17.54,N/A,N/A +2013,3,15,18,30,94460,93360,92290,37.88,0,5.95,7.34,7.71,7.890000000000001,7.99,8.06,8.08,8.09,8.06,173.56,173.69,173.79,173.88,173.97,174.06,174.16,174.26,174.48,21.79,21,20.7,20.44,20.2,19.990000000000002,19.77,19.57,19.16,N/A,N/A +2013,3,15,19,30,94390,93290,92230,32.57,0,5.73,7.0600000000000005,7.42,7.6000000000000005,7.71,7.78,7.8100000000000005,7.83,7.83,176.97,177.23,177.39000000000001,177.54,177.69,177.84,178.01,178.16,178.51,23.21,22.44,22.14,21.88,21.63,21.42,21.19,20.990000000000002,20.580000000000002,N/A,N/A +2013,3,15,20,30,94310,93220,92160,28.76,0,5.49,6.78,7.140000000000001,7.3500000000000005,7.48,7.5600000000000005,7.61,7.65,7.69,177.13,177.93,178.4,178.78,179.12,179.42000000000002,179.71,179.98,180.51,24.32,23.57,23.28,23.02,22.78,22.56,22.330000000000002,22.13,21.72,N/A,N/A +2013,3,15,21,30,94240,93150,92100,26.560000000000002,0,5.45,6.73,7.1000000000000005,7.32,7.48,7.58,7.66,7.72,7.78,174.57,175.85,176.56,177.11,177.55,177.93,178.28,178.58,179.15,24.990000000000002,24.3,24.03,23.77,23.53,23.31,23.09,22.89,22.48,N/A,N/A +2013,3,15,22,30,94180,93090,92040,28,0,6.16,7.67,8.08,8.31,8.46,8.55,8.61,8.65,8.68,169.98,170.93,171.49,171.95000000000002,172.36,172.73,173.1,173.43,174.07,24.92,24.3,24.05,23.81,23.59,23.38,23.16,22.96,22.56,N/A,N/A +2013,3,15,23,30,94120,93030,91980,29.080000000000002,0,6.05,7.640000000000001,8.07,8.32,8.47,8.58,8.65,8.700000000000001,8.75,170.53,170.67000000000002,170.77,170.86,170.94,171.02,171.1,171.17000000000002,171.33,24.48,24.05,23.84,23.63,23.42,23.22,23.02,22.82,22.42,N/A,N/A +2013,3,16,0,30,94100,93010,91960,35.730000000000004,0,4.03,6.44,7.25,7.91,8.45,8.91,9.28,9.620000000000001,10.120000000000001,158.45000000000002,159.49,160.25,161.04,161.77,162.45000000000002,163.04,163.57,164.45000000000002,22.51,22.75,22.740000000000002,22.67,22.56,22.44,22.28,22.13,21.77,N/A,N/A +2013,3,16,1,30,94100,93000,91940,40.9,0,3.94,6.54,7.47,8.28,8.99,9.620000000000001,10.200000000000001,10.72,11.59,148.76,152.03,153.95000000000002,155.32,156.43,157.38,158.21,158.96,160.22,20.63,21.07,21.16,21.21,21.21,21.2,21.14,21.080000000000002,20.86,N/A,N/A +2013,3,16,2,30,94070,92970,91910,40.39,0,5.15,8.17,9.370000000000001,10.44,11.34,12.14,12.82,13.42,14.33,149.28,152.85,154.83,156.19,157.18,157.97,158.63,159.24,160.39000000000001,20.05,20.330000000000002,20.38,20.42,20.42,20.41,20.38,20.330000000000002,20.19,N/A,N/A +2013,3,16,3,30,94050,92950,91880,41.54,0,5.41,8.51,9.74,10.86,11.84,12.72,13.530000000000001,14.280000000000001,15.56,151.76,155.08,156.93,158.26,159.28,160.14000000000001,160.9,161.61,163.03,19.36,19.61,19.66,19.68,19.68,19.67,19.650000000000002,19.63,19.55,N/A,N/A +2013,3,16,4,30,94010,92900,91840,40.99,0,5.91,9.120000000000001,10.43,11.64,12.69,13.64,14.51,15.31,16.7,153.65,157.05,158.96,160.39000000000001,161.45000000000002,162.32,163.01,163.64000000000001,164.73,18.77,18.990000000000002,19.02,19.04,19.04,19.04,19.02,19,18.94,N/A,N/A +2013,3,16,5,30,93960,92850,91780,42.88,0,7.2700000000000005,10.58,11.85,12.99,14,14.9,15.75,16.53,17.93,155.55,157.85,159.16,160.25,161.16,161.96,162.70000000000002,163.39000000000001,164.71,18.26,18.38,18.39,18.38,18.37,18.36,18.34,18.330000000000002,18.3,N/A,N/A +2013,3,16,6,30,93930,92820,91750,44.45,0,7.9,11.31,12.59,13.72,14.72,15.59,16.42,17.17,18.47,156.13,158.11,159.28,160.26,161.08,161.8,162.48,163.11,164.39000000000001,17.82,17.91,17.900000000000002,17.88,17.87,17.85,17.84,17.84,17.830000000000002,N/A,N/A +2013,3,16,7,30,93900,92790,91720,45.050000000000004,0,8.17,11.620000000000001,12.89,14.01,15.01,15.89,16.73,17.490000000000002,18.86,156.96,158.81,159.91,160.83,161.65,162.38,163.09,163.75,165.07,17.39,17.47,17.45,17.44,17.43,17.42,17.43,17.44,17.48,N/A,N/A +2013,3,16,8,30,93860,92750,91680,45.54,0,7.76,11.22,12.55,13.74,14.77,15.69,16.55,17.34,18.75,157.71,159.89000000000001,161.17000000000002,162.25,163.17000000000002,163.99,164.78,165.52,167,17.02,17.12,17.12,17.11,17.1,17.1,17.12,17.13,17.18,N/A,N/A +2013,3,16,9,30,93850,92740,91660,49.08,0,5.48,8.53,9.78,10.9,11.84,12.67,13.46,14.19,15.57,152.79,156.17000000000002,158.1,159.52,160.56,161.41,162.18,162.93,164.62,15.64,15.83,15.84,15.84,15.83,15.81,15.8,15.8,15.81,N/A,N/A +2013,3,16,10,30,93810,92690,91610,53.870000000000005,0,3.64,6.62,7.8500000000000005,9,10.03,10.97,11.9,12.77,14.280000000000001,147.43,153.69,157.05,159.27,160.94,162.37,163.70000000000002,164.96,167.44,13.8,14.280000000000001,14.38,14.46,14.530000000000001,14.59,14.69,14.780000000000001,15.030000000000001,N/A,N/A +2013,3,16,11,30,93810,92690,91600,54.36,0,4.03,6.75,7.79,8.73,9.56,10.290000000000001,10.98,11.59,12.47,155.22,157.94,159.51,160.69,161.73,162.67000000000002,163.79,164.97,167.98,13.14,13.49,13.52,13.530000000000001,13.530000000000001,13.530000000000001,13.56,13.61,13.86,N/A,N/A +2013,3,16,12,30,93790,92670,91580,63.49,0,4.04,6.75,7.8,8.75,9.58,10.33,10.93,11.4,11.67,155.81,158.31,159.92000000000002,161.34,162.79,164.17000000000002,165.74,167.28,170.76,12.16,12.48,12.540000000000001,12.58,12.65,12.72,12.89,13.09,13.73,N/A,N/A +2013,3,16,13,30,93770,92640,91560,66.85,0,4.25,6.46,7.3500000000000005,8.15,8.85,9.48,10.02,10.41,10.46,158.88,160.75,162.01,163.23,164.56,165.86,167.36,168.94,173.20000000000002,12.13,12.120000000000001,12.08,12.05,12.06,12.1,12.26,12.5,13.36,N/A,N/A +2013,3,16,14,30,93780,92650,91570,63.46,0,4.6000000000000005,5.66,5.97,6.16,6.44,6.73,7.22,7.69,8.52,158.64000000000001,159.66,160.42000000000002,161.21,162.36,163.55,165.17000000000002,167.22,173.57,13.59,13.14,12.96,12.8,12.64,12.5,12.43,12.48,13.18,N/A,N/A +2013,3,16,15,30,93760,92640,91570,54.050000000000004,0,4.63,5.64,5.89,5.99,6.0200000000000005,6.04,6.0200000000000005,6.04,6.32,161.27,162.13,162.73,163.32,164.04,164.71,165.81,167.02,171.04,16.39,15.8,15.57,15.370000000000001,15.19,15.02,14.85,14.700000000000001,14.450000000000001,N/A,N/A +2013,3,16,16,30,93710,92610,91540,39.26,0,4.91,6,6.29,6.42,6.48,6.5,6.49,6.47,6.4,172.20000000000002,172.82,173.25,173.70000000000002,174.20000000000002,174.68,175.29,175.9,177.55,19.93,19.26,18.990000000000002,18.76,18.55,18.36,18.17,17.990000000000002,17.63,N/A,N/A +2013,3,16,17,30,93640,92550,91490,32.56,0,5.23,6.38,6.68,6.8100000000000005,6.86,6.88,6.86,6.83,6.73,178.07,178.31,178.5,178.73,179,179.28,179.64000000000001,179.98,180.91,22.43,21.7,21.42,21.17,20.95,20.75,20.55,20.36,19.98,N/A,N/A +2013,3,16,18,30,93560,92490,91440,27.13,0,5.25,6.4,6.71,6.8500000000000005,6.92,6.94,6.93,6.92,6.83,181.08,181.54,181.87,182.21,182.55,182.88,183.26,183.61,184.45000000000002,24.93,24.18,23.89,23.63,23.41,23.2,22.990000000000002,22.8,22.41,N/A,N/A +2013,3,16,19,30,93500,92430,91390,23.79,0,5.54,6.78,7.11,7.2700000000000005,7.3500000000000005,7.38,7.38,7.37,7.29,179.62,180.38,180.87,181.35,181.81,182.26,182.73,183.17000000000002,184.20000000000002,26.89,26.13,25.84,25.580000000000002,25.34,25.13,24.92,24.73,24.34,N/A,N/A +2013,3,16,20,30,93420,92360,91330,19.25,0,5.69,7,7.37,7.55,7.66,7.72,7.74,7.75,7.72,182.98,183.66,184.1,184.54,184.95000000000002,185.35,185.76,186.15,186.99,28.63,27.89,27.6,27.34,27.11,26.89,26.67,26.48,26.080000000000002,N/A,N/A +2013,3,16,21,30,93340,92280,91250,17.45,0,5.93,7.32,7.71,7.890000000000001,8,8.05,8.06,8.06,8,182.56,183.02,183.32,183.61,183.9,184.18,184.48,184.75,185.37,29.560000000000002,28.86,28.59,28.34,28.11,27.900000000000002,27.69,27.5,27.1,N/A,N/A +2013,3,16,22,30,93280,92220,91190,18.39,0,6.96,8.66,9.120000000000001,9.36,9.5,9.57,9.6,9.6,9.55,177.36,177.79,178.08,178.37,178.63,178.89000000000001,179.16,179.42000000000002,180,29.45,28.85,28.61,28.37,28.150000000000002,27.95,27.740000000000002,27.55,27.16,N/A,N/A +2013,3,16,23,30,93260,92200,91160,23.17,0,6.75,8.56,9.03,9.31,9.48,9.59,9.64,9.68,9.68,171.31,171.83,172.18,172.46,172.70000000000002,172.9,173.11,173.29,173.69,28.03,27.62,27.43,27.21,27.01,26.82,26.62,26.43,26.04,N/A,N/A +2013,3,17,0,30,93250,92180,91150,32.44,0,3.29,6.07,7.07,8,8.790000000000001,9.47,10.040000000000001,10.53,11.27,151.97,158.74,162.54,164.84,166.42000000000002,167.52,168.24,168.82,169.48,25.490000000000002,25.89,25.84,25.77,25.68,25.580000000000002,25.44,25.310000000000002,24.98,N/A,N/A +2013,3,17,1,30,93310,92230,91190,37.87,0,3.13,4.73,5.05,5.99,7.03,8.19,9.23,10.22,11.76,100.93,123.73,136.99,148.72,156.37,161.02,163.47,165.27,166.81,23.830000000000002,24.62,24.55,24.45,24.35,24.26,24.150000000000002,24.05,23.8,N/A,N/A +2013,3,17,2,30,93320,92240,91200,34.76,0,6.28,9.46,10.68,11.83,12.81,13.68,14.43,15.11,16.15,150.07,154.16,156.48,158.22,159.56,160.65,161.53,162.32,163.73,23.26,23.43,23.43,23.41,23.37,23.32,23.26,23.19,23.01,N/A,N/A +2013,3,17,3,30,93330,92250,91200,38.800000000000004,0,5.82,8.82,9.99,11.13,12.15,13.1,14,14.85,16.39,146.97,151.58,154.32,156.47,158.17000000000002,159.6,160.78,161.85,163.61,21.72,21.990000000000002,22.05,22.080000000000002,22.1,22.09,22.07,22.04,21.93,N/A,N/A +2013,3,17,4,30,93310,92230,91180,40.27,0,6.45,9.52,10.74,11.94,13.1,14.200000000000001,15.27,16.27,18.13,146.96,151.32,154.03,156.38,158.36,160.11,161.5,162.75,164.73,20.76,21.05,21.13,21.21,21.29,21.36,21.41,21.45,21.52,N/A,N/A +2013,3,17,5,30,93300,92210,91160,40.03,0,6.890000000000001,10.24,11.620000000000001,12.96,14.17,15.290000000000001,16.34,17.31,18.900000000000002,154.42000000000002,157.45000000000002,159.31,160.83,162.08,163.13,164.06,164.93,166.6,20.34,20.63,20.71,20.8,20.87,20.94,21.01,21.080000000000002,21.23,N/A,N/A +2013,3,17,6,30,93320,92230,91180,40.730000000000004,0,6.86,10.21,11.63,12.98,14.21,15.35,16.44,17.44,18.88,156.67000000000002,159.14000000000001,160.74,162.12,163.31,164.36,165.33,166.24,168.01,19.84,20.09,20.150000000000002,20.2,20.240000000000002,20.28,20.35,20.42,20.62,N/A,N/A +2013,3,17,7,30,93360,92270,91210,43.53,0,5.19,8.42,9.81,11.11,12.31,13.43,14.49,15.46,16.5,161.81,163.51,164.53,165.29,166.02,166.71,167.45000000000002,168.18,169.9,18.77,19.17,19.26,19.31,19.37,19.43,19.51,19.61,19.92,N/A,N/A +2013,3,17,8,30,93400,92300,91240,52.42,0,3.56,6.84,8.11,9.34,10.38,11.3,11.92,12.4,12.32,170.54,172.84,173.99,174.46,174.68,174.75,174.99,175.25,176.36,17.44,18.34,18.43,18.52,18.61,18.71,18.86,19.01,19.36,N/A,N/A +2013,3,17,9,30,93390,92290,91220,48.74,0,4.75,7.58,8.73,9.86,10.72,11.4,11.67,11.74,10.64,193.21,190.79,189.04,187.6,186.66,186,185.86,185.98,188.65,17.16,17.59,17.7,17.84,18.02,18.2,18.57,18.92,19.63,N/A,N/A +2013,3,17,10,30,93400,92300,91230,63.050000000000004,0,2.39,4.32,4.83,5.2,5.16,4.94,4.71,4.53,4.3500000000000005,149.20000000000002,164.5,173.33,178.68,183.89000000000001,188.42000000000002,194.18,199.34,209.21,14.71,16.07,16.4,16.77,17.09,17.38,17.59,17.77,17.98,N/A,N/A +2013,3,17,11,30,93420,92310,91240,68.3,0,2.1,3.69,3.7600000000000002,3.43,3.29,3.21,3.16,3.1,2.85,174.35,178.4,183.07,189.32,196.11,202.57,207.45000000000002,211.3,214.79,13.63,15.38,15.82,16.09,16.22,16.29,16.34,16.39,16.54,N/A,N/A +2013,3,17,12,30,93430,92320,91250,52.2,0,1.61,1.83,1.62,1.49,1.45,1.45,1.75,2.12,3.29,196.98000000000002,212.92000000000002,230.22,256.03000000000003,265.5,268.9,258.87,249.4,245.93,15.030000000000001,16.16,16.02,15.72,15.4,15.1,15.33,15.71,17.3,N/A,N/A +2013,3,17,13,30,93510,92390,91310,69.24,0,1.3900000000000001,0.71,0.45,0.38,0.53,0.9,1.32,1.83,2.9,91.55,105.3,143.76,213.16,240.87,261.46,273.31,284.77,291.01,11.790000000000001,13.280000000000001,13.8,14.02,14.52,15.09,15.72,16.3,17.54,N/A,N/A +2013,3,17,14,30,93540,92420,91350,50.97,0,0.7000000000000001,0.89,1.2,2.14,2.95,3.5500000000000003,4.0600000000000005,4.53,5.26,259.29,258.85,264.06,283.51,295.90000000000003,301.7,305.63,308.90000000000003,310.83,14.59,14.38,14.48,14.86,15.41,16,16.32,16.57,16.94,N/A,N/A +2013,3,17,15,30,93530,92420,91360,25.59,0,2.67,3.29,3.52,3.67,3.81,3.93,4.08,4.25,4.9,270.24,273.17,275.08,276.78000000000003,278.34000000000003,279.79,281.64,283.48,287.21,19.03,18.55,18.36,18.18,18.03,17.89,17.740000000000002,17.62,17.43,N/A,N/A +2013,3,17,16,30,93550,92460,91400,22.71,0,3.59,4.28,4.47,4.54,4.57,4.58,4.57,4.5600000000000005,4.5200000000000005,304.81,304.73,304.63,304.45,304.25,304.05,303.82,303.61,303.13,21.01,20.38,20.12,19.89,19.68,19.48,19.28,19.09,18.72,N/A,N/A +2013,3,17,17,30,93530,92440,91380,32.36,0,2.75,3.2800000000000002,3.42,3.48,3.5100000000000002,3.5300000000000002,3.5300000000000002,3.54,3.5300000000000002,317.67,317.2,316.87,316.5,316.13,315.76,315.34000000000003,314.95,313.98,22.07,21.46,21.18,20.94,20.71,20.51,20.3,20.11,19.73,N/A,N/A +2013,3,17,18,30,93490,92400,91350,28.97,0,2.92,3.5,3.68,3.7600000000000002,3.81,3.85,3.87,3.89,3.92,318.7,317.69,316.99,316.33,315.72,315.15000000000003,314.54,313.98,312.77,23.650000000000002,23.03,22.73,22.48,22.25,22.04,21.830000000000002,21.63,21.240000000000002,N/A,N/A +2013,3,17,19,30,93440,92360,91320,26.98,0,2.41,2.87,3.0100000000000002,3.0700000000000003,3.13,3.16,3.19,3.22,3.2600000000000002,317.77,315.66,314.28000000000003,313.02,311.87,310.81,309.75,308.77,306.74,25.11,24.51,24.22,23.96,23.740000000000002,23.53,23.31,23.12,22.72,N/A,N/A +2013,3,17,20,30,93380,92310,91270,21.36,0,2.5100000000000002,3.02,3.21,3.33,3.42,3.49,3.56,3.63,3.74,307.38,306.01,305.02,304.17,303.44,302.77,302.14,301.55,300.45,26.900000000000002,26.29,26.02,25.76,25.53,25.310000000000002,25.1,24.900000000000002,24.490000000000002,N/A,N/A +2013,3,17,21,30,93270,92210,91180,14.780000000000001,0,4.49,5.53,5.86,6.05,6.19,6.29,6.38,6.45,6.5600000000000005,297.86,297.49,297.21,296.91,296.62,296.35,296.07,295.82,295.32,28.57,27.900000000000002,27.64,27.39,27.16,26.94,26.72,26.52,26.11,N/A,N/A +2013,3,17,22,30,93210,92150,91120,14.52,0,3.95,4.9,5.18,5.3500000000000005,5.48,5.58,5.66,5.73,5.84,301.86,300.64,299.90000000000003,299.19,298.54,297.95,297.37,296.84000000000003,295.8,28.75,28.18,27.95,27.72,27.5,27.3,27.080000000000002,26.89,26.48,N/A,N/A +2013,3,17,23,30,93170,92110,91090,13.08,0,3.5500000000000003,4.59,4.94,5.18,5.36,5.51,5.64,5.75,5.95,297.63,295.87,294.87,293.94,293.11,292.34000000000003,291.61,290.93,289.64,28.900000000000002,28.5,28.310000000000002,28.11,27.91,27.72,27.52,27.34,26.95,N/A,N/A +2013,3,18,0,30,93190,92130,91100,15.58,0,3.13,6.5,7.83,8.790000000000001,9.55,10.14,10.700000000000001,11.24,12.22,274.75,278.3,281.09000000000003,283.49,285.43,287,288.33,289.49,290.51,27.04,28.26,28.310000000000002,28.26,28.18,28.060000000000002,27.88,27.7,27.28,N/A,N/A +2013,3,18,1,30,93260,92190,91150,13.83,0,2.11,4.2700000000000005,5.2700000000000005,6.66,8.07,9.540000000000001,10.75,11.8,12.85,274.17,285.18,292.44,294.74,295.8,295.48,295.11,294.73,294.72,23.38,24.92,25.28,25.78,26.23,26.67,26.93,27.12,27,N/A,N/A +2013,3,18,2,30,93320,92240,91200,16.38,0,1.75,3.6,4.42,5.25,6.18,7.2700000000000005,8.21,9.07,10.48,292.92,289.99,288.06,287.07,286.86,287.39,287.72,287.97,288.15000000000003,21.93,23.7,24.150000000000002,24.62,25.13,25.69,26.01,26.21,26.330000000000002,N/A,N/A +2013,3,18,3,30,93390,92300,91260,18.3,0,0.78,1.8800000000000001,2.63,3.68,4.7,5.67,6.63,7.6000000000000005,9.370000000000001,319.77,294.14,273.96,271.38,270.2,270.74,272.16,273.98,277.61,20.6,22.12,22.38,22.69,23.03,23.42,23.740000000000002,24.02,24.37,N/A,N/A +2013,3,18,4,30,93390,92310,91260,18.53,0,0.65,1.6500000000000001,2.42,3.7800000000000002,5.16,6.51,7.73,8.92,10.93,217.06,240.64000000000001,259.11,272.26,279.18,279.48,280.21,281.07,283.15000000000003,20.71,22.080000000000002,22.21,22.45,22.68,22.91,23.17,23.41,23.85,N/A,N/A +2013,3,18,5,30,93450,92360,91310,19.77,0,1.1500000000000001,2.69,3.7,4.96,6.36,7.99,9.71,11.51,14.540000000000001,267.21,281.46,292.88,292.98,293.35,294.12,294.46,294.59000000000003,295.55,19.68,21.42,21.650000000000002,21.75,21.97,22.32,22.69,23.04,23.53,N/A,N/A +2013,3,18,6,30,93460,92370,91310,19.29,0,4.19,6.01,6.3100000000000005,6.87,7.55,8.3,9.11,9.91,11.33,304.18,298.31,295.76,294.93,294.7,294.78000000000003,295.48,296.32,299.39,20.23,21.400000000000002,21.55,21.53,21.62,21.76,21.89,22.01,22.26,N/A,N/A +2013,3,18,7,30,93530,92440,91390,24.650000000000002,0,3.61,5.3500000000000005,5.49,6.15,6.84,7.58,8.540000000000001,9.55,11.47,307.06,298.56,293.49,291.05,290.49,291.54,291.2,290.43,289.8,19.2,21.18,21.47,21.32,21.330000000000002,21.48,21.63,21.78,22.26,N/A,N/A +2013,3,18,8,30,93580,92480,91420,24.04,0,2.98,3.89,3.8200000000000003,4.38,5.5600000000000005,7.5,9.36,11.22,14.35,312.05,294.06,284.63,279,278.04,281.02,282.3,283.1,285.38,18.55,20.3,20.32,19.81,19.7,19.84,20.12,20.41,21.03,N/A,N/A +2013,3,18,9,30,93570,92470,91420,27.01,0,3.35,5.41,5.95,6.8100000000000005,8.09,9.620000000000001,11.200000000000001,12.76,15.34,309.87,297.71,290.83,284.93,282.40000000000003,281.37,282.14,283.15000000000003,286.14,18.43,20.13,20.21,20.07,20.16,20.32,20.68,21.02,21.580000000000002,N/A,N/A +2013,3,18,10,30,93640,92540,91480,28.62,0,3.56,5.3,5.4,5.7,6.38,7.36,8.6,9.9,12.31,334.91,319.38,308.56,296.5,289.6,285.58,284.31,283.73,285.08,18.07,20.21,20.31,19.67,19.400000000000002,19.34,19.46,19.6,19.98,N/A,N/A +2013,3,18,11,30,93680,92580,91520,31.23,0,3.8000000000000003,6.9,7.71,8.19,8.63,9.06,9.56,10.08,11.68,304.11,298.67,293.36,285.38,283.59000000000003,285.27,286.59000000000003,287.76,289.77,17.46,19.55,19.740000000000002,19.37,19.26,19.29,19.32,19.35,19.53,N/A,N/A +2013,3,18,12,30,93750,92640,91580,34.86,0,3.34,6.890000000000001,8.27,8.86,9.17,9.32,9.66,10.06,11.72,324.15000000000003,317.11,311.65000000000003,307.68,304.19,301.11,298.44,296.11,293.85,16.080000000000002,18.26,18.72,18.89,18.93,18.900000000000002,18.830000000000002,18.75,18.7,N/A,N/A +2013,3,18,13,30,93840,92730,91660,36.2,0,0.81,2.56,3.98,5.2,6.17,6.92,7.57,8.16,9.25,245.17000000000002,291.48,330.47,332.86,332.82,331.06,327.94,324.71,318.62,15.69,16.82,16.98,17.11,17.2,17.25,17.28,17.29,17.25,N/A,N/A +2013,3,18,14,30,93870,92760,91690,26.67,0,3.86,5.13,5.8,6.65,7.51,8.370000000000001,9.42,10.44,11.92,295.12,299.71,303.07,306.83,310.13,313.15000000000003,313.22,312.94,311.93,18.400000000000002,18.06,17.92,17.79,17.650000000000002,17.51,17.44,17.38,17.29,N/A,N/A +2013,3,18,15,30,93970,92870,91800,22.66,0,6.91,8.6,9.21,9.58,9.84,10.03,10.18,10.31,10.57,332.39,331.98,331.71,331.44,331.18,330.92,330.62,330.34000000000003,329.6,20.740000000000002,20.14,19.91,19.68,19.47,19.28,19.1,18.93,18.59,N/A,N/A +2013,3,18,16,30,93980,92880,91820,18.56,0,5.72,6.99,7.41,7.62,7.76,7.84,7.890000000000001,7.930000000000001,7.95,323.63,323.79,323.89,323.96,324.04,324.1,324.17,324.24,324.39,22.34,21.66,21.39,21.14,20.92,20.71,20.5,20.31,19.92,N/A,N/A +2013,3,18,17,30,93990,92900,91840,15.74,0,4.05,4.9,5.23,5.39,5.51,5.58,5.64,5.69,5.76,331.26,331.44,331.64,331.78000000000003,331.90000000000003,332,332.09000000000003,332.18,332.34000000000003,23.92,23.26,22.97,22.7,22.47,22.25,22.04,21.830000000000002,21.43,N/A,N/A +2013,3,18,18,30,93930,92850,91800,12.370000000000001,0,4.5600000000000005,5.61,5.94,6.12,6.24,6.34,6.41,6.46,6.54,324.09000000000003,324.6,324.89,325.11,325.28000000000003,325.44,325.59000000000003,325.73,325.96,25.23,24.52,24.23,23.97,23.73,23.51,23.28,23.080000000000002,22.66,N/A,N/A +2013,3,18,19,30,93910,92830,91780,11.290000000000001,0,4.09,5,5.3,5.47,5.58,5.67,5.74,5.8,5.87,323.01,323.04,323.08,323.08,323.06,323.04,323.01,322.98,322.90000000000003,26.05,25.36,25.07,24.8,24.560000000000002,24.34,24.11,23.900000000000002,23.48,N/A,N/A +2013,3,18,20,30,93910,92840,91790,8.44,0,4.16,5.03,5.34,5.49,5.6000000000000005,5.68,5.74,5.79,5.8500000000000005,317.69,317.79,317.88,317.95,318,318.04,318.07,318.09000000000003,318.15000000000003,26.6,25.92,25.63,25.37,25.13,24.900000000000002,24.68,24.47,24.05,N/A,N/A +2013,3,18,21,30,93880,92810,91760,7.21,0,4.11,4.96,5.21,5.33,5.41,5.46,5.5,5.5200000000000005,5.55,308.17,309.15000000000003,309.75,310.19,310.57,310.88,311.17,311.43,311.92,26.82,26.17,25.91,25.66,25.43,25.21,25,24.79,24.38,N/A,N/A +2013,3,18,22,30,93870,92800,91750,8.19,0,2.91,3.56,3.79,3.92,4.01,4.08,4.14,4.18,4.25,324.84000000000003,324.3,324.06,323.90000000000003,323.79,323.69,323.62,323.56,323.46,26.87,26.330000000000002,26.09,25.85,25.64,25.43,25.21,25.01,24.6,N/A,N/A +2013,3,18,23,30,93860,92780,91740,9.200000000000001,0,3.04,3.74,3.94,4.05,4.11,4.16,4.19,4.22,4.24,328,327.61,327.39,327.23,327.1,326.99,326.88,326.79,326.61,26.580000000000002,26.17,25.98,25.77,25.560000000000002,25.37,25.16,24.97,24.57,N/A,N/A +2013,3,19,0,30,93870,92800,91750,12.85,0,1.97,3.45,3.71,3.67,3.63,3.62,3.59,3.56,3.5,350.88,351.5,351.84000000000003,352.12,352.37,352.6,352.81,352.99,353.33,25.04,25.8,25.77,25.55,25.35,25.16,24.97,24.79,24.400000000000002,N/A,N/A +2013,3,19,1,30,93890,92800,91760,13.66,0,1.08,2.0300000000000002,2.2800000000000002,2.46,2.43,2.3000000000000003,2.21,2.14,2.09,34.47,21.25,13.64,9.84,8.69,9.200000000000001,10.84,12.55,17.14,23.51,24.900000000000002,25.18,25.25,25.2,25.09,24.92,24.76,24.400000000000002,N/A,N/A +2013,3,19,2,30,93910,92820,91770,14.73,0,3.15,5.0200000000000005,5.18,5.29,5.3100000000000005,5.29,5.13,4.97,4.64,39.28,42.69,44.7,46.24,46.64,46.34,44.800000000000004,43.19,41.160000000000004,22.55,24.400000000000002,24.71,24.72,24.63,24.48,24.330000000000002,24.19,23.96,N/A,N/A +2013,3,19,3,30,93940,92840,91780,30.63,0,2.46,5.33,6.640000000000001,8.02,9.17,10.17,10.47,10.55,9.36,103.82000000000001,96.81,92.67,90.77,89.87,89.56,90.24,91.18,95.57000000000001,19.39,20.330000000000002,20.38,20.44,20.51,20.580000000000002,20.78,21,21.55,N/A,N/A +2013,3,19,4,30,93980,92870,91800,38.94,0,0.8200000000000001,2.09,3.0300000000000002,4.45,6.09,7.91,9.18,10.32,11.84,207.43,153.75,123.35000000000001,113.61,107.53,103.44,102.51,101.95,101.79,17.63,18.32,18.27,18.22,18.18,18.14,18.14,18.150000000000002,18.28,N/A,N/A +2013,3,19,5,30,94000,92900,91820,43.75,0,0.53,1.23,1.73,2.58,3.69,5.08,6.53,8.02,10.02,237.02,183.79,151.13,133.12,121.17,112.87,109.37,106.54,105.14,16.92,17.77,17.67,17.48,17.29,17.11,17.02,16.990000000000002,17.43,N/A,N/A +2013,3,19,6,30,94010,92900,91830,48.32,0,0.62,2.21,3.36,4.04,4.65,5.2,5.89,6.57,7.57,142.51,138.16,134.1,130.64000000000001,126.73,122.7,120.41,118.72,119.51,15.93,16.98,17.07,17.150000000000002,17.23,17.29,17.400000000000002,17.53,17.900000000000002,N/A,N/A +2013,3,19,7,30,94060,92940,91860,52.69,0,1.41,3.16,3.94,4.5,4.86,5.11,5.2700000000000005,5.44,5.94,202.24,185.74,172.91,162.22,154.20000000000002,147.92000000000002,144.68,142.16,139.72,14.56,15.9,16.19,16.42,16.57,16.67,16.69,16.7,16.7,N/A,N/A +2013,3,19,8,30,94080,92960,91880,56.370000000000005,0,2.38,3.71,3.7800000000000002,3.74,3.6,3.44,3.25,3.11,3.15,189.65,180.54,174.68,169.35,165.32,162.21,159.23,156.78,153.77,14.030000000000001,15.700000000000001,16.1,16.36,16.41,16.38,16.25,16.13,15.94,N/A,N/A +2013,3,19,9,30,94090,92960,91880,58.230000000000004,0,1.44,1.84,1.7,1.59,1.68,1.86,2.13,2.38,2.82,212.85,204.38,194.92000000000002,180.94,167.88,154.72,151.76,150.91,159.82,12.34,13.59,13.89,14.200000000000001,14.43,14.620000000000001,14.69,14.75,14.88,N/A,N/A +2013,3,19,10,30,94100,92970,91880,64.8,0,0.36,0.65,0.75,0.89,1.08,1.31,1.6400000000000001,1.99,2.79,190.74,175.4,167.93,166.65,169,173.23,177.49,181.55,186.88,11.450000000000001,12.66,12.93,13.15,13.34,13.51,13.700000000000001,13.870000000000001,14.22,N/A,N/A +2013,3,19,11,30,94130,92990,91900,69.32000000000001,0,0.09,0.42,0.77,1.07,1.43,1.85,2.32,2.82,3.87,242.44,217.93,198.62,196.89000000000001,196.68,197.25,198.33,199.46,201.19,10.06,11.43,11.89,12.31,12.72,13.09,13.48,13.84,14.46,N/A,N/A +2013,3,19,12,30,94170,93030,91940,73.54,0,0.63,1.52,2.13,2.97,3.7800000000000002,4.59,5.28,5.94,7.140000000000001,131.55,160.34,175.97,179.65,180.88,181.07,180.49,179.86,178.24,9.52,11.39,12.120000000000001,12.77,13.22,13.58,13.76,13.89,13.92,N/A,N/A +2013,3,19,13,30,94160,93020,91930,65.49,0,1.07,2.35,3.12,4.16,5.3100000000000005,6.54,7.83,9.09,11.25,104.04,121.06,132.85,142.74,149.83,155.69,158.99,161.89000000000001,165.18,10.88,11.450000000000001,11.700000000000001,12.08,12.32,12.49,12.65,12.81,13.14,N/A,N/A +2013,3,19,14,30,94160,93040,91950,49.85,0,3.25,4.32,4.79,5.15,5.47,5.74,6.2,6.7,8.02,156.3,156.67000000000002,157.08,157.59,158.15,158.70000000000002,159.69,160.61,161.92000000000002,15.200000000000001,14.780000000000001,14.6,14.42,14.24,14.07,13.9,13.74,13.44,N/A,N/A +2013,3,19,15,30,94150,93040,91960,45.87,0,4.32,5.32,5.66,5.84,5.97,6.0600000000000005,6.13,6.18,6.3,167.11,167.23,167.33,167.47,167.62,167.78,167.97,168.16,168.63,17.47,16.88,16.64,16.41,16.21,16.02,15.82,15.64,15.27,N/A,N/A +2013,3,19,16,30,94100,93000,91920,40.78,0,4.99,6.18,6.59,6.8,6.94,7.04,7.11,7.17,7.24,175.26,175.23,175.21,175.24,175.3,175.37,175.45000000000002,175.54,175.75,19.86,19.18,18.91,18.66,18.43,18.23,18.02,17.830000000000002,17.44,N/A,N/A +2013,3,19,17,30,94030,92940,91870,34.97,0,4.97,6.09,6.43,6.6000000000000005,6.7,6.76,6.8,6.82,6.83,180.04,179.79,179.64000000000001,179.55,179.49,179.45000000000002,179.42000000000002,179.4,179.41,21.830000000000002,21.11,20.81,20.56,20.330000000000002,20.12,19.900000000000002,19.71,19.31,N/A,N/A +2013,3,19,18,30,93960,92880,91820,29.26,0,4.63,5.64,5.95,6.1000000000000005,6.19,6.24,6.26,6.28,6.2700000000000005,175.14000000000001,175.66,176.01,176.31,176.61,176.89000000000001,177.17000000000002,177.43,178.02,23.82,23.1,22.8,22.53,22.3,22.080000000000002,21.86,21.67,21.26,N/A,N/A +2013,3,19,19,30,93910,92830,91780,24.23,0,4.28,5.17,5.45,5.58,5.65,5.69,5.71,5.72,5.7,176.92000000000002,177.56,177.98,178.37,178.74,179.09,179.46,179.8,180.49,25.560000000000002,24.86,24.560000000000002,24.29,24.060000000000002,23.84,23.62,23.42,23.02,N/A,N/A +2013,3,19,20,30,93840,92760,91720,20.3,0,3.5100000000000002,4.2,4.43,4.55,4.62,4.66,4.68,4.7,4.7,172.33,173.47,174.29,175,175.59,176.13,176.64000000000001,177.12,178.03,27.04,26.41,26.12,25.85,25.62,25.400000000000002,25.18,24.97,24.57,N/A,N/A +2013,3,19,21,30,93760,92690,91650,17.37,0,2.39,2.85,2.98,3.06,3.11,3.14,3.16,3.18,3.2,202.38,202.77,202.99,203.29,203.62,203.97,204.38,204.79,205.65,27.89,27.3,27.04,26.79,26.560000000000002,26.35,26.13,25.93,25.51,N/A,N/A +2013,3,19,22,30,93720,92650,91610,15.1,0,2.05,2.45,2.57,2.65,2.7,2.74,2.7800000000000002,2.81,2.86,227.72,229.81,230.96,232.04,232.99,233.87,234.72,235.5,236.98000000000002,28.38,27.85,27.61,27.38,27.17,26.96,26.75,26.55,26.14,N/A,N/A +2013,3,19,23,30,93680,92610,91580,15.540000000000001,0,1.55,1.9000000000000001,2,2.06,2.1,2.13,2.15,2.18,2.21,208.97,210.4,211.4,212.32,213.16,213.96,214.75,215.47,216.87,28.25,27.85,27.650000000000002,27.44,27.240000000000002,27.04,26.84,26.650000000000002,26.25,N/A,N/A +2013,3,20,0,30,93740,92670,91630,26.68,0,2.56,4.2,4.43,4.5600000000000005,4.64,4.68,4.69,4.69,4.64,169.18,168.70000000000002,168.54,168.86,169.32,170.02,170.8,171.59,173.28,25.96,26.82,26.830000000000002,26.73,26.61,26.45,26.27,26.09,25.71,N/A,N/A +2013,3,20,1,30,93790,92710,91670,29.41,0,3.19,5.61,6.05,5.99,5.8500000000000005,5.62,5.29,4.94,4.4,167.78,166.65,165.94,165.87,165.9,166.02,166.37,166.76,167.82,24.55,26.23,26.54,26.39,26.22,26.01,25.85,25.72,25.490000000000002,N/A,N/A +2013,3,20,2,30,93920,92830,91770,25.5,0,6.55,9.540000000000001,10.57,11.42,12.27,13.07,13.91,14.68,15.99,32.18,30.12,29.11,28.44,28.87,29.67,31.19,32.56,34.39,22.86,22.97,22.89,22.75,22.51,22.28,21.990000000000002,21.740000000000002,21.26,N/A,N/A +2013,3,20,3,30,94050,92950,91880,42.15,0,6.7,9.450000000000001,10.57,11.47,12.26,12.96,13.65,14.3,15.540000000000001,29.09,29.48,29.98,30.79,31.69,32.65,33.61,34.5,36.1,20.04,20.01,19.93,19.8,19.67,19.53,19.38,19.240000000000002,18.95,N/A,N/A +2013,3,20,4,30,94140,93040,91960,49.24,0,6.69,9.32,10.48,11.47,12.32,13.09,13.85,14.56,15.950000000000001,36.37,37.18,38.14,39.61,41.08,42.61,44.08,45.46,47.72,18.830000000000002,18.78,18.68,18.54,18.400000000000002,18.25,18.09,17.94,17.580000000000002,N/A,N/A +2013,3,20,5,30,94270,93160,92080,60.84,0,8.08,11.06,12.27,13.27,14.11,14.84,15.52,16.16,17.330000000000002,46.51,46.6,46.79,47.22,47.72,48.26,48.86,49.43,50.51,16.95,16.8,16.66,16.5,16.330000000000002,16.16,15.98,15.81,15.44,N/A,N/A +2013,3,20,6,30,94370,93250,92170,59.18,0,7.4,10.01,11.040000000000001,11.85,12.49,13.01,13.46,13.85,14.51,52.300000000000004,51.49,51.06,50.82,50.660000000000004,50.550000000000004,50.49,50.44,50.410000000000004,16.29,16.17,16.05,15.9,15.74,15.59,15.42,15.27,14.93,N/A,N/A +2013,3,20,7,30,94520,93400,92310,57.96,0,6.01,8.73,9.86,10.77,11.53,12.19,12.790000000000001,13.34,14.32,55.26,55.06,55.04,55.32,55.67,56.050000000000004,56.35,56.6,56.94,15.41,15.34,15.23,15.09,14.93,14.780000000000001,14.6,14.44,14.09,N/A,N/A +2013,3,20,8,30,94600,93470,92380,66.63,0,1.19,2.59,3.44,4.68,5.89,7.0600000000000005,8.03,8.91,10.31,310.8,345.75,7.5600000000000005,17.38,24.7,30.48,34.94,38.94,44.58,13.950000000000001,14.23,14.09,13.89,13.700000000000001,13.52,13.35,13.19,12.870000000000001,N/A,N/A +2013,3,20,9,30,94670,93530,92430,65.25,0,0.28,1.3900000000000001,2.5500000000000003,3.47,4.07,4.46,4.94,5.44,6.72,239.71,307.7,9,10.76,15.700000000000001,21.900000000000002,28.75,34.800000000000004,41.94,12.94,13.42,13.38,13.25,13.09,12.94,12.75,12.57,12.24,N/A,N/A +2013,3,20,10,30,94720,93580,92480,62.59,0,2.0300000000000002,3.14,3.18,3.09,3.18,3.37,3.77,4.21,5.49,325.35,357.76,16.25,27.46,33.730000000000004,37.800000000000004,40.9,43.78,48.96,11.88,12.58,12.59,12.370000000000001,12.16,11.96,11.76,11.58,11.23,N/A,N/A +2013,3,20,11,30,94800,93660,92550,62.370000000000005,0,2.09,3.58,3.42,2.66,2.58,2.72,3.16,3.64,4.93,327.83,351.88,9.200000000000001,22.29,29.91,35.96,41.050000000000004,45.660000000000004,52.32,10.99,11.74,11.72,11.47,11.26,11.08,10.9,10.74,10.44,N/A,N/A +2013,3,20,12,30,94890,93740,92630,65.81,0,2.2800000000000002,4.22,4.47,4.2,3.64,3.14,3.44,3.8000000000000003,4.93,306.98,343.38,2.91,10.86,23.07,33.87,39.71,44.88,52.910000000000004,10.120000000000001,10.96,10.98,10.790000000000001,10.52,10.26,10.07,9.9,9.6,N/A,N/A +2013,3,20,13,30,94950,93800,92690,57.34,0,2.2800000000000002,3.74,4.28,4.5,4.41,4.25,4.32,4.49,5.32,333.44,354.02,6.890000000000001,15.5,22.650000000000002,28.42,34.11,39.15,48.2,10.33,10.21,10.08,9.9,9.69,9.48,9.27,9.08,8.77,N/A,N/A +2013,3,20,14,30,94990,93840,92730,50.68,0,3.35,4.19,4.47,4.64,4.7700000000000005,4.87,4.96,5.03,5.18,45.59,47.13,48.18,49.14,50.07,50.910000000000004,51.79,52.620000000000005,54.36,11.89,11.41,11.19,10.99,10.790000000000001,10.6,10.4,10.22,9.85,N/A,N/A +2013,3,20,15,30,95010,93870,92770,42.36,0,3.83,4.68,4.96,5.12,5.22,5.3,5.36,5.41,5.48,62.17,62.72,63.06,63.4,63.72,64.02,64.32000000000001,64.61,65.2,13.91,13.31,13.05,12.81,12.59,12.39,12.18,11.98,11.58,N/A,N/A +2013,3,20,16,30,94980,93850,92750,38.08,0,3.44,4.19,4.43,4.57,4.67,4.74,4.79,4.84,4.9,76.45,76.65,76.74,76.83,76.92,77.01,77.09,77.17,77.34,15.66,15.030000000000001,14.75,14.5,14.27,14.06,13.84,13.63,13.23,N/A,N/A +2013,3,20,17,30,94910,93780,92690,36.28,0,3.48,4.22,4.45,4.5600000000000005,4.64,4.7,4.75,4.78,4.83,91.95,91.53,91.25,91,90.78,90.57000000000001,90.37,90.17,89.79,17.07,16.41,16.12,15.860000000000001,15.620000000000001,15.41,15.19,14.99,14.58,N/A,N/A +2013,3,20,18,30,94830,93710,92620,33.89,0,3.35,4.07,4.28,4.38,4.46,4.51,4.55,4.58,4.62,99.32000000000001,99.34,99.33,99.3,99.28,99.25,99.2,99.15,99.06,18.400000000000002,17.740000000000002,17.45,17.19,16.95,16.73,16.51,16.3,15.89,N/A,N/A +2013,3,20,19,30,94740,93630,92550,32.63,0,3.65,4.43,4.65,4.7700000000000005,4.8500000000000005,4.91,4.95,4.98,5.01,118.74000000000001,119.11,119.22,119.26,119.26,119.25,119.22,119.18,119.09,19.61,18.92,18.62,18.35,18.11,17.89,17.66,17.45,17.03,N/A,N/A +2013,3,20,20,30,94640,93530,92450,32.06,0,3.64,4.43,4.67,4.79,4.87,4.93,4.97,5.01,5.05,129.59,129.58,129.57,129.53,129.49,129.46,129.42000000000002,129.38,129.3,20.45,19.77,19.48,19.22,18.97,18.75,18.53,18.32,17.900000000000002,N/A,N/A +2013,3,20,21,30,94530,93420,92350,32.55,0,4.69,5.7,5.99,6.12,6.2,6.26,6.28,6.3100000000000005,6.3100000000000005,138.08,138.37,138.62,138.82,139.01,139.17000000000002,139.33,139.48,139.77,20.95,20.25,19.97,19.71,19.47,19.26,19.03,18.830000000000002,18.41,N/A,N/A +2013,3,20,22,30,94440,93330,92260,35.77,0,5.72,6.98,7.34,7.5,7.59,7.65,7.67,7.68,7.68,150.58,150.67000000000002,150.71,150.71,150.70000000000002,150.69,150.67000000000002,150.66,150.62,20.77,20.11,19.84,19.59,19.37,19.150000000000002,18.93,18.73,18.32,N/A,N/A +2013,3,20,23,30,94370,93270,92190,37.050000000000004,0,4.04,5.14,5.53,5.7700000000000005,5.95,6.08,6.19,6.29,6.44,141.12,142.1,142.6,142.96,143.26,143.51,143.74,143.95000000000002,144.34,20.59,20.09,19.86,19.64,19.43,19.22,19.01,18.82,18.41,N/A,N/A +2013,3,21,0,30,94310,93210,92140,45.01,0,4.61,6.23,6.74,7.1000000000000005,7.36,7.57,7.72,7.8500000000000005,8.040000000000001,156.37,156.86,157.14000000000001,157.42000000000002,157.71,157.98,158.25,158.48,158.87,19.73,19.53,19.38,19.2,19.01,18.830000000000002,18.63,18.45,18.05,N/A,N/A +2013,3,21,1,30,94290,93180,92110,53.63,0,3.92,5.89,6.59,7.15,7.6000000000000005,7.97,8.27,8.53,8.91,167.74,167.49,167.41,167.48,167.66,167.9,168.22,168.52,169.08,18.44,18.46,18.39,18.29,18.17,18.04,17.88,17.73,17.38,N/A,N/A +2013,3,21,2,30,94270,93160,92080,59.86,0,5.65,7.88,8.68,9.3,9.8,10.23,10.6,10.92,11.41,174.39000000000001,174.01,173.87,173.88,173.97,174.1,174.22,174.31,174.38,17.48,17.37,17.25,17.11,16.95,16.79,16.62,16.45,16.09,N/A,N/A +2013,3,21,3,30,94230,93110,92030,65.74,0,4.89,7.03,7.86,8.540000000000001,9.13,9.65,10.14,10.58,11.36,174.41,173.88,173.52,173.20000000000002,172.87,172.54,172.12,171.72,170.86,16.55,16.51,16.43,16.32,16.2,16.09,15.950000000000001,15.83,15.540000000000001,N/A,N/A +2013,3,21,4,30,94180,93060,91980,69.98,0,4.3,6.49,7.36,8.11,8.76,9.35,9.91,10.43,11.32,167.95000000000002,168.64000000000001,169.15,169.65,170.14000000000001,170.61,171.1,171.56,172.52,15.85,15.84,15.76,15.66,15.55,15.43,15.290000000000001,15.16,14.84,N/A,N/A +2013,3,21,5,30,94120,93000,91910,75.21000000000001,0,4.49,6.7,7.640000000000001,8.46,9.19,9.85,10.48,11.08,12.200000000000001,163.35,164.46,165.26,165.92000000000002,166.48,166.96,167.34,167.67000000000002,168,14.97,14.94,14.86,14.76,14.65,14.540000000000001,14.43,14.32,14.09,N/A,N/A +2013,3,21,6,30,94050,92930,91840,80.75,0,3.67,6.04,7.140000000000001,8.16,9.05,9.85,10.6,11.290000000000001,12.56,151.26,155.20000000000002,157.78,159.55,160.93,162.07,163.01,163.86,165.16,14.11,14.16,14.120000000000001,14.05,13.98,13.9,13.82,13.74,13.59,N/A,N/A +2013,3,21,7,30,93990,92870,91780,82.16,0,4.78,7.390000000000001,8.57,9.61,10.540000000000001,11.370000000000001,12.16,12.88,14.19,149.61,153.33,155.66,157.32,158.66,159.79,160.72,161.55,162.88,13.85,13.86,13.81,13.74,13.67,13.6,13.52,13.450000000000001,13.31,N/A,N/A +2013,3,21,8,30,93930,92810,91720,88.64,0,3.5300000000000002,6.03,7.24,8.36,9.33,10.19,11.03,11.81,13.3,133.56,140.95000000000002,145.64000000000001,148.61,150.86,152.71,154.29,155.72,158.15,12.99,13.09,13.07,13.030000000000001,12.97,12.91,12.85,12.790000000000001,12.67,N/A,N/A +2013,3,21,9,30,93850,92730,91640,90.61,0,3.83,6.43,7.67,8.8,9.76,10.61,11.43,12.200000000000001,13.68,138.34,143.63,146.99,149.21,151.02,152.57,154.06,155.46,158.1,12.76,12.83,12.790000000000001,12.72,12.65,12.58,12.530000000000001,12.47,12.39,N/A,N/A +2013,3,21,10,30,93760,92640,91550,90.2,0,4.67,7.28,8.5,9.61,10.55,11.370000000000001,12.17,12.92,14.36,144.68,148.37,150.85,152.74,154.29,155.62,156.86,158.02,160.22,12.9,12.94,12.9,12.83,12.76,12.68,12.61,12.540000000000001,12.42,N/A,N/A +2013,3,21,11,30,93720,92600,91510,90.66,0,5.38,8,9.18,10.23,11.15,11.98,12.780000000000001,13.540000000000001,15.07,150.89000000000001,153.6,155.46,156.99,158.3,159.45000000000002,160.53,161.51,163.29,12.74,12.75,12.69,12.61,12.540000000000001,12.47,12.39,12.33,12.24,N/A,N/A +2013,3,21,12,30,93700,92570,91490,90,0,5.98,8.6,9.73,10.72,11.59,12.370000000000001,13.13,13.83,15.25,158.42000000000002,159.76,160.72,161.59,162.38,163.1,163.76,164.38,165.52,12.76,12.76,12.700000000000001,12.61,12.530000000000001,12.450000000000001,12.370000000000001,12.290000000000001,12.15,N/A,N/A +2013,3,21,13,30,93650,92530,91440,87.47,0,7.29,9.76,10.74,11.52,12.19,12.790000000000001,13.370000000000001,13.92,15,161.56,162.28,162.82,163.34,163.83,164.3,164.78,165.24,166.18,13.08,12.870000000000001,12.73,12.59,12.44,12.31,12.17,12.040000000000001,11.790000000000001,N/A,N/A +2013,3,21,14,30,93630,92510,91430,82.48,0,7.28,9.08,9.68,10.05,10.32,10.52,10.72,10.92,11.4,164.36,164.55,164.71,164.93,165.16,165.4,165.71,166.01,166.76,13.97,13.44,13.22,13,12.790000000000001,12.6,12.39,12.200000000000001,11.790000000000001,N/A,N/A +2013,3,21,15,30,93570,92460,91380,73.43,0,6.96,8.58,9.09,9.34,9.48,9.56,9.59,9.6,9.6,165.94,166.19,166.38,166.57,166.76,166.94,167.16,167.37,167.84,15.89,15.22,14.96,14.71,14.49,14.3,14.09,13.91,13.52,N/A,N/A +2013,3,21,16,30,93490,92390,91320,61.15,0,6.66,8.17,8.64,8.870000000000001,8.99,9.07,9.09,9.11,9.07,168.77,168.96,169.09,169.23,169.38,169.51,169.67000000000002,169.82,170.17000000000002,18.68,17.92,17.63,17.37,17.14,16.93,16.71,16.52,16.12,N/A,N/A +2013,3,21,17,30,93410,92320,91260,54.82,0,6.48,7.92,8.4,8.63,8.77,8.85,8.89,8.91,8.9,171.04,171.21,171.32,171.45000000000002,171.58,171.72,171.86,172,172.33,20.36,19.56,19.25,18.97,18.73,18.51,18.29,18.09,17.68,N/A,N/A +2013,3,21,18,30,93320,92240,91190,49.22,0,6.38,7.78,8.24,8.44,8.56,8.63,8.66,8.67,8.64,175.13,175.22,175.28,175.37,175.47,175.58,175.70000000000002,175.83,176.11,22.01,21.19,20.87,20.59,20.34,20.12,19.900000000000002,19.69,19.29,N/A,N/A +2013,3,21,19,30,93230,92150,91110,44.64,0,6,7.3500000000000005,7.7700000000000005,7.97,8.1,8.17,8.21,8.24,8.25,175.95000000000002,176.23,176.45000000000002,176.66,176.87,177.08,177.3,177.52,177.99,23.6,22.8,22.48,22.2,21.95,21.73,21.51,21.3,20.89,N/A,N/A +2013,3,21,20,30,93160,92090,91050,40.660000000000004,0,5.3500000000000005,6.54,6.94,7.140000000000001,7.2700000000000005,7.3500000000000005,7.41,7.44,7.47,180.86,181.13,181.35,181.58,181.79,181.99,182.21,182.41,182.82,25.07,24.310000000000002,24,23.72,23.48,23.25,23.03,22.830000000000002,22.41,N/A,N/A +2013,3,21,21,30,93060,91990,90950,39.4,0,5.33,6.6000000000000005,6.97,7.17,7.3100000000000005,7.41,7.47,7.5200000000000005,7.57,185.35,186.08,186.55,186.96,187.34,187.71,188.08,188.4,189.06,25.79,25.05,24.77,24.51,24.27,24.05,23.830000000000002,23.63,23.21,N/A,N/A +2013,3,21,22,30,93000,91940,90900,40.550000000000004,0,5.7700000000000005,7.11,7.5,7.71,7.83,7.91,7.95,7.98,7.98,175.87,176.68,177.11,177.45000000000002,177.74,178.01,178.26,178.51,178.99,25.89,25.22,24.97,24.71,24.490000000000002,24.27,24.060000000000002,23.86,23.45,N/A,N/A +2013,3,21,23,30,93000,91930,90900,45.4,0,5.53,6.96,7.4,7.640000000000001,7.79,7.88,7.92,7.94,7.92,177.58,177.86,178.09,178.26,178.4,178.53,178.65,178.77,179.03,25.05,24.62,24.42,24.2,23.990000000000002,23.79,23.59,23.400000000000002,23,N/A,N/A +2013,3,22,0,30,93060,92000,90950,50.97,0,3.49,4.93,5.5600000000000005,6.05,6.46,6.8,7.1000000000000005,7.37,7.83,138.87,143.9,148.72,152.23,155.12,157.48,159.49,161.23,163.94,23.72,23.63,23.53,23.35,23.19,23.02,22.84,22.66,22.29,N/A,N/A +2013,3,22,1,30,93080,92010,90970,54.83,0,3.91,5.84,6.71,7.46,8.09,8.64,9.1,9.51,10.13,158.49,160.94,162.89000000000001,164.44,165.71,166.74,167.51,168.12,168.74,22.77,22.76,22.68,22.56,22.43,22.29,22.13,21.97,21.61,N/A,N/A +2013,3,22,2,30,93120,92040,90990,61.690000000000005,0,3.27,5.08,5.79,6.46,7.05,7.58,8.09,8.58,9.290000000000001,146.91,151.93,155.65,158.74,161.12,162.97,164.22,165.19,166,21.41,21.490000000000002,21.43,21.330000000000002,21.22,21.09,20.95,20.81,20.48,N/A,N/A +2013,3,22,3,30,93130,92050,91000,65.57000000000001,0,4.89,7,7.92,8.75,9.450000000000001,10.05,10.51,10.9,10.83,155.57,158.31,160.39000000000001,162.12,163.57,164.81,166.15,167.43,170.08,20.61,20.54,20.45,20.32,20.21,20.1,20.03,19.98,19.990000000000002,N/A,N/A +2013,3,22,4,30,93110,92020,90970,69.19,0,6.26,8.61,9.47,10.200000000000001,10.8,11.33,11.83,12.27,12.82,160.68,161.88,162.67000000000002,163.37,163.93,164.42000000000002,164.94,165.47,167.51,19.85,19.71,19.59,19.46,19.330000000000002,19.21,19.11,19.02,18.98,N/A,N/A +2013,3,22,5,30,93170,92080,91030,76.45,0,2.36,4.43,5.36,6.25,7.04,7.75,8.3,8.78,9.46,151.68,157.28,161.26,163.47,165.04,166.1,166.97,167.74,170.16,18.85,19.01,18.95,18.86,18.77,18.68,18.62,18.56,18.580000000000002,N/A,N/A +2013,3,22,6,30,93200,92100,91050,83.39,0,1.58,2.99,3.5,4.1,4.72,5.3500000000000005,5.95,6.5200000000000005,7.2700000000000005,118.24000000000001,138.59,151.53,161.6,168.3,172.84,175.29,177.25,179.99,17.830000000000002,18.26,18.28,18.23,18.18,18.12,18.06,18,17.97,N/A,N/A +2013,3,22,7,30,93230,92130,91070,89.54,0,2.1,3.88,4.49,5.24,5.89,6.49,6.99,7.43,7.5600000000000005,146.49,161.41,170.58,176.22,179.98,182.43,184.28,185.95000000000002,190.37,16.97,17.62,17.67,17.7,17.740000000000002,17.77,17.86,17.96,18.240000000000002,N/A,N/A +2013,3,22,8,30,93220,92130,91070,90.71000000000001,0,2.1,3.2600000000000002,3.47,3.98,4.2700000000000005,4.39,4.5,4.6000000000000005,4.72,123.51,145.76,160.09,171.61,181.01,188.53,195.36,201.52,212.08,16.16,17.1,17.330000000000002,17.580000000000002,17.81,18.03,18.240000000000002,18.43,18.72,N/A,N/A +2013,3,22,9,30,93230,92130,91070,90.91,0,1.43,3.33,4.16,4.0600000000000005,4.01,3.99,4.0200000000000005,4.0600000000000005,3.99,177.70000000000002,183.81,190.94,201.08,209.77,217.67000000000002,223.46,228.24,235.05,15.83,16.77,16.98,17.330000000000002,17.55,17.69,17.740000000000002,17.78,17.72,N/A,N/A +2013,3,22,10,30,93220,92130,91060,82.35000000000001,0,1.46,2.19,2.2800000000000002,2.5500000000000003,2.77,2.97,3.14,3.3000000000000003,3.7600000000000002,199,220.83,235.07,249.11,256.18,257.9,258.1,258.1,264.49,16.43,17.53,17.56,17.43,17.34,17.28,17.38,17.53,18.16,N/A,N/A +2013,3,22,11,30,93230,92130,91070,70.09,0,1.93,2.22,2.08,2.29,2.6,2.99,3.48,3.99,4.92,213.88,246.04,258.49,262.73,267.29,272.29,275.21,277.83,283.8,17.07,18.1,17.91,17.56,17.46,17.490000000000002,17.77,18.080000000000002,18.87,N/A,N/A +2013,3,22,12,30,93280,92180,91110,83.79,0,0.55,1.1300000000000001,1.52,2.22,2.91,3.54,4.09,4.61,5.55,183.71,233.33,264.4,273.32,278.8,281.35,284.01,286.73,293.23,13.39,15.09,15.65,16.09,16.51,16.89,17.2,17.46,17.88,N/A,N/A +2013,3,22,13,30,93310,92200,91130,58.230000000000004,0,0.9500000000000001,1.51,1.71,2.14,2.62,3.15,3.67,4.2,5.2,234.94,255.57,268.01,277.35,284.14,289.38,293.17,296.65000000000003,302.19,14.43,15.200000000000001,15.44,15.65,15.870000000000001,16.09,16.330000000000002,16.55,16.95,N/A,N/A +2013,3,22,14,30,93350,92250,91180,37.03,0,3.02,3.66,3.9,4.1,4.5600000000000005,5.23,6.04,6.8500000000000005,7.640000000000001,297.55,301.02,303.76,307.28000000000003,311.43,316.39,319.57,322.24,324.43,17.650000000000002,17.28,17.13,17,16.91,16.86,16.98,17.14,17.73,N/A,N/A +2013,3,22,15,30,93360,92280,91220,28.26,0,1.69,2.07,2.2,2.29,2.35,2.4,2.45,2.49,2.57,19.080000000000002,17.400000000000002,16.03,14.790000000000001,13.69,12.69,11.700000000000001,10.790000000000001,8.99,21.54,21.05,20.830000000000002,20.61,20.41,20.21,20.02,19.84,19.46,N/A,N/A +2013,3,22,16,30,93380,92290,91240,21.580000000000002,0,2.81,3.36,3.5300000000000002,3.61,3.66,3.69,3.71,3.73,3.74,24.23,23.93,23.82,23.71,23.59,23.48,23.36,23.25,22.97,23.02,22.43,22.16,21.93,21.71,21.5,21.3,21.11,20.71,N/A,N/A +2013,3,22,17,30,93350,92270,91230,18.2,0,1.83,2.11,2.19,2.21,2.22,2.23,2.23,2.23,2.22,18.84,17.51,16.56,15.76,15.06,14.41,13.76,13.15,11.89,24.52,23.97,23.69,23.43,23.21,22.990000000000002,22.78,22.59,22.18,N/A,N/A +2013,3,22,18,30,93340,92270,91220,18.34,0,1.01,1.1300000000000001,1.1500000000000001,1.1500000000000001,1.16,1.16,1.16,1.16,1.16,359.61,356.61,354.52,352.62,351,349.48,347.99,346.6,343.79,25.72,25.21,24.92,24.66,24.43,24.21,23.990000000000002,23.79,23.39,N/A,N/A +2013,3,22,19,30,93260,92190,91150,17.580000000000002,0,1.26,1.3900000000000001,1.4000000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3900000000000001,1.3800000000000001,1.3900000000000001,358.22,353.42,350.64,348.02,345.6,343.32,341,338.88,334.42,27.02,26.44,26.150000000000002,25.89,25.66,25.44,25.22,25.01,24.6,N/A,N/A +2013,3,22,20,30,93180,92110,91080,16.72,0,1.3800000000000001,1.69,1.81,1.93,2.05,2.16,2.27,2.38,2.59,323.02,311.53000000000003,305.06,299.94,295.8,292.32,289.40000000000003,286.82,282.59000000000003,28.38,27.8,27.53,27.27,27.04,26.830000000000002,26.61,26.41,26,N/A,N/A +2013,3,22,21,30,93130,92070,91050,14.38,0,3.4,4.17,4.46,4.63,4.7700000000000005,4.88,4.97,5.05,5.19,275.64,273.90000000000003,273.08,272.36,271.74,271.17,270.63,270.12,269.14,29.5,28.87,28.61,28.35,28.12,27.91,27.69,27.490000000000002,27.080000000000002,N/A,N/A +2013,3,22,22,30,93050,91990,90970,10.98,0,4.21,5.29,5.62,5.82,5.98,6.09,6.19,6.2700000000000005,6.4,284.74,284.55,284.25,283.94,283.65000000000003,283.36,283.05,282.77,282.16,29.95,29.37,29.14,28.900000000000002,28.68,28.48,28.26,28.060000000000002,27.650000000000002,N/A,N/A +2013,3,22,23,30,93040,91990,90970,11.21,0,4.32,5.46,5.86,6.1000000000000005,6.28,6.41,6.5200000000000005,6.61,6.74,285.91,285.11,284.54,284,283.52,283.06,282.62,282.2,281.38,30.12,29.7,29.5,29.28,29.080000000000002,28.88,28.68,28.48,28.080000000000002,N/A,N/A +2013,3,23,0,30,93070,92010,90980,15.89,0,3.3000000000000003,5.78,6.5600000000000005,6.890000000000001,7.1000000000000005,7.2,7.25,7.28,7.2700000000000005,334.85,334.8,334.48,333.90000000000003,333.31,332.65000000000003,332.06,331.53000000000003,330.73,27.810000000000002,28.51,28.580000000000002,28.46,28.310000000000002,28.12,27.93,27.740000000000002,27.36,N/A,N/A +2013,3,23,1,30,93100,92040,91010,17.580000000000002,0,3.48,5.68,6.09,6.390000000000001,6.76,7.22,7.7,8.18,8.89,15.610000000000001,17.36,16.27,10.56,5.03,359.29,354.89,351.14,346.85,26.13,27.44,27.7,27.68,27.560000000000002,27.37,27.150000000000002,26.95,26.560000000000002,N/A,N/A +2013,3,23,2,30,93230,92150,91100,36.800000000000004,0,6.46,8.73,9.63,10.41,11.05,11.58,11.99,12.35,12.65,64.3,65.87,67.09,68.21000000000001,69.22,70.18,71.18,72.15,74.31,21.77,21.61,21.47,21.32,21.17,21.03,20.91,20.8,20.69,N/A,N/A +2013,3,23,3,30,93350,92250,91190,43.46,0,4.49,6.15,6.83,7.37,7.83,8.24,8.67,9.09,10,51.26,52.1,52.93,54.33,55.67,57.01,58.54,60.050000000000004,63.910000000000004,19.09,18.900000000000002,18.75,18.55,18.35,18.150000000000002,17.94,17.73,17.32,N/A,N/A +2013,3,23,4,30,93320,92220,91150,47.84,0,3.15,4.45,4.92,5.3500000000000005,5.7700000000000005,6.16,6.58,6.98,7.7700000000000005,60.7,64.44,67.3,70.58,73.55,76.29,78.96000000000001,81.46000000000001,86.24,17.5,17.32,17.19,17.03,16.88,16.73,16.580000000000002,16.44,16.19,N/A,N/A +2013,3,23,5,30,93350,92250,91180,50.52,0,2.75,3.81,4.17,4.54,4.93,5.38,5.83,6.2700000000000005,7.15,53.71,62.35,68.61,75.12,79.97,83.76,86.64,89.15,93.42,17.28,17.14,17.02,16.85,16.69,16.53,16.39,16.26,16.06,N/A,N/A +2013,3,23,6,30,93370,92260,91190,52.54,0,1.28,2.81,3.63,4.39,5.08,5.71,6.44,7.16,8.16,106.28,112.26,115.17,113.88,111.99000000000001,109.76,107.85000000000001,106.28,106.97,16.52,16.42,16.27,16.04,15.81,15.59,15.39,15.23,15.290000000000001,N/A,N/A +2013,3,23,7,30,93410,92310,91230,55.99,0,0.53,0.85,1.09,1.97,3.0300000000000002,4.2,4.9,5.44,5.55,333.31,58.69,97.4,97.36,96.55,95,96.47,99.09,111.89,16.13,16.080000000000002,15.96,15.790000000000001,15.58,15.35,15.32,15.35,15.85,N/A,N/A +2013,3,23,8,30,93410,92300,91230,62.2,0,0.42,1.37,2.2,3.35,4.58,5.88,6.28,6.55,6.74,123.31,129.07,128.31,116.89,109.48,104.2,107.32000000000001,111.05,120.10000000000001,15.67,15.73,15.55,15.27,15.120000000000001,15.02,15.3,15.56,16.01,N/A,N/A +2013,3,23,9,30,93410,92310,91240,59.14,0,2.87,4.0200000000000005,4.63,5.19,5.7,6.21,6.72,7.2,7.640000000000001,137.23,134.91,133.02,130.87,129.27,128.04,128.3,128.99,133.35,16.09,15.92,15.83,15.73,15.67,15.64,15.73,15.84,16.080000000000002,N/A,N/A +2013,3,23,10,30,93400,92290,91220,59.63,0,1.92,3.15,3.86,4.39,4.8100000000000005,5.18,5.47,5.71,6.04,157.39000000000001,155.54,154.63,153.74,152.69,151.59,151.91,152.74,158.20000000000002,16.080000000000002,15.9,15.84,15.77,15.72,15.68,15.65,15.63,15.6,N/A,N/A +2013,3,23,11,30,93390,92290,91210,68.19,0,0.74,1.83,2.42,2.93,3.38,3.79,4.24,4.67,5.39,186.77,183.62,181.75,180.78,181.01,181.74,183.5,185.24,188.44,15.370000000000001,15.75,15.71,15.64,15.58,15.52,15.5,15.48,15.450000000000001,N/A,N/A +2013,3,23,12,30,93400,92290,91220,75.37,0,1.25,2.13,2.33,2.5100000000000002,2.77,3.06,3.36,3.65,4.23,114.11,131.88,144.88,158.87,168.89000000000001,177.05,183.91,190.17000000000002,200.45000000000002,14.040000000000001,14.98,15.15,15.200000000000001,15.24,15.27,15.3,15.33,15.35,N/A,N/A +2013,3,23,13,30,93370,92260,91190,73,0,0.92,0.56,0.58,1.05,1.61,2.25,2.84,3.46,4.64,94.98,155.99,181.3,226.8,242.62,243.31,245.87,249.02,257.88,14.65,15.13,15.25,15.23,15.34,15.48,15.83,16.19,17.02,N/A,N/A +2013,3,23,14,30,93390,92280,91220,54.800000000000004,0,1.46,1.86,2.11,2.46,3.36,4.82,5.46,5.97,7.19,275.13,276.83,278.3,280.64,283.81,288.23,291.07,293.18,293.26,17.85,17.54,17.42,17.34,17.43,17.6,17.650000000000002,17.7,17.84,N/A,N/A +2013,3,23,15,30,93390,92310,91260,24.47,0,8.06,10.23,10.97,11.43,11.76,12.02,12.200000000000001,12.36,12.58,294.43,294.17,294.15000000000003,294.13,294.12,294.12,294.12,294.13,294.15000000000003,23.44,22.82,22.56,22.31,22.080000000000002,21.87,21.650000000000002,21.45,21.04,N/A,N/A +2013,3,23,16,30,93370,92290,91240,20.650000000000002,0,8.63,10.78,11.49,11.9,12.18,12.39,12.55,12.68,12.86,289.73,290.03000000000003,290.21,290.32,290.41,290.48,290.54,290.59000000000003,290.68,24.52,23.8,23.53,23.26,23.03,22.8,22.59,22.38,21.96,N/A,N/A +2013,3,23,17,30,93320,92240,91200,16.51,0,8.81,11.06,11.72,12.1,12.38,12.58,12.73,12.86,13.040000000000001,286.76,287,287.16,287.26,287.34000000000003,287.41,287.47,287.52,287.59000000000003,25.26,24.46,24.18,23.900000000000002,23.66,23.43,23.2,22.990000000000002,22.56,N/A,N/A +2013,3,23,18,30,93390,92330,91280,15.09,0,8.71,10.540000000000001,11.42,11.86,12.200000000000001,12.42,12.61,12.75,12.98,284.91,285.09000000000003,285.25,285.33,285.40000000000003,285.44,285.48,285.51,285.56,25.71,24.93,24.6,24.3,24.05,23.8,23.580000000000002,23.35,22.93,N/A,N/A +2013,3,23,19,30,93250,92170,91130,13.52,0,9.85,12.51,13.16,13.57,13.86,14.09,14.25,14.39,14.59,283.69,283.81,283.85,283.87,283.87,283.86,283.85,283.83,283.79,25.92,25.1,24.810000000000002,24.54,24.28,24.060000000000002,23.82,23.61,23.17,N/A,N/A +2013,3,23,20,30,93330,92260,91220,14.43,0,8.58,10.52,11.35,11.76,12.08,12.3,12.47,12.61,12.82,288.1,288.38,288.58,288.68,288.76,288.83,288.89,288.94,289.02,26.29,25.51,25.2,24.91,24.67,24.43,24.21,23.990000000000002,23.57,N/A,N/A +2013,3,23,21,30,93230,92160,91120,13.14,0,9.31,11.86,12.65,13.14,13.49,13.76,13.97,14.15,14.4,288.27,288.84000000000003,289.08,289.22,289.33,289.41,289.45,289.5,289.56,26.53,25.79,25.51,25.25,25.01,24.78,24.55,24.34,23.91,N/A,N/A +2013,3,23,22,30,93220,92150,91110,12.290000000000001,0,8.31,10.68,11.47,12.040000000000001,12.450000000000001,12.780000000000001,13.030000000000001,13.25,13.6,287.75,287.31,287.2,287.1,287.03000000000003,286.97,286.93,286.88,286.82,26.63,26.01,25.76,25.51,25.28,25.060000000000002,24.84,24.63,24.21,N/A,N/A +2013,3,23,23,30,93240,92170,91130,11.08,0,8.98,11.4,12.17,12.64,12.99,13.25,13.46,13.64,13.91,287.94,287.93,287.94,287.94,287.95,287.96,287.97,287.98,288.02,26.09,25.68,25.48,25.26,25.060000000000002,24.86,24.650000000000002,24.46,24.060000000000002,N/A,N/A +2013,3,24,0,30,93330,92260,91220,8.35,0,7.43,10.32,11.72,12.82,13.73,14.47,15.11,15.64,16.43,287.46,287.8,288.12,288.42,288.67,288.89,289.1,289.27,289.57,24.77,24.87,24.84,24.740000000000002,24.63,24.5,24.35,24.2,23.87,N/A,N/A +2013,3,24,1,30,93390,92310,91260,9.03,0,4.89,8.09,9.870000000000001,11.43,12.72,13.74,14.5,15.1,15.82,282.35,282.87,283.36,284.39,285.40000000000003,286.47,287.44,288.34000000000003,289.75,22.41,23.22,23.54,23.79,23.95,24.01,23.990000000000002,23.91,23.63,N/A,N/A +2013,3,24,2,30,93470,92380,91330,12.55,0,2.71,4.69,5.2700000000000005,6.05,6.95,8.040000000000001,9.1,10.14,11.61,298.57,297.51,297.03000000000003,297.13,296.82,296.06,295.79,295.68,298.24,19.31,20.89,21.21,21.51,21.85,22.23,22.54,22.79,22.82,N/A,N/A +2013,3,24,3,30,93560,92460,91410,10.99,0,2.29,4.18,4.91,5.76,6.5200000000000005,7.22,7.94,8.66,10.56,284.05,284.24,284.69,287.8,290.88,294.09000000000003,296.63,298.88,302.33,18.38,20.400000000000002,20.92,21.32,21.6,21.76,21.89,21.990000000000002,22.25,N/A,N/A +2013,3,24,4,30,93670,92570,91510,11.91,0,2.39,3.85,4.17,4.84,5.5,6.21,6.890000000000001,7.53,8.94,321.02,316.22,312.38,311.91,313.09000000000003,316.55,320.72,325.09000000000003,330.8,16.55,18.35,18.71,19,19.16,19.21,19.14,19.03,18.830000000000002,N/A,N/A +2013,3,24,5,30,93830,92710,91630,12.1,0,3.73,6.96,8.42,9.92,11.200000000000001,12.31,13.17,13.94,15.39,319.62,332.53000000000003,340.6,345.22,348.49,350.95,352.89,354.62,357.52,14.56,15.34,15.41,15.43,15.4,15.35,15.25,15.14,14.86,N/A,N/A +2013,3,24,6,30,94030,92900,91800,11.68,0,5.59,8.74,10.23,11.56,12.74,13.8,14.790000000000001,15.700000000000001,17.330000000000002,346.66,349.82,351.74,352.92,353.61,354.09000000000003,354.35,354.59000000000003,355.02,12.55,12.71,12.67,12.58,12.46,12.33,12.17,12.02,11.700000000000001,N/A,N/A +2013,3,24,7,30,94130,92990,91890,14.120000000000001,0,3.56,6.390000000000001,7.62,8.81,10.17,11.56,13.13,14.58,16.93,303.33,320.79,330.37,336.44,340.56,343.90000000000003,345.96,347.67,349.90000000000003,10.31,11.14,11.290000000000001,11.290000000000001,11.200000000000001,11.08,10.92,10.78,10.49,N/A,N/A +2013,3,24,8,30,94270,93130,92020,14.530000000000001,0,2.97,5.69,7.04,8.290000000000001,9.49,10.71,11.89,13.01,14.790000000000001,302.43,313.44,323.25,328.94,333.76,337.96,341.21,344.07,348.1,8.91,9.98,10.1,10.13,10.11,10.05,9.97,9.89,9.69,N/A,N/A +2013,3,24,9,30,94350,93200,92080,23.85,0,3.49,6.36,7.8100000000000005,9.23,10.41,11.43,12.11,12.64,13.23,352.3,0.99,6.18,9.620000000000001,12.21,14.38,16.09,17.53,19.43,8.21,8.41,8.290000000000001,8.11,7.88,7.66,7.43,7.2,6.76,N/A,N/A +2013,3,24,10,30,94450,93300,92170,59.36,0,3.37,6.5600000000000005,8.16,9.58,10.9,12.11,13.18,14.11,15.35,358.78000000000003,2.66,4.6000000000000005,5.41,5.39,5.17,4.86,4.7,4.99,6.97,7.22,7.140000000000001,6.95,6.73,6.53,6.3,6.07,5.64,N/A,N/A +2013,3,24,11,30,94570,93400,92270,64.96000000000001,0,2.05,5.28,6.88,8.24,9.31,10.24,11.02,11.69,12.81,344.16,354.32,359.53000000000003,2.38,4.2700000000000005,5.84,7.140000000000001,8.26,10.09,5.16,5.51,5.44,5.34,5.19,5.03,4.86,4.68,4.3100000000000005,N/A,N/A +2013,3,24,12,30,94680,93510,92370,63.5,0,1.86,4.73,6.2700000000000005,7.44,8.38,9.19,9.85,10.450000000000001,11.450000000000001,354.45,1.22,5.47,7.6000000000000005,8.89,9.89,10.74,11.51,12.790000000000001,4.11,4.5600000000000005,4.5200000000000005,4.43,4.29,4.15,4,3.83,3.48,N/A,N/A +2013,3,24,13,30,94770,93600,92460,55.06,0,3.75,5.44,6.38,7.03,7.57,8.040000000000001,8.51,8.950000000000001,9.73,344.66,347.44,349.47,350.68,351.47,352.04,352.63,353.17,354.08,4.6000000000000005,4.3500000000000005,4.2,4.0200000000000005,3.84,3.66,3.46,3.27,2.89,N/A,N/A +2013,3,24,14,30,94860,93680,92540,46.07,0,6.0600000000000005,7.48,8.09,8.42,8.66,8.83,8.950000000000001,9.06,9.21,353.7,353.58,353.48,353.40000000000003,353.34000000000003,353.28000000000003,353.23,353.18,353.09000000000003,5.13,4.59,4.3500000000000005,4.11,3.89,3.68,3.47,3.27,2.87,N/A,N/A +2013,3,24,15,30,94860,93690,92560,37.47,0,5.96,7.29,7.8100000000000005,8.1,8.290000000000001,8.44,8.540000000000001,8.620000000000001,8.75,354.6,354.65000000000003,354.69,354.71,354.73,354.74,354.74,354.75,354.76,6.04,5.38,5.09,4.84,4.6000000000000005,4.39,4.17,3.96,3.56,N/A,N/A +2013,3,24,16,30,94840,93670,92540,30.240000000000002,0,5.44,6.63,7.09,7.33,7.5,7.62,7.7,7.76,7.8500000000000005,347.13,347.76,348.18,348.47,348.72,348.92,349.11,349.28000000000003,349.59000000000003,7.3,6.59,6.28,6.01,5.76,5.55,5.32,5.11,4.7,N/A,N/A +2013,3,24,17,30,94760,93600,92470,25.48,0,4.59,5.62,5.97,6.16,6.3,6.4,6.47,6.53,6.62,348.97,349.66,349.99,350.18,350.31,350.42,350.53000000000003,350.62,350.8,8.6,7.9,7.58,7.32,7.07,6.8500000000000005,6.62,6.41,6,N/A,N/A +2013,3,24,18,30,94710,93550,92430,19.09,0,5.34,6.47,6.87,7.08,7.21,7.32,7.390000000000001,7.44,7.51,345.38,346.24,346.81,347.22,347.56,347.85,348.16,348.43,348.94,10.06,9.33,9,8.73,8.48,8.26,8.03,7.82,7.4,N/A,N/A +2013,3,24,19,30,94610,93470,92350,17.79,0,4.43,5.26,5.5200000000000005,5.68,5.79,5.87,5.93,5.98,6.05,7.890000000000001,3.7800000000000002,0.85,358.3,356.31,354.68,353.47,352.45,350.96,11.36,10.69,10.370000000000001,10.09,9.84,9.620000000000001,9.39,9.17,8.75,N/A,N/A +2013,3,24,20,30,94520,93380,92270,16.28,0,4.54,5.42,5.68,5.7700000000000005,5.82,5.86,5.87,5.87,5.87,349.28000000000003,349.27,349.18,349.05,348.89,348.73,348.57,348.43,348.14,12.21,11.53,11.22,10.97,10.74,10.53,10.31,10.11,9.700000000000001,N/A,N/A +2013,3,24,21,30,94450,93310,92210,15.59,0,3.5700000000000003,4.29,4.53,4.64,4.71,4.76,4.79,4.8100000000000005,4.84,5.03,4.5600000000000005,4.17,3.95,3.75,3.58,3.36,3.15,2.64,13.120000000000001,12.49,12.200000000000001,11.950000000000001,11.71,11.5,11.27,11.07,10.66,N/A,N/A +2013,3,24,22,30,94390,93250,92150,14.870000000000001,0,4.05,4.7,4.86,4.93,4.98,5.01,5.04,5.05,5.08,42.63,38.2,35.550000000000004,33.45,31.650000000000002,30.11,28.63,27.29,24.8,13.3,12.700000000000001,12.450000000000001,12.22,12.01,11.81,11.6,11.41,11.01,N/A,N/A +2013,3,24,23,30,94340,93210,92110,14.97,0,2.96,3.67,3.9,4.03,4.11,4.18,4.22,4.25,4.28,29.67,29.94,30.09,30.36,30.63,30.89,31.11,31.3,31.48,13.44,12.96,12.73,12.51,12.290000000000001,12.1,11.88,11.68,11.28,N/A,N/A +2013,3,25,0,30,94350,93220,92120,16.47,0,2.66,3.7600000000000002,3.87,3.73,3.61,3.5,3.4,3.33,3.22,37.980000000000004,35.730000000000004,34.39,33.4,32.62,31.98,31.53,31.2,31.02,12.73,12.68,12.56,12.370000000000001,12.18,12,11.81,11.620000000000001,11.23,N/A,N/A +2013,3,25,1,30,94400,93270,92160,19,0,2.85,4.37,4.54,4.55,4.54,4.51,4.5,4.49,4.46,69.81,67.07000000000001,64.99,63.17,61.9,60.95,60.35,59.78,58.370000000000005,11.09,11.870000000000001,11.97,11.93,11.83,11.700000000000001,11.52,11.35,10.97,N/A,N/A +2013,3,25,2,30,94420,93280,92170,19.2,0,3.49,5.99,6.97,7.7700000000000005,8.26,8.620000000000001,8.69,8.68,8.3,74.68,73.39,72.67,72.33,72.2,72.15,72.36,72.61,73.11,10.26,10.790000000000001,10.89,10.93,10.870000000000001,10.8,10.64,10.49,10.15,N/A,N/A +2013,3,25,3,30,94480,93330,92220,21.18,0,3.54,6.0200000000000005,7.07,8.01,8.8,9.49,10.02,10.44,10.88,86.9,84.19,82.66,81.86,81.35000000000001,80.97,80.57000000000001,80.21000000000001,79.57000000000001,9.08,9.43,9.450000000000001,9.44,9.39,9.34,9.25,9.15,8.91,N/A,N/A +2013,3,25,4,30,94530,93370,92260,26,0,2.52,5.0200000000000005,6.12,7.22,8.21,9.1,9.86,10.51,11.34,106.76,98.11,92.95,90.31,88.95,88.09,87.77,87.55,87.44,7.58,8.25,8.25,8.24,8.19,8.15,8.09,8.03,7.890000000000001,N/A,N/A +2013,3,25,5,30,94570,93410,92290,28.330000000000002,0,2.6,5.32,6.57,7.8100000000000005,8.94,9.98,10.92,11.74,13.01,114.83,106.27,101.17,98.25,96.62,95.47,94.88,94.42,93.97,6.5,7.17,7.19,7.18,7.140000000000001,7.09,7.03,6.96,6.79,N/A,N/A +2013,3,25,6,30,94620,93460,92330,28.26,0,3.3200000000000003,6.17,7.5,8.74,9.81,10.76,11.56,12.24,13.200000000000001,112.49000000000001,106.75,103.18,100.89,99.48,98.46000000000001,97.96000000000001,97.64,97.52,6.15,6.5600000000000005,6.57,6.54,6.49,6.43,6.36,6.29,6.140000000000001,N/A,N/A +2013,3,25,7,30,94660,93500,92370,33.32,0,2.71,5.82,7.26,8.6,9.71,10.68,11.44,12.06,12.790000000000001,117.17,108.21000000000001,103.13,100.27,98.73,97.65,97.22,96.98,97.01,5.15,5.86,5.88,5.86,5.8100000000000005,5.75,5.7,5.65,5.55,N/A,N/A +2013,3,25,8,30,94720,93550,92410,36.54,0,2.21,4.98,6.45,7.83,8.99,10.02,10.86,11.55,12.450000000000001,125.58,113.53,106.33,102.62,100.59,99.18,98.58,98.24000000000001,98.28,4.33,5.0600000000000005,5.09,5.08,5.04,5,4.97,4.93,4.88,N/A,N/A +2013,3,25,9,30,94730,93560,92430,38.61,0,3.0700000000000003,6.16,7.54,8.790000000000001,9.85,10.78,11.53,12.11,12.73,101.79,96.34,93.06,91.14,90.07000000000001,89.35000000000001,89.13,89.08,89.43,4.16,4.8,4.7700000000000005,4.73,4.67,4.62,4.59,4.5600000000000005,4.55,N/A,N/A +2013,3,25,10,30,94840,93660,92520,44.02,0,0.5,1.25,1.78,2.4,3.17,4.0600000000000005,5.14,6.26,8.47,254.11,187.28,148.4,131.83,120.91,111.89,107.16,103.76,100.39,2.89,3.5500000000000003,3.49,3.38,3.24,3.1,2.96,2.83,2.62,N/A,N/A +2013,3,25,11,30,94930,93750,92600,47.93,0,0.96,1.73,2.0100000000000002,2.29,2.84,3.52,4.57,5.76,8.370000000000001,127.77,118.46000000000001,114.2,112.86,109.54,105.87,103.05,100.91,98.78,2.35,3.02,2.96,2.86,2.72,2.59,2.45,2.31,2.06,N/A,N/A +2013,3,25,12,30,95010,93820,92680,50.480000000000004,0,1.41,2.31,2.57,2.9,3.44,4.0600000000000005,4.87,5.73,7.57,48.86,68.62,80.05,88.71000000000001,91.76,93.41,93.44,93.41,93.51,1.6600000000000001,2.45,2.46,2.42,2.27,2.13,1.95,1.79,1.48,N/A,N/A +2013,3,25,13,30,95060,93880,92720,44.51,0,1.5,2.66,3.2600000000000002,3.8000000000000003,4.29,4.7700000000000005,5.32,5.9,7.11,50.21,71.48,81.64,85.99,87.76,88.88,89.44,89.85000000000001,90.51,2.16,2.09,2.02,1.93,1.8,1.6600000000000001,1.51,1.36,1.05,N/A,N/A +2013,3,25,14,30,95120,93940,92790,37.480000000000004,0,3.2600000000000002,4.14,4.5,4.73,4.92,5.08,5.23,5.37,5.65,93.88,94.07000000000001,94.10000000000001,94.01,93.86,93.72,93.55,93.38,93.05,4.1,3.61,3.39,3.18,2.97,2.79,2.59,2.4,2.0300000000000002,N/A,N/A +2013,3,25,15,30,95150,93970,92830,32.28,0,4.29,5.2700000000000005,5.6000000000000005,5.78,5.9,5.99,6.0600000000000005,6.12,6.21,93.60000000000001,93.89,93.99,94.02,94.03,94.03,94.02,94,93.95,5.92,5.3,5.0200000000000005,4.79,4.57,4.37,4.15,3.96,3.56,N/A,N/A +2013,3,25,16,30,95130,93960,92830,26.82,0,4.03,4.93,5.21,5.37,5.47,5.55,5.6000000000000005,5.65,5.71,99.79,100.4,100.74000000000001,100.97,101.16,101.32000000000001,101.47,101.60000000000001,101.86,7.59,6.94,6.65,6.4,6.16,5.95,5.74,5.53,5.13,N/A,N/A +2013,3,25,17,30,95090,93930,92800,22.87,0,4.11,5,5.28,5.44,5.53,5.61,5.66,5.69,5.74,109.52,109.98,110.22,110.36,110.45,110.53,110.60000000000001,110.65,110.73,9.1,8.42,8.11,7.84,7.6000000000000005,7.38,7.15,6.94,6.5200000000000005,N/A,N/A +2013,3,25,18,30,95050,93890,92770,21.650000000000002,0,3.85,4.66,4.92,5.0600000000000005,5.15,5.22,5.26,5.3,5.3500000000000005,107.05,107.68,108.08,108.35000000000001,108.58,108.77,108.95,109.11,109.41,10.13,9.47,9.15,8.88,8.63,8.41,8.18,7.97,7.55,N/A,N/A +2013,3,25,19,30,95010,93850,92740,20.75,0,3.5700000000000003,4.29,4.5200000000000005,4.64,4.72,4.7700000000000005,4.8100000000000005,4.84,4.88,125.26,125.06,124.8,124.56,124.3,124.07000000000001,123.83,123.61,123.17,11.14,10.49,10.18,9.91,9.66,9.44,9.21,9,8.58,N/A,N/A +2013,3,25,20,30,94950,93810,92690,20.36,0,3.4,4.0600000000000005,4.24,4.32,4.38,4.42,4.44,4.46,4.48,100.17,101.74000000000001,102.77,103.59,104.3,104.91,105.5,106.05,107.10000000000001,11.91,11.27,10.98,10.72,10.48,10.27,10.040000000000001,9.84,9.43,N/A,N/A +2013,3,25,21,30,94900,93760,92640,19.73,0,3.02,3.66,3.88,4.01,4.1,4.17,4.22,4.2700000000000005,4.33,122.98,124.15,124.65,124.92,125.07000000000001,125.18,125.22,125.25,125.25,12.790000000000001,12.18,11.89,11.63,11.39,11.17,10.950000000000001,10.73,10.31,N/A,N/A +2013,3,25,22,30,94880,93740,92630,19.25,0,2.91,3.42,3.56,3.61,3.64,3.66,3.67,3.67,3.67,99.31,101.38,102.8,103.97,105.01,105.92,106.83,107.65,109.21000000000001,12.97,12.39,12.14,11.9,11.67,11.47,11.25,11.05,10.64,N/A,N/A +2013,3,25,23,30,94870,93730,92620,19.56,0,2.77,3.33,3.49,3.59,3.65,3.7,3.73,3.75,3.8000000000000003,97.18,99.60000000000001,101.01,102.16,103.17,104.04,104.88,105.63,107.05,13.13,12.64,12.42,12.200000000000001,11.98,11.78,11.57,11.370000000000001,10.97,N/A,N/A +2013,3,26,0,30,94900,93760,92650,20.92,0,3.5100000000000002,5.04,5.5,5.76,5.87,5.93,5.91,5.88,5.7700000000000005,118.96000000000001,117.45,116.73,116.32000000000001,116.22,116.23,116.44,116.68,117.28,12.51,12.33,12.18,12,11.8,11.620000000000001,11.42,11.22,10.84,N/A,N/A +2013,3,26,1,30,94960,93810,92700,25.36,0,2.43,4.09,4.48,4.89,5.24,5.54,5.73,5.87,5.96,93.01,98.92,103.26,107.89,110.95,113.31,114.56,115.51,116.52,10.790000000000001,11.4,11.42,11.41,11.34,11.27,11.15,11.02,10.71,N/A,N/A +2013,3,26,2,30,95040,93890,92770,22.490000000000002,0,3.83,6.19,6.98,7.46,7.66,7.76,7.72,7.67,7.49,81.85000000000001,83.10000000000001,84.16,85.44,87.33,89.28,92.03,94.62,99.63,10.28,10.73,10.84,10.870000000000001,10.81,10.73,10.61,10.49,10.26,N/A,N/A +2013,3,26,3,30,95100,93940,92820,19.37,0,3.62,6.23,7.3500000000000005,8.35,9.16,9.84,10.39,10.83,11.35,94.13,89.7,87.57000000000001,86.88,87.06,87.5,88.3,89.07000000000001,90.58,9,9.370000000000001,9.44,9.49,9.51,9.53,9.52,9.5,9.38,N/A,N/A +2013,3,26,4,30,95150,93990,92860,19.19,0,4.94,7.65,8.82,9.85,10.67,11.370000000000001,11.91,12.34,12.870000000000001,93.92,91.65,90.44,89.76,89.67,89.79,90.42,91.23,93.67,8.4,8.540000000000001,8.540000000000001,8.51,8.46,8.42,8.36,8.3,8.17,N/A,N/A +2013,3,26,5,30,95190,94020,92890,20.59,0,4.2700000000000005,7.01,8.18,9.23,10.08,10.8,11.36,11.81,12.39,99.17,98.02,97.5,97.4,97.92,98.63,99.75,100.91,103.27,7.47,7.71,7.73,7.75,7.75,7.75,7.74,7.73,7.66,N/A,N/A +2013,3,26,6,30,95240,94070,92930,25.01,0,2.8000000000000003,5.76,7.05,8.26,9.3,10.21,10.94,11.56,12.42,116.32000000000001,111.35000000000001,108.83,107.69,107.65,107.96000000000001,108.8,109.68,111.49000000000001,6.09,6.8500000000000005,6.92,6.95,6.96,6.96,6.96,6.95,6.93,N/A,N/A +2013,3,26,7,30,95280,94110,92970,26.650000000000002,0,2.82,5.71,6.96,8.19,9.26,10.22,11.040000000000001,11.71,12.64,123.68,117.63,114.41,112.72,112.41,112.54,113.38,114.34,116.4,5.4,6.21,6.3,6.3500000000000005,6.390000000000001,6.42,6.47,6.5200000000000005,6.61,N/A,N/A +2013,3,26,8,30,95300,94120,92990,28.990000000000002,0,2.82,5.68,6.87,8.01,9.03,9.950000000000001,10.75,11.42,12.4,130.54,124.81,121.81,120.09,119.85000000000001,120.07000000000001,120.99000000000001,121.98,123.88000000000001,5,5.9,5.99,6.03,6.08,6.12,6.2,6.2700000000000005,6.42,N/A,N/A +2013,3,26,9,30,95310,94130,92990,31.25,0,2.08,4.28,5.3100000000000005,6.3500000000000005,7.3500000000000005,8.27,9.11,9.86,11.11,123.96000000000001,117.84,114.45,112.36,111.95,112.15,113.48,115.26,120,4.21,5.05,5.08,5.0600000000000005,5.0200000000000005,4.98,4.97,4.99,5.13,N/A,N/A +2013,3,26,10,30,95310,94130,92990,33.69,0,2.2,4.43,5.44,6.48,7.55,8.57,9.49,10.27,11.41,145.77,134.78,128.36,123.69,121.95,121.14,121.78,122.91,126.37,3.6,4.67,4.8100000000000005,4.86,4.9,4.94,5.01,5.1000000000000005,5.33,N/A,N/A +2013,3,26,11,30,95310,94130,92990,35.94,0,2.18,4.5600000000000005,5.59,6.55,7.63,8.66,9.59,10.36,11.48,144.61,136.87,131.75,127.24000000000001,126.19,126.11,127.58,129.6,134.65,3.14,4.16,4.3100000000000005,4.39,4.48,4.58,4.72,4.88,5.24,N/A,N/A +2013,3,26,12,30,95360,94170,93030,32.4,0,4.15,6.67,7.5200000000000005,8.13,8.84,9.540000000000001,10.3,11,12.15,143.54,143.34,142.27,140.5,139.66,139.31,140.05,141.33,145.07,3.29,3.7600000000000002,3.83,3.85,3.89,3.94,4.03,4.14,4.4,N/A,N/A +2013,3,26,13,30,95380,94200,93050,29.42,0,4.46,6.49,7.32,8.02,8.6,9.13,9.620000000000001,10.09,11.02,146.18,148.97,150.61,151.89000000000001,152.93,153.83,154.61,155.32,156.58,4.3500000000000005,4.24,4.15,4.0600000000000005,3.97,3.88,3.81,3.75,3.66,N/A,N/A +2013,3,26,14,30,95410,94240,93090,26.87,0,4.88,6.17,6.6000000000000005,6.87,7.0600000000000005,7.2,7.33,7.46,7.8,157.36,157.85,158.11,158.33,158.57,158.78,159.04,159.32,160.03,6.11,5.61,5.39,5.19,4.98,4.8,4.61,4.43,4.08,N/A,N/A +2013,3,26,15,30,95400,94230,93100,25.62,0,6.36,7.98,8.49,8.790000000000001,8.97,9.11,9.21,9.290000000000001,9.43,160.5,160.62,160.68,160.71,160.73,160.75,160.77,160.79,160.83,8.17,7.5200000000000005,7.25,7.01,6.79,6.59,6.38,6.19,5.8,N/A,N/A +2013,3,26,16,30,95370,94200,93080,22.75,0,7.22,9.05,9.63,9.96,10.18,10.34,10.46,10.55,10.68,161.75,161.86,161.9,161.94,161.97,162,162.03,162.06,162.14000000000001,10.22,9.47,9.18,8.92,8.67,8.45,8.23,8.02,7.62,N/A,N/A +2013,3,26,17,30,95290,94140,93020,21.36,0,7.22,9,9.55,9.85,10.040000000000001,10.19,10.290000000000001,10.36,10.46,163.06,163.06,163.05,163.04,163.02,163,162.99,162.98,162.95000000000002,11.71,10.91,10.6,10.33,10.08,9.86,9.620000000000001,9.41,8.99,N/A,N/A +2013,3,26,18,30,95220,94070,92950,20.36,0,7.11,8.86,9.38,9.68,9.86,10,10.1,10.17,10.27,163.22,163.25,163.25,163.23,163.21,163.19,163.17000000000002,163.15,163.1,13.01,12.200000000000001,11.88,11.6,11.35,11.120000000000001,10.89,10.67,10.25,N/A,N/A +2013,3,26,19,30,95150,94010,92900,19.62,0,7.18,8.93,9.46,9.75,9.94,10.08,10.17,10.25,10.35,162.04,162.08,162.09,162.09,162.08,162.06,162.05,162.04,162.01,14.120000000000001,13.3,12.98,12.700000000000001,12.450000000000001,12.22,11.99,11.77,11.35,N/A,N/A +2013,3,26,20,30,95060,93920,92820,19.240000000000002,0,7.09,8.82,9.34,9.64,9.83,9.97,10.06,10.13,10.23,162.09,162.1,162.1,162.09,162.07,162.05,162.03,162.02,161.99,14.96,14.16,13.85,13.58,13.33,13.1,12.870000000000001,12.66,12.23,N/A,N/A +2013,3,26,21,30,94970,93840,92740,19.5,0,7.12,8.89,9.42,9.72,9.91,10.05,10.14,10.22,10.32,161.1,161.15,161.17000000000002,161.17000000000002,161.17000000000002,161.17000000000002,161.17000000000002,161.17000000000002,161.16,15.540000000000001,14.780000000000001,14.49,14.22,13.98,13.76,13.530000000000001,13.32,12.9,N/A,N/A +2013,3,26,22,30,94910,93780,92680,20.47,0,7.25,9.09,9.64,9.950000000000001,10.16,10.31,10.41,10.49,10.6,159.44,159.53,159.59,159.62,159.65,159.67000000000002,159.70000000000002,159.72,159.77,15.76,15.09,14.82,14.57,14.34,14.13,13.9,13.69,13.280000000000001,N/A,N/A +2013,3,26,23,30,94870,93740,92640,21.96,0,7.33,9.27,9.85,10.19,10.42,10.59,10.700000000000001,10.8,10.92,158.43,158.47,158.48,158.48,158.48,158.49,158.49,158.5,158.51,15.47,14.96,14.74,14.51,14.290000000000001,14.09,13.88,13.67,13.27,N/A,N/A +2013,3,27,0,30,94840,93710,92610,25.22,0,5.98,8.19,8.94,9.49,9.92,10.28,10.57,10.83,11.24,158.96,158.83,158.77,158.72,158.70000000000002,158.69,158.70000000000002,158.71,158.71,14.49,14.34,14.200000000000001,14.040000000000001,13.86,13.69,13.49,13.31,12.93,N/A,N/A +2013,3,27,1,30,94850,93710,92610,30.580000000000002,0,3.33,5.86,6.84,7.67,8.38,9.01,9.56,10.05,10.84,146.1,146.37,146.62,146.86,147.20000000000002,147.56,148,148.45000000000002,149.45000000000002,12.47,12.85,12.88,12.85,12.780000000000001,12.700000000000001,12.58,12.46,12.16,N/A,N/A +2013,3,27,2,30,94850,93700,92600,30.48,0,5.0200000000000005,7.9,9.1,10.14,11.040000000000001,11.85,12.620000000000001,13.31,14.5,144.91,145.73,146.23,146.69,147.21,147.71,148.3,148.88,150.04,12,12.14,12.13,12.09,12.01,11.94,11.85,11.75,11.53,N/A,N/A +2013,3,27,3,30,94840,93700,92590,36.07,0,6.46,9.35,10.47,11.41,12.23,12.97,13.67,14.32,15.5,158.03,158.61,159.03,159.42000000000002,159.82,160.20000000000002,160.59,160.97,161.68,11.47,11.48,11.42,11.33,11.22,11.120000000000001,10.99,10.870000000000001,10.6,N/A,N/A +2013,3,27,4,30,94820,93670,92560,47.63,0,6.88,9.76,10.870000000000001,11.81,12.63,13.35,14.05,14.71,15.94,159.87,160.79,161.46,162.09,162.75,163.35,163.98,164.56,165.65,10.72,10.68,10.6,10.51,10.4,10.3,10.19,10.08,9.86,N/A,N/A +2013,3,27,5,30,94800,93650,92530,50.9,0,6.58,9.620000000000001,10.86,11.93,12.870000000000001,13.71,14.51,15.26,16.62,155.72,157.14000000000001,158.06,158.88,159.70000000000002,160.45000000000002,161.21,161.94,163.33,9.86,9.86,9.8,9.73,9.65,9.57,9.48,9.39,9.22,N/A,N/A +2013,3,27,6,30,94780,93620,92510,54.52,0,7.3,10.31,11.51,12.52,13.4,14.18,14.93,15.63,16.96,157.77,158.98,159.8,160.56,161.31,162,162.72,163.4,164.69,9.4,9.36,9.28,9.19,9.09,9,8.9,8.81,8.63,N/A,N/A +2013,3,27,7,30,94770,93610,92500,59.300000000000004,0,6.47,9.38,10.61,11.67,12.61,13.46,14.280000000000001,15.06,16.6,153.47,155.64000000000001,157.08,158.33,159.51,160.59,161.64000000000001,162.61,164.39000000000001,8.67,8.65,8.57,8.49,8.39,8.3,8.21,8.120000000000001,7.96,N/A,N/A +2013,3,27,8,30,94750,93590,92470,63.31,0,5.73,8.67,9.96,11.1,12.1,13,13.870000000000001,14.68,16.27,150.56,153.56,155.43,156.98,158.31,159.49,160.59,161.58,163.38,8.11,8.13,8.08,8.02,7.95,7.88,7.8100000000000005,7.75,7.62,N/A,N/A +2013,3,27,9,30,94730,93580,92450,68.02,0,4.97,7.79,9.06,10.19,11.200000000000001,12.11,13.01,13.86,15.51,148.53,152.13,154.37,156.19,157.74,159.1,160.34,161.47,163.41,7.42,7.5,7.48,7.43,7.38,7.33,7.2700000000000005,7.21,7.1000000000000005,N/A,N/A +2013,3,27,10,30,94720,93560,92440,72.21000000000001,0,5.24,8.02,9.25,10.33,11.32,12.22,13.08,13.9,15.52,148.81,151.93,153.92000000000002,155.57,157.01,158.3,159.44,160.47,162.31,7.09,7.15,7.12,7.07,7.01,6.95,6.88,6.82,6.7,N/A,N/A +2013,3,27,11,30,94730,93570,92450,77.34,0,5.11,7.890000000000001,9.14,10.27,11.28,12.200000000000001,13.09,13.94,15.59,146.26,150.19,152.66,154.63,156.26,157.69,158.94,160.06,161.97,6.57,6.63,6.6000000000000005,6.55,6.48,6.42,6.3500000000000005,6.29,6.15,N/A,N/A +2013,3,27,12,30,94740,93580,92450,81.73,0,5.5,8.370000000000001,9.700000000000001,10.9,11.96,12.93,13.870000000000001,14.75,16.41,147.55,151.49,153.97,155.93,157.5,158.85,159.95000000000002,160.92000000000002,162.47,6.33,6.4,6.37,6.32,6.26,6.21,6.140000000000001,6.08,5.96,N/A,N/A +2013,3,27,13,30,94750,93590,92460,76.77,0,7.25,10.17,11.39,12.41,13.27,14.02,14.72,15.36,16.54,154.37,156.59,157.84,158.82,159.64000000000001,160.34,160.96,161.52,162.5,7.26,7.05,6.91,6.78,6.640000000000001,6.51,6.390000000000001,6.2700000000000005,6.04,N/A,N/A +2013,3,27,14,30,94770,93610,92490,69.17,0,9.19,11.620000000000001,12.35,12.82,13.14,13.38,13.57,13.74,14.09,162.92000000000002,163.16,163.29,163.4,163.5,163.6,163.70000000000002,163.79,164.02,9.08,8.56,8.32,8.11,7.890000000000001,7.7,7.5,7.3100000000000005,6.95,N/A,N/A +2013,3,27,15,30,94780,93640,92520,62.83,0,8.51,10.67,11.32,11.71,11.94,12.1,12.200000000000001,12.27,12.34,164.66,164.68,164.70000000000002,164.72,164.75,164.77,164.79,164.82,164.89000000000001,11.02,10.33,10.05,9.81,9.58,9.370000000000001,9.15,8.950000000000001,8.55,N/A,N/A +2013,3,27,16,30,94750,93610,92500,56.14,0,8.19,10.23,10.85,11.200000000000001,11.41,11.56,11.64,11.700000000000001,11.76,163.64000000000001,163.71,163.77,163.82,163.87,163.91,163.96,164.02,164.12,12.92,12.14,11.83,11.57,11.32,11.11,10.88,10.68,10.27,N/A,N/A +2013,3,27,17,30,94690,93560,92460,50.59,0,7.9,9.81,10.39,10.700000000000001,10.89,11.02,11.09,11.14,11.18,164.96,165.07,165.12,165.17000000000002,165.22,165.26,165.3,165.34,165.42000000000002,14.530000000000001,13.700000000000001,13.370000000000001,13.1,12.85,12.63,12.4,12.19,11.78,N/A,N/A +2013,3,27,18,30,94620,93500,92400,45.58,0,7.61,9.43,9.96,10.25,10.42,10.540000000000001,10.6,10.65,10.68,165.63,165.73,165.78,165.83,165.87,165.9,165.94,165.98,166.06,16.09,15.24,14.92,14.64,14.38,14.16,13.93,13.72,13.31,N/A,N/A +2013,3,27,19,30,94570,93450,92360,42.22,0,7.51,9.290000000000001,9.81,10.09,10.26,10.370000000000001,10.43,10.46,10.48,165.57,165.68,165.74,165.79,165.83,165.86,165.9,165.94,166.01,17.37,16.52,16.19,15.91,15.66,15.43,15.21,15,14.59,N/A,N/A +2013,3,27,20,30,94520,93400,92320,41.050000000000004,0,7.45,9.21,9.73,9.99,10.15,10.25,10.31,10.34,10.35,162.52,162.61,162.70000000000002,162.77,162.84,162.9,162.98,163.04,163.18,18.22,17.39,17.07,16.79,16.54,16.32,16.09,15.88,15.47,N/A,N/A +2013,3,27,21,30,94470,93360,92270,40.21,0,7.0200000000000005,8.700000000000001,9.21,9.48,9.64,9.76,9.82,9.870000000000001,9.9,160.93,161.05,161.11,161.16,161.20000000000002,161.22,161.25,161.28,161.33,18.53,17.75,17.46,17.19,16.95,16.73,16.5,16.3,15.88,N/A,N/A +2013,3,27,22,30,94440,93330,92240,42.42,0,7.08,8.83,9.34,9.63,9.81,9.92,9.99,10.040000000000001,10.09,156.06,156.36,156.55,156.71,156.86,156.98,157.11,157.24,157.48,18.47,17.78,17.51,17.26,17.02,16.8,16.59,16.38,15.97,N/A,N/A +2013,3,27,23,30,94440,93330,92240,45.5,0,7.11,8.950000000000001,9.5,9.82,10.03,10.18,10.27,10.34,10.42,153.57,153.86,154.05,154.21,154.36,154.5,154.64000000000001,154.77,155.05,17.81,17.27,17.04,16.81,16.59,16.38,16.17,15.97,15.56,N/A,N/A +2013,3,28,0,30,94460,93340,92250,52.69,0,6.51,8.51,9.13,9.57,9.89,10.15,10.36,10.540000000000001,10.83,154.14000000000001,154.25,154.34,154.42000000000002,154.52,154.61,154.73,154.84,155.07,16.02,15.74,15.57,15.370000000000001,15.17,14.99,14.780000000000001,14.59,14.19,N/A,N/A +2013,3,28,1,30,94500,93370,92270,61.47,0,5.53,7.75,8.6,9.27,9.82,10.290000000000001,10.700000000000001,11.08,11.75,149.68,150,150.25,150.54,150.86,151.17000000000002,151.53,151.86,152.57,14.030000000000001,13.89,13.75,13.59,13.41,13.24,13.040000000000001,12.85,12.46,N/A,N/A +2013,3,28,2,30,94530,93390,92290,70.01,0,5.68,8.01,8.9,9.63,10.25,10.78,11.28,11.73,12.57,148.15,149.03,149.62,150.17000000000002,150.73,151.25,151.82,152.37,153.46,12.55,12.370000000000001,12.23,12.07,11.89,11.73,11.540000000000001,11.36,11,N/A,N/A +2013,3,28,3,30,94570,93430,92320,76.38,0,4.63,6.9,7.9,8.76,9.51,10.17,10.790000000000001,11.38,12.5,150.48,151.51,152.20000000000002,152.81,153.38,153.92000000000002,154.46,154.94,155.87,11.69,11.57,11.450000000000001,11.31,11.16,11.02,10.86,10.71,10.41,N/A,N/A +2013,3,28,4,30,94560,93420,92320,80.8,0,3.67,6,7.07,8.01,8.81,9.52,10.21,10.85,12.09,152.28,153.31,153.97,154.45000000000002,154.86,155.21,155.54,155.84,156.4,11.23,11.200000000000001,11.120000000000001,11.01,10.89,10.77,10.64,10.52,10.28,N/A,N/A +2013,3,28,5,30,94560,93420,92310,86.76,0,3.33,5.83,7.0200000000000005,8.06,8.97,9.78,10.55,11.27,12.63,147.53,150.01,151.54,152.41,153.12,153.73,154.22,154.67000000000002,155.5,10.71,10.790000000000001,10.73,10.65,10.56,10.47,10.370000000000001,10.27,10.08,N/A,N/A +2013,3,28,6,30,94560,93420,92320,89.27,0,3.41,6.0600000000000005,7.21,8.120000000000001,8.88,9.540000000000001,10.16,10.73,11.84,147.89000000000001,151.21,152.96,153.63,154.39000000000001,155.14000000000001,155.93,156.66,158.03,11.03,11.15,11.1,11.02,10.91,10.81,10.68,10.55,10.290000000000001,N/A,N/A +2013,3,28,7,30,94560,93420,92320,84.18,0,4.51,6.67,7.65,8.47,9.19,9.85,10.47,11.05,12.18,157.04,158.1,158.82,159.45000000000002,160.02,160.53,161.02,161.47,162.31,11.92,11.72,11.59,11.44,11.290000000000001,11.15,11,10.86,10.58,N/A,N/A +2013,3,28,8,30,94530,93400,92290,83.75,0,5.33,7.44,8.3,9.040000000000001,9.69,10.27,10.83,11.34,12.31,159.93,159.87,159.86,159.89000000000001,159.99,160.09,160.27,160.46,160.95000000000002,12.46,12.21,12.07,11.9,11.73,11.57,11.39,11.22,10.870000000000001,N/A,N/A +2013,3,28,9,30,94510,93380,92280,83.77,0,5.1000000000000005,6.94,7.63,8.17,8.620000000000001,9,9.35,9.67,10.27,158.88,158.96,159.04,159.13,159.26,159.39000000000001,159.56,159.74,160.11,12.950000000000001,12.700000000000001,12.540000000000001,12.35,12.17,11.99,11.790000000000001,11.61,11.23,N/A,N/A +2013,3,28,10,30,94510,93380,92280,84.76,0,4.78,6.5,7.13,7.63,8.040000000000001,8.4,8.73,9.040000000000001,9.620000000000001,154.88,155.02,155.17000000000002,155.36,155.61,155.87,156.19,156.51,157.20000000000002,12.93,12.67,12.5,12.32,12.13,11.950000000000001,11.75,11.57,11.19,N/A,N/A +2013,3,28,11,30,94510,93380,92280,85.72,0,5.26,7.05,7.69,8.19,8.59,8.94,9.25,9.540000000000001,10.07,156.1,156.01,155.99,156.05,156.16,156.3,156.52,156.72,157.23,12.950000000000001,12.69,12.52,12.34,12.15,11.97,11.77,11.59,11.200000000000001,N/A,N/A +2013,3,28,12,30,94510,93380,92280,87.02,0,5.47,7.26,7.890000000000001,8.370000000000001,8.75,9.07,9.35,9.61,10.09,159.56,159.41,159.35,159.38,159.46,159.55,159.69,159.84,160.23,12.92,12.66,12.49,12.31,12.11,11.94,11.74,11.55,11.16,N/A,N/A +2013,3,28,13,30,94520,93390,92290,87.3,0,4.5200000000000005,6.01,6.5200000000000005,6.91,7.25,7.54,7.79,8.02,8.51,165.33,165.18,165.14000000000001,165.15,165.22,165.29,165.35,165.42000000000002,165.59,13.07,12.790000000000001,12.61,12.43,12.23,12.05,11.85,11.66,11.27,N/A,N/A +2013,3,28,14,30,94540,93410,92320,84.84,0,4.43,5.64,6.0200000000000005,6.2700000000000005,6.45,6.6000000000000005,6.73,6.8500000000000005,7.15,160.81,160.78,160.8,160.86,160.98,161.09,161.28,161.47,161.94,13.51,13.14,12.950000000000001,12.76,12.56,12.38,12.17,11.99,11.6,N/A,N/A +2013,3,28,15,30,94570,93440,92340,76.89,0,6.3100000000000005,7.91,8.39,8.66,8.82,8.94,9.01,9.05,9.11,168.23,167.9,167.71,167.56,167.44,167.33,167.23,167.15,167,14.63,14.06,13.83,13.6,13.38,13.19,12.97,12.780000000000001,12.39,N/A,N/A +2013,3,28,16,30,94560,93430,92350,68.04,0,5.67,7.03,7.45,7.69,7.84,7.94,8.01,8.05,8.1,167.63,167.21,166.98,166.81,166.66,166.52,166.39000000000001,166.28,166.04,16.37,15.63,15.34,15.08,14.85,14.63,14.42,14.22,13.82,N/A,N/A +2013,3,28,17,30,94520,93410,92330,63.77,0,5.86,7.21,7.61,7.82,7.94,8.02,8.06,8.08,8.06,168.99,168.52,168.28,168.07,167.9,167.75,167.6,167.46,167.20000000000002,17.86,17.07,16.75,16.48,16.23,16.01,15.790000000000001,15.59,15.18,N/A,N/A +2013,3,28,18,30,94490,93380,92300,58.84,0,5.72,6.98,7.33,7.48,7.55,7.59,7.59,7.59,7.5200000000000005,158.97,159.47,159.74,159.94,160.14000000000001,160.31,160.5,160.67000000000002,161.07,19.080000000000002,18.28,17.96,17.7,17.46,17.240000000000002,17.03,16.830000000000002,16.43,N/A,N/A +2013,3,28,19,30,94440,93340,92270,51.06,0,5.43,6.66,7.0200000000000005,7.19,7.29,7.3500000000000005,7.38,7.390000000000001,7.38,164.31,164.19,164.15,164.11,164.07,164.04,164,163.96,163.9,21.07,20.28,19.97,19.69,19.45,19.23,19.01,18.81,18.400000000000002,N/A,N/A +2013,3,28,20,30,94400,93300,92230,47.45,0,5.61,6.88,7.2700000000000005,7.46,7.58,7.65,7.69,7.72,7.72,160.41,160.43,160.44,160.43,160.4,160.37,160.33,160.3,160.23,22.16,21.38,21.07,20.79,20.55,20.330000000000002,20.11,19.91,19.490000000000002,N/A,N/A +2013,3,28,21,30,94380,93280,92220,43.910000000000004,0,5.5,6.78,7.16,7.34,7.46,7.53,7.57,7.6000000000000005,7.62,163.92000000000002,163.93,163.89000000000001,163.83,163.77,163.71,163.64000000000001,163.57,163.44,22.830000000000002,22.080000000000002,21.79,21.53,21.29,21.07,20.85,20.650000000000002,20.240000000000002,N/A,N/A +2013,3,28,22,30,94350,93250,92190,46.44,0,6.53,8.11,8.55,8.78,8.92,9.02,9.07,9.11,9.13,157.46,157.72,157.86,157.94,157.99,158.03,158.05,158.08,158.11,22.64,21.95,21.68,21.43,21.2,20.990000000000002,20.77,20.57,20.16,N/A,N/A +2013,3,28,23,30,94380,93280,92220,49.5,0,5.89,7.4,7.86,8.120000000000001,8.3,8.42,8.51,8.57,8.65,167.61,167.23,167.01,166.81,166.63,166.47,166.32,166.19,165.94,22.25,21.73,21.51,21.28,21.07,20.86,20.650000000000002,20.46,20.05,N/A,N/A +2013,3,29,0,30,94400,93300,92230,57.59,0,5.78,7.5200000000000005,8.040000000000001,8.39,8.65,8.86,9.02,9.16,9.370000000000001,163.92000000000002,163.71,163.54,163.4,163.28,163.18,163.09,163.01,162.88,20.330000000000002,20.04,19.87,19.68,19.48,19.3,19.09,18.91,18.51,N/A,N/A +2013,3,29,1,30,94440,93330,92260,67.14,0,4.92,7.11,7.92,8.55,9.07,9.51,9.89,10.23,10.8,154.93,155.49,155.79,156.12,156.44,156.76,157.05,157.31,157.69,18.86,18.78,18.68,18.54,18.39,18.240000000000002,18.07,17.900000000000002,17.54,N/A,N/A +2013,3,29,2,30,94480,93370,92290,74.59,0,4.95,7.22,8.08,8.790000000000001,9.370000000000001,9.88,10.33,10.74,11.47,151.69,152.02,152.32,152.61,152.92000000000002,153.24,153.59,153.92000000000002,154.57,17.580000000000002,17.5,17.400000000000002,17.27,17.13,16.98,16.82,16.67,16.34,N/A,N/A +2013,3,29,3,30,94490,93370,92290,77.99,0,5.32,7.8100000000000005,8.83,9.71,10.450000000000001,11.11,11.73,12.3,13.38,151.47,152.56,153.35,154.04,154.65,155.20000000000002,155.71,156.17000000000002,156.98,17.13,17.07,16.990000000000002,16.88,16.76,16.64,16.51,16.38,16.12,N/A,N/A +2013,3,29,4,30,94480,93360,92280,83.62,0,5.23,7.7700000000000005,8.81,9.700000000000001,10.5,11.22,11.93,12.6,13.9,150.87,151.84,152.52,153.15,153.79,154.38,155.02,155.63,156.86,16.51,16.490000000000002,16.43,16.34,16.25,16.16,16.07,15.98,15.790000000000001,N/A,N/A +2013,3,29,5,30,94470,93350,92270,87.13,0,5.15,7.84,8.97,9.950000000000001,10.790000000000001,11.55,12.26,12.92,14.18,153.3,154.84,155.81,156.58,157.26,157.87,158.48,159.06,160.25,16.18,16.19,16.14,16.080000000000002,16,15.93,15.85,15.780000000000001,15.65,N/A,N/A +2013,3,29,6,30,94500,93380,92290,93.09,0,4.26,6.76,7.84,8.77,9.58,10.290000000000001,10.98,11.620000000000001,12.89,146.18,148.05,149.20000000000002,150.01,150.70000000000002,151.31,151.91,152.48,153.70000000000002,15.370000000000001,15.38,15.31,15.22,15.13,15.030000000000001,14.92,14.82,14.620000000000001,N/A,N/A +2013,3,29,7,30,94510,93390,92310,87.75,0,6.04,8.34,9.22,9.94,10.55,11.09,11.58,12.02,12.84,153.8,155.02,155.70000000000002,156.31,156.86,157.34,157.81,158.23,159.04,16.46,16.22,16.07,15.91,15.75,15.6,15.43,15.280000000000001,14.97,N/A,N/A +2013,3,29,8,30,94500,93390,92300,87.67,0,6.12,8.18,8.9,9.46,9.92,10.32,10.67,11,11.620000000000001,160.64000000000001,160.53,160.49,160.49,160.52,160.56,160.61,160.68,160.91,16.51,16.240000000000002,16.07,15.89,15.700000000000001,15.530000000000001,15.34,15.16,14.780000000000001,N/A,N/A +2013,3,29,9,30,94490,93370,92290,87.14,0,5.57,7.43,8.08,8.58,9,9.35,9.66,9.94,10.47,160.87,161.07,161.20000000000002,161.35,161.51,161.68,161.84,162,162.33,16.61,16.330000000000002,16.17,15.98,15.790000000000001,15.610000000000001,15.41,15.23,14.85,N/A,N/A +2013,3,29,10,30,94480,93360,92280,85.62,0,5.4,7.23,7.87,8.36,8.76,9.1,9.41,9.69,10.21,158.53,158.74,158.85,158.99,159.14000000000001,159.28,159.46,159.63,159.99,16.52,16.26,16.09,15.91,15.72,15.540000000000001,15.35,15.17,14.790000000000001,N/A,N/A +2013,3,29,11,30,94480,93360,92280,87.11,0,5.92,7.86,8.51,9.01,9.4,9.74,10.03,10.31,10.81,160.94,160.99,161.05,161.15,161.26,161.39000000000001,161.54,161.69,162.05,16.37,16.09,15.93,15.75,15.56,15.39,15.200000000000001,15.02,14.65,N/A,N/A +2013,3,29,12,30,94500,93380,92300,86.68,0,5.55,7.37,8,8.48,8.870000000000001,9.200000000000001,9.49,9.75,10.24,160.53,160.63,160.71,160.83,160.99,161.15,161.34,161.54,162,16.330000000000002,16.06,15.9,15.71,15.530000000000001,15.35,15.16,14.98,14.6,N/A,N/A +2013,3,29,13,30,94510,93390,92300,87.77,0,5.3,7.07,7.7,8.2,8.620000000000001,8.98,9.32,9.620000000000001,10.18,164.04,164,164.06,164.20000000000002,164.33,164.46,164.59,164.72,165.05,16.240000000000002,15.96,15.790000000000001,15.610000000000001,15.42,15.25,15.05,14.88,14.51,N/A,N/A +2013,3,29,14,30,94530,93410,92330,85.73,0,5.67,7.36,7.94,8.38,8.76,9.1,9.48,9.84,10.64,165.06,165.21,165.34,165.51,165.72,165.93,166.20000000000002,166.46,167.08,16.42,16.07,15.89,15.700000000000001,15.51,15.33,15.14,14.96,14.6,N/A,N/A +2013,3,29,15,30,94540,93420,92340,81.82000000000001,0,6.0200000000000005,7.59,8.08,8.370000000000001,8.57,8.73,8.86,8.98,9.23,170.01,169.94,169.88,169.85,169.84,169.84,169.86,169.88,169.97,17.02,16.59,16.38,16.18,15.97,15.790000000000001,15.59,15.41,15.040000000000001,N/A,N/A +2013,3,29,16,30,94530,93420,92340,75.04,0,5.63,7.03,7.48,7.73,7.9,8.02,8.11,8.19,8.3,173.07,172.79,172.57,172.41,172.28,172.17000000000002,172.06,171.96,171.78,18.19,17.55,17.3,17.06,16.84,16.64,16.44,16.25,15.860000000000001,N/A,N/A +2013,3,29,17,30,94470,93370,92290,68.85000000000001,0,6.0600000000000005,7.5600000000000005,8.040000000000001,8.290000000000001,8.46,8.58,8.65,8.71,8.78,166.34,167.03,167.4,167.70000000000002,167.96,168.18,168.41,168.61,169.02,19.34,18.72,18.47,18.22,18,17.8,17.580000000000002,17.39,16.990000000000002,N/A,N/A +2013,3,29,18,30,94410,93310,92240,59.26,0,6.03,7.45,7.9,8.14,8.3,8.41,8.47,8.53,8.58,160.70000000000002,161.51,162,162.4,162.76,163.1,163.42000000000002,163.71,164.31,21.61,20.82,20.52,20.240000000000002,20,19.78,19.56,19.36,18.95,N/A,N/A +2013,3,29,19,30,94350,93260,92200,52.04,0,6.32,7.79,8.26,8.51,8.67,8.77,8.84,8.89,8.94,167.9,168.13,168.29,168.41,168.52,168.61,168.71,168.8,168.98,23.38,22.57,22.25,21.97,21.73,21.5,21.28,21.07,20.650000000000002,N/A,N/A +2013,3,29,20,30,94290,93200,92150,50.14,0,6.24,7.69,8.13,8.370000000000001,8.52,8.61,8.67,8.71,8.73,161.03,161.41,161.73,162.05,162.34,162.61,162.88,163.13,163.65,24.13,23.34,23.03,22.75,22.5,22.28,22.05,21.84,21.43,N/A,N/A +2013,3,29,21,30,94260,93170,92120,47.17,0,6.55,8.120000000000001,8.620000000000001,8.870000000000001,9.05,9.16,9.23,9.28,9.32,162.42000000000002,162.67000000000002,162.84,162.98,163.1,163.20000000000002,163.31,163.4,163.57,24.36,23.7,23.44,23.19,22.96,22.740000000000002,22.52,22.32,21.91,N/A,N/A +2013,3,29,22,30,94350,93260,92200,51.410000000000004,0,5.22,6.5200000000000005,6.82,6.99,7.1000000000000005,7.16,7.19,7.21,7.21,195.83,195.8,195.66,195.6,195.58,195.58,195.61,195.64000000000001,195.76,23.44,22.990000000000002,22.79,22.57,22.36,22.16,21.96,21.76,21.36,N/A,N/A +2013,3,29,23,30,94490,93390,92320,69.51,1.8,2.32,2.9,3.12,3.25,3.37,3.47,3.59,3.71,4,236.63,233.88,232.62,230.96,229.18,227.3,225.5,223.83,220.59,20.47,20.09,19.92,19.740000000000002,19.57,19.400000000000002,19.240000000000002,19.1,18.82,N/A,N/A +2013,3,30,0,30,94200,93110,92040,59.54,0,6.43,8.290000000000001,8.77,9.03,9.17,9.23,9.25,9.26,9.26,162.86,162.05,161.19,160.02,158.61,157.07,154.98,152.94,147.84,21.02,20.900000000000002,20.830000000000002,20.75,20.69,20.64,20.63,20.62,20.71,N/A,N/A +2013,3,30,1,30,94170,93070,92010,68.22,0,7.62,10.36,11.26,11.94,12.43,12.82,13.09,13.3,13.5,165.21,165.56,165.65,165.74,165.81,165.84,165.77,165.68,164.95000000000002,20.580000000000002,20.57,20.51,20.42,20.31,20.2,20.09,19.98,19.77,N/A,N/A +2013,3,30,2,30,94230,93130,92070,73.41,0,5.54,8.2,9.290000000000001,10.24,11.05,11.76,12.4,12.98,13.85,157.3,158.70000000000002,159.66,160.49,161.24,161.94,162.61,163.23,164.38,19.84,19.900000000000002,19.86,19.79,19.7,19.62,19.51,19.42,19.18,N/A,N/A +2013,3,30,3,30,94280,93180,92120,81.14,0,3.2,5.78,6.91,8.11,9.22,10.28,11.22,12.1,13.620000000000001,153.18,161.91,167.07,169.76,171.59,172.76,173.44,173.98,174.58,18.82,19.16,19.17,19.14,19.1,19.05,19,18.95,18.85,N/A,N/A +2013,3,30,4,30,94270,93170,92100,88.23,0,1.69,3.35,4.14,5.38,6.62,7.86,9.02,10.14,11.99,113.66,133.16,145.87,154.02,159.44,162.69,164.54,166,167.61,17.82,18.43,18.45,18.43,18.43,18.44,18.45,18.47,18.490000000000002,N/A,N/A +2013,3,30,5,30,94290,93180,92110,89.54,0,2.08,3.8000000000000003,4.46,5.46,6.46,7.49,8.48,9.450000000000001,11.14,108.36,125.78,137.53,145.64000000000001,151.24,154.92000000000002,157.22,159.08,161.27,17.080000000000002,17.81,17.89,17.93,17.96,17.990000000000002,18.01,18.04,18.07,N/A,N/A +2013,3,30,6,30,94290,93170,92100,92.23,0,1.9000000000000001,4.6000000000000005,6.03,7.49,8.790000000000001,9.98,11.03,12.01,13.780000000000001,162.58,165.44,166.73,166.43,165.8,164.99,164.45000000000002,164,163.82,16.05,17.03,17.35,17.69,17.92,18.1,18.19,18.25,18.27,N/A,N/A +2013,3,30,7,30,94330,93220,92150,85.8,0,3.06,5.82,6.98,8.05,9.01,9.89,10.72,11.51,12.91,141.59,146.86,150.39000000000001,152.29,153.58,154.48,155.14000000000001,155.72,156.86,17,17.6,17.68,17.72,17.740000000000002,17.76,17.76,17.75,17.71,N/A,N/A +2013,3,30,8,30,94260,93150,92080,82.07000000000001,0,6.17,9.01,10.11,11.08,11.93,12.700000000000001,13.46,14.16,15.41,156.86,158.08,158.79,159.35,159.83,160.25,160.78,161.33,162.87,16.79,16.87,16.85,16.82,16.78,16.740000000000002,16.71,16.69,16.68,N/A,N/A +2013,3,30,9,30,94250,93140,92060,87.46000000000001,0,4.58,7.5,8.75,9.91,10.91,11.790000000000001,12.58,13.290000000000001,14.5,153.86,158.75,161.31,162.97,164.05,164.84,165.33,165.76,166.49,15.97,16.19,16.21,16.22,16.21,16.2,16.18,16.16,16.12,N/A,N/A +2013,3,30,10,30,94310,93190,92110,94.19,0,2.39,4.83,5.95,7.17,8.27,9.31,10.24,11.120000000000001,12.61,127.82000000000001,140.27,149.03,153.68,156.96,159.21,160.72,161.99,163.79,14.450000000000001,15.1,15.13,15.13,15.11,15.08,15.040000000000001,15.01,14.92,N/A,N/A +2013,3,30,11,30,94290,93170,92090,93.14,0,4.91,7.5200000000000005,8.69,9.790000000000001,10.75,11.61,12.39,13.1,14.34,154.62,158.34,160.77,162.5,163.77,164.76,165.44,166.03,167,15.22,15.290000000000001,15.26,15.21,15.15,15.09,15.030000000000001,14.97,14.88,N/A,N/A +2013,3,30,12,30,94310,93190,92110,95.89,0,3.12,5.66,6.73,7.7,8.52,9.25,9.89,10.49,11.53,176.02,177.20000000000002,177.94,178.36,178.59,178.71,178.69,178.63,178.37,14.61,14.8,14.74,14.66,14.56,14.46,14.35,14.25,14.06,N/A,N/A +2013,3,30,13,30,94300,93180,92100,93.94,0,4.24,6.04,6.78,7.29,7.79,8.26,8.700000000000001,9.1,9.77,175.58,176.33,176.75,177.02,177.28,177.53,177.75,177.96,178.31,15.26,14.99,14.82,14.63,14.43,14.25,14.13,14.02,13.83,N/A,N/A +2013,3,30,14,30,94350,93230,92140,90.95,0,4.19,5.32,5.69,5.93,6.140000000000001,6.32,6.51,6.71,7.41,164.68,165.04,165.3,165.57,165.88,166.19,166.55,166.94,167.99,15.57,15.19,14.99,14.77,14.55,14.34,14.15,14,13.780000000000001,N/A,N/A +2013,3,30,15,30,94340,93220,92140,85.96000000000001,0,4,4.95,5.26,5.42,5.51,5.58,5.61,5.64,5.69,169.05,168.86,168.78,168.76,168.76,168.78,168.82,168.86,169.07,16.32,15.790000000000001,15.56,15.34,15.13,14.94,14.73,14.540000000000001,14.14,N/A,N/A +2013,3,30,16,30,94290,93180,92110,72.10000000000001,0,3.75,4.5600000000000005,4.8100000000000005,4.92,4.98,5.01,5.01,5,4.96,186.77,185.93,185.39000000000001,184.97,184.62,184.31,184.01,183.74,183.22,18.91,18.26,17.990000000000002,17.75,17.54,17.35,17.150000000000002,16.98,16.62,N/A,N/A +2013,3,30,17,30,94240,93150,92090,55.72,0,2.92,3.5500000000000003,3.7600000000000002,3.86,3.94,3.99,4.0200000000000005,4.04,4.07,199.06,198.03,197.4,197.03,196.75,196.54,196.38,196.25,196.08,22.47,21.85,21.56,21.31,21.09,20.88,20.67,20.48,20.09,N/A,N/A +2013,3,30,18,30,94180,93090,92040,44.86,0,3.24,3.93,4.14,4.24,4.3100000000000005,4.3500000000000005,4.37,4.39,4.4,187.79,188.21,188.51,188.83,189.15,189.46,189.79,190.1,190.76,25.04,24.38,24.080000000000002,23.81,23.580000000000002,23.37,23.150000000000002,22.95,22.55,N/A,N/A +2013,3,30,19,30,94110,93040,92000,36.79,0,3.23,3.91,4.13,4.23,4.3100000000000005,4.36,4.39,4.42,4.45,190.75,191.23000000000002,191.52,191.83,192.13,192.44,192.74,193.04,193.63,26.98,26.330000000000002,26.03,25.76,25.52,25.3,25.09,24.88,24.48,N/A,N/A +2013,3,30,20,30,94040,92970,91930,31.41,0,3.64,4.39,4.64,4.75,4.84,4.89,4.92,4.95,4.97,181.03,181.63,182.07,182.49,182.88,183.25,183.63,183.98,184.70000000000002,28.52,27.85,27.55,27.28,27.04,26.82,26.6,26.39,25.98,N/A,N/A +2013,3,30,21,30,93940,92880,91850,25.57,0,3.96,4.75,5,5.1000000000000005,5.17,5.2,5.22,5.23,5.23,185.72,185.79,185.81,185.89000000000001,186,186.14000000000001,186.3,186.45000000000002,186.81,29.47,28.8,28.53,28.26,28.04,27.810000000000002,27.6,27.39,26.990000000000002,N/A,N/A +2013,3,30,22,30,93910,92850,91820,23.12,0,4.09,4.86,5.11,5.22,5.29,5.33,5.36,5.38,5.39,196.94,195.34,194.07,193.05,192.24,191.6,191.09,190.66,190.05,29.78,29.18,28.94,28.68,28.47,28.25,28.04,27.830000000000002,27.43,N/A,N/A +2013,3,30,23,30,93810,92740,91710,21.080000000000002,0,4.5200000000000005,5.6000000000000005,5.86,6.04,6.15,6.24,6.3,6.3500000000000005,6.41,188.57,187.44,186.98,186.76,186.65,186.6,186.6,186.61,186.70000000000002,29.73,29.25,29.04,28.830000000000002,28.62,28.42,28.21,28.01,27.61,N/A,N/A +2013,3,31,0,30,93820,92750,91720,25.84,0,4.8100000000000005,6.74,7.41,7.8500000000000005,8.18,8.43,8.620000000000001,8.790000000000001,9.01,161.71,162.93,163.81,164.63,165.35,166.04,166.70000000000002,167.31,168.41,28.54,28.48,28.400000000000002,28.25,28.1,27.93,27.75,27.57,27.2,N/A,N/A +2013,3,31,1,30,93790,92720,91690,32.43,0,4.5,6.69,7.5,8.22,8.84,9.38,9.83,10.24,10.77,153.62,154.9,155.76,156.59,157.38,158.14000000000001,158.84,159.48,160.38,26.990000000000002,26.98,26.92,26.84,26.740000000000002,26.63,26.490000000000002,26.35,26.02,N/A,N/A +2013,3,31,2,30,93840,92760,91720,40.86,0,3.5,5.44,6.22,6.97,7.65,8.290000000000001,8.89,9.44,10.35,134.33,139.16,142.36,145.22,147.53,149.47,151.06,152.47,154.88,25.400000000000002,25.38,25.310000000000002,25.21,25.09,24.97,24.830000000000002,24.69,24.39,N/A,N/A +2013,3,31,3,30,93880,92800,91750,49.22,0,2.83,4.92,5.73,6.61,7.43,8.23,8.99,9.72,11,132.03,142.63,149.25,153.70000000000002,157.07,159.61,161.53,163.17000000000002,165.4,24.09,24.29,24.27,24.21,24.13,24.04,23.92,23.82,23.56,N/A,N/A +2013,3,31,4,30,93840,92760,91710,49.160000000000004,0,5.22,7.46,8.35,9.19,9.9,10.53,11.08,11.58,12.42,145.58,151.02,154.47,157.42000000000002,159.86,161.95000000000002,163.74,165.34,167.91,23.87,23.77,23.68,23.57,23.45,23.34,23.21,23.09,22.82,N/A,N/A +2013,3,31,5,30,93830,92750,91710,50.480000000000004,0,7.5200000000000005,10.26,11.33,12.24,13.02,13.74,14.370000000000001,14.950000000000001,15.75,174.27,173.58,173.14000000000001,172.66,172.23,171.83,171.57,171.36,171.52,23.76,23.71,23.650000000000002,23.57,23.5,23.43,23.38,23.330000000000002,23.25,N/A,N/A +2013,3,31,6,30,93850,92770,91720,54.77,0,3.9,6.88,8.36,9.73,10.870000000000001,11.86,12.68,13.43,14.55,169.12,171.1,172.21,172.70000000000002,172.99,173.13,173.19,173.23,173.3,23.03,22.98,22.900000000000002,22.8,22.71,22.62,22.52,22.44,22.27,N/A,N/A +2013,3,31,7,30,93860,92780,91730,56.69,0,6.25,8.8,9.81,10.65,11.36,11.98,12.540000000000001,13.06,14.01,155.33,156.99,158.11,159.03,159.91,160.78,161.8,162.78,165.06,22.69,22.61,22.52,22.42,22.32,22.22,22.11,22.01,21.81,N/A,N/A +2013,3,31,8,30,93900,92810,91750,67.46000000000001,0,2.22,4.68,5.7700000000000005,6.95,8.040000000000001,9.09,10.07,11.02,12.66,136.46,146.9,154.01,157.91,160.78,162.82,164.32,165.62,167.51,21.02,21.41,21.37,21.31,21.26,21.2,21.14,21.09,20.990000000000002,N/A,N/A +2013,3,31,9,30,93930,92840,91770,74.14,0,0.27,0.96,1.6500000000000001,2.37,3.0500000000000003,3.69,4.33,4.97,6.2700000000000005,72.42,100.71000000000001,141.35,146.38,150.04,152.41,154.21,155.85,158.55,19.57,20.01,19.96,19.89,19.81,19.73,19.64,19.55,19.35,N/A,N/A +2013,3,31,10,30,93910,92810,91740,83.02,0,2.19,4.22,4.86,5.34,5.67,5.9,6.22,6.5600000000000005,7.7700000000000005,107.3,114.59,119.61,123.98,129.07,134.39000000000001,140.54,146.37,155.85,17.96,18.5,18.52,18.5,18.47,18.43,18.38,18.32,18.240000000000002,N/A,N/A +2013,3,31,11,30,93910,92800,91740,85.98,0,3.15,5.3500000000000005,6.18,6.890000000000001,7.51,8.07,8.55,8.98,9.620000000000001,134.43,137.45000000000002,139.33,140.5,141.78,143.08,145.08,147.19,153.42000000000002,17.330000000000002,17.59,17.6,17.59,17.57,17.54,17.51,17.490000000000002,17.62,N/A,N/A +2013,3,31,12,30,93940,92830,91760,93.5,0,1.34,3.18,4.0600000000000005,4.86,5.57,6.21,6.69,7.07,7.140000000000001,129.47,139.95000000000002,145.66,147.95000000000002,149.61,150.92000000000002,152.57,154.29,159.16,16.330000000000002,16.79,16.8,16.79,16.76,16.73,16.72,16.740000000000002,17.01,N/A,N/A +2013,3,31,13,30,94000,92900,91820,89.66,0,1.6,2.54,3.17,3.68,4.13,4.53,4.75,4.92,4.82,160.09,165.59,169.62,171.88,173.33,174.15,175.03,175.88,177.78,16.94,16.78,16.71,16.61,16.51,16.43,16.4,16.38,16.46,N/A,N/A +2013,3,31,14,30,94020,92920,91850,81.17,0,3.13,3.73,3.87,3.9,3.89,3.85,3.7800000000000002,3.7,3.5700000000000003,160.46,162.20000000000002,163.49,164.79,166.12,167.4,168.99,170.5,174.79,18.54,18.03,17.82,17.61,17.42,17.25,17.07,16.91,16.59,N/A,N/A +2013,3,31,15,30,94070,92960,91890,81.23,0,3.39,4.01,4.15,4.16,4.12,4.07,3.96,3.86,3.61,151.75,154.16,155.67000000000002,157.04,158.43,159.77,161.44,163.06,167.73,18.55,17.96,17.73,17.52,17.34,17.17,17.01,16.86,16.580000000000002,N/A,N/A +2013,3,31,16,30,94050,92960,91900,64.22,0,2.5300000000000002,2.97,3.08,3.1,3.09,3.0500000000000003,2.99,2.94,2.8000000000000003,160.06,161.36,162.19,162.88,163.5,164.1,164.78,165.42000000000002,166.93,21.62,21.05,20.78,20.55,20.34,20.150000000000002,19.96,19.78,19.41,N/A,N/A +2013,3,31,17,30,94020,92940,91890,45.77,0,0.71,0.78,0.78,0.77,0.76,0.75,0.74,0.73,0.73,63.440000000000005,62.660000000000004,62.51,62.050000000000004,61.45,60.730000000000004,59.730000000000004,58.74,55.81,24.92,24.38,24.1,23.84,23.62,23.41,23.2,23.02,22.63,N/A,N/A +2013,3,31,18,30,94000,92930,91890,32.34,0,2.93,3.45,3.6,3.66,3.7,3.74,3.75,3.77,3.79,45.52,45.07,44.6,44.160000000000004,43.77,43.38,42.99,42.61,41.83,27.02,26.38,26.080000000000002,25.8,25.57,25.35,25.13,24.92,24.51,N/A,N/A +2013,3,31,19,30,93920,92850,91810,30.05,0,1.79,2.05,2.1,2.11,2.12,2.13,2.13,2.13,2.13,62.34,61.39,60.94,60.53,60.15,59.79,59.410000000000004,59.050000000000004,58.33,28.05,27.41,27.12,26.86,26.62,26.400000000000002,26.17,25.97,25.55,N/A,N/A +2013,3,31,20,30,93860,92790,91750,29.21,0,2.67,3.27,3.43,3.52,3.58,3.64,3.69,3.73,3.81,72.84,69.42,67.32000000000001,65.5,63.870000000000005,62.38,60.94,59.64,57.15,27.5,27.080000000000002,26.88,26.67,26.47,26.28,26.080000000000002,25.89,25.5,N/A,N/A +2013,3,31,21,30,93900,92820,91780,30.55,0,4.72,5.4,5.48,5.39,5.24,5.0600000000000005,4.83,4.61,4.11,156.99,157.13,156.99,156.63,156.16,155.59,154.75,153.91,151.24,26.3,25.580000000000002,25.29,25.04,24.830000000000002,24.64,24.46,24.3,23.98,N/A,N/A +2013,3,31,22,30,93870,92800,91750,31.21,0,5.04,6.11,6.4,6.49,6.53,6.5200000000000005,6.49,6.45,6.3100000000000005,125.92,125.8,125.62,125.24000000000001,124.87,124.5,124.08,123.68,122.75,26.61,25.93,25.66,25.42,25.19,24.990000000000002,24.78,24.59,24.21,N/A,N/A +2013,3,31,23,30,93850,92770,91730,30.32,0,4.1,5.01,5.25,5.36,5.42,5.45,5.47,5.47,5.44,97.45,97.2,96.97,96.68,96.39,96.09,95.77,95.46000000000001,94.8,26.98,26.45,26.22,25.990000000000002,25.78,25.580000000000002,25.37,25.17,24.77,N/A,N/A +2013,4,1,0,30,93910,92830,91780,39.7,0,2.35,3.56,4.04,4.25,4.41,4.55,4.7,4.83,5.18,63.75,73.13,78.55,82.63,85.78,88.33,89.93,91.16,92.18,24.810000000000002,24.580000000000002,24.45,24.29,24.12,23.94,23.75,23.56,23.18,N/A,N/A +2013,4,1,1,30,93910,92830,91780,48.370000000000005,0,3.08,4.93,5.48,5.8,6.0600000000000005,6.28,6.47,6.63,6.84,50.7,54.42,57.050000000000004,59.68,61.64,63.17,64.1,64.8,65.01,23.51,23.87,23.900000000000002,23.8,23.66,23.52,23.36,23.2,22.85,N/A,N/A +2013,4,1,2,30,94010,92920,91870,48.08,0,3.22,5.2700000000000005,6,6.62,7.140000000000001,7.6000000000000005,7.99,8.34,8.86,63.17,63.870000000000005,64.11,64.08,64.14,64.26,64.67,65.1,66.13,23.01,23.29,23.3,23.25,23.16,23.04,22.900000000000002,22.76,22.41,N/A,N/A +2013,4,1,3,30,94080,92990,91940,54.9,0,2.43,4.53,5.29,5.98,6.57,7.1000000000000005,7.61,8.06,8.9,84.73,84.21000000000001,83.89,83.82000000000001,83.76,83.71000000000001,83.64,83.57000000000001,83.59,21.490000000000002,21.830000000000002,21.82,21.75,21.66,21.56,21.42,21.31,21,N/A,N/A +2013,4,1,4,30,94110,93010,91950,62.27,0,0.33,1.25,2.09,2.91,3.72,4.5200000000000005,5.25,5.95,7.21,168.8,135.52,106.01,101.24000000000001,97.83,95.73,94.44,93.35000000000001,91.58,20.04,20.48,20.45,20.34,20.240000000000002,20.12,20.01,19.900000000000002,19.66,N/A,N/A +2013,4,1,5,30,94120,93020,91960,70.03,0,0.4,1.35,2.09,2.94,3.8200000000000003,4.72,5.6000000000000005,6.47,8.01,116.45,104.98,96.82000000000001,96.29,95.66,94.92,94.5,94.14,93.94,19.19,19.68,19.66,19.55,19.43,19.29,19.16,19.04,18.85,N/A,N/A +2013,4,1,6,30,94150,93040,91980,74.66,0,0.76,1.54,2.0100000000000002,2.85,3.72,4.6000000000000005,5.43,6.25,7.53,14.06,54.35,76.34,85.46000000000001,90.27,91.91,92.71000000000001,93.46000000000001,96.57000000000001,18.48,18.94,18.94,18.89,18.8,18.71,18.650000000000002,18.6,18.81,N/A,N/A +2013,4,1,7,30,94180,93080,92010,78.49,0,0.84,1.31,1.51,2.05,2.72,3.5100000000000002,4.44,5.45,7.38,85.51,97.87,103.27,108.89,109.92,107.78,106.13,104.61,104.23,17.8,18.2,18.150000000000002,18.07,17.97,17.86,17.76,17.69,17.71,N/A,N/A +2013,4,1,8,30,94190,93080,92010,82.01,0,1.1500000000000001,2.12,2.46,2.97,3.58,4.2700000000000005,5.07,5.9,7.43,129.11,124.8,122.45,121.35000000000001,119.96000000000001,118.27,117.47,116.9,117.36,17.32,17.81,17.78,17.72,17.68,17.64,17.61,17.57,17.580000000000002,N/A,N/A +2013,4,1,9,30,94200,93090,92020,86.27,0,1.82,3.79,4.53,5.04,5.44,5.75,6.09,6.43,7.23,161.06,156.79,153.04,148.67000000000002,144.68,141.04,138.35,136.2,135.3,16.44,17.13,17.22,17.22,17.17,17.09,16.96,16.86,16.7,N/A,N/A +2013,4,1,10,30,94210,93090,92010,90.4,0,1.1300000000000001,2.66,3.4,4.01,4.49,4.89,5.26,5.6000000000000005,6.08,157.96,151.25,146.56,143.76,141.86,140.46,141.72,143.5,150.31,15.31,15.97,16.06,16.11,16.080000000000002,16.03,16.01,15.99,16.01,N/A,N/A +2013,4,1,11,30,94230,93110,92030,91.62,0,1.62,2.75,3.08,3.52,3.88,4.2,4.46,4.7,5.18,136.78,134.69,135.29,138.32,143.46,149.38,155.3,160.65,168.59,14.77,15.31,15.370000000000001,15.42,15.49,15.55,15.65,15.74,15.93,N/A,N/A +2013,4,1,12,30,94220,93100,92020,93.98,0,0.8,1.61,1.92,2.2600000000000002,2.73,3.2600000000000002,3.79,4.32,5.25,91.41,117.53,135.12,150.69,159.96,167.04,170.28,172.94,174.81,13.92,14.77,15.040000000000001,15.24,15.36,15.46,15.57,15.66,15.81,N/A,N/A +2013,4,1,13,30,94250,93130,92050,84.29,0,1.44,2.0100000000000002,2.44,3.08,3.62,4.09,4.5,4.89,5.53,124.12,131.78,137.3,143.07,147.11,150.17000000000002,152.16,153.92000000000002,156.63,15.06,14.84,14.84,14.97,15.07,15.14,15.21,15.27,15.370000000000001,N/A,N/A +2013,4,1,14,30,94280,93160,92090,76.29,0,2.46,2.95,3.17,3.49,3.83,4.19,4.55,4.91,5.8500000000000005,135.75,138.32,141.12,146.22,149.51,151.61,153.3,154.84,157.5,16.94,16.59,16.43,16.28,16.19,16.13,16.05,15.99,15.94,N/A,N/A +2013,4,1,15,30,94280,93170,92100,71.12,0,3.19,3.92,4.16,4.2700000000000005,4.36,4.4,4.44,4.47,4.54,141.68,143.55,144.76,145.8,146.78,147.70000000000002,148.69,149.61,151.70000000000002,18.81,18.28,18.05,17.84,17.64,17.46,17.26,17.09,16.73,N/A,N/A +2013,4,1,16,30,94260,93160,92100,64.12,0,4.04,5,5.3,5.46,5.57,5.64,5.69,5.73,5.79,160.4,160.73,160.92000000000002,161.06,161.19,161.29,161.4,161.5,161.71,21.35,20.67,20.39,20.14,19.92,19.72,19.5,19.31,18.92,N/A,N/A +2013,4,1,17,30,94210,93120,92070,60.71,0,4.8,5.91,6.26,6.42,6.54,6.61,6.65,6.69,6.72,161.45000000000002,161.74,161.88,161.99,162.09,162.17000000000002,162.25,162.33,162.49,22.97,22.23,21.93,21.67,21.43,21.22,21,20.8,20.400000000000002,N/A,N/A +2013,4,1,18,30,94160,93080,92030,54.800000000000004,0,5.22,6.43,6.79,6.98,7.11,7.19,7.24,7.28,7.3,161.35,161.39000000000001,161.42000000000002,161.42000000000002,161.41,161.4,161.39000000000001,161.38,161.34,24.57,23.78,23.47,23.2,22.95,22.73,22.51,22.31,21.900000000000002,N/A,N/A +2013,4,1,19,30,94100,93030,91980,48.18,0,5.23,6.45,6.83,7.03,7.17,7.25,7.32,7.37,7.43,158.89000000000001,158.97,158.99,158.97,158.95000000000002,158.92000000000002,158.89000000000001,158.86,158.8,26.080000000000002,25.29,24.98,24.7,24.46,24.23,24.01,23.8,23.39,N/A,N/A +2013,4,1,20,30,94020,92940,91900,41.74,0,5.69,7.0200000000000005,7.43,7.640000000000001,7.79,7.88,7.95,8.01,8.08,157.75,157.82,157.86,157.86,157.85,157.84,157.82,157.81,157.78,27.23,26.45,26.14,25.87,25.63,25.400000000000002,25.18,24.97,24.55,N/A,N/A +2013,4,1,21,30,93930,92860,91820,38.92,0,6.29,7.8,8.27,8.52,8.700000000000001,8.82,8.9,8.96,9.05,154.68,154.87,154.98,155.06,155.11,155.16,155.20000000000002,155.23,155.29,27.67,26.91,26.62,26.35,26.11,25.89,25.66,25.45,25.03,N/A,N/A +2013,4,1,22,30,93830,92760,91720,37.050000000000004,0,6.4,8,8.5,8.76,8.96,9.09,9.19,9.26,9.36,148.19,148.57,148.79,148.95000000000002,149.08,149.19,149.3,149.4,149.58,27.7,27.01,26.75,26.5,26.27,26.05,25.830000000000002,25.63,25.21,N/A,N/A +2013,4,1,23,30,93850,92780,91750,35.74,0,5.86,7.3500000000000005,7.8100000000000005,8.06,8.24,8.36,8.44,8.51,8.6,155.19,155.31,155.38,155.45000000000002,155.51,155.58,155.64000000000001,155.71,155.83,27.47,26.95,26.73,26.490000000000002,26.28,26.07,25.86,25.67,25.26,N/A,N/A +2013,4,2,0,30,93870,92790,91750,39.83,0,2.16,3.71,4.28,4.73,5.08,5.37,5.6000000000000005,5.8,6.09,161.8,160.87,160.3,159.98,159.81,159.73,159.71,159.72,159.8,26.29,26.18,26.05,25.89,25.72,25.54,25.35,25.17,24.78,N/A,N/A +2013,4,2,1,30,93930,92830,91780,46.230000000000004,0,1.04,1.6,2.0300000000000002,2.5500000000000003,2.99,3.36,3.71,4.0200000000000005,4.16,68.77,57.910000000000004,50.410000000000004,43.51,37.99,33.47,29.55,26.01,22.7,21.72,21.46,21.36,21.26,21.150000000000002,21.05,20.97,20.92,21.14,N/A,N/A +2013,4,2,2,30,93870,92790,91740,45.27,0,3.59,4.96,5.51,5.97,6.390000000000001,6.8100000000000005,7.25,7.67,8.46,148.96,146.24,144.79,144.54,145.6,147.67000000000002,149.78,151.8,154.87,22.6,22.59,22.69,22.93,23.12,23.28,23.29,23.25,23,N/A,N/A +2013,4,2,3,30,93900,92820,91770,56.61,0,6.3,8.64,9.28,9.78,10.18,10.52,10.82,11.08,11.56,176.58,175.63,175.11,174.64000000000001,174.20000000000002,173.8,173.41,173.04,172.29,23.64,23.42,23.27,23.11,22.94,22.78,22.59,22.42,22.06,N/A,N/A +2013,4,2,4,30,93930,92850,91800,60.050000000000004,0,7.59,10.08,10.85,11.42,11.85,12.200000000000001,12.49,12.74,13.13,179.99,179.84,179.66,179.52,179.36,179.21,179.01,178.82,178.42000000000002,22.92,22.68,22.52,22.330000000000002,22.150000000000002,21.97,21.77,21.59,21.21,N/A,N/A +2013,4,2,5,30,93850,92750,91700,61.980000000000004,0,7.8,10.24,11.040000000000001,11.620000000000001,12.09,12.46,12.790000000000001,13.07,13.57,178.64000000000001,178.53,178.51,178.54,178.56,178.57,178.54,178.49,178.29,21.04,20.830000000000002,20.71,20.56,20.42,20.28,20.14,20.01,19.73,N/A,N/A +2013,4,2,6,30,93850,92750,91690,57.03,0,6.96,9.48,10.27,10.86,11.32,11.69,12,12.27,12.72,165.8,165.85,165.94,166.02,166.09,166.14000000000001,166.17000000000002,166.19,166.14000000000001,20.67,20.5,20.37,20.22,20.06,19.91,19.75,19.6,19.3,N/A,N/A +2013,4,2,7,30,93870,92770,91700,65.72,0,6.15,8.540000000000001,9.4,10.06,10.59,11.03,11.4,11.74,12.31,148.43,148.79,149.07,149.24,149.36,149.45000000000002,149.51,149.54,149.57,19.66,19.490000000000002,19.36,19.19,19.03,18.86,18.69,18.52,18.18,N/A,N/A +2013,4,2,8,30,93920,92820,91750,71.51,0,4.7700000000000005,7.25,8.26,9.11,9.82,10.43,10.99,11.51,12.47,155.22,155.73,156.03,156.25,156.48,156.71,157,157.29,158,18.68,18.650000000000002,18.57,18.46,18.34,18.23,18.1,17.97,17.71,N/A,N/A +2013,4,2,9,30,93910,92810,91740,77.24,0,4.51,6.88,7.86,8.71,9.44,10.07,10.67,11.23,12.280000000000001,143.38,145.4,146.76,147.83,148.76,149.58,150.4,151.17000000000002,152.72,17.8,17.75,17.67,17.56,17.45,17.34,17.21,17.1,16.89,N/A,N/A +2013,4,2,10,30,93880,92770,91700,82.37,0,5.25,7.86,8.93,9.870000000000001,10.66,11.370000000000001,12.02,12.63,13.77,150.48,152.25,153.34,154.19,154.91,155.53,156.09,156.61,157.54,17.29,17.240000000000002,17.150000000000002,17.04,16.92,16.8,16.68,16.56,16.330000000000002,N/A,N/A +2013,4,2,11,30,93900,92790,91710,88.32000000000001,0,4.72,7.3,8.38,9.31,10.09,10.77,11.4,11.99,13.06,142.82,145.16,146.49,147.45000000000002,148.23,148.88,149.5,150.07,151.14000000000001,16.59,16.52,16.43,16.32,16.2,16.080000000000002,15.96,15.85,15.620000000000001,N/A,N/A +2013,4,2,12,30,93920,92810,91740,88.74,0,4.45,6.2,7.03,7.87,8.540000000000001,9.08,9.49,9.88,10.98,152.52,152.83,153.36,154.37,155.19,155.89000000000001,156.47,156.99,158.01,17.19,16.89,16.73,16.55,16.37,16.19,16,15.83,15.540000000000001,N/A,N/A +2013,4,2,13,30,93950,92840,91770,87.72,0,4.87,6.48,7.07,7.57,8.040000000000001,8.47,8.85,9.22,10.17,170.8,171.12,171.35,171.62,171.85,172.07,172.23,172.35,172.19,17.490000000000002,17.19,17.02,16.830000000000002,16.63,16.44,16.23,16.04,15.69,N/A,N/A +2013,4,2,14,30,93950,92850,91780,85.85000000000001,0,5.16,6.68,7.17,7.54,7.890000000000001,8.2,8.56,8.92,9.8,161.04,161.9,162.44,162.98,163.52,164.05,164.63,165.17000000000002,166.27,17.96,17.6,17.42,17.22,17.02,16.84,16.64,16.44,16.03,N/A,N/A +2013,4,2,15,30,93960,92860,91790,84.9,0,4.68,5.9,6.26,6.49,6.65,6.79,6.93,7.07,7.46,167.81,167.6,167.45000000000002,167.3,167.17000000000002,167.04,166.9,166.77,166.5,18.37,17.97,17.78,17.580000000000002,17.38,17.2,17,16.82,16.43,N/A,N/A +2013,4,2,16,30,93940,92840,91770,81.61,0,6.18,7.7700000000000005,8.22,8.47,8.63,8.75,8.84,8.92,9.07,160.38,160.5,160.58,160.65,160.73,160.81,160.92000000000002,161.03,161.32,18.82,18.35,18.14,17.93,17.72,17.53,17.32,17.13,16.740000000000002,N/A,N/A +2013,4,2,17,30,93880,92790,91720,68.01,0,5.92,7.390000000000001,7.87,8.14,8.32,8.45,8.540000000000001,8.620000000000001,8.72,157.49,157.8,157.96,158.06,158.14000000000001,158.22,158.3,158.36,158.5,21.1,20.31,20,19.73,19.490000000000002,19.27,19.05,18.85,18.45,N/A,N/A +2013,4,2,18,30,93860,92770,91710,63.36,0,5.48,6.87,7.28,7.5200000000000005,7.68,7.8,7.88,7.95,8.03,170.12,169.5,169.20000000000002,168.96,168.76,168.58,168.41,168.27,167.99,22.05,21.44,21.2,20.96,20.73,20.53,20.31,20.11,19.7,N/A,N/A +2013,4,2,19,30,93820,92740,91680,57.32,0,5.5,6.78,7.16,7.32,7.43,7.49,7.5200000000000005,7.55,7.5600000000000005,159.43,159.33,159.26,159.22,159.20000000000002,159.21,159.24,159.28,159.41,23.240000000000002,22.59,22.32,22.080000000000002,21.86,21.650000000000002,21.43,21.240000000000002,20.84,N/A,N/A +2013,4,2,20,30,93750,92670,91620,53.13,0,4.89,5.91,6.2,6.29,6.34,6.37,6.37,6.36,6.32,177.37,176.3,175.67000000000002,175.04,174.48,173.97,173.48,173.04,172.07,24.150000000000002,23.41,23.11,22.86,22.62,22.41,22.2,22,21.61,N/A,N/A +2013,4,2,21,30,93650,92580,91540,47.51,0,3.47,4.23,4.51,4.67,4.79,4.87,4.94,4.99,5.08,141.29,141.83,142.16,142.39000000000001,142.58,142.73,142.87,142.99,143.19,25.54,24.89,24.6,24.330000000000002,24.1,23.87,23.650000000000002,23.44,23.03,N/A,N/A +2013,4,2,22,30,93740,92630,91560,64.89,0,6.49,8.69,9.33,9.83,10.27,10.64,10.98,11.32,11.98,324.75,321.7,320.85,320.02,318.67,317.27,315.75,313.99,310.49,17.92,17.580000000000002,17.35,17.18,17,16.84,16.7,16.580000000000002,16.37,N/A,N/A +2013,4,2,23,30,94070,92950,91870,80.89,7.300000000000001,5.57,6.54,6.72,6.78,6.7700000000000005,6.7,6.57,6.45,6,126.72,123.21000000000001,119.49000000000001,116.54,113.55,110.42,108.11,106.25,103.22,15.21,15.06,15.05,15.01,15,15,14.98,14.950000000000001,14.82,N/A,N/A +2013,4,3,0,30,93490,92390,91330,62.050000000000004,0,12.18,15.77,16.82,17.43,17.61,17.6,17.490000000000002,17.37,17.16,124.53,124.82000000000001,125.13000000000001,125.36,125.2,124.87,124.17,123.45,121.48,17.5,17.78,18.07,18.51,18.95,19.37,19.72,20.01,20.38,N/A,N/A +2013,4,3,1,30,93810,92690,91610,79.63,0,6.28,8.33,9.13,9.81,10.39,10.89,11.4,11.85,12.280000000000001,34.78,35.57,35.79,36,36.27,36.550000000000004,36.87,37.18,38.31,15.040000000000001,14.74,14.58,14.41,14.25,14.09,13.89,13.700000000000001,13.5,N/A,N/A +2013,4,3,2,30,93850,92730,91650,73.94,0,4.66,6.59,7.29,7.890000000000001,8.370000000000001,8.790000000000001,9.14,9.450000000000001,9.71,44.980000000000004,46.410000000000004,47.12,47.82,48.480000000000004,49.07,49.58,49.980000000000004,50.03,15.540000000000001,15.4,15.290000000000001,15.18,15.07,14.97,14.89,14.83,14.85,N/A,N/A +2013,4,3,3,30,93990,92870,91790,76.16,0,3.59,4.93,5.47,5.93,6.34,6.7,7.0200000000000005,7.3100000000000005,7.84,98.98,97.82000000000001,97.28,96.77,96.36,96.04,95.85000000000001,95.71000000000001,95.66,15.8,15.610000000000001,15.47,15.31,15.14,14.98,14.8,14.63,14.280000000000001,N/A,N/A +2013,4,3,4,30,93880,92760,91680,78.35000000000001,0,3.37,5.0600000000000005,5.78,6.4,6.94,7.42,7.86,8.26,9.02,38.03,41.43,43.53,45.44,47.18,48.77,50.26,51.63,54.11,14.94,14.790000000000001,14.66,14.51,14.36,14.21,14.040000000000001,13.88,13.56,N/A,N/A +2013,4,3,5,30,93940,92820,91730,83.91,0,3.45,5.49,6.38,7.17,7.83,8.41,8.870000000000001,9.27,9.93,63.25,61.09,60.26,60.27,60.4,60.56,60.550000000000004,60.57,60.83,14.14,13.98,13.84,13.68,13.51,13.34,13.16,12.99,12.63,N/A,N/A +2013,4,3,6,30,93990,92870,91780,81.68,0,4.97,6.34,6.73,6.99,7.17,7.32,7.43,7.53,7.68,30.37,30.8,31.35,32.04,32.82,33.57,34.550000000000004,35.5,37.62,13.72,13.370000000000001,13.19,12.98,12.780000000000001,12.6,12.4,12.22,11.85,N/A,N/A +2013,4,3,7,30,94060,92920,91820,78.14,0,5.97,7.57,8.03,8.31,8.49,8.620000000000001,8.700000000000001,8.77,8.85,33.410000000000004,33.67,33.93,34.24,34.59,34.92,35.34,35.76,36.77,11.17,10.8,10.61,10.41,10.21,10.02,9.82,9.63,9.24,N/A,N/A +2013,4,3,8,30,94210,93070,91960,78.15,0,5.2700000000000005,6.7,7.15,7.43,7.61,7.75,7.8500000000000005,7.930000000000001,8.03,16.72,17.150000000000002,17.42,17.7,17.990000000000002,18.25,18.57,18.88,19.63,10.19,9.81,9.61,9.41,9.200000000000001,9.01,8.8,8.6,8.2,N/A,N/A +2013,4,3,9,30,94250,93100,91990,78.2,0,5.44,7.04,7.54,7.87,8.09,8.26,8.38,8.47,8.61,24.03,24.26,24.46,24.650000000000002,24.82,24.98,25.16,25.35,25.75,9.44,9.06,8.86,8.66,8.45,8.25,8.040000000000001,7.84,7.44,N/A,N/A +2013,4,3,10,30,94320,93170,92060,78.14,0,5.16,6.68,7.19,7.53,7.75,7.930000000000001,8.05,8.15,8.290000000000001,25.53,25.97,26.28,26.57,26.84,27.09,27.35,27.6,28.16,8.77,8.39,8.19,7.99,7.78,7.59,7.37,7.18,6.7700000000000005,N/A,N/A +2013,4,3,11,30,94390,93240,92120,76.44,0,4.5200000000000005,5.8500000000000005,6.2700000000000005,6.55,6.74,6.890000000000001,7,7.08,7.2,15.68,15.950000000000001,16.23,16.45,16.63,16.78,16.9,17.02,17.21,8.45,8.07,7.87,7.67,7.46,7.26,7.0600000000000005,6.86,6.46,N/A,N/A +2013,4,3,12,30,94420,93270,92150,76.7,0,4.24,5.44,5.83,6.08,6.25,6.390000000000001,6.49,6.57,6.69,13.27,13.83,14.17,14.47,14.74,14.97,15.19,15.39,15.780000000000001,8.06,7.69,7.49,7.29,7.08,6.890000000000001,6.68,6.49,6.09,N/A,N/A +2013,4,3,13,30,94450,93300,92180,77.05,0,3.9,5.0200000000000005,5.39,5.63,5.8,5.94,6.04,6.13,6.2700000000000005,14.97,15.85,16.39,16.84,17.22,17.53,17.81,18.080000000000002,18.57,7.73,7.36,7.16,6.96,6.75,6.5600000000000005,6.3500000000000005,6.15,5.75,N/A,N/A +2013,4,3,14,30,94530,93370,92240,76.95,0,4.08,5.16,5.51,5.71,5.8500000000000005,5.95,6.03,6.09,6.2,19.31,19.41,19.52,19.6,19.64,19.67,19.67,19.66,19.580000000000002,7.42,7.04,6.84,6.640000000000001,6.43,6.24,6.04,5.84,5.45,N/A,N/A +2013,4,3,15,30,94560,93400,92280,75.36,0,3.7600000000000002,4.75,5.07,5.2700000000000005,5.4,5.5,5.57,5.63,5.73,5.84,6.37,6.75,7.03,7.25,7.43,7.59,7.72,7.97,7.54,7.15,6.95,6.75,6.54,6.36,6.15,5.96,5.57,N/A,N/A +2013,4,3,16,30,94610,93450,92330,73.65,0,3.63,4.54,4.8100000000000005,4.96,5.0600000000000005,5.13,5.18,5.22,5.2700000000000005,0.44,0.52,0.55,0.58,0.6,0.61,0.61,0.61,0.62,8.01,7.61,7.41,7.21,7.01,6.82,6.61,6.42,6.03,N/A,N/A +2013,4,3,17,30,94630,93480,92350,73.76,0,3.81,4.74,5.01,5.15,5.24,5.3,5.34,5.37,5.39,5.43,5.24,5.11,5.0200000000000005,4.92,4.84,4.76,4.69,4.53,8.040000000000001,7.6000000000000005,7.390000000000001,7.19,6.98,6.79,6.58,6.390000000000001,6,N/A,N/A +2013,4,3,18,30,94640,93480,92360,72.9,0,3.6,4.5,4.7700000000000005,4.93,5.03,5.11,5.15,5.19,5.25,352.75,352.27,351.96,351.69,351.44,351.21,350.95,350.7,350.19,8.120000000000001,7.7,7.49,7.29,7.08,6.890000000000001,6.69,6.49,6.1000000000000005,N/A,N/A +2013,4,3,19,30,94650,93500,92380,70.67,0,3.74,4.65,4.92,5.09,5.2,5.28,5.34,5.38,5.44,358.03000000000003,357,356.34000000000003,355.79,355.29,354.85,354.42,354.01,353.23,8.28,7.88,7.67,7.47,7.26,7.08,6.87,6.68,6.29,N/A,N/A +2013,4,3,20,30,94640,93480,92360,68.14,0,3.48,4.3500000000000005,4.64,4.8100000000000005,4.93,5.0200000000000005,5.1000000000000005,5.16,5.26,354.73,354.3,353.98,353.67,353.33,353.02,352.69,352.37,351.71,8.700000000000001,8.24,8.03,7.82,7.61,7.42,7.22,7.0200000000000005,6.63,N/A,N/A +2013,4,3,21,30,94640,93480,92360,68.01,0,3.92,4.86,5.16,5.33,5.45,5.54,5.59,5.64,5.7,359.91,359.18,358.73,358.36,358.03000000000003,357.74,357.45,357.17,356.59000000000003,9.09,8.64,8.43,8.22,8.01,7.82,7.61,7.42,7.0200000000000005,N/A,N/A +2013,4,3,22,30,94630,93480,92360,67.72,0,3.7800000000000002,4.75,5.07,5.26,5.4,5.5,5.58,5.64,5.73,359.12,357.94,357.2,356.53000000000003,355.91,355.34000000000003,354.75,354.21,353.13,9.28,8.88,8.68,8.48,8.27,8.09,7.88,7.69,7.3,N/A,N/A +2013,4,3,23,30,94620,93470,92350,66.18,0,3.33,4.18,4.46,4.63,4.75,4.84,4.91,4.97,5.05,346.35,345.88,345.59000000000003,345.35,345.15000000000003,344.96,344.78000000000003,344.62,344.32,9.61,9.24,9.040000000000001,8.84,8.64,8.45,8.24,8.05,7.65,N/A,N/A +2013,4,4,0,30,94630,93480,92360,67.11,0,2.91,3.7600000000000002,4.01,4.17,4.29,4.38,4.45,4.51,4.59,7.59,6.79,6.15,5.48,4.76,4.09,3.36,2.66,1.24,9.59,9.290000000000001,9.1,8.92,8.71,8.53,8.33,8.14,7.75,N/A,N/A +2013,4,4,1,30,94640,93490,92370,79.2,0,1.4000000000000001,3.23,4.1,4.79,5.29,5.69,5.9,6.04,6.09,8.74,11.47,13.19,14.08,14.450000000000001,14.6,14.19,13.58,11.46,8.14,8.5,8.47,8.370000000000001,8.22,8.08,7.890000000000001,7.72,7.3500000000000005,N/A,N/A +2013,4,4,2,30,94670,93520,92400,81.5,0,1.6500000000000001,3.44,4.08,4.51,4.8,5.03,5.2,5.36,5.5600000000000005,352.66,359.48,2.81,4.2,4.7700000000000005,5.0600000000000005,5,4.89,4.29,7.79,8.38,8.43,8.41,8.290000000000001,8.16,7.97,7.79,7.45,N/A,N/A +2013,4,4,3,30,94690,93540,92420,81.06,0,1.79,2.97,3.13,3.16,3.2,3.24,3.27,3.31,3.39,5.0600000000000005,10.22,11.21,9.44,6.62,3.8200000000000003,1.1500000000000001,358.77,355.04,7.49,8.25,8.3,8.17,8.040000000000001,7.92,7.79,7.68,7.48,N/A,N/A +2013,4,4,4,30,94700,93550,92420,84.59,0,1.73,3.19,3.5700000000000003,3.83,4.12,4.4,4.76,5.08,5.5600000000000005,48.25,44.01,41,38.33,37.32,36.74,36.34,35.93,34.96,6.640000000000001,7.38,7.45,7.38,7.22,7.05,6.88,6.72,6.41,N/A,N/A +2013,4,4,5,30,94710,93550,92420,84.33,0,1.54,2.84,3.21,3.49,3.58,3.59,3.4,3.21,2.91,65.68,62.21,59.88,57.83,55.96,54.42,53.34,52.08,46.910000000000004,6.21,6.66,6.640000000000001,6.57,6.43,6.28,6.12,5.97,5.64,N/A,N/A +2013,4,4,6,30,94720,93550,92420,87,0,0.5,0.47000000000000003,0.28,0.15,0.22,0.39,0.54,0.71,1.06,193.68,178.13,138.92000000000002,99.56,76.53,46.74,43.4,39.660000000000004,31.84,5.63,6.0200000000000005,5.98,5.9,5.8100000000000005,5.72,5.62,5.5,5.18,N/A,N/A +2013,4,4,7,30,94750,93580,92450,90.21000000000001,0,0.16,0.55,0.7000000000000001,0.6900000000000001,0.55,0.43,0.32,0.38,0.87,70.86,66.13,70.09,79.01,82.47,76.01,41.63,22.95,5.67,4.88,5.38,5.43,5.43,5.38,5.3100000000000005,5.22,5.12,4.88,N/A,N/A +2013,4,4,8,30,94750,93580,92450,93.68,0,0.51,1.08,1.18,1.1400000000000001,1.1400000000000001,1.18,1.32,1.47,1.75,331.90000000000003,342.68,346.24,345.94,338.71,331.54,325.17,324.34000000000003,335.11,4.01,4.8100000000000005,5.01,5.12,5.13,5.14,5.16,5.14,5,N/A,N/A +2013,4,4,9,30,94780,93600,92470,90.8,0,0.62,1.01,1.01,0.9400000000000001,1,1.1,1.34,1.56,1.97,14.19,29.580000000000002,38.28,44.47,35.89,25.98,18.86,13.19,7.04,4.08,4.44,4.42,4.39,4.51,4.64,4.8,4.87,4.71,N/A,N/A +2013,4,4,10,30,94810,93640,92500,93.97,0,0.42,0.8200000000000001,0.96,1.07,1.22,1.3900000000000001,1.57,1.74,2.07,349.81,4.67,10.32,10.19,8.700000000000001,7.62,9.63,13.43,23.29,3.12,3.79,3.97,4.11,4.23,4.32,4.3100000000000005,4.25,4.01,N/A,N/A +2013,4,4,11,30,94830,93660,92520,92.83,0,0.6900000000000001,1.59,2,2.3000000000000003,2.47,2.6,2.72,2.86,3.2,349.16,2.27,9.74,13.99,16.6,18.44,19.18,19.150000000000002,18.11,3.0500000000000003,3.47,3.49,3.49,3.46,3.43,3.4,3.37,3.31,N/A,N/A +2013,4,4,12,30,94880,93700,92560,95.41,0,0.62,1.25,1.58,1.98,2.36,2.72,3.06,3.38,3.93,284.41,319.61,337.76,348.58,354.49,358.91,1.55,3.65,7.22,2.34,3,3.12,3.14,3.09,3.02,2.94,2.89,2.88,N/A,N/A +2013,4,4,13,30,94910,93730,92590,88.28,0,0.73,1.03,1.41,2.07,2.56,3,3.38,3.8000000000000003,4.39,303.5,330.37,344.56,356.31,1.3800000000000001,4.75,6.92,9.22,12.14,3.15,3.04,3.0700000000000003,3.13,3.0500000000000003,2.94,2.7800000000000002,2.7800000000000002,3.21,N/A,N/A +2013,4,4,14,30,94940,93770,92640,70.2,0,1.11,1.44,1.57,1.6600000000000001,1.74,1.81,1.8900000000000001,2.0100000000000002,2.42,4.83,2.5500000000000003,1.08,359.73,358.3,356.98,355.66,354.53000000000003,352.93,6.09,5.68,5.48,5.3,5.11,4.94,4.75,4.57,4.21,N/A,N/A +2013,4,4,15,30,94930,93770,92640,60,0,2.14,2.56,2.66,2.71,2.73,2.75,2.75,2.75,2.7600000000000002,10.700000000000001,8.040000000000001,6.43,5,3.52,2.16,0.7000000000000001,359.25,356.32,8.78,8.27,8.040000000000001,7.83,7.63,7.45,7.26,7.08,6.72,N/A,N/A +2013,4,4,16,30,94910,93770,92650,53.6,0,1.73,2.04,2.12,2.16,2.19,2.21,2.22,2.23,2.2600000000000002,4.64,1.6600000000000001,359.86,358.34000000000003,356.90000000000003,355.61,354.29,353.05,350.58,11.120000000000001,10.59,10.33,10.1,9.88,9.69,9.48,9.290000000000001,8.91,N/A,N/A +2013,4,4,17,30,94860,93720,92620,48.33,0,1.85,2.17,2.25,2.29,2.31,2.32,2.33,2.33,2.33,314.02,314.41,314.65000000000003,314.89,315.1,315.28000000000003,315.49,315.67,316.04,13.23,12.67,12.39,12.15,11.93,11.73,11.51,11.32,10.92,N/A,N/A +2013,4,4,18,30,94800,93670,92570,43.22,0,2.31,2.72,2.81,2.85,2.88,2.89,2.9,2.9,2.89,300.11,302.28000000000003,303.56,304.6,305.58,306.45,307.35,308.17,309.86,15.040000000000001,14.450000000000001,14.16,13.92,13.700000000000001,13.49,13.280000000000001,13.08,12.68,N/A,N/A +2013,4,4,19,30,94760,93640,92550,38.39,0,2.21,2.65,2.79,2.86,2.91,2.95,2.98,3,3.04,317.45,318.71,319.48,320.09000000000003,320.66,321.17,321.69,322.17,323.1,17.09,16.51,16.22,15.98,15.75,15.540000000000001,15.33,15.13,14.73,N/A,N/A +2013,4,4,20,30,94680,93560,92480,35.35,0,2.2600000000000002,2.67,2.77,2.82,2.85,2.87,2.88,2.89,2.9,304.91,306.71,307.85,308.82,309.73,310.55,311.41,312.2,313.87,18.66,18.07,17.8,17.55,17.330000000000002,17.13,16.91,16.72,16.32,N/A,N/A +2013,4,4,21,30,94590,93480,92400,32.22,0,1.78,2.16,2.27,2.35,2.42,2.47,2.52,2.57,2.66,291.15000000000003,295.72,298.34000000000003,300.5,302.39,304.06,305.66,307.1,309.78000000000003,20.13,19.56,19.31,19.07,18.85,18.650000000000002,18.44,18.240000000000002,17.85,N/A,N/A +2013,4,4,22,30,94550,93450,92380,27.37,0,2.2600000000000002,2.74,2.91,2.99,3.06,3.11,3.16,3.19,3.25,322.12,323.18,323.86,324.40000000000003,324.89,325.34000000000003,325.77,326.17,326.92,21.330000000000002,20.8,20.55,20.32,20.1,19.900000000000002,19.69,19.490000000000002,19.09,N/A,N/A +2013,4,4,23,30,94520,93420,92350,26.92,0,1.51,1.86,1.98,2.05,2.11,2.16,2.2,2.23,2.3000000000000003,342.44,341.74,341.48,341.32,341.21,341.12,341.08,341.04,341.04,21.59,21.16,20.95,20.740000000000002,20.53,20.34,20.13,19.95,19.55,N/A,N/A +2013,4,5,0,30,94510,93410,92340,35.81,0,0.18,0.49,0.66,0.8300000000000001,0.98,1.1,1.2,1.3,1.45,101.72,60.2,35.550000000000004,30.240000000000002,27.01,25.16,23.94,22.91,21.77,21.17,21.28,21.14,20.96,20.78,20.6,20.41,20.23,19.84,N/A,N/A +2013,4,5,1,30,94530,93420,92350,37.15,0,1.18,2.0100000000000002,2.12,2.18,2.23,2.29,2.32,2.34,2.33,90.86,80.89,74.68,69.29,65.79,63.27,61.99,61.03,59.78,19.32,20.36,20.46,20.45,20.37,20.27,20.13,19.98,19.64,N/A,N/A +2013,4,5,2,30,94570,93460,92390,37.980000000000004,0,1.3900000000000001,1.82,1.81,1.93,2.05,2.18,2.2600000000000002,2.33,2.43,85.17,70.7,63.35,56.69,54.35,53.71,56.13,58.65,64.26,18.78,19.830000000000002,19.92,19.95,19.91,19.84,19.73,19.62,19.34,N/A,N/A +2013,4,5,3,30,94640,93530,92450,42.79,0,1.79,2.77,2.87,2.97,3.09,3.21,3.3000000000000003,3.37,3.35,116.68,110.65,106.11,101.81,98.68,96.22,94.79,93.71000000000001,93.02,17.04,18.31,18.56,18.75,18.86,18.93,18.91,18.88,18.67,N/A,N/A +2013,4,5,4,30,94680,93550,92470,49.08,0,2.35,4.18,4.69,5.22,5.62,5.94,6.140000000000001,6.28,6.33,131.1,124.12,121.36,120.72,120.25,119.88,119.21000000000001,118.64,117.97,15.55,16.52,16.7,16.87,16.97,17.03,17.01,16.96,16.79,N/A,N/A +2013,4,5,5,30,94710,93590,92500,52.64,0,1.92,2.77,3.12,4.01,4.58,4.98,5.51,5.96,6.23,140.59,130.82,124.11,115.51,112.44,111.76,110.71000000000001,110.01,111.19,15,15.68,15.610000000000001,15.57,15.5,15.43,15.48,15.540000000000001,15.72,N/A,N/A +2013,4,5,6,30,94740,93610,92510,58.660000000000004,0,2.12,2.98,3.14,3.62,4.26,4.97,5.55,6.0200000000000005,6.37,134.81,122.68,118.81,118.98,119.55,120.3,121.29,122.37,125.18,13.780000000000001,14.41,14.33,14.26,14.3,14.36,14.5,14.63,14.84,N/A,N/A +2013,4,5,7,30,94770,93640,92540,63.13,0,2.5100000000000002,4.63,5.23,5.74,6.25,6.73,7.07,7.33,7.44,134.89000000000001,133.91,132.49,130.27,129.01,128.18,129.26,130.57,134.55,12.67,13.52,13.6,13.66,13.71,13.75,13.84,13.93,14.13,N/A,N/A +2013,4,5,8,30,94790,93640,92540,68.60000000000001,0,1.49,3.5500000000000003,4.55,5.4,6.13,6.7700000000000005,7.19,7.5,7.72,123.02,127.31,129.04,128.65,128.97,129.53,131.42000000000002,133.48,138.68,11.25,11.97,12.040000000000001,12.13,12.27,12.42,12.68,12.92,13.4,N/A,N/A +2013,4,5,9,30,94770,93630,92530,72.38,0,0.79,2.86,4.19,5.07,5.73,6.28,6.69,7.03,7.5,114.22,129.79,138.42000000000002,138.74,139.5,140.39000000000001,142.16,144.06,148.73,10.38,11.27,11.450000000000001,11.620000000000001,11.790000000000001,11.950000000000001,12.14,12.33,12.69,N/A,N/A +2013,4,5,10,30,94780,93630,92530,75.54,0,1.42,3.2,4,4.68,5.28,5.83,6.47,7.03,7.890000000000001,120.14,127.53,131.97,134.99,138.3,141.59,145.61,149.20000000000002,154.87,9.65,10.46,10.59,10.72,10.88,11.040000000000001,11.31,11.540000000000001,11.99,N/A,N/A +2013,4,5,11,30,94780,93630,92530,78.17,0,0.9500000000000001,2.5,3.35,4.13,4.8500000000000005,5.53,6.08,6.6000000000000005,7.57,124.85000000000001,136.32,143.33,147.53,151.14000000000001,154.41,156.86,159.04,162.44,9.13,10.01,10.17,10.32,10.56,10.790000000000001,10.99,11.17,11.48,N/A,N/A +2013,4,5,12,30,94810,93660,92550,80.36,0,2.02,4.04,4.86,5.69,6.51,7.3,8.08,8.82,10.08,140.49,149.17000000000002,154.08,157.52,160.26,162.65,164.53,166.14000000000001,168.35,8.8,9.700000000000001,9.86,10,10.11,10.21,10.290000000000001,10.36,10.5,N/A,N/A +2013,4,5,13,30,94810,93670,92560,64.97,0,3.0500000000000003,4.8,5.66,6.49,7.2,7.84,8.45,9.01,10.03,155.58,158.19,159.74,160.94,161.87,162.66,163.29,163.84,164.65,10.5,10.38,10.3,10.23,10.16,10.1,10.07,10.05,10.120000000000001,N/A,N/A +2013,4,5,14,30,94810,93670,92560,58.89,0,4.19,5.23,5.55,5.74,5.87,5.97,6.08,6.23,6.76,160.71,160.89000000000001,161.08,161.26,161.44,161.61,161.85,162.16,163.01,12.120000000000001,11.64,11.43,11.23,11.03,10.86,10.67,10.5,10.18,N/A,N/A +2013,4,5,15,30,94790,93660,92560,54.09,0,4.23,5.25,5.57,5.74,5.84,5.91,5.95,5.99,6.07,158.1,158.55,158.85,159.11,159.36,159.58,159.84,160.1,160.70000000000002,14.15,13.56,13.31,13.09,12.89,12.700000000000001,12.5,12.32,11.950000000000001,N/A,N/A +2013,4,5,16,30,94730,93610,92520,49.1,0,4.75,5.88,6.22,6.41,6.51,6.58,6.62,6.65,6.67,163.81,163.89000000000001,163.92000000000002,163.94,163.97,163.99,164.03,164.06,164.16,16.63,15.96,15.69,15.450000000000001,15.23,15.030000000000001,14.82,14.63,14.25,N/A,N/A +2013,4,5,17,30,94650,93540,92460,44.58,0,4.97,6.15,6.5200000000000005,6.71,6.84,6.92,6.96,7,7.03,165.92000000000002,166.06,166.16,166.23,166.29,166.35,166.42000000000002,166.48,166.61,18.830000000000002,18.11,17.82,17.56,17.34,17.13,16.91,16.72,16.330000000000002,N/A,N/A +2013,4,5,18,30,94580,93470,92400,38.660000000000004,0,5.9,7.32,7.76,8,8.15,8.24,8.3,8.34,8.370000000000001,161.82,162,162.1,162.17000000000002,162.23,162.28,162.34,162.39000000000001,162.5,20.88,20.11,19.81,19.55,19.31,19.09,18.87,18.67,18.27,N/A,N/A +2013,4,5,19,30,94500,93400,92330,33.730000000000004,0,6.5200000000000005,8.09,8.58,8.83,8.99,9.1,9.17,9.23,9.27,164.59,164.76,164.83,164.88,164.92000000000002,164.94,164.96,164.99,165.02,22.44,21.650000000000002,21.34,21.07,20.830000000000002,20.61,20.38,20.18,19.77,N/A,N/A +2013,4,5,20,30,94410,93310,92250,29.73,0,6.2700000000000005,7.75,8.22,8.46,8.620000000000001,8.72,8.78,8.84,8.88,165.52,165.59,165.63,165.64000000000001,165.65,165.65,165.65,165.66,165.66,23.31,22.55,22.26,22,21.76,21.54,21.32,21.12,20.71,N/A,N/A +2013,4,5,21,30,94300,93210,92150,27.19,0,6.26,7.79,8.25,8.51,8.67,8.790000000000001,8.86,8.92,8.98,162.05,162.22,162.34,162.43,162.5,162.57,162.63,162.69,162.81,24.02,23.31,23.03,22.77,22.54,22.32,22.1,21.900000000000002,21.490000000000002,N/A,N/A +2013,4,5,22,30,94220,93130,92080,25.150000000000002,0,6.54,8.18,8.67,8.94,9.120000000000001,9.24,9.31,9.38,9.44,159.08,159.28,159.41,159.49,159.56,159.63,159.69,159.74,159.84,24.21,23.59,23.34,23.1,22.87,22.66,22.45,22.25,21.84,N/A,N/A +2013,4,5,23,30,94170,93080,92030,27.54,0,6.84,8.68,9.21,9.51,9.72,9.870000000000001,9.96,10.040000000000001,10.14,153.8,153.95000000000002,154.04,154.11,154.18,154.24,154.31,154.37,154.51,23.55,23.12,22.91,22.7,22.490000000000002,22.3,22.080000000000002,21.89,21.490000000000002,N/A,N/A +2013,4,6,0,30,94150,93050,91990,33.42,0,5.5200000000000005,7.69,8.46,9.06,9.53,9.92,10.25,10.53,10.97,150.12,150.47,150.70000000000002,150.91,151.1,151.29,151.46,151.62,151.86,22.01,21.88,21.76,21.6,21.44,21.27,21.09,20.92,20.54,N/A,N/A +2013,4,6,1,30,94130,93040,91970,38.78,0,4.14,6.38,7.32,8.11,8.78,9.36,9.88,10.35,11.17,142.09,143.17000000000002,143.91,144.54,145.12,145.68,146.25,146.8,147.92000000000002,20.46,20.46,20.400000000000002,20.29,20.18,20.05,19.900000000000002,19.76,19.44,N/A,N/A +2013,4,6,2,30,94140,93040,91970,41.980000000000004,0,4.82,7.2,8.19,9.040000000000001,9.78,10.44,11.06,11.64,12.71,144,145.35,146.25,147.01,147.68,148.29,148.84,149.35,150.24,19.48,19.44,19.37,19.26,19.14,19.01,18.87,18.73,18.43,N/A,N/A +2013,4,6,3,30,94120,93020,91950,44.44,0,7.0200000000000005,9.78,10.82,11.67,12.38,12.99,13.57,14.1,15.06,148.09,148.84,149.3,149.72,150.11,150.47,150.87,151.25,152.08,18.71,18.6,18.5,18.36,18.22,18.080000000000002,17.93,17.78,17.48,N/A,N/A +2013,4,6,4,30,94110,93000,91930,46.53,0,5.75,8.48,9.57,10.49,11.26,11.93,12.56,13.13,14.200000000000001,146.08,147.34,148.16,148.84,149.45000000000002,150.01,150.55,151.06,152.03,17.73,17.71,17.62,17.51,17.38,17.25,17.1,16.96,16.67,N/A,N/A +2013,4,6,5,30,94080,92970,91890,50.86,0,5.09,7.83,8.97,9.950000000000001,10.78,11.51,12.200000000000001,12.84,14.08,143.82,145.52,146.64000000000001,147.57,148.42000000000002,149.19,149.97,150.70000000000002,152.18,16.53,16.6,16.56,16.490000000000002,16.4,16.3,16.19,16.080000000000002,15.85,N/A,N/A +2013,4,6,6,30,94060,92950,91870,52.33,0,5.84,8.68,9.86,10.88,11.77,12.56,13.34,14.08,15.51,148.41,149.92000000000002,150.9,151.74,152.5,153.19,153.85,154.47,155.63,15.88,15.91,15.860000000000001,15.790000000000001,15.700000000000001,15.610000000000001,15.51,15.42,15.21,N/A,N/A +2013,4,6,7,30,94050,92930,91850,54.04,0,6.61,9.6,10.790000000000001,11.8,12.66,13.43,14.15,14.83,16.12,148.71,149.77,150.49,151.17000000000002,151.82,152.42000000000002,153.02,153.57,154.64000000000001,15.33,15.34,15.280000000000001,15.19,15.09,14.99,14.870000000000001,14.75,14.51,N/A,N/A +2013,4,6,8,30,94030,92910,91830,58.76,0,6.2,9.120000000000001,10.32,11.35,12.24,13.030000000000001,13.790000000000001,14.49,15.9,147.14000000000001,148.52,149.44,150.25,151.03,151.76,152.49,153.19,154.63,14.58,14.59,14.530000000000001,14.44,14.35,14.26,14.15,14.05,13.84,N/A,N/A +2013,4,6,9,30,93990,92860,91780,61.910000000000004,0,7.01,10.02,11.23,12.27,13.19,14.02,14.85,15.63,17.19,150.06,151.34,152.25,153.08,153.85,154.55,155.26,155.91,157.21,14.22,14.21,14.14,14.06,13.96,13.870000000000001,13.77,13.68,13.49,N/A,N/A +2013,4,6,10,30,94010,92890,91800,66.69,0,5.65,8.370000000000001,9.57,10.620000000000001,11.53,12.34,13.120000000000001,13.86,15.35,148.52,150.24,151.47,152.58,153.57,154.46,155.26,156.01,157.36,13.51,13.540000000000001,13.48,13.39,13.290000000000001,13.19,13.08,12.98,12.77,N/A,N/A +2013,4,6,11,30,94030,92900,91810,73.19,0,4.49,7.07,8.21,9.23,10.15,11,11.86,12.69,14.35,162.16,162.26,162.37,162.57,162.82,163.08,163.34,163.61,164.23,12.81,12.89,12.84,12.780000000000001,12.700000000000001,12.63,12.540000000000001,12.46,12.290000000000001,N/A,N/A +2013,4,6,12,30,94040,92910,91820,79.85000000000001,0,4.33,6.95,8.120000000000001,9.200000000000001,10.17,11.06,11.94,12.780000000000001,14.4,155.12,157.32,158.75,159.84,160.71,161.46,162.11,162.72,163.92000000000002,12.17,12.3,12.280000000000001,12.24,12.18,12.120000000000001,12.05,11.99,11.86,N/A,N/A +2013,4,6,13,30,94010,92890,91790,78.4,0,5.3,7.88,9.23,10.5,11.41,12.14,12.82,13.450000000000001,14.68,159.12,161.38,162.95000000000002,164.39000000000001,165.25,165.84,166.35,166.84,168.05,12.84,12.58,12.43,12.25,12.09,11.950000000000001,11.83,11.74,11.71,N/A,N/A +2013,4,6,14,30,94070,92950,91860,74.31,0,5.28,6.6000000000000005,7.0200000000000005,7.26,7.41,7.5200000000000005,7.6000000000000005,7.68,7.96,170.31,170.41,170.49,170.57,170.67000000000002,170.77,170.9,171.03,171.43,14.370000000000001,13.84,13.620000000000001,13.41,13.21,13.030000000000001,12.83,12.66,12.3,N/A,N/A +2013,4,6,15,30,94070,92950,91870,65.79,0,5.39,6.6000000000000005,6.94,7.1000000000000005,7.17,7.21,7.2,7.19,7.13,174.75,174.72,174.73,174.8,174.89000000000001,174.99,175.13,175.26,175.64000000000001,16.41,15.77,15.52,15.290000000000001,15.08,14.89,14.69,14.51,14.14,N/A,N/A +2013,4,6,16,30,94030,92920,91850,55.94,0,5.3500000000000005,6.5200000000000005,6.8500000000000005,6.99,7.0600000000000005,7.08,7.0600000000000005,7.03,6.92,179.95000000000002,179.99,180.04,180.14000000000001,180.26,180.4,180.59,180.77,181.27,18.76,18.05,17.78,17.54,17.32,17.12,16.92,16.73,16.36,N/A,N/A +2013,4,6,17,30,93990,92890,91820,47.79,0,4.88,5.93,6.22,6.33,6.38,6.4,6.38,6.3500000000000005,6.24,181.64000000000001,182.04,182.32,182.64000000000001,182.99,183.34,183.76,184.16,185.13,21.12,20.400000000000002,20.12,19.87,19.64,19.44,19.23,19.04,18.67,N/A,N/A +2013,4,6,18,30,93930,92850,91790,38.160000000000004,0,4.62,5.59,5.86,5.98,6.0200000000000005,6.04,6.0200000000000005,5.99,5.89,187.83,188.32,188.68,189.09,189.51,189.92000000000002,190.4,190.85,191.9,23.75,23.03,22.740000000000002,22.490000000000002,22.26,22.05,21.84,21.650000000000002,21.26,N/A,N/A +2013,4,6,19,30,93890,92820,91770,32.33,0,4.48,5.37,5.62,5.71,5.74,5.73,5.69,5.65,5.51,180.27,180.9,181.37,181.87,182.35,182.83,183.36,183.86,185.02,25.89,25.19,24.89,24.63,24.41,24.19,23.990000000000002,23.79,23.41,N/A,N/A +2013,4,6,20,30,93790,92720,91680,29.18,0,4.58,5.51,5.7700000000000005,5.86,5.9,5.91,5.88,5.84,5.73,182.86,183.5,183.95000000000002,184.42000000000002,184.87,185.31,185.8,186.25,187.26,27.39,26.69,26.41,26.150000000000002,25.92,25.7,25.490000000000002,25.3,24.900000000000002,N/A,N/A +2013,4,6,21,30,93710,92650,91610,26.89,0,5.0200000000000005,6.07,6.3500000000000005,6.45,6.51,6.5200000000000005,6.51,6.49,6.42,175.31,176.12,176.64000000000001,177.12,177.54,177.95000000000002,178.35,178.71,179.49,28.2,27.51,27.240000000000002,26.990000000000002,26.76,26.55,26.34,26.14,25.740000000000002,N/A,N/A +2013,4,6,22,30,93680,92610,91580,28.16,0,5.49,6.75,7.140000000000001,7.3100000000000005,7.42,7.47,7.5,7.5,7.47,176.73,176.87,176.96,177.05,177.13,177.22,177.31,177.39000000000001,177.57,28.05,27.490000000000002,27.26,27.02,26.810000000000002,26.6,26.39,26.2,25.8,N/A,N/A +2013,4,6,23,30,93650,92590,91550,29.91,0,6.0600000000000005,7.49,7.91,8.09,8.21,8.26,8.27,8.26,8.2,168.42000000000002,168.6,168.73,168.85,168.95000000000002,169.05,169.16,169.26,169.49,27.5,27.080000000000002,26.89,26.66,26.46,26.26,26.060000000000002,25.87,25.48,N/A,N/A +2013,4,7,0,30,93610,92540,91500,36.54,0,4.73,6.63,7.3,7.8,8.18,8.48,8.700000000000001,8.89,9.14,161.6,162.15,162.49,162.81,163.06,163.27,163.39000000000001,163.49,163.53,25.900000000000002,25.79,25.68,25.53,25.37,25.21,25.04,24.86,24.5,N/A,N/A +2013,4,7,1,30,93650,92570,91530,46.27,0,3.56,6.0200000000000005,6.99,7.84,8.540000000000001,9.13,9.63,10.07,10.71,155.24,158.27,160.31,161.53,162.42000000000002,163.03,163.42000000000002,163.71,164,23.62,23.93,23.95,23.900000000000002,23.830000000000002,23.73,23.6,23.46,23.11,N/A,N/A +2013,4,7,2,30,93720,92640,91590,58.370000000000005,0,1.9100000000000001,3.68,4.3500000000000005,5.14,5.9,6.67,7.43,8.15,9.53,105.48,120.9,131.89000000000001,139.84,145.71,149.86,152.76,155.16,158.16,21.6,22.13,22.1,21.990000000000002,21.88,21.78,21.66,21.55,21.26,N/A,N/A +2013,4,7,3,30,93730,92640,91580,66.42,0,2.05,4.22,5.15,6.15,7.13,8.1,9.05,9.97,11.72,137.1,145.42000000000002,150.94,154.18,156.63,158.48,159.85,161.07,162.94,20.04,20.54,20.54,20.52,20.48,20.44,20.38,20.31,20.16,N/A,N/A +2013,4,7,4,30,93730,92630,91570,69.4,0,2.39,4.75,5.66,6.58,7.47,8.34,9.24,10.120000000000001,11.83,121.72,131.55,138.05,142.52,146.14000000000001,149.17000000000002,151.59,153.79,157.02,19.05,19.67,19.73,19.75,19.740000000000002,19.73,19.7,19.68,19.62,N/A,N/A +2013,4,7,5,30,93680,92590,91530,64.36,0,3.8200000000000003,6.49,7.65,8.790000000000001,9.83,10.81,11.75,12.64,14.24,130.86,138.4,143.18,146.43,148.97,151.06,152.79,154.35,156.87,19.16,19.5,19.55,19.59,19.62,19.63,19.64,19.650000000000002,19.650000000000002,N/A,N/A +2013,4,7,6,30,93670,92580,91520,65.31,0,5.58,8.48,9.73,10.89,11.91,12.84,13.71,14.52,15.97,141.27,145.8,148.70000000000002,150.89000000000001,152.68,154.21,155.57,156.81,159.02,19.37,19.56,19.580000000000002,19.580000000000002,19.57,19.55,19.54,19.51,19.47,N/A,N/A +2013,4,7,7,30,93700,92600,91540,76.95,0,3.21,6.3,7.71,9.040000000000001,10.200000000000001,11.24,12.19,13.08,14.780000000000001,133.05,142.32,148.01,151.06,153.23,154.84,156.09,157.22,159.19,18.11,18.61,18.67,18.7,18.71,18.7,18.68,18.650000000000002,18.59,N/A,N/A +2013,4,7,8,30,93700,92600,91530,87.71000000000001,0,2.16,4.5200000000000005,5.51,6.5200000000000005,7.49,8.43,9.44,10.44,12.59,119.47,130.87,137.94,142.45000000000002,146.05,149.08,151.62,153.98,157.77,16.55,17.22,17.29,17.35,17.39,17.42,17.47,17.51,17.59,N/A,N/A +2013,4,7,9,30,93710,92600,91540,89.22,0,1.82,3.92,4.88,5.83,6.7,7.5200000000000005,8.35,9.15,10.75,117.66,128.98,136.35,140.72,144.07,146.79,148.97,150.96,154.18,15.91,16.580000000000002,16.63,16.67,16.69,16.69,16.68,16.66,16.59,N/A,N/A +2013,4,7,10,30,93710,92600,91530,92.39,0,1,3.08,4.42,5.48,6.390000000000001,7.2,7.99,8.75,10.28,125.58,132.37,137.51,140.57,143.23,145.6,147.81,149.91,153.74,14.77,15.35,15.41,15.450000000000001,15.47,15.47,15.450000000000001,15.43,15.370000000000001,N/A,N/A +2013,4,7,11,30,93730,92620,91540,94.57000000000001,0,1.62,4.0200000000000005,5.2700000000000005,6.34,7.25,8.05,8.8,9.51,10.89,138.01,142.62,145.91,148.18,150.1,151.8,153.39000000000001,154.91,157.91,14.200000000000001,14.72,14.73,14.700000000000001,14.66,14.620000000000001,14.56,14.52,14.450000000000001,N/A,N/A +2013,4,7,12,30,93770,92660,91580,96.09,0,0.92,2.64,3.74,4.78,5.74,6.63,7.49,8.32,9.83,208.52,190.26,177.28,173.83,171.89000000000001,170.8,170.32,169.96,169.89000000000001,13.82,14.35,14.36,14.34,14.31,14.280000000000001,14.25,14.22,14.200000000000001,N/A,N/A +2013,4,7,13,30,93790,92680,91600,91.21000000000001,0,4.66,6.09,6.61,7.0200000000000005,7.38,7.7,8.1,8.51,9.6,169.8,170.29,170.56,170.71,170.86,171,171.13,171.27,171.49,15.280000000000001,14.96,14.75,14.52,14.3,14.1,13.91,13.76,13.66,N/A,N/A +2013,4,7,14,30,93810,92700,91620,89.59,0,4.7700000000000005,5.97,6.33,6.54,6.69,6.8,6.94,7.08,7.48,183.42000000000002,182.9,182.6,182.41,182.28,182.20000000000002,182.14000000000001,182.07,181.85,15.51,15.040000000000001,14.83,14.61,14.39,14.200000000000001,13.97,13.780000000000001,13.56,N/A,N/A +2013,4,7,15,30,93810,92700,91620,80.26,0,4.3,5.29,5.59,5.74,5.83,5.87,5.89,5.9,5.93,179.15,179.05,178.97,178.92000000000002,178.88,178.87,178.86,178.87,178.96,17.03,16.41,16.16,15.94,15.74,15.55,15.36,15.19,14.84,N/A,N/A +2013,4,7,16,30,93770,92670,91600,65.95,0,4.25,5.19,5.47,5.6000000000000005,5.66,5.69,5.69,5.69,5.66,181.94,181.54,181.3,181.12,180.96,180.84,180.72,180.61,180.43,19.76,19.1,18.84,18.61,18.400000000000002,18.21,18.03,17.85,17.51,N/A,N/A +2013,4,7,17,30,93700,92620,91560,52.53,0,4.1,4.99,5.25,5.36,5.41,5.43,5.42,5.4,5.32,184.64000000000001,184.85,185.02,185.23,185.47,185.71,186.01,186.29,187.03,22.78,22.09,21.81,21.56,21.34,21.14,20.94,20.76,20.39,N/A,N/A +2013,4,7,18,30,93640,92570,91520,41.65,0,4.39,5.33,5.59,5.7,5.76,5.7700000000000005,5.76,5.75,5.68,183.56,183.78,183.96,184.17000000000002,184.41,184.65,184.93,185.20000000000002,185.83,25.330000000000002,24.62,24.330000000000002,24.07,23.85,23.64,23.43,23.240000000000002,22.85,N/A,N/A +2013,4,7,19,30,93600,92530,91490,33.9,0,4.83,5.83,6.13,6.26,6.33,6.3500000000000005,6.3500000000000005,6.34,6.2700000000000005,180.18,180.69,181.05,181.41,181.75,182.1,182.45000000000002,182.78,183.5,27.16,26.43,26.14,25.87,25.64,25.42,25.21,25.01,24.62,N/A,N/A +2013,4,7,20,30,93510,92450,91420,26.45,0,4.54,5.49,5.78,5.91,5.99,6.0200000000000005,6.03,6.03,6,176.98,177.57,177.98,178.39000000000001,178.76,179.13,179.5,179.85,180.56,28.75,28.05,27.76,27.5,27.27,27.05,26.830000000000002,26.63,26.23,N/A,N/A +2013,4,7,21,30,93420,92370,91340,21.21,0,5.08,6.24,6.61,6.8100000000000005,6.95,7.03,7.09,7.13,7.16,177.82,178.06,178.17000000000002,178.28,178.37,178.47,178.58,178.69,178.93,29.89,29.21,28.94,28.68,28.45,28.23,28.01,27.810000000000002,27.400000000000002,N/A,N/A +2013,4,7,22,30,93370,92320,91290,21.35,0,4.7700000000000005,5.83,6.15,6.34,6.47,6.5600000000000005,6.62,6.67,6.73,170.34,171.05,171.62,172.23,172.75,173.22,173.66,174.05,174.74,29.92,29.35,29.12,28.88,28.66,28.45,28.240000000000002,28.04,27.64,N/A,N/A +2013,4,7,23,30,93310,92260,91230,25.150000000000002,0,4.8500000000000005,6.04,6.41,6.6000000000000005,6.73,6.8100000000000005,6.8500000000000005,6.890000000000001,6.91,161.73,162.08,162.33,162.51,162.65,162.77,162.87,162.97,163.14000000000001,29.61,29.150000000000002,28.94,28.72,28.51,28.310000000000002,28.11,27.91,27.52,N/A,N/A +2013,4,8,0,30,93290,92230,91210,32.53,0,2.64,4.5200000000000005,5.2,5.71,6.09,6.38,6.61,6.8,7.09,157.03,156.52,156.35,156.54,156.93,157.49,158.19,158.9,160.35,28.150000000000002,28.21,28.150000000000002,28.04,27.900000000000002,27.75,27.57,27.400000000000002,27.02,N/A,N/A +2013,4,8,1,30,93320,92250,91220,44.37,0,2.19,4.39,5.21,5.97,6.62,7.19,7.72,8.21,9.13,141.67000000000002,149.17000000000002,154.16,156.81,158.76,160.08,161.06,161.86,162.93,25.52,26.46,26.59,26.6,26.53,26.39,26.2,26.01,25.57,N/A,N/A +2013,4,8,2,30,93350,92270,91240,51.410000000000004,0,2.2,3.73,4.12,4.8100000000000005,5.54,6.3500000000000005,7.19,8.03,9.66,92.94,113.95,127.3,138.24,146.34,152.21,156.25,159.52,163.27,23.830000000000002,24.37,24.32,24.25,24.18,24.11,24.02,23.93,23.72,N/A,N/A +2013,4,8,3,30,93370,92290,91250,59.65,0,2.23,3.31,3.37,3.65,4.1,4.74,5.5,6.3100000000000005,8.120000000000001,104.88,125.31,138.16,150.78,158.97,164.13,166.96,168.92000000000002,170.1,22.68,23.26,23.26,23.25,23.23,23.2,23.150000000000002,23.09,22.91,N/A,N/A +2013,4,8,4,30,93340,92270,91220,63.99,0,2.7600000000000002,5.53,6.54,7.48,8.290000000000001,9.02,9.72,10.38,11.66,173.25,175.22,176.18,176.16,175.92000000000002,175.54,175.14000000000001,174.75,174.04,22.57,23.27,23.31,23.3,23.25,23.18,23.06,22.95,22.67,N/A,N/A +2013,4,8,5,30,93300,92230,91180,60.47,0,6.37,9.43,10.59,11.6,12.450000000000001,13.18,13.82,14.4,15.49,163.38,163.42000000000002,163.41,163.36,163.3,163.22,163.20000000000002,163.20000000000002,163.54,22.71,22.77,22.71,22.62,22.51,22.400000000000002,22.26,22.150000000000002,21.89,N/A,N/A +2013,4,8,6,30,93310,92220,91180,66.44,0,5.26,8.48,9.9,11.22,12.36,13.38,14.32,15.18,16.740000000000002,147.26,151.33,153.71,155.27,156.46,157.42000000000002,158.24,158.98,160.33,21.41,21.52,21.490000000000002,21.44,21.37,21.3,21.22,21.14,20.96,N/A,N/A +2013,4,8,7,30,93320,92230,91180,75.92,0,6.69,9.58,10.72,11.72,12.59,13.36,14.09,14.76,16.03,145.19,147.74,149.31,150.57,151.65,152.6,153.53,154.39000000000001,156.16,19.900000000000002,19.84,19.740000000000002,19.62,19.5,19.37,19.23,19.1,18.830000000000002,N/A,N/A +2013,4,8,8,30,93330,92240,91180,90.02,0,5.89,8.65,9.81,10.85,11.73,12.49,13.17,13.790000000000001,14.93,139.93,143.81,146.25,148.05,149.48,150.68,151.74,152.71,154.54,18.54,18.45,18.35,18.22,18.080000000000002,17.95,17.82,17.69,17.42,N/A,N/A +2013,4,8,9,30,93370,92270,91210,89.05,0,5.46,7.640000000000001,8.63,9.47,10.15,10.74,11.24,11.69,12.5,148.55,151.13,152.84,154.11,155.1,155.91,156.58,157.17000000000002,158.16,18.82,18.54,18.38,18.18,17.990000000000002,17.79,17.57,17.37,16.98,N/A,N/A +2013,4,8,10,30,93340,92250,91190,89.38,0,4.24,5.84,6.54,7.21,7.8,8.35,8.88,9.4,10.790000000000001,152.57,153.17000000000002,153.70000000000002,154.51,155.26,155.98,156.75,157.5,159.49,18.77,18.47,18.3,18.1,17.89,17.68,17.45,17.25,16.88,N/A,N/A +2013,4,8,11,30,93370,92270,91210,89.24,0,2.49,3.43,3.84,4.21,4.58,4.95,5.32,5.66,6.49,184,181.35,179.49,178.26,177.36,176.65,176.11,175.64000000000001,175.05,18.77,18.48,18.3,18.1,17.91,17.71,17.490000000000002,17.3,16.89,N/A,N/A +2013,4,8,12,30,93380,92290,91230,89.31,0,3.93,5.22,5.64,5.96,6.25,6.5200000000000005,6.8,7.07,7.7,176.32,177.64000000000001,178.49,179.31,180.04,180.73,181.38,181.99,183.05,18.650000000000002,18.34,18.16,17.96,17.740000000000002,17.54,17.31,17.11,16.73,N/A,N/A +2013,4,8,13,30,93370,92280,91220,88.59,0,4.17,5.46,5.91,6.26,6.59,6.9,7.22,7.51,7.83,178.24,178.45000000000002,178.58,178.78,178.99,179.21,179.46,179.69,179.97,18.7,18.39,18.22,18.04,17.85,17.68,17.490000000000002,17.32,16.95,N/A,N/A +2013,4,8,14,30,93390,92290,91240,82.7,0,4.8500000000000005,6.13,6.54,6.79,6.96,7.09,7.17,7.24,7.33,174.70000000000002,175.16,175.44,175.73,176.01,176.28,176.59,176.87,177.58,19.29,18.84,18.63,18.43,18.22,18.04,17.84,17.66,17.29,N/A,N/A +2013,4,8,15,30,93370,92280,91220,76.91,0,4.66,5.74,6.07,6.24,6.34,6.390000000000001,6.41,6.43,6.41,177.93,177.85,177.9,177.98,178.08,178.18,178.32,178.46,178.8,20.16,19.55,19.3,19.06,18.85,18.650000000000002,18.44,18.25,17.87,N/A,N/A +2013,4,8,16,30,93340,92250,91200,69.17,0,5.12,6.22,6.54,6.69,6.7700000000000005,6.8,6.79,6.7700000000000005,6.67,179.93,180.4,180.55,180.65,180.73,180.81,180.9,180.98,181.21,21.57,20.85,20.56,20.31,20.080000000000002,19.87,19.66,19.48,19.09,N/A,N/A +2013,4,8,17,30,93290,92210,91170,59.4,0,4.66,5.66,5.96,6.09,6.17,6.2,6.2,6.2,6.13,178.81,178.69,178.62,178.59,178.59,178.61,178.67000000000002,178.73,178.96,23.54,22.8,22.5,22.240000000000002,22.01,21.79,21.580000000000002,21.39,21,N/A,N/A +2013,4,8,18,30,93230,92160,91120,48.410000000000004,0,4.54,5.45,5.71,5.82,5.87,5.9,5.9,5.89,5.84,185.51,186.91,187.78,188.63,189.4,190.16,190.92000000000002,191.63,193.13,25.52,24.79,24.490000000000002,24.22,23.990000000000002,23.77,23.56,23.36,22.96,N/A,N/A +2013,4,8,19,30,93190,92120,91090,42.02,0,4.87,5.87,6.15,6.25,6.3100000000000005,6.34,6.34,6.34,6.3100000000000005,179.66,181.1,181.99,182.84,183.59,184.28,184.97,185.6,186.88,26.73,25.98,25.68,25.42,25.18,24.96,24.75,24.55,24.150000000000002,N/A,N/A +2013,4,8,20,30,93090,92030,91000,27.38,0,5.3,6.51,6.87,7.08,7.22,7.32,7.38,7.43,7.5,186.62,186.33,186.18,186.02,185.92000000000002,185.85,185.81,185.77,185.75,28.78,28.03,27.740000000000002,27.46,27.22,26.990000000000002,26.77,26.560000000000002,26.14,N/A,N/A +2013,4,8,21,30,93000,91950,90920,26.04,0,5.09,6.3,6.7,6.92,7.08,7.2,7.28,7.36,7.46,182.3,182.39000000000001,182.54,182.78,183.01,183.24,183.47,183.69,184.11,29.6,28.89,28.62,28.36,28.12,27.900000000000002,27.68,27.48,27.060000000000002,N/A,N/A +2013,4,8,22,30,92920,91870,90850,21.990000000000002,0,6.17,7.67,8.11,8.36,8.540000000000001,8.67,8.76,8.83,8.94,188.48,188.36,188.33,188.33,188.35,188.39000000000001,188.44,188.5,188.62,30.29,29.650000000000002,29.41,29.16,28.94,28.72,28.5,28.3,27.88,N/A,N/A +2013,4,8,23,30,92880,91830,90810,22.45,0,6.63,8.370000000000001,8.89,9.22,9.47,9.64,9.78,9.9,10.07,180.8,180.75,180.97,181.25,181.52,181.8,182.1,182.4,183,30.47,30,29.8,29.57,29.37,29.16,28.96,28.76,28.36,N/A,N/A +2013,4,9,0,30,92850,91800,90780,36.18,0,6.99,9.17,9.83,10.28,10.620000000000001,10.89,11.11,11.3,11.59,169.24,169.25,169.27,169.33,169.38,169.45000000000002,169.52,169.58,169.72,28.35,28.150000000000002,28.02,27.84,27.67,27.490000000000002,27.3,27.13,26.75,N/A,N/A +2013,4,9,1,30,92860,91800,90770,44.54,0,7.2700000000000005,9.950000000000001,10.82,11.48,12.030000000000001,12.49,12.86,13.19,13.64,166.63,166.69,166.74,166.73,166.65,166.53,166.34,166.15,165.62,26.6,26.580000000000002,26.51,26.41,26.3,26.17,26.03,25.89,25.580000000000002,N/A,N/A +2013,4,9,2,30,92870,91810,90770,49.97,0,8.32,11.31,12.3,13.1,13.76,14.34,14.85,15.32,16.05,150.43,150.49,150.52,150.52,150.54,150.58,150.67000000000002,150.78,151.24,24.71,24.62,24.52,24.38,24.240000000000002,24.09,23.92,23.77,23.44,N/A,N/A +2013,4,9,3,30,92880,91810,90770,61.160000000000004,0,8.39,11.44,12.48,13.32,14.05,14.71,15.34,15.93,17.02,145.79,145.61,145.51,145.46,145.5,145.59,145.81,146.05,146.84,23.2,23.11,23.03,22.92,22.8,22.69,22.57,22.46,22.22,N/A,N/A +2013,4,9,4,30,92830,91760,90720,64.35,0,7.79,10.81,11.84,12.72,13.530000000000001,14.280000000000001,15.02,15.700000000000001,17.07,147.8,147.87,147.92000000000002,148.01,148.18,148.41,148.77,149.14000000000001,150.21,22.8,22.75,22.68,22.59,22.48,22.38,22.26,22.150000000000002,21.92,N/A,N/A +2013,4,9,5,30,92860,91780,90740,69.17,0,7.86,10.83,11.86,12.71,13.47,14.15,14.83,15.450000000000001,16.68,155.75,155.42000000000002,155.20000000000002,155.01,154.88,154.8,154.8,154.82,155.14000000000001,22.16,22.1,22.02,21.92,21.8,21.69,21.56,21.45,21.19,N/A,N/A +2013,4,9,6,30,92940,91860,90820,81.37,0,8.22,11.06,11.99,12.73,13.36,13.92,14.47,14.98,15.98,155.05,155.58,155.97,156.46,156.99,157.53,158.11,158.66,159.78,21,20.86,20.75,20.61,20.47,20.330000000000002,20.17,20.03,19.72,N/A,N/A +2013,4,9,7,30,92960,91880,90830,87.33,0,9.81,12.97,14.02,14.870000000000001,15.55,16.11,16.66,17.17,18.22,157.25,157.94,158.47,159.09,159.64000000000001,160.15,160.71,161.25,162.47,20.6,20.43,20.3,20.13,19.97,19.8,19.63,19.48,19.17,N/A,N/A +2013,4,9,8,30,92960,91880,90830,89.93,0,9.41,12.44,13.48,14.31,15.030000000000001,15.68,16.27,16.81,17.85,158.20000000000002,158.8,159.28,159.92000000000002,160.53,161.14000000000001,161.73,162.29,163.42000000000002,20.34,20.19,20.07,19.900000000000002,19.740000000000002,19.57,19.400000000000002,19.25,18.94,N/A,N/A +2013,4,9,9,30,92970,91890,90840,91.8,0,9.31,12.25,13.280000000000001,14.09,14.75,15.32,15.85,16.35,17.29,156.37,157.29,158.04,158.87,159.59,160.25,160.87,161.44,162.53,19.900000000000002,19.78,19.66,19.5,19.34,19.19,19.03,18.88,18.61,N/A,N/A +2013,4,9,10,30,92980,91900,90850,92.44,0,6.890000000000001,9.49,10.51,11.36,12.02,12.55,13.040000000000001,13.49,14.33,159.58,160.28,160.87,161.69,162.41,163.08,163.82,164.56,166.05,19.8,19.73,19.63,19.47,19.31,19.14,18.96,18.8,18.5,N/A,N/A +2013,4,9,11,30,93000,91920,90860,91.96000000000001,0,5.71,8.13,9.1,9.89,10.58,11.200000000000001,11.76,12.27,13,166.37,166.46,166.69,167.31,168.01,168.82,169.55,170.23,171.21,19.7,19.67,19.580000000000002,19.43,19.26,19.09,18.89,18.71,18.28,N/A,N/A +2013,4,9,12,30,93020,91930,90880,91.08,0,5.44,7.5,8.32,8.99,9.58,10.1,10.55,10.950000000000001,11.52,174.83,174.47,174.28,174.37,174.59,174.9,175.28,175.64000000000001,176.51,19.490000000000002,19.330000000000002,19.22,19.06,18.900000000000002,18.740000000000002,18.55,18.38,18,N/A,N/A +2013,4,9,13,30,93040,91960,90910,87.85000000000001,0,5.5,7.0600000000000005,7.59,7.97,8.26,8.51,8.73,8.93,9.36,177.96,178.26,178.53,178.8,179.08,179.35,179.69,180.01,180.81,19.64,19.32,19.150000000000002,18.95,18.76,18.57,18.38,18.2,17.830000000000002,N/A,N/A +2013,4,9,14,30,93110,92020,90970,80.10000000000001,0,6.5200000000000005,7.97,8.44,8.63,8.74,8.78,8.78,8.77,8.700000000000001,174.91,175.37,175.67000000000002,176.02,176.37,176.75,177.19,177.62,178.71,20.18,19.62,19.39,19.150000000000002,18.95,18.75,18.55,18.37,18,N/A,N/A +2013,4,9,15,30,93080,92000,90960,61.410000000000004,0,5.76,7.13,7.55,7.79,7.94,8.03,8.1,8.16,8.28,195.08,195.86,196.44,197.11,197.8,198.5,199.3,200.06,201.84,22.66,22.02,21.78,21.55,21.36,21.17,20.990000000000002,20.830000000000002,20.51,N/A,N/A +2013,4,9,16,30,93050,91990,90950,25.11,0,7.17,8.93,9.49,9.81,10.03,10.200000000000001,10.32,10.43,10.57,220.27,220.94,221.29,221.6,221.85,222.08,222.29,222.49,222.86,26.67,25.95,25.69,25.44,25.21,25,24.79,24.59,24.19,N/A,N/A +2013,4,9,17,30,93050,91990,90950,18.87,0,7.04,8.76,9.3,9.6,9.81,9.96,10.07,10.17,10.3,236.09,236.16,236.21,236.3,236.38,236.45000000000002,236.53,236.6,236.74,27.62,26.85,26.560000000000002,26.29,26.05,25.830000000000002,25.61,25.41,24.990000000000002,N/A,N/A +2013,4,9,18,30,93020,91960,90930,14.48,0,5.69,7.13,7.57,7.84,8.03,8.18,8.290000000000001,8.38,8.52,229.31,229.52,229.68,229.85,230,230.14000000000001,230.29,230.41,230.66,28.59,27.830000000000002,27.54,27.28,27.03,26.810000000000002,26.59,26.38,25.95,N/A,N/A +2013,4,9,19,30,93010,91960,90930,11.42,0,5.36,6.54,7.0600000000000005,7.3500000000000005,7.58,7.74,7.88,7.99,8.18,217.85,219.13,219.95000000000002,220.62,221.17000000000002,221.66,222.1,222.49,223.21,30.21,29.5,29.2,28.92,28.68,28.44,28.22,28.01,27.59,N/A,N/A +2013,4,9,20,30,92890,91840,90820,9.49,0,6.05,7.59,8.02,8.28,8.46,8.6,8.71,8.8,8.92,221.71,221.95000000000002,222.11,222.28,222.43,222.57,222.72,222.85,223.12,31.05,30.310000000000002,30.03,29.77,29.53,29.310000000000002,29.09,28.88,28.45,N/A,N/A +2013,4,9,21,30,92810,91760,90740,8.91,0,5.99,7.6000000000000005,8,8.25,8.43,8.57,8.67,8.76,8.9,217.73000000000002,217.88,218,218.12,218.23000000000002,218.34,218.43,218.52,218.69,31.43,30.740000000000002,30.48,30.240000000000002,30,29.79,29.57,29.36,28.95,N/A,N/A +2013,4,9,22,30,92870,91830,90800,8.49,0,3.7800000000000002,4.65,5.09,5.37,5.58,5.76,5.92,6.0600000000000005,6.3100000000000005,203.41,205.47,207.08,208.29,209.27,210.14000000000001,210.9,211.59,212.75,31.970000000000002,31.44,31.2,30.95,30.75,30.53,30.32,30.12,29.72,N/A,N/A +2013,4,9,23,30,92770,91730,90720,8.24,0,3.11,4,4.38,4.63,4.84,5.01,5.17,5.3,5.55,211.04,212.34,213.14000000000001,213.79,214.33,214.81,215.22,215.59,216.21,32.07,31.650000000000002,31.46,31.240000000000002,31.05,30.85,30.650000000000002,30.46,30.07,N/A,N/A +2013,4,10,0,30,92760,91710,90690,18.67,0,8.98,11.9,12.8,13.370000000000001,13.780000000000001,14.07,14.27,14.42,14.56,181.35,177.69,175.9,174.34,173.07,171.96,171.05,170.28,169.15,30.37,30.32,30.25,30.12,29.990000000000002,29.85,29.69,29.54,29.22,N/A,N/A +2013,4,10,1,30,92820,91770,90750,26.11,0,3.43,5.68,6.54,7.26,7.86,8.35,8.75,9.07,9.51,139.99,140.05,140.21,141.04,141.72,142.24,142.74,143.23,144.3,27.55,28.59,28.98,29.14,29.23,29.21,29.13,29.01,28.7,N/A,N/A +2013,4,10,2,30,92910,91850,90810,23.39,0,3.79,6.61,7.72,8.66,9.3,9.73,9.71,9.6,9.63,292.22,301.36,306.53000000000003,309.55,311.91,313.78000000000003,315.2,316.37,320.06,24.98,25.080000000000002,25.02,24.97,24.990000000000002,25.03,25.05,25.060000000000002,25,N/A,N/A +2013,4,10,3,30,93090,92010,90960,27.92,0,5.51,8.290000000000001,9.41,10.41,11.27,12.040000000000001,12.74,13.370000000000001,14.44,316.37,318.78000000000003,320.25,321.41,322.39,323.24,323.98,324.65000000000003,325.81,23.09,23.04,22.95,22.830000000000002,22.7,22.57,22.41,22.27,21.96,N/A,N/A +2013,4,10,4,30,93240,92160,91110,30.55,0,4.2700000000000005,6.57,7.72,8.71,9.56,10.3,10.950000000000001,11.55,12.56,328.28000000000003,329.64,330.7,331.34000000000003,331.79,332.07,332.23,332.32,332.44,21.75,21.87,21.86,21.78,21.69,21.57,21.44,21.32,21.03,N/A,N/A +2013,4,10,5,30,93240,92150,91090,32.37,0,3.85,6.33,7.3100000000000005,8.18,8.92,9.57,10.11,10.58,11.35,328.33,330.81,332.08,332.97,333.52,333.92,334.07,334.19,334.26,20.87,20.94,20.92,20.86,20.78,20.7,20.59,20.48,20.23,N/A,N/A +2013,4,10,6,30,93320,92230,91170,31.84,0,5.19,7.51,8.4,9.13,9.73,10.25,10.68,11.06,11.64,321.29,323.04,324.16,325.14,326,326.78000000000003,327.51,328.19,329.63,20.5,20.45,20.36,20.25,20.12,20,19.86,19.73,19.46,N/A,N/A +2013,4,10,7,30,93430,92330,91270,33.36,0,4.57,7.19,8.23,9.03,9.63,10.120000000000001,10.47,10.76,11.14,321.68,324.12,325.51,326.40000000000003,326.99,327.41,327.77,328.12,329.01,18.900000000000002,19.11,19.13,19.09,19,18.900000000000002,18.77,18.650000000000002,18.36,N/A,N/A +2013,4,10,8,30,93510,92410,91340,31.67,0,4.26,6.45,7.33,7.95,8.370000000000001,8.65,8.82,8.96,9.24,331.64,332.38,332.88,333.63,334.92,336.61,339.2,341.8,348.21,17.71,18.02,18.11,18.14,18.13,18.080000000000002,17.990000000000002,17.900000000000002,17.61,N/A,N/A +2013,4,10,9,30,93650,92530,91450,44.800000000000004,0,6.03,8.27,9.08,9.71,10.22,10.64,11.02,11.36,11.950000000000001,36.6,35.62,34.79,33.910000000000004,32.99,32.11,31.16,30.27,28.580000000000002,14.36,14.16,14.01,13.84,13.66,13.48,13.290000000000001,13.1,12.72,N/A,N/A +2013,4,10,10,30,93730,92600,91500,49.03,0,8.34,10.83,11.77,12.450000000000001,13.01,13.5,13.96,14.4,15.39,37.15,36.38,35.92,35.43,34.95,34.5,34.04,33.61,32.82,11.42,11.15,10.97,10.76,10.55,10.35,10.120000000000001,9.9,9.44,N/A,N/A +2013,4,10,11,30,93780,92640,91540,51.78,0,4.01,5.94,6.86,7.71,8.44,9.09,9.69,10.25,11.32,8.57,11.9,14.02,15.41,16.38,17.16,17.7,18.18,18.96,10.31,10.07,9.9,9.72,9.53,9.35,9.16,8.98,8.63,N/A,N/A +2013,4,10,12,30,93860,92720,91610,56.26,0,0.49,1.58,2.5300000000000002,3.73,4.86,5.94,6.84,7.68,9.11,296.09000000000003,345,14.290000000000001,19.22,21.56,22.93,23.79,24.57,25.93,9.52,9.32,9.09,8.85,8.61,8.38,8.15,7.92,7.47,N/A,N/A +2013,4,10,13,30,93920,92780,91670,54.65,0,3.02,4.13,4.79,5.26,5.63,5.92,6.17,6.4,6.83,23.86,26.09,27.810000000000002,28.900000000000002,29.75,30.44,31.080000000000002,31.650000000000002,32.83,9.290000000000001,8.89,8.68,8.46,8.26,8.06,7.86,7.66,7.26,N/A,N/A +2013,4,10,14,30,93930,92790,91680,51.86,0,3.64,4.5600000000000005,4.86,5.04,5.16,5.26,5.33,5.4,5.5200000000000005,19.26,19.94,20.31,20.67,21.02,21.34,21.66,21.96,22.57,10.46,9.9,9.66,9.450000000000001,9.24,9.040000000000001,8.84,8.65,8.26,N/A,N/A +2013,4,10,15,30,93960,92830,91730,47.410000000000004,0,4.23,5.24,5.55,5.72,5.83,5.92,5.98,6.03,6.1000000000000005,22.61,22.37,22.23,22.12,22.01,21.92,21.81,21.72,21.52,12.14,11.49,11.22,10.99,10.76,10.56,10.35,10.15,9.76,N/A,N/A +2013,4,10,16,30,93990,92870,91770,45.6,0,5.21,6.34,6.72,6.9,7.0200000000000005,7.1000000000000005,7.15,7.18,7.21,13.06,12.86,12.700000000000001,12.57,12.450000000000001,12.34,12.23,12.120000000000001,11.9,13.35,12.63,12.32,12.06,11.82,11.61,11.39,11.19,10.78,N/A,N/A +2013,4,10,17,30,93960,92830,91740,40.08,0,4.62,5.66,5.96,6.13,6.24,6.32,6.38,6.43,6.49,9.31,8.75,8.43,8.16,7.92,7.71,7.5,7.3,6.92,14.67,13.950000000000001,13.64,13.370000000000001,13.13,12.91,12.68,12.47,12.06,N/A,N/A +2013,4,10,18,30,93950,92830,91740,38.22,0,4.67,5.63,5.93,6.08,6.18,6.25,6.3,6.34,6.38,11.96,10.73,9.93,9.24,8.620000000000001,8.05,7.49,6.97,5.93,15.69,14.97,14.65,14.370000000000001,14.13,13.91,13.68,13.47,13.05,N/A,N/A +2013,4,10,19,30,93920,92810,91730,34.21,0,4.14,4.94,5.23,5.39,5.5,5.57,5.62,5.67,5.73,352.86,352.72,352.57,352.43,352.29,352.14,351.99,351.85,351.56,17.09,16.41,16.09,15.8,15.55,15.32,15.09,14.88,14.450000000000001,N/A,N/A +2013,4,10,20,30,93850,92740,91670,31.45,0,4.8100000000000005,5.83,6.13,6.3,6.41,6.49,6.53,6.57,6.61,335.5,335.16,335.08,335.08,335.1,335.12,335.15000000000003,335.17,335.2,18,17.26,16.95,16.67,16.42,16.19,15.96,15.75,15.32,N/A,N/A +2013,4,10,21,30,93820,92710,91630,28.46,0,4.2700000000000005,5.22,5.53,5.69,5.8100000000000005,5.89,5.96,6.01,6.09,317.92,318.96,319.55,320.01,320.42,320.77,321.1,321.40000000000003,321.99,18.48,17.8,17.51,17.26,17.02,16.8,16.580000000000002,16.37,15.96,N/A,N/A +2013,4,10,22,30,93740,92640,91560,27.12,0,4.59,5.67,5.94,6.08,6.18,6.24,6.29,6.33,6.38,338.42,338.74,338.85,338.89,338.93,338.94,338.96,338.97,338.98,18.86,18.21,17.96,17.72,17.490000000000002,17.28,17.06,16.86,16.45,N/A,N/A +2013,4,10,23,30,93750,92650,91580,25.79,0,4.13,5.11,5.42,5.6000000000000005,5.72,5.82,5.89,5.94,6.03,355.68,355.61,355.41,355.26,355.11,354.97,354.82,354.67,354.34000000000003,18.95,18.41,18.17,17.94,17.72,17.52,17.3,17.1,16.7,N/A,N/A +2013,4,11,0,30,93760,92650,91580,26.64,0,4.58,5.84,6.2,6.42,6.5600000000000005,6.66,6.72,6.7700000000000005,6.82,19.06,18.47,17.990000000000002,17.51,17.03,16.580000000000002,16.09,15.63,14.67,18.26,17.93,17.740000000000002,17.54,17.34,17.16,16.95,16.76,16.37,N/A,N/A +2013,4,11,1,30,93790,92680,91610,30.3,0,3,5.03,5.8,6.3500000000000005,6.74,7.01,7.18,7.3100000000000005,7.45,35.43,34.9,34.53,34.28,33.87,33.4,32.67,31.94,30.2,16.55,16.76,16.73,16.64,16.52,16.39,16.23,16.080000000000002,15.73,N/A,N/A +2013,4,11,2,30,93830,92710,91630,33.410000000000004,0,2.84,5.15,6.07,6.87,7.5600000000000005,8.18,8.61,8.92,9.02,35.99,36.42,36.79,37.230000000000004,37.51,37.71,37.660000000000004,37.53,36.87,15.16,15.46,15.47,15.44,15.38,15.31,15.200000000000001,15.09,14.83,N/A,N/A +2013,4,11,3,30,93870,92750,91660,36.31,0,2.97,5.15,6,6.75,7.41,8.01,8.58,9.120000000000001,9.99,47.08,47.13,47.25,47.51,47.56,47.52,47.26,47,46.39,13.85,14.08,14.06,14,13.91,13.83,13.71,13.6,13.35,N/A,N/A +2013,4,11,4,30,93920,92790,91700,37.18,0,3.77,5.93,6.8,7.55,8.17,8.71,9.17,9.58,10.26,65.77,64.54,63.84,63.5,63.31,63.17,62.96,62.730000000000004,61.96,12.870000000000001,12.94,12.88,12.780000000000001,12.65,12.530000000000001,12.38,12.23,11.92,N/A,N/A +2013,4,11,5,30,93940,92810,91710,43.19,0,1.43,3.36,4.37,5.37,6.29,7.140000000000001,7.9,8.59,9.71,98.21000000000001,89.44,84.26,81.3,79.33,77.77,76.75,75.86,74.49,11.200000000000001,11.5,11.41,11.31,11.19,11.08,10.950000000000001,10.82,10.57,N/A,N/A +2013,4,11,6,30,93980,92840,91740,46.62,0,0.47000000000000003,0.81,1.18,2.06,2.98,3.94,4.9,5.8500000000000005,7.6000000000000005,256.84000000000003,163.38,123.53,98.79,88.98,84.43,83.48,82.79,82.34,10.28,10.56,10.370000000000001,10.120000000000001,9.89,9.69,9.5,9.32,8.98,N/A,N/A +2013,4,11,7,30,94060,92920,91810,50.19,0,1.1300000000000001,1.02,1.05,1.46,2.09,2.89,3.73,4.63,6.41,186.1,151.98,133.53,107.82000000000001,98.19,94.01,92.71000000000001,91.59,90.27,9.17,9.5,9.39,9.24,9.040000000000001,8.86,8.65,8.46,8.07,N/A,N/A +2013,4,11,8,30,94070,92930,91810,52.910000000000004,0,0.3,0.59,0.84,1.31,1.51,1.61,1.84,2.11,2.92,316.05,24.86,57.1,71.58,80.2,85.76,88.96000000000001,90.83,90.74,8.27,8.68,8.61,8.47,8.33,8.19,8.040000000000001,7.88,7.53,N/A,N/A +2013,4,11,9,30,94050,92900,91790,55.44,0,0.5700000000000001,1.43,1.79,1.96,2.06,2.15,2.39,2.66,3.27,125.01,120.34,114.34,106.58,100.85000000000001,96.51,94.81,93.9,93.60000000000001,7.69,8.24,8.25,8.22,8.120000000000001,8.02,7.88,7.72,7.36,N/A,N/A +2013,4,11,10,30,94030,92890,91770,56.34,0,0.52,1.19,1.6,2.1,2.5,2.86,3.25,3.65,4.48,13.6,59.54,80.58,86.67,89.96000000000001,92.23,93.23,93.9,94.59,7.19,7.86,7.88,7.8,7.66,7.5,7.32,7.15,6.82,N/A,N/A +2013,4,11,11,30,94040,92890,91770,58.38,0,0.67,1.49,1.92,2.4,2.92,3.46,4.04,4.63,5.79,29.830000000000002,57.61,72.7,81.97,87.99,92.86,95.56,97.56,99.68,6.61,7.140000000000001,7.08,6.94,6.8100000000000005,6.69,6.58,6.49,6.3,N/A,N/A +2013,4,11,12,30,94030,92870,91750,60.160000000000004,0,1.62,1.52,1.6,2.18,2.79,3.41,4.03,4.64,5.94,15.71,46.59,63.71,86.43,95.31,100.48,101.34,101.62,100.98,5.92,6.28,6.19,6.1000000000000005,6.0600000000000005,6.0200000000000005,5.96,5.89,5.74,N/A,N/A +2013,4,11,13,30,94010,92850,91730,51.2,0,0.91,1.07,1.45,2.33,2.91,3.38,3.77,4.17,5.0200000000000005,57.47,75.11,86.96000000000001,102.87,107.27,108.39,108.2,107.94,107.69,6.67,6.42,6.390000000000001,6.41,6.36,6.29,6.17,6.05,5.89,N/A,N/A +2013,4,11,14,30,94000,92860,91740,44.33,0,2.08,2.61,2.8000000000000003,2.91,2.98,3.0500000000000003,3.09,3.14,3.23,119.15,120.32000000000001,120.85000000000001,121.14,121.31,121.44,121.52,121.57000000000001,121.55,9.09,8.61,8.39,8.2,7.99,7.8100000000000005,7.62,7.43,7.0600000000000005,N/A,N/A +2013,4,11,15,30,93970,92830,91730,37.06,0,2.34,2.85,2.99,3.0500000000000003,3.09,3.11,3.11,3.11,3.1,139.27,139.96,140.36,140.67000000000002,140.97,141.24,141.56,141.87,142.58,11.33,10.78,10.53,10.31,10.1,9.91,9.71,9.52,9.15,N/A,N/A +2013,4,11,16,30,93920,92790,91700,33.6,0,2.47,3,3.15,3.23,3.2800000000000002,3.3200000000000003,3.34,3.35,3.38,155.47,157.39000000000001,158.53,159.48,160.37,161.15,161.99,162.77,164.39000000000001,13.69,13.1,12.83,12.59,12.370000000000001,12.17,11.96,11.77,11.38,N/A,N/A +2013,4,11,17,30,93850,92740,91650,34.410000000000004,0,3.12,3.77,3.96,4.07,4.12,4.17,4.19,4.21,4.22,182.08,182.67000000000002,183.11,183.59,184.08,184.54,185.04,185.51,186.5,15.96,15.33,15.040000000000001,14.790000000000001,14.56,14.35,14.13,13.94,13.540000000000001,N/A,N/A +2013,4,11,18,30,93760,92650,91570,31.060000000000002,0,3.44,4.2,4.44,4.5600000000000005,4.64,4.69,4.72,4.75,4.7700000000000005,181.20000000000002,182.22,182.89000000000001,183.51,184.11,184.65,185.24,185.78,186.9,18.01,17.35,17.05,16.79,16.55,16.330000000000002,16.11,15.9,15.5,N/A,N/A +2013,4,11,19,30,93670,92570,91510,26.87,0,3.2,3.96,4.21,4.37,4.48,4.57,4.65,4.71,4.82,210.20000000000002,211.03,211.4,211.83,212.3,212.74,213.23000000000002,213.69,214.63,19.990000000000002,19.34,19.04,18.78,18.54,18.32,18.09,17.89,17.47,N/A,N/A +2013,4,11,20,30,93610,92520,91450,24.79,0,2.41,2.97,3.17,3.31,3.42,3.5100000000000002,3.59,3.66,3.79,249.83,248.86,248.26000000000002,247.88,247.58,247.34,247.15,247,246.74,21.14,20.53,20.240000000000002,19.98,19.740000000000002,19.52,19.3,19.09,18.67,N/A,N/A +2013,4,11,21,30,93520,92430,91370,22.17,0,2.68,3.2,3.37,3.47,3.5500000000000003,3.61,3.66,3.71,3.79,236.35,238.72,240.17000000000002,241.27,242.23000000000002,243.08,243.87,244.58,245.91,22.06,21.45,21.18,20.93,20.71,20.490000000000002,20.27,20.07,19.66,N/A,N/A +2013,4,11,22,30,93460,92370,91320,12.77,0,4.86,5.95,6.29,6.46,6.59,6.69,6.76,6.8100000000000005,6.9,278.11,277.5,277.3,277.16,277.05,276.95,276.87,276.8,276.66,23.46,22.830000000000002,22.57,22.330000000000002,22.11,21.900000000000002,21.68,21.47,21.06,N/A,N/A +2013,4,11,23,30,93470,92380,91330,12.43,0,5.17,6.3100000000000005,6.63,6.78,6.890000000000001,6.96,7,7.04,7.08,283.09000000000003,283.85,284.12,284.24,284.3,284.32,284.3,284.27,284.15000000000003,23.2,22.7,22.48,22.26,22.04,21.84,21.63,21.43,21.03,N/A,N/A +2013,4,12,0,30,93470,92390,91330,12.51,0,3.38,4.97,5.5,5.84,6.09,6.2700000000000005,6.4,6.51,6.640000000000001,298.83,299.05,299.1,299.04,298.92,298.78000000000003,298.58,298.39,297.92,22.51,22.41,22.28,22.1,21.91,21.72,21.52,21.330000000000002,20.93,N/A,N/A +2013,4,12,1,30,93500,92410,91350,15.89,0,2.36,4.5,5.08,5.33,5.5,5.62,5.72,5.79,5.91,325.8,319.23,315.63,314.7,313.87,313.12,312.36,311.65000000000003,310.29,20.41,21.87,22.03,21.830000000000002,21.64,21.46,21.26,21.080000000000002,20.7,N/A,N/A +2013,4,12,2,30,93550,92450,91400,17.84,0,1.16,1.82,1.8800000000000001,1.92,2,2.1,2.2,2.29,2.5,9.56,359.33,353.05,348.02,345.44,344.15000000000003,343.04,341.94,338.3,18.98,20.55,20.87,21.02,21.03,20.990000000000002,20.87,20.740000000000002,20.44,N/A,N/A +2013,4,12,3,30,93600,92490,91430,19.44,0,1.12,2.24,2.65,2.99,3.23,3.41,3.47,3.5,3.34,18.3,19.41,19.97,19.87,19.01,17.84,16.92,16.22,15.97,17.900000000000002,18.68,18.66,18.73,18.92,19.150000000000002,19.38,19.580000000000002,19.78,N/A,N/A +2013,4,12,4,30,93640,92530,91470,24.1,0,0.87,1.46,1.6400000000000001,1.9100000000000001,2.15,2.38,2.52,2.62,2.62,20.68,33.62,40.06,42.72,43.35,42.93,42.57,42.39,43.67,15.83,17.080000000000002,17.37,17.67,17.93,18.18,18.41,18.61,18.92,N/A,N/A +2013,4,12,5,30,93660,92560,91490,48.870000000000005,0,2.36,3.44,3.5500000000000003,3.93,4.63,5.59,6.79,8.040000000000001,10.25,128.42000000000002,121.88,122.92,132.94,142.17000000000002,151.72,157.11,161.67000000000002,165.71,16.66,17.5,17.41,17.34,17.29,17.26,17.22,17.17,16.98,N/A,N/A +2013,4,12,6,30,93700,92590,91510,50.5,0,3.98,6.58,7.68,8.9,10.08,11.22,12.26,13.200000000000001,14.620000000000001,138.4,147.8,153.36,157.49,160.28,162.44,163.75,164.87,166.37,15.15,15.65,15.77,15.88,15.93,15.97,15.94,15.91,15.76,N/A,N/A +2013,4,12,7,30,93750,92630,91550,61.53,0,2.65,4.75,5.4,6.12,6.95,7.82,8.86,9.9,12.01,117.96000000000001,127.41,133.55,139.08,143.84,148.22,151.69,154.86,159.69,13.32,14.14,14.24,14.35,14.42,14.48,14.51,14.530000000000001,14.56,N/A,N/A +2013,4,12,8,30,93770,92650,91560,65.47,0,2.57,4.8,5.59,6.41,7.25,8.07,9.03,9.99,12.030000000000001,116.69,126.2,132.28,136.98,140.76,144.08,146.98,149.69,154.4,12.34,13.13,13.21,13.280000000000001,13.33,13.36,13.39,13.41,13.46,N/A,N/A +2013,4,12,9,30,93770,92650,91560,66.53,0,2.42,5.01,6.08,7.07,7.95,8.75,9.51,10.23,11.620000000000001,125.13000000000001,131.69,135.53,137.96,139.95000000000002,141.70000000000002,143.39000000000001,145.01,148.20000000000002,11.8,12.56,12.6,12.620000000000001,12.61,12.6,12.57,12.540000000000001,12.48,N/A,N/A +2013,4,12,10,30,93790,92660,91570,67.85,0,1.5,3.89,5.28,6.55,7.66,8.66,9.61,10.5,12.17,115.13,128.53,136.4,139.24,141.16,142.67000000000002,144.15,145.62,148.76,11.040000000000001,11.77,11.790000000000001,11.790000000000001,11.790000000000001,11.78,11.78,11.78,11.83,N/A,N/A +2013,4,12,11,30,93820,92690,91590,70.55,0,0.53,2.2600000000000002,3.79,5.05,6.13,7.1000000000000005,8,8.89,10.67,84.78,112.59,132.79,135.6,137.65,139.35,141.29,143.24,147.3,10.26,10.92,10.91,10.89,10.86,10.83,10.81,10.81,10.86,N/A,N/A +2013,4,12,12,30,93860,92730,91630,73.21000000000001,0,0.8300000000000001,2.08,3.0300000000000002,4.37,5.5600000000000005,6.67,7.66,8.65,10.57,338.07,82.8,137.25,138.78,141.1,143.71,146.46,149.15,154.22,9.55,10.3,10.34,10.38,10.42,10.450000000000001,10.53,10.620000000000001,10.870000000000001,N/A,N/A +2013,4,12,13,30,93890,92760,91660,58.050000000000004,0,0.64,2.52,4.28,5.19,6.0200000000000005,6.8100000000000005,7.58,8.33,9.790000000000001,101.84,122.37,139.31,141.65,144.34,147.06,149.37,151.49,154.99,11.34,11.16,11.08,11,10.94,10.9,10.89,10.89,10.950000000000001,N/A,N/A +2013,4,12,14,30,93930,92800,91710,49.93,0,4.29,5.48,5.91,6.19,6.390000000000001,6.5600000000000005,6.71,6.87,7.24,151.39000000000001,152.20000000000002,152.74,153.26,153.77,154.25,154.8,155.32,156.54,13.93,13.41,13.19,12.99,12.790000000000001,12.61,12.42,12.25,11.9,N/A,N/A +2013,4,12,15,30,93930,92820,91740,45.24,0,4.94,6.22,6.67,6.93,7.1000000000000005,7.23,7.32,7.390000000000001,7.5,161.65,161.69,161.72,161.75,161.78,161.81,161.84,161.88,162,16.56,15.93,15.67,15.44,15.22,15.02,14.82,14.63,14.25,N/A,N/A +2013,4,12,16,30,93920,92810,91740,41.04,0,5.67,7.12,7.63,7.91,8.1,8.23,8.31,8.38,8.46,162.79,162.84,162.86,162.87,162.88,162.89000000000001,162.9,162.92000000000002,162.98,18.95,18.23,17.94,17.68,17.45,17.240000000000002,17.02,16.82,16.43,N/A,N/A +2013,4,12,17,30,93870,92770,91710,36.46,0,6.37,7.95,8.47,8.75,8.94,9.07,9.15,9.21,9.28,160.66,160.95000000000002,161.13,161.26,161.37,161.46,161.55,161.63,161.8,21.04,20.25,19.95,19.68,19.43,19.21,18.990000000000002,18.79,18.38,N/A,N/A +2013,4,12,18,30,93830,92740,91680,32.12,0,6.8100000000000005,8.47,8.99,9.27,9.450000000000001,9.57,9.65,9.72,9.790000000000001,162.61,162.85,162.98,163.08,163.15,163.22,163.28,163.34,163.47,22.68,21.86,21.55,21.27,21.02,20.8,20.57,20.36,19.95,N/A,N/A +2013,4,12,19,30,93780,92700,91640,28.68,0,6.8100000000000005,8.43,8.93,9.18,9.35,9.47,9.55,9.61,9.68,164.36,164.46,164.51,164.53,164.54,164.55,164.56,164.56,164.57,23.79,22.98,22.66,22.39,22.14,21.91,21.68,21.48,21.06,N/A,N/A +2013,4,12,20,30,93720,92640,91580,24.98,0,6.46,8.01,8.5,8.76,8.94,9.07,9.16,9.24,9.34,163.20000000000002,163.35,163.44,163.49,163.53,163.55,163.57,163.59,163.63,24.67,23.89,23.59,23.31,23.06,22.84,22.61,22.400000000000002,21.98,N/A,N/A +2013,4,12,21,30,93650,92570,91520,22.88,0,6.5200000000000005,8.1,8.59,8.85,9.03,9.16,9.25,9.32,9.41,160.67000000000002,160.75,160.79,160.8,160.81,160.81,160.81,160.81,160.8,25.14,24.400000000000002,24.11,23.85,23.61,23.38,23.16,22.95,22.53,N/A,N/A +2013,4,12,22,30,93590,92520,91470,23.2,0,6.58,8.22,8.73,9.01,9.21,9.34,9.44,9.52,9.63,157.46,157.52,157.55,157.54,157.54,157.53,157.52,157.51,157.49,25.23,24.560000000000002,24.3,24.05,23.82,23.6,23.38,23.18,22.77,N/A,N/A +2013,4,12,23,30,93570,92490,91440,24.38,0,6.72,8.5,9.03,9.34,9.55,9.700000000000001,9.82,9.91,10.03,153.07,153.22,153.31,153.38,153.44,153.49,153.54,153.59,153.68,24.75,24.23,24,23.78,23.56,23.35,23.14,22.95,22.54,N/A,N/A +2013,4,13,0,30,93570,92490,91440,27.810000000000002,0,5.87,7.87,8.51,8.98,9.34,9.63,9.88,10.09,10.43,149.07,149.15,149.22,149.29,149.37,149.46,149.57,149.68,149.92000000000002,23.66,23.42,23.27,23.09,22.900000000000002,22.72,22.52,22.34,21.95,N/A,N/A +2013,4,13,1,30,93610,92520,91470,31.71,0,4.72,7.5600000000000005,8.74,9.75,10.61,11.36,11.99,12.55,13.36,141.3,141.43,141.59,141.84,142.18,142.57,142.98,143.37,144.01,21.73,21.93,21.94,21.900000000000002,21.81,21.72,21.580000000000002,21.44,21.11,N/A,N/A +2013,4,13,2,30,93650,92560,91500,34.35,0,5.6000000000000005,8.42,9.52,10.46,11.3,12.05,12.75,13.39,14.450000000000001,144.67000000000002,144.88,145.05,145.24,145.49,145.77,146.07,146.37,146.95000000000002,20.84,20.96,20.96,20.92,20.87,20.81,20.73,20.64,20.41,N/A,N/A +2013,4,13,3,30,93690,92590,91530,38.38,0,5.12,8.11,9.44,10.65,11.75,12.780000000000001,13.72,14.58,15.96,142,142.13,142.18,142.26,142.42000000000002,142.63,142.94,143.26,144,19.68,19.88,19.92,19.93,19.92,19.91,19.86,19.81,19.650000000000002,N/A,N/A +2013,4,13,4,30,93710,92610,91550,41.300000000000004,0,6.09,9.09,10.3,11.36,12.31,13.17,13.99,14.74,16.09,141.05,140.61,140.29,139.97,139.77,139.63,139.66,139.73,140.20000000000002,18.96,19.02,18.990000000000002,18.93,18.86,18.79,18.7,18.61,18.42,N/A,N/A +2013,4,13,5,30,93730,92630,91560,44.65,0,6.140000000000001,9.16,10.370000000000001,11.44,12.42,13.33,14.24,15.1,16.8,140.32,140.16,140.03,139.86,139.84,139.88,140.13,140.42000000000002,141.36,17.92,17.96,17.91,17.85,17.78,17.7,17.62,17.54,17.38,N/A,N/A +2013,4,13,6,30,93760,92650,91580,48.92,0,6.69,9.74,10.950000000000001,12.01,12.98,13.870000000000001,14.780000000000001,15.64,17.34,144.29,144.86,145.17000000000002,145.4,145.67000000000002,145.92000000000002,146.27,146.62,147.45000000000002,17.04,17.02,16.95,16.87,16.77,16.67,16.56,16.46,16.240000000000002,N/A,N/A +2013,4,13,7,30,93790,92680,91600,53.660000000000004,0,7.41,10.48,11.63,12.6,13.47,14.24,15.01,15.72,17.11,148.11,148.85,149.29,149.62,149.9,150.16,150.42000000000002,150.68,151.23,16.18,16.11,16.01,15.9,15.77,15.65,15.52,15.4,15.16,N/A,N/A +2013,4,13,8,30,93830,92710,91630,60.81,0,6.2700000000000005,9.05,10.17,11.120000000000001,11.94,12.68,13.39,14.040000000000001,15.31,143.03,144.35,145.17000000000002,145.84,146.45000000000002,147,147.55,148.06,149.12,15.15,15.07,14.97,14.85,14.72,14.6,14.46,14.34,14.08,N/A,N/A +2013,4,13,9,30,93800,92680,91600,67.68,0,5.57,8.21,9.3,10.23,11.03,11.74,12.41,13.030000000000001,14.22,141.82,143.65,144.77,145.66,146.45000000000002,147.16,147.88,148.56,149.96,14.35,14.27,14.18,14.06,13.94,13.82,13.68,13.56,13.31,N/A,N/A +2013,4,13,10,30,93800,92680,91590,74.81,0,4.75,7.32,8.47,9.46,10.3,11.03,11.72,12.35,13.540000000000001,141.63,143.35,144.45000000000002,145.27,146,146.67000000000002,147.39000000000001,148.09,149.61,13.700000000000001,13.64,13.55,13.43,13.31,13.19,13.06,12.94,12.700000000000001,N/A,N/A +2013,4,13,11,30,93820,92700,91610,80.58,0,4.48,7.03,8.17,9.15,10,10.75,11.47,12.13,13.39,142.07,143.63,144.55,145.17000000000002,145.77,146.31,146.94,147.54,148.88,13.1,13.06,12.97,12.870000000000001,12.75,12.64,12.52,12.4,12.17,N/A,N/A +2013,4,13,12,30,93800,92680,91590,81.26,0,4.53,7.53,8.66,9.02,9.57,10.14,10.790000000000001,11.42,12.64,149.91,151.38,152.29,152.93,153.6,154.24,155.09,155.92000000000002,157.67000000000002,13.36,13.1,12.93,12.74,12.57,12.43,12.3,12.18,11.97,N/A,N/A +2013,4,13,13,30,93810,92690,91600,83.61,0,5.08,7.05,7.9,8.6,9.19,9.700000000000001,10.33,10.92,12.040000000000001,148.59,150.13,151.19,152.18,152.99,153.70000000000002,154.64000000000001,155.48,156.76,13.72,13.39,13.21,13.030000000000001,12.84,12.66,12.48,12.3,11.950000000000001,N/A,N/A +2013,4,13,14,30,93810,92700,91610,81.10000000000001,0,5.91,7.74,8.39,8.870000000000001,9.23,9.53,9.81,10.06,10.57,151.20000000000002,151.77,152.11,152.4,152.69,152.97,153.29,153.6,154.34,14.530000000000001,14.1,13.9,13.700000000000001,13.5,13.32,13.120000000000001,12.94,12.58,N/A,N/A +2013,4,13,15,30,93810,92690,91610,80.39,0,5.69,7.3,7.79,8.11,8.34,8.53,8.68,8.82,9.1,146.25,146.66,146.94,147.16,147.37,147.57,147.8,148.03,148.58,14.88,14.450000000000001,14.24,14.040000000000001,13.83,13.64,13.44,13.25,12.86,N/A,N/A +2013,4,13,16,30,93780,92670,91590,75.92,0,5.84,7.48,7.99,8.31,8.540000000000001,8.71,8.85,8.97,9.19,149.33,149.5,149.58,149.63,149.68,149.73,149.79,149.85,150.02,15.700000000000001,15.22,15.01,14.790000000000001,14.59,14.4,14.19,14,13.620000000000001,N/A,N/A +2013,4,13,17,30,93690,92590,91520,50.83,0,7.34,9.3,9.89,10.25,10.5,10.69,10.83,10.950000000000001,11.120000000000001,153.32,153.42000000000002,153.46,153.47,153.48,153.48,153.48,153.48,153.47,19.66,18.84,18.53,18.26,18.01,17.79,17.56,17.35,16.94,N/A,N/A +2013,4,13,18,30,93640,92540,91480,39.45,0,6.66,8.4,8.950000000000001,9.28,9.52,9.700000000000001,9.83,9.94,10.1,148.29,148.55,148.71,148.81,148.89000000000001,148.94,149,149.05,149.14000000000001,21.36,20.54,20.23,19.96,19.71,19.48,19.25,19.04,18.62,N/A,N/A +2013,4,13,19,30,93610,92520,91460,38.75,0,6.68,8.36,8.870000000000001,9.17,9.38,9.53,9.64,9.73,9.86,150.12,150.29,150.37,150.4,150.43,150.45000000000002,150.46,150.47,150.5,22.35,21.53,21.21,20.93,20.68,20.45,20.22,20.01,19.580000000000002,N/A,N/A +2013,4,13,20,30,93590,92500,91440,53.97,0,7.6000000000000005,9.57,10.09,10.370000000000001,10.55,10.67,10.74,10.790000000000001,10.82,167.17000000000002,166.84,166.6,166.35,166.1,165.87,165.61,165.37,164.88,20.35,19.88,19.66,19.45,19.23,19.04,18.830000000000002,18.63,18.240000000000002,N/A,N/A +2013,4,13,21,30,93600,92500,91430,61.88,0,6.91,8.73,9.23,9.51,9.69,9.82,9.9,9.96,10.02,150.88,150.71,150.65,150.57,150.51,150.45000000000002,150.4,150.35,150.26,19.09,18.63,18.42,18.2,17.990000000000002,17.79,17.580000000000002,17.38,16.98,N/A,N/A +2013,4,13,22,30,93550,92450,91380,67.85,0,6.2700000000000005,7.97,8.45,8.73,8.9,9.03,9.11,9.17,9.24,136.27,136.61,136.79,136.9,136.99,137.06,137.14000000000001,137.21,137.34,18.16,17.69,17.48,17.27,17.06,16.86,16.66,16.46,16.07,N/A,N/A +2013,4,13,23,30,93520,92420,91350,63.21,0,5.08,6.5,6.92,7.18,7.36,7.49,7.59,7.67,7.79,140.26,140.83,141.12,141.33,141.51,141.67000000000002,141.83,141.98,142.29,17.95,17.51,17.31,17.1,16.89,16.7,16.490000000000002,16.3,15.91,N/A,N/A +2013,4,14,0,30,93510,92410,91340,62.56,0,5.21,6.69,7.12,7.390000000000001,7.59,7.73,7.84,7.930000000000001,8.07,152.87,152.92000000000002,152.9,152.85,152.8,152.75,152.70000000000002,152.65,152.57,18.22,17.88,17.69,17.490000000000002,17.3,17.11,16.91,16.72,16.330000000000002,N/A,N/A +2013,4,14,1,30,93500,92400,91330,64.13,0,2.68,3.5,3.84,4.19,4.4,4.55,4.79,5.01,5.38,187.49,184.84,183.15,181.63,180.69,180.04,178.92000000000002,177.89000000000001,176.29,18.05,17.77,17.62,17.45,17.27,17.11,16.95,16.8,16.46,N/A,N/A +2013,4,14,2,30,93510,92410,91340,74.03,0,1.53,3.2600000000000002,3.9,4.42,4.8500000000000005,5.23,5.5600000000000005,5.87,6.48,207.92000000000002,198.18,192.74,189.66,187.12,184.92000000000002,182.81,180.85,177.17000000000002,17.16,17.45,17.38,17.28,17.150000000000002,17.02,16.85,16.69,16.36,N/A,N/A +2013,4,14,3,30,93530,92420,91350,80.14,0,0.09,0.7000000000000001,1.5,2.13,2.7600000000000002,3.39,4,4.61,5.76,191.74,191.97,192.26,187.76,183.16,178.51,175.02,171.82,167.67000000000002,15.89,16.41,16.51,16.580000000000002,16.6,16.61,16.55,16.490000000000002,16.3,N/A,N/A +2013,4,14,4,30,93460,92350,91290,80.8,0,2.37,4.68,5.5,6.2700000000000005,6.99,7.66,8.32,8.94,10.1,139.43,143.35,145.77,147.8,149.49,150.98,152.09,153.03,154.20000000000002,15.69,16.21,16.3,16.4,16.46,16.52,16.54,16.54,16.45,N/A,N/A +2013,4,14,5,30,93450,92350,91280,81.99,0,1.22,3.38,4.61,5.7,6.63,7.47,8.18,8.84,9.950000000000001,132.36,144.07,150.74,152.53,153.38,153.79,153.95000000000002,154.12,154.59,15.25,15.860000000000001,15.98,16.09,16.18,16.26,16.3,16.330000000000002,16.32,N/A,N/A +2013,4,14,6,30,93440,92330,91260,82.64,0,1.29,3.68,4.98,5.89,6.640000000000001,7.29,7.94,8.55,9.69,149.91,152.71,153.89000000000001,152.8,151.89000000000001,151.08,151.11,151.35,153.39000000000001,14.870000000000001,15.49,15.540000000000001,15.57,15.57,15.56,15.540000000000001,15.51,15.49,N/A,N/A +2013,4,14,7,30,93440,92330,91260,85.8,0,2.36,5.0200000000000005,6.18,7.23,8.120000000000001,8.91,9.61,10.26,11.35,147.17000000000002,153.48,157.26,158.99,160.08,160.83,161.43,161.99,163.18,14.71,15.31,15.31,15.3,15.280000000000001,15.26,15.23,15.200000000000001,15.14,N/A,N/A +2013,4,14,8,30,93400,92290,91210,91.65,0,1.81,4.36,5.67,6.88,7.98,9,10.03,11.01,12.93,132.97,143.57,149.78,152.34,154.12,155.49,156.59,157.61,159.36,13.8,14.35,14.38,14.4,14.4,14.4,14.4,14.39,14.39,N/A,N/A +2013,4,14,9,30,93380,92270,91190,93.48,0,2.9,5.37,6.37,7.28,8.1,8.84,9.57,10.26,11.56,146.33,151.1,153.98,155.73,156.99,157.99,158.93,159.85,162.03,13.83,14.18,14.18,14.15,14.11,14.07,14.02,13.99,13.94,N/A,N/A +2013,4,14,10,30,93380,92260,91180,95.03,0,3.0700000000000003,5.48,6.42,7.2700000000000005,8,8.66,9.290000000000001,9.88,10.97,149.79,154.69,157.62,159.63,161.27,162.67000000000002,164.04,165.34,168.1,13.32,13.6,13.59,13.56,13.51,13.46,13.41,13.38,13.39,N/A,N/A +2013,4,14,11,30,93390,92280,91190,95.41,0,3.99,6.2,7.0600000000000005,7.79,8.41,8.94,9.450000000000001,9.92,10.8,163.09,164.92000000000002,166.06,166.97,167.75,168.44,169.1,169.69,170.84,13.18,13.17,13.08,12.96,12.84,12.73,12.63,12.55,12.43,N/A,N/A +2013,4,14,12,30,93430,92320,91230,92.65,0,2.43,3.48,3.88,4.24,4.57,4.87,5.25,5.62,6.41,170.88,176.93,180.35,182.31,183.48,184.26,184.78,185.32,187.11,13.370000000000001,13.1,12.9,12.66,12.41,12.18,11.91,11.69,11.49,N/A,N/A +2013,4,14,13,30,93430,92320,91230,93.25,0,2.96,3.62,3.81,3.92,4.07,4.24,4.43,4.61,4.98,164.22,164.26,164.23,164.25,164.74,165.39000000000001,167.95000000000002,171.29,183.46,12.93,12.57,12.38,12.16,11.950000000000001,11.75,11.58,11.48,11.71,N/A,N/A +2013,4,14,14,30,93450,92340,91250,88.92,0,2.0100000000000002,2.44,2.58,2.64,2.66,2.66,2.74,2.82,3.1,188.31,188.36,188.4,188.66,189.22,189.84,190.88,192.04,197.18,13.63,13.19,12.99,12.8,12.61,12.43,12.24,12.07,11.790000000000001,N/A,N/A +2013,4,14,15,30,93440,92330,91260,73.48,0,1.25,1.58,1.71,1.8,1.87,1.92,1.99,2.06,2.4,180.52,176.6,174.64000000000001,173.53,173.32,173.53,174.71,176.36,184.41,16.51,16.07,15.860000000000001,15.68,15.5,15.33,15.14,14.96,14.57,N/A,N/A +2013,4,14,16,30,93390,92310,91260,44.1,0,1.86,2.2800000000000002,2.43,2.5100000000000002,2.58,2.62,2.66,2.69,2.74,185.47,189.25,191.39000000000001,193.25,194.89000000000001,196.36,197.79,199.08,201.68,22.54,22,21.75,21.51,21.3,21.11,20.91,20.73,20.35,N/A,N/A +2013,4,14,17,30,93360,92290,91250,24.29,0,2.83,3.43,3.65,3.77,3.86,3.93,3.99,4.04,4.13,258.01,260.14,261.3,262.33,263.21,264,264.75,265.44,266.72,26.490000000000002,25.88,25.6,25.330000000000002,25.11,24.89,24.68,24.48,24.080000000000002,N/A,N/A +2013,4,14,18,30,93300,92240,91210,12.65,0,6.47,8.01,8.55,8.86,9.09,9.26,9.39,9.49,9.65,275.17,276.01,276.51,276.8,277.02,277.19,277.32,277.42,277.57,29.12,28.35,28.05,27.77,27.52,27.28,27.060000000000002,26.84,26.42,N/A,N/A +2013,4,14,19,30,93270,92210,91180,11.46,0,6.29,7.7700000000000005,8.28,8.56,8.76,8.92,9.040000000000001,9.15,9.3,271.6,271.96,272.21,272.36,272.47,272.57,272.64,272.7,272.79,29.79,29.02,28.72,28.44,28.2,27.97,27.75,27.53,27.11,N/A,N/A +2013,4,14,20,30,93190,92140,91110,11.27,0,6.48,8.03,8.540000000000001,8.82,9.03,9.19,9.31,9.4,9.55,266.57,266.86,267,267.09000000000003,267.16,267.21,267.25,267.28000000000003,267.32,30.46,29.69,29.41,29.14,28.900000000000002,28.67,28.44,28.23,27.810000000000002,N/A,N/A +2013,4,14,21,30,93120,92070,91050,11.31,0,5.43,6.72,7.140000000000001,7.36,7.53,7.66,7.75,7.83,7.95,269.84000000000003,269.61,269.42,269.23,269.05,268.89,268.72,268.56,268.23,30.96,30.26,29.990000000000002,29.740000000000002,29.51,29.28,29.060000000000002,28.86,28.44,N/A,N/A +2013,4,14,22,30,93080,92030,91010,10.11,0,6.4,7.94,8.43,8.65,8.81,8.91,8.98,9.040000000000001,9.120000000000001,266.86,265.98,265.56,265.2,264.9,264.62,264.37,264.13,263.7,31.12,30.5,30.27,30.03,29.810000000000002,29.6,29.39,29.19,28.79,N/A,N/A +2013,4,14,23,30,93060,92010,91000,10.11,0,5.8,7.23,7.67,7.97,8.19,8.35,8.47,8.58,8.74,265.42,264.72,264.04,263.46,262.99,262.6,262.26,261.97,261.48,31.2,30.75,30.55,30.330000000000002,30.12,29.92,29.71,29.52,29.12,N/A,N/A +2013,4,15,0,30,93070,92020,91000,11.36,0,4.1,6.390000000000001,7.34,8.040000000000001,8.57,8.94,9.200000000000001,9.38,9.6,274.62,274.83,274.72,273.82,272.93,271.99,271.06,270.18,268.48,30,30.1,30.07,29.96,29.84,29.7,29.53,29.37,29.02,N/A,N/A +2013,4,15,1,30,93090,92030,91010,15.92,0,2.9,5.5,6.48,7.88,8.97,9.700000000000001,10.08,10.27,10.4,232.07,247.33,257.83,264.23,268.52,270.34000000000003,271.3,271.78000000000003,271.72,26.71,28.3,28.650000000000002,29.07,29.330000000000002,29.44,29.39,29.27,28.900000000000002,N/A,N/A +2013,4,15,2,30,93130,92060,91040,16.990000000000002,0,2.85,4.84,5.34,6.15,6.96,7.8100000000000005,8.58,9.290000000000001,10.120000000000001,217.37,236.91,248.58,257.11,262.58,265.67,267.1,267.92,267.88,24.57,25.95,26.27,26.71,27.14,27.59,27.96,28.28,28.46,N/A,N/A +2013,4,15,3,30,93160,92090,91060,18.79,0,0.58,1.79,2.88,4.2,5.43,6.47,7.43,8.35,9.77,256.21,261.26,265.88,267.67,268.92,269.45,269.59000000000003,269.56,268.54,23.09,24.5,24.82,25.37,25.82,26.21,26.51,26.76,27.25,N/A,N/A +2013,4,15,4,30,93170,92100,91060,20.240000000000002,0,1.06,1.18,1.16,1.54,2.07,2.79,3.5300000000000002,4.32,5.65,53.17,1.53,334.36,301.48,281.04,269.96,264.53000000000003,260.78000000000003,257.87,22.45,24.650000000000002,25.150000000000002,25.26,25.34,25.400000000000002,25.52,25.650000000000002,26.13,N/A,N/A +2013,4,15,5,30,93190,92110,91070,21.91,0,0.09,0.05,0.05,0.16,0.34,0.59,0.9,1.3,2.07,53.09,179.25,205.13,201.42000000000002,209.26,236.26,249.18,257.74,260.26,21.150000000000002,22.72,23.05,23.41,24.12,25.04,25.66,26.150000000000002,26.46,N/A,N/A +2013,4,15,6,30,93220,92140,91100,21.240000000000002,0,3.1,6.09,7.03,7.71,8.1,8.3,8.2,8.040000000000001,7.33,182.04,184.03,184.82,184.88,185.03,185.24,185.51,185.76,185.99,22.38,24.400000000000002,24.810000000000002,25.16,25.39,25.55,25.66,25.75,25.830000000000002,N/A,N/A +2013,4,15,7,30,93240,92170,91130,23.18,0,1.47,2.4,2.64,3.1,3.6,4.14,4.62,5.08,5.78,204.15,206.36,206.42000000000002,203.69,200.9,197.99,195.85,194.01,192,22.8,24.85,25.19,25.38,25.490000000000002,25.55,25.6,25.64,25.64,N/A,N/A +2013,4,15,8,30,93260,92180,91140,26.93,0,2.57,3.87,3.86,3.75,3.65,3.5500000000000003,3.46,3.39,3.31,148.25,149.22,150.69,153.96,156.68,159.04,160.5,161.62,163.88,20.67,22.91,23.54,23.990000000000002,24.28,24.490000000000002,24.560000000000002,24.59,24.36,N/A,N/A +2013,4,15,9,30,93280,92200,91150,41.27,0,1.6600000000000001,2.5500000000000003,2.56,2.52,2.5300000000000002,2.56,2.68,2.83,3.3000000000000003,145.3,145.42000000000002,147.56,153.3,159.59,166.20000000000002,172.63,178.67000000000002,187.67000000000002,20.67,22.51,22.82,22.97,23.02,23,23,23,22.93,N/A,N/A +2013,4,15,10,30,93330,92230,91180,17.14,0,3.59,5.14,5.03,4.34,3.7600000000000002,3.2800000000000002,2.8000000000000003,2.48,2.58,299.86,294.22,288.78000000000003,281.32,275.6,271.17,260.17,249.82,223.38,17.12,18.36,18.75,18.830000000000002,18.84,18.830000000000002,19.18,19.6,21.09,N/A,N/A +2013,4,15,11,30,93380,92280,91230,29.830000000000002,0,0.66,0.31,0.27,0.54,0.68,0.68,0.78,0.89,1.1400000000000001,181.19,316.36,337.74,331.45,320.49,309.58,302.96,297.16,288.64,16.330000000000002,18.22,18.91,19.56,20,20.32,20.71,21.04,21.41,N/A,N/A +2013,4,15,12,30,93420,92310,91260,34.13,0,0.52,0.81,1.08,1.98,2.91,3.8200000000000003,4.63,5.41,6.58,186.68,266.28000000000003,299.79,309.96,314.65000000000003,315.43,315.56,315.62,315.78000000000003,15.42,17.25,17.89,18.57,19.16,19.69,20.19,20.62,21.22,N/A,N/A +2013,4,15,13,30,93460,92360,91300,28.79,0,0.66,0.96,1.23,1.7,2.17,2.64,3.12,3.61,4.5600000000000005,102.25,67.2,45.4,27.71,13.85,2.27,355.14,348.90000000000003,341.45,16.43,17.67,18.5,19.29,19.94,20.490000000000002,20.7,20.82,20.75,N/A,N/A +2013,4,15,14,30,93500,92410,91360,23.39,0,1.16,1.73,2.08,2.48,2.92,3.38,3.83,4.2700000000000005,5.08,336.92,341.76,344.90000000000003,347.17,347.68,347,345.7,344.3,341.06,21.66,21.34,21.21,21.1,21,20.93,20.84,20.75,20.48,N/A,N/A +2013,4,15,15,30,93500,92410,91360,20.18,0,2.0100000000000002,2.45,2.61,2.7,2.7800000000000002,2.84,2.91,2.97,3.09,299.37,299.95,300.29,300.55,300.8,301.06,301.3,301.53000000000003,302,23.39,22.87,22.63,22.41,22.2,22.01,21.8,21.62,21.23,N/A,N/A +2013,4,15,16,30,93490,92420,91380,17.84,0,3.4,4.21,4.49,4.66,4.79,4.88,4.97,5.04,5.15,305.04,305.48,305.71,305.87,305.98,306.08,306.17,306.24,306.36,26.09,25.48,25.21,24.96,24.740000000000002,24.53,24.32,24.13,23.73,N/A,N/A +2013,4,15,17,30,93480,92410,91370,14.69,0,4.04,4.91,5.18,5.32,5.41,5.48,5.53,5.57,5.63,300.81,301.35,301.68,301.90000000000003,302.08,302.24,302.37,302.48,302.69,27.7,27.02,26.73,26.48,26.240000000000002,26.02,25.810000000000002,25.61,25.2,N/A,N/A +2013,4,15,18,30,93450,92390,91350,13.790000000000001,0,3.23,3.95,4.18,4.32,4.43,4.5,4.57,4.62,4.71,294.90000000000003,294.16,293.74,293.32,292.94,292.57,292.2,291.86,291.17,29.07,28.42,28.13,27.86,27.63,27.400000000000002,27.18,26.98,26.560000000000002,N/A,N/A +2013,4,15,19,30,93420,92360,91330,11.85,0,3.7800000000000002,4.6000000000000005,4.8500000000000005,5,5.1000000000000005,5.18,5.24,5.29,5.37,268.95,268.92,268.93,268.91,268.88,268.84000000000003,268.79,268.74,268.63,30.310000000000002,29.62,29.32,29.05,28.810000000000002,28.59,28.37,28.16,27.740000000000002,N/A,N/A +2013,4,15,20,30,93380,92330,91300,11.05,0,3.0300000000000002,3.56,3.72,3.8000000000000003,3.85,3.9,3.93,3.96,4.01,285.64,282.29,280.1,278.25,276.68,275.25,273.93,272.71,270.46,31.1,30.47,30.19,29.92,29.69,29.46,29.240000000000002,29.04,28.62,N/A,N/A +2013,4,15,21,30,93310,92260,91240,11.22,0,4.04,4.92,5.19,5.34,5.45,5.53,5.59,5.65,5.73,224.12,223.83,223.72,223.66,223.62,223.6,223.59,223.58,223.58,32.01,31.34,31.07,30.82,30.59,30.37,30.150000000000002,29.94,29.53,N/A,N/A +2013,4,15,22,30,93280,92230,91210,10.24,0,5.12,6.33,6.7,6.890000000000001,7.03,7.12,7.19,7.24,7.3100000000000005,225.17000000000002,224.77,224.56,224.42000000000002,224.32,224.24,224.16,224.09,223.99,32.13,31.51,31.27,31.03,30.810000000000002,30.59,30.38,30.18,29.77,N/A,N/A +2013,4,15,23,30,93270,92230,91210,10.25,0,4.13,5.19,5.54,5.72,5.8500000000000005,5.94,6.01,6.05,6.12,219.34,219.31,219.29,219.31,219.32,219.34,219.37,219.39000000000001,219.46,32.12,31.68,31.48,31.26,31.05,30.85,30.64,30.45,30.05,N/A,N/A +2013,4,16,0,30,93270,92220,91200,14.8,0,1.7,3.21,3.65,4.03,4.34,4.6000000000000005,4.82,5.01,5.3100000000000005,196,198.68,200.63,201.69,202.39000000000001,202.73000000000002,202.89000000000001,202.95000000000002,202.85,31.310000000000002,31.64,31.560000000000002,31.41,31.25,31.080000000000002,30.89,30.71,30.330000000000002,N/A,N/A +2013,4,16,1,30,93270,92220,91200,12.620000000000001,0,5.1000000000000005,7.78,8.49,8.8,8.99,9.07,9.11,9.13,9.15,167.34,168.56,169.36,170.02,170.49,170.8,171.13,171.45000000000002,172.38,29.72,30.55,30.740000000000002,30.650000000000002,30.54,30.38,30.2,30.02,29.650000000000002,N/A,N/A +2013,4,16,2,30,93330,92270,91250,14.83,0,4.98,7.72,8.5,8.88,9.22,9.53,9.76,9.93,10.16,180.38,179.35,178.75,178.47,178.51,178.85,179.84,181.03,183.15,28.59,29.830000000000002,30.17,30.02,29.91,29.830000000000002,29.73,29.63,29.37,N/A,N/A +2013,4,16,3,30,93380,92310,91290,20.580000000000002,0,2.54,4.8,5.61,6.7,7.63,8.43,8.9,9.23,9.42,214.68,213.94,210.99,202.43,196.33,192.20000000000002,190.59,189.96,191.37,25.72,27.13,27.45,27.84,28.18,28.5,28.69,28.830000000000002,28.78,N/A,N/A +2013,4,16,4,30,93390,92320,91290,25.73,0,0.63,1.31,1.69,2.37,3.0700000000000003,3.79,4.51,5.25,6.5600000000000005,299.7,249.38,220.69,207.12,197.58,191.85,188.36,185.59,182.93,25.45,26.490000000000002,26.61,26.7,26.78,26.85,26.94,27.03,27.19,N/A,N/A +2013,4,16,5,30,93410,92340,91310,28.71,0,0.71,0.81,0.85,1.3,1.8900000000000001,2.65,3.43,4.25,5.78,73.36,95.89,111.22,139.86,157.18,163.17000000000002,165.97,167.73,168.94,23.67,25.21,25.59,25.740000000000002,25.810000000000002,25.82,25.830000000000002,25.830000000000002,25.810000000000002,N/A,N/A +2013,4,16,6,30,93430,92360,91320,46.76,0,1.72,3.85,4.82,5.79,6.68,7.53,8.34,9.11,10.47,141.21,148.4,153.32,156.02,158.06,159.56,160.67000000000002,161.61,162.74,23.900000000000002,25.04,25.22,25.37,25.490000000000002,25.6,25.69,25.76,25.87,N/A,N/A +2013,4,16,7,30,93450,92380,91340,53.92,0,3.29,5.97,6.91,7.84,8.69,9.51,10.42,11.34,13.34,144.78,149.44,152.3,154.02,155.14000000000001,155.82,156.16,156.38,156.32,23.2,23.96,24.080000000000002,24.13,24.14,24.11,24.04,23.96,23.740000000000002,N/A,N/A +2013,4,16,8,30,93490,92400,91350,67.84,0,2.73,5.42,6.4,7.34,8.23,9.1,10.02,10.92,12.83,126.2,133.75,138.27,140.99,143.13,144.87,146.41,147.86,150.47,20.71,21.41,21.45,21.44,21.400000000000002,21.34,21.25,21.150000000000002,20.98,N/A,N/A +2013,4,16,9,30,93490,92400,91350,82.83,0,2.81,5.57,6.67,7.73,8.67,9.540000000000001,10.38,11.18,12.74,127.57000000000001,136.38,141.93,144.93,147.13,148.75,150.1,151.32,153.64000000000001,19.76,20.37,20.400000000000002,20.41,20.400000000000002,20.37,20.34,20.3,20.26,N/A,N/A +2013,4,16,10,30,93520,92430,91370,90.16,0,1.9000000000000001,3.68,4.38,5.2700000000000005,6.13,6.99,7.8500000000000005,8.69,10.27,89.95,109.37,121.91,129.67000000000002,135.39000000000001,139.61,142.75,145.52,149.56,18.330000000000002,18.990000000000002,19.05,19.09,19.1,19.1,19.080000000000002,19.07,19.02,N/A,N/A +2013,4,16,11,30,93550,92460,91390,91.51,0,1.36,3.39,4.54,5.69,6.71,7.61,8.43,9.200000000000001,10.57,92.53,115.27,130.17000000000002,135.42000000000002,139.12,141.68,143.72,145.57,148.58,17.740000000000002,18.32,18.330000000000002,18.32,18.29,18.26,18.22,18.18,18.1,N/A,N/A +2013,4,16,12,30,93630,92530,91470,92.05,0,0.79,0.85,0.9400000000000001,1.57,2.23,2.89,3.56,4.25,5.61,285.38,205.76,178.79,170.05,165.53,164.83,164.54,164.34,164.20000000000002,17.44,18.02,18,17.89,17.78,17.67,17.56,17.45,17.26,N/A,N/A +2013,4,16,13,30,93660,92560,91490,83.83,0,0.85,1.22,1.56,2.17,2.67,3.06,3.5300000000000002,4.0200000000000005,5.12,204.22,201.15,197.9,192.27,188.21,185.4,183.18,181.09,177.69,18.37,18.09,18,17.93,17.85,17.77,17.62,17.48,17.21,N/A,N/A +2013,4,16,14,30,93680,92590,91530,69.05,0,2.88,3.62,3.87,4.0200000000000005,4.13,4.21,4.28,4.34,4.44,193.91,191.53,190.23,189.27,188.46,187.75,187.08,186.46,185.25,20.5,19.990000000000002,19.77,19.55,19.35,19.16,18.96,18.77,18.39,N/A,N/A +2013,4,16,15,30,93680,92590,91540,62.92,0,2.61,3.18,3.35,3.44,3.5,3.54,3.56,3.58,3.61,184.85,183.93,183.37,182.89000000000001,182.47,182.08,181.68,181.31,180.52,21.86,21.27,21.02,20.79,20.580000000000002,20.38,20.17,19.990000000000002,19.6,N/A,N/A +2013,4,16,16,30,93660,92580,91530,54.75,0,2.69,3.29,3.48,3.5700000000000003,3.64,3.68,3.72,3.74,3.77,178.63,177.99,177.65,177.4,177.19,177.01,176.82,176.65,176.32,23.78,23.16,22.88,22.64,22.42,22.21,22,21.81,21.42,N/A,N/A +2013,4,16,17,30,93620,92550,91510,47.75,0,3.0500000000000003,3.71,3.92,4.0200000000000005,4.09,4.13,4.16,4.18,4.21,173.49,173.39000000000001,173.38,173.37,173.37,173.38,173.38,173.39000000000001,173.41,25.87,25.22,24.93,24.67,24.44,24.23,24.02,23.82,23.43,N/A,N/A +2013,4,16,18,30,93580,92510,91480,40.87,0,3.23,3.95,4.17,4.3,4.39,4.45,4.5,4.53,4.57,170.89000000000001,170.58,170.38,170.18,170.01,169.85,169.69,169.55,169.25,28.04,27.37,27.07,26.8,26.560000000000002,26.34,26.12,25.92,25.51,N/A,N/A +2013,4,16,19,30,93520,92470,91440,36.19,0,4.0600000000000005,4.97,5.26,5.43,5.54,5.61,5.66,5.7,5.75,169.19,169.07,168.97,168.88,168.8,168.73,168.66,168.6,168.49,29.88,29.150000000000002,28.84,28.560000000000002,28.32,28.09,27.87,27.66,27.25,N/A,N/A +2013,4,16,20,30,93470,92420,91400,33.09,0,4.8,5.9,6.25,6.43,6.5600000000000005,6.65,6.71,6.75,6.8100000000000005,163.31,163.5,163.65,163.76,163.84,163.93,164,164.07,164.20000000000002,30.970000000000002,30.21,29.900000000000002,29.63,29.38,29.150000000000002,28.93,28.72,28.3,N/A,N/A +2013,4,16,21,30,93420,92370,91360,30.77,0,5.3500000000000005,6.640000000000001,7.0600000000000005,7.2700000000000005,7.42,7.5200000000000005,7.59,7.65,7.72,160.89000000000001,161.08,161.17000000000002,161.21,161.22,161.23,161.23,161.23,161.21,31.8,31.05,30.76,30.5,30.26,30.03,29.810000000000002,29.61,29.2,N/A,N/A +2013,4,16,22,30,93380,92330,91320,29.1,0,6.5600000000000005,8.19,8.69,8.94,9.120000000000001,9.23,9.32,9.38,9.46,162.69,162.61,162.54,162.47,162.39000000000001,162.33,162.26,162.20000000000002,162.08,32.21,31.52,31.26,31,30.77,30.55,30.34,30.13,29.72,N/A,N/A +2013,4,16,23,30,93360,92310,91290,35.85,0,7.2,9.120000000000001,9.69,10.01,10.23,10.38,10.5,10.59,10.700000000000001,149.11,149.41,149.64000000000001,149.84,150.02,150.20000000000002,150.37,150.55,150.9,31.41,30.85,30.62,30.38,30.17,29.96,29.75,29.55,29.150000000000002,N/A,N/A +2013,4,17,0,30,93400,92350,91320,39.21,0,7.3500000000000005,9.47,10.120000000000001,10.53,10.84,11.07,11.24,11.39,11.6,150.76,150.98,151.11,151.20000000000002,151.28,151.36,151.44,151.52,151.69,30.07,29.76,29.59,29.38,29.19,28.990000000000002,28.8,28.6,28.21,N/A,N/A +2013,4,17,1,30,93410,92350,91330,42.97,0,6.03,8.47,9.35,10.07,10.66,11.16,11.620000000000001,12.030000000000001,12.76,153.03,153.42000000000002,153.65,153.77,153.85,153.87,153.87,153.85,153.74,28.51,28.400000000000002,28.3,28.150000000000002,27.990000000000002,27.830000000000002,27.66,27.490000000000002,27.14,N/A,N/A +2013,4,17,2,30,93430,92370,91340,51.2,0,7.94,10.73,11.66,12.39,12.98,13.48,13.93,14.33,15.040000000000001,146.49,147.04,147.42000000000002,147.69,147.91,148.09,148.25,148.39000000000001,148.63,27.27,27.11,26.990000000000002,26.830000000000002,26.67,26.52,26.35,26.19,25.85,N/A,N/A +2013,4,17,3,30,93470,92400,91370,62.65,0,7.01,9.57,10.46,11.17,11.74,12.22,12.65,13.05,13.780000000000001,141.22,141.66,141.95000000000002,142.15,142.32,142.46,142.61,142.74,143.05,26.07,25.89,25.76,25.59,25.42,25.240000000000002,25.060000000000002,24.88,24.51,N/A,N/A +2013,4,17,4,30,93430,92360,91320,73.25,0,7.72,10.52,11.47,12.23,12.85,13.38,13.86,14.3,15.1,145.34,145.77,146.01,146.11,146.14000000000001,146.15,146.14000000000001,146.12,146.11,24.69,24.490000000000002,24.35,24.17,24,23.82,23.64,23.46,23.09,N/A,N/A +2013,4,17,5,30,93470,92390,91350,80.45,0,8.97,11.870000000000001,12.81,13.63,14.19,14.58,14.9,15.18,15.790000000000001,151.95000000000002,152.08,152.09,152.03,152.06,152.12,152.08,152.02,151.96,23.78,23.48,23.31,23.13,22.94,22.75,22.56,22.38,22,N/A,N/A +2013,4,17,6,30,93450,92380,91330,81.71000000000001,0,8.73,11.35,12.07,12.59,12.99,13.32,13.620000000000001,13.88,14.450000000000001,151.53,151.74,151.84,151.92000000000002,152.02,152.12,152.26,152.4,152.78,23.47,23.13,22.95,22.75,22.56,22.37,22.17,21.990000000000002,21.59,N/A,N/A +2013,4,17,7,30,93470,92390,91350,82.60000000000001,0,7.890000000000001,10.46,11.290000000000001,11.94,12.49,12.99,13.49,13.96,15.01,152.03,152.45000000000002,152.71,152.96,153.23,153.52,153.87,154.22,155.1,23.13,22.8,22.63,22.44,22.25,22.07,21.87,21.7,21.330000000000002,N/A,N/A +2013,4,17,8,30,93480,92400,91360,83.47,0,7.25,9.57,10.34,10.93,11.4,11.790000000000001,12.15,12.49,13.15,151.91,152.17000000000002,152.35,152.52,152.70000000000002,152.88,153.13,153.38,154.04,22.69,22.36,22.19,21.98,21.79,21.6,21.400000000000002,21.22,20.830000000000002,N/A,N/A +2013,4,17,9,30,93470,92390,91340,84.58,0,6.66,8.96,9.75,10.43,11.03,11.57,12.11,12.620000000000001,13.59,154.86,155.32,155.64000000000001,155.94,156.25,156.55,156.93,157.31,158.08,22.29,21.96,21.79,21.6,21.41,21.23,21.03,20.86,20.48,N/A,N/A +2013,4,17,10,30,93390,92310,91260,86.53,0,7.83,10.59,11.6,12.51,13.17,13.66,14.25,14.82,15.82,149.95000000000002,150.86,151.45000000000002,152.07,152.53,152.91,153.45000000000002,153.98,154.94,21.85,21.53,21.36,21.18,20.990000000000002,20.81,20.62,20.44,20.07,N/A,N/A +2013,4,17,11,30,93360,92280,91230,87.18,0,9.35,12.72,13.91,14.81,15.52,16.12,16.66,17.14,18.080000000000002,159,159.45000000000002,159.87,160.46,160.84,161.08,161.31,161.54,162.13,21.900000000000002,21.62,21.46,21.26,21.080000000000002,20.900000000000002,20.72,20.55,20.21,N/A,N/A +2013,4,17,12,30,93380,92300,91250,86.63,0,8.23,11.200000000000001,12.35,13.33,14.19,14.98,15.51,15.93,16.75,158.94,159.19,159.36,159.55,159.8,160.08,160.34,160.6,161.1,21.55,21.26,21.09,20.91,20.73,20.55,20.35,20.17,19.79,N/A,N/A +2013,4,17,13,30,93380,92300,91250,86.03,0,7.5200000000000005,9.950000000000001,10.790000000000001,11.49,12.09,12.64,13.21,13.74,14.81,163.82,163.95000000000002,164.04,164.18,164.36,164.56,164.83,165.09,165.66,21.63,21.29,21.11,20.92,20.740000000000002,20.56,20.37,20.2,19.84,N/A,N/A +2013,4,17,14,30,93440,92360,91310,84.33,0,5.12,6.7,7.26,7.66,7.99,8.26,8.53,8.77,9.31,172.37,172.13,172.01,171.91,171.84,171.78,171.73,171.69,171.61,22.150000000000002,21.76,21.57,21.36,21.17,20.98,20.78,20.6,20.23,N/A,N/A +2013,4,17,15,30,93440,92360,91320,76.52,0,6.75,8.540000000000001,9.14,9.5,9.75,9.92,10.040000000000001,10.14,10.27,171.05,171.29,171.45000000000002,171.6,171.74,171.86,172,172.12,172.38,23.37,22.79,22.55,22.31,22.1,21.89,21.68,21.490000000000002,21.09,N/A,N/A +2013,4,17,16,30,93400,92330,91290,69.02,0,6.91,8.6,9.09,9.32,9.47,9.56,9.6,9.620000000000001,9.6,166.53,167.09,167.43,167.71,167.98,168.22,168.49,168.73,169.28,24.68,23.91,23.62,23.35,23.12,22.900000000000002,22.69,22.490000000000002,22.080000000000002,N/A,N/A +2013,4,17,17,30,93340,92280,91250,54.77,0,6.15,7.61,8.14,8.41,8.61,8.75,8.85,8.93,9.040000000000001,176.67000000000002,177.12,177.39000000000001,177.63,177.84,178.05,178.24,178.43,178.8,27.59,26.78,26.47,26.18,25.94,25.7,25.48,25.27,24.86,N/A,N/A +2013,4,17,18,30,93260,92200,91180,46.53,0,7.16,8.76,9.32,9.6,9.8,9.92,10.01,10.07,10.15,185,185.42000000000002,185.74,186.09,186.41,186.72,187.04,187.34,187.95000000000002,29.22,28.37,28.04,27.75,27.5,27.26,27.04,26.82,26.41,N/A,N/A +2013,4,17,19,30,93180,92130,91110,33.01,0,6.67,8.22,8.76,9.06,9.290000000000001,9.44,9.56,9.67,9.81,191.65,192.8,193.46,194.04,194.54,195,195.43,195.82,196.57,31.39,30.57,30.27,29.98,29.73,29.490000000000002,29.27,29.05,28.63,N/A,N/A +2013,4,17,20,30,93080,92040,91030,18.39,0,6.94,8.620000000000001,9.22,9.56,9.81,9.99,10.14,10.26,10.46,200.58,201.84,202.59,203.18,203.67000000000002,204.1,204.49,204.85,205.48000000000002,33.14,32.36,32.07,31.79,31.55,31.32,31.09,30.88,30.46,N/A,N/A +2013,4,17,21,30,93000,91960,90950,5.87,0,8.31,10.46,11.200000000000001,11.64,11.97,12.21,12.41,12.57,12.81,219.52,219.73000000000002,219.87,220,220.11,220.21,220.3,220.38,220.52,34.32,33.6,33.33,33.06,32.82,32.59,32.37,32.15,31.73,N/A,N/A +2013,4,17,22,30,93000,91970,90950,5.44,0,8.57,10.61,11.4,11.81,12.120000000000001,12.32,12.49,12.61,12.8,224.05,223.75,223.51,223.34,223.20000000000002,223.08,222.97,222.87,222.69,34.29,33.68,33.44,33.18,32.97,32.74,32.53,32.32,31.91,N/A,N/A +2013,4,17,23,30,92930,91890,90870,35.27,0,7.88,9.78,10.3,10.57,10.75,10.85,10.9,10.93,10.93,177.17000000000002,177.28,177.54,177.89000000000001,178.18,178.47,178.75,179.02,179.57,31.5,30.93,30.7,30.45,30.240000000000002,30.03,29.82,29.62,29.23,N/A,N/A +2013,4,18,0,30,92930,91890,90870,45.78,0,6.5,8.24,8.78,9.120000000000001,9.38,9.59,9.77,9.94,10.25,167.27,166.79,166.59,166.31,166.03,165.68,165.32,164.95000000000002,164.22,30.17,29.85,29.67,29.46,29.27,29.07,28.87,28.68,28.3,N/A,N/A +2013,4,18,1,30,92910,91860,90840,50.6,0,7.84,10.57,11.46,12.11,12.63,13.07,13.43,13.74,14.22,162.20000000000002,162.92000000000002,163.43,163.93,164.36,164.74,165.05,165.31,165.73,28.86,28.78,28.69,28.54,28.400000000000002,28.25,28.080000000000002,27.92,27.57,N/A,N/A +2013,4,18,2,30,92940,91890,90870,54.480000000000004,0,6.33,8.620000000000001,9.42,10.03,10.540000000000001,11,11.41,11.8,12.49,163.98,164.07,164.11,164.16,164.21,164.27,164.34,164.42000000000002,164.6,27.79,27.71,27.62,27.490000000000002,27.36,27.21,27.05,26.89,26.54,N/A,N/A +2013,4,18,3,30,93020,91960,90940,56.67,0,6.34,8.620000000000001,9.59,10.39,11.08,11.72,12.32,12.9,14,156.74,157.42000000000002,157.94,158.68,159.37,160.16,160.95000000000002,161.76,163.28,26.91,26.93,26.900000000000002,26.810000000000002,26.73,26.63,26.53,26.43,26.23,N/A,N/A +2013,4,18,4,30,93000,91940,90920,54.51,0,6.91,9.61,10.77,11.790000000000001,12.67,13.48,14.200000000000001,14.84,15.89,171.67000000000002,171.51,171.22,170.91,170.68,170.52,170.44,170.41,170.33,26.810000000000002,26.95,26.990000000000002,26.990000000000002,26.990000000000002,26.96,26.900000000000002,26.82,26.61,N/A,N/A +2013,4,18,5,30,93230,92170,91130,25.59,0,5.53,8.21,10.040000000000001,11.23,12.200000000000001,12.870000000000001,13.4,13.8,14.34,309.34000000000003,308.73,308.67,308.49,308.40000000000003,308.52,308.64,308.79,308.91,27.25,27.080000000000002,26.89,26.68,26.51,26.330000000000002,26.16,25.990000000000002,25.650000000000002,N/A,N/A +2013,4,18,6,30,93250,92180,91130,17.06,0,6.51,9.18,10.26,11.17,11.9,12.5,13,13.43,14.05,318.95,319.18,319.33,319.42,319.48,319.5,319.48,319.45,319.2,24.12,24.19,24.14,24.05,23.94,23.830000000000002,23.7,23.580000000000002,23.3,N/A,N/A +2013,4,18,7,30,93420,92330,91280,20.01,0,4.93,7.57,8.72,9.75,10.67,11.52,12.39,13.22,14.89,326.88,325.04,323.49,321.85,320.37,318.96,317.98,317.15000000000003,316.97,22.38,22.61,22.63,22.6,22.54,22.45,22.32,22.18,21.82,N/A,N/A +2013,4,18,8,30,93480,92380,91320,22.59,0,5.87,9.16,10.85,12.450000000000001,13.83,15.06,16.14,17.12,18.73,327.19,326.86,326.61,326.34000000000003,326.09000000000003,325.87,325.63,325.40000000000003,324.8,20.29,20.36,20.31,20.21,20.11,19.990000000000002,19.85,19.72,19.41,N/A,N/A +2013,4,18,9,30,93520,92420,91360,22.22,0,3.7,6.73,8.26,9.72,11.05,12.290000000000001,13.4,14.42,16.12,323.12,322.34000000000003,321.79,321.26,320.88,320.61,320.44,320.29,320.1,18.55,18.77,18.76,18.72,18.66,18.59,18.5,18.400000000000002,18.17,N/A,N/A +2013,4,18,10,30,93600,92490,91420,24.79,0,1.68,2.75,3.5300000000000002,6.140000000000001,8.08,9.13,10.18,11.19,13.13,24.05,353.88,337.31,327.22,321.8,321.05,320.68,320.40000000000003,320.47,17.69,18.150000000000002,18,17.91,17.79,17.66,17.52,17.400000000000002,17.13,N/A,N/A +2013,4,18,11,30,93760,92650,91570,21.22,0,3.45,5.91,7.11,8.14,9.040000000000001,9.870000000000001,10.63,11.34,12.58,337.8,337.69,337.41,336.72,336.16,335.7,335.42,335.23,335.40000000000003,16.830000000000002,17.17,17.2,17.14,17.05,16.95,16.830000000000002,16.71,16.42,N/A,N/A +2013,4,18,12,30,93830,92710,91630,25.09,0,7.54,10.58,11.73,12.63,13.39,14.040000000000001,14.58,15.05,15.8,338.78000000000003,339.7,340.3,340.81,341.27,341.68,342.05,342.38,343,16.26,16.25,16.17,16.05,15.92,15.790000000000001,15.63,15.48,15.15,N/A,N/A +2013,4,18,13,30,93930,92810,91720,30.01,0,8.94,11.56,12.370000000000001,12.88,13.25,13.530000000000001,13.71,13.85,14.02,2.5300000000000002,3.19,3.39,3.5,3.5500000000000003,3.5700000000000003,3.56,3.5500000000000003,3.54,15.18,14.73,14.48,14.23,13.99,13.77,13.540000000000001,13.32,12.89,N/A,N/A +2013,4,18,14,30,94040,92910,91810,40.42,0,7.44,9.370000000000001,9.97,10.32,10.55,10.73,10.83,10.92,11.02,1.16,1.21,1.21,1.2,1.17,1.1400000000000001,1.09,1.05,0.9400000000000001,13.52,12.9,12.65,12.41,12.19,11.99,11.77,11.57,11.18,N/A,N/A +2013,4,18,15,30,94110,92970,91880,41.300000000000004,0,6.79,8.5,9.03,9.34,9.55,9.71,9.82,9.92,10.05,4.2700000000000005,3.5500000000000003,3.11,2.74,2.37,2.05,1.71,1.4000000000000001,0.76,13.39,12.66,12.370000000000001,12.120000000000001,11.89,11.67,11.450000000000001,11.25,10.84,N/A,N/A +2013,4,18,16,30,94150,93020,91920,32.730000000000004,0,6.83,8.46,8.99,9.31,9.53,9.69,9.81,9.91,10.06,1.31,0.14,359.43,358.87,358.39,357.97,357.56,357.17,356.43,14.5,13.72,13.41,13.14,12.89,12.67,12.44,12.23,11.82,N/A,N/A +2013,4,18,17,30,94190,93070,91980,23.91,0,7.2700000000000005,8.86,9.450000000000001,9.77,9.98,10.13,10.23,10.32,10.42,339.48,339.97,340.37,340.73,341.04,341.3,341.56,341.79,342.22,15.88,15.07,14.73,14.43,14.17,13.94,13.71,13.49,13.07,N/A,N/A +2013,4,18,18,30,94180,93060,91970,22.78,0,6.45,7.91,8.45,8.76,8.97,9.13,9.26,9.36,9.52,345.90000000000003,345.68,345.56,345.39,345.24,345.11,344.96,344.83,344.56,16.6,15.8,15.47,15.18,14.92,14.68,14.450000000000001,14.24,13.8,N/A,N/A +2013,4,18,19,30,94180,93060,91980,20.76,0,6.42,7.87,8.39,8.68,8.88,9.02,9.14,9.23,9.370000000000001,343.26,343.16,343.11,343.05,342.98,342.93,342.87,342.81,342.7,17.12,16.32,15.99,15.700000000000001,15.44,15.21,14.97,14.76,14.33,N/A,N/A +2013,4,18,20,30,94170,93060,91980,16.64,0,6.54,7.94,8.51,8.83,9.06,9.22,9.34,9.44,9.58,329.29,329.22,329.33,329.45,329.54,329.64,329.75,329.85,330.04,18.46,17.69,17.35,17.06,16.8,16.56,16.32,16.11,15.67,N/A,N/A +2013,4,18,21,30,94160,93050,91960,16.12,0,7.15,8.73,9.27,9.55,9.73,9.86,9.950000000000001,10.02,10.1,328.72,329.03000000000003,329.23,329.38,329.51,329.62,329.73,329.83,330.01,18.330000000000002,17.55,17.240000000000002,16.97,16.72,16.490000000000002,16.26,16.05,15.620000000000001,N/A,N/A +2013,4,18,22,30,94180,93070,91990,16.69,0,5.76,7.01,7.5,7.78,7.97,8.11,8.22,8.3,8.43,353.66,353.14,352.63,352.11,351.64,351.19,350.76,350.36,349.55,18.47,17.81,17.53,17.26,17.02,16.8,16.57,16.37,15.950000000000001,N/A,N/A +2013,4,18,23,30,94190,93070,91990,15.75,0,6.84,8.42,8.91,9.16,9.32,9.43,9.49,9.53,9.56,332.28000000000003,332.93,333.3,333.56,333.77,333.94,334.09000000000003,334.23,334.46,18.04,17.46,17.22,16.98,16.75,16.54,16.32,16.12,15.71,N/A,N/A +2013,4,19,0,30,94250,93130,92040,17.48,0,6.18,7.82,8.39,8.71,8.94,9.1,9.21,9.3,9.4,12.61,12.46,12.21,11.94,11.68,11.42,11.15,10.89,10.34,16.95,16.59,16.39,16.17,15.97,15.77,15.57,15.370000000000001,14.97,N/A,N/A +2013,4,19,1,30,94300,93180,92090,19.39,0,3.0700000000000003,5.36,6.36,7.12,7.73,8.23,8.63,8.98,9.51,24.97,24.51,24.21,23.96,23.59,23.18,22.650000000000002,22.14,21.16,15.290000000000001,15.52,15.5,15.42,15.3,15.18,15.01,14.85,14.49,N/A,N/A +2013,4,19,2,30,94420,93290,92200,19.900000000000002,0,3.5300000000000002,5.55,6.42,7.03,7.57,8.08,8.61,9.1,9.99,29.04,27.72,26.53,25.1,23.72,22.35,21.07,19.87,17.77,14.200000000000001,14.43,14.42,14.32,14.200000000000001,14.05,13.89,13.74,13.41,N/A,N/A +2013,4,19,3,30,94430,93300,92200,20.01,0,3.18,5.97,7.24,8.35,9.32,10.18,10.93,11.6,12.64,28,26.86,26.32,26.2,26.2,26.240000000000002,26.29,26.34,26.36,12.97,13.290000000000001,13.32,13.31,13.280000000000001,13.25,13.18,13.1,12.88,N/A,N/A +2013,4,19,4,30,94500,93370,92260,19.85,0,3.44,6.01,7.1000000000000005,8.01,8.77,9.450000000000001,10.07,10.65,11.71,36.02,34.71,34.08,33.980000000000004,34.08,34.230000000000004,34.31,34.33,33.99,12.05,12.36,12.38,12.36,12.32,12.280000000000001,12.22,12.16,12.02,N/A,N/A +2013,4,19,5,30,94620,93480,92370,24.75,0,1.55,3.63,5.0600000000000005,6.19,7.18,8.05,8.870000000000001,9.64,11.040000000000001,42.83,40.76,38.88,39.87,41.19,42.78,44.14,45.35,46.79,10.57,11.26,11.27,11.26,11.24,11.22,11.21,11.19,11.13,N/A,N/A +2013,4,19,6,30,94680,93530,92420,27.96,0,0.29,1.3900000000000001,2.68,3.95,5.12,6.2,7.23,8.25,10.1,165.38,101.06,40.7,41.43,43.12,45.35,47.92,50.300000000000004,53.57,9.91,10.39,10.23,10.08,9.93,9.8,9.68,9.58,9.4,N/A,N/A +2013,4,19,7,30,94770,93620,92500,35.85,0,1.46,3.04,3.84,4.67,5.46,6.21,7.03,7.84,9.370000000000001,112.18,91.97,77.95,67.74,63.26,61.35,62.17,62.97,64.4,8.88,9.5,9.4,9.21,9.040000000000001,8.9,8.76,8.620000000000001,8.36,N/A,N/A +2013,4,19,8,30,94860,93710,92590,39.550000000000004,0,1.1300000000000001,2.23,2.82,3.6,4.3500000000000005,5.08,5.87,6.66,8.19,80.9,65.09,59.09,66.36,69.19,69.9,70.31,70.76,71.76,7.88,8.620000000000001,8.58,8.39,8.24,8.11,7.97,7.84,7.62,N/A,N/A +2013,4,19,9,30,94910,93750,92630,40.67,0,0.03,0.51,1.35,1.62,2.15,2.84,3.61,4.43,6.140000000000001,252.95000000000002,294.47,17.02,34.09,42.77,49.2,52.620000000000005,55.59,58.96,7.25,7.88,7.8,7.640000000000001,7.5,7.38,7.26,7.17,7.01,N/A,N/A +2013,4,19,10,30,94970,93800,92680,43.45,0,0.38,0.96,1.35,1.82,2.32,2.84,3.4,3.98,5.24,284.92,355.46,32.62,45.33,50.93,54.68,57.19,59.33,62.300000000000004,6.43,7.43,7.49,7.38,7.23,7.09,6.94,6.8100000000000005,6.5600000000000005,N/A,N/A +2013,4,19,11,30,95050,93880,92750,46.09,0,0.6900000000000001,0.89,0.97,1.23,1.68,2.24,2.82,3.43,4.71,274.68,337.38,10.99,43.03,54.94,61,62.7,63.92,64.92,5.63,6.79,6.96,6.94,6.79,6.65,6.49,6.34,6.07,N/A,N/A +2013,4,19,12,30,95120,93950,92820,48.94,0,0.4,0.8,1.1400000000000001,1.8,2.42,3.02,3.59,4.16,5.33,267.83,10.3,53.97,63.14,67.71000000000001,70.69,72.02,73.14,74.76,4.91,6.07,6.22,6.18,6.07,5.95,5.8,5.65,5.3500000000000005,N/A,N/A +2013,4,19,13,30,95180,94010,92870,39.19,0,0.36,0.38,0.5700000000000001,1.21,1.67,2.0300000000000002,2.5,3.02,4.1,338.52,30.3,52.42,68.16,74.17,75.78,77.11,78.24,79.72,6.28,6.04,5.96,5.89,5.73,5.5600000000000005,5.38,5.22,4.94,N/A,N/A +2013,4,19,14,30,95200,94030,92900,29.23,0,2.69,3.24,3.41,3.49,3.5500000000000003,3.59,3.63,3.65,3.7,83.64,83.7,83.64,83.60000000000001,83.55,83.51,83.45,83.39,83.25,8.11,7.6000000000000005,7.37,7.16,6.95,6.76,6.5600000000000005,6.37,5.99,N/A,N/A +2013,4,19,15,30,95200,94040,92920,24.07,0,2.32,2.8000000000000003,2.93,3.0100000000000002,3.0500000000000003,3.09,3.11,3.13,3.16,96.85000000000001,96.45,96.17,95.91,95.63,95.36,95.08,94.8,94.22,9.78,9.22,8.96,8.74,8.52,8.32,8.11,7.92,7.53,N/A,N/A +2013,4,19,16,30,95180,94030,92910,20.17,0,1.76,2.08,2.18,2.23,2.2600000000000002,2.29,2.31,2.32,2.34,104.47,105.36,105.87,106.24000000000001,106.55,106.83,107.08,107.29,107.67,11.5,10.97,10.69,10.44,10.21,10.01,9.790000000000001,9.6,9.200000000000001,N/A,N/A +2013,4,19,17,30,95120,93980,92870,18.25,0,1.62,1.8900000000000001,1.95,1.98,2,2.0100000000000002,2.0100000000000002,2.02,2.0100000000000002,129.17000000000002,129.68,129.83,129.92000000000002,129.97,130.01,130.06,130.1,130.14000000000001,13.17,12.63,12.33,12.07,11.84,11.63,11.4,11.200000000000001,10.790000000000001,N/A,N/A +2013,4,19,18,30,95050,93910,92810,16.76,0,1.4000000000000001,1.61,1.6600000000000001,1.68,1.68,1.69,1.68,1.68,1.67,144.89000000000001,145.45000000000002,145.77,146.05,146.32,146.57,146.84,147.11,147.67000000000002,14.620000000000001,14.08,13.780000000000001,13.52,13.280000000000001,13.07,12.84,12.63,12.22,N/A,N/A +2013,4,19,19,30,94970,93840,92740,15.620000000000001,0,1.6400000000000001,1.9000000000000001,1.96,1.99,2.0100000000000002,2.0100000000000002,2.02,2.02,2.02,152.04,153.66,154.63,155.48,156.25,156.92000000000002,157.62,158.25,159.44,16,15.44,15.14,14.870000000000001,14.63,14.42,14.19,13.98,13.56,N/A,N/A +2013,4,19,20,30,94880,93760,92660,13.76,0,1.57,1.8,1.84,1.85,1.85,1.84,1.84,1.83,1.81,177.06,178.48,179.34,180.08,180.75,181.35,181.97,182.52,183.58,17.04,16.48,16.19,15.93,15.69,15.48,15.26,15.05,14.64,N/A,N/A +2013,4,19,21,30,94770,93650,92560,13.74,0,2.07,2.37,2.44,2.48,2.5100000000000002,2.5300000000000002,2.5500000000000003,2.56,2.58,161.12,165.62,168.25,170.33,172.03,173.47,174.68,175.74,177.54,17.95,17.37,17.09,16.830000000000002,16.59,16.37,16.15,15.94,15.52,N/A,N/A +2013,4,19,22,30,94690,93570,92490,13.09,0,2.18,2.5500000000000003,2.65,2.7,2.74,2.77,2.8000000000000003,2.82,2.85,197.57,193.95000000000002,191.66,189.64000000000001,188.1,186.86,185.9,185.1,183.99,18.36,17.8,17.54,17.29,17.06,16.85,16.63,16.43,16.02,N/A,N/A +2013,4,19,23,30,94640,93520,92430,14.14,0,3.02,3.61,3.79,3.9,3.98,4.04,4.08,4.12,4.17,190.79,188.06,186.59,185.6,184.87,184.3,183.87,183.52,183.08,18.48,17.96,17.72,17.490000000000002,17.27,17.07,16.85,16.66,16.25,N/A,N/A +2013,4,20,0,30,94600,93490,92400,13.25,0,3.66,4.49,4.68,4.73,4.75,4.76,4.76,4.76,4.74,173.01,173.76,174.24,174.67000000000002,175.12,175.53,176.02,176.47,177.41,18.06,17.72,17.54,17.34,17.14,16.95,16.75,16.56,16.17,N/A,N/A +2013,4,20,1,30,94580,93460,92380,17.54,0,2.9,4.98,5.44,5.63,5.69,5.69,5.67,5.66,5.65,182.14000000000001,186.47,187.4,185.47,182.25,178.74,176.04,174.06,173.19,16.27,16.990000000000002,17.07,17.03,16.91,16.77,16.580000000000002,16.4,16.02,N/A,N/A +2013,4,20,2,30,94590,93470,92380,17.830000000000002,0,3.9,6.08,6.69,7.04,7.29,7.49,7.55,7.57,7.45,159.83,161.33,162.48,163.76,165,166.16,167.08,167.85,168.93,15.68,16.34,16.51,16.54,16.5,16.45,16.330000000000002,16.21,15.9,N/A,N/A +2013,4,20,3,30,94570,93450,92360,17.35,0,4.46,6.99,7.8100000000000005,8.41,8.73,8.94,8.950000000000001,8.94,8.870000000000001,165.20000000000002,165.49,165.68,165.85,166.11,166.38,166.57,166.71,166.75,15.290000000000001,15.91,16.13,16.3,16.36,16.38,16.27,16.14,15.780000000000001,N/A,N/A +2013,4,20,4,30,94550,93430,92340,21.7,0,5.8100000000000005,8.67,9.76,10.65,11.35,11.93,12.33,12.65,12.91,166.4,166.67000000000002,166.89000000000001,167.13,167.53,167.95000000000002,168.46,168.92000000000002,169.56,14.83,15.200000000000001,15.33,15.43,15.47,15.48,15.42,15.34,15.08,N/A,N/A +2013,4,20,5,30,94540,93410,92310,24.11,0,5.21,8.07,9.23,10.25,11.11,11.870000000000001,12.52,13.07,13.83,161.49,162.58,163.14000000000001,163.4,163.62,163.82,164.24,164.70000000000002,165.9,14.02,14.36,14.450000000000001,14.530000000000001,14.59,14.63,14.64,14.64,14.57,N/A,N/A +2013,4,20,6,30,94530,93400,92300,25.07,0,6.07,9.06,10.26,11.3,12.200000000000001,13,13.700000000000001,14.32,15.26,159.84,161.1,161.84,162.38,162.83,163.23,163.64000000000001,164.02,164.71,13.700000000000001,13.93,13.98,14.02,14.040000000000001,14.07,14.08,14.07,14.02,N/A,N/A +2013,4,20,7,30,94530,93400,92300,29.04,0,6.34,9.43,10.73,11.89,12.91,13.82,14.67,15.43,16.73,158.6,160.88,162.28,163.38,164.27,165.03,165.66,166.23,167.13,12.84,12.98,12.99,12.98,12.97,12.96,12.950000000000001,12.94,12.92,N/A,N/A +2013,4,20,8,30,94500,93360,92260,30.810000000000002,0,5.73,8.82,10.16,11.38,12.450000000000001,13.42,14.3,15.120000000000001,16.56,152.38,156.19,158.45000000000002,160.14000000000001,161.45000000000002,162.56,163.45000000000002,164.26,165.61,12.05,12.27,12.31,12.35,12.370000000000001,12.39,12.42,12.44,12.49,N/A,N/A +2013,4,20,9,30,94470,93330,92230,32.69,0,5.7,8.81,10.18,11.42,12.51,13.5,14.42,15.27,16.8,149.72,153.73,156.11,157.87,159.20000000000002,160.31,161.20000000000002,162,163.34,11.35,11.57,11.61,11.64,11.65,11.65,11.65,11.65,11.65,N/A,N/A +2013,4,20,10,30,94440,93300,92190,32.01,0,5.6000000000000005,8.65,10,11.23,12.31,13.290000000000001,14.21,15.07,16.64,146.71,151.35,154.16,156.27,157.93,159.33,160.53,161.61,163.49,10.8,11.06,11.120000000000001,11.17,11.21,11.24,11.27,11.31,11.38,N/A,N/A +2013,4,20,11,30,94440,93290,92190,32.89,0,5.5200000000000005,8.55,9.88,11.09,12.17,13.17,14.13,15.030000000000001,16.740000000000002,146.54,150.59,153.07,154.99,156.57,157.95000000000002,159.22,160.41,162.65,10.22,10.49,10.56,10.620000000000001,10.67,10.71,10.75,10.8,10.89,N/A,N/A +2013,4,20,12,30,94450,93300,92190,34.51,0,5.2700000000000005,8.24,9.540000000000001,10.71,11.790000000000001,12.780000000000001,13.77,14.71,16.53,143.15,147.44,150.05,152.12,153.87,155.42000000000002,156.85,158.19,160.65,9.3,9.56,9.63,9.68,9.72,9.74,9.78,9.81,9.89,N/A,N/A +2013,4,20,13,30,94440,93300,92190,31.060000000000002,0,6.16,8.88,10.01,10.77,11.53,12.24,12.950000000000001,13.66,15.1,147.33,150.81,152.57,153.52,154.74,155.91,156.79,157.62,159.22,10.78,10.51,10.370000000000001,10.23,10.06,9.9,9.76,9.65,9.52,N/A,N/A +2013,4,20,14,30,94460,93320,92220,28.03,0,7.5600000000000005,9.540000000000001,10.16,10.55,10.81,11.01,11.16,11.3,11.58,155.69,156.13,156.37,156.58,156.79,156.98,157.21,157.44,158,12.61,12.05,11.82,11.59,11.38,11.19,10.98,10.8,10.43,N/A,N/A +2013,4,20,15,30,94430,93300,92200,25.46,0,8.98,11.31,12.05,12.5,12.790000000000001,13.01,13.16,13.290000000000001,13.5,159.81,160.09,160.25,160.38,160.5,160.61,160.73,160.84,161.1,14.75,14.05,13.77,13.52,13.290000000000001,13.08,12.870000000000001,12.67,12.280000000000001,N/A,N/A +2013,4,20,16,30,94390,93260,92170,22.48,0,9.67,12.13,12.9,13.35,13.65,13.86,14,14.11,14.26,161.03,161.09,161.14000000000001,161.19,161.23,161.27,161.32,161.37,161.47,16.55,15.75,15.450000000000001,15.18,14.93,14.71,14.48,14.27,13.870000000000001,N/A,N/A +2013,4,20,17,30,94330,93220,92130,20.23,0,9.790000000000001,12.21,13.02,13.47,13.780000000000001,13.99,14.14,14.26,14.4,162.92000000000002,163.15,163.29,163.4,163.51,163.6,163.70000000000002,163.78,163.95000000000002,18.31,17.46,17.14,16.85,16.59,16.36,16.13,15.92,15.49,N/A,N/A +2013,4,20,18,30,94260,93150,92070,19.240000000000002,0,9.09,11.24,11.99,12.4,12.68,12.870000000000001,13,13.1,13.22,167.1,167.15,167.18,167.21,167.23,167.26,167.28,167.29,167.34,19.45,18.580000000000002,18.25,17.95,17.69,17.45,17.22,17.01,16.580000000000002,N/A,N/A +2013,4,20,19,30,94200,93090,92020,18.79,0,8.71,10.75,11.48,11.86,12.120000000000001,12.3,12.43,12.530000000000001,12.65,164.65,164.73,164.82,164.89000000000001,164.95000000000002,165.01,165.07,165.13,165.25,20.43,19.580000000000002,19.240000000000002,18.94,18.68,18.45,18.21,18,17.57,N/A,N/A +2013,4,20,20,30,94080,92980,91910,17.86,0,8.540000000000001,10.63,11.31,11.69,11.94,12.120000000000001,12.25,12.35,12.49,163.16,163.34,163.46,163.56,163.66,163.76,163.84,163.93,164.1,21.650000000000002,20.81,20.490000000000002,20.2,19.95,19.72,19.48,19.27,18.84,N/A,N/A +2013,4,20,21,30,93990,92900,91840,17.37,0,8.5,10.57,11.26,11.64,11.89,12.07,12.200000000000001,12.3,12.43,160.62,160.84,161,161.12,161.23,161.34,161.44,161.53,161.72,22.54,21.76,21.46,21.18,20.93,20.71,20.48,20.27,19.84,N/A,N/A +2013,4,20,22,30,93930,92840,91780,17.64,0,8.4,10.46,11.18,11.58,11.85,12.040000000000001,12.18,12.290000000000001,12.44,161.81,161.97,162.08,162.17000000000002,162.25,162.33,162.4,162.48,162.64000000000001,22.91,22.22,21.95,21.69,21.45,21.23,21.01,20.8,20.38,N/A,N/A +2013,4,20,23,30,93880,92790,91730,18.5,0,8.66,10.870000000000001,11.6,12.02,12.32,12.530000000000001,12.68,12.8,12.97,162.04,162.17000000000002,162.20000000000002,162.22,162.23,162.25,162.26,162.27,162.3,22.82,22.29,22.06,21.82,21.6,21.39,21.18,20.98,20.56,N/A,N/A +2013,4,21,0,30,93820,92720,91660,20.69,0,8.6,11.18,12,12.56,12.99,13.32,13.6,13.83,14.21,153.76,154.04,154.24,154.39000000000001,154.53,154.65,154.77,154.88,155.1,21.73,21.46,21.29,21.1,20.900000000000002,20.72,20.52,20.330000000000002,19.94,N/A,N/A +2013,4,21,1,30,93770,92670,91610,23.97,0,8.33,11.42,12.58,13.5,14.26,14.89,15.44,15.93,16.78,148.02,148.70000000000002,149.17000000000002,149.49,149.75,149.97,150.18,150.37,150.78,20.06,20.01,19.92,19.79,19.650000000000002,19.51,19.36,19.21,18.88,N/A,N/A +2013,4,21,2,30,93850,92750,91670,30.080000000000002,0,4.22,6.8,7.98,9.13,10.1,10.97,11.76,12.49,13.82,121.24000000000001,129.02,134.3,137.66,140.12,141.98,143.4,144.64000000000001,146.56,18.240000000000002,18.36,18.32,18.23,18.13,18.02,17.89,17.76,17.48,N/A,N/A +2013,4,21,3,30,93890,92780,91710,34.93,0,3.9,7.17,8.77,10.200000000000001,11.42,12.49,13.41,14.24,15.73,147.73,151.12,153.13,154.03,154.62,155.02,155.29,155.53,155.97,17.57,17.740000000000002,17.68,17.59,17.48,17.38,17.25,17.13,16.87,N/A,N/A +2013,4,21,4,30,93990,92870,91800,43.050000000000004,0,2.43,4.64,5.5600000000000005,6.61,7.63,8.63,9.61,10.56,12.33,112.64,125.21000000000001,134.37,140.16,144.43,147.59,149.78,151.64000000000001,153.98,16.080000000000002,16.830000000000002,16.82,16.78,16.72,16.65,16.56,16.47,16.26,N/A,N/A +2013,4,21,5,30,93990,92880,91800,44.19,0,3.74,6.6000000000000005,7.87,9.02,10.05,10.98,11.870000000000001,12.71,14.32,135.73,140.96,144.45000000000002,146.85,148.8,150.47,151.83,153.06,154.99,15.43,15.790000000000001,15.82,15.8,15.76,15.700000000000001,15.620000000000001,15.55,15.370000000000001,N/A,N/A +2013,4,21,6,30,94010,92890,91810,46.28,0,5.0200000000000005,8.1,9.39,10.55,11.55,12.44,13.290000000000001,14.09,15.620000000000001,142.6,145.96,147.93,149.42000000000002,150.64000000000001,151.69,152.64000000000001,153.52,155.12,14.96,15.14,15.13,15.1,15.030000000000001,14.97,14.89,14.8,14.61,N/A,N/A +2013,4,21,7,30,94060,92930,91850,47.21,0,8.11,11.27,12.540000000000001,13.59,14.48,15.26,15.99,16.66,17.97,144.53,146.3,147.48,148.46,149.31,150.07,150.82,151.52,152.94,14.32,14.280000000000001,14.200000000000001,14.09,13.97,13.85,13.72,13.6,13.35,N/A,N/A +2013,4,21,8,30,94120,92990,91890,55.22,0,6.91,9.88,11.19,12.31,13.26,14.08,14.84,15.540000000000001,16.89,143.69,145.89000000000001,147.38,148.51,149.46,150.28,151.03,151.73,153.07,13,12.97,12.89,12.780000000000001,12.66,12.55,12.43,12.31,12.08,N/A,N/A +2013,4,21,9,30,94200,93070,91970,72.08,0,2.59,5.8,7.6000000000000005,9.03,10.24,11.26,12.18,13.030000000000001,14.61,140.34,146.66,151.36,152.82,153.84,154.55,155.18,155.77,156.96,11.24,11.8,11.74,11.66,11.56,11.47,11.36,11.26,11.06,N/A,N/A +2013,4,21,10,30,94210,93070,91970,75.91,0,4.96,7.3500000000000005,8.51,9.63,10.620000000000001,11.540000000000001,12.42,13.26,14.82,149.26,152.51,154.93,156.49,157.69,158.65,159.42000000000002,160.11,161.22,11.11,11.19,11.16,11.09,11.01,10.92,10.82,10.73,10.53,N/A,N/A +2013,4,21,11,30,94250,93110,92010,90.76,0,0.99,2.89,4.07,5.0200000000000005,5.94,6.83,7.72,8.6,10.290000000000001,147.8,146.89000000000001,146.47,147.12,148.52,150.15,151.76,153.24,155.68,9.8,10.200000000000001,10.15,10.07,9.98,9.89,9.78,9.67,9.44,N/A,N/A +2013,4,21,12,30,94320,93180,92080,83.75,0,3.13,5.2700000000000005,6.46,7.32,8.01,8.6,9.15,9.63,10.44,151.77,153.65,154.83,155.53,156.21,156.83,157.48,158.02,158.83,11.43,11.15,11,10.83,10.65,10.48,10.290000000000001,10.11,9.72,N/A,N/A +2013,4,21,13,30,94390,93250,92150,86.10000000000001,0,4.12,5.42,5.97,6.4,6.79,7.140000000000001,7.5,7.83,8.540000000000001,156.18,156.45000000000002,156.69,156.97,157.27,157.57,157.87,158.13,158.57,11.98,11.66,11.48,11.28,11.08,10.89,10.67,10.47,10.05,N/A,N/A +2013,4,21,14,30,94420,93290,92190,85.03,0,4.39,5.69,6.18,6.5200000000000005,6.8,7.04,7.29,7.54,8.13,155.6,156.20000000000002,156.55,156.93,157.35,157.75,158.25,158.74,159.82,12.51,12.11,11.91,11.71,11.5,11.31,11.11,10.92,10.51,N/A,N/A +2013,4,21,15,30,94460,93330,92230,79.36,0,5.11,6.41,6.88,7.16,7.3500000000000005,7.5,7.61,7.71,7.88,173.96,173.8,173.67000000000002,173.6,173.56,173.52,173.51,173.5,173.49,13.52,12.96,12.72,12.48,12.27,12.07,11.85,11.66,11.26,N/A,N/A +2013,4,21,16,30,94460,93340,92240,73.21000000000001,0,4.94,6.0600000000000005,6.44,6.63,6.74,6.82,6.8500000000000005,6.88,6.890000000000001,177.25,176.96,176.8,176.72,176.67000000000002,176.64000000000001,176.63,176.63,176.65,14.81,14.11,13.83,13.57,13.34,13.13,12.92,12.72,12.33,N/A,N/A +2013,4,21,17,30,94410,93300,92210,60.81,0,4.44,5.42,5.75,5.91,6,6.0600000000000005,6.09,6.11,6.11,172.16,172.05,171.99,171.95000000000002,171.92000000000002,171.91,171.9,171.9,171.92000000000002,17.46,16.75,16.44,16.17,15.93,15.72,15.5,15.31,14.91,N/A,N/A +2013,4,21,18,30,94370,93260,92190,48.72,0,4.07,4.95,5.24,5.39,5.48,5.55,5.58,5.61,5.63,168.05,168.08,168.12,168.14000000000001,168.16,168.18,168.21,168.23,168.28,20.11,19.41,19.1,18.830000000000002,18.580000000000002,18.37,18.150000000000002,17.95,17.54,N/A,N/A +2013,4,21,19,30,94310,93210,92150,39.730000000000004,0,4.03,4.91,5.2,5.34,5.44,5.5,5.53,5.55,5.5600000000000005,172.51,172.72,172.85,173,173.13,173.25,173.38,173.5,173.77,22.29,21.580000000000002,21.27,20.990000000000002,20.75,20.53,20.3,20.1,19.69,N/A,N/A +2013,4,21,20,30,94250,93160,92100,32.49,0,3.69,4.43,4.69,4.83,4.93,4.98,5.0200000000000005,5.05,5.08,178.88,178.65,178.49,178.37,178.29,178.23,178.19,178.17000000000002,178.15,23.96,23.3,22.98,22.71,22.46,22.240000000000002,22.02,21.81,21.400000000000002,N/A,N/A +2013,4,21,21,30,94190,93100,92050,25.32,0,3.19,3.8000000000000003,3.99,4.07,4.12,4.14,4.14,4.14,4.11,184.16,183.69,183.33,183.05,182.83,182.64000000000001,182.49,182.36,182.13,25.23,24.6,24.32,24.05,23.82,23.6,23.38,23.18,22.77,N/A,N/A +2013,4,21,22,30,94140,93060,92010,23.71,0,3.34,4,4.21,4.3,4.36,4.39,4.39,4.39,4.38,171.68,171.70000000000002,171.71,171.69,171.66,171.63,171.6,171.58,171.57,25.94,25.34,25.080000000000002,24.82,24.59,24.38,24.16,23.96,23.56,N/A,N/A +2013,4,21,23,30,94110,93030,91980,24.12,0,3.2800000000000002,3.98,4.17,4.25,4.3,4.32,4.33,4.33,4.3,167.32,167.72,168,168.22,168.41,168.59,168.76,168.91,169.23,26.03,25.51,25.28,25.05,24.84,24.64,24.43,24.23,23.830000000000002,N/A,N/A +2013,4,22,0,30,94120,93040,91990,25.76,0,4.07,5.15,5.46,5.63,5.74,5.82,5.87,5.91,5.96,152.85,153.65,154.15,154.54,154.85,155.12,155.36,155.58,155.99,25.330000000000002,25.03,24.86,24.650000000000002,24.46,24.27,24.07,23.88,23.48,N/A,N/A +2013,4,22,1,30,94130,93040,91990,35.660000000000004,0,3.44,5.55,6.21,6.7,7.04,7.29,7.46,7.59,7.78,151.87,154.15,155.79,157.14000000000001,158.08,158.69,158.92000000000002,159.01,158.62,22.85,23.38,23.5,23.53,23.5,23.43,23.3,23.17,22.830000000000002,N/A,N/A +2013,4,22,2,30,94150,93050,92000,40.1,0,4.49,6.84,7.72,8.44,9.06,9.61,10.1,10.56,11.31,139.62,141.26,142.44,143.58,144.75,145.99,147.18,148.28,149.88,21.69,21.95,22.01,22.04,22.05,22.06,22.03,22,21.830000000000002,N/A,N/A +2013,4,22,3,30,94160,93060,92000,47.84,0,5.89,8.64,9.69,10.58,11.32,11.950000000000001,12.49,12.97,13.620000000000001,146.56,148.15,149.05,149.63,150.07,150.41,150.75,151.07,151.76,20.93,21.06,21.06,21.05,21.02,20.990000000000002,20.93,20.88,20.72,N/A,N/A +2013,4,22,4,30,94180,93090,92020,53.24,0,5.86,8.61,9.73,10.700000000000001,11.52,12.23,12.86,13.43,14.34,149.09,150.86,151.98,152.69,153.24,153.66,154.12,154.54,155.68,20.27,20.36,20.35,20.32,20.28,20.240000000000002,20.2,20.16,20.06,N/A,N/A +2013,4,22,5,30,94190,93090,92020,59.46,0,6.04,8.81,9.950000000000001,10.94,11.790000000000001,12.56,13.280000000000001,13.94,15.18,147.35,149.18,150.27,150.93,151.39000000000001,151.70000000000002,151.97,152.21,152.88,19.240000000000002,19.28,19.23,19.17,19.1,19.04,18.97,18.900000000000002,18.78,N/A,N/A +2013,4,22,6,30,94200,93090,92020,65.43,0,6.96,9.77,10.85,11.77,12.59,13.34,14.06,14.72,16.01,152.65,153.53,154.04,154.33,154.51,154.62,154.69,154.76,155.06,18.31,18.28,18.22,18.13,18.05,17.97,17.89,17.82,17.68,N/A,N/A +2013,4,22,7,30,94220,93120,92040,70.55,0,6.73,9.53,10.64,11.6,12.450000000000001,13.22,13.98,14.69,16.1,149.35,150.43,151.13,151.64000000000001,152.05,152.39000000000001,152.69,152.97,153.56,17.47,17.45,17.400000000000002,17.32,17.25,17.17,17.1,17.03,16.9,N/A,N/A +2013,4,22,8,30,94240,93130,92050,77.61,0,5.83,8.55,9.69,10.67,11.53,12.3,13.040000000000001,13.74,15.08,141.32,143.07,144.21,145.07,145.82,146.48,147.1,147.68,148.82,16.28,16.240000000000002,16.15,16.04,15.93,15.83,15.700000000000001,15.59,15.370000000000001,N/A,N/A +2013,4,22,9,30,94230,93120,92030,86,0,6.07,8.86,10.02,11.01,11.85,12.58,13.27,13.9,15.09,141.88,144.21,145.64000000000001,146.74,147.66,148.47,149.22,149.92000000000002,151.26,15.48,15.39,15.3,15.18,15.06,14.94,14.81,14.700000000000001,14.47,N/A,N/A +2013,4,22,10,30,94230,93120,92030,92.11,0,7,9.82,10.91,11.84,12.61,13.27,13.870000000000001,14.43,15.450000000000001,146.70000000000002,147.98,148.83,149.6,150.29,150.9,151.51,152.06,153.09,15.15,15.06,14.950000000000001,14.82,14.68,14.55,14.39,14.25,13.96,N/A,N/A +2013,4,22,11,30,94250,93130,92050,88.06,0,7.16,9.620000000000001,10.57,11.370000000000001,12.07,12.69,13.36,13.97,14.89,153.23,154.20000000000002,154.84,155.42000000000002,155.97,156.49,157.06,157.56,158.20000000000002,15.83,15.530000000000001,15.35,15.16,14.950000000000001,14.74,14.530000000000001,14.33,13.93,N/A,N/A +2013,4,22,12,30,94270,93150,92070,89.12,0,5.87,7.8500000000000005,8.65,9.370000000000001,9.99,10.53,11.1,11.65,12.780000000000001,153.45000000000002,154.24,154.86,155.55,156.13,156.64000000000001,157.18,157.68,158.79,15.91,15.610000000000001,15.42,15.22,14.98,14.74,14.530000000000001,14.35,14.06,N/A,N/A +2013,4,22,13,30,94280,93160,92080,89.69,0,5.32,7.04,7.73,8.36,8.91,9.41,10,10.6,12.17,156.58,157.20000000000002,157.74,158.38,158.98,159.53,160.21,160.91,162.55,15.99,15.66,15.46,15.23,14.99,14.76,14.540000000000001,14.36,14.200000000000001,N/A,N/A +2013,4,22,14,30,94300,93180,92100,88.83,0,5.89,7.67,8.32,8.83,9.3,9.74,10.14,10.52,11.66,160.99,161.56,161.97,162.4,162.89000000000001,163.39000000000001,163.83,164.26,165.45000000000002,16.4,16.02,15.83,15.610000000000001,15.39,15.17,14.93,14.73,14.47,N/A,N/A +2013,4,22,15,30,94290,93180,92100,77.23,0,8.120000000000001,10.290000000000001,10.99,11.42,11.72,11.93,12.09,12.22,12.42,165.05,165.26,165.39000000000001,165.52,165.64000000000001,165.76,165.89000000000001,166,166.27,18.18,17.59,17.34,17.09,16.87,16.66,16.45,16.26,15.860000000000001,N/A,N/A +2013,4,22,16,30,94260,93160,92090,69.75,0,7.95,9.98,10.6,10.93,11.15,11.3,11.4,11.47,11.55,167.08,167.33,167.48,167.62,167.74,167.87,168,168.12,168.35,19.63,18.92,18.64,18.39,18.150000000000002,17.94,17.72,17.52,17.11,N/A,N/A +2013,4,22,17,30,94180,93090,92030,55.980000000000004,0,7.61,9.43,10,10.31,10.51,10.64,10.72,10.790000000000001,10.85,174.53,174.29,174.12,173.99,173.88,173.79,173.70000000000002,173.63,173.47,22.46,21.61,21.29,21,20.75,20.53,20.3,20.09,19.68,N/A,N/A +2013,4,22,18,30,94100,93020,91960,47.24,0,7.16,8.790000000000001,9.31,9.55,9.700000000000001,9.8,9.85,9.89,9.9,177.31,177.21,177.15,177.12,177.11,177.1,177.11,177.11,177.14000000000001,24.35,23.490000000000002,23.16,22.87,22.63,22.400000000000002,22.18,21.97,21.56,N/A,N/A +2013,4,22,19,30,94020,92940,91890,39.86,0,6.57,8.08,8.56,8.790000000000001,8.94,9.040000000000001,9.09,9.13,9.16,174.99,175.07,175.15,175.23,175.3,175.38,175.47,175.55,175.73,26.080000000000002,25.240000000000002,24.92,24.63,24.39,24.16,23.93,23.73,23.31,N/A,N/A +2013,4,22,20,30,93910,92840,91800,36.04,0,6.55,8.1,8.58,8.82,8.98,9.07,9.13,9.17,9.200000000000001,174.08,174.20000000000002,174.27,174.33,174.39000000000001,174.44,174.49,174.55,174.66,27.490000000000002,26.67,26.35,26.07,25.830000000000002,25.6,25.37,25.17,24.75,N/A,N/A +2013,4,22,21,30,93820,92750,91720,32.9,0,7.24,8.89,9.49,9.78,9.98,10.09,10.17,10.21,10.24,168.1,168.33,168.52,168.64000000000001,168.74,168.82,168.89000000000001,168.95000000000002,169.07,28.46,27.68,27.37,27.09,26.85,26.61,26.39,26.19,25.78,N/A,N/A +2013,4,22,22,30,93740,92680,91650,32.63,0,7.33,9.07,9.700000000000001,10.02,10.25,10.39,10.48,10.55,10.63,165.63,165.76,165.92000000000002,166.04,166.15,166.24,166.34,166.43,166.61,28.77,28.060000000000002,27.79,27.51,27.28,27.05,26.830000000000002,26.63,26.22,N/A,N/A +2013,4,22,23,30,93700,92630,91600,31.52,0,6.73,8.41,8.96,9.25,9.450000000000001,9.58,9.67,9.74,9.82,164.70000000000002,164.9,165.03,165.11,165.17000000000002,165.22,165.27,165.31,165.38,28.5,27.94,27.72,27.47,27.26,27.04,26.84,26.64,26.240000000000002,N/A,N/A +2013,4,23,0,30,93660,92590,91560,36.65,0,7.03,9.03,9.67,10.08,10.39,10.620000000000001,10.8,10.950000000000001,11.19,159.8,160.12,160.34,160.53,160.69,160.83,160.96,161.09,161.33,27.28,26.98,26.810000000000002,26.6,26.41,26.21,26.02,25.830000000000002,25.44,N/A,N/A +2013,4,23,1,30,93630,92560,91510,46.25,0,6.48,9.17,10.18,11,11.66,12.22,12.71,13.15,13.88,152.82,153.96,154.73,155.3,155.76,156.15,156.48,156.78,157.33,25.080000000000002,25.07,25,24.88,24.76,24.62,24.47,24.330000000000002,23.990000000000002,N/A,N/A +2013,4,23,2,30,93640,92560,91520,50.050000000000004,0,7.51,10.43,11.55,12.5,13.3,14,14.64,15.22,16.25,152.08,153.46,154.4,155.12,155.72,156.24,156.72,157.16,158,23.95,23.900000000000002,23.82,23.69,23.57,23.44,23.3,23.16,22.86,N/A,N/A +2013,4,23,3,30,93610,92530,91480,54.25,0,8.700000000000001,12.07,13.25,14.26,15.11,15.860000000000001,16.56,17.2,18.37,156.12,157.55,158.38,159.08,159.68,160.22,160.76,161.26,162.31,23.18,23.12,23.04,22.95,22.84,22.740000000000002,22.62,22.52,22.3,N/A,N/A +2013,4,23,4,30,93600,92510,91470,56.230000000000004,0,9.4,12.950000000000001,14.16,15.19,16.07,16.85,17.580000000000002,18.25,19.46,160.28,161.1,161.56,161.93,162.26,162.55,162.86,163.14000000000001,163.75,22.76,22.73,22.68,22.61,22.53,22.45,22.37,22.3,22.12,N/A,N/A +2013,4,23,5,30,93570,92490,91440,58.19,0,10.08,13.72,14.96,16,16.87,17.63,18.330000000000002,18.97,20.11,161.46,162.26,162.72,163.1,163.4,163.67000000000002,163.94,164.17000000000002,164.66,22.330000000000002,22.3,22.23,22.150000000000002,22.05,21.96,21.86,21.77,21.56,N/A,N/A +2013,4,23,6,30,93580,92490,91440,63.17,0,10.120000000000001,13.780000000000001,15.05,16.12,17.03,17.84,18.59,19.28,20.52,164.37,165.11,165.57,166,166.39000000000001,166.77,167.14000000000001,167.49,168.15,21.650000000000002,21.62,21.57,21.490000000000002,21.42,21.35,21.27,21.2,21.05,N/A,N/A +2013,4,23,7,30,93590,92500,91450,66.98,0,10.28,13.950000000000001,15.23,16.31,17.23,18.05,18.830000000000002,19.55,20.86,161.82,162.70000000000002,163.27,163.78,164.25,164.69,165.13,165.55,166.34,21.18,21.150000000000002,21.09,21.02,20.94,20.87,20.8,20.73,20.59,N/A,N/A +2013,4,23,8,30,93600,92510,91460,72.43,0,8.55,11.88,13.18,14.32,15.280000000000001,16.11,16.88,17.59,18.89,156.38,157.93,158.95000000000002,159.81,160.54,161.20000000000002,161.84,162.44,163.65,20.490000000000002,20.45,20.38,20.29,20.2,20.11,20.01,19.92,19.75,N/A,N/A +2013,4,23,9,30,93660,92560,91500,82.95,0,4.79,7.49,8.8,10.01,11.06,12,12.85,13.64,15.08,140.45000000000002,145.53,149.1,151.43,153.23,154.63,155.76,156.76,158.37,18.97,19,18.94,18.85,18.75,18.650000000000002,18.55,18.45,18.240000000000002,N/A,N/A +2013,4,23,10,30,93680,92580,91510,92.69,0,4.09,6.45,7.5,8.47,9.32,10.1,10.86,11.59,13,149.26,150.48,151.34,152.27,153.20000000000002,154.13,155.02,155.87,157.33,17.93,17.96,17.900000000000002,17.82,17.72,17.62,17.5,17.39,17.13,N/A,N/A +2013,4,23,11,30,93670,92570,91510,89.45,0,6.25,8.65,9.69,10.450000000000001,11.06,11.55,12.05,12.51,13.540000000000001,156.69,157.96,158.86,159.51,160.03,160.47,160.92000000000002,161.34,162.26,18.76,18.47,18.3,18.1,17.900000000000002,17.69,17.48,17.28,16.93,N/A,N/A +2013,4,23,12,30,93700,92610,91540,89.47,0,5.3,7.01,7.68,8.24,8.72,9.14,9.55,9.93,10.86,163.32,163.24,163.18,163.24,163.33,163.45000000000002,163.6,163.76,164.22,18.77,18.48,18.3,18.09,17.88,17.66,17.43,17.23,16.87,N/A,N/A +2013,4,23,13,30,93710,92610,91550,87.85000000000001,0,4.7700000000000005,6.25,6.8100000000000005,7.25,7.63,7.95,8.28,8.59,9.25,164.26,164.79,165.23,165.69,166.13,166.57,167.03,167.46,168.31,18.77,18.43,18.25,18.05,17.85,17.66,17.45,17.25,16.81,N/A,N/A +2013,4,23,14,30,93830,92730,91670,86.02,0,2.69,3.35,3.58,3.72,3.8200000000000003,3.91,3.98,4.05,4.18,199.77,197.84,196.82,195.91,195.1,194.33,193.58,192.9,191.42000000000002,18.96,18.580000000000002,18.39,18.18,17.990000000000002,17.79,17.59,17.400000000000002,17,N/A,N/A +2013,4,23,15,30,93800,92710,91640,77.25,0,5.96,7.32,7.75,7.97,8.09,8.17,8.2,8.23,8.23,152.20000000000002,152.32,152.41,152.36,152.26,152.14000000000001,151.97,151.82,151.46,19.830000000000002,19.12,18.85,18.6,18.38,18.18,17.97,17.78,17.400000000000002,N/A,N/A +2013,4,23,16,30,93880,92790,91730,69.19,0,3.5,4.25,4.49,4.6000000000000005,4.68,4.72,4.74,4.75,4.75,140.37,140.05,140.12,140.20000000000002,140.27,140.34,140.42000000000002,140.48,140.64000000000001,21.400000000000002,20.740000000000002,20.45,20.2,19.96,19.75,19.54,19.34,18.94,N/A,N/A +2013,4,23,17,30,93900,92820,91760,60.660000000000004,0,3.46,4.05,4.2,4.25,4.26,4.26,4.24,4.22,4.16,99.79,100.8,101.43,101.88,102.25,102.58,102.87,103.12,103.60000000000001,22.740000000000002,22.05,21.740000000000002,21.47,21.23,21,20.78,20.580000000000002,20.17,N/A,N/A +2013,4,23,18,30,93900,92820,91760,57.27,0,2,2.44,2.56,2.62,2.67,2.7,2.72,2.73,2.75,50.07,51.870000000000005,52.9,53.88,54.68,55.33,55.910000000000004,56.410000000000004,57.28,22.84,22.41,22.2,21.98,21.77,21.57,21.37,21.18,20.78,N/A,N/A +2013,4,23,19,30,94000,92890,91810,55.76,0,9.41,11.77,12.39,12.71,12.89,13.01,13.05,13.07,13.040000000000001,37.1,37.28,37.550000000000004,37.85,38.18,38.49,38.85,39.19,39.96,17.21,16.68,16.45,16.23,16.01,15.82,15.610000000000001,15.42,15.02,N/A,N/A +2013,4,23,20,30,93990,92880,91800,43.61,0,9.21,11.38,11.96,12.25,12.4,12.48,12.49,12.49,12.39,41.730000000000004,41.83,41.97,42.12,42.25,42.37,42.51,42.64,42.94,18.2,17.28,16.94,16.66,16.41,16.19,15.97,15.77,15.38,N/A,N/A +2013,4,23,21,30,94040,92920,91840,45.11,0,7.3500000000000005,9.120000000000001,9.64,9.91,10.07,10.17,10.21,10.24,10.21,36.67,37.09,37.4,37.71,38,38.27,38.57,38.85,39.46,17.1,16.26,15.94,15.67,15.43,15.22,15,14.8,14.4,N/A,N/A +2013,4,23,22,30,94070,92950,91860,45.6,0,6.67,8.290000000000001,8.73,8.96,9.1,9.19,9.22,9.24,9.21,34.99,35.050000000000004,35.19,35.33,35.44,35.53,35.64,35.730000000000004,35.93,15.73,15.05,14.780000000000001,14.540000000000001,14.31,14.11,13.89,13.69,13.290000000000001,N/A,N/A +2013,4,23,23,30,94120,92990,91890,46.95,0,6.53,8.09,8.55,8.78,8.91,8.99,9.02,9.040000000000001,9.01,34.62,34.82,34.95,35.09,35.230000000000004,35.36,35.5,35.64,35.94,13.96,13.3,13.040000000000001,12.8,12.57,12.370000000000001,12.16,11.96,11.57,N/A,N/A +2013,4,24,0,30,94150,93010,91910,48.1,0,5.8500000000000005,7.33,7.75,7.97,8.09,8.18,8.21,8.22,8.19,28.41,28.810000000000002,29.13,29.41,29.68,29.92,30.19,30.45,31.02,12.450000000000001,11.97,11.74,11.53,11.32,11.13,10.91,10.72,10.33,N/A,N/A +2013,4,24,1,30,94210,93070,91960,50.1,0,5.8,7.3,7.75,8.01,8.17,8.28,8.33,8.370000000000001,8.4,29.51,29.88,30.1,30.330000000000002,30.57,30.78,31.02,31.25,31.76,10.97,10.57,10.370000000000001,10.15,9.94,9.75,9.540000000000001,9.34,8.94,N/A,N/A +2013,4,24,2,30,94280,93130,92020,49.14,0,5.25,6.640000000000001,7.0600000000000005,7.3100000000000005,7.46,7.57,7.640000000000001,7.68,7.73,32.54,32.84,33.1,33.37,33.62,33.86,34.11,34.37,34.94,10.34,9.89,9.67,9.46,9.25,9.05,8.84,8.64,8.25,N/A,N/A +2013,4,24,3,30,94360,93210,92100,48.97,0,5.11,6.44,6.83,7.0600000000000005,7.2,7.3,7.36,7.4,7.45,39.72,39.77,39.88,40.050000000000004,40.25,40.45,40.68,40.93,41.52,9.83,9.39,9.18,8.97,8.76,8.56,8.36,8.16,7.7700000000000005,N/A,N/A +2013,4,24,4,30,94400,93250,92130,48.160000000000004,0,5.33,6.75,7.2,7.47,7.65,7.79,7.890000000000001,7.96,8.08,40.84,40.7,40.62,40.62,40.67,40.72,40.82,40.93,41.230000000000004,9.370000000000001,8.93,8.72,8.51,8.3,8.11,7.9,7.7,7.3100000000000005,N/A,N/A +2013,4,24,5,30,94510,93360,92230,50.49,0,5.29,6.73,7.13,7.38,7.55,7.68,7.7700000000000005,7.84,7.930000000000001,37.03,37.21,37.42,37.6,37.77,37.93,38.09,38.25,38.61,8.82,8.39,8.17,7.97,7.76,7.5600000000000005,7.3500000000000005,7.15,6.75,N/A,N/A +2013,4,24,6,30,94640,93480,92350,54.370000000000005,0,5.88,7.62,8.19,8.58,8.84,9.05,9.200000000000001,9.33,9.52,29.48,29.66,29.77,29.900000000000002,30.03,30.14,30.240000000000002,30.35,30.560000000000002,7.84,7.41,7.19,6.98,6.76,6.57,6.36,6.15,5.74,N/A,N/A +2013,4,24,7,30,94730,93570,92440,62.870000000000005,0,7.53,9.68,10.31,10.73,11.01,11.23,11.4,11.540000000000001,11.75,30.26,30.21,30.22,30.240000000000002,30.25,30.25,30.25,30.240000000000002,30.22,6.390000000000001,5.96,5.74,5.53,5.3100000000000005,5.11,4.9,4.69,4.29,N/A,N/A +2013,4,24,8,30,94880,93710,92570,65.25,0,5.3500000000000005,6.890000000000001,7.45,7.79,8.05,8.26,8.41,8.55,8.76,22.59,23.21,23.7,24.1,24.45,24.740000000000002,25.02,25.28,25.77,5.76,5.3500000000000005,5.14,4.94,4.73,4.54,4.33,4.14,3.75,N/A,N/A +2013,4,24,9,30,94890,93720,92590,67.03,1.8,4.8,6.13,6.58,6.8500000000000005,7.0600000000000005,7.22,7.3500000000000005,7.46,7.65,22.35,22.37,22.45,22.55,22.67,22.78,22.89,23,23.23,5.46,5.07,4.87,4.67,4.47,4.28,4.08,3.89,3.5100000000000002,N/A,N/A +2013,4,24,10,30,94930,93760,92620,64.05,0,4.72,6.03,6.43,6.68,6.86,7.01,7.12,7.21,7.36,23.14,23.06,23.06,23.09,23.150000000000002,23.21,23.29,23.36,23.51,5.5600000000000005,5.16,4.96,4.76,4.55,4.36,4.16,3.96,3.5700000000000003,N/A,N/A +2013,4,24,11,30,94970,93800,92660,65.91,1.8,5.12,6.5200000000000005,6.96,7.24,7.42,7.57,7.68,7.7700000000000005,7.91,15.39,15.49,15.6,15.700000000000001,15.790000000000001,15.860000000000001,15.92,15.97,16.07,5.09,4.71,4.51,4.32,4.11,3.92,3.72,3.5300000000000002,3.14,N/A,N/A +2013,4,24,12,30,95050,93880,92740,61.800000000000004,0,4.48,5.68,6.09,6.3500000000000005,6.5200000000000005,6.66,6.75,6.83,6.94,18.81,18.89,18.98,19.080000000000002,19.17,19.240000000000002,19.31,19.37,19.51,5.01,4.62,4.42,4.22,4.01,3.81,3.61,3.41,3.02,N/A,N/A +2013,4,24,13,30,95080,93900,92760,58.300000000000004,0,4.54,5.7700000000000005,6.140000000000001,6.37,6.5200000000000005,6.640000000000001,6.72,6.79,6.9,21.09,20.73,20.55,20.41,20.29,20.17,20.06,19.95,19.740000000000002,4.91,4.5200000000000005,4.32,4.12,3.91,3.72,3.5100000000000002,3.3200000000000003,2.93,N/A,N/A +2013,4,24,14,30,95160,93980,92830,58.24,0,4.62,5.78,6.12,6.3100000000000005,6.44,6.53,6.6000000000000005,6.640000000000001,6.72,16.82,17.02,17.16,17.31,17.490000000000002,17.66,17.830000000000002,18.01,18.38,4.57,4.15,3.94,3.74,3.54,3.34,3.14,2.95,2.56,N/A,N/A +2013,4,24,15,30,95180,94010,92860,57.01,0,3.61,4.51,4.79,4.94,5.04,5.12,5.17,5.22,5.2700000000000005,18.23,17.8,17.6,17.47,17.36,17.29,17.21,17.14,17.04,4.71,4.28,4.0600000000000005,3.86,3.65,3.46,3.25,3.06,2.67,N/A,N/A +2013,4,24,16,30,95170,93990,92850,54.92,0,3.43,4.28,4.54,4.7,4.8,4.87,4.93,4.97,5.04,13.46,13.26,13.120000000000001,13.05,13,12.950000000000001,12.92,12.89,12.84,5.18,4.7,4.48,4.2700000000000005,4.0600000000000005,3.86,3.67,3.47,3.08,N/A,N/A +2013,4,24,17,30,95150,93980,92840,53.89,0,3.12,3.85,4.08,4.22,4.3100000000000005,4.38,4.43,4.46,4.5200000000000005,3.58,4.08,4.39,4.65,4.88,5.09,5.28,5.47,5.84,5.82,5.3500000000000005,5.13,4.91,4.7,4.51,4.3,4.11,3.72,N/A,N/A +2013,4,24,18,30,95120,93950,92810,50.5,0,3.56,4.3500000000000005,4.59,4.71,4.79,4.84,4.88,4.91,4.94,9.48,9.370000000000001,9.34,9.3,9.25,9.21,9.15,9.09,8.99,6.8,6.26,6.0200000000000005,5.8100000000000005,5.59,5.4,5.19,5,4.61,N/A,N/A +2013,4,24,19,30,95060,93890,92760,47.59,0,2.93,3.5700000000000003,3.75,3.85,3.92,3.96,3.99,4.01,4.04,11.55,10.450000000000001,9.77,9.23,8.72,8.26,7.8100000000000005,7.37,6.54,7.84,7.32,7.08,6.87,6.66,6.46,6.26,6.0600000000000005,5.67,N/A,N/A +2013,4,24,20,30,95010,93850,92720,43.58,0,2.63,3.16,3.31,3.38,3.42,3.45,3.46,3.48,3.49,24.18,22.23,21.03,20.05,19.11,18.27,17.400000000000002,16.57,14.9,9.1,8.59,8.36,8.14,7.930000000000001,7.74,7.53,7.34,6.95,N/A,N/A +2013,4,24,21,30,94930,93770,92650,41.160000000000004,0,1.81,2.18,2.29,2.36,2.4,2.44,2.46,2.49,2.5300000000000002,26.47,24.47,23.26,22.34,21.54,20.85,20.19,19.59,18.490000000000002,10.25,9.77,9.540000000000001,9.33,9.120000000000001,8.92,8.72,8.53,8.14,N/A,N/A +2013,4,24,22,30,94850,93710,92590,39.58,0,1.11,1.32,1.3900000000000001,1.43,1.47,1.5,1.54,1.57,1.6300000000000001,42.79,41.57,40.95,40.54,40.28,40.09,39.99,39.93,40,11.11,10.64,10.41,10.200000000000001,9.99,9.8,9.6,9.41,9.03,N/A,N/A +2013,4,24,23,30,94810,93670,92560,38.25,0,0.99,1.35,1.52,1.6500000000000001,1.76,1.86,1.95,2.0300000000000002,2.18,99.5,94.98,92.42,90.65,89.2,87.95,86.88,85.91,84.2,12.14,11.76,11.56,11.36,11.16,10.97,10.77,10.58,10.19,N/A,N/A +2013,4,25,0,30,94800,93650,92540,38.52,0,2.29,2.8000000000000003,2.93,2.99,3.02,3.0300000000000002,3.02,3.02,2.99,115.74000000000001,115.27,114.84,114.39,113.86,113.37,112.78,112.2,110.87,12.1,11.74,11.56,11.36,11.16,10.97,10.77,10.58,10.19,N/A,N/A +2013,4,25,1,30,94800,93650,92540,38.93,0,1.85,2.27,2.37,2.41,2.43,2.43,2.43,2.42,2.42,125.64,124.91,124.22,123.39,122.39,121.44,120.2,118.94,115.85000000000001,11.950000000000001,11.620000000000001,11.44,11.25,11.05,10.870000000000001,10.67,10.48,10.1,N/A,N/A +2013,4,25,2,30,94810,93670,92560,38.11,0,1.87,2.31,2.42,2.47,2.49,2.49,2.49,2.5,2.58,130.93,130.77,130.55,130.23,129.79,129.36,128.79,128.18,126.17,12.18,11.86,11.68,11.49,11.290000000000001,11.11,10.91,10.72,10.35,N/A,N/A +2013,4,25,3,30,94860,93720,92610,38.65,0,1.68,2.0100000000000002,2.07,2.09,2.15,2.22,2.4,2.58,2.97,137.69,138.76,139.37,139.84,140.33,140.76,140.11,138.92000000000002,134.16,12.24,11.93,11.75,11.57,11.38,11.200000000000001,11.05,10.96,10.91,N/A,N/A +2013,4,25,4,30,94860,93720,92610,39.22,0,1.94,2.34,2.47,2.59,2.87,3.19,3.5100000000000002,3.8000000000000003,4.28,128.31,130.2,131.72,133.44,134.97,136.3,135.2,133.85,130.48,12.280000000000001,11.97,11.8,11.620000000000001,11.46,11.33,11.32,11.32,11.33,N/A,N/A +2013,4,25,5,30,94880,93730,92630,39.88,0,1.92,2.37,2.61,2.96,3.42,3.89,4.22,4.5200000000000005,5.0600000000000005,119.46000000000001,122.22,124.59,127.52,127.92,127.52,127.71000000000001,127.84,127.97,12.33,12.040000000000001,11.88,11.73,11.66,11.620000000000001,11.59,11.540000000000001,11.38,N/A,N/A +2013,4,25,6,30,94900,93750,92650,40.92,0,1.83,2.87,3.39,3.7800000000000002,4.2,4.6000000000000005,4.97,5.32,5.94,117.65,120.72,122.31,123.13000000000001,122.94,122.43,121.67,121.02,120.28,12.52,12.26,12.120000000000001,11.98,11.86,11.76,11.64,11.52,11.24,N/A,N/A +2013,4,25,7,30,94940,93800,92690,43.97,0,2.68,4.07,4.66,5.04,5.45,5.8500000000000005,6.23,6.5600000000000005,7.17,127.13000000000001,128.52,128.75,128.01,127.63000000000001,127.38000000000001,126.98,126.56,125.58,12.790000000000001,12.51,12.35,12.17,12,11.83,11.66,11.49,11.16,N/A,N/A +2013,4,25,8,30,94940,93800,92690,48.14,0,4.29,5.71,6.22,6.6000000000000005,6.890000000000001,7.140000000000001,7.3500000000000005,7.54,7.88,130.6,130.31,130.08,129.76,129.4,129.05,128.66,128.29,127.49000000000001,12.41,12.1,11.92,11.73,11.53,11.35,11.16,10.97,10.59,N/A,N/A +2013,4,25,9,30,94960,93820,92710,53.1,0,3.59,4.73,5.13,5.42,5.64,5.82,5.97,6.1000000000000005,6.34,128.68,128.52,128.29,127.99000000000001,127.67,127.36,127.03,126.72,126.11,11.88,11.56,11.370000000000001,11.18,10.98,10.8,10.59,10.41,10.02,N/A,N/A +2013,4,25,10,30,94980,93830,92720,55.03,0,3.6,4.69,5.05,5.29,5.46,5.59,5.69,5.7700000000000005,5.9,123.87,124.54,124.84,124.97,124.99000000000001,124.97,124.86,124.75,124.45,11.68,11.36,11.18,10.98,10.78,10.6,10.39,10.200000000000001,9.8,N/A,N/A +2013,4,25,11,30,94990,93840,92730,59.19,0,2.81,3.7600000000000002,4.17,4.54,4.82,5.0600000000000005,5.22,5.37,5.65,134.5,133.66,132.93,132.1,131.26,130.47,129.54,128.6,126.57000000000001,11.22,10.93,10.78,10.620000000000001,10.450000000000001,10.290000000000001,10.1,9.94,9.59,N/A,N/A +2013,4,25,12,30,95010,93860,92740,63.15,0,2.34,3.25,3.71,4.16,4.5600000000000005,4.93,5.23,5.51,5.97,130.16,128.55,127.63000000000001,126.85000000000001,126.3,125.84,125.27,124.71000000000001,123.46000000000001,11.03,10.790000000000001,10.65,10.49,10.34,10.21,10.040000000000001,9.89,9.55,N/A,N/A +2013,4,25,13,30,95020,93870,92750,62.95,0,2.99,3.9,4.24,4.48,4.68,4.84,4.99,5.14,5.41,122.22,122.51,122.62,122.57000000000001,122.42,122.25,122.01,121.76,121.17,11.19,10.85,10.66,10.48,10.290000000000001,10.11,9.92,9.74,9.38,N/A,N/A +2013,4,25,14,30,95040,93890,92780,58.59,0,4.2,5.2700000000000005,5.6000000000000005,5.78,5.9,5.99,6.05,6.09,6.15,126.38000000000001,126.75,126.9,126.93,126.93,126.92,126.9,126.87,126.79,12.11,11.57,11.33,11.11,10.89,10.69,10.48,10.28,9.89,N/A,N/A +2013,4,25,15,30,95010,93870,92760,54.59,0,4.34,5.39,5.71,5.89,6.01,6.1000000000000005,6.15,6.2,6.25,125.31,126.18,126.67,126.99000000000001,127.28,127.51,127.73,127.93,128.3,12.98,12.35,12.08,11.84,11.620000000000001,11.41,11.200000000000001,11,10.6,N/A,N/A +2013,4,25,16,30,95000,93860,92760,52.54,0,4.91,6.0600000000000005,6.41,6.59,6.7,6.79,6.83,6.87,6.9,131.86,132.63,133.05,133.37,133.63,133.86,134.08,134.28,134.69,14.030000000000001,13.3,13.01,12.75,12.5,12.290000000000001,12.07,11.870000000000001,11.46,N/A,N/A +2013,4,25,17,30,94960,93820,92720,49.370000000000005,0,4.99,6.1000000000000005,6.41,6.57,6.67,6.73,6.75,6.7700000000000005,6.7700000000000005,121.49000000000001,122.45,123.07000000000001,123.57000000000001,124,124.38000000000001,124.76,125.11,125.81,14.97,14.22,13.91,13.65,13.4,13.19,12.96,12.76,12.34,N/A,N/A +2013,4,25,18,30,94910,93780,92680,46.52,0,5.05,6.23,6.59,6.78,6.9,6.98,7.03,7.08,7.12,131.75,132.18,132.39000000000001,132.54,132.65,132.75,132.84,132.92000000000002,133.09,15.540000000000001,14.780000000000001,14.450000000000001,14.18,13.93,13.72,13.49,13.280000000000001,12.870000000000001,N/A,N/A +2013,4,25,19,30,94850,93720,92630,45.4,0,5.61,6.92,7.32,7.53,7.66,7.76,7.82,7.86,7.91,136.94,137.25,137.39000000000001,137.47,137.51,137.55,137.58,137.61,137.66,16.78,15.98,15.65,15.370000000000001,15.13,14.9,14.68,14.47,14.06,N/A,N/A +2013,4,25,20,30,94770,93640,92550,45.75,0,6.0200000000000005,7.43,7.86,8.08,8.21,8.3,8.35,8.39,8.42,137.09,137.51,137.76,137.92000000000002,138.07,138.20000000000002,138.32,138.44,138.67000000000002,17.48,16.68,16.36,16.09,15.84,15.620000000000001,15.39,15.19,14.780000000000001,N/A,N/A +2013,4,25,21,30,94700,93580,92500,48.89,0,6.3500000000000005,7.86,8.33,8.56,8.71,8.82,8.88,8.93,8.98,140.73,140.94,141.05,141.11,141.16,141.21,141.26,141.3,141.41,17.57,16.77,16.46,16.19,15.950000000000001,15.73,15.51,15.31,14.9,N/A,N/A +2013,4,25,22,30,94650,93530,92440,52.82,0,6.54,8.23,8.74,9.03,9.23,9.370000000000001,9.46,9.540000000000001,9.63,135.32,135.97,136.32,136.59,136.82,137.02,137.22,137.39000000000001,137.74,17.03,16.37,16.1,15.85,15.620000000000001,15.41,15.19,14.99,14.58,N/A,N/A +2013,4,25,23,30,94630,93500,92410,59.95,0,7.04,8.91,9.450000000000001,9.76,9.96,10.1,10.18,10.24,10.3,138.25,138.62,138.81,138.92000000000002,139.01,139.09,139.16,139.22,139.35,15.65,15.14,14.91,14.68,14.47,14.27,14.05,13.86,13.450000000000001,N/A,N/A +2013,4,26,0,30,94570,93440,92350,63.84,0,6.86,8.71,9.24,9.56,9.75,9.9,10,10.08,10.200000000000001,143.32,143.5,143.55,143.55,143.54,143.51,143.49,143.46,143.43,14.58,14.14,13.93,13.71,13.5,13.31,13.1,12.91,12.52,N/A,N/A +2013,4,26,1,30,94550,93420,92320,68.48,0,5.92,7.76,8.35,8.77,9.09,9.36,9.59,9.81,10.24,148.82,148.67000000000002,148.53,148.4,148.34,148.31,148.33,148.34,148.33,13.46,13.16,12.98,12.790000000000001,12.59,12.41,12.200000000000001,12.01,11.63,N/A,N/A +2013,4,26,2,30,94520,93390,92290,69.09,0,5.63,7.65,8.370000000000001,8.94,9.41,9.83,10.25,10.65,11.53,151.70000000000002,151.73,151.76,151.81,151.86,151.91,151.84,151.79,151.75,13.200000000000001,12.950000000000001,12.790000000000001,12.61,12.43,12.27,12.09,11.93,11.620000000000001,N/A,N/A +2013,4,26,3,30,94530,93400,92300,69.81,0,4.78,6.83,7.66,8.34,8.93,9.44,9.93,10.39,11.31,147.70000000000002,148.52,149.05,149.47,149.88,150.26,150.59,150.87,151.31,12.97,12.77,12.620000000000001,12.46,12.290000000000001,12.13,11.950000000000001,11.790000000000001,11.48,N/A,N/A +2013,4,26,4,30,94520,93390,92290,70.84,0,5.3500000000000005,7.11,7.84,8.47,9.08,9.65,10.21,10.65,11.28,153.3,153.09,152.95000000000002,152.88,152.78,152.67000000000002,152.68,152.74,153.12,13.07,12.76,12.59,12.43,12.26,12.1,11.92,11.76,11.43,N/A,N/A +2013,4,26,5,30,94520,93380,92280,72,0,4.69,6.29,6.95,7.53,8.11,8.66,9.24,9.68,10.24,154.46,154.14000000000001,153.85,153.6,153.42000000000002,153.27,153.49,153.68,153.98,12.9,12.59,12.43,12.25,12.08,11.92,11.73,11.55,11.200000000000001,N/A,N/A +2013,4,26,6,30,94440,93300,92200,77.55,0,3.63,5.91,6.92,7.75,8.42,9,9.53,10.01,10.950000000000001,140.83,141.74,142.45000000000002,143.17000000000002,143.89000000000001,144.56,145.25,145.89000000000001,147.09,12.25,12.18,12.07,11.93,11.77,11.620000000000001,11.44,11.28,10.94,N/A,N/A +2013,4,26,7,30,94600,93470,92360,73.38,0,1.49,1.97,2.13,2.22,2.3000000000000003,2.36,2.48,2.63,3.18,193.89000000000001,196.01,197.27,197.57,197.21,196.64000000000001,194.61,192.45000000000002,186.64000000000001,12.97,12.64,12.46,12.26,12.06,11.870000000000001,11.66,11.47,11.07,N/A,N/A +2013,4,26,8,30,94450,93310,92210,77.05,0,5.2,6.79,7.36,7.8100000000000005,8.23,8.63,9.13,9.6,10.48,151.01,151.36,151.43,151.58,151.83,152.1,152.62,153.03,153.69,12.620000000000001,12.3,12.120000000000001,11.93,11.74,11.56,11.370000000000001,11.19,10.83,N/A,N/A +2013,4,26,9,30,94440,93300,92210,79.48,0,4.5600000000000005,6.46,7.29,7.99,8.59,9.120000000000001,9.55,9.96,10.86,144.18,145.07,145.86,146.49,147.14000000000001,147.75,148.35,148.94,150.37,12.67,12.4,12.25,12.07,11.9,11.74,11.57,11.42,11.13,N/A,N/A +2013,4,26,10,30,94430,93290,92190,80.36,0,2.73,3.88,4.5,5.14,5.82,6.51,7.24,7.88,8.84,147.33,148.9,150.04,151.11,152.17000000000002,153.19,154.07,154.87,156.1,12.540000000000001,12.24,12.08,11.91,11.74,11.57,11.42,11.27,10.97,N/A,N/A +2013,4,26,11,30,94370,93240,92140,87.12,0,4.26,6.79,7.92,8.84,9.58,10.21,10.790000000000001,11.33,12.38,149.9,151.74,152.83,153.48,153.99,154.43,155.15,155.85,157.29,12.47,12.42,12.32,12.18,12.040000000000001,11.91,11.77,11.65,11.46,N/A,N/A +2013,4,26,12,30,94370,93240,92140,87.62,0,3.73,5.59,6.46,7.25,7.9,8.46,8.98,9.47,10.44,158.09,157.97,158.17000000000002,158.75,159.28,159.77,160.27,160.75,161.69,12.92,12.68,12.540000000000001,12.38,12.22,12.07,11.91,11.77,11.5,N/A,N/A +2013,4,26,13,30,94470,93340,92240,86.74,0,3.69,4.66,5.01,5.2700000000000005,5.47,5.64,5.87,6.140000000000001,7.21,190.79,189.66,188.9,188.23,187.67000000000002,187.19,186.62,186.06,184.46,13.06,12.700000000000001,12.51,12.32,12.13,11.96,11.77,11.6,11.31,N/A,N/A +2013,4,26,14,30,94490,93360,92270,79.01,0,4.75,5.91,6.29,6.51,6.66,6.78,6.88,6.98,7.21,188.61,188.35,188.26,188.19,188.14000000000001,188.09,188.04,187.98,187.83,14.22,13.620000000000001,13.370000000000001,13.15,12.950000000000001,12.76,12.57,12.39,12.030000000000001,N/A,N/A +2013,4,26,15,30,94460,93340,92250,71.67,0,5.58,6.87,7.25,7.46,7.57,7.640000000000001,7.68,7.7,7.73,171.03,171.29,171.47,171.68,171.92000000000002,172.14000000000001,172.42000000000002,172.69,173.33,16.080000000000002,15.38,15.1,14.86,14.64,14.450000000000001,14.24,14.06,13.68,N/A,N/A +2013,4,26,16,30,94430,93320,92250,60.52,0,5.55,6.82,7.19,7.3500000000000005,7.45,7.5,7.5200000000000005,7.53,7.49,173.47,173.58,173.65,173.70000000000002,173.74,173.79,173.85,173.9,174.05,19.16,18.41,18.11,17.86,17.63,17.42,17.21,17.02,16.63,N/A,N/A +2013,4,26,17,30,94400,93300,92230,52.01,0,4.99,6.08,6.390000000000001,6.5200000000000005,6.6000000000000005,6.63,6.640000000000001,6.63,6.59,176.81,176.68,176.61,176.57,176.56,176.55,176.57,176.59,176.69,21.5,20.740000000000002,20.44,20.17,19.94,19.73,19.51,19.32,18.93,N/A,N/A +2013,4,26,18,30,94370,93280,92220,45.75,0,4.64,5.6000000000000005,5.9,6.01,6.07,6.09,6.09,6.08,6.01,176.57,176.48,176.45000000000002,176.47,176.51,176.57,176.66,176.74,177,23.46,22.72,22.400000000000002,22.12,21.89,21.67,21.45,21.25,20.85,N/A,N/A +2013,4,26,19,30,94310,93230,92180,39.08,0,4.17,4.99,5.22,5.29,5.32,5.32,5.29,5.26,5.16,179.92000000000002,179.93,179.97,180.1,180.25,180.42000000000002,180.63,180.84,181.32,25.34,24.62,24.310000000000002,24.04,23.81,23.59,23.37,23.17,22.77,N/A,N/A +2013,4,26,20,30,94250,93170,92120,34.68,0,2.98,3.5,3.62,3.64,3.63,3.62,3.59,3.5500000000000003,3.47,176.94,177.17000000000002,177.25,177.33,177.42000000000002,177.54,177.67000000000002,177.8,178.13,26.55,25.900000000000002,25.61,25.36,25.13,24.91,24.7,24.5,24.11,N/A,N/A +2013,4,26,21,30,94190,93120,92080,31.060000000000002,0,2.5500000000000003,3.02,3.15,3.2,3.23,3.23,3.23,3.23,3.2,177.4,177.34,177.18,177.07,176.98,176.92000000000002,176.89000000000001,176.87,176.9,27.810000000000002,27.18,26.900000000000002,26.64,26.41,26.19,25.97,25.77,25.36,N/A,N/A +2013,4,26,22,30,94150,93080,92040,30.34,0,2.85,3.38,3.52,3.5700000000000003,3.6,3.6,3.59,3.58,3.5300000000000002,151.76,152.05,152.43,152.71,152.94,153.13,153.3,153.45000000000002,153.69,28.150000000000002,27.54,27.28,27.03,26.8,26.59,26.37,26.17,25.77,N/A,N/A +2013,4,26,23,30,94130,93060,92030,29.22,0,3.12,3.77,3.98,4.07,4.14,4.17,4.19,4.2,4.2,157.76,157.70000000000002,157.59,157.4,157.22,157.04,156.85,156.65,156.24,28.39,27.86,27.64,27.400000000000002,27.19,26.98,26.78,26.580000000000002,26.19,N/A,N/A +2013,4,27,0,30,94120,93040,92000,33.57,0,4.95,6.26,6.63,6.83,6.96,7.05,7.11,7.15,7.19,164.78,164.5,164.26,164,163.76,163.53,163.29,163.08,162.64000000000001,27.46,27.1,26.92,26.71,26.52,26.32,26.12,25.93,25.54,N/A,N/A +2013,4,27,1,30,94160,93080,92040,46.660000000000004,0,4.91,7.1000000000000005,7.86,8.45,8.91,9.28,9.59,9.85,10.200000000000001,156.52,157.1,157.41,157.6,157.71,157.78,157.8,157.79,157.74,25.02,24.990000000000002,24.91,24.79,24.650000000000002,24.51,24.36,24.2,23.86,N/A,N/A +2013,4,27,2,30,94220,93130,92080,49.52,0,4.4,6.78,7.72,8.52,9.200000000000001,9.77,10.28,10.73,11.47,150.97,152.53,153.51,154.17000000000002,154.63,154.95000000000002,155.19,155.4,155.96,23.45,23.56,23.53,23.47,23.38,23.27,23.14,23,22.650000000000002,N/A,N/A +2013,4,27,3,30,94240,93150,92100,56.64,0,4.73,7.25,8.27,9.17,9.91,10.540000000000001,11.08,11.55,12.17,155.58,156.75,157.54,158.15,158.66,159.11,159.6,160.06,160.99,22.41,22.48,22.43,22.35,22.25,22.150000000000002,22.02,21.900000000000002,21.64,N/A,N/A +2013,4,27,4,30,94260,93170,92110,60.800000000000004,0,3.72,6.41,7.5200000000000005,8.52,9.35,10.05,10.59,11.06,11.620000000000001,155.74,158.4,160.07,161.11,161.94,162.61,163.20000000000002,163.72,164.5,21.51,21.77,21.79,21.78,21.76,21.73,21.68,21.64,21.52,N/A,N/A +2013,4,27,5,30,94290,93190,92130,69.76,0,2.43,5.01,6.04,7.0200000000000005,7.86,8.61,9.27,9.870000000000001,10.82,149.15,155.98,160.29,162.53,164.04,165.01,165.6,166.05,166.4,20.51,21.25,21.28,21.3,21.31,21.31,21.29,21.27,21.16,N/A,N/A +2013,4,27,6,30,94330,93230,92170,76.22,0,1.25,2.37,2.91,3.96,4.89,5.67,6.43,7.17,8.5,98.28,124.81,142.13,154.27,161.54,163.93,165.34,166.43,167.6,18.64,19.47,19.72,20.13,20.36,20.46,20.53,20.57,20.6,N/A,N/A +2013,4,27,7,30,94330,93220,92160,80.31,0,1.3800000000000001,3.08,3.94,4.9,5.76,6.5600000000000005,7.3100000000000005,8.040000000000001,9.040000000000001,140.9,152.11,159.77,164.03,167.01,168.96,170.07,170.91,171.44,18.080000000000002,19.19,19.51,19.84,20.11,20.34,20.51,20.66,20.68,N/A,N/A +2013,4,27,8,30,94340,93240,92170,85.60000000000001,0,1.1400000000000001,2.81,3.8000000000000003,4.9,5.8,6.51,7.12,7.67,8.58,139.06,153.75,163.59,167.56,169.78,170.57,170.89000000000001,171.08,171.15,17.2,18.64,19.2,19.79,20.150000000000002,20.36,20.47,20.55,20.53,N/A,N/A +2013,4,27,9,30,94340,93230,92170,86.85000000000001,0,2,3.67,4.18,4.73,5.33,5.95,6.45,6.9,7.640000000000001,124.61,131.86,136.21,140.03,143.11,145.81,147.12,148.15,149.3,16.98,17.98,18.23,18.46,18.64,18.8,18.85,18.89,18.81,N/A,N/A +2013,4,27,10,30,94390,93280,92200,92.59,0,1.86,3.3000000000000003,3.73,4.23,4.69,5.13,5.61,6.05,6.67,86.64,100.69,108.84,113.62,118.04,122.21000000000001,127.28,132.33,143.12,16.11,16.71,16.7,16.64,16.52,16.39,16.27,16.19,16.44,N/A,N/A +2013,4,27,11,30,94440,93330,92250,98.89,0,1.98,2.83,3.22,3.49,3.68,3.81,3.92,4.0200000000000005,4.22,72.39,78.05,82.28,86.35000000000001,89.98,93.23,96.17,98.78,102.98,16.240000000000002,16.12,16.080000000000002,16.06,16,15.94,15.84,15.75,15.57,N/A,N/A +2013,4,27,12,30,94490,93380,92300,91.51,0,2.63,3.62,3.95,4.19,4.38,4.53,4.7,4.86,5.15,36.32,38.910000000000004,41.36,44.5,48.15,51.94,56.14,60.050000000000004,67.35,17.18,16.96,16.84,16.69,16.54,16.39,16.240000000000002,16.09,15.8,N/A,N/A +2013,4,27,13,30,94470,93360,92280,82.96000000000001,0,4.0200000000000005,5.44,5.94,6.2700000000000005,6.5200000000000005,6.73,6.63,6.47,5.57,25.27,27.16,28.25,28.990000000000002,30.48,32.28,34.67,36.93,42.550000000000004,17.73,17.47,17.31,17.13,16.97,16.82,16.75,16.7,16.73,N/A,N/A +2013,4,27,14,30,94500,93400,92330,76.34,0,2.91,3.5700000000000003,3.75,3.83,3.86,3.88,3.87,3.86,3.81,37.480000000000004,38.56,39.34,40.19,41.08,41.95,43,43.99,46.26,19.67,19.28,19.09,18.89,18.7,18.52,18.34,18.16,17.8,N/A,N/A +2013,4,27,15,30,94520,93420,92360,67.36,0,3.1,3.7800000000000002,3.98,4.07,4.13,4.16,4.17,4.19,4.18,88.93,87.81,87.07000000000001,86.5,85.99,85.53,85.06,84.61,83.69,21.48,20.990000000000002,20.77,20.54,20.330000000000002,20.13,19.92,19.73,19.330000000000002,N/A,N/A +2013,4,27,16,30,94510,93410,92350,59.5,0,3.0500000000000003,3.62,3.77,3.85,3.89,3.91,3.92,3.93,3.93,51.65,53.32,54.29,55.14,55.9,56.6,57.28,57.9,59.18,22.86,22.21,21.93,21.67,21.43,21.21,21,20.8,20.39,N/A,N/A +2013,4,27,17,30,94470,93380,92330,53.43,0,2.5500000000000003,3.0500000000000003,3.2,3.29,3.35,3.39,3.43,3.45,3.5,73.16,73.84,74.36,74.73,75.03,75.29,75.52,75.73,76.07000000000001,24.19,23.55,23.25,22.98,22.73,22.51,22.29,22.080000000000002,21.66,N/A,N/A +2013,4,27,18,30,94440,93350,92290,51.78,0,1.53,1.93,2.09,2.21,2.31,2.41,2.5,2.58,2.73,27.69,38.58,45.15,49.58,53.160000000000004,56.21,58.81,61.11,64.91,24.09,23.64,23.45,23.25,23.07,22.900000000000002,22.72,22.55,22.19,N/A,N/A +2013,4,27,19,30,94350,93270,92230,43.2,0,1.78,2.2,2.35,2.46,2.5500000000000003,2.61,2.67,2.72,2.81,92.54,92.47,92.29,91.67,91.07000000000001,90.46000000000001,89.87,89.31,88.29,26.39,25.8,25.51,25.23,24.990000000000002,24.76,24.54,24.330000000000002,23.91,N/A,N/A +2013,4,27,20,30,94270,93190,92150,40.56,0,2.81,3.47,3.69,3.81,3.9,3.97,4.03,4.08,4.17,96.24000000000001,95.33,94.9,94.58,94.32000000000001,94.08,93.83,93.60000000000001,93.13,26.68,26.22,26,25.78,25.57,25.37,25.16,24.97,24.57,N/A,N/A +2013,4,27,21,30,94170,93100,92060,33.730000000000004,0,3.58,4.28,4.48,4.62,4.72,4.79,4.84,4.89,4.97,73.03,74.58,75.22,75.71000000000001,76.08,76.37,76.62,76.82000000000001,77.15,28.150000000000002,27.48,27.2,26.92,26.68,26.46,26.23,26.02,25.6,N/A,N/A +2013,4,27,22,30,94070,93000,91960,33.11,0,3.99,4.95,5.24,5.4,5.5200000000000005,5.6000000000000005,5.65,5.69,5.75,68.81,68.07000000000001,67.74,67.54,67.36,67.22,67.1,66.99,66.77,28.2,27.72,27.5,27.25,27.03,26.82,26.6,26.400000000000002,25.990000000000002,N/A,N/A +2013,4,27,23,30,94030,92960,91920,31.02,0,4.71,5.72,5.99,6.12,6.22,6.28,6.33,6.36,6.41,59.19,60.13,60.64,61,61.29,61.54,61.77,61.96,62.31,28.25,27.68,27.45,27.21,26.990000000000002,26.78,26.57,26.37,25.97,N/A,N/A +2013,4,28,0,30,94020,92950,91910,32.06,0,4.75,6.0600000000000005,6.43,6.67,6.84,6.96,7.05,7.12,7.21,70.91,70.14,69.84,69.73,69.7,69.73,69.8,69.88,70.09,27.77,27.39,27.2,26.990000000000002,26.79,26.6,26.39,26.2,25.8,N/A,N/A +2013,4,28,1,30,94150,93070,92010,64.01,0,4.71,5.92,6.26,6.46,6.59,6.68,6.76,6.83,7.08,156.15,156.22,156.29,156.20000000000002,156.01,155.76,155.4,155.05,154.08,22.650000000000002,22.28,22.1,21.900000000000002,21.71,21.53,21.34,21.17,20.830000000000002,N/A,N/A +2013,4,28,2,30,94160,93070,92010,67.7,0,2.11,3.2800000000000002,3.6,3.7800000000000002,3.89,3.97,4.05,4.13,4.43,122.61,126.08,128.07,129.34,130.43,131.39000000000001,132.6,133.78,136.77,22,21.81,21.650000000000002,21.46,21.28,21.1,20.92,20.76,20.5,N/A,N/A +2013,4,28,3,30,94200,93100,92040,73.01,0,2.67,4.18,4.68,5.0600000000000005,5.37,5.63,5.86,6.0600000000000005,6.41,101.85000000000001,104.72,106.08,106.74000000000001,107.21000000000001,107.59,108.08,108.55,110.11,21.38,21.25,21.13,20.96,20.78,20.6,20.41,20.240000000000002,19.88,N/A,N/A +2013,4,28,4,30,94190,93100,92030,77.34,0,2.7600000000000002,4.49,5.05,5.51,5.93,6.32,6.7,7.04,7.71,129.66,127.08,125.21000000000001,123.17,121.69,120.52,120.11,119.86,120.60000000000001,20.45,20.43,20.330000000000002,20.18,20.01,19.84,19.64,19.46,19.12,N/A,N/A +2013,4,28,5,30,94200,93100,92040,87.56,0,1.1300000000000001,2.48,3.0500000000000003,3.5700000000000003,4.1,4.64,5.3,5.98,7.21,112.63,111.46000000000001,110.06,108.11,107.01,106.37,106.99000000000001,107.91,111.28,19.11,19.34,19.27,19.150000000000002,19.01,18.86,18.740000000000002,18.64,18.580000000000002,N/A,N/A +2013,4,28,6,30,94230,93120,92050,90.64,0,0.63,1.8,2.64,3.71,4.87,6.11,6.94,7.61,7.59,89.98,91.66,92.52,93.83,95.07000000000001,96.29,98.3,100.51,106.67,18.07,18.34,18.29,18.2,18.14,18.11,18.12,18.14,18.23,N/A,N/A +2013,4,28,7,30,94250,93150,92080,91.37,0,0.91,2.39,3.35,4.43,5.4,6.2700000000000005,6.79,7.2,7.24,105.64,99.79,97.43,99.41,102.14,105.26,108.42,111.35000000000001,115.78,16.86,17.330000000000002,17.400000000000002,17.47,17.61,17.78,18.06,18.330000000000002,18.830000000000002,N/A,N/A +2013,4,28,8,30,94260,93150,92080,86.12,0,2.61,5.14,6.17,7.22,8.25,9.24,10.21,11.11,12.67,146.35,139.46,135.42000000000002,132.37,130.66,129.59,129.52,129.62,130.68,16.79,17.28,17.35,17.39,17.400000000000002,17.400000000000002,17.38,17.35,17.240000000000002,N/A,N/A +2013,4,28,9,30,94270,93150,92080,86.55,0,2.7600000000000002,5.0200000000000005,5.87,6.57,7.2,7.7700000000000005,8.31,8.81,9.700000000000001,138.4,137.79,137.12,136.08,135.89000000000001,136.1,137.53,139.14000000000001,143.9,16.28,16.54,16.52,16.45,16.37,16.3,16.22,16.15,16.04,N/A,N/A +2013,4,28,10,30,94250,93130,92050,93.8,0,0.92,2.35,3.13,3.83,4.44,4.98,5.55,6.07,6.82,119.73,130.59,137.51,140.96,144.69,148.42000000000002,152.73,156.8,162.85,15.120000000000001,15.540000000000001,15.57,15.59,15.58,15.57,15.56,15.55,15.540000000000001,N/A,N/A +2013,4,28,11,30,94260,93140,92060,94.89,0,1.93,2.72,2.6,2.44,2.46,2.54,2.74,2.97,3.6,75.88,78.55,84.51,95.17,106.95,118.83,129.52,139,151.79,14.64,15.1,15.1,15.040000000000001,14.98,14.93,14.96,14.98,15.05,N/A,N/A +2013,4,28,12,30,94260,93140,92060,95.16,0,1.47,2.02,2.04,2.22,2.43,2.64,2.92,3.2,3.72,100.97,122.38,132.8,140.09,145.15,149.14000000000001,151.38,153.20000000000002,155.19,14.48,14.88,14.88,14.88,14.96,15.06,15.11,15.14,15.14,N/A,N/A +2013,4,28,13,30,94270,93150,92070,86.59,0,0.89,1.18,1.31,1.3900000000000001,1.54,1.75,2.12,2.54,3.59,139.23,146.53,150.93,154.55,158.75,163.34,166.36,169.05,170.87,16.080000000000002,15.73,15.57,15.39,15.23,15.08,14.96,14.86,14.790000000000001,N/A,N/A +2013,4,28,14,30,94260,93150,92070,81.91,0,2.35,2.84,2.97,3.02,3.0500000000000003,3.06,3.0500000000000003,3.0500000000000003,3.02,205.72,204.01,202.92000000000002,202.12,201.4,200.78,200.09,199.45000000000002,197.94,17.7,17.21,17,16.79,16.59,16.41,16.21,16.03,15.65,N/A,N/A +2013,4,28,15,30,94240,93130,92060,75.29,0,2.41,2.82,2.9,2.91,2.89,2.87,2.83,2.79,2.7,210.96,208.16,206.52,205.09,203.73000000000002,202.48000000000002,201.11,199.84,196.93,19.09,18.5,18.25,18.03,17.82,17.63,17.43,17.25,16.88,N/A,N/A +2013,4,28,16,30,94210,93120,92050,67.44,0,2.22,2.58,2.65,2.67,2.66,2.65,2.63,2.6,2.54,208.94,206.22,204.6,203.25,201.97,200.78,199.52,198.36,195.77,20.830000000000002,20.23,19.95,19.71,19.490000000000002,19.29,19.080000000000002,18.900000000000002,18.51,N/A,N/A +2013,4,28,17,30,94150,93060,92000,56.13,0,2.2,2.65,2.7800000000000002,2.84,2.88,2.91,2.93,2.94,2.96,177.03,174.95000000000002,173.78,172.81,171.94,171.14000000000001,170.37,169.67000000000002,168.19,23.21,22.6,22.3,22.04,21.82,21.6,21.39,21.19,20.79,N/A,N/A +2013,4,28,18,30,94100,93020,91970,46.6,0,2.91,3.52,3.7,3.8000000000000003,3.86,3.91,3.94,3.96,4,160.66,160.46,160.24,159.99,159.75,159.51,159.27,159.04,158.55,25.080000000000002,24.42,24.11,23.84,23.6,23.38,23.16,22.95,22.54,N/A,N/A +2013,4,28,19,30,94030,92960,91910,38.85,0,4.43,5.42,5.72,5.88,5.99,6.0600000000000005,6.12,6.16,6.22,151.72,151.64000000000001,151.62,151.57,151.51,151.45000000000002,151.39000000000001,151.33,151.20000000000002,26.560000000000002,25.8,25.48,25.21,24.96,24.73,24.5,24.29,23.86,N/A,N/A +2013,4,28,20,30,93940,92870,91830,32.67,0,4.21,5.12,5.4,5.54,5.63,5.7,5.75,5.79,5.83,141.26,141.71,142,142.20000000000002,142.37,142.5,142.63,142.74,142.94,27.45,26.71,26.400000000000002,26.13,25.88,25.66,25.43,25.22,24.79,N/A,N/A +2013,4,28,21,30,93850,92780,91740,30.25,0,4.97,6.08,6.38,6.53,6.63,6.69,6.73,6.76,6.78,142.69,142.89000000000001,142.99,143.02,143.04,143.04,143.02,143.02,142.98,27.75,27.01,26.72,26.45,26.21,25.990000000000002,25.76,25.55,25.13,N/A,N/A +2013,4,28,22,30,93770,92700,91660,28.57,0,4.98,6.15,6.46,6.63,6.73,6.8,6.8500000000000005,6.88,6.92,141.91,142.03,142.09,142.07,142.05,142.02,141.99,141.95000000000002,141.88,27.8,27.11,26.84,26.59,26.36,26.14,25.92,25.72,25.3,N/A,N/A +2013,4,28,23,30,93790,92720,91680,32.9,0,6.0200000000000005,7.5200000000000005,7.94,8.17,8.33,8.44,8.51,8.57,8.65,149.69,149.76,149.79,149.8,149.8,149.8,149.8,149.81,149.81,27.29,26.69,26.45,26.22,25.990000000000002,25.78,25.57,25.37,24.96,N/A,N/A +2013,4,29,0,30,93760,92690,91650,36.21,0,5.66,7.18,7.58,7.8100000000000005,7.96,8.06,8.13,8.18,8.23,147.34,147.55,147.59,147.63,147.69,147.75,147.81,147.88,148.02,26.39,25.98,25.78,25.57,25.37,25.17,24.97,24.78,24.38,N/A,N/A +2013,4,29,1,30,93810,92730,91690,45.42,0,4.9,6.66,7.21,7.61,7.92,8.17,8.38,8.56,8.85,162.22,162.27,162.25,162.25,162.27,162.3,162.34,162.39000000000001,162.45000000000002,25.080000000000002,24.87,24.72,24.54,24.36,24.18,23.98,23.8,23.41,N/A,N/A +2013,4,29,2,30,93940,92840,91780,53.06,0,4.21,5.23,5.58,5.84,6.07,6.29,6.41,6.5,6.0600000000000005,304.01,304.48,304.93,305.47,306.28000000000003,307.29,307.88,308.29,304.85,20.39,20.07,19.91,19.73,19.55,19.37,19.240000000000002,19.13,19.17,N/A,N/A +2013,4,29,3,30,93930,92840,91780,48.410000000000004,0,4.22,5.46,5.84,6.13,6.4,6.640000000000001,6.8,6.9,6.67,222.43,223.85,224.78,225.94,227.19,228.44,229.18,229.76,230.3,20.91,20.6,20.43,20.25,20.06,19.89,19.7,19.54,19.26,N/A,N/A +2013,4,29,4,30,93960,92860,91790,56.24,0,2.5100000000000002,3.31,3.6,3.86,4.16,4.45,4.62,4.74,4.76,216.93,218.02,219.26,220.96,223.64000000000001,226.63,229.84,232.25,230.99,19.77,19.44,19.26,19.06,18.95,18.87,19.14,19.400000000000002,19.89,N/A,N/A +2013,4,29,5,30,93940,92840,91770,60.6,0,1.59,2.37,2.36,2.35,2.42,2.54,2.72,2.91,3.3200000000000003,142.68,152.78,160.88,171.23,180.17000000000002,188.32,194.12,199.01,204.21,19.12,19.45,19.48,19.51,19.51,19.490000000000002,19.48,19.47,19.41,N/A,N/A +2013,4,29,6,30,93950,92850,91790,65.07000000000001,0,2.89,4.2700000000000005,4.48,4.46,4.57,4.74,5.01,5.28,5.8500000000000005,129.91,134.03,139.06,146.79,155.16,163.64000000000001,167.38,170.08,171.64000000000001,18.14,18.39,18.6,18.95,19.26,19.54,19.61,19.64,19.37,N/A,N/A +2013,4,29,7,30,93980,92870,91810,68.29,0,1.8,3.79,4.5200000000000005,5.16,5.65,6.05,6.3500000000000005,6.61,6.97,161.79,163.33,164.06,164.23,164.16,163.99,163.5,162.99,161.69,18.09,18.740000000000002,18.85,18.93,18.92,18.89,18.78,18.66,18.35,N/A,N/A +2013,4,29,8,30,93970,92860,91790,74.14,0,1.51,3.08,3.64,4.2,4.73,5.24,5.6000000000000005,5.91,6.390000000000001,160.64000000000001,159.02,158.55,158.96,160.23,161.86,163.33,164.71,167.47,16.95,17.68,17.84,17.95,18,18.02,17.95,17.86,17.59,N/A,N/A +2013,4,29,9,30,93940,92830,91760,79.56,0,2.02,3.96,4.59,5.18,5.66,6.08,6.41,6.69,7.11,141.17000000000002,147.6,151.37,154.12,156.31,158.18,159.85,161.35,163.87,16.31,17.12,17.32,17.46,17.5,17.51,17.45,17.38,17.14,N/A,N/A +2013,4,29,10,30,93900,92790,91730,82.4,0,3.3000000000000003,5.59,6.34,6.98,7.44,7.8,7.94,8.05,8.11,146,151.34,154.28,156.42000000000002,158.29,159.94,161.48,162.86,165.52,16.39,16.98,17.16,17.31,17.38,17.42,17.38,17.35,17.26,N/A,N/A +2013,4,29,11,30,93920,92810,91740,88.58,0,3.0100000000000002,5.33,6.11,6.7700000000000005,7.3,7.75,8.040000000000001,8.26,8.31,147.07,150.78,152.61,153.62,154.73,155.81,157.43,159.05,162.65,15.870000000000001,16.5,16.68,16.81,16.9,16.96,17,17.02,16.97,N/A,N/A +2013,4,29,12,30,93910,92800,91730,92.65,0,2.18,4.38,5.16,5.86,6.46,6.98,7.3500000000000005,7.65,7.88,157.19,159.6,160.71,161.15,161.75,162.4,163.61,164.84,167.78,15.26,15.91,16.03,16.12,16.19,16.25,16.31,16.36,16.43,N/A,N/A +2013,4,29,13,30,93920,92810,91740,78.96000000000001,0,3.24,4.01,4.25,4.43,4.71,5.01,5.66,6.3,7.26,160.83,161.78,162.41,163.14000000000001,163.76,164.31,164.94,165.54,166.66,17.18,16.8,16.63,16.46,16.31,16.18,16.15,16.13,16.19,N/A,N/A +2013,4,29,14,30,93920,92820,91750,66.95,0,3.69,4.61,4.88,5.03,5.12,5.19,5.24,5.28,5.3500000000000005,166.42000000000002,166.76,166.92000000000002,167.06,167.21,167.34,167.51,167.68,168.08,19.330000000000002,18.76,18.53,18.31,18.1,17.92,17.71,17.53,17.16,N/A,N/A +2013,4,29,15,30,93910,92810,91750,58.61,0,3.9,4.84,5.12,5.28,5.39,5.46,5.51,5.5600000000000005,5.62,169.72,169.78,169.82,169.83,169.84,169.85,169.85,169.85,169.86,21.13,20.47,20.21,19.97,19.740000000000002,19.54,19.330000000000002,19.13,18.73,N/A,N/A +2013,4,29,16,30,93880,92790,91740,49.410000000000004,0,4.55,5.62,5.92,6.08,6.19,6.26,6.3100000000000005,6.3500000000000005,6.390000000000001,173.44,173.12,172.95000000000002,172.8,172.68,172.57,172.48,172.4,172.24,22.89,22.16,21.87,21.61,21.37,21.16,20.93,20.740000000000002,20.330000000000002,N/A,N/A +2013,4,29,17,30,93830,92750,91700,42.76,0,4.82,5.91,6.22,6.37,6.47,6.53,6.5600000000000005,6.59,6.61,178.44,177.91,177.61,177.38,177.19,177.03,176.89000000000001,176.75,176.52,24.38,23.61,23.31,23.04,22.79,22.57,22.35,22.14,21.73,N/A,N/A +2013,4,29,18,30,93760,92680,91630,37.97,0,4.5200000000000005,5.51,5.78,5.9,5.97,6.0200000000000005,6.04,6.05,6.05,179.69,179.16,178.86,178.65,178.48,178.33,178.20000000000002,178.09,177.87,25.69,24.93,24.62,24.35,24.1,23.88,23.66,23.45,23.04,N/A,N/A +2013,4,29,19,30,93700,92620,91580,33,0,4.38,5.29,5.5200000000000005,5.61,5.66,5.69,5.69,5.7,5.68,184.67000000000002,183.53,182.96,182.63,182.33,182.09,181.85,181.63,181.19,26.78,26.03,25.73,25.46,25.22,25,24.78,24.57,24.16,N/A,N/A +2013,4,29,20,30,93610,92540,91500,29.34,0,3.93,4.71,4.91,5,5.05,5.08,5.1000000000000005,5.11,5.11,194.27,191.66,190.25,189.16,188.25,187.48,186.78,186.16,185.06,27.7,26.98,26.68,26.42,26.18,25.96,25.73,25.53,25.11,N/A,N/A +2013,4,29,21,30,93530,92470,91430,25.060000000000002,0,3.59,4.28,4.44,4.51,4.54,4.5600000000000005,4.57,4.57,4.55,190.05,187.81,186.63,185.79,185.06,184.42000000000002,183.82,183.29,182.3,28.37,27.69,27.41,27.150000000000002,26.92,26.7,26.48,26.27,25.86,N/A,N/A +2013,4,29,22,30,93460,92400,91370,24.73,0,3.19,3.75,3.89,3.98,4.04,4.09,4.13,4.16,4.21,159.15,162.65,164.71,166.35,167.65,168.73,169.63,170.42000000000002,171.65,28.69,28.080000000000002,27.830000000000002,27.57,27.34,27.13,26.91,26.71,26.29,N/A,N/A +2013,4,29,23,30,93420,92360,91330,24.01,0,3.17,3.89,4.09,4.22,4.3,4.36,4.41,4.44,4.49,159.53,159.75,160.05,160.44,160.79,161.12,161.44,161.74,162.35,28.76,28.21,27.98,27.75,27.53,27.32,27.1,26.91,26.5,N/A,N/A +2013,4,30,0,30,93400,92340,91310,24.29,0,3.42,4.26,4.48,4.59,4.66,4.71,4.74,4.76,4.78,154.37,154.68,154.81,154.88,154.93,154.97,154.99,155.01,155.01,28.34,27.96,27.77,27.560000000000002,27.36,27.17,26.96,26.78,26.38,N/A,N/A +2013,4,30,1,30,93410,92350,91320,29.19,0,3.81,6.32,7.0600000000000005,7.47,7.69,7.8,7.83,7.83,7.76,150.06,149.89000000000001,149.92000000000002,150.20000000000002,150.53,150.87,151.19,151.46,151.92000000000002,26.62,27.02,27.05,26.96,26.810000000000002,26.64,26.45,26.27,25.88,N/A,N/A +2013,4,30,2,30,93470,92400,91360,35.44,0,5.03,7.47,8.290000000000001,8.98,9.56,10.07,10.52,10.91,11.46,154.39000000000001,153.87,153.51,153.08,152.86,152.76,152.86,152.99,153.42000000000002,25.37,25.5,25.48,25.41,25.3,25.18,25.02,24.87,24.53,N/A,N/A +2013,4,30,3,30,93490,92420,91380,42.35,0,5.44,8.08,9.05,9.870000000000001,10.58,11.22,11.77,12.27,13.06,158.65,159.20000000000002,159.53,159.84,160.14000000000001,160.41,160.66,160.88,161.31,24.29,24.39,24.38,24.330000000000002,24.26,24.18,24.07,23.96,23.68,N/A,N/A +2013,4,30,4,30,93520,92440,91390,49.800000000000004,0,6.72,9.52,10.5,11.33,12.07,12.73,13.34,13.9,14.84,161.05,161.53,161.84,162.14000000000001,162.42000000000002,162.68,162.98,163.26,163.94,23.41,23.38,23.31,23.22,23.13,23.03,22.91,22.81,22.57,N/A,N/A +2013,4,30,5,30,93520,92430,91390,58.79,0,7.0200000000000005,9.89,10.88,11.73,12.47,13.14,13.790000000000001,14.39,15.49,159.25,160.09,160.59,161.06,161.53,161.97,162.44,162.88,163.82,22.240000000000002,22.16,22.07,21.95,21.830000000000002,21.71,21.580000000000002,21.45,21.18,N/A,N/A +2013,4,30,6,30,93540,92450,91400,67.92,0,7.5600000000000005,10.51,11.53,12.38,13.13,13.790000000000001,14.42,15,16.07,166.04,166.74,167.17000000000002,167.56,167.94,168.28,168.6,168.89000000000001,169.43,21.240000000000002,21.11,21,20.88,20.740000000000002,20.61,20.47,20.330000000000002,20.06,N/A,N/A +2013,4,30,7,30,93560,92470,91410,78.95,0,6.51,9.18,10.14,10.98,11.69,12.31,12.89,13.43,14.47,156.32,157.83,158.74,159.53,160.25,160.9,161.51,162.09,163.22,19.73,19.580000000000002,19.46,19.31,19.16,19.01,18.85,18.7,18.39,N/A,N/A +2013,4,30,8,30,93550,92450,91390,85.33,0,6.7,9.41,10.35,11.14,11.8,12.370000000000001,12.9,13.39,14.31,155.45000000000002,157.02,157.92000000000002,158.67000000000002,159.37,160,160.64000000000001,161.24,162.44,18.47,18.29,18.150000000000002,18,17.85,17.7,17.54,17.39,17.1,N/A,N/A +2013,4,30,9,30,93540,92440,91380,83.87,0,6.08,8.07,8.76,9.34,9.83,10.26,10.73,11.18,12.120000000000001,153.21,154.49,155.3,156.07,156.78,157.43,158.16,158.85,160.16,18.46,18.12,17.94,17.75,17.56,17.37,17.17,16.97,16.51,N/A,N/A +2013,4,30,10,30,93540,92440,91370,84.99,0,4.97,6.65,7.29,7.83,8.34,8.81,9.32,9.790000000000001,10.57,153.32,154.84,155.81,156.75,157.71,158.64000000000001,159.63,160.51,161.88,18.330000000000002,17.990000000000002,17.81,17.62,17.43,17.26,17.06,16.87,16.48,N/A,N/A +2013,4,30,11,30,93530,92430,91360,85.72,0,4.92,6.51,7.0600000000000005,7.49,7.86,8.17,8.52,8.85,9.63,156.14000000000001,156.83,157.29,157.75,158.22,158.69,159.25,159.8,161.02,18.1,17.76,17.580000000000002,17.38,17.18,16.990000000000002,16.77,16.57,16.09,N/A,N/A +2013,4,30,12,30,93510,92410,91350,86.62,0,4.54,6.1000000000000005,6.68,7.15,7.57,7.96,8.370000000000001,8.77,9.700000000000001,157.64000000000001,158.26,158.75,159.27,159.84,160.41,161.09,161.76,163.37,17.82,17.48,17.3,17.11,16.91,16.73,16.5,16.29,15.88,N/A,N/A +2013,4,30,13,30,93540,92440,91370,86.45,0,4.98,6.47,6.99,7.38,7.72,8,8.33,8.65,9.4,167.86,168.27,168.57,168.86,169.14000000000001,169.39000000000001,169.69,169.97,170.56,17.82,17.45,17.26,17.05,16.85,16.66,16.44,16.240000000000002,15.83,N/A,N/A +2013,4,30,14,30,93530,92440,91370,82.99,0,5.67,7.34,7.9,8.290000000000001,8.58,8.82,9.03,9.23,9.63,162.31,162.54,162.71,162.9,163.12,163.34,163.6,163.86,164.46,18.43,17.94,17.73,17.52,17.31,17.13,16.93,16.75,16.38,N/A,N/A +2013,4,30,15,30,93520,92430,91370,73.11,0,5.33,6.63,7.0200000000000005,7.23,7.3500000000000005,7.43,7.48,7.51,7.54,178.58,178.19,177.94,177.79,177.68,177.6,177.56,177.52,177.46,20.400000000000002,19.69,19.42,19.18,18.96,18.76,18.56,18.37,18,N/A,N/A +2013,4,30,16,30,93490,92410,91360,57.93,0,6.09,7.53,7.930000000000001,8.14,8.26,8.34,8.38,8.41,8.42,172.95000000000002,172.53,172.32,172.14000000000001,171.98,171.84,171.71,171.6,171.38,23.45,22.66,22.37,22.11,21.88,21.67,21.46,21.26,20.87,N/A,N/A +2013,4,30,17,30,93420,92350,91310,48.4,0,6.37,7.87,8.3,8.52,8.66,8.75,8.8,8.84,8.86,160.56,161.12,161.47,161.76,162.03,162.27,162.51,162.73,163.21,25.55,24.71,24.39,24.12,23.87,23.650000000000002,23.43,23.23,22.82,N/A,N/A +2013,4,30,18,30,93360,92290,91260,42.82,0,6.33,7.82,8.25,8.48,8.64,8.74,8.8,8.85,8.89,170.47,171,171.32,171.62,171.9,172.16,172.42000000000002,172.67000000000002,173.17000000000002,26.95,26.1,25.78,25.5,25.25,25.01,24.79,24.580000000000002,24.17,N/A,N/A +2013,4,30,19,30,93320,92260,91230,38.800000000000004,0,6.43,7.94,8.370000000000001,8.61,8.76,8.86,8.92,8.97,9,172.52,172.79,172.97,173.14000000000001,173.3,173.46,173.62,173.78,174.09,28.23,27.37,27.05,26.76,26.51,26.27,26.05,25.84,25.42,N/A,N/A +2013,4,30,20,30,93260,92200,91180,34.01,0,6.59,8.13,8.55,8.76,8.9,8.98,9.03,9.06,9.08,172.07,172.59,172.9,173.16,173.4,173.62,173.85,174.07,174.51,29.23,28.39,28.07,27.79,27.54,27.32,27.09,26.89,26.47,N/A,N/A +2013,4,30,21,30,93180,92130,91110,30.13,0,6.28,7.75,8.15,8.33,8.44,8.51,8.55,8.58,8.58,176.43,176.14000000000001,176.01,175.89000000000001,175.8,175.72,175.65,175.59,175.51,30.310000000000002,29.51,29.22,28.95,28.71,28.490000000000002,28.27,28.07,27.66,N/A,N/A +2013,4,30,22,30,93200,92150,91130,30.62,0,5.71,7.04,7.41,7.6000000000000005,7.73,7.8100000000000005,7.87,7.91,7.95,177.58,177.85,177.94,178.02,178.08,178.14000000000001,178.20000000000002,178.26,178.37,30.76,30.05,29.78,29.52,29.29,29.07,28.85,28.650000000000002,28.240000000000002,N/A,N/A +2013,4,30,23,30,93180,92130,91110,32.13,0,7.0200000000000005,8.78,9.28,9.53,9.700000000000001,9.81,9.88,9.94,9.99,170.5,171.03,171.35,171.62,171.86,172.09,172.3,172.51,172.92000000000002,30.7,30.1,29.87,29.63,29.41,29.2,28.990000000000002,28.79,28.39,N/A,N/A +2013,5,1,0,30,93130,92080,91060,33.730000000000004,0,7.8500000000000005,10.05,10.63,10.96,11.200000000000001,11.36,11.48,11.57,11.68,152.82,153.28,153.59,153.83,154.02,154.20000000000002,154.37,154.52,154.8,29.89,29.52,29.34,29.13,28.93,28.73,28.53,28.34,27.95,N/A,N/A +2013,5,1,1,30,93160,92100,91070,41.43,0,5.59,8.09,8.96,9.69,10.3,10.8,11.26,11.68,12.36,153.22,153.97,154.5,154.98,155.36,155.68,155.9,156.09,156.31,27.86,27.86,27.8,27.7,27.57,27.44,27.28,27.13,26.79,N/A,N/A +2013,5,1,2,30,93210,92150,91120,47.03,0,5.53,8.21,9.24,10.15,10.94,11.63,12.290000000000001,12.92,13.98,138.06,139.22,139.99,140.61,141.18,141.71,142.27,142.82,143.98,26.400000000000002,26.45,26.42,26.34,26.25,26.16,26.05,25.94,25.68,N/A,N/A +2013,5,1,3,30,93280,92220,91180,48.27,0,5.44,8.16,9.25,10.19,11.05,11.84,12.57,13.26,14.49,135.99,138.42000000000002,140.20000000000002,141.61,142.8,143.88,144.87,145.8,147.61,25.43,25.490000000000002,25.47,25.41,25.35,25.28,25.2,25.13,24.97,N/A,N/A +2013,5,1,4,30,93300,92230,91190,54.21,0,6.0600000000000005,8.97,10.07,11.06,11.93,12.73,13.5,14.22,15.64,141.62,143.62,144.75,145.63,146.38,147.04,147.69,148.29,149.58,24.36,24.38,24.34,24.27,24.2,24.12,24.03,23.95,23.77,N/A,N/A +2013,5,1,5,30,93290,92220,91180,56.27,0,6.83,9.89,11.040000000000001,12.05,12.950000000000001,13.76,14.540000000000001,15.27,16.64,143.76,145.85,147.05,147.96,148.74,149.4,150.05,150.66,151.99,23.64,23.63,23.59,23.51,23.44,23.36,23.28,23.21,23.07,N/A,N/A +2013,5,1,6,30,93350,92270,91220,61.01,0,5.2700000000000005,8.040000000000001,9.05,9.96,10.73,11.42,12.01,12.540000000000001,13.55,135.02,136.87,138.84,140.5,142.23,143.85,145.74,147.52,151.03,22.55,22.5,22.42,22.330000000000002,22.21,22.11,21.990000000000002,21.88,21.66,N/A,N/A +2013,5,1,7,30,93420,92330,91290,68.84,0,4.45,7.46,8.64,9.66,10.51,11.23,11.83,12.370000000000001,13.3,143.39000000000001,138.33,136.19,135.45,135.62,136.05,137.14000000000001,138.26,141.19,21.42,21.56,21.54,21.48,21.38,21.27,21.12,20.98,20.66,N/A,N/A +2013,5,1,8,30,93460,92380,91320,76.94,0,3.24,5.93,7.0600000000000005,8.08,8.97,9.76,10.44,11.05,12.02,138.67000000000002,137.71,137.57,137.33,137.23,137.13,137.33,137.6,138.91,20.13,20.36,20.34,20.3,20.23,20.17,20.080000000000002,19.990000000000002,19.77,N/A,N/A +2013,5,1,9,30,93510,92410,91360,87.68,0,1.55,3.93,5.15,6.21,7.140000000000001,7.94,8.65,9.3,10.39,126.74000000000001,125.43,124.81,124.7,125.19,125.99000000000001,127.49000000000001,129.04,132.71,18.73,19.06,19.02,18.96,18.87,18.79,18.67,18.55,18.3,N/A,N/A +2013,5,1,10,30,93540,92440,91380,91.86,0,1.36,3.23,4.3500000000000005,5.2700000000000005,6.0200000000000005,6.640000000000001,7.2,7.74,8.76,226.19,103.24000000000001,136.63,137.69,138.53,139.19,140.12,141.1,143.87,18.330000000000002,18.77,18.73,18.650000000000002,18.53,18.400000000000002,18.26,18.12,17.84,N/A,N/A +2013,5,1,11,30,93560,92470,91410,88.43,0,3.02,5.15,6.25,7.03,7.69,8.25,8.78,9.28,10.24,149.12,152.41,154.46,155.9,157.08,158.08,158.97,159.8,161.28,19.37,19.18,19.06,18.900000000000002,18.740000000000002,18.580000000000002,18.41,18.26,17.94,N/A,N/A +2013,5,1,12,30,93660,92570,91510,88.99,0,2.64,3.85,4.3500000000000005,4.79,5.19,5.5600000000000005,5.91,6.24,6.95,195.95000000000002,191.77,189.66,188.07,186.79,185.73,184.93,184.24,183.20000000000002,20.01,19.73,19.56,19.38,19.19,19.01,18.81,18.62,18.22,N/A,N/A +2013,5,1,13,30,93680,92590,91530,87.09,0,4.09,5.2700000000000005,5.62,5.91,6.140000000000001,6.32,6.45,6.5600000000000005,6.7700000000000005,164.97,165.35,165.51,165.72,166.05,166.45000000000002,166.59,166.70000000000002,167.14000000000001,20.3,19.990000000000002,19.81,19.63,19.44,19.27,19.080000000000002,18.900000000000002,18.53,N/A,N/A +2013,5,1,14,30,93690,92600,91540,77.19,0,4.46,5.55,5.88,6.07,6.19,6.2700000000000005,6.32,6.3500000000000005,6.38,162.54,162.93,163.09,163.22,163.35,163.47,163.59,163.70000000000002,163.96,21.52,20.93,20.7,20.47,20.26,20.06,19.86,19.67,19.28,N/A,N/A +2013,5,1,15,30,93690,92610,91560,71.31,0,4.54,5.55,5.83,5.97,6.05,6.1000000000000005,6.11,6.12,6.09,182.49,182.45000000000002,182.37,182.31,182.25,182.22,182.18,182.15,182.14000000000001,22.63,21.94,21.67,21.42,21.2,20.990000000000002,20.78,20.59,20.2,N/A,N/A +2013,5,1,16,30,93720,92640,91590,62.660000000000004,0,4.13,5.0200000000000005,5.26,5.36,5.42,5.44,5.44,5.44,5.38,173.73,174.47,174.86,175.20000000000002,175.53,175.83,176.15,176.46,177.18,24.080000000000002,23.37,23.09,22.830000000000002,22.61,22.400000000000002,22.19,22,21.61,N/A,N/A +2013,5,1,17,30,93700,92630,91590,53.71,0,2.94,3.52,3.66,3.71,3.74,3.74,3.73,3.72,3.66,180.3,180.37,180.36,180.35,180.35,180.37,180.42000000000002,180.46,180.62,26.01,25.35,25.060000000000002,24.8,24.57,24.36,24.150000000000002,23.95,23.55,N/A,N/A +2013,5,1,18,30,93690,92620,91590,45.88,0,2.92,3.5100000000000002,3.65,3.71,3.75,3.77,3.77,3.77,3.73,174.66,176.19,177.07,177.86,178.56,179.20000000000002,179.83,180.42000000000002,181.57,28.11,27.44,27.14,26.88,26.650000000000002,26.43,26.21,26.01,25.61,N/A,N/A +2013,5,1,19,30,93650,92590,91570,35.81,0,2.05,2.39,2.47,2.49,2.5,2.49,2.49,2.48,2.45,210.4,210.88,211.15,211.5,211.88,212.28,212.73000000000002,213.16,214.14000000000001,30.1,29.490000000000002,29.19,28.93,28.7,28.48,28.27,28.07,27.67,N/A,N/A +2013,5,1,20,30,93610,92560,91540,28.6,0,1.12,1.26,1.28,1.27,1.27,1.26,1.26,1.25,1.23,257.09000000000003,257.56,257.82,258.11,258.41,258.75,259.11,259.49,260.36,31.830000000000002,31.25,30.970000000000002,30.71,30.490000000000002,30.27,30.060000000000002,29.85,29.45,N/A,N/A +2013,5,1,21,30,93570,92520,91500,23.34,0,0.77,0.81,0.78,0.77,0.75,0.73,0.72,0.7000000000000001,0.6900000000000001,282.47,284.53000000000003,285.72,286.75,287.7,288.65000000000003,289.59000000000003,290.48,292.13,32.86,32.29,32.03,31.79,31.57,31.36,31.150000000000002,30.96,30.560000000000002,N/A,N/A +2013,5,1,22,30,93540,92500,91480,20.740000000000002,0,2.22,2.42,2.39,2.33,2.25,2.18,2.11,2.05,1.9100000000000001,141.1,141.05,141.03,140.99,140.91,140.81,140.65,140.46,140.05,33.61,33.03,32.78,32.54,32.32,32.11,31.900000000000002,31.7,31.3,N/A,N/A +2013,5,1,23,30,93500,92460,91440,21.47,0,3.22,3.89,4.04,4.1,4.14,4.15,4.14,4.13,4.09,181.44,181.72,181.78,181.76,181.76,181.74,181.73,181.72,181.71,33.65,33.12,32.9,32.67,32.46,32.25,32.04,31.85,31.45,N/A,N/A +2013,5,2,0,30,93450,92400,91390,29.28,0,6.44,8.13,8.53,8.73,8.870000000000001,8.94,8.98,8.99,8.98,183.42000000000002,183.72,183.92000000000002,184.16,184.4,184.67000000000002,184.95000000000002,185.25,185.87,32.1,31.73,31.55,31.34,31.150000000000002,30.95,30.76,30.57,30.19,N/A,N/A +2013,5,2,1,30,93580,92520,91500,31.88,0,4.24,6.34,7.22,8,8.44,8.63,8.76,8.85,9.03,153.42000000000002,148.57,146.66,146.87,147.98,149.62,151.18,152.6,154.82,28.45,28.77,29.07,29.490000000000002,29.52,29.330000000000002,29.13,28.94,28.55,N/A,N/A +2013,5,2,2,30,93620,92560,91530,39.71,0,4.69,6.79,7.51,8.08,8.56,8.97,9.32,9.63,10.13,167.56,169.39000000000001,170.36,171.4,172.53,173.69,175.03,176.31,179.03,27.88,27.75,27.650000000000002,27.54,27.43,27.34,27.240000000000002,27.150000000000002,26.96,N/A,N/A +2013,5,2,3,30,93800,92730,91690,40.82,0,4.62,6.01,6.12,5.96,5.5600000000000005,5,4.0200000000000005,3.16,1.81,19.63,18.88,18.88,19.64,21.47,23.96,30.44,36.43,68.99,27.07,27,26.89,26.73,26.560000000000002,26.37,26.18,26,25.650000000000002,N/A,N/A +2013,5,2,4,30,93930,92840,91790,40.38,0,7.95,10.59,11.39,11.91,12.290000000000001,12.59,12.52,12.36,11.36,85.69,83.56,82.55,81.74,80.88,80.07000000000001,77.86,75.73,71.14,22.76,22.36,22.16,21.97,21.85,21.77,22.16,22.580000000000002,23.63,N/A,N/A +2013,5,2,5,30,94000,92910,91850,46.82,0,6.44,8.71,9.51,10.18,10.74,11.23,11.68,12.08,12.74,99.39,97.92,97.08,96.37,95.79,95.3,94.93,94.61,94.26,22.25,22.01,21.87,21.72,21.56,21.42,21.28,21.150000000000002,20.95,N/A,N/A +2013,5,2,6,30,94160,93060,92000,49.01,0,3.81,5.64,6.38,7.04,7.6000000000000005,8.08,8.5,8.88,9.55,51.910000000000004,52.870000000000005,53.69,54.43,55.14,55.83,56.550000000000004,57.24,58.63,21.87,21.72,21.59,21.43,21.26,21.09,20.91,20.740000000000002,20.38,N/A,N/A +2013,5,2,7,30,94240,93140,92080,53.07,0,3.56,5.93,6.94,7.82,8.55,9.17,9.700000000000001,10.17,10.97,35.44,35.11,35.17,35.660000000000004,36.37,37.12,37.96,38.76,40.26,21.02,20.89,20.78,20.64,20.490000000000002,20.35,20.19,20.04,19.72,N/A,N/A +2013,5,2,8,30,94390,93290,92210,71.15,0,6.86,9.31,10.11,10.73,11.22,11.64,11.98,12.280000000000001,12.8,43.95,43.34,43.15,43.12,43.17,43.25,43.410000000000004,43.57,44.03,19.13,18.85,18.68,18.48,18.28,18.09,17.89,17.69,17.29,N/A,N/A +2013,5,2,9,30,94470,93360,92280,71.87,0,8.56,10.98,11.68,12.15,12.5,12.780000000000001,13.02,13.23,13.61,47.51,47.56,47.65,47.78,47.92,48.06,48.24,48.42,48.84,18.650000000000002,18.29,18.1,17.900000000000002,17.7,17.52,17.31,17.13,16.75,N/A,N/A +2013,5,2,10,30,94670,93550,92450,52.79,0,8.57,11.02,11.75,12.23,12.57,12.82,13.01,13.16,13.36,19.91,20.12,20.3,20.47,20.63,20.78,20.94,21.1,21.45,15.63,15.22,15.01,14.8,14.58,14.39,14.17,13.97,13.57,N/A,N/A +2013,5,2,11,30,94840,93700,92600,52.69,0,7.21,9.4,10.06,10.5,10.81,11.06,11.24,11.39,11.6,13.83,14.33,14.63,14.86,15.05,15.200000000000001,15.33,15.46,15.69,13.69,13.26,13.040000000000001,12.83,12.620000000000001,12.42,12.21,12,11.6,N/A,N/A +2013,5,2,12,30,94960,93820,92710,54.160000000000004,0,7.51,9.85,10.6,11.11,11.48,11.78,12,12.17,12.43,4.66,6.25,7.09,7.69,8.15,8.53,8.82,9.07,9.48,12.31,11.870000000000001,11.64,11.42,11.200000000000001,10.99,10.77,10.57,10.15,N/A,N/A +2013,5,2,13,30,95080,93930,92810,52.88,0,6.8500000000000005,8.94,9.63,10.1,10.450000000000001,10.73,10.950000000000001,11.13,11.42,355.01,355.61,356.03000000000003,356.37,356.65000000000003,356.87,357.06,357.22,357.48,11.200000000000001,10.77,10.56,10.35,10.14,9.94,9.73,9.53,9.13,N/A,N/A +2013,5,2,14,30,95200,94040,92920,55.300000000000004,0,7.71,9.99,10.66,11.11,11.42,11.67,11.86,12.01,12.23,355.83,356.58,357.06,357.45,357.8,358.09000000000003,358.37,358.62,359.07,10.09,9.64,9.41,9.21,8.98,8.78,8.57,8.370000000000001,7.96,N/A,N/A +2013,5,2,15,30,95320,94160,93030,56.77,0,8.59,11.14,11.89,12.4,12.76,13.040000000000001,13.24,13.41,13.64,355.36,356.28000000000003,356.76,357.14,357.46,357.73,357.98,358.19,358.59000000000003,9.34,8.88,8.66,8.44,8.22,8.02,7.8,7.6000000000000005,7.2,N/A,N/A +2013,5,2,16,30,95450,94280,93150,55.5,0,8.84,11.34,12.14,12.66,13.030000000000001,13.32,13.530000000000001,13.71,13.96,353.56,354.18,354.57,354.89,355.18,355.42,355.65000000000003,355.87,356.25,8.870000000000001,8.42,8.2,7.99,7.7700000000000005,7.57,7.36,7.16,6.76,N/A,N/A +2013,5,2,17,30,95460,94290,93160,55.33,0,8.63,11.07,11.78,12.25,12.57,12.81,12.99,13.13,13.33,352.02,352.23,352.35,352.46,352.54,352.61,352.66,352.69,352.73,8.27,7.8100000000000005,7.59,7.38,7.16,6.96,6.75,6.55,6.15,N/A,N/A +2013,5,2,18,30,95520,94350,93220,54.6,0,8.620000000000001,11.05,11.76,12.23,12.56,12.81,12.99,13.15,13.38,351.83,352.61,352.98,353.27,353.51,353.73,353.91,354.08,354.39,7.87,7.41,7.19,6.97,6.76,6.55,6.34,6.140000000000001,5.74,N/A,N/A +2013,5,2,19,30,95570,94400,93260,53.22,0,8.6,11.09,11.870000000000001,12.38,12.74,13.030000000000001,13.24,13.42,13.68,354.08,354.92,355.3,355.59000000000003,355.84000000000003,356.04,356.23,356.39,356.69,7.68,7.23,7,6.79,6.57,6.37,6.16,5.96,5.55,N/A,N/A +2013,5,2,20,30,95570,94400,93260,52.01,0,8.33,10.65,11.33,11.77,12.05,12.26,12.41,12.530000000000001,12.67,349.66,350.57,351.03000000000003,351.42,351.77,352.07,352.36,352.63,353.13,7.8,7.32,7.1000000000000005,6.88,6.66,6.46,6.25,6.05,5.64,N/A,N/A +2013,5,2,21,30,95540,94370,93230,52.6,0,7.930000000000001,10.16,10.82,11.26,11.57,11.81,11.99,12.14,12.36,353.91,354.11,354.23,354.33,354.41,354.48,354.53000000000003,354.59000000000003,354.68,7.74,7.2700000000000005,7.05,6.84,6.62,6.42,6.21,6.01,5.61,N/A,N/A +2013,5,2,22,30,95550,94380,93240,50.59,0,6.44,8.24,8.82,9.200000000000001,9.47,9.68,9.85,9.98,10.19,355.55,355.77,355.90000000000003,356.02,356.13,356.24,356.34000000000003,356.43,356.62,8.19,7.74,7.5200000000000005,7.3100000000000005,7.1000000000000005,6.9,6.69,6.49,6.09,N/A,N/A +2013,5,2,23,30,95510,94340,93210,50.61,0,6.33,8.08,8.620000000000001,8.97,9.21,9.41,9.55,9.67,9.85,356.53000000000003,356.62,356.67,356.71,356.74,356.76,356.77,356.78000000000003,356.78000000000003,8.31,7.88,7.66,7.45,7.24,7.04,6.84,6.640000000000001,6.24,N/A,N/A +2013,5,3,0,30,95470,94310,93180,50.410000000000004,0,5.54,7.11,7.59,7.9,8.120000000000001,8.290000000000001,8.42,8.52,8.69,356.07,356.45,356.68,356.89,357.09000000000003,357.26,357.44,357.61,357.95,8.55,8.17,7.96,7.76,7.55,7.36,7.15,6.96,6.57,N/A,N/A +2013,5,3,1,30,95520,94350,93220,55.18,0,2.52,4.39,5.12,5.68,6.12,6.48,6.7700000000000005,7.0200000000000005,7.4,342.75,347.88,351.13,353.39,354.86,355.99,356.72,357.33,358.28000000000003,7.97,8.01,7.9,7.73,7.55,7.37,7.17,6.98,6.59,N/A,N/A +2013,5,3,2,30,95530,94360,93230,58.72,0,2.29,4.26,4.95,5.47,5.86,6.18,6.42,6.63,6.94,325,332.75,337.15000000000003,340.05,342.06,343.66,344.94,346.11,348.34000000000003,7.41,7.71,7.69,7.6000000000000005,7.46,7.33,7.17,7.01,6.68,N/A,N/A +2013,5,3,3,30,95580,94410,93270,62.230000000000004,0,1.69,3.59,4.38,5.04,5.48,5.82,6.05,6.23,6.5200000000000005,313.86,321.84000000000003,326.31,328.73,330.19,331.35,332.77,334.55,339.67,6.96,7.44,7.48,7.48,7.42,7.34,7.23,7.12,6.9,N/A,N/A +2013,5,3,4,30,95600,94430,93300,64.26,0,2.15,4.5,5.45,6.21,6.7,7.07,7.2700000000000005,7.63,8.61,301.44,315.06,322.3,326.01,329.37,332.54,336.85,343.11,357.68,6.41,7.29,7.53,7.72,7.83,7.9,7.86,7.86,7.9,N/A,N/A +2013,5,3,5,30,95610,94440,93310,61.33,0,3.16,5.19,5.87,6.47,7.17,7.8100000000000005,8.24,8.55,9.05,306.92,316.16,325.40000000000003,336.78000000000003,347.35,356.85,4.2700000000000005,10.44,19.28,6.55,7.26,7.58,7.88,8.09,8.24,8.23,8.14,7.7700000000000005,N/A,N/A +2013,5,3,6,30,95630,94460,93330,65.91,0,2.89,4.8500000000000005,5.34,5.7700000000000005,6.3500000000000005,6.95,7.58,8.1,8.85,311.15000000000003,319.07,326.28000000000003,334.76,344.23,353.16,0.21,6.11,14.61,6.24,7.12,7.33,7.48,7.59,7.65,7.62,7.5600000000000005,7.29,N/A,N/A +2013,5,3,7,30,95680,94500,93370,70.5,0,2.33,3.98,4.46,4.98,5.61,6.2,6.72,7.22,8.120000000000001,294.96,316.77,332.16,347.65000000000003,355.79,1.86,5.8100000000000005,9.290000000000001,14.32,5.36,6.32,6.5600000000000005,6.7700000000000005,6.88,6.95,6.93,6.87,6.640000000000001,N/A,N/A +2013,5,3,8,30,95700,94520,93380,72.19,0,1.53,3.43,4.24,4.86,5.76,6.67,7.44,8.08,9.1,280.79,304.26,320.89,334.84000000000003,345.37,354.62,1.3900000000000001,7.17,15.63,4.7,5.62,5.84,6.04,6.17,6.25,6.2700000000000005,6.25,6.1000000000000005,N/A,N/A +2013,5,3,9,30,95670,94490,93350,67.44,0,2.2600000000000002,4.7,5.63,6.3500000000000005,6.91,7.390000000000001,7.8500000000000005,8.27,8.99,328.90000000000003,330.48,332.42,335.03000000000003,340.11,345.40000000000003,351.35,356.34000000000003,4.71,4.33,5.2700000000000005,5.46,5.64,5.79,5.91,6.01,6.0600000000000005,6.05,N/A,N/A +2013,5,3,10,30,95670,94480,93340,71.71000000000001,0,1.22,1.83,2.35,3.46,4.25,4.95,5.6000000000000005,6.2,7.25,218.23000000000002,290.40000000000003,321.44,346.04,355.07,0.44,4.03,6.7700000000000005,10.38,3.23,3.79,4.08,4.5200000000000005,4.7,4.8,4.8500000000000005,4.91,5.01,N/A,N/A +2013,5,3,11,30,95630,94440,93300,68.99,0,1.27,2.8000000000000003,3.62,4.53,5.3500000000000005,6.0600000000000005,6.54,6.94,7.57,265.97,307.7,326.07,332.75,337.11,340.98,344.67,348.06,353.64,2.83,3.85,4.11,4.32,4.58,4.8100000000000005,4.97,5.11,5.2700000000000005,N/A,N/A +2013,5,3,12,30,95650,94460,93310,71.3,0,2.38,2.44,2.5100000000000002,3.11,3.7600000000000002,4.4,5,5.55,6.45,222.27,260.66,285.71,317.62,328.74,335.43,340.05,343.86,349.22,2.54,3.35,3.59,3.87,3.94,4,4.16,4.33,4.66,N/A,N/A +2013,5,3,13,30,95610,94430,93280,53.35,0,1.76,1.85,1.93,2.11,2.58,3.11,3.69,4.2700000000000005,5.36,255.18,264.09000000000003,279.21,301.24,313.3,322.83,327.91,331.79,336.81,4.66,4.4,4.37,4.41,4.38,4.37,4.47,4.58,4.8,N/A,N/A +2013,5,3,14,30,95570,94400,93270,35.54,0,3.18,3.98,4.24,4.4,4.5200000000000005,4.61,4.68,4.73,4.8500000000000005,306.71,311.09000000000003,313.6,315.65000000000003,317.52,319.17,320.81,322.35,325.48,8.51,8.01,7.78,7.58,7.38,7.2,7.01,6.83,6.46,N/A,N/A +2013,5,3,15,30,95520,94360,93240,27.12,0,3.41,4.16,4.39,4.51,4.6000000000000005,4.66,4.7,4.74,4.79,332.56,333.42,333.96,334.43,334.88,335.29,335.71,336.11,336.90000000000003,10.36,9.76,9.49,9.25,9.03,8.82,8.61,8.4,8,N/A,N/A +2013,5,3,16,30,95430,94280,93160,23.900000000000002,0,3.49,4.21,4.43,4.54,4.62,4.68,4.72,4.75,4.79,326.99,327.90000000000003,328.5,329.02,329.5,329.92,330.36,330.76,331.56,11.64,11,10.71,10.46,10.22,10.01,9.790000000000001,9.58,9.18,N/A,N/A +2013,5,3,17,30,95330,94180,93070,21.3,0,2.9,3.46,3.6,3.68,3.73,3.7600000000000002,3.7800000000000002,3.8000000000000003,3.83,301.64,304.13,305.65000000000003,306.91,308.08,309.13,310.2,311.19,313.09000000000003,12.93,12.31,12.01,11.76,11.53,11.31,11.09,10.88,10.48,N/A,N/A +2013,5,3,18,30,95200,94060,92950,18.01,0,2.97,3.5,3.64,3.71,3.75,3.7800000000000002,3.79,3.81,3.8200000000000003,303.79,306.25,307.81,309.17,310.40000000000003,311.48,312.55,313.53000000000003,315.47,14.55,13.93,13.63,13.370000000000001,13.120000000000001,12.9,12.68,12.47,12.05,N/A,N/A +2013,5,3,19,30,95090,93960,92860,15.8,0,2.2800000000000002,2.72,2.85,2.92,2.98,3.02,3.0500000000000003,3.08,3.13,304.75,306.08,306.99,307.74,308.41,308.99,309.57,310.09000000000003,311.09000000000003,15.780000000000001,15.200000000000001,14.9,14.63,14.39,14.17,13.950000000000001,13.74,13.32,N/A,N/A +2013,5,3,20,30,94940,93810,92720,14.61,0,2.48,2.98,3.13,3.22,3.29,3.34,3.38,3.42,3.47,298.83,300.58,301.63,302.45,303.14,303.75,304.34000000000003,304.87,305.86,16.8,16.21,15.91,15.65,15.42,15.200000000000001,14.98,14.77,14.36,N/A,N/A +2013,5,3,21,30,94820,93690,92600,15.65,0,1.6300000000000001,1.96,2.06,2.11,2.16,2.2,2.23,2.2600000000000002,2.3000000000000003,304.18,303.8,303.42,303.03000000000003,302.68,302.35,302,301.69,301.11,17.580000000000002,17.02,16.75,16.5,16.27,16.07,15.85,15.65,15.24,N/A,N/A +2013,5,3,22,30,94690,93580,92490,15.21,0,1.07,1.36,1.46,1.54,1.61,1.67,1.72,1.77,1.86,306.85,304.24,302.82,301.8,300.95,300.23,299.62,299.07,298.13,18.400000000000002,17.87,17.61,17.37,17.150000000000002,16.94,16.72,16.52,16.11,N/A,N/A +2013,5,3,23,30,94610,93500,92410,14.530000000000001,0,1.3900000000000001,1.68,1.77,1.83,1.8800000000000001,1.9100000000000001,1.94,1.97,2.0100000000000002,290.42,291.83,292.51,292.98,293.32,293.59000000000003,293.81,294,294.26,18.8,18.31,18.080000000000002,17.85,17.64,17.44,17.23,17.03,16.63,N/A,N/A +2013,5,4,0,30,94540,93420,92340,15.68,0,0.78,1,1.09,1.1500000000000001,1.21,1.26,1.31,1.35,1.43,247.97,249.66,250.68,251.4,251.98000000000002,252.46,252.86,253.20000000000002,253.72,18.72,18.36,18.17,17.97,17.77,17.580000000000002,17.37,17.18,16.79,N/A,N/A +2013,5,4,1,30,94490,93380,92290,20.66,0,0.32,0.8300000000000001,1.07,1.16,1.2,1.21,1.21,1.22,1.26,298.61,298.19,296.77,294.69,292.39,290.14,287.75,285.59000000000003,281.49,17.330000000000002,17.96,17.92,17.8,17.64,17.48,17.29,17.12,16.73,N/A,N/A +2013,5,4,2,30,94480,93370,92280,22.92,0,1.26,1.43,1.26,1.18,1.1400000000000001,1.11,1.07,1.03,0.9400000000000001,185.82,195.43,199.63,202.29,203.75,204.64000000000001,206.87,209.12,214.9,16.27,17.2,17.23,17.09,16.95,16.82,16.67,16.53,16.23,N/A,N/A +2013,5,4,3,30,94470,93350,92260,22.46,0,3.25,5.83,6.41,6.36,5.98,5.51,4.8,4.26,3.66,172.28,182.26,188.48,192.31,195.21,197.4,199.97,201.85,204.02,15.43,16.35,16.57,16.7,16.72,16.69,16.62,16.53,16.25,N/A,N/A +2013,5,4,4,30,94430,93300,92210,26.650000000000002,0,2.22,4.62,5.57,6.32,6.82,7.18,7.2700000000000005,7.26,6.78,180.91,189.99,195.63,199.17000000000002,201.70000000000002,203.64000000000001,204.63,205.42000000000002,206.52,13.86,14.8,14.93,15.05,15.14,15.21,15.24,15.25,15.18,N/A,N/A +2013,5,4,5,30,94410,93280,92190,27.71,0,2.35,4.5,5.24,5.88,6.33,6.67,6.82,6.92,6.83,176.39000000000001,185.54,191.09,194.61,197.18,199.22,200.43,201.45000000000002,203.01,13.18,14.4,14.65,14.86,15,15.1,15.14,15.16,15.09,N/A,N/A +2013,5,4,6,30,94390,93260,92170,28.53,0,1.94,3.86,4.57,5.19,5.66,6.05,6.26,6.41,6.48,174.25,184.51,190.51,194.26,196.79,198.73000000000002,200.06,201.20000000000002,203.02,12.48,13.790000000000001,14.07,14.31,14.49,14.63,14.72,14.780000000000001,14.790000000000001,N/A,N/A +2013,5,4,7,30,94400,93270,92170,29.490000000000002,0,1.33,2.86,3.64,4.5200000000000005,5.3,6.01,6.49,6.87,7.16,155.77,174.01,184.6,189.77,192.52,194.23000000000002,195.01,195.66,196.47,11.68,12.780000000000001,12.93,13.07,13.19,13.3,13.41,13.5,13.64,N/A,N/A +2013,5,4,8,30,94390,93250,92150,33.12,0,1.5,2.62,3.16,4.01,4.91,5.84,6.48,7.05,7.79,122.2,157.22,175.47,186.66,191.97,194.97,195.49,195.79,195.58,10.33,11.52,11.75,11.950000000000001,12.16,12.35,12.47,12.58,12.75,N/A,N/A +2013,5,4,9,30,94360,93220,92120,33.96,0,1.1300000000000001,1.77,2.11,2.81,3.52,4.24,4.9,5.5200000000000005,6.54,114.87,156.3,175.23,186.29,191.24,193.94,194.8,195.44,195.72,9.86,11.120000000000001,11.34,11.49,11.59,11.67,11.74,11.8,11.94,N/A,N/A +2013,5,4,10,30,94330,93190,92090,36.62,0,1.62,2.68,3.11,3.83,4.47,5.0600000000000005,5.64,6.19,7.17,143.34,171.57,184.01,189.68,191.70000000000002,192.62,192.9,193.02,192.68,9.16,10.540000000000001,10.85,11.11,11.23,11.31,11.38,11.450000000000001,11.6,N/A,N/A +2013,5,4,11,30,94350,93200,92090,39.29,0,1.27,1.84,2.07,2.61,3.21,3.83,4.45,5.05,6.16,125.64,161.87,178.3,188,191.59,193.04,192.95000000000002,192.77,191.98000000000002,8.28,9.81,10.15,10.38,10.51,10.6,10.68,10.77,10.97,N/A,N/A +2013,5,4,12,30,94350,93200,92100,41.44,0,1.1400000000000001,1.75,1.94,2.2600000000000002,2.67,3.1,3.5700000000000003,4.04,4.98,117.63,147.75,163.86,176.04,181.76,185.3,186.12,186.65,186.71,7.57,9.06,9.44,9.72,9.91,10.05,10.16,10.26,10.44,N/A,N/A +2013,5,4,13,30,94350,93200,92100,32.53,0,0.8,0.81,1,1.59,2.18,2.77,3.36,3.96,5.1000000000000005,104.32000000000001,130.79,147.16,168.96,176.55,178.6,179.14000000000001,179.48,179.37,9.5,9.28,9.35,9.58,9.76,9.9,10.05,10.19,10.47,N/A,N/A +2013,5,4,14,30,94340,93200,92100,26.42,0,1.49,1.81,1.93,2.0300000000000002,2.14,2.24,2.33,2.47,3.13,120.58,130.77,137.26,143.03,148.21,152.85,156.77,160.52,167.95000000000002,12.98,12.55,12.36,12.18,12.01,11.86,11.700000000000001,11.55,11.25,N/A,N/A +2013,5,4,15,30,94320,93200,92110,21.09,0,2.8000000000000003,3.43,3.62,3.72,3.7800000000000002,3.8200000000000003,3.85,3.87,3.9,150.65,152.49,153.66,154.65,155.61,156.47,157.41,158.3,160.21,15.98,15.43,15.19,14.97,14.76,14.58,14.38,14.200000000000001,13.84,N/A,N/A +2013,5,4,16,30,94280,93170,92090,17.87,0,3.12,3.81,4.03,4.14,4.2,4.24,4.2700000000000005,4.28,4.29,162.71,163.22,163.51,163.73,163.94,164.12,164.32,164.49,164.89000000000001,18.490000000000002,17.88,17.6,17.37,17.14,16.94,16.73,16.54,16.16,N/A,N/A +2013,5,4,17,30,94250,93140,92070,15,0,3.5700000000000003,4.34,4.57,4.68,4.75,4.79,4.8100000000000005,4.82,4.82,160.94,161.33,161.54,161.67000000000002,161.77,161.87,161.95000000000002,162.04,162.19,20.5,19.85,19.55,19.3,19.06,18.85,18.63,18.43,18.03,N/A,N/A +2013,5,4,18,30,94190,93090,92020,13.21,0,3.7,4.47,4.7,4.8100000000000005,4.87,4.91,4.93,4.95,4.95,160.27,160.53,160.69,160.77,160.84,160.89000000000001,160.93,160.97,161.03,21.98,21.32,21.01,20.740000000000002,20.5,20.28,20.06,19.85,19.44,N/A,N/A +2013,5,4,19,30,94130,93030,91970,12.1,0,3.62,4.39,4.62,4.73,4.8,4.8500000000000005,4.88,4.9,4.93,157.52,157.69,157.77,157.79,157.79,157.78,157.77,157.75,157.71,23.01,22.34,22.04,21.77,21.53,21.31,21.09,20.88,20.46,N/A,N/A +2013,5,4,20,30,94060,92970,91910,11.92,0,3.91,4.75,5.01,5.14,5.23,5.29,5.33,5.36,5.39,152.61,152.69,152.74,152.74,152.73,152.71,152.68,152.65,152.58,23.87,23.18,22.89,22.62,22.38,22.16,21.93,21.73,21.31,N/A,N/A +2013,5,4,21,30,93990,92900,91850,11.9,0,4.03,4.91,5.17,5.3100000000000005,5.39,5.45,5.48,5.51,5.53,148.81,149,149.08,149.1,149.09,149.08,149.07,149.05,148.98,24.36,23.69,23.41,23.150000000000002,22.91,22.69,22.47,22.26,21.85,N/A,N/A +2013,5,4,22,30,93950,92860,91810,11.73,0,3.72,4.54,4.8,4.92,5,5.0600000000000005,5.1000000000000005,5.13,5.16,146.6,146.49,146.4,146.25,146.12,146,145.85,145.72,145.46,24.61,23.990000000000002,23.73,23.490000000000002,23.26,23.05,22.830000000000002,22.63,22.22,N/A,N/A +2013,5,4,23,30,93940,92860,91800,13.07,0,3.94,4.86,5.15,5.3100000000000005,5.41,5.48,5.53,5.57,5.62,141.62,141.54,141.56,141.56,141.56,141.55,141.55,141.55,141.57,24.63,24.09,23.85,23.62,23.41,23.2,22.98,22.79,22.38,N/A,N/A +2013,5,5,0,30,93960,92870,91810,12.52,0,3.63,4.57,4.86,5.0200000000000005,5.14,5.22,5.2700000000000005,5.32,5.37,141.68,141.61,141.52,141.41,141.29,141.16,141.04,140.93,140.70000000000002,24.2,23.85,23.66,23.45,23.25,23.06,22.85,22.66,22.26,N/A,N/A +2013,5,5,1,30,93980,92890,91830,16.92,0,2.86,5.14,5.87,6.38,6.71,6.95,7.07,7.16,7.22,137.25,137.15,137.14000000000001,137.29,137.49,137.70000000000002,137.78,137.82,137.65,22.330000000000002,22.87,22.91,22.830000000000002,22.69,22.53,22.330000000000002,22.150000000000002,21.75,N/A,N/A +2013,5,5,2,30,94030,92940,91880,18.740000000000002,0,3.19,5.5,6.32,7.0200000000000005,7.48,7.79,7.9,7.94,7.86,139.56,139.73,139.94,140.31,140.57,140.76,140.58,140.34,139.32,20.97,21.57,21.76,21.91,21.95,21.95,21.84,21.72,21.39,N/A,N/A +2013,5,5,3,30,94060,92970,91900,22.03,0,3.0500000000000003,5.36,6.16,6.93,7.51,7.97,8.14,8.22,7.98,144.05,143.39000000000001,143.09,143.17000000000002,143.3,143.47,143.42000000000002,143.33,142.81,19.84,20.63,20.88,21.09,21.23,21.32,21.31,21.28,21.080000000000002,N/A,N/A +2013,5,5,4,30,94100,93000,91930,21.84,0,3.31,5.72,6.48,7.11,7.57,7.930000000000001,8.09,8.19,8.07,143.73,145.49,146.5,147.06,147.48,147.83,147.92000000000002,147.94,147.29,19.25,20.12,20.36,20.54,20.66,20.76,20.81,20.84,20.79,N/A,N/A +2013,5,5,5,30,94130,93030,91960,24.44,0,3.44,5.94,6.7,7.3100000000000005,7.75,8.09,8.22,8.27,8,135.82,140.89000000000001,143.78,145.55,146.8,147.77,148.3,148.67000000000002,148.53,18.26,19.26,19.56,19.8,20,20.17,20.28,20.37,20.38,N/A,N/A +2013,5,5,6,30,94180,93070,92000,28.310000000000002,0,2.65,4.66,5.15,5.59,5.98,6.33,6.51,6.640000000000001,6.59,137.02,141.62,144.45000000000002,146.77,148.87,150.79,152.04,153.01,153.47,17.35,18.7,19.01,19.28,19.5,19.7,19.85,19.97,20.05,N/A,N/A +2013,5,5,7,30,94270,93160,92090,30.35,0,1.44,3.31,4.22,5.09,5.8,6.4,6.86,7.26,7.83,87.96000000000001,83.5,80.69,79.47,78.87,78.58,78.89,79.22,80.31,16.39,17.86,18.28,18.68,18.95,19.16,19.22,19.240000000000002,19.07,N/A,N/A +2013,5,5,8,30,94320,93200,92120,32.51,0,1.05,2.0100000000000002,2.7,4.17,5.58,6.93,7.57,8.01,7.83,188.92000000000002,136.25,109.38,98.54,93.17,91.05,91.11,91.5,93.85000000000001,14.98,15.790000000000001,15.85,15.94,16.1,16.29,16.55,16.79,17.21,N/A,N/A +2013,5,5,9,30,94360,93230,92150,39.02,0,1.2,3.23,4.5,5.76,6.92,8.01,8.950000000000001,9.81,11.09,99.46000000000001,88.9,83.04,82.09,82.18,82.76,83.95,85.22,88.33,14.39,15.34,15.43,15.5,15.58,15.66,15.76,15.860000000000001,16.1,N/A,N/A +2013,5,5,10,30,94390,93260,92170,43.800000000000004,0,2.95,5.89,7.05,8.17,9.18,10.120000000000001,10.96,11.72,12.82,70.78,72.42,73.46000000000001,74.32000000000001,75.24,76.15,77.29,78.42,80.98,13.530000000000001,14.27,14.26,14.24,14.22,14.200000000000001,14.200000000000001,14.22,14.35,N/A,N/A +2013,5,5,11,30,94500,93370,92270,47.59,0,0.93,1.6400000000000001,1.98,2.59,3.29,4.04,4.82,5.61,7.12,326.91,14.98,40.01,55.92,64.87,71.09,73.67,75.89,78.22,12.44,13.290000000000001,13.26,13.14,13.02,12.91,12.790000000000001,12.68,12.5,N/A,N/A +2013,5,5,12,30,94560,93420,92320,45.13,0,1.69,3.27,3.83,4.38,5.04,5.73,6.47,7.21,8.71,18.69,38.160000000000004,50.49,60.93,66.49,70.38,72.24,73.79,75.63,11.25,11.950000000000001,11.97,11.93,11.86,11.8,11.71,11.64,11.49,N/A,N/A +2013,5,5,13,30,94620,93490,92380,34.24,0,3.19,4.07,4.39,4.62,4.82,4.99,5.17,5.36,5.82,58.92,59.93,60.75,61.65,62.5,63.28,64.11,64.9,66.46000000000001,13.280000000000001,12.9,12.71,12.51,12.31,12.13,11.92,11.73,11.31,N/A,N/A +2013,5,5,14,30,94650,93520,92430,35.17,0,4.32,5.29,5.57,5.73,5.83,5.9,5.96,6,6.08,62.550000000000004,63.050000000000004,63.440000000000005,63.84,64.23,64.58,64.98,65.35,66.19,14.94,14.38,14.15,13.93,13.72,13.530000000000001,13.32,13.13,12.75,N/A,N/A +2013,5,5,15,30,94690,93570,92470,33.58,0,4.46,5.43,5.72,5.87,5.97,6.04,6.08,6.11,6.140000000000001,60.75,61.300000000000004,61.660000000000004,62.01,62.370000000000005,62.690000000000005,63.04,63.370000000000005,64.09,16.85,16.21,15.94,15.700000000000001,15.48,15.280000000000001,15.07,14.870000000000001,14.48,N/A,N/A +2013,5,5,16,30,94670,93550,92470,30.07,0,4.7700000000000005,5.8100000000000005,6.12,6.28,6.38,6.46,6.5,6.54,6.58,73.25,73.45,73.57000000000001,73.71000000000001,73.85000000000001,74,74.15,74.3,74.62,18.81,18.1,17.81,17.55,17.31,17.1,16.88,16.68,16.27,N/A,N/A +2013,5,5,17,30,94630,93520,92440,27.27,0,4.3100000000000005,5.24,5.51,5.66,5.76,5.82,5.87,5.9,5.95,87.74,87.76,87.74,87.71000000000001,87.69,87.67,87.65,87.63,87.59,20.32,19.61,19.3,19.04,18.79,18.57,18.35,18.14,17.73,N/A,N/A +2013,5,5,18,30,94590,93490,92410,24.44,0,3.52,4.23,4.43,4.5200000000000005,4.57,4.61,4.63,4.64,4.66,100.34,99.91,99.61,99.32000000000001,99.07000000000001,98.83,98.58,98.35000000000001,97.87,21.490000000000002,20.82,20.52,20.26,20.02,19.8,19.580000000000002,19.38,18.97,N/A,N/A +2013,5,5,19,30,94560,93460,92390,22.990000000000002,0,3.21,3.86,4.04,4.13,4.18,4.22,4.25,4.2700000000000005,4.29,103.61,104.17,104.48,104.69,104.86,104.99000000000001,105.09,105.18,105.31,22.63,21.97,21.67,21.400000000000002,21.16,20.94,20.72,20.51,20.09,N/A,N/A +2013,5,5,20,30,94480,93380,92320,21.12,0,2.99,3.56,3.71,3.77,3.81,3.83,3.85,3.86,3.87,92.63,93.74,94.49,95.08,95.61,96.06,96.49000000000001,96.87,97.58,23.45,22.81,22.52,22.27,22.04,21.830000000000002,21.61,21.41,21,N/A,N/A +2013,5,5,21,30,94400,93310,92250,20.37,0,3.0300000000000002,3.69,3.9,4.03,4.13,4.2,4.25,4.3,4.37,98.14,100.86,102.31,103.27,104.03,104.64,105.14,105.58,106.31,24.41,23.78,23.490000000000002,23.23,22.990000000000002,22.77,22.54,22.330000000000002,21.91,N/A,N/A +2013,5,5,22,30,94360,93270,92210,19.8,0,3.75,4.54,4.7700000000000005,4.88,4.96,5.01,5.05,5.08,5.11,115.61,115.5,115.43,115.38,115.33,115.28,115.23,115.18,115.05,24.73,24.1,23.830000000000002,23.59,23.36,23.150000000000002,22.93,22.73,22.32,N/A,N/A +2013,5,5,23,30,94310,93220,92170,18.88,0,3.97,4.83,5.08,5.19,5.26,5.3,5.33,5.3500000000000005,5.36,125.4,124.53,124.03,123.61,123.23,122.88,122.56,122.26,121.69,24.830000000000002,24.27,24.03,23.8,23.59,23.38,23.17,22.98,22.57,N/A,N/A +2013,5,6,0,30,94290,93200,92140,20.91,0,3.87,4.87,5.16,5.33,5.45,5.54,5.61,5.66,5.74,105.68,107.08,107.93,108.67,109.3,109.87,110.39,110.87,111.73,24.53,24.150000000000002,23.96,23.75,23.55,23.35,23.150000000000002,22.96,22.56,N/A,N/A +2013,5,6,1,30,94300,93210,92150,24.14,0,3.04,5.3100000000000005,5.99,6.33,6.5200000000000005,6.62,6.67,6.7,6.73,105.54,105.69,105.92,106.37,106.82000000000001,107.26,107.72,108.15,109.10000000000001,22.97,23.400000000000002,23.41,23.3,23.16,22.990000000000002,22.81,22.63,22.25,N/A,N/A +2013,5,6,2,30,94320,93230,92170,30.830000000000002,0,2.41,4.9,5.83,6.69,7.33,7.83,8.1,8.3,8.42,126.07000000000001,123.95,123.06,123.31,123.78,124.35000000000001,124.8,125.19,125.67,21.32,22.150000000000002,22.31,22.43,22.47,22.47,22.39,22.3,21.990000000000002,N/A,N/A +2013,5,6,3,30,94340,93240,92180,32.97,0,2.48,4.97,5.88,6.7700000000000005,7.48,8.07,8.42,8.69,8.870000000000001,117.35000000000001,116.11,115.99000000000001,117.04,118.4,119.89,121.36,122.71000000000001,124.79,20.26,21.09,21.26,21.44,21.61,21.75,21.8,21.82,21.650000000000002,N/A,N/A +2013,5,6,4,30,94340,93240,92180,34.99,0,2.33,4.7,5.65,6.65,7.55,8.38,9.06,9.65,10.26,123.32000000000001,117.69,114.73,113.9,114.10000000000001,114.88,116.02,117.16,119.29,19.080000000000002,19.900000000000002,20.06,20.21,20.35,20.48,20.61,20.71,20.81,N/A,N/A +2013,5,6,5,30,94340,93230,92170,34.64,0,3,5.76,6.86,7.9,8.76,9.51,10.040000000000001,10.46,10.81,120.84,119.04,118.33,118.62,119.55,120.74000000000001,122.45,124.2,128.99,18.54,19.2,19.330000000000002,19.43,19.53,19.62,19.72,19.8,19.900000000000002,N/A,N/A +2013,5,6,6,30,94340,93230,92160,34.480000000000004,0,3.73,6.36,7.38,8.3,9.040000000000001,9.65,10.040000000000001,10.34,10.52,123.65,121.8,121.12,121.34,122.47,123.97,126.63000000000001,129.48,138.28,18.2,18.71,18.85,18.97,19.080000000000002,19.19,19.26,19.32,19.34,N/A,N/A +2013,5,6,7,30,94340,93220,92150,38.480000000000004,0,3.48,6.03,7.07,8.03,8.86,9.59,10.23,10.81,11.76,132.51,130,128.7,128.18,128.84,129.94,132.46,135.14000000000001,142.11,17.330000000000002,17.73,17.81,17.87,17.92,17.96,18.04,18.11,18.32,N/A,N/A +2013,5,6,8,30,94340,93230,92150,41.95,0,2.92,5.13,6.0200000000000005,6.82,7.5600000000000005,8.24,8.96,9.64,10.97,135.17000000000002,134.54,133.99,133.39000000000001,133.59,134.1,135.71,137.47,142.15,16.96,17.19,17.19,17.150000000000002,17.09,17.03,17,16.990000000000002,17.06,N/A,N/A +2013,5,6,9,30,94360,93240,92160,44.6,0,3.48,5.73,6.62,7.36,8.040000000000001,8.66,9.32,9.96,11.26,135,136.01,136.39000000000001,136.31,136.77,137.43,138.9,140.48,144.66,16.53,16.69,16.69,16.65,16.6,16.55,16.51,16.48,16.490000000000002,N/A,N/A +2013,5,6,10,30,94400,93280,92200,46.42,0,3.99,6.17,7.07,7.82,8.48,9.07,9.68,10.27,11.5,147.12,149.23,150.47,151.21,151.79,152.26,152.99,153.77,155.89000000000001,16.55,16.54,16.48,16.4,16.31,16.23,16.15,16.080000000000002,15.96,N/A,N/A +2013,5,6,11,30,94380,93260,92180,51.59,0,4.75,7.0600000000000005,8.01,8.870000000000001,9.66,10.39,11.16,11.9,13.33,141.09,142.98,144.22,145.29,146.32,147.28,148.3,149.28,151.19,15.56,15.51,15.450000000000001,15.370000000000001,15.3,15.23,15.17,15.120000000000001,15.040000000000001,N/A,N/A +2013,5,6,12,30,94330,93210,92130,55.01,0,5.18,7.66,8.64,9.46,10.17,10.790000000000001,11.370000000000001,11.91,12.950000000000001,142.42000000000002,143.37,143.9,144.28,144.67000000000002,145.04,145.51,145.97,147.11,15.58,15.530000000000001,15.44,15.33,15.22,15.11,15,14.9,14.71,N/A,N/A +2013,5,6,13,30,94330,93210,92120,55.92,0,5.3100000000000005,7.08,7.82,8.51,8.950000000000001,9.290000000000001,10.01,10.68,11.98,139.94,141.51,142.66,143.9,144.39000000000001,144.67000000000002,146.01,147.20000000000002,149.02,15.99,15.65,15.49,15.32,15.15,14.99,14.84,14.72,14.55,N/A,N/A +2013,5,6,14,30,94420,93300,92220,54.82,0,5.48,6.890000000000001,7.34,7.6000000000000005,7.7700000000000005,7.890000000000001,7.98,8.05,8.18,150.76,151.05,151.12,151.23,151.35,151.48,151.67000000000002,151.85,152.3,17.75,17.26,17.04,16.82,16.62,16.43,16.22,16.04,15.65,N/A,N/A +2013,5,6,15,30,94470,93350,92270,58.86,0,4.33,5.53,5.97,6.25,6.46,6.62,6.74,6.8500000000000005,7.03,153.13,153.86,154.08,154.35,154.64000000000001,154.94,155.27,155.59,156.3,17.7,17.26,17.06,16.85,16.66,16.47,16.27,16.09,15.72,N/A,N/A +2013,5,6,16,30,94470,93360,92280,74.91,1.8,5.4,6.78,7.21,7.46,7.640000000000001,7.7700000000000005,7.890000000000001,8,8.28,145.83,146.21,146.39000000000001,146.55,146.74,146.92000000000002,147.18,147.42000000000002,148.07,17.330000000000002,16.89,16.69,16.490000000000002,16.3,16.12,15.94,15.780000000000001,15.450000000000001,N/A,N/A +2013,5,6,17,30,94400,93290,92220,72.51,0,6.53,8.120000000000001,8.66,8.94,9.14,9.28,9.39,9.47,9.59,138.88,139.44,140.02,140.44,140.79,141.1,141.4,141.68,142.26,18.580000000000002,18.04,17.82,17.59,17.39,17.2,17,16.82,16.45,N/A,N/A +2013,5,6,18,30,94310,93210,92140,53.88,0,6.72,8.4,8.870000000000001,9.13,9.31,9.450000000000001,9.540000000000001,9.620000000000001,9.72,131.47,132.15,132.54,132.87,133.17000000000002,133.46,133.74,134,134.54,20.87,20.14,19.87,19.62,19.39,19.18,18.96,18.76,18.36,N/A,N/A +2013,5,6,19,30,94290,93200,92130,44.02,0,5.8,7.18,7.61,7.86,8.02,8.14,8.22,8.28,8.36,127.78,128.17000000000002,128.52,128.82,129.08,129.31,129.54,129.75,130.18,22.56,21.78,21.47,21.2,20.95,20.73,20.5,20.29,19.88,N/A,N/A +2013,5,6,20,30,94210,93120,92060,39.31,0,6.36,7.9,8.370000000000001,8.64,8.82,8.96,9.05,9.13,9.23,130.16,130.97,131.4,131.71,131.97,132.18,132.38,132.55,132.88,23.88,23.09,22.79,22.51,22.27,22.04,21.81,21.6,21.18,N/A,N/A +2013,5,6,21,30,94140,93060,92000,37.56,0,6.32,7.86,8.32,8.57,8.74,8.86,8.94,9.01,9.09,131.97,132.82,133.21,133.48,133.7,133.89000000000001,134.06,134.21,134.5,24.23,23.47,23.18,22.91,22.67,22.45,22.22,22.02,21.6,N/A,N/A +2013,5,6,22,30,94110,93020,91970,36.85,0,5.92,7.390000000000001,7.83,8.07,8.24,8.36,8.44,8.51,8.6,111.9,113.31,114.18,114.92,115.55,116.12,116.68,117.19,118.19,24.54,23.91,23.66,23.42,23.19,22.98,22.77,22.57,22.16,N/A,N/A +2013,5,6,23,30,94080,93000,91950,39.13,0,5.7700000000000005,7.25,7.66,7.9,8.06,8.18,8.26,8.32,8.4,149.3,148.69,148.29,147.96,147.67000000000002,147.42000000000002,147.20000000000002,147,146.63,24.14,23.62,23.400000000000002,23.18,22.97,22.77,22.55,22.36,21.96,N/A,N/A +2013,5,7,0,30,94070,92980,91930,40.99,0,7.67,9.81,10.4,10.75,10.97,11.13,11.24,11.32,11.41,138.89000000000001,138.76,138.67000000000002,138.55,138.45000000000002,138.37,138.28,138.21,138.07,23.59,23.2,23.01,22.8,22.59,22.400000000000002,22.19,22.01,21.61,N/A,N/A +2013,5,7,1,30,94060,92970,91920,43.11,0,5.11,7.53,8.44,9.18,9.77,10.27,10.69,11.06,11.65,123.29,123.95,124.5,124.97,125.46000000000001,125.96000000000001,126.52,127.05,128.15,22.5,22.5,22.42,22.31,22.18,22.05,21.89,21.75,21.41,N/A,N/A +2013,5,7,2,30,94100,93000,91940,42.300000000000004,0,3.94,6.67,7.83,8.870000000000001,9.76,10.540000000000001,11.26,11.91,12.950000000000001,118.8,119.84,120.55,121.23,121.97,122.71000000000001,123.52,124.3,125.8,21.45,21.6,21.59,21.55,21.48,21.41,21.32,21.23,21,N/A,N/A +2013,5,7,3,30,94140,93040,91980,47.02,0,3.04,5.54,6.58,7.45,8.16,8.76,9.31,9.8,10.700000000000001,127.82000000000001,129.19,130.12,130.95,131.94,132.99,134.25,135.45,137.67000000000002,20.25,20.54,20.56,20.53,20.48,20.42,20.34,20.26,20.04,N/A,N/A +2013,5,7,4,30,94170,93070,92000,53.04,0,2.5,5.14,6.26,7.26,8.19,9.08,9.99,10.870000000000001,12.64,144.16,145.38,145.98,146.17000000000002,146.35,146.53,146.66,146.77,146.89000000000001,19.09,19.580000000000002,19.62,19.64,19.63,19.62,19.6,19.580000000000002,19.53,N/A,N/A +2013,5,7,5,30,94170,93070,92000,57.28,0,1.1500000000000001,3.0100000000000002,4.05,4.97,5.8100000000000005,6.58,7.3100000000000005,8,9.26,105.03,121.86,132.08,134.81,136.32,137.17000000000002,137.78,138.36,139.8,18.13,18.67,18.71,18.7,18.650000000000002,18.59,18.5,18.41,18.23,N/A,N/A +2013,5,7,6,30,94220,93110,92040,63.09,0,1.12,2.98,4.0600000000000005,5.08,5.97,6.76,7.45,8.1,9.31,120.78,119.28,118.49000000000001,118.75,120.43,122.79,125.87,128.84,133.98,16.990000000000002,17.56,17.650000000000002,17.7,17.7,17.69,17.64,17.59,17.47,N/A,N/A +2013,5,7,7,30,94230,93120,92040,66.94,0,1.61,4.05,5.33,6.44,7.43,8.34,9.15,9.9,11.1,140.89000000000001,136.98,134.48,133.06,132.77,133.06,134.26,135.59,139.07,16.35,16.95,17.03,17.09,17.11,17.13,17.12,17.11,17.02,N/A,N/A +2013,5,7,8,30,94220,93110,92030,69.77,0,1.8900000000000001,4.57,5.86,6.91,7.86,8.72,9.57,10.39,11.94,132.72,134.66,135.54,135.5,135.64000000000001,135.84,136.43,137.1,139.03,15.93,16.54,16.59,16.59,16.56,16.53,16.48,16.43,16.330000000000002,N/A,N/A +2013,5,7,9,30,94200,93090,92010,71.56,0,2.12,4.88,6.09,7.140000000000001,8.03,8.82,9.56,10.27,11.64,129.47,130.89000000000001,131.65,131.97,132.54,133.17000000000002,134.33,135.55,138.87,15.530000000000001,16.02,16.04,16.02,15.97,15.92,15.860000000000001,15.790000000000001,15.68,N/A,N/A +2013,5,7,10,30,94230,93110,92030,69.10000000000001,0,4.1,6.82,7.98,8.98,9.84,10.61,11.36,12.06,13.4,137.27,138.18,138.73,139.16,139.78,140.43,141.45000000000002,142.52,145.26,15.73,15.860000000000001,15.84,15.8,15.74,15.68,15.620000000000001,15.57,15.48,N/A,N/A +2013,5,7,11,30,94240,93120,92040,73.28,0,4.01,6.74,7.91,8.93,9.83,10.63,11.41,12.13,13.44,140.51,142.51,143.72,144.59,145.45000000000002,146.27,147.3,148.33,150.78,15.39,15.55,15.540000000000001,15.52,15.48,15.44,15.41,15.38,15.34,N/A,N/A +2013,5,7,12,30,94250,93130,92050,76.12,0,4.19,6.8100000000000005,7.930000000000001,8.91,9.75,10.5,11.21,11.86,13.030000000000001,140.17000000000002,142.02,143.12,143.95000000000002,144.78,145.56,146.5,147.45000000000002,149.66,15.38,15.46,15.43,15.38,15.32,15.27,15.21,15.16,15.07,N/A,N/A +2013,5,7,13,30,94250,93130,92050,74.48,0,6.0200000000000005,7.96,8.64,9.18,9.67,10.13,10.47,10.81,11.55,147.17000000000002,147.74,148.14000000000001,148.54,148.98,149.42000000000002,149.53,149.65,150.14000000000001,16.77,16.43,16.25,16.05,15.860000000000001,15.68,15.49,15.32,14.98,N/A,N/A +2013,5,7,14,30,94280,93170,92090,73.81,0,5.91,7.5200000000000005,8.03,8.34,8.56,8.73,8.86,8.98,9.23,152.84,153.09,153.23,153.36,153.49,153.63,153.79,153.94,154.33,17.67,17.16,16.94,16.72,16.51,16.32,16.12,15.93,15.55,N/A,N/A +2013,5,7,15,30,94280,93170,92090,73.95,0,5.68,7.13,7.5600000000000005,7.8,7.96,8.06,8.14,8.2,8.32,158.32,158.48,158.59,158.69,158.77,158.86,158.96,159.05,159.28,18.28,17.71,17.46,17.240000000000002,17.02,16.830000000000002,16.62,16.43,16.05,N/A,N/A +2013,5,7,16,30,94270,93160,92090,71.06,0,6.07,7.58,8.040000000000001,8.290000000000001,8.45,8.56,8.64,8.700000000000001,8.81,155.69,156.05,156.29,156.48,156.65,156.81,156.97,157.13,157.5,19.42,18.68,18.400000000000002,18.150000000000002,17.92,17.72,17.51,17.32,16.93,N/A,N/A +2013,5,7,17,30,94230,93130,92060,66.86,0,6.57,8.21,8.72,9,9.19,9.33,9.42,9.49,9.59,154.17000000000002,154.68,154.99,155.25,155.48,155.69,155.9,156.09,156.49,21.240000000000002,20.400000000000002,20.080000000000002,19.81,19.56,19.34,19.12,18.92,18.52,N/A,N/A +2013,5,7,18,30,94180,93090,92030,62.39,0,6.82,8.48,8.99,9.26,9.43,9.55,9.620000000000001,9.68,9.73,156.09,156.61,156.92000000000002,157.18,157.39000000000001,157.59,157.79,157.97,158.35,22.650000000000002,21.79,21.46,21.18,20.93,20.71,20.48,20.27,19.86,N/A,N/A +2013,5,7,19,30,94120,93030,91980,56.57,0,6.71,8.33,8.84,9.1,9.290000000000001,9.41,9.49,9.56,9.63,158.89000000000001,159.02,159.07,159.09,159.1,159.1,159.1,159.1,159.09,24.21,23.35,23.03,22.740000000000002,22.490000000000002,22.26,22.03,21.830000000000002,21.41,N/A,N/A +2013,5,7,20,30,94050,92970,91930,53.07,0,7.3500000000000005,9.120000000000001,9.65,9.94,10.13,10.25,10.33,10.4,10.47,156.16,156.31,156.42000000000002,156.49,156.55,156.6,156.65,156.70000000000002,156.79,25.240000000000002,24.38,24.07,23.78,23.52,23.29,23.06,22.85,22.42,N/A,N/A +2013,5,7,21,30,93960,92880,91830,51.6,0,6.86,8.53,9.05,9.33,9.52,9.65,9.74,9.81,9.9,151.53,151.73,151.86,151.94,152.01,152.06,152.12,152.17000000000002,152.26,25.55,24.740000000000002,24.44,24.16,23.92,23.69,23.46,23.26,22.84,N/A,N/A +2013,5,7,22,30,93930,92860,91810,51.13,0,5.76,7.16,7.6000000000000005,7.82,7.98,8.08,8.15,8.21,8.27,158.08,158.54,158.64000000000001,158.75,158.86,158.97,159.08,159.19,159.42000000000002,25.66,25.02,24.77,24.53,24.3,24.09,23.87,23.67,23.26,N/A,N/A +2013,5,7,23,30,93970,92880,91830,63.81,3.7,9.63,12.36,12.950000000000001,13.31,13.540000000000001,13.71,13.81,13.89,13.96,196.61,196,195.82,195.66,195.49,195.34,195.15,194.97,194.56,23.240000000000002,22.82,22.61,22.41,22.22,22.03,21.84,21.66,21.3,N/A,N/A +2013,5,8,0,30,93890,92800,91740,52.9,0,6.99,9.040000000000001,9.72,10.370000000000001,10.790000000000001,11.08,11.18,11.31,12.14,149.37,150.83,152.20000000000002,153.76,154.79,155.53,155.96,156.55,160.11,21.54,21.25,21.1,20.96,20.79,20.63,20.43,20.27,20.13,N/A,N/A +2013,5,8,1,30,93850,92760,91700,58.910000000000004,0,4.5600000000000005,6.96,7.8100000000000005,8.31,8.78,9.24,9.73,10.200000000000001,10.99,146.39000000000001,148.42000000000002,149.44,149.64000000000001,149.77,149.86,149.8,149.71,149.36,21,20.84,20.7,20.52,20.34,20.16,20,19.87,19.69,N/A,N/A +2013,5,8,2,30,93880,92790,91730,70.61,0,4.72,6.9,7.73,8.44,9.05,9.59,10.1,10.58,11.47,136.87,137.04,137.21,137.36,137.58,137.85,138.31,138.81,140.35,20.3,20.22,20.13,20.02,19.900000000000002,19.8,19.69,19.59,19.41,N/A,N/A +2013,5,8,3,30,93960,92860,91800,76.12,0,3.27,5.37,6.3,7.12,7.86,8.52,9.18,9.8,10.97,126.65,130.97,133.78,135.73,137.31,138.65,139.83,140.89000000000001,142.65,19.59,19.57,19.5,19.400000000000002,19.3,19.2,19.1,19,18.81,N/A,N/A +2013,5,8,4,30,93940,92850,91790,72.04,0,6.34,9.11,10.21,11.1,11.84,12.47,13.05,13.57,14.46,139.19,139.63,139.94,140.23,140.55,140.88,141.34,141.8,143.06,20.14,20.080000000000002,19.990000000000002,19.88,19.76,19.64,19.51,19.400000000000002,19.14,N/A,N/A +2013,5,8,5,30,93950,92850,91790,76.47,0,4.4,6.94,8.02,8.94,9.76,10.49,11.19,11.84,13.120000000000001,143.16,144.21,144.77,145.11,145.41,145.70000000000002,146.06,146.42000000000002,147.33,18.97,18.91,18.82,18.71,18.6,18.48,18.36,18.25,18.03,N/A,N/A +2013,5,8,6,30,93990,92890,91830,80.43,0,3.83,6.23,7.36,8.370000000000001,9.24,10.03,10.78,11.48,12.82,151.67000000000002,153.96,155.37,156.09,156.6,156.98,157.27,157.53,157.97,18.42,18.400000000000002,18.330000000000002,18.240000000000002,18.14,18.03,17.93,17.830000000000002,17.63,N/A,N/A +2013,5,8,7,30,94010,92900,91830,90.34,0,1.51,3.79,4.97,6.04,6.96,7.79,8.56,9.28,10.61,130.28,139.58,144.94,147.04,148.62,149.9,150.98,151.96,153.61,17.47,17.67,17.61,17.53,17.43,17.34,17.240000000000002,17.150000000000002,16.95,N/A,N/A +2013,5,8,8,30,94040,92940,91870,83,0,1.8,3.79,5.0600000000000005,5.86,6.5200000000000005,7.09,7.59,8.06,8.93,138.53,144.11,147.38,148.25,149.28,150.37,151.39000000000001,152.34,153.99,18.53,18.35,18.25,18.12,17.97,17.82,17.650000000000002,17.490000000000002,17.16,N/A,N/A +2013,5,8,9,30,94010,92910,91840,85.54,0,5,6.83,7.49,8.02,8.46,8.84,9.18,9.49,10.07,148.08,149.01,149.61,150.13,150.63,151.09,151.56,152.01,152.92000000000002,18.900000000000002,18.64,18.47,18.29,18.11,17.94,17.75,17.57,17.21,N/A,N/A +2013,5,8,10,30,93990,92890,91830,86.36,0,5.15,6.96,7.63,8.16,8.59,8.96,9.290000000000001,9.59,10.14,144.79,145.66,146.26,146.8,147.3,147.78,148.28,148.75,149.75,18.85,18.59,18.43,18.25,18.07,17.900000000000002,17.72,17.55,17.19,N/A,N/A +2013,5,8,11,30,94000,92900,91830,86.77,0,5.24,7.05,7.72,8.23,8.65,9,9.33,9.620000000000001,10.16,150.93,151.22,151.41,151.62,151.84,152.04,152.26,152.48,152.97,18.87,18.61,18.45,18.27,18.09,17.91,17.73,17.55,17.19,N/A,N/A +2013,5,8,12,30,94060,92960,91890,87.29,0,4.17,5.61,6.11,6.51,6.84,7.13,7.390000000000001,7.63,8.09,181.93,181.29,180.87,180.5,180.15,179.82,179.47,179.14000000000001,178.46,18.87,18.61,18.45,18.26,18.080000000000002,17.900000000000002,17.71,17.53,17.16,N/A,N/A +2013,5,8,13,30,94080,92980,91910,88.06,0,3.08,4.28,4.78,5.24,5.64,6.01,6.36,6.69,7.38,183.49,182.33,181.59,180.98,180.46,180.01,179.59,179.21,178.42000000000002,18.85,18.580000000000002,18.43,18.25,18.07,17.89,17.71,17.54,17.17,N/A,N/A +2013,5,8,14,30,94100,93000,91940,87.24,0,3.41,4.25,4.5,4.67,4.82,4.96,5.14,5.3500000000000005,6.2700000000000005,170.70000000000002,170.70000000000002,170.78,170.93,171.12,171.35,171.67000000000002,172,173.20000000000002,19.02,18.67,18.490000000000002,18.29,18.1,17.92,17.740000000000002,17.56,17.23,N/A,N/A +2013,5,8,15,30,94120,93030,91960,79.06,0,4.93,6.2,6.63,6.88,7.0600000000000005,7.19,7.3,7.390000000000001,7.5600000000000005,164.71,165.64000000000001,166.22,166.75,167.24,167.72,168.22,168.69,169.73,20.35,19.73,19.490000000000002,19.26,19.04,18.85,18.650000000000002,18.47,18.11,N/A,N/A +2013,5,8,16,30,94110,93020,91960,68.18,0,5.93,7.2700000000000005,7.68,7.86,7.96,8.01,8.02,8.02,7.97,173.82,174.02,174.16,174.29,174.41,174.54,174.68,174.81,175.12,22.21,21.44,21.150000000000002,20.89,20.66,20.44,20.23,20.04,19.650000000000002,N/A,N/A +2013,5,8,17,30,94040,92960,91910,59.07,0,5.0600000000000005,6.16,6.49,6.65,6.74,6.78,6.79,6.79,6.74,177.13,177.33,177.46,177.61,177.78,177.95000000000002,178.14000000000001,178.33,178.79,23.85,23.09,22.79,22.52,22.28,22.06,21.84,21.64,21.23,N/A,N/A +2013,5,8,18,30,94040,92960,91910,52.46,0,3.67,4.39,4.62,4.72,4.78,4.8100000000000005,4.82,4.82,4.8100000000000005,191.27,191.73000000000002,192.12,192.59,193.01,193.45000000000002,193.88,194.28,195.15,25.12,24.43,24.12,23.84,23.6,23.38,23.16,22.95,22.54,N/A,N/A +2013,5,8,19,30,93970,92900,91850,46.39,0,3.7800000000000002,4.54,4.76,4.86,4.92,4.95,4.97,4.97,4.97,183.83,185.14000000000001,185.95000000000002,186.67000000000002,187.33,187.95000000000002,188.58,189.15,190.32,26.51,25.8,25.490000000000002,25.22,24.98,24.75,24.53,24.32,23.91,N/A,N/A +2013,5,8,20,30,93900,92830,91790,40.74,0,3.8000000000000003,4.57,4.79,4.9,4.96,5,5.0200000000000005,5.03,5.03,186.63,187.21,187.6,187.99,188.34,188.68,189.03,189.34,190,27.69,26.990000000000002,26.69,26.42,26.17,25.95,25.73,25.52,25.1,N/A,N/A +2013,5,8,21,30,93830,92770,91730,35.77,0,4.38,5.2700000000000005,5.53,5.65,5.73,5.76,5.79,5.8100000000000005,5.8100000000000005,167.41,169.24,170.49,171.63,172.61,173.5,174.37,175.18,176.71,28.68,27.97,27.69,27.42,27.19,26.96,26.740000000000002,26.54,26.13,N/A,N/A +2013,5,8,22,30,93790,92730,91690,33.42,0,5.49,6.65,6.94,7.0200000000000005,7.0600000000000005,7.08,7.07,7.0600000000000005,7.0200000000000005,180.04,180.16,180.3,180.59,180.88,181.19,181.51,181.81,182.48,28.78,28.14,27.900000000000002,27.67,27.45,27.25,27.04,26.85,26.45,N/A,N/A +2013,5,8,23,30,93770,92710,91680,35.78,0,6.44,7.96,8.41,8.61,8.74,8.82,8.86,8.89,8.9,169.01,169.75,170.27,170.74,171.17000000000002,171.6,172.02,172.42000000000002,173.20000000000002,28.6,28.05,27.82,27.59,27.37,27.17,26.96,26.76,26.37,N/A,N/A +2013,5,9,0,30,93730,92670,91640,40.01,0,6.55,8.23,8.73,8.99,9.17,9.28,9.36,9.41,9.46,169.4,169.58,169.72,169.83,169.93,170.03,170.12,170.21,170.38,28.11,27.72,27.53,27.32,27.11,26.91,26.71,26.52,26.13,N/A,N/A +2013,5,9,1,30,93730,92660,91620,53.09,0,6.04,8.31,9.05,9.620000000000001,10.07,10.43,10.74,11.01,11.42,154.07,155.04,155.67000000000002,156.21,156.68,157.1,157.5,157.87,158.56,26.13,25.990000000000002,25.87,25.71,25.55,25.38,25.2,25.03,24.66,N/A,N/A +2013,5,9,2,30,93790,92710,91670,60.35,0,5.66,7.8500000000000005,8.64,9.290000000000001,9.81,10.26,10.66,11.02,11.67,148.96,150.59,151.67000000000002,152.53,153.27,153.92000000000002,154.5,155.03,155.97,24.59,24.45,24.330000000000002,24.17,24.02,23.87,23.7,23.54,23.2,N/A,N/A +2013,5,9,3,30,93830,92750,91700,65.12,0,6.97,9.4,10.26,10.96,11.53,12.01,12.44,12.83,13.450000000000001,153.91,154.75,155.28,155.58,155.75,155.83,155.85,155.85,155.88,23.6,23.44,23.31,23.14,22.98,22.82,22.650000000000002,22.48,22.150000000000002,N/A,N/A +2013,5,9,4,30,93860,92780,91730,70.14,0,3.69,5.65,6.5,7.2700000000000005,7.96,8.59,9.200000000000001,9.77,10.790000000000001,131.21,133.58,135.22,136.55,137.55,138.32,138.88,139.35,140.02,22.81,22.740000000000002,22.67,22.57,22.48,22.37,22.26,22.150000000000002,21.900000000000002,N/A,N/A +2013,5,9,5,30,93860,92770,91720,77.2,0,0.46,1.81,3.08,3.87,4.58,5.18,5.76,6.32,7.43,107.83,115.09,122.63,125.44,127.92,130.07,132.09,134.03,137.92000000000002,21.95,22.02,21.94,21.82,21.69,21.56,21.42,21.28,21,N/A,N/A +2013,5,9,6,30,93880,92790,91740,80.58,0,1.32,1.04,0.99,2.3000000000000003,3.56,4.07,4.58,5.08,6.04,320.76,93.39,131.1,129.56,129.07,130.41,132.74,135.42000000000002,142.1,21.5,21.43,21.25,21.12,20.990000000000002,20.830000000000002,20.67,20.52,20.21,N/A,N/A +2013,5,9,7,30,93930,92840,91780,85.29,0,1.32,2.83,3.43,3.85,4.18,4.45,4.73,5,5.7700000000000005,71.47,92.98,106.97,113.45,119.28,124.67,129.99,135.04,143.5,20.69,20.62,20.47,20.31,20.17,20.04,19.89,19.75,19.42,N/A,N/A +2013,5,9,8,30,93910,92820,91760,83.05,0,2.79,3.68,4.05,4.39,4.71,5.0200000000000005,5.39,5.76,6.99,135.02,137.23,138.81,140.52,142.14000000000001,143.73,145.32,146.85,151.13,20.84,20.52,20.35,20.16,19.97,19.78,19.6,19.42,19.07,N/A,N/A +2013,5,9,9,30,93870,92780,91720,85.14,0,2.5100000000000002,3.46,3.95,4.43,4.91,5.43,5.92,6.38,7.24,132.38,135.49,137.89000000000001,140.16,142.37,144.63,146.51,148.20000000000002,150.46,20.87,20.56,20.39,20.2,20.01,19.82,19.62,19.44,19.04,N/A,N/A +2013,5,9,10,30,93890,92800,91740,88.08,0,1.84,2.42,2.66,2.88,3.09,3.31,3.7800000000000002,4.33,6.29,135.23,138.12,140.22,142.57,144.83,147.03,150.22,153.69,159.33,20.79,20.47,20.3,20.1,19.900000000000002,19.71,19.5,19.31,18.92,N/A,N/A +2013,5,9,11,30,93930,92840,91790,89.65,0,1.68,2.39,2.77,3.17,3.64,4.21,4.95,5.7700000000000005,8.040000000000001,161.78,163.57,164.86,166.03,167.08,168.09,168.20000000000002,167.98,168.96,20.75,20.45,20.27,20.07,19.88,19.68,19.48,19.3,18.96,N/A,N/A +2013,5,9,12,30,93920,92830,91770,89.37,0,1.79,2.22,2.38,2.5500000000000003,3.38,5.01,5.8,6.2700000000000005,7.15,97.07000000000001,110.32000000000001,119.21000000000001,128.59,139.56,155.42000000000002,160.66,162.27,164.59,20.77,20.47,20.3,20.12,19.95,19.8,19.62,19.46,19.13,N/A,N/A +2013,5,9,13,30,93970,92880,91820,88.07000000000001,0,2.77,4.04,4.6000000000000005,4.86,5.12,5.4,5.65,5.87,6.140000000000001,170.97,172.25,173.03,173.29,173.8,174.52,175.52,176.54,178.37,21.06,20.79,20.63,20.44,20.27,20.13,19.98,19.85,19.54,N/A,N/A +2013,5,9,14,30,93960,92880,91820,77.94,0,4.14,5.09,5.4,5.5200000000000005,5.59,5.61,5.61,5.59,5.55,166.44,167.55,168.19,168.78,169.3,169.82,170.38,170.91,172.26,22.400000000000002,21.830000000000002,21.6,21.38,21.19,21.02,20.84,20.68,20.36,N/A,N/A +2013,5,9,15,30,93940,92860,91810,70.60000000000001,0,3.06,3.69,3.87,3.93,3.96,3.96,3.94,3.92,3.85,179.8,180.07,180.31,180.58,180.87,181.18,181.53,181.85,182.64000000000001,23.75,23.13,22.86,22.62,22.400000000000002,22.19,21.990000000000002,21.8,21.41,N/A,N/A +2013,5,9,16,30,93940,92860,91820,59.63,0,2.24,2.67,2.79,2.85,2.9,2.93,2.95,2.97,3,200.95000000000002,203.45000000000002,204.94,206.38,207.68,208.92000000000002,210.13,211.25,213.5,25.400000000000002,24.79,24.51,24.25,24.03,23.81,23.6,23.400000000000002,23,N/A,N/A +2013,5,9,17,30,93910,92840,91800,43.18,0,1.8800000000000001,2.2,2.2800000000000002,2.32,2.35,2.37,2.39,2.4,2.43,239.22,240.8,241.91,242.94,243.84,244.68,245.5,246.26000000000002,247.66,27.37,26.78,26.490000000000002,26.23,26,25.78,25.560000000000002,25.36,24.96,N/A,N/A +2013,5,9,18,30,93850,92790,91760,23.35,0,1.9000000000000001,2.18,2.25,2.27,2.29,2.31,2.32,2.33,2.34,265.96,265.03000000000003,264.57,264.38,264.22,264.08,263.97,263.87,263.75,29.45,28.85,28.560000000000002,28.3,28.060000000000002,27.84,27.62,27.42,27.01,N/A,N/A +2013,5,9,19,30,93780,92720,91690,12.870000000000001,0,3.4,3.92,4.0200000000000005,4.03,4.04,4.03,4.0200000000000005,4.01,3.98,222.89000000000001,224.96,226.20000000000002,227.22,228.12,228.95000000000002,229.74,230.46,231.92000000000002,30.91,30.23,29.94,29.68,29.45,29.23,29.01,28.810000000000002,28.39,N/A,N/A +2013,5,9,20,30,93720,92670,91640,12.25,0,3.67,4.42,4.65,4.75,4.82,4.8500000000000005,4.87,4.88,4.89,228.79,230.4,231.57,232.6,233.48000000000002,234.29,235.04,235.74,237.06,31.73,31.060000000000002,30.78,30.51,30.28,30.05,29.830000000000002,29.62,29.2,N/A,N/A +2013,5,9,21,30,93640,92580,91560,11.16,0,2.73,3.39,3.65,3.83,3.98,4.1,4.21,4.3100000000000005,4.48,244.71,245.96,246.63,247.24,247.74,248.19,248.6,248.97,249.66,32.29,31.68,31.42,31.16,30.94,30.72,30.51,30.310000000000002,29.900000000000002,N/A,N/A +2013,5,9,22,30,93640,92580,91560,12.59,0,6.23,7.140000000000001,7.32,7.34,7.3500000000000005,7.34,7.33,7.32,7.3100000000000005,287.68,287.04,286.72,286.42,286.02,285.42,284.7,283.91,282.16,31.68,31.09,30.86,30.63,30.43,30.22,30.02,29.830000000000002,29.44,N/A,N/A +2013,5,9,23,30,93530,92480,91460,13.61,0,3.47,4.19,4.36,4.45,4.51,4.55,4.58,4.61,4.65,186.97,187.82,188.37,188.83,189.25,189.62,189.99,190.33,191.02,31.96,31.44,31.220000000000002,31,30.79,30.59,30.38,30.19,29.79,N/A,N/A +2013,5,10,0,30,93550,92500,91480,9.18,0,4.71,6.16,6.640000000000001,6.99,7.28,7.51,7.72,7.890000000000001,8.18,252.1,252.56,252.88,253.26000000000002,253.58,253.87,254.11,254.31,254.63,32.37,32.1,31.94,31.740000000000002,31.55,31.36,31.16,30.970000000000002,30.580000000000002,N/A,N/A +2013,5,10,1,30,93580,92520,91500,14.700000000000001,0,2.94,5.05,5.46,5.96,6.23,6.3,6.25,6.17,6.0200000000000005,268.23,287.38,297.12,299.86,300.73,299.82,298.38,296.83,293.26,29.740000000000002,31.05,31.21,31.150000000000002,31.04,30.87,30.68,30.51,30.14,N/A,N/A +2013,5,10,2,30,93650,92590,91560,16.42,0,2.24,4.03,4.51,5.11,5.63,6.1000000000000005,6.53,6.93,7.46,357.71,344.32,335.48,328.53000000000003,324.40000000000003,322.85,322.18,321.90000000000003,322.12,27.6,29.1,29.43,29.66,29.78,29.82,29.78,29.72,29.48,N/A,N/A +2013,5,10,3,30,93700,92640,91600,25.1,0,1.68,2.99,3.23,3.3200000000000003,3.34,3.3000000000000003,3.2600000000000002,3.23,3.17,131.24,132.04,130.22,123.64,115.43,105.74000000000001,96.79,88.84,71.99,27.14,27.59,27.48,27.490000000000002,27.560000000000002,27.69,27.740000000000002,27.76,27.61,N/A,N/A +2013,5,10,4,30,93700,92640,91600,47.84,0,5.91,8.17,8.9,9.49,9.92,10.26,10.43,10.52,10.19,186.21,185.44,184.92000000000002,184.46,184.31,184.37,185.16,186.13,189.9,26.560000000000002,26.46,26.38,26.28,26.2,26.12,26.09,26.07,26.150000000000002,N/A,N/A +2013,5,10,5,30,93750,92670,91640,54.2,0,4.94,7.54,8.4,9.02,9.38,9.52,9.44,9.290000000000001,8.72,169.21,169.35,169.53,169.68,170.51,171.82,174.19,176.67000000000002,182.46,24.98,25.26,25.310000000000002,25.32,25.35,25.400000000000002,25.490000000000002,25.57,25.62,N/A,N/A +2013,5,10,6,30,93850,92770,91720,62.25,0,5.29,7.55,8.370000000000001,9.06,9.64,10.14,10.58,10.98,11.55,148.56,150.5,151.63,152.18,152.47,152.55,152.52,152.46,152.54,23.78,23.71,23.62,23.5,23.39,23.27,23.16,23.07,22.88,N/A,N/A +2013,5,10,7,30,93890,92800,91750,67.26,0,4.01,6.28,7.13,7.8500000000000005,8.45,8.99,9.48,9.94,10.73,138.11,139.66,140.56,140.88,141.17000000000002,141.45000000000002,141.96,142.51,144.19,22.54,22.71,22.71,22.650000000000002,22.57,22.490000000000002,22.400000000000002,22.32,22.19,N/A,N/A +2013,5,10,8,30,93870,92790,91740,63.370000000000005,0,3.89,6.37,7.2700000000000005,8.03,8.66,9.22,9.63,9.97,10.06,145.53,145.27,144.74,143.76,143.15,142.77,142.92000000000002,143.20000000000002,144.99,22.080000000000002,22.46,22.54,22.55,22.55,22.54,22.55,22.56,22.61,N/A,N/A +2013,5,10,9,30,93900,92810,91760,68.78,0,4.7,7.28,8.22,8.91,9.47,9.92,10.25,10.52,10.66,144.08,144.70000000000002,145.15,145.39000000000001,145.4,145.28,145.13,145,145,21.92,22.080000000000002,22.04,21.94,21.84,21.76,21.7,21.650000000000002,21.6,N/A,N/A +2013,5,10,10,30,93910,92820,91760,88.58,0,0.28,1.3800000000000001,2.4,3.37,4.24,5.01,5.65,6.22,6.82,40.04,90.07000000000001,129.9,133.37,136.23,138.58,140.6,142.45000000000002,144.66,19.69,20.05,20.05,20.03,20,19.98,19.990000000000002,20.02,20.17,N/A,N/A +2013,5,10,11,30,94040,92950,91880,74.74,0,3.04,4.13,4.59,4.95,5.3100000000000005,5.69,5.94,6.13,5.99,35.550000000000004,33.59,31.810000000000002,29.75,28.26,27.14,26.59,26.22,26.36,20.2,19.94,19.8,19.62,19.490000000000002,19.39,19.32,19.25,19.07,N/A,N/A +2013,5,10,12,30,94040,92940,91880,84.51,0,3.1,4.0200000000000005,4.3500000000000005,4.59,4.71,4.74,4.7700000000000005,4.79,4.78,99,101.16,102.79,104.62,105.94,106.91,109.82000000000001,112.86,117.18,20.150000000000002,19.84,19.66,19.44,19.25,19.06,18.93,18.82,18.66,N/A,N/A +2013,5,10,13,30,93990,92890,91830,84.57000000000001,0,4.19,5.79,6.22,6.44,6.68,6.93,6.99,7,6.74,79.64,79.47,79.46000000000001,79.5,79.5,79.47,80.38,81.54,86.81,20.46,20.16,19.990000000000002,19.81,19.62,19.46,19.32,19.2,19.02,N/A,N/A +2013,5,10,14,30,94240,93130,92050,76.79,9.200000000000001,8.040000000000001,11.11,11.77,12.120000000000001,11.96,11.71,11.25,10.790000000000001,9.870000000000001,275.79,276.89,279.23,281.97,285.44,288.49,291.38,293.98,298.56,15.63,15.450000000000001,15.51,15.620000000000001,15.92,16.19,16.43,16.61,16.73,N/A,N/A +2013,5,10,15,30,94130,93010,91930,71.66,0,8.540000000000001,10.89,11.56,12.030000000000001,12.42,12.75,12.92,13.06,13.41,131.07,130.3,129.64000000000001,128.94,128.17000000000002,127.43,126.8,126.18,124.42,17.04,16.55,16.37,16.2,16.04,15.9,15.74,15.59,15.370000000000001,N/A,N/A +2013,5,10,16,30,94140,93040,91970,53.160000000000004,0,6.6000000000000005,8.290000000000001,8.84,9.200000000000001,9.44,9.620000000000001,9.75,9.86,10.11,102.22,101.17,100.43,99.85000000000001,99.35000000000001,98.91,98.47,98.05,97.08,20.38,19.76,19.52,19.3,19.11,18.93,18.76,18.61,18.330000000000002,N/A,N/A +2013,5,10,17,30,94170,93080,92020,42.54,0,2.54,3.08,3.2600000000000002,3.37,3.45,3.5100000000000002,3.56,3.6,3.67,88.89,88.72,88.62,88.43,88.24,88.05,87.85000000000001,87.67,87.3,23.03,22.42,22.150000000000002,21.900000000000002,21.68,21.47,21.25,21.06,20.650000000000002,N/A,N/A +2013,5,10,18,30,94180,93090,92040,37.03,0,3.95,4.79,5.0200000000000005,5.14,5.22,5.2700000000000005,5.3,5.33,5.36,25.77,26.1,26.37,26.62,26.82,26.990000000000002,27.16,27.310000000000002,27.6,24.55,23.86,23.580000000000002,23.32,23.09,22.87,22.650000000000002,22.45,22.03,N/A,N/A +2013,5,10,19,30,94230,93130,92070,50.36,0,8.42,10.42,11.05,11.4,11.63,11.8,11.91,12,12.1,28.09,28.04,27.96,27.900000000000002,27.84,27.79,27.740000000000002,27.7,27.62,22.26,21.41,21.1,20.82,20.580000000000002,20.35,20.13,19.92,19.51,N/A,N/A +2013,5,10,20,30,94190,93100,92040,41.81,0,6.88,8.540000000000001,9.040000000000001,9.31,9.49,9.61,9.700000000000001,9.77,9.85,35.22,35.28,35.24,35.21,35.17,35.14,35.1,35.06,35,23.400000000000002,22.61,22.32,22.05,21.81,21.59,21.36,21.16,20.75,N/A,N/A +2013,5,10,21,30,94160,93070,92010,42.800000000000004,0,5.17,6.45,6.8100000000000005,7.0200000000000005,7.16,7.26,7.32,7.37,7.43,38.07,38.31,38.52,38.7,38.86,39,39.13,39.26,39.51,23.18,22.5,22.23,21.990000000000002,21.76,21.55,21.34,21.14,20.73,N/A,N/A +2013,5,10,22,30,94290,93180,92110,83.69,9.200000000000001,1.9100000000000001,2.15,2.12,1.98,1.97,2.0100000000000002,2.5100000000000002,3.11,4.13,282.82,283.89,288.24,298.14,318.05,341.7,356.27,9,14.99,17.61,17.27,17.17,17.12,17.2,17.330000000000002,17.44,17.52,17.44,N/A,N/A +2013,5,10,23,30,94200,93110,92050,47.12,0,3.46,4.4,4.75,4.97,5.13,5.2700000000000005,5.39,5.5,5.68,24.42,26.91,28.5,29.900000000000002,31.07,32.09,33.01,33.85,35.32,22.88,22.400000000000002,22.19,21.98,21.78,21.59,21.39,21.21,20.82,N/A,N/A +2013,5,11,0,30,94200,93110,92050,46.7,0,4.3500000000000005,5.44,5.75,5.91,6.0200000000000005,6.09,6.13,6.16,6.18,56.65,55.92,55.52,55.28,55.1,54.95,54.83,54.72,54.550000000000004,22.82,22.48,22.3,22.080000000000002,21.89,21.69,21.490000000000002,21.3,20.91,N/A,N/A +2013,5,11,1,30,94250,93160,92100,56.26,0,2.3000000000000003,4.46,5.34,5.8500000000000005,6.18,6.36,6.46,6.5200000000000005,6.55,32.59,33.97,34.96,35.480000000000004,35.87,36.14,36.29,36.4,36.4,21.490000000000002,21.900000000000002,21.92,21.81,21.67,21.5,21.31,21.12,20.73,N/A,N/A +2013,5,11,2,30,94310,93220,92150,61.65,0,1.81,3.58,4.24,4.93,5.5,5.96,6.18,6.33,6.23,17.63,25.51,30.57,33.51,35.47,36.660000000000004,37.31,37.78,38.14,20.42,20.91,20.95,20.95,20.91,20.830000000000002,20.7,20.56,20.22,N/A,N/A +2013,5,11,3,30,94470,93370,92300,57.17,0,3.79,6.15,7.03,7.59,7.95,8.18,8.35,8.5,8.700000000000001,355.41,358.45,0.87,3.54,6.42,9.370000000000001,12.39,15.13,18.830000000000002,20,20.27,20.3,20.23,20.12,19.990000000000002,19.84,19.69,19.39,N/A,N/A +2013,5,11,4,30,94570,93450,92370,62.2,0,4.79,7.26,8.38,9.4,10.38,11.33,12.32,13.290000000000001,15.3,14.42,13.09,12.09,11.31,10.68,10.13,9.64,9.19,8.56,17.650000000000002,17.5,17.330000000000002,17.11,16.87,16.63,16.37,16.14,15.790000000000001,N/A,N/A +2013,5,11,5,30,94600,93480,92390,71.53,0,3.46,5.46,6.41,7.23,7.94,8.59,9.18,9.73,10.790000000000001,33.76,31.12,29.14,27.57,26.25,25.12,24.18,23.34,22.01,16.36,16.31,16.22,16.080000000000002,15.94,15.8,15.64,15.49,15.19,N/A,N/A +2013,5,11,6,30,94590,93480,92390,76.27,0,0.99,2.88,4.14,5.11,5.98,6.79,7.640000000000001,8.48,10.32,26.59,30.85,34.34,35.54,35.86,35.67,35.050000000000004,34.39,33.05,15.9,16.18,16.2,16.16,16.1,16.04,15.98,15.93,15.860000000000001,N/A,N/A +2013,5,11,7,30,94620,93500,92420,79.37,0,0.71,2.48,3.85,5,6.0200000000000005,6.94,7.78,8.55,9.540000000000001,85.43,64.5,50.480000000000004,50.96,51.730000000000004,52.660000000000004,52.86,52.88,52.69,15.41,15.96,16.11,16.22,16.29,16.34,16.4,16.46,16.63,N/A,N/A +2013,5,11,8,30,94590,93480,92390,77.88,0,0.84,1.18,1.27,1.58,2.0100000000000002,2.5500000000000003,3.14,3.7600000000000002,4.7700000000000005,289.63,340.44,5.25,25.91,40.01,51.54,57.52,62.81,69.36,15.71,16.52,16.65,16.6,16.57,16.55,16.62,16.71,17.080000000000002,N/A,N/A +2013,5,11,9,30,94690,93570,92480,68.76,0,3.5100000000000002,5.22,5.62,5.87,6.390000000000001,7.01,7.7,8.28,8.68,316.29,324.22,330.55,338.02,345.03000000000003,351.76,356.01,359.82,6.390000000000001,15.82,16.21,16.27,16.23,16.15,16.06,15.96,15.860000000000001,15.610000000000001,N/A,N/A +2013,5,11,10,30,94690,93570,92480,77.60000000000001,0,1.56,2.69,3.14,3.87,4.53,5.15,5.7,6.22,7.23,302.75,328.29,343.97,358.19,7.8500000000000005,15.33,19.81,23.68,28.64,14.57,15.15,15.26,15.32,15.32,15.3,15.19,15.08,14.76,N/A,N/A +2013,5,11,11,30,94710,93580,92490,80.03,0,1.25,1.2,1.07,1.22,1.61,2.2,2.7600000000000002,3.3200000000000003,4.29,281.6,310.98,332.04,5.54,17.51,19.48,19.03,18.7,21.64,13.86,14.450000000000001,14.530000000000001,14.49,14.42,14.34,14.23,14.11,13.85,N/A,N/A +2013,5,11,12,30,94770,93640,92550,81.83,0,0.37,0.78,1.08,1.6500000000000001,2.19,2.69,3.21,3.73,4.71,282.48,2.59,34.67,28.57,25.650000000000002,24.51,25.6,27.16,32.69,13.6,14.09,14.14,14.09,13.97,13.84,13.74,13.67,13.620000000000001,N/A,N/A +2013,5,11,13,30,94820,93690,92600,73.97,0,1.1300000000000001,1.47,1.6500000000000001,1.82,2.0300000000000002,2.29,2.74,3.2600000000000002,4.51,343.05,347.77,350.66,353.35,356.53000000000003,0.07,7.92,16.36,30.55,15.13,14.77,14.59,14.41,14.24,14.08,13.92,13.8,13.72,N/A,N/A +2013,5,11,14,30,94800,93680,92590,68.02,0,1.09,1.36,1.46,1.54,1.61,1.68,1.75,1.82,2,17.94,20.240000000000002,21.73,23.23,24.71,26.11,27.63,29.080000000000002,32.33,17.07,16.62,16.41,16.22,16.02,15.85,15.66,15.49,15.14,N/A,N/A +2013,5,11,15,30,94800,93690,92620,55.45,0,3.77,4.64,4.91,5.05,5.16,5.24,5.29,5.34,5.42,39.45,40.19,40.62,40.99,41.32,41.62,41.92,42.19,42.7,19.900000000000002,19.28,19.03,18.79,18.57,18.37,18.150000000000002,17.96,17.56,N/A,N/A +2013,5,11,16,30,94810,93710,92640,49.230000000000004,0,4.09,5.01,5.29,5.45,5.5600000000000005,5.64,5.7,5.76,5.83,47.730000000000004,47.96,48.120000000000005,48.26,48.39,48.49,48.58,48.67,48.81,21.41,20.740000000000002,20.47,20.22,19.98,19.77,19.55,19.35,18.93,N/A,N/A +2013,5,11,17,30,94790,93690,92620,44.21,0,4.04,4.95,5.22,5.37,5.48,5.5600000000000005,5.62,5.67,5.75,43.89,44.14,44.25,44.34,44.4,44.45,44.480000000000004,44.51,44.550000000000004,22.330000000000002,21.64,21.36,21.1,20.86,20.64,20.42,20.22,19.8,N/A,N/A +2013,5,11,18,30,94740,93650,92580,35.65,0,4.8,5.84,6.13,6.28,6.38,6.45,6.5,6.54,6.59,50.25,50.03,49.9,49.81,49.730000000000004,49.660000000000004,49.59,49.52,49.39,23.39,22.66,22.37,22.1,21.86,21.64,21.41,21.2,20.78,N/A,N/A +2013,5,11,19,30,94700,93600,92540,29.96,0,4.71,5.73,6.04,6.2,6.3100000000000005,6.390000000000001,6.45,6.5,6.5600000000000005,46.54,46.67,46.75,46.82,46.87,46.910000000000004,46.94,46.96,47,24.310000000000002,23.57,23.28,23.01,22.77,22.55,22.32,22.11,21.68,N/A,N/A +2013,5,11,20,30,94620,93520,92470,28.13,0,4.99,6.11,6.44,6.63,6.7700000000000005,6.86,6.93,6.99,7.08,48.550000000000004,48.42,48.35,48.29,48.230000000000004,48.17,48.120000000000005,48.06,47.95,24.94,24.21,23.92,23.650000000000002,23.41,23.18,22.95,22.75,22.32,N/A,N/A +2013,5,11,21,30,94550,93460,92400,20.69,0,5.75,7.11,7.49,7.69,7.83,7.930000000000001,8,8.06,8.13,46.01,45.9,45.86,45.84,45.82,45.81,45.79,45.78,45.75,25.37,24.650000000000002,24.38,24.12,23.89,23.67,23.45,23.240000000000002,22.82,N/A,N/A +2013,5,11,22,30,94560,93480,92420,20.42,0,5.29,6.58,6.97,7.21,7.37,7.49,7.59,7.67,7.78,45.35,45.9,46.19,46.44,46.63,46.79,46.92,47.04,47.26,25.53,24.89,24.63,24.39,24.16,23.94,23.72,23.52,23.1,N/A,N/A +2013,5,11,23,30,94580,93490,92430,22.2,0,6.19,7.62,8,8.16,8.26,8.31,8.34,8.36,8.36,60.04,59.46,59.24,59.120000000000005,59.03,58.96,58.9,58.86,58.78,25.09,24.57,24.35,24.12,23.91,23.71,23.490000000000002,23.3,22.900000000000002,N/A,N/A +2013,5,12,0,30,94590,93500,92440,26.01,0,5.46,6.95,7.3500000000000005,7.57,7.74,7.8500000000000005,7.94,8.01,8.1,66.62,66.68,66.78,66.91,67.06,67.19,67.34,67.47,67.74,24.64,24.29,24.11,23.900000000000002,23.7,23.51,23.31,23.12,22.72,N/A,N/A +2013,5,12,1,30,94630,93530,92470,26.54,0,3.85,5.72,6.29,6.72,7.0600000000000005,7.34,7.57,7.78,8.11,62.81,63.39,63.84,64.33,64.78,65.19,65.58,65.94,66.55,23.73,23.72,23.64,23.51,23.36,23.2,23.02,22.85,22.48,N/A,N/A +2013,5,12,2,30,94680,93590,92520,28.330000000000002,0,4.54,6.66,7.38,7.98,8.48,8.92,9.28,9.59,10.02,60.77,60.620000000000005,60.53,60.45,60.39,60.34,60.36,60.39,60.59,23.1,23.07,22.990000000000002,22.88,22.75,22.62,22.47,22.32,21.990000000000002,N/A,N/A +2013,5,12,3,30,94750,93650,92590,30.02,0,4.05,6.01,6.68,7.21,7.7,8.15,8.59,9,9.78,64.24,66.04,67.41,68.9,70.38,71.79,73.08,74.24,76.07000000000001,22.5,22.51,22.43,22.32,22.19,22.06,21.91,21.76,21.44,N/A,N/A +2013,5,12,4,30,94760,93650,92590,31.16,0,3.99,6.34,7.25,8.03,8.700000000000001,9.290000000000001,9.77,10.19,10.75,73.7,74.71000000000001,75.46000000000001,76.33,77.18,77.98,78.74,79.44,80.73,21.61,21.77,21.75,21.69,21.6,21.490000000000002,21.35,21.22,20.95,N/A,N/A +2013,5,12,5,30,94770,93660,92590,33.72,0,4.08,6.640000000000001,7.65,8.540000000000001,9.26,9.870000000000001,10.32,10.700000000000001,11.15,81.5,80.91,80.96000000000001,81.59,82.5,83.48,84.44,85.28,86.29,20.650000000000002,20.900000000000002,20.95,20.95,20.92,20.88,20.8,20.73,20.53,N/A,N/A +2013,5,12,6,30,94810,93700,92620,40.83,0,2.61,5.41,6.5200000000000005,7.55,8.45,9.26,9.870000000000001,10.39,10.88,85.87,84.86,84.78,85.58,86.72,87.98,89.14,90.15,91.3,19.34,20.01,20.13,20.22,20.26,20.27,20.22,20.16,19.990000000000002,N/A,N/A +2013,5,12,7,30,94830,93720,92640,46.92,0,1.02,3.27,4.76,6.13,7.28,8.28,8.89,9.35,9.39,91.54,90,89.77,91.49,93.52,95.63,97.23,98.52,99.03,17.900000000000002,18.69,18.88,19.080000000000002,19.23,19.36,19.45,19.52,19.55,N/A,N/A +2013,5,12,8,30,94870,93750,92680,49.09,0,1.52,3.08,3.74,4.53,5.26,5.98,6.5600000000000005,7.0600000000000005,7.49,48.46,69.73,81.66,88.94,93.61,96.94,98.64,99.96000000000001,100.65,17.22,17.98,18.12,18.25,18.38,18.490000000000002,18.6,18.68,18.77,N/A,N/A +2013,5,12,9,30,94870,93750,92660,51.7,0,0.52,1.6400000000000001,2.48,3.52,4.5,5.44,6.16,6.7700000000000005,7.24,33.480000000000004,74.37,96.17,99.2,100.84,101.82000000000001,102.42,102.9,103.18,16.41,17.12,17.27,17.44,17.62,17.8,18.03,18.23,18.48,N/A,N/A +2013,5,12,10,30,94870,93750,92670,51.300000000000004,0,0.72,1.03,1.23,1.83,2.5300000000000002,3.3200000000000003,4.05,4.7700000000000005,5.86,349.46,40.44,64.36,85.77,96.98,103.3,105.22,106.86,108.54,16.61,17.1,17.06,17.01,17,16.990000000000002,17.07,17.16,17.45,N/A,N/A +2013,5,12,11,30,94950,93830,92740,55.72,0,1.6300000000000001,1.78,1.71,1.93,2.44,3.14,3.8000000000000003,4.46,5.49,19.53,51.31,70.45,94.43,103.85000000000001,108.06,108.65,109.06,109.7,15.33,16.19,16.32,16.35,16.43,16.51,16.62,16.740000000000002,17.02,N/A,N/A +2013,5,12,12,30,94980,93860,92770,55.7,0,0.5,1.54,2.31,3.21,4,4.72,5.39,6.0200000000000005,6.99,138.77,129.72,123.66,119.57000000000001,117.72,116.92,116.98,117.13,117.94,15.6,16.36,16.43,16.44,16.43,16.41,16.48,16.57,16.81,N/A,N/A +2013,5,12,13,30,95010,93890,92800,45.83,0,0.55,0.75,1.01,1.56,2.06,2.54,3.39,4.26,5.22,61.370000000000005,78.74,87.58,95.3,100.65,104.68,106.04,107.36,109.52,16.91,16.59,16.43,16.27,16.11,15.97,15.94,15.950000000000001,16.19,N/A,N/A +2013,5,12,14,30,95030,93910,92830,40.02,0,1.05,1.43,1.6,1.72,1.83,1.92,2.0100000000000002,2.1,2.3000000000000003,113.89,113.62,113.54,113.37,113.17,112.96000000000001,112.72,112.47,111.83,19.26,18.82,18.61,18.42,18.22,18.05,17.85,17.68,17.32,N/A,N/A +2013,5,12,15,30,95010,93900,92820,35.39,0,2.98,3.67,3.89,4.01,4.1,4.17,4.22,4.2700000000000005,4.34,116.99000000000001,116.69,116.46000000000001,116.21000000000001,115.94,115.68,115.41,115.16,114.64,21.23,20.650000000000002,20.39,20.16,19.94,19.73,19.51,19.32,18.92,N/A,N/A +2013,5,12,16,30,94970,93870,92790,33.82,0,3.13,3.86,4.08,4.21,4.3100000000000005,4.39,4.45,4.5,4.58,112.97,113.01,113.07000000000001,113.04,112.99000000000001,112.92,112.84,112.76,112.58,22.12,21.48,21.21,20.96,20.73,20.52,20.3,20.09,19.68,N/A,N/A +2013,5,12,17,30,94960,93850,92780,31.75,0,4.1,5.0200000000000005,5.28,5.43,5.53,5.6000000000000005,5.66,5.7,5.7700000000000005,112.34,112.51,112.56,112.55,112.51,112.46000000000001,112.4,112.36,112.22,23.06,22.36,22.07,21.81,21.57,21.35,21.12,20.91,20.490000000000002,N/A,N/A +2013,5,12,18,30,94920,93820,92750,30.03,0,3.97,4.83,5.08,5.22,5.33,5.4,5.45,5.5,5.5600000000000005,113.74000000000001,113.83,113.84,113.79,113.72,113.65,113.57000000000001,113.5,113.33,23.78,23.07,22.77,22.5,22.26,22.03,21.8,21.59,21.17,N/A,N/A +2013,5,12,19,30,94870,93770,92710,29.060000000000002,0,4.1,4.98,5.22,5.34,5.43,5.49,5.53,5.5600000000000005,5.61,127.89,127.31,126.91,126.53,126.18,125.85000000000001,125.53,125.24000000000001,124.64,24.330000000000002,23.61,23.31,23.05,22.8,22.580000000000002,22.35,22.14,21.72,N/A,N/A +2013,5,12,20,30,94800,93710,92640,27.12,0,4.11,5.0200000000000005,5.28,5.41,5.51,5.58,5.63,5.68,5.74,117.29,117.61,117.83,118,118.13,118.24000000000001,118.34,118.43,118.57000000000001,24.85,24.14,23.85,23.59,23.35,23.13,22.900000000000002,22.69,22.27,N/A,N/A +2013,5,12,21,30,94720,93620,92570,26.19,0,3.96,4.8,5.03,5.16,5.25,5.3100000000000005,5.3500000000000005,5.39,5.44,106.97,107.67,108.09,108.37,108.60000000000001,108.78,108.94,109.08,109.31,25.3,24.62,24.34,24.080000000000002,23.84,23.63,23.400000000000002,23.19,22.77,N/A,N/A +2013,5,12,22,30,94660,93570,92510,26.560000000000002,0,3.34,4.1,4.33,4.47,4.57,4.64,4.71,4.76,4.8500000000000005,118.60000000000001,119.13,119.35000000000001,119.41,119.44,119.43,119.4,119.36,119.26,25.35,24.72,24.47,24.23,24,23.79,23.57,23.37,22.95,N/A,N/A +2013,5,12,23,30,94640,93550,92490,27.13,0,3.67,4.57,4.8500000000000005,5.01,5.14,5.24,5.32,5.39,5.5,101.59,103.5,104.41,105.06,105.60000000000001,106.07000000000001,106.48,106.84,107.48,25.22,24.67,24.44,24.22,24,23.8,23.59,23.39,22.98,N/A,N/A +2013,5,13,0,30,94640,93550,92490,27.84,0,5.07,6.41,6.78,7,7.15,7.26,7.34,7.4,7.48,110.05,110.66,110.99000000000001,111.24000000000001,111.46000000000001,111.65,111.83,111.99000000000001,112.28,25,24.6,24.400000000000002,24.18,23.98,23.78,23.57,23.38,22.98,N/A,N/A +2013,5,13,1,30,94630,93540,92480,32.54,0,3.06,5.29,6.03,6.61,7.0200000000000005,7.3100000000000005,7.49,7.62,7.73,133.18,134.15,134.44,134.47,134.43,134.37,134.28,134.2,134.03,23.7,23.81,23.75,23.64,23.5,23.35,23.17,23,22.62,N/A,N/A +2013,5,13,2,30,94680,93580,92520,36.93,0,2.7600000000000002,5.16,6,6.7,7.13,7.43,7.54,7.62,7.72,138.64000000000001,136.09,134.73,133.87,133.34,132.98,132.48,131.98,130.58,22.52,23,23.11,23.17,23.150000000000002,23.09,22.93,22.78,22.39,N/A,N/A +2013,5,13,3,30,94740,93640,92570,40.28,0,2.82,5.66,6.93,8.15,9.11,9.89,10.33,10.66,10.93,121.54,123.13000000000001,124.27,125.53,126.52,127.32000000000001,127.53,127.58,126.71000000000001,21.37,21.85,21.97,22.080000000000002,22.150000000000002,22.21,22.19,22.150000000000002,21.900000000000002,N/A,N/A +2013,5,13,4,30,94770,93670,92600,41.160000000000004,0,3.8200000000000003,6.5200000000000005,7.63,8.620000000000001,9.42,10.1,10.55,10.93,11.22,127.34,124.43,122.94,122.07000000000001,121.75,121.69,122.06,122.48,123.95,20.64,20.98,21.07,21.13,21.16,21.18,21.150000000000002,21.11,20.94,N/A,N/A +2013,5,13,5,30,94820,93710,92640,44.67,0,3.2800000000000002,5.8500000000000005,6.9,7.88,8.790000000000001,9.63,10.4,11.1,12.14,131.21,129.62,129.09,129.35,130.3,131.53,133.02,134.46,137.32,19.51,19.88,19.97,20.02,20.06,20.09,20.1,20.11,20.05,N/A,N/A +2013,5,13,6,30,94860,93750,92680,47.2,0,3.46,6.09,7.13,8.08,8.86,9.53,9.96,10.33,10.83,141.27,139.54,138.81,138.66,139.33,140.27,141.78,143.23,146.33,18.87,19.330000000000002,19.47,19.580000000000002,19.66,19.73,19.740000000000002,19.740000000000002,19.59,N/A,N/A +2013,5,13,7,30,94890,93780,92700,50.480000000000004,0,3.47,5.95,6.890000000000001,7.75,8.56,9.33,10.06,10.74,11.96,146.4,145.86,145.86,146.27,147.54,149.1,151.19,153.14000000000001,156.45000000000002,18.11,18.64,18.8,18.92,19,19.06,19.06,19.04,18.88,N/A,N/A +2013,5,13,8,30,94920,93800,92720,54.76,0,3.14,5.54,6.43,7.32,8.24,9.14,10.03,10.82,11.74,141.52,143.75,145.51,147.53,149.9,152.34,154.52,156.48,159.27,17.330000000000002,17.88,18.03,18.16,18.27,18.36,18.43,18.48,18.45,N/A,N/A +2013,5,13,9,30,94930,93810,92730,61.61,0,2.59,5.12,6.01,6.890000000000001,7.75,8.56,9.27,9.89,10.56,146.34,149.65,151.6,153.15,154.54,155.81,157.24,158.67000000000002,161.98,16.54,17.400000000000002,17.57,17.69,17.79,17.87,17.95,18.01,18.05,N/A,N/A +2013,5,13,10,30,94930,93810,92730,60.01,0,3.52,5.7700000000000005,6.44,7.03,7.57,8.05,8.51,8.91,9.43,155.1,156.22,156.96,157.68,158.62,159.59,160.88,162.12,164.71,16.51,17.17,17.35,17.48,17.56,17.61,17.650000000000002,17.68,17.69,N/A,N/A +2013,5,13,11,30,94970,93840,92760,69.02,0,2.05,4.12,4.94,5.84,6.63,7.33,7.94,8.49,9.26,136.45,149.4,156.15,160.36,162.95000000000002,164.85,166.11,167.18,168.5,15.16,16.12,16.35,16.53,16.66,16.75,16.81,16.85,16.86,N/A,N/A +2013,5,13,12,30,94990,93870,92780,70.14,0,2.18,4.15,4.79,5.43,5.96,6.42,6.8100000000000005,7.16,7.7,143.73,151.02,155.39000000000001,158.88,161.58,163.86,165.78,167.5,170.25,15.05,15.82,15.96,16.07,16.15,16.22,16.27,16.31,16.38,N/A,N/A +2013,5,13,13,30,95020,93900,92810,57.78,0,2.29,2.75,2.9,3.02,3.31,3.66,4.18,4.68,5.59,144.57,148.51,151.23,154.16,158.15,162.48,166.68,170.47,175.28,16.77,16.42,16.26,16.1,15.96,15.83,15.790000000000001,15.77,15.83,N/A,N/A +2013,5,13,14,30,95030,93920,92830,53.02,0,2.93,3.66,3.88,4.01,4.1,4.17,4.23,4.29,4.46,167.47,168.83,169.62,170.35,171.09,171.78,172.58,173.34,175.01,18.81,18.29,18.07,17.87,17.67,17.490000000000002,17.31,17.13,16.79,N/A,N/A +2013,5,13,15,30,95030,93910,92840,46.74,0,4.08,5.08,5.37,5.53,5.64,5.71,5.76,5.8,5.8500000000000005,171.95000000000002,172.17000000000002,172.27,172.36,172.44,172.5,172.56,172.62,172.71,20.55,19.91,19.650000000000002,19.41,19.19,18.98,18.77,18.57,18.18,N/A,N/A +2013,5,13,16,30,95000,93900,92820,37.74,0,3.85,4.75,5.01,5.16,5.26,5.33,5.38,5.42,5.47,168.94,168.58,168.43,168.31,168.20000000000002,168.11,168.02,167.95000000000002,167.79,21.91,21.240000000000002,20.96,20.71,20.47,20.26,20.04,19.84,19.43,N/A,N/A +2013,5,13,17,30,94960,93860,92790,28.94,0,4.03,4.95,5.21,5.3500000000000005,5.44,5.51,5.55,5.59,5.63,159.51,159.77,159.9,159.98,160.03,160.06,160.09,160.11,160.14000000000001,23.2,22.5,22.21,21.95,21.71,21.490000000000002,21.27,21.06,20.650000000000002,N/A,N/A +2013,5,13,18,30,94910,93810,92750,28.48,0,4.3,5.29,5.58,5.73,5.84,5.91,5.96,6.01,6.0600000000000005,160.24,160.17000000000002,160.13,160.05,159.97,159.9,159.82,159.75,159.61,24.22,23.490000000000002,23.19,22.92,22.68,22.46,22.23,22.02,21.6,N/A,N/A +2013,5,13,19,30,94870,93770,92710,26.37,0,4.3500000000000005,5.3500000000000005,5.64,5.8,5.91,5.98,6.04,6.08,6.140000000000001,156.93,157.06,157.08,157.05,157,156.96,156.9,156.85,156.74,25.13,24.39,24.09,23.830000000000002,23.580000000000002,23.36,23.13,22.92,22.5,N/A,N/A +2013,5,13,20,30,94810,93720,92660,26.8,0,4.8,5.91,6.23,6.4,6.51,6.6000000000000005,6.65,6.7,6.76,159.91,159.8,159.69,159.56,159.43,159.31,159.19,159.08,158.83,25.79,25.04,24.75,24.48,24.240000000000002,24.01,23.78,23.580000000000002,23.16,N/A,N/A +2013,5,13,21,30,94740,93650,92600,26.73,0,4.76,5.87,6.18,6.34,6.45,6.5200000000000005,6.58,6.62,6.67,162.82,162.42000000000002,162.16,161.93,161.72,161.53,161.34,161.17000000000002,160.86,26.21,25.490000000000002,25.21,24.95,24.71,24.490000000000002,24.27,24.060000000000002,23.64,N/A,N/A +2013,5,13,22,30,94690,93600,92550,27.28,0,4.78,5.91,6.25,6.44,6.5600000000000005,6.65,6.72,6.78,6.8500000000000005,163.07,162.44,162.08,161.73,161.44,161.19,160.94,160.71,160.29,26.45,25.78,25.52,25.27,25.04,24.82,24.6,24.400000000000002,23.98,N/A,N/A +2013,5,13,23,30,94660,93570,92520,25.400000000000002,0,5.39,6.7,7.0600000000000005,7.25,7.38,7.46,7.51,7.5600000000000005,7.6000000000000005,140.99,142.28,142.95000000000002,143.46,143.89000000000001,144.27,144.61,144.91,145.5,26.39,25.810000000000002,25.580000000000002,25.34,25.12,24.92,24.7,24.5,24.1,N/A,N/A +2013,5,14,0,30,94630,93550,92490,32.13,0,5.51,6.92,7.3,7.49,7.6000000000000005,7.68,7.73,7.76,7.79,146.43,147.17000000000002,147.56,147.84,148.08,148.28,148.47,148.65,148.98,25.79,25.37,25.18,24.97,24.76,24.57,24.36,24.18,23.78,N/A,N/A +2013,5,14,1,30,94620,93530,92480,40.22,0,3.29,5.03,5.5600000000000005,5.98,6.3100000000000005,6.59,6.8100000000000005,7.01,7.3100000000000005,149.22,149.65,149.94,150.31,150.73,151.17000000000002,151.61,152.02,152.73,24.650000000000002,24.64,24.55,24.41,24.27,24.11,23.94,23.78,23.41,N/A,N/A +2013,5,14,2,30,94650,93560,92500,44.230000000000004,0,2.88,4.9,5.62,6.19,6.66,7.0600000000000005,7.38,7.66,8.03,151.23,150.03,149.29,148.67000000000002,148.39000000000001,148.31,148.6,148.96,150.3,23.64,23.76,23.72,23.62,23.5,23.37,23.21,23.06,22.72,N/A,N/A +2013,5,14,3,30,94710,93610,92550,52.09,0,3.8000000000000003,5.93,6.76,7.51,8.18,8.790000000000001,9.35,9.870000000000001,10.71,155.96,156.55,156.97,157.38,157.8,158.22,158.62,159,159.66,22.85,22.89,22.84,22.76,22.66,22.55,22.43,22.31,22.04,N/A,N/A +2013,5,14,4,30,94710,93620,92550,55.88,0,3.33,5.37,6.140000000000001,6.79,7.36,7.88,8.38,8.84,9.75,154.20000000000002,154.02,153.97,154,154.18,154.44,154.81,155.19,156.03,22.09,22.240000000000002,22.240000000000002,22.2,22.12,22.04,21.93,21.82,21.55,N/A,N/A +2013,5,14,5,30,94690,93590,92530,58.050000000000004,0,3.11,5.45,6.5,7.48,8.36,9.17,9.85,10.44,11.22,146.33,147.16,147.98,149.23,150.78,152.47,154.21,155.84,158.44,21.42,21.67,21.75,21.8,21.84,21.86,21.84,21.81,21.63,N/A,N/A +2013,5,14,6,30,94700,93600,92530,56.84,0,4.17,6.53,7.5,8.34,9.09,9.78,10.44,11.05,12.22,143.9,143.62,143.55,143.78,144.27,144.9,145.78,146.66,148.79,21.03,21.07,21.03,20.96,20.88,20.79,20.7,20.6,20.42,N/A,N/A +2013,5,14,7,30,94700,93590,92520,57.85,0,3.81,5.95,6.8500000000000005,7.65,8.41,9.120000000000001,9.83,10.51,11.76,142.39000000000001,143.36,144.14000000000001,145.08,146.13,147.22,148.39000000000001,149.51,151.73,20.2,20.2,20.150000000000002,20.09,20.02,19.95,19.88,19.82,19.69,N/A,N/A +2013,5,14,8,30,94680,93570,92500,59.06,0,3.5300000000000002,5.83,6.78,7.6000000000000005,8.35,9.05,9.75,10.42,11.69,139.39000000000001,138.62,138.34,138.46,139.16,140.14000000000001,141.71,143.31,147.09,19.18,19.330000000000002,19.34,19.31,19.27,19.23,19.2,19.18,19.13,N/A,N/A +2013,5,14,9,30,94680,93570,92490,63.32,0,3.27,5.55,6.5200000000000005,7.4,8.19,8.93,9.64,10.290000000000001,11.41,138.71,140.97,142.49,143.95000000000002,145.56,147.19,149.12,151.02,155.12,18.32,18.46,18.47,18.45,18.42,18.38,18.35,18.32,18.28,N/A,N/A +2013,5,14,10,30,94670,93550,92480,69.96000000000001,0,2.96,5.26,6.25,7.140000000000001,7.96,8.71,9.43,10.1,11.32,142.54,147.35,150.43,152.82,154.98,156.96,158.91,160.76,164.29,17.990000000000002,18.18,18.2,18.19,18.17,18.14,18.11,18.080000000000002,17.990000000000002,N/A,N/A +2013,5,14,11,30,94680,93560,92490,75.69,0,2.88,5.3100000000000005,6.38,7.33,8.18,8.950000000000001,9.66,10.32,11.51,141.48,146.54,149.54,151.63,153.38,154.92000000000002,156.35,157.69,160.23,17.68,17.85,17.84,17.8,17.740000000000002,17.67,17.580000000000002,17.490000000000002,17.3,N/A,N/A +2013,5,14,12,30,94690,93570,92490,78.36,0,4.34,6.53,7.42,8.22,8.92,9.56,10.200000000000001,10.8,11.98,142.41,145.84,148.01,149.88,151.53,153.02,154.45000000000002,155.76,158.13,17.68,17.59,17.5,17.39,17.27,17.16,17.04,16.92,16.68,N/A,N/A +2013,5,14,13,30,94700,93590,92510,78.76,0,7.18,9.16,9.77,10.17,10.46,10.69,10.91,11.11,11.55,156.32,156.86,157.20000000000002,157.51,157.81,158.1,158.43,158.76,159.53,18.71,18.25,18.04,17.830000000000002,17.63,17.45,17.25,17.07,16.71,N/A,N/A +2013,5,14,14,30,94690,93590,92510,75.81,0,7.640000000000001,9.67,10.290000000000001,10.66,10.92,11.1,11.23,11.34,11.5,160.69,161.11,161.38,161.61,161.81,162,162.20000000000002,162.39000000000001,162.8,19.63,18.990000000000002,18.73,18.5,18.27,18.07,17.85,17.66,17.27,N/A,N/A +2013,5,14,15,30,94680,93570,92500,67.57000000000001,0,7.66,9.63,10.25,10.61,10.86,11.02,11.14,11.23,11.33,166.39000000000001,166.71,166.9,167.05,167.18,167.29,167.39000000000001,167.49,167.67000000000002,21.150000000000002,20.41,20.13,19.87,19.63,19.41,19.19,18.990000000000002,18.580000000000002,N/A,N/A +2013,5,14,16,30,94660,93560,92490,63.14,0,6.99,8.69,9.19,9.47,9.66,9.78,9.86,9.93,9.99,164.57,165.16,165.62,166.04,166.42000000000002,166.77,167.13,167.47,168.12,22.27,21.46,21.16,20.89,20.64,20.42,20.19,19.98,19.57,N/A,N/A +2013,5,14,17,30,94610,93510,92450,55.61,0,6.96,8.59,9.1,9.36,9.53,9.64,9.71,9.77,9.83,173.16,173.17000000000002,173.16,173.14000000000001,173.13,173.11,173.08,173.07,173.03,23.59,22.75,22.43,22.150000000000002,21.900000000000002,21.67,21.45,21.240000000000002,20.82,N/A,N/A +2013,5,14,18,30,94540,93450,92390,52.75,0,7.11,8.78,9.28,9.52,9.69,9.790000000000001,9.86,9.91,9.950000000000001,167.12,167.3,167.41,167.48,167.53,167.59,167.63,167.67000000000002,167.76,24.48,23.62,23.3,23.01,22.76,22.52,22.3,22.080000000000002,21.66,N/A,N/A +2013,5,14,19,30,94450,93360,92310,49.83,0,7.0200000000000005,8.66,9.15,9.4,9.56,9.66,9.72,9.77,9.81,165.84,166.05,166.18,166.28,166.38,166.46,166.55,166.62,166.78,25.28,24.42,24.1,23.81,23.56,23.32,23.09,22.89,22.47,N/A,N/A +2013,5,14,20,30,94410,93320,92270,47.47,0,7.01,8.64,9.13,9.370000000000001,9.53,9.63,9.700000000000001,9.75,9.790000000000001,166.29,166.3,166.24,166.17000000000002,166.11,166.05,165.99,165.93,165.83,25.740000000000002,24.900000000000002,24.59,24.310000000000002,24.060000000000002,23.830000000000002,23.6,23.39,22.98,N/A,N/A +2013,5,14,21,30,94360,93280,92230,47.910000000000004,0,8.94,11.19,11.86,12.21,12.46,12.63,12.74,12.83,12.94,165.37,165.72,165.9,166.07,166.23,166.37,166.51,166.64000000000001,166.91,26.27,25.46,25.17,24.89,24.650000000000002,24.41,24.18,23.97,23.55,N/A,N/A +2013,5,14,22,30,94290,93200,92140,61.81,0,8.52,10.64,11.24,11.57,11.77,11.89,11.96,12,12.030000000000001,184.1,183.63,183.36,183.18,183.02,182.88,182.75,182.62,182.33,23.52,22.97,22.75,22.54,22.35,22.17,21.990000000000002,21.830000000000002,21.52,N/A,N/A +2013,5,14,23,30,94210,93120,92070,44.65,0,7.26,9.16,9.77,10.120000000000001,10.36,10.53,10.64,10.74,10.86,174.47,174.5,174.44,174.43,174.44,174.46,174.5,174.55,174.65,24.82,24.21,23.97,23.72,23.5,23.3,23.09,22.89,22.490000000000002,N/A,N/A +2013,5,15,0,30,94270,93190,92140,53.47,0,5.2,6.5,6.87,7.05,7.17,7.26,7.3100000000000005,7.3500000000000005,7.4,190.61,190.71,190.68,190.64000000000001,190.6,190.56,190.51,190.46,190.36,24.82,24.37,24.17,23.96,23.75,23.56,23.35,23.17,22.77,N/A,N/A +2013,5,15,1,30,94350,93260,92210,55.09,0,2.56,3.16,3.41,3.67,3.9,4.13,4.3500000000000005,4.5600000000000005,4.94,224.97,222.46,219.93,216.83,214.23000000000002,211.92000000000002,210.01,208.35,205.91,24.57,24.28,24.12,23.94,23.78,23.61,23.44,23.27,22.92,N/A,N/A +2013,5,15,2,30,94260,93170,92110,64.31,0,7.63,9.82,10.47,10.9,11.24,11.5,11.73,11.93,12.31,179.81,179.93,179.86,179.89000000000001,179.95000000000002,180.03,180.15,180.26,180.53,22.95,22.650000000000002,22.48,22.27,22.07,21.88,21.67,21.48,21.07,N/A,N/A +2013,5,15,3,30,94240,93150,92080,59.43,0,3.75,4.9,5.3500000000000005,5.75,6.07,6.3100000000000005,6.57,6.8100000000000005,7.58,205.54,203.16,201.54,200.09,199.03,198.22,197.41,196.64000000000001,194.07,20.97,20.67,20.51,20.330000000000002,20.150000000000002,19.98,19.79,19.62,19.39,N/A,N/A +2013,5,15,4,30,94260,93160,92090,68.77,0,4.34,6.15,6.76,7.25,7.65,7.99,8.33,8.65,9.35,188.06,188.73,189.39000000000001,190.28,191.35,192.45000000000002,193.8,195.08,197.64000000000001,19.830000000000002,19.650000000000002,19.51,19.35,19.19,19.04,18.88,18.740000000000002,18.490000000000002,N/A,N/A +2013,5,15,5,30,94230,93130,92060,72.72,0,4.33,6.29,6.92,7.390000000000001,7.75,8.040000000000001,8.28,8.5,8.950000000000001,143.93,145.24,146.36,147.6,149.26,150.99,153.39000000000001,155.73,161.28,19.22,19.080000000000002,18.97,18.830000000000002,18.68,18.53,18.37,18.21,17.900000000000002,N/A,N/A +2013,5,15,6,30,94230,93120,92050,77.5,0,2.4,4.08,4.57,4.95,5.32,5.66,6.04,6.42,7.22,117.78,127.07000000000001,132.86,138.31,143.4,148.02,152.24,156.03,162.11,18.41,18.37,18.27,18.14,17.98,17.84,17.67,17.51,17.18,N/A,N/A +2013,5,15,7,30,94270,93170,92090,85.99,0,2.19,3.7,4.24,4.74,5.26,5.79,6.390000000000001,7,8.22,123.09,131.69,137.71,143.49,148.66,153.49,157.48,161.09,166.01,17.46,17.53,17.48,17.39,17.3,17.2,17.1,17.01,16.82,N/A,N/A +2013,5,15,8,30,94250,93140,92070,88.46000000000001,0,2.09,3.9,4.64,5.44,6.19,6.9,7.58,8.24,9.44,127.87,138.58,145.9,150.67000000000002,154.23,156.95000000000002,158.98,160.74,163.25,17.17,17.32,17.26,17.16,17.06,16.96,16.85,16.75,16.54,N/A,N/A +2013,5,15,9,30,94250,93130,92060,93.96000000000001,0,1.76,3.37,3.97,4.65,5.38,6.16,7.01,7.86,9.49,131.13,140.31,146.6,152.1,156.6,160.54,163.43,166,169.18,16.53,16.71,16.64,16.55,16.46,16.38,16.3,16.23,16.1,N/A,N/A +2013,5,15,10,30,94220,93120,92040,89.10000000000001,0,3.39,5.39,6.41,6.96,7.5,8.02,8.57,9.11,10.17,165.77,167.35,168.32,168.57,168.94,169.38,169.85,170.31,171.17000000000002,17.56,17.3,17.150000000000002,16.990000000000002,16.84,16.69,16.55,16.44,16.22,N/A,N/A +2013,5,15,11,30,94160,93060,91980,90.5,0,4.93,6.72,7.42,8.01,8.540000000000001,9.01,9.6,10.21,11.61,174.63,175.06,175.33,175.58,175.85,176.1,176.46,176.81,177.55,18,17.69,17.5,17.27,17.06,16.86,16.69,16.56,16.53,N/A,N/A +2013,5,15,12,30,94190,93090,92020,91.59,0,3.39,5.18,6.11,6.84,7.46,7.99,8.47,8.92,9.78,165.1,168.6,170.88,172.11,173.11,173.92000000000002,174.66,175.33,176.41,18.45,18.2,18.05,17.88,17.71,17.55,17.400000000000002,17.25,16.95,N/A,N/A +2013,5,15,13,30,94150,93050,91980,86.60000000000001,0,6.08,7.86,8.43,8.81,9.09,9.3,9.49,9.65,9.96,173.62,174.08,174.35,174.59,174.79,174.98,175.15,175.31,175.65,19.25,18.88,18.69,18.48,18.28,18.09,17.89,17.7,17.3,N/A,N/A +2013,5,15,14,30,94140,93040,91970,80.36,0,5.76,7.15,7.5600000000000005,7.79,7.92,8.01,8.05,8.08,8.11,180.31,179.82,179.49,179.24,179.02,178.83,178.64000000000001,178.48,178.14000000000001,20.28,19.66,19.42,19.19,18.97,18.78,18.580000000000002,18.400000000000002,18.03,N/A,N/A +2013,5,15,15,30,94150,93060,92000,70.11,0,6.12,7.48,7.86,8.01,8.08,8.11,8.09,8.06,7.96,180.68,180.95000000000002,181.12,181.27,181.42000000000002,181.57,181.72,181.87,182.26,21.66,20.94,20.67,20.42,20.2,20,19.8,19.62,19.25,N/A,N/A +2013,5,15,16,30,94040,92960,91910,58.69,0,7.25,8.97,9.47,9.71,9.85,9.91,9.93,9.94,9.89,172.57,173.22,173.64000000000001,174.05,174.42000000000002,174.78,175.18,175.56,176.42000000000002,23.67,22.87,22.580000000000002,22.31,22.080000000000002,21.87,21.67,21.48,21.1,N/A,N/A +2013,5,15,17,30,94010,92930,91880,51.22,0,5.3500000000000005,6.5600000000000005,6.92,7.1000000000000005,7.23,7.3100000000000005,7.37,7.42,7.47,203.79,203.75,203.74,203.84,203.98000000000002,204.15,204.35,204.56,205.05,25.62,24.84,24.54,24.28,24.04,23.82,23.61,23.41,23.02,N/A,N/A +2013,5,15,18,30,93900,92830,91790,40.37,0,6.74,8.34,8.84,9.1,9.27,9.39,9.47,9.52,9.59,199.34,199.81,200.09,200.41,200.72,201.02,201.34,201.62,202.24,27.86,27.03,26.71,26.43,26.19,25.96,25.740000000000002,25.53,25.13,N/A,N/A +2013,5,15,19,30,93820,92750,91720,36.69,0,7.46,9.27,9.81,10.1,10.31,10.450000000000001,10.56,10.64,10.75,193.45000000000002,194.28,194.86,195.43,195.93,196.41,196.89000000000001,197.34,198.23000000000002,29.18,28.330000000000002,28.02,27.740000000000002,27.490000000000002,27.26,27.04,26.84,26.43,N/A,N/A +2013,5,15,20,30,93710,92650,91630,23.45,0,7.23,8.96,9.52,9.84,10.07,10.24,10.36,10.47,10.620000000000001,194.09,196.54,198,199.17000000000002,200.20000000000002,201.18,202.09,202.94,204.5,31.45,30.71,30.44,30.19,29.97,29.76,29.55,29.36,28.97,N/A,N/A +2013,5,15,21,30,93590,92530,91510,23.6,0,8.3,10.39,10.93,11.25,11.46,11.61,11.71,11.790000000000001,11.89,189.5,189.57,189.73,189.96,190.19,190.43,190.68,190.92000000000002,191.44,32.13,31.35,31.080000000000002,30.810000000000002,30.57,30.34,30.11,29.91,29.490000000000002,N/A,N/A +2013,5,15,22,30,93540,92490,91470,15.22,0,5.66,6.92,7.32,7.49,7.63,7.73,7.8100000000000005,7.88,8,272.74,270.16,268.93,268.17,267.57,267.08,266.68,266.34000000000003,265.79,33.4,32.77,32.54,32.31,32.11,31.91,31.7,31.51,31.12,N/A,N/A +2013,5,15,23,30,93460,92410,91400,16.59,0,7.5600000000000005,9.64,10.290000000000001,10.69,10.97,11.16,11.3,11.41,11.540000000000001,236.24,236.1,236.06,236.05,236.06,236.08,236.1,236.13,236.19,33.09,32.55,32.32,32.08,31.87,31.650000000000002,31.44,31.240000000000002,30.84,N/A,N/A +2013,5,16,0,30,93610,92530,91490,44.96,0,10.73,14.55,15.94,16.92,17.53,17.89,18.09,18.23,17.71,333.91,334.79,335.43,335.7,335.77,335.71,335.15000000000003,334.53000000000003,330.75,24.47,24.18,24.060000000000002,23.94,23.78,23.62,23.51,23.43,23.650000000000002,N/A,N/A +2013,5,16,1,30,93530,92460,91430,45.230000000000004,0,2.52,3.02,2.84,2.5,2.5300000000000002,2.84,3.2800000000000002,3.77,4.74,105.60000000000001,113.04,123.3,143.52,156.71,167.29,174.06,179.36,183.96,24.98,25.14,25.3,25.61,25.86,26.080000000000002,26.27,26.45,26.740000000000002,N/A,N/A +2013,5,16,2,30,93450,92380,91360,40.02,0,2.5100000000000002,4.28,4.67,4.98,5.14,5.18,5.17,5.15,5.2,137.37,143.88,148.48,153.24,159.19,166.01,172.72,178.85,190.19,26.07,26.7,26.85,27.04,27.26,27.5,27.69,27.85,28.01,N/A,N/A +2013,5,16,3,30,93530,92460,91430,41.17,0,0.37,1.04,1.5,2.11,2.75,3.39,4.03,4.67,5.88,123.03,167.44,198.52,204.97,209.11,210.65,212.11,213.56,216.54,25.79,26.66,26.82,26.96,27.07,27.17,27.27,27.36,27.54,N/A,N/A +2013,5,16,4,30,93480,92420,91390,36.7,0,7.76,10.23,10.65,10.68,10.4,9.98,9.6,9.26,8.790000000000001,162.92000000000002,166.93,169.91,173.67000000000002,179.75,186.76,196.5,205.58,226.15,26.92,27.14,27.22,27.32,27.44,27.59,27.71,27.810000000000002,27.69,N/A,N/A +2013,5,16,5,30,93460,92390,91360,45.5,0,7.53,10.36,10.98,10.49,7.86,4.78,4.19,4.23,4.04,168.45000000000002,169.02,170.14000000000001,172.92000000000002,194.65,220.69,226.63,227.58,230.25,25.05,25.310000000000002,25.59,26.240000000000002,26.91,27.61,27.64,27.41,26.98,N/A,N/A +2013,5,16,6,30,93520,92450,91410,49.42,0,5.69,8.25,9.26,10.15,10.88,11.5,11.91,12.24,11.86,167.43,167.43,167.46,167.3,167.32,167.45000000000002,168.22,169.12,172.83,23.990000000000002,24.16,24.19,24.22,24.23,24.23,24.25,24.27,24.5,N/A,N/A +2013,5,16,7,30,93500,92420,91390,54.01,0,5.68,8.25,9.1,9.57,8.94,7.71,6.84,6.17,5.39,166.16,166.84,167.72,169.45000000000002,173.25,177.87,185.91,193.66,205.99,23.12,23.330000000000002,23.54,24.03,24.63,25.32,25.87,26.34,26.580000000000002,N/A,N/A +2013,5,16,8,30,93540,92460,91420,58.56,0,6.58,9.36,10.34,11.16,11.69,12.02,11.93,11.73,9.66,163.39000000000001,164.72,165.57,166.38,167.23,168.07,169.29,170.48,174.34,22.68,22.79,22.830000000000002,22.91,23.06,23.25,23.66,24.07,24.86,N/A,N/A +2013,5,16,9,30,93520,92440,91390,66.29,0,6.18,8.75,9.700000000000001,10.5,11.11,11.58,11.75,11.8,10.43,150.85,152.71,153.93,154.99,156.08,157.20000000000002,158.74,160.31,167.43,21.59,21.55,21.48,21.400000000000002,21.36,21.330000000000002,21.330000000000002,21.36,22.400000000000002,N/A,N/A +2013,5,16,10,30,93520,92440,91380,70.31,0,5.49,7.84,8.71,9.47,10.13,10.71,11,11.14,9.38,156.12,157.97,159.24,160.33,161.42000000000002,162.5,164.52,166.63,174.74,20.35,20.34,20.28,20.21,20.16,20.13,20.21,20.32,21.12,N/A,N/A +2013,5,16,11,30,93580,92490,91440,76.16,0,2.2800000000000002,4.6000000000000005,5.33,5.9,5.8,5.43,4.72,4.16,3.66,161.23,168.15,172.41,175.21,180.03,185.04,194.87,203.76,225.46,19.740000000000002,20.14,20.19,20.31,20.67,21.1,21.44,21.71,21.95,N/A,N/A +2013,5,16,12,30,93620,92530,91470,75.13,0,0.48,1.86,2.96,3.37,3.64,3.81,3.9,3.96,3.98,203.23000000000002,200.12,199.51,204.92000000000002,211.52,218.65,225.07,230.74,238.17000000000002,19.66,20.04,20.09,20.18,20.31,20.47,20.56,20.62,20.6,N/A,N/A +2013,5,16,13,30,93610,92520,91470,68.39,0,0.5,0.6900000000000001,0.8200000000000001,1.01,1.46,2.23,2.69,3.0700000000000003,3.62,173.97,182.77,188.28,194.34,200.86,209.55,216.38,222.78,237.56,20.41,20.1,19.98,19.86,20.04,20.35,20.82,21.26,21.830000000000002,N/A,N/A +2013,5,16,14,30,93610,92530,91490,53.84,0,0.7000000000000001,0.81,0.84,0.87,0.9400000000000001,1.04,1.35,1.74,2.64,121.53,135,144.52,156.20000000000002,168.65,182.14000000000001,199.59,220.33,240.26,23.91,23.51,23.34,23.19,23.05,22.93,22.85,22.8,23.37,N/A,N/A +2013,5,16,15,30,93620,92560,91530,31.61,0,3.11,3.79,4.01,4.13,4.21,4.28,4.3500000000000005,4.4,4.5,253.58,253.89000000000001,254.15,254.49,254.81,255.13,255.46,255.78,256.51,28.77,28.18,27.93,27.7,27.490000000000002,27.29,27.09,26.900000000000002,26.52,N/A,N/A +2013,5,16,16,30,93600,92550,91530,20.59,0,3.91,4.88,5.22,5.43,5.58,5.69,5.78,5.8500000000000005,5.96,299.3,299.36,299.37,299.28000000000003,299.19,299.08,298.97,298.88,298.67,32.08,31.42,31.150000000000002,30.89,30.67,30.45,30.240000000000002,30.04,29.64,N/A,N/A +2013,5,16,17,30,93570,92520,91510,17.85,0,4.8100000000000005,6.0600000000000005,6.51,6.78,6.99,7.15,7.28,7.390000000000001,7.5600000000000005,311.40000000000003,311.85,312.07,312.22,312.34000000000003,312.45,312.55,312.64,312.8,34.37,33.65,33.36,33.1,32.86,32.63,32.42,32.21,31.8,N/A,N/A +2013,5,16,18,30,93560,92520,91510,13.26,0,6.5,7.99,8.45,8.69,8.86,8.98,9.08,9.15,9.25,307.8,308.37,308.69,308.90000000000003,309.07,309.2,309.32,309.42,309.58,35.35,34.550000000000004,34.25,33.97,33.74,33.5,33.28,33.07,32.660000000000004,N/A,N/A +2013,5,16,19,30,93540,92500,91490,12.8,0,5.65,6.97,7.37,7.59,7.75,7.86,7.95,8.02,8.13,312.23,312.3,312.3,312.25,312.2,312.15000000000003,312.09000000000003,312.02,311.89,36.03,35.26,34.96,34.69,34.45,34.22,33.99,33.78,33.36,N/A,N/A +2013,5,16,20,30,93500,92460,91450,11.17,0,5.58,6.83,7.22,7.43,7.58,7.68,7.7700000000000005,7.83,7.930000000000001,305.08,305.12,305.14,305.1,305.06,305.01,304.95,304.89,304.76,36.83,36.08,35.800000000000004,35.52,35.29,35.06,34.84,34.62,34.21,N/A,N/A +2013,5,16,21,30,93430,92400,91400,9.5,0,5.0200000000000005,6.15,6.49,6.68,6.83,6.94,7.0200000000000005,7.09,7.19,287.1,287.24,287.39,287.5,287.59000000000003,287.66,287.73,287.78000000000003,287.89,37.36,36.65,36.39,36.12,35.89,35.660000000000004,35.44,35.230000000000004,34.81,N/A,N/A +2013,5,16,22,30,93400,92370,91370,7.5200000000000005,0,5.61,6.8100000000000005,7.140000000000001,7.28,7.38,7.44,7.49,7.5200000000000005,7.5600000000000005,292.87,292.40000000000003,291.94,291.48,291.08,290.71,290.36,290.04,289.43,37.25,36.61,36.36,36.12,35.9,35.68,35.47,35.27,34.86,N/A,N/A +2013,5,16,23,30,93370,92340,91330,8.290000000000001,0,3.81,4.72,5.01,5.19,5.32,5.41,5.48,5.55,5.64,311.04,310.33,309.88,309.53000000000003,309.23,308.95,308.69,308.45,307.99,37,36.480000000000004,36.27,36.04,35.83,35.62,35.42,35.22,34.82,N/A,N/A +2013,5,17,0,30,93360,92320,91320,7.96,0,4.55,5.96,6.390000000000001,6.68,6.9,7.07,7.2,7.3100000000000005,7.47,272.33,272.23,272.2,272.14,272.1,272.05,272.01,271.99,271.96,36.5,36.25,36.1,35.910000000000004,35.730000000000004,35.54,35.34,35.160000000000004,34.77,N/A,N/A +2013,5,17,1,30,93350,92310,91310,11.790000000000001,0,1.8,3.2600000000000002,3.62,4.05,4.41,4.74,5.03,5.29,5.7700000000000005,282.38,293.67,300.22,303.13,304.59000000000003,304.43,303.86,303.06,301.38,34.01,35.46,35.61,35.550000000000004,35.44,35.26,35.07,34.88,34.5,N/A,N/A +2013,5,17,2,30,93360,92310,91310,15.200000000000001,0,1.68,2.2800000000000002,2.34,2.98,3.61,4.2700000000000005,4.84,5.36,5.84,224.72,248.28,264.39,290.04,305.67,309.57,311.53000000000003,312.43,310.43,31.55,32.5,32.6,32.94,33.24,33.52,33.77,34,34.15,N/A,N/A +2013,5,17,3,30,93400,92350,91340,15.33,0,1,1.43,1.47,1.78,2.15,2.62,3.08,3.52,4.2700000000000005,216.09,239.11,253.12,269.41,280.57,286.6,290.15000000000003,292.19,294.40000000000003,30.07,31.650000000000002,32.02,32.410000000000004,32.72,33.01,33.230000000000004,33.410000000000004,33.59,N/A,N/A +2013,5,17,4,30,93440,92390,91370,17.16,0,0.49,0.78,0.85,1.07,1.31,1.56,1.77,1.96,2.37,30.17,352.92,332.42,315.12,305.43,303.44,305.23,308.74,314.28000000000003,28.52,30.22,30.650000000000002,31.02,31.35,31.66,31.92,32.160000000000004,32.52,N/A,N/A +2013,5,17,5,30,93450,92390,91370,19.39,0,1.95,2.97,2.98,2.95,2.89,2.81,2.88,3.02,3.69,254.45000000000002,262.6,266.25,266.82,267.51,268.28000000000003,274.21,281.74,295.32,27.5,29.11,29.490000000000002,29.86,30.13,30.34,30.66,31,31.63,N/A,N/A +2013,5,17,6,30,93550,92490,91460,17.95,0,1.6,2.89,3.09,3.27,3.39,3.48,3.5300000000000002,3.58,3.66,121.62,123.24000000000001,125.23,127.02,128.75,130.46,132.33,134.13,137.16,27.67,29.1,29.26,29.400000000000002,29.51,29.59,29.66,29.71,29.75,N/A,N/A +2013,5,17,7,30,93570,92510,91480,54.5,0,4.19,6.91,7.890000000000001,8.78,9.61,10.43,11.07,11.620000000000001,11.870000000000001,146.6,146.5,146.22,145.67000000000002,145.41,145.4,146.18,147.24,151.22,25.55,26.16,26.3,26.36,26.42,26.47,26.580000000000002,26.69,27.01,N/A,N/A +2013,5,17,8,30,93570,92500,91470,59.85,0,4.69,7.29,8.19,8.97,9.76,10.58,11.46,12.34,13.69,127.88000000000001,129.68,130.63,130.95,132.14000000000001,134.01,136.62,139.39000000000001,145.25,24.67,25,25.02,24.93,24.86,24.79,24.78,24.78,24.97,N/A,N/A +2013,5,17,9,30,93610,92540,91500,73.46000000000001,0,2.72,5.59,6.61,7.59,8.48,9.290000000000001,10.09,10.85,12.17,132.82,138,141.07,143.21,145.17000000000002,147,149.02,151,155.17000000000002,23.13,23.84,23.87,23.89,23.91,23.93,23.98,24.03,24.25,N/A,N/A +2013,5,17,10,30,93630,92550,91510,78.92,0,2.21,4.25,4.92,5.61,6.25,6.88,7.55,8.21,9.65,124.76,126.62,128.12,129.88,132.44,135.56,139.27,142.99,149.83,22.01,22.6,22.580000000000002,22.54,22.51,22.48,22.52,22.56,22.82,N/A,N/A +2013,5,17,11,30,93660,92580,91530,88.02,0,2.08,4.11,4.7700000000000005,5.4,5.99,6.5600000000000005,7.17,7.76,8.86,125.60000000000001,133.77,138.73,142.64000000000001,146,149.01,151.79,154.38,158.71,21.23,21.78,21.78,21.76,21.740000000000002,21.72,21.71,21.7,21.72,N/A,N/A +2013,5,17,12,30,93720,92630,91580,93.81,0,1.1300000000000001,2.5500000000000003,3.21,3.9,4.57,5.24,5.91,6.55,7.8100000000000005,113.39,126.69,135.44,141.71,146.57,150.47,153.51,156.28,160.78,20.13,20.56,20.64,20.68,20.71,20.73,20.740000000000002,20.75,20.78,N/A,N/A +2013,5,17,13,30,93740,92660,91610,83.35000000000001,0,3.6,4.51,4.79,4.97,5.1000000000000005,5.2,5.37,5.53,6.34,159.38,160.89000000000001,161.93,162.79,163.5,164.12,164.82,165.48,167.12,22.53,22.1,21.91,21.72,21.53,21.36,21.18,21.01,20.7,N/A,N/A +2013,5,17,14,30,93760,92680,91640,76.84,0,3.42,4.16,4.38,4.47,4.51,4.53,4.53,4.5200000000000005,4.5,170.75,170.33,170.15,170.01,169.88,169.75,169.65,169.56,169.42000000000002,24.080000000000002,23.52,23.29,23.080000000000002,22.88,22.69,22.51,22.330000000000002,21.97,N/A,N/A +2013,5,17,15,30,93750,92680,91640,67.1,0,4.11,4.95,5.16,5.23,5.25,5.25,5.23,5.21,5.15,175.95000000000002,175.26,174.93,174.57,174.21,173.85,173.44,173.05,172.16,25.46,24.810000000000002,24.560000000000002,24.34,24.14,23.96,23.77,23.6,23.26,N/A,N/A +2013,5,17,16,30,93760,92690,91660,55.04,0,4.08,4.99,5.2700000000000005,5.4,5.48,5.5200000000000005,5.55,5.5600000000000005,5.57,169.69,169.15,168.84,168.57,168.33,168.09,167.85,167.63,167.16,28.28,27.580000000000002,27.3,27.060000000000002,26.85,26.64,26.45,26.26,25.900000000000002,N/A,N/A +2013,5,17,17,30,93740,92690,91670,44.92,0,3.54,4.33,4.59,4.72,4.8100000000000005,4.87,4.92,4.95,4.98,155.55,155.51,155.54,155.54,155.53,155.52,155.51,155.49,155.47,30.85,30.16,29.86,29.59,29.36,29.14,28.93,28.73,28.34,N/A,N/A +2013,5,17,18,30,93690,92640,91620,35.97,0,4.21,5.23,5.58,5.7700000000000005,5.91,6,6.08,6.13,6.22,170.92000000000002,170.63,170.45000000000002,170.31,170.19,170.08,169.99,169.9,169.75,33.14,32.39,32.08,31.810000000000002,31.57,31.34,31.12,30.92,30.51,N/A,N/A +2013,5,17,19,30,93630,92590,91580,27.560000000000002,0,5.47,6.8,7.22,7.46,7.63,7.75,7.83,7.9,8.01,174.37,174.12,173.97,173.84,173.73,173.62,173.53,173.44,173.28,35.18,34.37,34.06,33.77,33.53,33.29,33.07,32.85,32.44,N/A,N/A +2013,5,17,20,30,93560,92520,91520,21.54,0,6.92,8.58,9.08,9.34,9.53,9.66,9.75,9.82,9.91,176.03,175.6,175.34,175.12,174.92000000000002,174.74,174.57,174.42000000000002,174.14000000000001,36.35,35.52,35.22,34.94,34.7,34.47,34.25,34.03,33.62,N/A,N/A +2013,5,17,21,30,93510,92480,91470,18.59,0,7.22,8.96,9.48,9.76,9.96,10.09,10.19,10.26,10.370000000000001,170.33,170.32,170.3,170.28,170.25,170.23,170.21,170.18,170.12,37.04,36.27,35.99,35.71,35.480000000000004,35.25,35.02,34.81,34.39,N/A,N/A +2013,5,17,22,30,93490,92460,91450,19.82,0,7.29,9.1,9.620000000000001,9.9,10.1,10.23,10.32,10.4,10.5,167.76,167.79,167.79,167.77,167.75,167.73,167.71,167.69,167.67000000000002,36.77,36.08,35.83,35.57,35.34,35.12,34.910000000000004,34.7,34.29,N/A,N/A +2013,5,17,23,30,93450,92420,91410,22.04,0,8.31,10.52,11.15,11.51,11.78,11.96,12.1,12.21,12.370000000000001,163.32,163.48,163.57,163.64000000000001,163.69,163.75,163.79,163.84,163.93,36.12,35.550000000000004,35.32,35.08,34.87,34.65,34.44,34.230000000000004,33.83,N/A,N/A +2013,5,18,0,30,93480,92440,91420,23.14,0,12.14,15.52,16.28,16.75,17.07,17.3,17.46,17.59,17.73,185.24,185.19,185.07,184.95000000000002,184.82,184.70000000000002,184.58,184.46,184.27,33.56,33.08,32.86,32.63,32.42,32.21,32.01,31.830000000000002,31.470000000000002,N/A,N/A +2013,5,18,1,30,93540,92480,91450,35,0,10.64,13.950000000000001,15.05,15.83,16.45,16.96,17.41,17.81,18.56,152.64000000000001,152.91,153.06,153.1,153.15,153.22,153.34,153.49,153.99,28.64,28.55,28.48,28.400000000000002,28.330000000000002,28.26,28.19,28.12,27.990000000000002,N/A,N/A +2013,5,18,2,30,93480,92420,91400,27.21,0,9.69,13.08,14.17,15.05,15.81,16.5,17.150000000000002,17.76,18.89,147.87,147.78,147.66,147.39000000000001,147.07,146.73,146.34,145.97,145.19,29.42,29.36,29.3,29.22,29.14,29.07,29,28.94,28.830000000000002,N/A,N/A +2013,5,18,3,30,93660,92610,91580,30.13,0,1.69,3.93,5.48,6.5600000000000005,7.46,7.9,8.13,8.09,7.47,35.76,32.05,25.96,24.580000000000002,23.740000000000002,24.26,25.35,27.12,32.72,29.39,30.27,30.29,30.27,30.240000000000002,30.150000000000002,30.060000000000002,29.96,29.76,N/A,N/A +2013,5,18,4,30,93660,92600,91580,28.580000000000002,0,5.5600000000000005,7.55,8.17,8.61,8.89,9.06,9.08,9.03,8.84,56.910000000000004,57.04,57.21,57.660000000000004,58.480000000000004,59.64,62.43,65.76,78.82000000000001,29.38,29.3,29.240000000000002,29.17,29.12,29.07,29.060000000000002,29.07,29.18,N/A,N/A +2013,5,18,5,30,93620,92560,91540,31.740000000000002,0,5.3,8.47,9.52,10.35,10.92,11.35,11.620000000000001,11.84,12.4,98.45,101.18,103.08,105.19,107.69,110.23,113.2,115.99000000000001,122.39,29.330000000000002,29.59,29.650000000000002,29.67,29.68,29.67,29.59,29.51,29.2,N/A,N/A +2013,5,18,6,30,93670,92610,91580,39.09,0,6.63,9.39,10.23,10.84,11.26,11.55,11.8,12.01,12.67,137.45000000000002,137.68,138.08,138.92000000000002,140.16,141.66,143.69,145.74,150.66,28.67,28.650000000000002,28.580000000000002,28.48,28.35,28.22,28.07,27.92,27.580000000000002,N/A,N/A +2013,5,18,7,30,93710,92640,91610,44.79,0,7.09,9.73,10.6,11.28,11.82,12.27,12.67,13.02,13.620000000000001,131.11,130.75,130.61,130.66,130.92000000000002,131.34,132.1,132.94,135.61,27.560000000000002,27.43,27.32,27.18,27.04,26.89,26.740000000000002,26.6,26.29,N/A,N/A +2013,5,18,8,30,93660,92590,91550,52.02,0,7.47,10.27,11.17,11.9,12.540000000000001,13.11,13.65,14.15,15.09,140.1,140.71,141.06,141.48,142.01,142.6,143.36,144.11,145.99,26.26,26.11,26.01,25.89,25.78,25.67,25.560000000000002,25.46,25.26,N/A,N/A +2013,5,18,9,30,93680,92610,91570,58.660000000000004,0,7.640000000000001,10.35,11.19,11.870000000000001,12.43,12.91,13.36,13.76,14.540000000000001,150.38,150.62,150.79,150.98,151.21,151.47,151.83,152.18,153.14000000000001,25.560000000000002,25.37,25.23,25.080000000000002,24.93,24.78,24.62,24.47,24.17,N/A,N/A +2013,5,18,10,30,93690,92620,91570,60.89,0,6.54,9.25,10.21,11.01,11.67,12.25,12.77,13.25,14.17,157.11,158.24,158.85,159.36,159.84,160.3,160.81,161.3,162.45000000000002,24.650000000000002,24.43,24.29,24.14,23.990000000000002,23.85,23.7,23.57,23.31,N/A,N/A +2013,5,18,11,30,93690,92610,91570,65.24,0,6.61,9.370000000000001,10.38,11.27,12.030000000000001,12.71,13.38,14,15.17,156.19,157.65,158.53,159.33,160.09,160.79,161.5,162.17000000000002,163.44,23.900000000000002,23.740000000000002,23.63,23.5,23.37,23.25,23.12,23.01,22.8,N/A,N/A +2013,5,18,12,30,93750,92670,91630,68.60000000000001,0,5.5,7.57,8.35,9.02,9.58,10.07,10.540000000000001,10.98,11.84,138.27,140.88,142.65,144.21,145.63,146.97,148.29,149.53,151.94,23.45,23.21,23.06,22.88,22.71,22.54,22.36,22.19,21.84,N/A,N/A +2013,5,18,13,30,93770,92690,91640,69.03,0,5.65,7.17,7.7,8.040000000000001,8.28,8.44,8.58,8.69,8.91,147.39000000000001,148.24,148.75,149.16,149.52,149.85,150.19,150.52,151.35,23.650000000000002,23.17,22.96,22.740000000000002,22.54,22.34,22.14,21.96,21.580000000000002,N/A,N/A +2013,5,18,14,30,93770,92690,91640,66.69,0,6.17,7.69,8.15,8.38,8.53,8.620000000000001,8.67,8.700000000000001,8.73,148.01,148.46,148.77,149.03,149.26,149.47,149.69,149.9,150.39000000000001,24.35,23.7,23.45,23.2,22.990000000000002,22.79,22.59,22.400000000000002,22.01,N/A,N/A +2013,5,18,15,30,93840,92770,91730,61.45,0,5.73,7.05,7.46,7.66,7.8,7.88,7.930000000000001,7.97,8.01,182.98,182.65,182.42000000000002,182.31,182.24,182.19,182.17000000000002,182.16,182.18,25.76,25.02,24.740000000000002,24.48,24.25,24.03,23.82,23.62,23.22,N/A,N/A +2013,5,18,16,30,93810,92740,91710,55.050000000000004,0,4.36,5.32,5.62,5.76,5.86,5.91,5.95,5.97,5.98,173.14000000000001,173.44,173.66,173.87,174.08,174.29,174.51,174.73,175.17000000000002,27.36,26.64,26.34,26.080000000000002,25.85,25.63,25.42,25.22,24.830000000000002,N/A,N/A +2013,5,18,17,30,93740,92680,91650,44.81,0,5.04,6.15,6.47,6.63,6.73,6.78,6.8100000000000005,6.83,6.83,176.74,176.91,177.01,177.09,177.18,177.26,177.36,177.46,177.69,29.7,28.91,28.6,28.330000000000002,28.09,27.86,27.650000000000002,27.44,27.04,N/A,N/A +2013,5,18,18,30,93690,92640,91620,37.33,0,4.92,5.99,6.34,6.5,6.62,6.68,6.73,6.76,6.79,182.84,183.44,183.82,184.22,184.58,184.93,185.28,185.62,186.34,31.400000000000002,30.62,30.310000000000002,30.02,29.78,29.55,29.330000000000002,29.12,28.71,N/A,N/A +2013,5,18,19,30,93630,92590,91570,32.7,0,5.33,6.54,6.890000000000001,7.07,7.2,7.2700000000000005,7.33,7.36,7.4,188.23,188.31,188.43,188.6,188.75,188.92000000000002,189.09,189.26,189.6,32.71,31.900000000000002,31.59,31.3,31.060000000000002,30.830000000000002,30.6,30.39,29.98,N/A,N/A +2013,5,18,20,30,93570,92520,91510,27.3,0,5.37,6.58,6.94,7.13,7.26,7.3500000000000005,7.41,7.45,7.5,190.74,191.52,191.99,192.44,192.84,193.23000000000002,193.61,193.97,194.66,34.04,33.25,32.95,32.67,32.43,32.2,31.970000000000002,31.76,31.34,N/A,N/A +2013,5,18,21,30,93500,92460,91450,25.66,0,4.82,5.86,6.15,6.28,6.38,6.43,6.47,6.5,6.53,190.85,191.28,191.62,192.04,192.41,192.79,193.18,193.56,194.35,34.550000000000004,33.81,33.53,33.26,33.03,32.81,32.59,32.38,31.970000000000002,N/A,N/A +2013,5,18,22,30,93420,92390,91370,23.1,0,6.2,7.57,7.95,8.11,8.21,8.26,8.290000000000001,8.31,8.31,172.27,173.01,173.43,173.78,174.08,174.36,174.63,174.89000000000001,175.39000000000001,35.09,34.37,34.11,33.85,33.63,33.4,33.19,32.99,32.58,N/A,N/A +2013,5,18,23,30,93400,92360,91350,24.86,0,7.140000000000001,8.92,9.44,9.73,9.93,10.07,10.18,10.27,10.39,164.3,165.46,166.07,166.61,167.06,167.43,167.77,168.08,168.65,34.660000000000004,34.06,33.82,33.57,33.36,33.14,32.93,32.72,32.32,N/A,N/A +2013,5,19,0,30,93350,92310,91300,29.23,0,8.8,11.200000000000001,11.8,12.15,12.4,12.57,12.69,12.790000000000001,12.91,168.87,169.23,169.49,169.74,169.95000000000002,170.16,170.35,170.55,170.93,33.87,33.46,33.27,33.05,32.85,32.64,32.44,32.25,31.86,N/A,N/A +2013,5,19,1,30,93350,92310,91300,33.85,0,8.23,11.06,11.83,12.38,12.81,13.16,13.44,13.69,14.06,174.74,174.9,174.97,175.04,175.09,175.12,175.13,175.13,175.11,32.37,32.230000000000004,32.12,31.96,31.8,31.64,31.470000000000002,31.3,30.94,N/A,N/A +2013,5,19,2,30,93460,92410,91390,38.81,0,6.1000000000000005,8.370000000000001,9.19,9.9,10.52,11.1,11.66,12.21,13.290000000000001,165.89000000000001,165.95000000000002,165.99,166.20000000000002,166.42000000000002,166.66,166.84,166.98,167.01,30.94,30.89,30.82,30.71,30.6,30.48,30.36,30.23,29.97,N/A,N/A +2013,5,19,3,30,93490,92440,91420,39.44,0,5.71,7.95,8.75,9.41,9.99,10.57,11.18,11.81,13.280000000000001,169.62,170.13,170.46,170.84,171.14000000000001,171.38,171.46,171.45000000000002,171.12,30.2,30.18,30.11,29.98,29.86,29.72,29.57,29.42,29.150000000000002,N/A,N/A +2013,5,19,4,30,93450,92390,91370,43.99,0,5.14,7.5200000000000005,8.370000000000001,9.23,10.11,11.05,12,12.93,14.66,163.75,163.39000000000001,163.34,163.47,163.71,164.05,164.1,164.03,163.96,29.1,29.13,29.1,29.05,28.990000000000002,28.93,28.85,28.77,28.57,N/A,N/A +2013,5,19,5,30,93440,92380,91360,47.46,0,8.89,12.09,13.13,13.99,14.75,15.43,16.1,16.71,17.88,164.01,164.15,164.25,164.38,164.52,164.67000000000002,164.85,165.03,165.48,28.57,28.48,28.400000000000002,28.29,28.17,28.060000000000002,27.94,27.830000000000002,27.59,N/A,N/A +2013,5,19,6,30,93480,92410,91380,49.02,0,7.87,10.94,12.01,12.96,13.83,14.66,15.47,16.240000000000002,17.69,161.33,161.86,162.17000000000002,162.47,162.74,163.02,163.33,163.63,164.35,27.39,27.330000000000002,27.25,27.150000000000002,27.05,26.94,26.82,26.7,26.44,N/A,N/A +2013,5,19,7,30,93530,92460,91430,47.15,0,6.87,9.69,10.74,11.700000000000001,12.58,13.41,14.23,15.02,16.57,152.96,154.63,155.74,156.81,157.75,158.61,159.38,160.09,161.31,26.19,26.16,26.09,26.01,25.91,25.810000000000002,25.7,25.6,25.36,N/A,N/A +2013,5,19,8,30,93560,92490,91450,48.76,0,5.87,8.5,9.55,10.48,11.32,12.1,12.86,13.58,15.040000000000001,146.11,148.72,150.36,151.66,152.8,153.83,154.85,155.81,157.77,25.02,24.96,24.88,24.76,24.650000000000002,24.53,24.400000000000002,24.29,24.05,N/A,N/A +2013,5,19,9,30,93520,92440,91400,50.14,0,4.72,7.38,8.55,9.69,10.69,11.59,12.42,13.200000000000001,14.530000000000001,149.79,154.06,156.68,158.55,160.02,161.21,162.25,163.20000000000002,165.09,24.04,24.02,23.96,23.87,23.79,23.71,23.62,23.55,23.43,N/A,N/A +2013,5,19,10,30,93620,92540,91500,57.74,0,1.5,3.48,4.39,5.21,5.99,6.74,7.49,8.22,9.55,135.78,151.67000000000002,161.96,167.20000000000002,170.64000000000001,172.75,173.89000000000001,174.66,174.94,22.71,23.11,23.07,22.98,22.89,22.78,22.67,22.56,22.34,N/A,N/A +2013,5,19,11,30,93650,92570,91520,62.120000000000005,0,1.9100000000000001,3.64,4.21,4.8500000000000005,5.49,6.13,6.8,7.46,8.74,174.5,179.4,182.49,185.14000000000001,186.54,187.17000000000002,186.76,186.11,183.65,21.91,22.39,22.36,22.32,22.25,22.17,22.06,21.96,21.7,N/A,N/A +2013,5,19,12,30,93660,92570,91520,64.42,0,2.27,4.33,5.05,5.84,6.5200000000000005,7.11,7.63,8.09,7.79,150.3,162.62,170,174.39000000000001,177.41,179.47,181.19,182.78,189.57,21.35,21.73,21.72,21.68,21.650000000000002,21.62,21.63,21.650000000000002,21.82,N/A,N/A +2013,5,19,13,30,93640,92560,91520,51.76,0,2.46,2.97,3.09,3.13,3.17,3.21,3.3000000000000003,3.4,3.6,183.8,186.13,188.31,191.48000000000002,195.38,199.64000000000001,206.81,213.96,226.68,23.490000000000002,23.16,23.03,22.89,22.78,22.68,22.63,22.59,22.55,N/A,N/A +2013,5,19,14,30,93680,92600,91560,40.32,0,2.12,2.52,2.63,2.67,2.68,2.68,2.66,2.64,2.57,224.55,225.5,226.11,226.92000000000002,227.82,228.81,230.11,231.42000000000002,235.26,25.76,25.26,25.04,24.830000000000002,24.63,24.44,24.25,24.07,23.71,N/A,N/A +2013,5,19,15,30,93660,92590,91560,13.48,0,2.82,3.5100000000000002,3.75,3.91,4.03,4.12,4.21,4.28,4.41,297.8,296.83,296.29,295.79,295.35,294.95,294.55,294.18,293.49,28.86,28.29,28.04,27.810000000000002,27.6,27.400000000000002,27.19,27,26.61,N/A,N/A +2013,5,19,16,30,93660,92600,91570,11.86,0,3.14,3.88,4.15,4.3100000000000005,4.44,4.54,4.62,4.69,4.82,294.87,295.52,295.90000000000003,296.18,296.41,296.6,296.75,296.88,297.11,30.57,29.95,29.68,29.43,29.2,28.990000000000002,28.77,28.580000000000002,28.17,N/A,N/A +2013,5,19,17,30,93620,92560,91540,10.74,0,4.45,5.43,5.75,5.93,6.0600000000000005,6.15,6.22,6.28,6.38,302.81,302.95,303.07,303.1,303.12,303.12,303.11,303.09000000000003,303.04,32.15,31.44,31.150000000000002,30.88,30.64,30.41,30.19,29.98,29.57,N/A,N/A +2013,5,19,18,30,93580,92530,91510,9.74,0,4.47,5.41,5.69,5.83,5.94,6.01,6.0600000000000005,6.1000000000000005,6.16,298.02,297.97,297.90000000000003,297.77,297.65000000000003,297.52,297.38,297.26,296.98,33.12,32.4,32.09,31.82,31.580000000000002,31.35,31.12,30.91,30.5,N/A,N/A +2013,5,19,19,30,93540,92500,91480,9.370000000000001,0,4.46,5.41,5.7,5.8500000000000005,5.95,6.03,6.09,6.13,6.2,280.53000000000003,280.44,280.48,280.48,280.48,280.46,280.43,280.40000000000003,280.35,33.93,33.2,32.89,32.62,32.38,32.14,31.91,31.7,31.28,N/A,N/A +2013,5,19,20,30,93500,92450,91440,8.8,0,4.68,5.62,5.9,6.03,6.13,6.2,6.24,6.28,6.33,264.42,265.34000000000003,265.82,266.15,266.4,266.62,266.8,266.95,267.21,34.26,33.53,33.230000000000004,32.96,32.730000000000004,32.5,32.27,32.06,31.650000000000002,N/A,N/A +2013,5,19,21,30,93440,92390,91380,8.700000000000001,0,4.11,4.95,5.22,5.34,5.44,5.5,5.55,5.59,5.66,273.46,272.69,272.3,272.07,271.89,271.75,271.63,271.51,271.3,34.44,33.76,33.480000000000004,33.22,32.99,32.77,32.56,32.35,31.94,N/A,N/A +2013,5,19,22,30,93380,92340,91330,8.34,0,2.14,2.6,2.7600000000000002,2.87,2.96,3.04,3.11,3.17,3.29,276.41,274.68,273.58,272.62,271.82,271.1,270.44,269.84000000000003,268.81,34.87,34.300000000000004,34.05,33.8,33.58,33.36,33.15,32.95,32.54,N/A,N/A +2013,5,19,23,30,93330,92290,91290,8.34,0,2.39,2.9,3.06,3.16,3.24,3.3000000000000003,3.35,3.4,3.48,233.65,234.77,235.48000000000002,236.04,236.5,236.89000000000001,237.22,237.51,238.01,35.160000000000004,34.65,34.43,34.19,33.980000000000004,33.77,33.57,33.36,32.96,N/A,N/A +2013,5,20,0,30,93290,92250,91240,9.89,0,3.22,4.03,4.25,4.38,4.47,4.53,4.57,4.6000000000000005,4.64,185.5,187.47,188.54,189.47,190.24,190.93,191.56,192.14000000000001,193.16,35.03,34.67,34.49,34.28,34.09,33.89,33.69,33.5,33.11,N/A,N/A +2013,5,20,1,30,93280,92240,91230,14.89,0,3.83,6.07,6.62,6.96,7.21,7.4,7.54,7.640000000000001,7.79,159.8,159.22,159.04,159.22,159.53,159.99,160.5,161.01,162.04,32.82,33.52,33.64,33.54,33.42,33.25,33.07,32.89,32.51,N/A,N/A +2013,5,20,2,30,93310,92260,91250,18.53,0,4.5,7.08,7.88,8.370000000000001,8.68,8.85,8.93,8.96,8.950000000000001,157.11,155.05,153.84,153.39000000000001,153.57,154.41,155.81,157.44,161.36,31.19,32.09,32.4,32.5,32.53,32.49,32.38,32.26,31.96,N/A,N/A +2013,5,20,3,30,93340,92290,91270,17.39,0,6.05,9.09,10.16,11.1,11.83,12.42,12.88,13.27,13.870000000000001,172.93,175.76,177.26,178.62,179.97,181.32,182.85,184.33,187.38,30.38,30.88,31.09,31.310000000000002,31.490000000000002,31.64,31.740000000000002,31.830000000000002,31.85,N/A,N/A +2013,5,20,4,30,93400,92350,91330,18.68,0,5.2700000000000005,7.86,8.66,9.18,9.61,9.99,10.42,10.86,11.76,190.81,191.89000000000001,191.9,190.09,188.07,185.71,183.63,181.74,179.3,30.080000000000002,30.61,30.73,30.68,30.580000000000002,30.41,30.23,30.05,29.7,N/A,N/A +2013,5,20,5,30,93420,92360,91340,26.13,0,3.37,6.1000000000000005,6.94,7.55,8.02,8.4,8.73,9.040000000000001,9.58,182.70000000000002,181.86,181.69,182.07,182.18,182.07,181.44,180.6,177.9,28.43,29.150000000000002,29.22,29.17,29.09,28.98,28.85,28.71,28.400000000000002,N/A,N/A +2013,5,20,6,30,93440,92380,91350,33.61,0,2.05,3.7600000000000002,4.34,5.19,6.03,6.9,7.7,8.47,9.92,152.8,165.21,172.45000000000002,176.38,178.41,178.79,178.21,177.26,174.79,27.240000000000002,28.27,28.37,28.310000000000002,28.19,28.02,27.84,27.66,27.38,N/A,N/A +2013,5,20,7,30,93490,92430,91390,43.02,0,1.87,4.3100000000000005,5.48,6.640000000000001,7.72,8.75,9.69,10.57,12.07,148.84,156.13,160.47,161.9,162.64000000000001,162.73,162.53,162.22,161.6,25.580000000000002,26.330000000000002,26.36,26.34,26.27,26.16,26,25.830000000000002,25.44,N/A,N/A +2013,5,20,8,30,93500,92430,91390,53.15,0,3.5100000000000002,5.76,6.61,7.42,8.15,8.83,9.56,10.290000000000001,11.88,130.55,135.34,138.44,140.68,142.58,144.26,145.93,147.56,150.66,24.25,24.46,24.44,24.38,24.29,24.19,24.07,23.96,23.72,N/A,N/A +2013,5,20,9,30,93510,92430,91390,66.09,0,2.6,5.08,6.15,7.11,7.97,8.75,9.55,10.34,11.950000000000001,129.56,136,140.27,142.44,144.22,145.71,147.25,148.79,151.93,22.650000000000002,23.01,22.990000000000002,22.93,22.85,22.75,22.64,22.53,22.32,N/A,N/A +2013,5,20,10,30,93510,92430,91380,72.52,0,2.77,5.32,6.49,7.57,8.5,9.34,10.18,10.98,12.51,126.65,134.62,140,142.78,144.94,146.61,148.14000000000001,149.59,152.3,21.7,21.96,21.94,21.89,21.82,21.740000000000002,21.650000000000002,21.57,21.400000000000002,N/A,N/A +2013,5,20,11,30,93540,92460,91410,78.45,0,2.5300000000000002,5.25,6.45,7.5,8.4,9.19,9.98,10.73,12.21,133.83,140.09,143.91,145.73,147.17000000000002,148.33,149.54,150.74,153.24,20.85,21.18,21.16,21.11,21.05,20.98,20.91,20.85,20.72,N/A,N/A +2013,5,20,12,30,93630,92540,91490,79.91,0,0.62,2.39,3.85,4.8,5.66,6.44,7.21,7.97,9.43,190.54,173.61,159.42000000000002,156.97,155.74,155.57,155.92000000000002,156.45000000000002,158.05,20.28,20.46,20.41,20.35,20.28,20.21,20.14,20.07,19.92,N/A,N/A +2013,5,20,13,30,93660,92570,91520,64.45,0,4.16,5.3100000000000005,5.73,6.0200000000000005,6.24,6.43,6.61,6.78,7.18,167.63,167.96,168.17000000000002,168.42000000000002,168.67000000000002,168.94,169.22,169.5,170.11,22.23,21.78,21.580000000000002,21.37,21.18,21,20.81,20.63,20.28,N/A,N/A +2013,5,20,14,30,93650,92570,91530,57.97,0,3.62,4.54,4.8500000000000005,5.03,5.15,5.22,5.28,5.33,5.4,183.24,182.97,182.83,182.74,182.69,182.64000000000001,182.61,182.59,182.57,23.78,23.2,22.96,22.740000000000002,22.53,22.330000000000002,22.13,21.95,21.57,N/A,N/A +2013,5,20,15,30,93680,92610,91570,51.19,0,3.48,4.2700000000000005,4.51,4.64,4.72,4.76,4.79,4.8,4.8100000000000005,183.32,183.33,183.4,183.5,183.61,183.72,183.86,183.99,184.31,25.72,25.080000000000002,24.82,24.57,24.35,24.150000000000002,23.94,23.75,23.36,N/A,N/A +2013,5,20,16,30,93650,92590,91560,43.18,0,3.4,4.1,4.3100000000000005,4.4,4.45,4.47,4.48,4.47,4.44,184.48,185.42000000000002,186.04,186.66,187.25,187.83,188.45000000000002,189.04,190.26,27.79,27.12,26.84,26.580000000000002,26.36,26.150000000000002,25.94,25.740000000000002,25.35,N/A,N/A +2013,5,20,17,30,93630,92570,91550,31.720000000000002,0,2.34,2.7600000000000002,2.87,2.92,2.95,2.96,2.97,2.97,2.97,211.11,212.44,213.31,214.25,215.11,215.98000000000002,216.84,217.67000000000002,219.39000000000001,30.05,29.44,29.14,28.88,28.650000000000002,28.43,28.21,28.01,27.61,N/A,N/A +2013,5,20,18,30,93570,92520,91500,23.18,0,2.09,2.45,2.5500000000000003,2.6,2.63,2.66,2.68,2.69,2.72,246.15,247.13,247.86,248.57,249.21,249.84,250.45000000000002,251.03,252.17000000000002,31.94,31.330000000000002,31.03,30.76,30.53,30.3,30.080000000000002,29.88,29.47,N/A,N/A +2013,5,20,19,30,93510,92470,91450,14.48,0,1.77,2.08,2.17,2.23,2.27,2.3000000000000003,2.33,2.36,2.41,278.57,277.13,276.19,275.46,274.85,274.3,273.84000000000003,273.43,272.79,33.83,33.230000000000004,32.93,32.660000000000004,32.42,32.2,31.98,31.77,31.35,N/A,N/A +2013,5,20,20,30,93430,92390,91380,8.59,0,2.12,2.49,2.6,2.66,2.71,2.75,2.79,2.82,2.88,275.64,277.15000000000003,277.81,278.12,278.34000000000003,278.53000000000003,278.64,278.73,278.84000000000003,34.910000000000004,34.28,34.01,33.75,33.51,33.29,33.07,32.87,32.46,N/A,N/A +2013,5,20,21,30,93350,92310,91310,8.01,0,1.6500000000000001,1.97,2.04,2.09,2.14,2.17,2.2,2.22,2.2600000000000002,253.22,256.75,258.71,260.2,261.39,262.41,263.32,264.14,265.48,35.65,35.050000000000004,34.78,34.52,34.29,34.06,33.84,33.63,33.21,N/A,N/A +2013,5,20,22,30,93300,92270,91260,8.03,0,4.1,4.93,5.16,5.26,5.33,5.37,5.4,5.41,5.44,282.19,279.95,278.78000000000003,278.08,277.48,276.95,276.43,275.95,275.03000000000003,35.71,35.07,34.82,34.58,34.36,34.15,33.94,33.74,33.34,N/A,N/A +2013,5,20,23,30,93270,92230,91220,7.72,0,4.33,5.15,5.33,5.37,5.38,5.36,5.33,5.29,5.21,256.87,256.95,257.08,257.07,257.07,257.1,257.13,257.15,257.21,35.910000000000004,35.36,35.14,34.9,34.69,34.480000000000004,34.27,34.07,33.67,N/A,N/A +2013,5,21,0,30,93250,92210,91210,8.13,0,2.07,2.4,2.45,2.45,2.44,2.43,2.41,2.4,2.36,215.33,216.51,217.48000000000002,218.26,218.95000000000002,219.65,220.3,220.94,222.22,35.410000000000004,35.06,34.89,34.68,34.49,34.300000000000004,34.11,33.92,33.54,N/A,N/A +2013,5,21,1,30,93230,92190,91180,20.78,0,4.57,6.8500000000000005,7.6000000000000005,8.120000000000001,8.5,8.75,8.91,9,9.05,162.42000000000002,165.04,166.71,168.16,169.20000000000002,169.89000000000001,170.27,170.46,170.46,32.77,33.06,33.1,33.03,32.93,32.78,32.6,32.42,32.03,N/A,N/A +2013,5,21,2,30,93270,92220,91210,21.93,0,4.24,6.63,7.46,8.11,8.620000000000001,9,9.28,9.48,9.69,162.01,161.46,161.14000000000001,160.8,160.65,160.70000000000002,161.03,161.5,162.93,31.42,31.84,31.93,31.92,31.87,31.78,31.67,31.55,31.3,N/A,N/A +2013,5,21,3,30,93310,92250,91240,27.55,0,3.23,5.5600000000000005,6.390000000000001,7.17,7.86,8.51,9.120000000000001,9.68,10.65,139.14000000000001,144.24,147.76,150.37,152.64000000000001,154.69,156.45000000000002,158.02,160.3,29.62,30.19,30.330000000000002,30.44,30.52,30.580000000000002,30.61,30.62,30.560000000000002,N/A,N/A +2013,5,21,4,30,93320,92270,91250,36.11,0,3.0300000000000002,5.88,7.08,8.19,9.17,10.06,10.82,11.51,12.58,151.99,156.44,158.83,159.49,159.68,159.43,159.04,158.59,157.94,28.68,29.19,29.27,29.310000000000002,29.32,29.310000000000002,29.28,29.240000000000002,29.1,N/A,N/A +2013,5,21,5,30,93340,92280,91260,41.660000000000004,0,3.08,5.51,6.43,7.25,7.92,8.49,8.950000000000001,9.34,9.9,163.5,165.84,167.43,168.44,169.25,169.93,170.62,171.31,172.89000000000001,28.18,28.53,28.55,28.55,28.54,28.51,28.47,28.43,28.29,N/A,N/A +2013,5,21,6,30,93360,92300,91270,48.65,0,1.68,3.1,3.52,4.08,4.65,5.2700000000000005,5.91,6.55,7.79,109.53,126.64,137.29,145.76,152.54,158.12,162.24,165.73,170.47,26.2,26.88,27.01,27.13,27.21,27.28,27.310000000000002,27.330000000000002,27.37,N/A,N/A +2013,5,21,7,30,93390,92330,91300,48.97,0,3.4,5.5200000000000005,6.26,6.88,7.390000000000001,7.82,8.22,8.6,9.49,149.48,149.98,150.46,150.25,149.82,149.14000000000001,148.49,147.87,147.59,26.57,26.830000000000002,26.82,26.76,26.67,26.55,26.400000000000002,26.240000000000002,25.84,N/A,N/A +2013,5,21,8,30,93390,92320,91290,67.45,0,3.63,6.21,7.42,8.52,9.51,10.42,11.26,12.05,13.49,132.55,139.11,143.04,145.33,147.09,148.41,149.52,150.51,152.32,24.45,24.43,24.35,24.23,24.1,23.96,23.82,23.68,23.400000000000002,N/A,N/A +2013,5,21,9,30,93370,92300,91260,78.72,0,6.42,9,10,10.870000000000001,11.6,12.25,12.86,13.43,14.540000000000001,142.83,145.29,146.9,148.20000000000002,149.31,150.29,151.21,152.07,153.81,23.67,23.54,23.44,23.31,23.18,23.05,22.92,22.8,22.55,N/A,N/A +2013,5,21,10,30,93390,92310,91270,84.53,0,4.95,7.2700000000000005,8.25,9.120000000000001,9.86,10.53,11.14,11.700000000000001,12.780000000000001,137.68,141.41,143.95000000000002,145.82,147.36,148.69,149.84,150.89000000000001,152.82,22.66,22.56,22.46,22.330000000000002,22.2,22.07,21.94,21.81,21.56,N/A,N/A +2013,5,21,11,30,93500,92420,91370,90.02,0,2.71,4.44,5.15,5.8100000000000005,6.42,7.0200000000000005,7.59,8.13,9.200000000000001,167.49,163.68,161.95000000000002,162.84,163.49,163.94,164.22,164.43,164.89000000000001,21.77,21.79,21.740000000000002,21.63,21.53,21.41,21.28,21.16,20.89,N/A,N/A +2013,5,21,12,30,93550,92470,91420,90.75,0,1.17,1.87,2.07,2.5500000000000003,2.95,3.2600000000000002,3.59,3.93,4.93,186.22,213.85,228.01,232.43,231.84,226.59,220.08,213.24,201.76,21.55,21.68,21.64,21.44,21.26,21.1,20.93,20.77,20.45,N/A,N/A +2013,5,21,13,30,93600,92520,91470,76.33,0,3.59,4.53,4.82,5,5.12,5.2,5.26,5.32,5.4,193.59,193.1,192.91,192.82,192.76,192.72,192.71,192.71,192.74,22.95,22.47,22.26,22.04,21.84,21.650000000000002,21.45,21.26,20.87,N/A,N/A +2013,5,21,14,30,93630,92550,91510,69.98,0,3.74,4.58,4.84,4.96,5.05,5.1000000000000005,5.13,5.16,5.18,205.9,206.16,206.38,206.67000000000002,206.95000000000002,207.24,207.55,207.86,208.53,24.04,23.43,23.18,22.95,22.73,22.53,22.32,22.13,21.740000000000002,N/A,N/A +2013,5,21,15,30,93660,92590,91550,51.25,0,2.77,3.36,3.5500000000000003,3.66,3.74,3.79,3.84,3.88,3.94,243.70000000000002,244.5,245.09,245.65,246.14000000000001,246.61,247.08,247.53,248.42000000000002,26,25.400000000000002,25.14,24.89,24.68,24.47,24.26,24.07,23.68,N/A,N/A +2013,5,21,16,30,93680,92620,91580,12.6,0,2.8000000000000003,3.39,3.6,3.72,3.8000000000000003,3.87,3.92,3.97,4.0600000000000005,292.23,292.03000000000003,291.94,291.81,291.69,291.58,291.47,291.36,291.17,28.23,27.650000000000002,27.37,27.11,26.900000000000002,26.69,26.48,26.29,25.900000000000002,N/A,N/A +2013,5,21,17,30,93630,92570,91550,9.43,0,4.7700000000000005,5.99,6.38,6.61,6.78,6.91,7.01,7.09,7.21,311.88,311.92,312,312.07,312.14,312.21,312.27,312.34000000000003,312.48,31.150000000000002,30.42,30.13,29.85,29.6,29.38,29.150000000000002,28.94,28.51,N/A,N/A +2013,5,21,18,30,93630,92570,91540,10.38,0,5.8100000000000005,7.11,7.5200000000000005,7.72,7.87,7.98,8.05,8.11,8.19,315.91,315.95,315.98,315.97,315.95,315.93,315.91,315.89,315.83,31.330000000000002,30.54,30.22,29.94,29.7,29.46,29.240000000000002,29.02,28.6,N/A,N/A +2013,5,21,19,30,93600,92550,91530,10.61,0,5.51,6.74,7.13,7.33,7.48,7.58,7.65,7.72,7.8,313.26,313.31,313.34000000000003,313.32,313.3,313.27,313.24,313.21,313.14,31.89,31.11,30.79,30.51,30.26,30.03,29.8,29.59,29.16,N/A,N/A +2013,5,21,20,30,93560,92510,91490,11.35,0,5.2,6.3500000000000005,6.72,6.92,7.07,7.17,7.25,7.3100000000000005,7.4,309.47,309.62,309.74,309.81,309.86,309.90000000000003,309.93,309.96,310.01,32.32,31.560000000000002,31.25,30.970000000000002,30.72,30.490000000000002,30.26,30.05,29.62,N/A,N/A +2013,5,21,21,30,93510,92460,91440,12.15,0,5.03,6.1000000000000005,6.44,6.63,6.76,6.86,6.93,6.98,7.07,296.13,296.86,297.39,297.84000000000003,298.2,298.52,298.82,299.08,299.57,32.57,31.84,31.55,31.27,31.03,30.8,30.57,30.36,29.94,N/A,N/A +2013,5,21,22,30,93510,92460,91440,10.4,0,5.82,7.0600000000000005,7.44,7.61,7.73,7.8,7.8500000000000005,7.88,7.91,294.23,295.01,295.51,295.91,296.26,296.57,296.87,297.14,297.66,32.62,31.93,31.66,31.400000000000002,31.18,30.95,30.740000000000002,30.53,30.12,N/A,N/A +2013,5,21,23,30,93470,92420,91400,9.98,0,4.64,5.72,6.05,6.25,6.4,6.49,6.57,6.63,6.73,307.64,307.8,307.99,308.14,308.27,308.38,308.49,308.6,308.77,32.63,32.05,31.82,31.580000000000002,31.36,31.14,30.93,30.72,30.32,N/A,N/A +2013,5,22,0,30,93480,92430,91410,12.530000000000001,0,4.7700000000000005,5.96,6.3100000000000005,6.49,6.61,6.69,6.74,6.78,6.8100000000000005,323.85,323.71,323.62,323.54,323.46,323.39,323.33,323.27,323.17,31.98,31.59,31.400000000000002,31.18,30.98,30.77,30.57,30.38,29.98,N/A,N/A +2013,5,22,1,30,93510,92450,91430,17.740000000000002,0,1.55,3.1,3.63,4.2,4.71,5.17,5.55,5.87,6.28,306.15000000000003,310.90000000000003,313.77,315.72,317.08,317.96,318.59000000000003,319.1,319.92,30.12,30.86,30.830000000000002,30.7,30.55,30.38,30.19,30.01,29.63,N/A,N/A +2013,5,22,2,30,93600,92530,91490,37.28,0,6.68,8.75,9.18,9.41,9.52,9.55,9.49,9.42,9.14,50.13,48.96,47.92,46.79,45.75,44.800000000000004,43.83,42.96,41.18,26.89,26.78,26.69,26.580000000000002,26.47,26.36,26.25,26.150000000000002,25.94,N/A,N/A +2013,5,22,3,30,93690,92610,91570,40.74,0,4.97,7.12,7.91,8.59,9.16,9.66,10.08,10.450000000000001,10.9,52.88,53.69,54.25,54.78,55.21,55.57,55.77,55.89,55.78,25.47,25.39,25.29,25.150000000000002,25.01,24.87,24.740000000000002,24.61,24.41,N/A,N/A +2013,5,22,4,30,93730,92640,91600,44.07,0,5.91,8.290000000000001,9.16,9.96,10.59,11.14,11.620000000000001,12.05,12.72,64.37,64.07000000000001,63.870000000000005,63.75,63.7,63.7,63.7,63.7,63.49,23.47,23.31,23.18,23.02,22.86,22.7,22.55,22.400000000000002,22.13,N/A,N/A +2013,5,22,5,30,93790,92700,91650,47.89,0,2.95,5.14,6.12,7.04,7.84,8.57,9.22,9.81,10.8,80.97,79.58,78.64,78.07000000000001,77.69,77.43,77.29,77.18,77.06,22.14,22.13,22.03,21.900000000000002,21.76,21.62,21.48,21.35,21.11,N/A,N/A +2013,5,22,6,30,93830,92740,91680,54.51,0,0.53,1.8,2.83,3.9,4.95,5.95,6.88,7.7700000000000005,9.33,151.09,124.67,103.10000000000001,97.51,93.71000000000001,91.45,90.10000000000001,88.99,87.85000000000001,20.72,20.95,20.84,20.69,20.53,20.37,20.19,20.03,19.71,N/A,N/A +2013,5,22,7,30,93850,92760,91700,61.32,0,0.73,1.26,1.51,2.06,2.77,3.67,4.67,5.74,7.79,242.68,187.33,156.55,136.29,122.73,113.74000000000001,108.87,104.86,100.99000000000001,19.96,20.29,20.18,19.97,19.76,19.56,19.36,19.18,18.86,N/A,N/A +2013,5,22,8,30,93880,92780,91710,65.36,0,0.6900000000000001,1.46,1.87,2.5,3.16,3.84,4.8,5.87,8.38,104.15,124.64,133.84,132.57,128.41,122.16,116.71000000000001,111.28,105.71000000000001,19.29,19.61,19.51,19.400000000000002,19.27,19.150000000000002,18.98,18.82,18.490000000000002,N/A,N/A +2013,5,22,9,30,93860,92760,91700,66.4,0,0.23,1.1300000000000001,2.04,2.93,3.87,4.82,5.79,6.76,8.55,130.62,129.09,126.52,122.72,117.59,111.53,108.25,105.53,104.04,18.36,18.91,18.94,18.93,18.900000000000002,18.85,18.8,18.75,18.740000000000002,N/A,N/A +2013,5,22,10,30,93900,92800,91730,67.94,0,1.73,3.64,4.43,5.08,5.5,5.7700000000000005,5.99,6.19,6.92,194.68,181.99,172.11,163.6,156.76,151.19,145.65,140.51,130.69,17.45,18.150000000000002,18.25,18.3,18.28,18.25,18.14,18.02,17.73,N/A,N/A +2013,5,22,11,30,93930,92830,91750,69.71000000000001,0,1.3900000000000001,3.06,3.86,4.71,5.28,5.69,5.8,5.9,6.21,213.93,192.79,180.31,172.14000000000001,164.09,156.64000000000001,149.16,142.87,135.67000000000002,17.16,17.64,17.68,17.71,17.71,17.69,17.580000000000002,17.46,17.150000000000002,N/A,N/A +2013,5,22,12,30,93900,92790,91720,70.04,0,0.08,0.99,1.83,2.5300000000000002,3.13,3.69,4.13,4.57,5.53,252.57,176.78,154.68,150.47,146.61,142.96,139.81,137.15,134.58,16.84,17.150000000000002,17.2,17.25,17.27,17.27,17.240000000000002,17.2,17.2,N/A,N/A +2013,5,22,13,30,93900,92800,91730,53.09,0,1.3,1.7,1.86,1.98,2.08,2.19,2.56,3.02,4.5200000000000005,114.88,123.73,128.95,132.98,136.67000000000002,140.04,145.38,150.41,158.65,19.22,18.830000000000002,18.650000000000002,18.48,18.32,18.18,18.06,17.990000000000002,18.080000000000002,N/A,N/A +2013,5,22,14,30,93970,92870,91810,42.93,0,4.28,5.37,5.7,5.89,6.0200000000000005,6.11,6.18,6.25,6.45,150.6,151.64000000000001,152.23,152.73,153.21,153.66,154.19,154.70000000000002,156.1,22.150000000000002,21.57,21.34,21.13,20.92,20.740000000000002,20.55,20.38,20.03,N/A,N/A +2013,5,22,15,30,93960,92880,91830,38.050000000000004,0,4.64,5.74,6.08,6.2700000000000005,6.38,6.46,6.5200000000000005,6.57,6.63,163.48,163.86,164.1,164.31,164.49,164.65,164.82,164.99,165.33,24.72,24.04,23.77,23.53,23.3,23.1,22.89,22.7,22.31,N/A,N/A +2013,5,22,16,30,93950,92870,91830,39.13,0,5.87,7.33,7.74,7.97,8.120000000000001,8.22,8.290000000000001,8.35,8.42,161.89000000000001,162.11,162.18,162.22,162.25,162.27,162.28,162.29,162.31,26.2,25.41,25.11,24.85,24.61,24.39,24.17,23.96,23.56,N/A,N/A +2013,5,22,17,30,93950,92880,91840,39.95,0,6.21,7.65,8.14,8.39,8.56,8.67,8.76,8.82,8.91,162.98,163.11,163.1,163.07,163.04,163.01,162.98,162.95000000000002,162.88,27.77,26.94,26.62,26.330000000000002,26.080000000000002,25.85,25.62,25.41,25,N/A,N/A +2013,5,22,18,30,93870,92800,91770,40.67,0,6.2,7.69,8.14,8.38,8.55,8.66,8.73,8.790000000000001,8.870000000000001,165.84,165.85,165.87,165.88,165.88,165.88,165.88,165.88,165.89000000000001,28.94,28.09,27.76,27.48,27.22,26.990000000000002,26.76,26.55,26.13,N/A,N/A +2013,5,22,19,30,93810,92760,91730,39.13,0,6.29,7.78,8.26,8.51,8.68,8.790000000000001,8.88,8.950000000000001,9.040000000000001,161.72,161.79,161.84,161.88,161.9,161.92000000000002,161.94,161.95000000000002,161.99,30.23,29.38,29.05,28.76,28.51,28.27,28.04,27.830000000000002,27.41,N/A,N/A +2013,5,22,20,30,93750,92690,91670,34.38,0,6.8500000000000005,8.48,8.97,9.22,9.39,9.51,9.59,9.65,9.73,160.09,160.23,160.31,160.36,160.39000000000001,160.41,160.43,160.45000000000002,160.48,31.3,30.44,30.12,29.84,29.59,29.35,29.12,28.91,28.48,N/A,N/A +2013,5,22,21,30,93670,92620,91600,31.76,0,6.640000000000001,8.22,8.71,8.96,9.13,9.25,9.34,9.4,9.49,162.15,162.15,162.14000000000001,162.12,162.1,162.08,162.05,162.03,161.99,31.84,31.03,30.73,30.45,30.21,29.97,29.75,29.54,29.12,N/A,N/A +2013,5,22,22,30,93630,92580,91560,31.07,0,6.37,7.91,8.4,8.66,8.85,8.98,9.07,9.14,9.24,161.61,161.46,161.39000000000001,161.32,161.27,161.22,161.18,161.15,161.1,32.09,31.35,31.080000000000002,30.810000000000002,30.57,30.35,30.13,29.92,29.5,N/A,N/A +2013,5,22,23,30,93600,92550,91530,32.22,0,6.48,8.13,8.63,8.91,9.11,9.24,9.34,9.42,9.53,152.98,153.25,153.42000000000002,153.56,153.68,153.79,153.89000000000001,153.99,154.19,31.900000000000002,31.26,31.02,30.77,30.55,30.330000000000002,30.12,29.92,29.51,N/A,N/A +2013,5,23,0,30,93590,92540,91520,33.39,0,6.44,8.21,8.71,9,9.21,9.36,9.47,9.56,9.67,152.94,153.15,153.27,153.37,153.46,153.54,153.63,153.70000000000002,153.87,31.48,31.04,30.84,30.61,30.41,30.21,30,29.810000000000002,29.41,N/A,N/A +2013,5,23,1,30,93600,92540,91520,36.76,0,4.57,6.84,7.640000000000001,8.27,8.77,9.19,9.52,9.81,10.25,146.23,146.61,146.91,147.28,147.63,147.98,148.3,148.6,149.13,30.23,30.22,30.14,30.01,29.87,29.71,29.54,29.37,29,N/A,N/A +2013,5,23,2,30,93630,92570,91550,39.96,0,4.24,6.71,7.63,8.41,9.05,9.6,10.07,10.49,11.26,142.07,142.4,142.73,143.23,143.88,144.64000000000001,145.55,146.46,148.41,29.080000000000002,29.2,29.2,29.16,29.1,29.02,28.91,28.8,28.53,N/A,N/A +2013,5,23,3,30,93650,92590,91560,45.17,0,5.3100000000000005,7.92,8.86,9.67,10.38,11.02,11.6,12.120000000000001,12.96,146.84,147.14000000000001,147.38,147.66,148.02,148.44,148.98,149.52,150.84,28.55,28.55,28.5,28.43,28.34,28.26,28.16,28.07,27.85,N/A,N/A +2013,5,23,4,30,93650,92580,91560,49.25,0,5.33,8.03,9.02,9.9,10.69,11.42,12.120000000000001,12.77,13.98,144.17000000000002,144.99,145.5,146.01,146.57,147.13,147.74,148.32,149.58,27.76,27.75,27.71,27.64,27.57,27.490000000000002,27.41,27.34,27.18,N/A,N/A +2013,5,23,5,30,93670,92600,91570,52.02,0,6.18,8.94,9.97,10.870000000000001,11.67,12.4,13.11,13.780000000000001,15.08,144.92000000000002,145.19,145.35,145.5,145.71,145.96,146.31,146.69,147.65,27.05,27,26.93,26.84,26.75,26.66,26.57,26.490000000000002,26.32,N/A,N/A +2013,5,23,6,30,93700,92630,91600,52.730000000000004,0,6.55,9.43,10.47,11.35,12.13,12.84,13.52,14.16,15.36,145.07,145.27,145.38,145.42000000000002,145.49,145.57,145.72,145.88,146.42000000000002,26.560000000000002,26.51,26.44,26.34,26.240000000000002,26.14,26.04,25.94,25.740000000000002,N/A,N/A +2013,5,23,7,30,93750,92680,91640,54.96,0,5.89,8.65,9.71,10.64,11.46,12.21,12.94,13.63,14.99,141.22,142.02,142.48,142.87,143.27,143.69,144.23,144.76,146.09,25.71,25.66,25.59,25.48,25.38,25.28,25.17,25.080000000000002,24.88,N/A,N/A +2013,5,23,8,30,93770,92690,91650,62.33,0,6.61,9.35,10.32,11.15,11.86,12.49,13.09,13.64,14.71,147.11,148.01,148.56,149.05,149.54,150.03,150.59,151.14000000000001,152.45000000000002,25.150000000000002,25.03,24.93,24.8,24.67,24.54,24.400000000000002,24.28,24.03,N/A,N/A +2013,5,23,9,30,93790,92720,91680,72.97,0,6.82,9.55,10.49,11.290000000000001,11.96,12.540000000000001,13.09,13.58,14.57,148.38,149.23,149.76,150.20000000000002,150.62,151,151.4,151.78,152.67000000000002,24.38,24.21,24.09,23.94,23.78,23.63,23.47,23.32,23.01,N/A,N/A +2013,5,23,10,30,93850,92770,91730,79.02,0,6.59,9.1,10.02,10.77,11.4,11.96,12.47,12.93,13.83,147.93,149.14000000000001,149.93,150.59,151.19,151.75,152.3,152.82,153.92000000000002,23.66,23.47,23.330000000000002,23.17,23.02,22.87,22.71,22.56,22.25,N/A,N/A +2013,5,23,11,30,93860,92780,91740,80.9,0,5.65,8,8.89,9.64,10.28,10.85,11.38,11.870000000000001,12.81,145.39000000000001,147.11,148.18,149.08,149.89000000000001,150.63,151.36,152.04,153.4,23.14,22.95,22.81,22.66,22.5,22.34,22.18,22.02,21.71,N/A,N/A +2013,5,23,12,30,93940,92850,91800,82.06,0,5.82,8.05,8.89,9.58,10.16,10.67,11.13,11.56,12.370000000000001,144.71,146.01,146.83,147.57,148.26,148.91,149.58,150.20000000000002,151.53,22.59,22.36,22.21,22.04,21.88,21.72,21.55,21.400000000000002,21.080000000000002,N/A,N/A +2013,5,23,13,30,93970,92890,91840,75.92,0,6.88,8.82,9.450000000000001,9.84,10.13,10.35,10.52,10.66,10.92,155.87,156.27,156.49,156.69,156.88,157.08,157.29,157.48,157.94,23.45,22.95,22.740000000000002,22.51,22.31,22.11,21.91,21.72,21.34,N/A,N/A +2013,5,23,14,30,94010,92930,91880,68.38,0,7.2700000000000005,9.15,9.76,10.1,10.34,10.5,10.61,10.69,10.8,160.91,161.05,161.14000000000001,161.22,161.3,161.38,161.47,161.56,161.75,24.73,24.060000000000002,23.8,23.55,23.330000000000002,23.12,22.91,22.71,22.31,N/A,N/A +2013,5,23,15,30,94020,92940,91900,61.870000000000005,0,7.6000000000000005,9.56,10.17,10.5,10.74,10.9,11.01,11.1,11.21,158.20000000000002,158.35,158.44,158.52,158.59,158.65,158.72,158.78,158.92000000000002,26.1,25.32,25.03,24.76,24.53,24.310000000000002,24.09,23.89,23.48,N/A,N/A +2013,5,23,16,30,93990,92920,91890,56.36,0,7.58,9.5,10.07,10.38,10.59,10.73,10.83,10.91,11,160.93,161.09,161.17000000000002,161.26,161.33,161.41,161.48,161.55,161.71,27.43,26.580000000000002,26.27,25.990000000000002,25.75,25.52,25.3,25.09,24.68,N/A,N/A +2013,5,23,17,30,93990,92930,91890,51.26,0,7.92,9.86,10.43,10.72,10.93,11.06,11.15,11.23,11.31,160.9,161.12,161.25,161.37,161.47,161.55,161.65,161.73,161.9,28.59,27.69,27.37,27.080000000000002,26.82,26.59,26.36,26.150000000000002,25.73,N/A,N/A +2013,5,23,18,30,93980,92920,91890,45.79,0,6.96,8.620000000000001,9.13,9.38,9.56,9.68,9.76,9.83,9.9,158.76,159.09,159.31,159.47,159.61,159.73,159.84,159.95000000000002,160.17000000000002,29.92,29.03,28.7,28.41,28.16,27.93,27.7,27.48,27.07,N/A,N/A +2013,5,23,19,30,93940,92880,91860,39.800000000000004,0,7.2,8.94,9.47,9.74,9.93,10.06,10.15,10.21,10.3,161.66,161.78,161.87,161.92000000000002,161.97,162,162.04,162.08,162.15,31.21,30.32,29.990000000000002,29.7,29.45,29.21,28.98,28.77,28.35,N/A,N/A +2013,5,23,20,30,93870,92820,91800,35.13,0,7.07,8.84,9.36,9.65,9.86,10.01,10.11,10.200000000000001,10.32,156.26,156.28,156.28,156.26,156.25,156.24,156.22,156.21,156.19,32.25,31.38,31.060000000000002,30.78,30.52,30.29,30.060000000000002,29.84,29.42,N/A,N/A +2013,5,23,21,30,93800,92750,91730,32.26,0,7.5200000000000005,9.42,9.98,10.290000000000001,10.51,10.67,10.78,10.86,10.99,152.76,152.91,153,153.06,153.1,153.14000000000001,153.17000000000002,153.20000000000002,153.26,32.910000000000004,32.07,31.77,31.490000000000002,31.240000000000002,31.01,30.78,30.57,30.150000000000002,N/A,N/A +2013,5,23,22,30,93740,92690,91680,34.51,0,7.63,9.65,10.23,10.58,10.83,11,11.14,11.24,11.39,148.07,148.36,148.58,148.75,148.9,149.03,149.16,149.28,149.5,32.81,32.04,31.77,31.5,31.26,31.03,30.8,30.59,30.17,N/A,N/A +2013,5,23,23,30,93780,92730,91710,31.82,0,7.37,9.3,9.89,10.21,10.44,10.61,10.73,10.82,10.96,149.97,149.94,149.91,149.85,149.78,149.72,149.65,149.59,149.48,32.67,32.03,31.79,31.54,31.32,31.1,30.88,30.68,30.28,N/A,N/A +2013,5,24,0,30,93730,92680,91660,34.62,0,7.71,9.93,10.540000000000001,10.93,11.21,11.42,11.58,11.71,11.89,146.85,146.95000000000002,147.02,147.05,147.08,147.1,147.12,147.14000000000001,147.17000000000002,31.86,31.400000000000002,31.2,30.98,30.77,30.57,30.36,30.16,29.77,N/A,N/A +2013,5,24,1,30,93820,92770,91740,38.97,0,5.58,7.95,8.78,9.43,9.96,10.4,10.77,11.1,11.620000000000001,140.13,140.57,140.88,141.17000000000002,141.45000000000002,141.73,142,142.26,142.73,30.42,30.29,30.17,30.01,29.85,29.67,29.490000000000002,29.310000000000002,28.94,N/A,N/A +2013,5,24,2,30,94030,92950,91910,49.65,0,11.27,15.72,16.93,17.62,18,18.240000000000002,18.240000000000002,18.2,17.69,41.79,42.51,42.94,43.45,43.39,43.12,41.95,40.92,41.07,25.12,24.87,24.78,24.72,24.94,25.23,25.42,25.580000000000002,25.88,N/A,N/A +2013,5,24,3,30,94140,93060,92010,54.36,0,7.66,10.44,11.24,11.65,11.93,12.14,12.5,12.84,12.72,52.97,54.45,55.2,55.730000000000004,56.050000000000004,56.25,57.34,58.550000000000004,63.65,24.28,23.990000000000002,23.830000000000002,23.64,23.47,23.32,23.28,23.27,23.55,N/A,N/A +2013,5,24,4,30,94150,93070,92030,60.52,0,6.58,9.23,10.31,11.25,12.08,12.83,13.31,13.700000000000001,13.85,75.68,76.46000000000001,77.06,77.85000000000001,79.19,80.83,83.21000000000001,85.59,90.37,23.96,23.7,23.59,23.490000000000002,23.6,23.82,24.32,24.84,25.47,N/A,N/A +2013,5,24,5,30,94160,93080,92030,54.620000000000005,0,6.66,9.09,9.88,10.52,11.040000000000001,11.5,11.9,12.27,12.94,96.26,97.17,97.82000000000001,98.54,99.37,100.22,101.26,102.26,104.68,25.07,24.89,24.79,24.67,24.560000000000002,24.46,24.36,24.27,24.11,N/A,N/A +2013,5,24,6,30,94250,93160,92120,55.160000000000004,0,6.05,8.36,9.11,9.72,10.23,10.67,11.08,11.44,12.16,107.10000000000001,108.02,108.68,109.38,110.21000000000001,111.05,112.09,113.09,115.56,25.01,24.79,24.66,24.52,24.39,24.26,24.12,24,23.77,N/A,N/A +2013,5,24,7,30,94460,93360,92290,86.85000000000001,11,4.68,5.98,6.5600000000000005,7.05,7.49,7.930000000000001,8.4,8.870000000000001,9.93,326.28000000000003,327.34000000000003,328.58,328.96,329.29,329.58,329.74,329.84000000000003,330.03000000000003,20.31,19.97,19.8,19.62,19.45,19.28,19.11,18.95,18.62,N/A,N/A +2013,5,24,8,30,94510,93400,92330,83.7,1.8,7.71,10.13,11.36,13.07,13.89,14.07,14.51,14.97,16.13,313.22,314.17,315.51,317.55,318.47,318.6,318.75,318.85,317.69,19.69,19.42,19.3,19.18,19.03,18.86,18.73,18.64,19,N/A,N/A +2013,5,24,9,30,94450,93340,92280,85.8,1.8,2.35,3.08,3.34,3.5500000000000003,3.77,3.97,4.22,4.48,5.21,32.71,28.650000000000002,25.71,23.32,21.28,19.47,17.63,15.88,12.15,19.75,19.400000000000002,19.23,19.04,18.86,18.68,18.490000000000002,18.32,18,N/A,N/A +2013,5,24,10,30,94370,93270,92200,80.61,0,4.86,6.67,7.23,7.69,8.040000000000001,8.32,8.52,8.66,8.58,49.99,49.480000000000004,49.13,48.74,48.26,47.79,47.11,46.46,45.74,20.07,19.88,19.75,19.61,19.48,19.36,19.27,19.2,19.26,N/A,N/A +2013,5,24,11,30,94430,93330,92260,82.79,0,1.32,2.09,2.35,2.58,2.83,3.1,3.46,3.84,4.65,153.47,147.59,142.97,137.88,132.37,126.57000000000001,121.55,116.95,113.78,20.22,20.06,19.94,19.79,19.63,19.490000000000002,19.36,19.26,19.19,N/A,N/A +2013,5,24,12,30,94420,93320,92250,82.37,0,2.79,3.99,4.4,4.72,4.83,4.83,4.57,4.33,4.5,76.48,76.4,76.84,77.96000000000001,82.4,88.32000000000001,97.4,105.49000000000001,115.8,19.84,19.69,19.64,19.61,19.650000000000002,19.73,19.75,19.76,19.61,N/A,N/A +2013,5,24,13,30,94420,93330,92260,71.52,0,3.06,3.93,4.21,4.39,4.54,4.67,4.79,4.9,5.1000000000000005,100.61,101.60000000000001,101.93,102.34,102.88,103.47,104.2,104.9,106.26,21.41,20.98,20.78,20.580000000000002,20.39,20.21,20.02,19.85,19.490000000000002,N/A,N/A +2013,5,24,14,30,94460,93370,92310,65.02,0,5.22,6.54,6.93,7.13,7.26,7.3500000000000005,7.4,7.44,7.47,131.9,132.24,132.33,132.37,132.39000000000001,132.41,132.43,132.45,132.51,22.18,21.63,21.41,21.18,20.97,20.77,20.56,20.37,19.97,N/A,N/A +2013,5,24,15,30,94480,93390,92330,62.68,0,5.87,7.34,7.7700000000000005,8.01,8.17,8.290000000000001,8.370000000000001,8.43,8.5,143.69,144.01,144.21,144.36,144.51,144.64000000000001,144.78,144.91,145.18,23.02,22.330000000000002,22.07,21.82,21.59,21.38,21.16,20.96,20.55,N/A,N/A +2013,5,24,16,30,94480,93390,92330,60.67,0,5.78,7.24,7.69,7.95,8.120000000000001,8.26,8.35,8.43,8.55,147.63,147.61,147.63,147.59,147.53,147.46,147.38,147.3,147.12,24.07,23.34,23.06,22.8,22.57,22.35,22.13,21.94,21.53,N/A,N/A +2013,5,24,17,30,94450,93360,92310,58.67,0,6.23,7.8100000000000005,8.3,8.58,8.77,8.91,9.01,9.09,9.200000000000001,145.19,144.96,144.82,144.63,144.45000000000002,144.27,144.08,143.91,143.57,25.23,24.44,24.150000000000002,23.88,23.64,23.42,23.2,23,22.59,N/A,N/A +2013,5,24,18,30,94400,93320,92270,45.22,0,5.98,7.47,7.92,8.16,8.33,8.46,8.55,8.620000000000001,8.72,140.08,140.59,140.82,140.96,141.08,141.17000000000002,141.25,141.33,141.45000000000002,26.830000000000002,26.04,25.75,25.48,25.240000000000002,25.01,24.79,24.59,24.17,N/A,N/A +2013,5,24,19,30,94350,93280,92230,38.660000000000004,0,6.12,7.61,8.07,8.33,8.5,8.63,8.73,8.8,8.91,143.5,143.83,144.01,144.12,144.21,144.26,144.32,144.36,144.43,28.11,27.310000000000002,27.01,26.740000000000002,26.5,26.27,26.04,25.830000000000002,25.41,N/A,N/A +2013,5,24,20,30,94290,93220,92180,38.79,0,7.09,8.85,9.370000000000001,9.65,9.84,9.98,10.07,10.15,10.25,151.04,150.85,150.74,150.62,150.5,150.39000000000001,150.28,150.18,149.97,28.18,27.37,27.07,26.8,26.560000000000002,26.330000000000002,26.1,25.89,25.47,N/A,N/A +2013,5,24,21,30,94240,93170,92130,41.15,0,6.7700000000000005,8.49,8.99,9.27,9.450000000000001,9.59,9.69,9.77,9.870000000000001,143.69,143.93,143.99,144,143.99,143.96,143.94,143.91,143.85,28.29,27.52,27.240000000000002,26.97,26.73,26.51,26.28,26.080000000000002,25.66,N/A,N/A +2013,5,24,22,30,94210,93140,92100,41.83,0,6.41,8.06,8.55,8.82,9.01,9.14,9.24,9.32,9.42,139.42000000000002,139.23,139.17000000000002,139.08,138.99,138.9,138.82,138.75,138.6,28.240000000000002,27.53,27.26,27.01,26.78,26.560000000000002,26.330000000000002,26.13,25.72,N/A,N/A +2013,5,24,23,30,94180,93110,92070,40.59,0,6.11,7.72,8.22,8.5,8.700000000000001,8.85,8.97,9.06,9.200000000000001,139.65,140.16,140.38,140.5,140.59,140.66,140.71,140.75,140.81,28.330000000000002,27.740000000000002,27.5,27.26,27.04,26.830000000000002,26.62,26.42,26.01,N/A,N/A +2013,5,25,0,30,94180,93110,92070,45.96,0,6.3500000000000005,8.16,8.700000000000001,9.040000000000001,9.290000000000001,9.48,9.620000000000001,9.74,9.92,127.05,127.97,128.49,128.89000000000001,129.22,129.51,129.78,130.02,130.46,27.64,27.2,27,26.78,26.580000000000002,26.38,26.18,25.990000000000002,25.59,N/A,N/A +2013,5,25,1,30,94180,93100,92060,46.24,0,6.75,9.25,10.07,10.71,11.200000000000001,11.59,11.93,12.22,12.68,123.33,123.37,123.47,123.59,123.74000000000001,123.9,124.09,124.28,124.69,26.97,26.76,26.61,26.43,26.240000000000002,26.060000000000002,25.87,25.69,25.3,N/A,N/A +2013,5,25,2,30,94160,93080,92040,48.95,0,4.12,6.32,7.140000000000001,7.86,8.46,8.98,9.48,9.94,10.76,121.96000000000001,122.66,123.07000000000001,123.52,124.01,124.51,125.05,125.57000000000001,126.54,26.14,26.080000000000002,26,25.89,25.77,25.64,25.51,25.38,25.1,N/A,N/A +2013,5,25,3,30,94230,93150,92110,49.550000000000004,0,3.49,5.8100000000000005,6.73,7.57,8.32,9.02,9.72,10.38,11.73,140.5,138.38,137.24,136.39000000000001,135.84,135.48,135.3,135.19,135.42000000000002,25.740000000000002,25.810000000000002,25.78,25.72,25.64,25.560000000000002,25.48,25.39,25.21,N/A,N/A +2013,5,25,4,30,94260,93180,92120,59.31,0,7.79,10.790000000000001,11.700000000000001,12.43,13.040000000000001,13.58,14.06,14.49,15.290000000000001,128.26,128.49,128.59,128.68,128.81,128.96,129.16,129.37,129.9,24.01,23.79,23.64,23.47,23.29,23.12,22.92,22.740000000000002,22.36,N/A,N/A +2013,5,25,5,30,94370,93280,92220,63.690000000000005,0,7.01,9.540000000000001,10.34,10.98,11.5,11.950000000000001,12.36,12.72,13.39,130.38,130.6,130.72,130.82,130.98,131.15,131.4,131.65,132.29,23.39,23.16,23.01,22.84,22.66,22.5,22.32,22.150000000000002,21.8,N/A,N/A +2013,5,25,6,30,94350,93260,92210,67.17,0,6.63,9.200000000000001,9.99,10.620000000000001,11.15,11.61,12.02,12.39,13.09,139.1,139.6,139.73,139.72,139.87,140.07,140.20000000000002,140.33,140.72,22.94,22.7,22.55,22.39,22.21,22.04,21.85,21.68,21.32,N/A,N/A +2013,5,25,7,30,94470,93380,92320,78.27,0,6.51,8.72,9.43,9.98,10.450000000000001,10.85,11.23,11.58,12.33,145.55,146.56,147.07,147.55,148.01,148.46,148.98,149.47,150.68,21.5,21.21,21.03,20.84,20.64,20.45,20.240000000000002,20.06,19.66,N/A,N/A +2013,5,25,8,30,94500,93410,92340,79.76,0,5.0600000000000005,6.61,7.11,7.46,7.76,8.01,8.24,8.45,8.9,148.19,148.8,149.22,149.55,149.84,150.1,150.36,150.6,151.11,21.11,20.78,20.59,20.400000000000002,20.2,20.02,19.82,19.63,19.25,N/A,N/A +2013,5,25,9,30,94460,93370,92300,80.10000000000001,0,5.46,7.0600000000000005,7.51,7.8,8.02,8.19,8.33,8.46,8.69,142.01,142.78,143.25,143.64000000000001,144,144.34,144.71,145.05,145.82,21.080000000000002,20.73,20.55,20.35,20.150000000000002,19.97,19.77,19.580000000000002,19.19,N/A,N/A +2013,5,25,10,30,94470,93370,92310,82.61,0,5.39,7.15,7.74,8.18,8.53,8.82,9.09,9.32,9.77,144.71,144.71,144.54,144.43,144.35,144.29,144.26,144.24,144.19,20.6,20.3,20.13,19.93,19.73,19.54,19.34,19.150000000000002,18.76,N/A,N/A +2013,5,25,11,30,94350,93250,92180,88.05,0,5.43,7.390000000000001,8.1,8.700000000000001,9.200000000000001,9.64,10.07,10.47,11.22,146.92000000000002,147.5,148.04,148.65,149.07,149.38,149.69,150,150.75,20.12,19.84,19.68,19.5,19.32,19.16,18.98,18.82,18.48,N/A,N/A +2013,5,25,12,30,94350,93250,92190,86.27,0,5.83,7.46,7.9,8.19,8.43,8.63,8.8,8.96,9.290000000000001,144.74,144.89000000000001,145.03,145.13,145.29,145.48,145.67000000000002,145.84,145.99,20.55,20.22,20.04,19.85,19.66,19.48,19.28,19.1,18.71,N/A,N/A +2013,5,25,13,30,94380,93280,92220,84.4,0,5.01,6.3500000000000005,6.73,6.97,7.140000000000001,7.2700000000000005,7.390000000000001,7.49,7.69,154.29,154.88,155.26,155.62,155.95000000000002,156.26,156.59,156.9,157.53,20.89,20.490000000000002,20.3,20.09,19.900000000000002,19.72,19.52,19.35,18.98,N/A,N/A +2013,5,25,14,30,94460,93360,92300,81.77,0,5.36,6.72,7.11,7.33,7.47,7.58,7.66,7.73,7.88,124.32000000000001,125.39,125.98,126.47,126.94,127.38000000000001,127.88000000000001,128.37,129.54,20.97,20.41,20.19,19.98,19.78,19.59,19.400000000000002,19.22,18.86,N/A,N/A +2013,5,25,15,30,94470,93370,92310,76.62,0,5.01,6.22,6.55,6.72,6.8100000000000005,6.88,6.91,6.93,6.93,146.31,146.49,146.57,146.62,146.67000000000002,146.73,146.8,146.88,147.12,21.96,21.29,21.03,20.8,20.580000000000002,20.39,20.19,20,19.63,N/A,N/A +2013,5,25,16,30,94450,93360,92300,70.61,0,4.67,5.73,6.01,6.140000000000001,6.21,6.25,6.26,6.26,6.23,162.4,162.51,162.56,162.58,162.59,162.6,162.61,162.62,162.66,23.12,22.42,22.150000000000002,21.900000000000002,21.68,21.47,21.26,21.07,20.68,N/A,N/A +2013,5,25,17,30,94430,93340,92290,63.32,0,4.29,5.36,5.68,5.87,6,6.09,6.16,6.23,6.32,153.49,153.81,154.02,154.13,154.21,154.29,154.35,154.41,154.51,24.26,23.55,23.27,23.01,22.78,22.580000000000002,22.36,22.17,21.77,N/A,N/A +2013,5,25,18,30,94390,93310,92260,52,0,6.09,7.54,7.95,8.16,8.3,8.39,8.45,8.5,8.55,160.82,160.92000000000002,160.98,161,161.03,161.04,161.05,161.07,161.1,26.400000000000002,25.57,25.25,24.97,24.73,24.5,24.27,24.07,23.64,N/A,N/A +2013,5,25,19,30,94360,93280,92240,52.160000000000004,0,6.98,8.64,9.11,9.34,9.49,9.59,9.65,9.700000000000001,9.73,161.53,161.71,161.8,161.86,161.9,161.95000000000002,161.99,162.04,162.12,26.71,25.85,25.54,25.26,25.01,24.78,24.55,24.34,23.92,N/A,N/A +2013,5,25,20,30,94310,93230,92190,49.5,0,5.99,7.4,7.79,7.99,8.120000000000001,8.21,8.26,8.3,8.34,159.51,159.58,159.65,159.70000000000002,159.73,159.75,159.78,159.81,159.86,27.39,26.57,26.27,25.990000000000002,25.75,25.52,25.3,25.09,24.67,N/A,N/A +2013,5,25,21,30,94240,93170,92130,47.52,0,5.8,7.2,7.6000000000000005,7.82,7.96,8.05,8.11,8.16,8.21,152.48,152.9,153.12,153.27,153.4,153.49,153.59,153.67000000000002,153.83,28.02,27.240000000000002,26.95,26.68,26.44,26.22,25.990000000000002,25.79,25.37,N/A,N/A +2013,5,25,22,30,94210,93140,92100,48.01,0,6.0600000000000005,7.5600000000000005,7.99,8.21,8.370000000000001,8.47,8.540000000000001,8.59,8.66,149.94,150.15,150.25,150.29,150.32,150.34,150.35,150.36,150.38,28.26,27.53,27.26,27,26.77,26.55,26.330000000000002,26.13,25.71,N/A,N/A +2013,5,25,23,30,94140,93060,92030,51.27,0,6.74,8.49,8.97,9.23,9.41,9.52,9.6,9.66,9.72,150.68,150.97,151.12,151.23,151.32,151.4,151.47,151.54,151.69,27.96,27.32,27.07,26.830000000000002,26.6,26.39,26.17,25.97,25.560000000000002,N/A,N/A +2013,5,26,0,30,94170,93100,92070,53.19,0,6.57,8.370000000000001,8.88,9.18,9.38,9.53,9.63,9.71,9.81,155.66,155.71,155.8,155.88,155.97,156.06,156.16,156.26,156.49,27.57,27.080000000000002,26.87,26.64,26.43,26.23,26.02,25.82,25.42,N/A,N/A +2013,5,26,1,30,94190,93120,92080,60.120000000000005,0,5.87,7.69,8.2,8.540000000000001,8.790000000000001,8.99,9.15,9.28,9.49,156.71,157.15,157.42000000000002,157.65,157.87,158.09,158.31,158.53,158.97,26.3,26.03,25.86,25.67,25.490000000000002,25.3,25.11,24.92,24.54,N/A,N/A +2013,5,26,2,30,94150,93070,92020,68.74,0,6.5200000000000005,8.64,9.26,9.700000000000001,10.040000000000001,10.32,10.56,10.77,11.11,146.78,146.96,147.05,147.08,147.13,147.19,147.26,147.33,147.56,24.94,24.67,24.5,24.310000000000002,24.12,23.94,23.740000000000002,23.56,23.17,N/A,N/A +2013,5,26,3,30,94250,93170,92120,70.72,0,5.41,7.36,7.99,8.47,8.870000000000001,9.21,9.52,9.790000000000001,10.3,147.51,147.81,148.01,148.15,148.27,148.36,148.46,148.55,148.73,24.25,24,23.84,23.66,23.48,23.3,23.11,22.93,22.55,N/A,N/A +2013,5,26,4,30,94270,93180,92130,75.01,0,6.42,8.59,9.27,9.77,10.18,10.53,10.85,11.13,11.65,152.09,152.48,152.70000000000002,152.89000000000001,153.07,153.25,153.44,153.62,154.03,23.46,23.21,23.05,22.86,22.68,22.490000000000002,22.3,22.12,21.740000000000002,N/A,N/A +2013,5,26,5,30,94280,93190,92130,77.29,0,6.7700000000000005,9.09,9.78,10.31,10.75,11.13,11.51,11.86,12.56,150.70000000000002,151.42000000000002,151.83,152.19,152.52,152.84,153.16,153.47,154.07,22.5,22.21,22.04,21.85,21.650000000000002,21.46,21.25,21.06,20.650000000000002,N/A,N/A +2013,5,26,6,30,94370,93270,92210,75.55,0,5.42,7.38,8.05,8.58,9,9.370000000000001,9.700000000000001,10,10.55,149.63,150.39000000000001,150.9,151.36,151.8,152.20000000000002,152.62,153,153.76,21.76,21.5,21.35,21.17,20.990000000000002,20.81,20.63,20.45,20.09,N/A,N/A +2013,5,26,7,30,94380,93280,92220,77.3,0,4.66,6.5200000000000005,7.2,7.75,8.2,8.6,8.96,9.290000000000001,9.92,144.29,145.69,146.49,147.18,147.81,148.4,148.98,149.51,150.54,21.150000000000002,20.89,20.740000000000002,20.56,20.38,20.2,20.01,19.84,19.48,N/A,N/A +2013,5,26,8,30,94380,93280,92220,79.56,0,4.73,6.59,7.23,7.74,8.16,8.53,8.85,9.15,9.71,144.1,144.59,144.91,145.29,145.73,146.19,146.73,147.24,148.4,20.61,20.37,20.21,20.03,19.85,19.67,19.48,19.3,18.93,N/A,N/A +2013,5,26,9,30,94370,93270,92200,84.74,0,3.56,5.15,5.76,6.29,6.73,7.11,7.46,7.78,8.38,121.85000000000001,125.7,128.19,130.17000000000002,131.79,133.17000000000002,134.45,135.64000000000001,137.83,19.830000000000002,19.59,19.43,19.26,19.080000000000002,18.900000000000002,18.72,18.54,18.18,N/A,N/A +2013,5,26,10,30,94410,93310,92240,84.33,0,4.32,5.54,5.88,6.1000000000000005,6.25,6.36,6.45,6.53,6.66,111.60000000000001,112.62,113.25,113.8,114.35000000000001,114.87,115.52,116.17,117.85000000000001,19.91,19.55,19.36,19.16,18.96,18.78,18.57,18.39,18,N/A,N/A +2013,5,26,11,30,94370,93270,92200,88.19,0,3.27,4.98,5.67,6.25,6.72,7.13,7.49,7.8100000000000005,8.370000000000001,125.58,126.33,126.64,126.82000000000001,127.37,128.07,129.07,130.07,132.58,19.23,19.04,18.900000000000002,18.740000000000002,18.57,18.41,18.22,18.05,17.69,N/A,N/A +2013,5,26,12,30,94340,93240,92170,87.22,0,3.4,5.68,6.8100000000000005,7.57,8.19,8.72,9.22,9.69,10.59,143.32,146.51,148.35,149.17000000000002,149.72,150.1,150.38,150.64000000000001,151.3,19.04,18.76,18.61,18.45,18.29,18.14,17.98,17.84,17.57,N/A,N/A +2013,5,26,13,30,94310,93210,92140,76.41,0,7.01,8.91,9.44,9.78,10.01,10.19,10.34,10.48,10.84,164.16,164.37,164.45000000000002,164.53,164.61,164.69,164.79,164.89000000000001,165.16,20.3,19.82,19.62,19.41,19.21,19.03,18.85,18.68,18.34,N/A,N/A +2013,5,26,14,30,94310,93220,92150,66.01,0,6.62,8.31,8.8,9.09,9.26,9.38,9.44,9.5,9.58,170.85,170.86,170.89000000000001,170.91,170.93,170.94,170.95000000000002,170.96,171.01,22.09,21.47,21.22,20.990000000000002,20.78,20.59,20.39,20.21,19.84,N/A,N/A +2013,5,26,15,30,94330,93240,92190,58.07,0,5.99,7.5,7.95,8.21,8.38,8.49,8.56,8.61,8.66,170.44,170.46,170.51,170.55,170.58,170.61,170.64000000000001,170.66,170.71,23.81,23.09,22.82,22.57,22.34,22.13,21.92,21.73,21.330000000000002,N/A,N/A +2013,5,26,16,30,94320,93240,92190,50.74,0,6.43,8.02,8.49,8.75,8.91,9.02,9.09,9.15,9.200000000000001,168.06,168.16,168.22,168.25,168.28,168.3,168.32,168.34,168.38,25.62,24.830000000000002,24.54,24.27,24.03,23.81,23.59,23.39,22.98,N/A,N/A +2013,5,26,17,30,94270,93190,92150,44.89,0,6.73,8.370000000000001,8.84,9.09,9.26,9.370000000000001,9.44,9.49,9.53,167.52,167.67000000000002,167.73,167.79,167.85,167.9,167.95000000000002,168,168.11,27.2,26.37,26.05,25.78,25.53,25.310000000000002,25.080000000000002,24.88,24.46,N/A,N/A +2013,5,26,18,30,94230,93160,92120,41.94,0,6.5200000000000005,8.11,8.58,8.84,9.01,9.120000000000001,9.200000000000001,9.26,9.32,163.9,164.09,164.20000000000002,164.28,164.36,164.42000000000002,164.47,164.53,164.62,28.48,27.63,27.32,27.03,26.78,26.55,26.32,26.12,25.69,N/A,N/A +2013,5,26,19,30,94190,93130,92090,40.65,0,6.34,7.8500000000000005,8.28,8.5,8.65,8.75,8.81,8.86,8.91,162.09,162.28,162.38,162.46,162.52,162.58,162.64000000000001,162.69,162.79,29.330000000000002,28.490000000000002,28.18,27.900000000000002,27.650000000000002,27.42,27.19,26.98,26.57,N/A,N/A +2013,5,26,20,30,94150,93080,92050,38.26,0,6.390000000000001,7.91,8.35,8.57,8.72,8.82,8.89,8.94,8.99,159.66,159.82,159.91,159.97,160.02,160.05,160.09,160.13,160.21,30.19,29.37,29.060000000000002,28.78,28.54,28.3,28.080000000000002,27.87,27.45,N/A,N/A +2013,5,26,21,30,94060,93000,91970,36.7,0,6.19,7.68,8.1,8.31,8.46,8.55,8.620000000000001,8.66,8.72,162.96,162.99,163,162.99,162.99,162.98,162.97,162.97,162.96,30.62,29.830000000000002,29.54,29.27,29.03,28.8,28.580000000000002,28.37,27.96,N/A,N/A +2013,5,26,22,30,94020,92960,91930,35.53,0,6.24,7.7700000000000005,8.2,8.43,8.58,8.69,8.76,8.82,8.88,162.6,162.55,162.51,162.46,162.42000000000002,162.39000000000001,162.36,162.32,162.27,30.86,30.14,29.86,29.6,29.37,29.150000000000002,28.93,28.73,28.310000000000002,N/A,N/A +2013,5,26,23,30,94000,92940,91910,36,0,6.78,8.53,9.03,9.31,9.51,9.64,9.74,9.82,9.92,157.66,157.77,157.83,157.87,157.89000000000001,157.92000000000002,157.95000000000002,157.98,158.03,30.69,30.07,29.830000000000002,29.580000000000002,29.36,29.150000000000002,28.93,28.73,28.32,N/A,N/A +2013,5,27,0,30,93980,92920,91890,39.68,0,7.24,9.26,9.81,10.15,10.39,10.56,10.69,10.790000000000001,10.93,152.70000000000002,152.96,153.13,153.3,153.46,153.61,153.76,153.91,154.21,30.03,29.580000000000002,29.38,29.16,28.95,28.75,28.54,28.35,27.95,N/A,N/A +2013,5,27,1,30,93960,92900,91870,41.83,0,6.1000000000000005,8.45,9.18,9.73,10.17,10.53,10.83,11.09,11.48,156.66,156.8,156.87,156.94,157,157.07,157.13,157.18,157.24,28.86,28.71,28.580000000000002,28.43,28.26,28.1,27.92,27.75,27.38,N/A,N/A +2013,5,27,2,30,93990,92930,91890,43.71,0,5.53,8.01,8.88,9.64,10.3,10.89,11.44,11.96,12.86,151.24,151.62,151.87,152.14000000000001,152.43,152.75,153.1,153.45000000000002,154.18,27.94,27.89,27.82,27.71,27.59,27.47,27.330000000000002,27.2,26.900000000000002,N/A,N/A +2013,5,27,3,30,94010,92940,91910,44.22,0,6.07,8.77,9.74,10.58,11.33,12.02,12.68,13.280000000000001,14.4,155.87,156.29,156.53,156.75,156.92000000000002,157.07,157.18,157.26,157.32,27.32,27.32,27.27,27.19,27.11,27.02,26.92,26.82,26.6,N/A,N/A +2013,5,27,4,30,94010,92930,91900,44.57,0,7.1000000000000005,10.11,11.16,12.05,12.81,13.48,14.11,14.68,15.67,153.12,153.52,153.73,153.91,154.04,154.16,154.23,154.27,154.26,26.67,26.61,26.52,26.41,26.27,26.13,25.98,25.830000000000002,25.490000000000002,N/A,N/A +2013,5,27,5,30,94040,92960,91910,63.870000000000005,0,7.19,9.96,10.89,11.65,12.290000000000001,12.86,13.41,13.9,14.870000000000001,151.51,152.11,152.42000000000002,152.68,152.91,153.12,153.32,153.5,153.88,24.37,24.2,24.07,23.92,23.76,23.6,23.43,23.28,22.95,N/A,N/A +2013,5,27,6,30,94040,92950,91900,64.77,0,6.55,9.26,10.19,10.97,11.65,12.26,12.84,13.38,14.44,155.77,156.32,156.62,156.87,157.09,157.29,157.48,157.66,158.03,23.7,23.57,23.47,23.34,23.2,23.07,22.93,22.8,22.53,N/A,N/A +2013,5,27,7,30,94070,92980,91930,71.57000000000001,0,6.73,9.370000000000001,10.3,11.09,11.76,12.34,12.92,13.450000000000001,14.49,155.92000000000002,156.52,156.9,157.25,157.55,157.84,158.13,158.41,158.98,22.76,22.6,22.490000000000002,22.34,22.19,22.05,21.900000000000002,21.75,21.46,N/A,N/A +2013,5,27,8,30,94080,92990,91940,78.62,0,6.69,9.31,10.27,11.09,11.790000000000001,12.41,13.02,13.58,14.68,156.20000000000002,157.05,157.6,158.1,158.55,158.97,159.38,159.76,160.47,22.13,21.98,21.87,21.73,21.6,21.46,21.32,21.2,20.94,N/A,N/A +2013,5,27,9,30,94030,92940,91880,81.84,0,7.03,9.700000000000001,10.64,11.43,12.11,12.72,13.31,13.85,14.94,155.5,156.41,157.02,157.6,158.14000000000001,158.66,159.19,159.67000000000002,160.69,21.59,21.44,21.330000000000002,21.19,21.05,20.92,20.78,20.650000000000002,20.39,N/A,N/A +2013,5,27,10,30,94000,92910,91850,82.18,0,6.44,9.1,10.07,10.9,11.620000000000001,12.26,12.88,13.46,14.620000000000001,155.13,156.16,156.82,157.46,158.05,158.6,159.15,159.65,160.6,21.17,21.04,20.93,20.8,20.66,20.53,20.39,20.27,20.01,N/A,N/A +2013,5,27,11,30,93980,92890,91830,79.8,0,6.49,9.200000000000001,10.18,11.05,11.8,12.450000000000001,13.07,13.65,14.790000000000001,153.36,154.36,155.03,155.69,156.31,156.88,157.46,157.98,159.06,20.72,20.6,20.490000000000002,20.37,20.240000000000002,20.11,19.98,19.85,19.6,N/A,N/A +2013,5,27,12,30,94010,92910,91850,75.22,0,6.5,9.02,9.94,10.71,11.39,11.99,12.57,13.11,14.19,155.92000000000002,156.86,157.47,158.07,158.66,159.24,159.84,160.41,161.54,20.52,20.34,20.22,20.09,19.96,19.830000000000002,19.7,19.59,19.37,N/A,N/A +2013,5,27,13,30,94010,92920,91860,65.02,0,7.21,9.24,9.86,10.28,10.6,10.86,11.08,11.290000000000001,11.73,162.54,162.69,162.81,162.94,163.09,163.24,163.42000000000002,163.59,164.01,21.650000000000002,21.19,20.98,20.78,20.580000000000002,20.39,20.2,20.03,19.67,N/A,N/A +2013,5,27,14,30,94060,92970,91920,56.43,0,6.03,7.59,8.03,8.290000000000001,8.45,8.57,8.65,8.71,8.790000000000001,169.42000000000002,169.36,169.4,169.45000000000002,169.51,169.56,169.62,169.68,169.83,23.04,22.42,22.18,21.94,21.72,21.52,21.31,21.12,20.73,N/A,N/A +2013,5,27,15,30,94030,92950,91900,50.84,0,7.140000000000001,8.92,9.42,9.700000000000001,9.88,10,10.07,10.13,10.19,165.37,165.47,165.55,165.63,165.72,165.81,165.9,165.99,166.19,24.39,23.650000000000002,23.38,23.13,22.89,22.68,22.47,22.27,21.87,N/A,N/A +2013,5,27,16,30,94000,92920,91870,45.86,0,7.95,9.91,10.47,10.76,10.950000000000001,11.08,11.15,11.21,11.26,163.91,164.09,164.20000000000002,164.28,164.37,164.45000000000002,164.54,164.62,164.81,25.85,25.04,24.740000000000002,24.47,24.23,24.01,23.79,23.59,23.18,N/A,N/A +2013,5,27,17,30,93930,92860,91820,40.04,0,8.040000000000001,10.040000000000001,10.6,10.9,11.09,11.22,11.3,11.36,11.4,164.55,164.73,164.85,164.94,165.03,165.1,165.17000000000002,165.24,165.4,27.41,26.55,26.240000000000002,25.96,25.71,25.490000000000002,25.26,25.060000000000002,24.64,N/A,N/A +2013,5,27,18,30,93900,92830,91800,36.44,0,7.92,9.85,10.41,10.71,10.9,11.02,11.1,11.15,11.200000000000001,163.65,163.78,163.84,163.89000000000001,163.94,163.98,164.03,164.07,164.17000000000002,28.64,27.76,27.44,27.16,26.900000000000002,26.67,26.45,26.240000000000002,25.82,N/A,N/A +2013,5,27,19,30,93840,92770,91740,33.9,0,7.72,9.59,10.14,10.41,10.59,10.71,10.78,10.83,10.88,165.4,165.54,165.6,165.65,165.69,165.73,165.78,165.83,165.92000000000002,29.67,28.79,28.47,28.19,27.93,27.7,27.48,27.27,26.85,N/A,N/A +2013,5,27,20,30,93760,92700,91680,31.77,0,7.74,9.63,10.17,10.44,10.63,10.75,10.82,10.88,10.94,162.5,162.55,162.6,162.64000000000001,162.67000000000002,162.70000000000002,162.74,162.77,162.84,30.36,29.5,29.2,28.91,28.66,28.43,28.2,28,27.580000000000002,N/A,N/A +2013,5,27,21,30,93700,92640,91620,30.16,0,7.57,9.42,9.99,10.290000000000001,10.5,10.64,10.74,10.82,10.91,161.31,161.34,161.37,161.38,161.39000000000001,161.41,161.43,161.45000000000002,161.5,30.900000000000002,30.09,29.8,29.52,29.27,29.04,28.82,28.61,28.19,N/A,N/A +2013,5,27,22,30,93610,92560,91530,28.43,0,7.75,9.74,10.3,10.61,10.82,10.96,11.06,11.14,11.22,159.11,159.17000000000002,159.22,159.26,159.29,159.32,159.35,159.38,159.44,31.080000000000002,30.37,30.1,29.85,29.61,29.39,29.17,28.97,28.55,N/A,N/A +2013,5,27,23,30,93600,92550,91520,28.05,0,7.930000000000001,10.05,10.67,11.01,11.26,11.43,11.55,11.65,11.77,155.65,155.82,155.93,156.05,156.15,156.26,156.37,156.48,156.71,30.650000000000002,30.11,29.88,29.64,29.43,29.22,29.01,28.8,28.400000000000002,N/A,N/A +2013,5,28,0,30,93600,92540,91520,29.1,0,6.79,8.84,9.42,9.8,10.09,10.31,10.48,10.63,10.85,152.19,152.5,152.69,152.88,153.06,153.24,153.43,153.61,153.99,29.900000000000002,29.6,29.43,29.23,29.04,28.85,28.650000000000002,28.46,28.080000000000002,N/A,N/A +2013,5,28,1,30,93640,92580,91550,30.92,0,2.83,4.7,5.45,6.09,6.63,7.1000000000000005,7.5,7.86,8.45,149.87,151.41,152.47,153.15,153.56,153.79,153.87,153.9,153.92000000000002,29.060000000000002,29.03,28.94,28.8,28.64,28.47,28.29,28.11,27.72,N/A,N/A +2013,5,28,2,30,93650,92590,91560,35.93,0,1.8,4.08,5.04,5.91,6.67,7.36,8.02,8.66,9.9,136.86,138.22,139.37,140.88,142.5,144.22,145.94,147.59,150.39000000000001,27.86,28.16,28.14,28.080000000000002,27.990000000000002,27.87,27.72,27.580000000000002,27.25,N/A,N/A +2013,5,28,3,30,93690,92620,91590,29.1,0,5.57,8.11,9.08,9.950000000000001,10.75,11.51,12.26,12.97,14.31,162.36,161.79,161.34,161.03,160.84,160.75,160.76,160.81,161.03,27.96,27.93,27.87,27.79,27.71,27.62,27.53,27.43,27.2,N/A,N/A +2013,5,28,4,30,93760,92700,91660,29.990000000000002,0,2.22,3.86,4.53,5.17,5.7700000000000005,6.36,7.01,7.68,9.15,190.02,192.44,194.24,194.26,193.41,191.67000000000002,189.38,186.84,182.04,27.28,27.35,27.310000000000002,27.22,27.12,27.01,26.900000000000002,26.79,26.580000000000002,N/A,N/A +2013,5,28,5,30,93550,92480,91440,25.740000000000002,0,9.96,13.39,14.51,15.39,16.12,16.75,17.34,17.87,18.830000000000002,159.97,159.96,159.95000000000002,160,160.06,160.15,160.27,160.4,160.72,26.900000000000002,26.830000000000002,26.75,26.63,26.51,26.38,26.26,26.13,25.88,N/A,N/A +2013,5,28,6,30,93720,92640,91600,24.68,0,4.5,7.28,8.58,9.74,10.71,11.540000000000001,12.27,12.92,14.13,167.71,166.91,166.11,165.64000000000001,165.32,165.09,164.95000000000002,164.83,164.73,25.990000000000002,26.01,25.93,25.82,25.7,25.580000000000002,25.45,25.330000000000002,25.060000000000002,N/A,N/A +2013,5,28,7,30,93560,92480,91440,26.17,0,12.34,16.54,17.8,18.8,19.64,20.37,21.04,21.650000000000002,22.79,160.45000000000002,160.92000000000002,161.17000000000002,161.37,161.54,161.69,161.85,162,162.36,24.98,24.89,24.79,24.68,24.560000000000002,24.45,24.330000000000002,24.22,24,N/A,N/A +2013,5,28,8,30,93550,92470,91420,31.78,0,12.63,16.77,17.990000000000002,18.92,19.69,20.34,20.95,21.5,22.490000000000002,166.20000000000002,166.56,166.72,166.84,166.93,167.01,167.08,167.15,167.29,23.79,23.64,23.53,23.41,23.28,23.16,23.04,22.93,22.71,N/A,N/A +2013,5,28,9,30,93730,92650,91590,35.910000000000004,0,8.55,11.32,12.21,12.89,13.49,14.030000000000001,14.56,15.06,16.06,164.76,165.68,166.42000000000002,167.06,167.64000000000001,168.17000000000002,168.67000000000002,169.13,169.96,23.01,22.81,22.69,22.53,22.38,22.240000000000002,22.09,21.96,21.7,N/A,N/A +2013,5,28,10,30,93630,92540,91490,41.45,0,6.75,9.21,10,10.65,11.26,11.8,12.38,12.92,14.040000000000001,126.7,129.67000000000002,131.6,133.49,135.43,137.28,139.32,141.23,145.05,22.26,22.07,21.93,21.79,21.650000000000002,21.53,21.400000000000002,21.29,21.12,N/A,N/A +2013,5,28,11,30,93540,92450,91400,45.64,0,10.9,14.42,15.55,16.42,17.12,17.72,18.23,18.7,19.53,157.76,158.54,159.05,159.45000000000002,159.82,160.15,160.5,160.84,161.59,21.66,21.52,21.43,21.330000000000002,21.23,21.14,21.07,21,20.89,N/A,N/A +2013,5,28,12,30,93620,92530,91470,53.56,0,7.34,10.040000000000001,11.03,11.84,12.5,13.06,13.59,14.08,14.99,148.41,149.69,150.48,151.18,151.82,152.4,153.02,153.59,154.77,20.93,20.75,20.64,20.51,20.38,20.25,20.13,20.02,19.82,N/A,N/A +2013,5,28,13,30,93510,92420,91370,59.57,0,11.38,14.700000000000001,15.66,16.39,16.990000000000002,17.52,18.14,18.69,19.23,153.48,154.16,154.53,154.86,155.19,155.51,155.92000000000002,156.29,156.59,21.07,20.73,20.56,20.38,20.2,20.05,19.92,19.79,19.46,N/A,N/A +2013,5,28,14,30,93620,92540,91480,61.02,0,9.73,12.19,12.94,13.35,13.620000000000001,13.8,13.92,14.02,14.15,158.6,158.70000000000002,158.78,158.85,158.91,158.97,159.05,159.12,159.3,22.080000000000002,21.45,21.2,20.96,20.740000000000002,20.55,20.35,20.16,19.79,N/A,N/A +2013,5,28,15,30,93680,92600,91550,57.46,0,6.59,8.38,8.96,9.3,9.53,9.700000000000001,9.81,9.91,10.040000000000001,149.09,149.47,149.70000000000002,149.89000000000001,150.04,150.18,150.31,150.44,150.71,23.26,22.69,22.46,22.22,22,21.8,21.59,21.39,21,N/A,N/A +2013,5,28,16,30,93650,92570,91530,48.03,0,6.48,8.1,8.63,8.92,9.120000000000001,9.26,9.36,9.44,9.53,142.77,143.38,143.75,144.01,144.23,144.41,144.59,144.74,145.06,25.45,24.66,24.36,24.09,23.85,23.63,23.41,23.21,22.8,N/A,N/A +2013,5,28,17,30,93590,92520,91480,41.43,0,7.43,9.28,9.86,10.17,10.39,10.53,10.64,10.72,10.82,150.23,150.31,150.37,150.41,150.44,150.47,150.5,150.53,150.61,27.1,26.25,25.93,25.650000000000002,25.400000000000002,25.18,24.95,24.740000000000002,24.330000000000002,N/A,N/A +2013,5,28,18,30,93540,92480,91440,41.09,0,6.96,8.68,9.200000000000001,9.49,9.700000000000001,9.84,9.94,10.02,10.13,154.33,154.53,154.69,154.8,154.9,154.99,155.08,155.15,155.32,28.17,27.310000000000002,26.990000000000002,26.7,26.45,26.22,25.990000000000002,25.78,25.36,N/A,N/A +2013,5,28,19,30,93500,92440,91410,37.88,0,7.37,9.200000000000001,9.77,10.09,10.3,10.450000000000001,10.56,10.65,10.76,152.98,153.26,153.35,153.43,153.51,153.58,153.65,153.73,153.87,29.39,28.51,28.19,27.900000000000002,27.650000000000002,27.41,27.18,26.97,26.55,N/A,N/A +2013,5,28,20,30,93430,92380,91350,36.07,0,7.63,9.52,10.1,10.42,10.64,10.8,10.91,11,11.11,149.37,149.83,150.11,150.31,150.48,150.64000000000001,150.78,150.9,151.14000000000001,30.16,29.310000000000002,29.01,28.72,28.47,28.240000000000002,28.01,27.8,27.38,N/A,N/A +2013,5,28,21,30,93360,92310,91290,33.87,0,7.3100000000000005,9.17,9.75,10.06,10.290000000000001,10.450000000000001,10.57,10.67,10.8,149.47,149.59,149.67000000000002,149.69,149.71,149.73,149.74,149.74,149.75,30.91,30.1,29.8,29.52,29.28,29.05,28.82,28.61,28.19,N/A,N/A +2013,5,28,22,30,93310,92260,91240,34.68,0,7.7700000000000005,9.78,10.41,10.76,11.02,11.200000000000001,11.33,11.44,11.59,145.95000000000002,146.18,146.33,146.44,146.53,146.62,146.70000000000002,146.77,146.91,31.25,30.52,30.25,29.990000000000002,29.75,29.53,29.310000000000002,29.1,28.69,N/A,N/A +2013,5,28,23,30,93240,92190,91180,31.330000000000002,0,8.58,10.89,11.59,11.99,12.280000000000001,12.49,12.65,12.780000000000001,12.96,147.96,148.06,148.12,148.14000000000001,148.14000000000001,148.14000000000001,148.14000000000001,148.13,148.11,31.27,30.67,30.43,30.18,29.97,29.75,29.54,29.34,28.93,N/A,N/A +2013,5,29,0,30,93220,92180,91160,35.44,0,8.66,11.1,11.870000000000001,12.36,12.73,12.99,13.21,13.39,13.67,149.44,149.31,149.29,149.28,149.28,149.29,149.31,149.35,149.42000000000002,30.77,30.35,30.150000000000002,29.93,29.73,29.52,29.310000000000002,29.12,28.72,N/A,N/A +2013,5,29,1,30,93210,92160,91140,36.96,0,7.22,9.74,10.540000000000001,11.17,11.67,12.09,12.47,12.81,13.4,150.5,150.82,151.06,151.29,151.5,151.70000000000002,151.9,152.09,152.44,29.740000000000002,29.55,29.42,29.240000000000002,29.080000000000002,28.91,28.73,28.560000000000002,28.2,N/A,N/A +2013,5,29,2,30,93210,92160,91140,39.45,0,7.54,10.370000000000001,11.32,12.1,12.77,13.370000000000001,13.93,14.46,15.47,144.62,144.83,144.99,145.19,145.42000000000002,145.68,145.97,146.27,146.88,29.02,28.87,28.77,28.62,28.48,28.330000000000002,28.17,28.03,27.71,N/A,N/A +2013,5,29,3,30,93210,92150,91130,40.52,0,8.08,11.290000000000001,12.38,13.27,14.030000000000001,14.71,15.34,15.92,17.01,147.88,147.91,147.97,148.09,148.26,148.46,148.72,148.98,149.6,28.39,28.310000000000002,28.22,28.09,27.97,27.830000000000002,27.69,27.560000000000002,27.26,N/A,N/A +2013,5,29,4,30,93210,92150,91120,47.68,0,6.36,9.25,10.27,11.15,11.91,12.58,13.22,13.82,14.93,136.77,136.87,136.96,137,137.09,137.21,137.43,137.67000000000002,138.4,27.22,27.11,26.990000000000002,26.85,26.69,26.53,26.35,26.18,25.810000000000002,N/A,N/A +2013,5,29,5,30,93270,92200,91170,64.27,0,9.02,12.290000000000001,13.290000000000001,14.08,14.71,15.24,15.73,16.17,16.93,140.38,141.03,141.41,141.78,142.13,142.48,142.86,143.23,144.01,25.88,25.67,25.53,25.37,25.19,25.02,24.84,24.67,24.310000000000002,N/A,N/A +2013,5,29,6,30,93300,92230,91190,69.4,0,9.55,12.88,13.89,14.67,15.3,15.82,16.3,16.72,17.490000000000002,148.64000000000001,149.1,149.37,149.63,149.89000000000001,150.14000000000001,150.42000000000002,150.68,151.28,24.72,24.5,24.35,24.18,24.01,23.84,23.66,23.490000000000002,23.13,N/A,N/A +2013,5,29,7,30,93290,92220,91180,69.3,0,10.51,14.11,15.14,15.93,16.57,17.11,17.580000000000002,18.01,18.81,153.66,153.92000000000002,154.06,154.19,154.32,154.46,154.62,154.76,155.13,23.8,23.57,23.42,23.26,23.080000000000002,22.92,22.73,22.57,22.21,N/A,N/A +2013,5,29,8,30,93290,92220,91180,67.79,0,10.73,14.5,15.56,16.38,17.06,17.64,18.16,18.63,19.5,155.82,156.31,156.59,156.85,157.1,157.34,157.6,157.85,158.38,23.29,23.07,22.93,22.77,22.6,22.44,22.26,22.1,21.76,N/A,N/A +2013,5,29,9,30,93320,92240,91190,64.87,0,7.23,9.950000000000001,10.91,11.700000000000001,12.370000000000001,12.950000000000001,13.5,14.02,15,148.97,149.85,150.41,150.92000000000002,151.4,151.85,152.3,152.72,153.53,22.63,22.48,22.35,22.19,22.04,21.89,21.72,21.56,21.23,N/A,N/A +2013,5,29,10,30,93300,92220,91170,68.81,0,6.7,9.38,10.370000000000001,11.200000000000001,11.9,12.51,13.09,13.64,14.64,157.22,157.82,158.12,158.39000000000001,158.64000000000001,158.85,159.02,159.17000000000002,159.39000000000001,21.900000000000002,21.76,21.650000000000002,21.5,21.36,21.21,21.06,20.91,20.580000000000002,N/A,N/A +2013,5,29,11,30,93300,92220,91170,69.83,0,6.78,9.81,10.92,11.88,12.73,13.49,14.22,14.91,16.19,155.70000000000002,157.11,157.93,158.64000000000001,159.29,159.87,160.46,161,162.05,21.57,21.42,21.3,21.16,21.01,20.86,20.7,20.54,20.21,N/A,N/A +2013,5,29,12,30,93330,92240,91190,73.69,0,7.72,10.52,11.4,12.15,12.8,13.370000000000001,13.93,14.450000000000001,15.5,163.67000000000002,164.5,164.95000000000002,165.37,165.75,166.11,166.47,166.81,167.52,21.06,20.81,20.66,20.5,20.330000000000002,20.17,20,19.84,19.52,N/A,N/A +2013,5,29,13,30,93350,92260,91210,70.81,0,10.790000000000001,13.61,14.290000000000001,14.69,14.96,15.17,15.33,15.47,15.76,164.96,165.07,165.16,165.27,165.39000000000001,165.51,165.67000000000002,165.81,166.18,21.77,21.29,21.080000000000002,20.87,20.67,20.490000000000002,20.29,20.11,19.740000000000002,N/A,N/A +2013,5,29,14,30,93350,92270,91220,67.05,0,10.43,13.1,13.75,14.120000000000001,14.34,14.47,14.540000000000001,14.59,14.63,168.44,168.48,168.5,168.54,168.6,168.66,168.76,168.84,169.1,22.7,22.05,21.8,21.57,21.35,21.150000000000002,20.95,20.76,20.39,N/A,N/A +2013,5,29,15,30,93390,92320,91270,59.910000000000004,0,8.52,10.66,11.3,11.66,11.88,12.02,12.1,12.16,12.19,167.78,168.13,168.33,168.47,168.58,168.68,168.78,168.86,169.05,24.29,23.53,23.25,22.98,22.75,22.53,22.32,22.12,21.73,N/A,N/A +2013,5,29,16,30,93390,92320,91280,52.67,0,7.75,9.65,10.25,10.57,10.78,10.91,10.99,11.05,11.08,169.14000000000001,169.48,169.69,169.83,169.95000000000002,170.05,170.13,170.21,170.35,26.080000000000002,25.26,24.95,24.67,24.42,24.2,23.98,23.77,23.36,N/A,N/A +2013,5,29,17,30,93360,92300,91270,46.39,0,6.41,7.930000000000001,8.42,8.67,8.84,8.94,9.01,9.05,9.09,170.77,171.12,171.34,171.5,171.64000000000001,171.78,171.9,172.01,172.23,27.82,26.990000000000002,26.67,26.38,26.13,25.900000000000002,25.68,25.47,25.060000000000002,N/A,N/A +2013,5,29,18,30,93300,92250,91230,39.21,0,6.2,7.62,8.07,8.28,8.42,8.51,8.56,8.6,8.63,180.35,180.82,181.08,181.34,181.58,181.81,182.05,182.27,182.74,29.5,28.66,28.34,28.05,27.810000000000002,27.57,27.35,27.14,26.72,N/A,N/A +2013,5,29,19,30,93250,92200,91180,33.69,0,6.42,7.88,8.33,8.55,8.71,8.81,8.870000000000001,8.93,8.99,183.75,184.11,184.36,184.62,184.86,185.08,185.31,185.53,185.96,30.900000000000002,30.060000000000002,29.740000000000002,29.45,29.2,28.97,28.740000000000002,28.53,28.11,N/A,N/A +2013,5,29,20,30,93190,92150,91130,31.71,0,6.68,8.21,8.68,8.91,9.08,9.19,9.27,9.32,9.4,178.09,178.74,179.23,179.71,180.13,180.53,180.92000000000002,181.3,182.02,31.8,30.970000000000002,30.66,30.37,30.12,29.89,29.66,29.45,29.03,N/A,N/A +2013,5,29,21,30,93110,92060,91050,29.6,0,7.47,9.26,9.76,10.01,10.19,10.31,10.39,10.450000000000001,10.53,171.25,172.22,172.84,173.36,173.82,174.25,174.65,175.02,175.75,32.37,31.55,31.26,30.98,30.740000000000002,30.51,30.28,30.07,29.66,N/A,N/A +2013,5,29,22,30,93070,92030,91020,31.150000000000002,0,8.83,10.92,11.6,11.94,12.19,12.34,12.46,12.540000000000001,12.64,171.34,171.55,171.71,171.86,172.01,172.16,172.3,172.45000000000002,172.74,32.42,31.66,31.38,31.1,30.86,30.63,30.41,30.2,29.78,N/A,N/A +2013,5,29,23,30,93050,92010,90990,31.66,0,8.52,10.65,11.34,11.72,12,12.18,12.32,12.43,12.59,167.67000000000002,167.85,167.99,168.12,168.23,168.35,168.46,168.58,168.8,32.18,31.55,31.310000000000002,31.05,30.830000000000002,30.61,30.39,30.19,29.78,N/A,N/A +2013,5,30,0,30,93000,91960,90950,33.22,0,8.4,10.8,11.38,11.75,12.01,12.200000000000001,12.35,12.47,12.64,169.79,169.8,169.86,169.93,170.01,170.09,170.18,170.28,170.49,31.580000000000002,31.14,30.94,30.72,30.51,30.310000000000002,30.1,29.91,29.51,N/A,N/A +2013,5,30,1,30,93030,91980,90960,35.49,0,7.63,10.19,10.92,11.44,11.85,12.200000000000001,12.49,12.75,13.200000000000001,167.97,168.18,168.29,168.34,168.37,168.36,168.33,168.28,168.13,30.36,30.21,30.09,29.93,29.77,29.6,29.41,29.240000000000002,28.87,N/A,N/A +2013,5,30,2,30,93070,92020,91000,35.96,0,6.74,9.42,10.370000000000001,11.16,11.86,12.52,13.13,13.71,14.76,167.91,167.48,167.15,166.77,166.35,165.87,165.35,164.83,163.79,29.36,29.32,29.240000000000002,29.13,29.02,28.89,28.76,28.63,28.34,N/A,N/A +2013,5,30,3,30,93100,92050,91030,37.92,0,6.7,9.42,10.46,11.4,12.24,13.040000000000001,13.8,14.530000000000001,15.88,163.41,163.51,163.56,163.49,163.34,163.12,162.89000000000001,162.67000000000002,162.39000000000001,28.63,28.650000000000002,28.61,28.54,28.46,28.37,28.26,28.17,27.96,N/A,N/A +2013,5,30,4,30,93100,92050,91030,40.27,0,9.13,12.49,13.57,14.450000000000001,15.22,15.93,16.61,17.240000000000002,18.45,159.49,159.76,159.93,160.09,160.22,160.36,160.5,160.64000000000001,160.96,28.29,28.23,28.150000000000002,28.05,27.93,27.82,27.69,27.57,27.32,N/A,N/A +2013,5,30,5,30,93160,92100,91080,44.67,0,8.89,12.14,13.200000000000001,14.09,14.88,15.6,16.3,16.96,18.25,159.37,159.71,159.89000000000001,159.98,160.03,160.04,160.05,160.07,160.26,27.41,27.37,27.3,27.2,27.1,26.990000000000002,26.87,26.76,26.52,N/A,N/A +2013,5,30,6,30,93240,92180,91150,56.050000000000004,0,9.75,13.040000000000001,14.09,14.91,15.6,16.22,16.81,17.36,18.41,154.45000000000002,154.70000000000002,154.87,155.02,155.15,155.3,155.46,155.61,155.99,26.16,26.03,25.92,25.77,25.63,25.48,25.32,25.17,24.85,N/A,N/A +2013,5,30,7,30,93300,92230,91200,64.85,0,8.75,11.84,12.780000000000001,13.55,14.21,14.790000000000001,15.36,15.88,16.93,151.36,152.01,152.4,152.74,153.09,153.42000000000002,153.8,154.16,155.02,24.78,24.61,24.490000000000002,24.35,24.19,24.04,23.88,23.73,23.41,N/A,N/A +2013,5,30,8,30,93330,92250,91220,71.95,0,9.120000000000001,12.23,13.23,14.040000000000001,14.71,15.3,15.860000000000001,16.37,17.37,153.36,154.26,154.82,155.31,155.74,156.14000000000001,156.54,156.92000000000002,157.69,23.87,23.7,23.57,23.42,23.27,23.11,22.95,22.8,22.48,N/A,N/A +2013,5,30,9,30,93380,92300,91260,77.14,0,8.81,11.75,12.72,13.48,14.11,14.64,15.16,15.63,16.53,151.70000000000002,152.57,153.12,153.58,153.98,154.34,154.70000000000002,155.04,155.72,23.09,22.91,22.79,22.63,22.47,22.31,22.14,21.98,21.650000000000002,N/A,N/A +2013,5,30,10,30,93390,92310,91270,80.3,0,9,12.05,13.01,13.77,14.39,14.92,15.41,15.85,16.71,153.77,154.62,155.14000000000001,155.61,156.02,156.4,156.78,157.13,157.91,22.45,22.26,22.12,21.96,21.79,21.63,21.46,21.3,20.96,N/A,N/A +2013,5,30,11,30,93510,92420,91380,84.26,0,6.0600000000000005,8.84,9.96,10.85,11.57,12.17,12.71,13.19,14.05,158.07,160.18,161.39000000000001,162.09,162.62,163.04,163.4,163.73,164.35,22.07,21.91,21.79,21.63,21.47,21.31,21.13,20.97,20.63,N/A,N/A +2013,5,30,12,30,93540,92460,91420,84.12,0,6.08,8.36,9.200000000000001,9.9,10.47,10.96,11.4,11.81,12.59,162.22,163.37,164.07,164.6,165.05,165.43,165.8,166.13,166.82,22.12,21.88,21.72,21.54,21.36,21.18,20.990000000000002,20.81,20.44,N/A,N/A +2013,5,30,13,30,93620,92540,91490,79.37,0,5.96,7.61,8.17,8.53,8.78,8.96,9.09,9.21,9.38,166.8,167.21,167.49,167.73,167.93,168.12,168.3,168.48,168.83,22.78,22.27,22.05,21.830000000000002,21.62,21.42,21.21,21.02,20.63,N/A,N/A +2013,5,30,14,30,93640,92560,91520,74.31,0,6.29,7.8500000000000005,8.32,8.57,8.73,8.83,8.88,8.92,8.93,169.38,169.54,169.63,169.73,169.82,169.91,170,170.09,170.29,23.54,22.88,22.62,22.37,22.150000000000002,21.95,21.740000000000002,21.54,21.150000000000002,N/A,N/A +2013,5,30,15,30,93650,92580,91530,68.83,0,5.21,6.45,6.84,7.05,7.19,7.28,7.33,7.37,7.390000000000001,177.46,177.15,176.94,176.78,176.64000000000001,176.53,176.43,176.34,176.18,24.78,24.05,23.77,23.51,23.28,23.07,22.86,22.66,22.27,N/A,N/A +2013,5,30,16,30,93660,92590,91550,59.46,0,5.11,6.26,6.59,6.74,6.84,6.890000000000001,6.92,6.93,6.92,182.33,181.65,181.29,181,180.76,180.55,180.36,180.19,179.88,26.71,25.94,25.64,25.37,25.14,24.92,24.71,24.51,24.11,N/A,N/A +2013,5,30,17,30,93630,92570,91540,48.18,0,4.88,5.94,6.25,6.390000000000001,6.48,6.5200000000000005,6.54,6.54,6.5200000000000005,180.97,181.22,181.36,181.54,181.72,181.91,182.11,182.32,182.78,29.09,28.32,28.01,27.73,27.5,27.28,27.060000000000002,26.86,26.46,N/A,N/A +2013,5,30,18,30,93590,92540,91520,36.94,0,4.23,5.08,5.3,5.39,5.44,5.46,5.46,5.46,5.42,189.20000000000002,189.70000000000002,190.04,190.47,190.88,191.31,191.75,192.18,193.07,30.94,30.2,29.89,29.62,29.38,29.150000000000002,28.93,28.73,28.32,N/A,N/A +2013,5,30,19,30,93530,92480,91470,28.2,0,3.23,3.91,4.08,4.18,4.24,4.29,4.32,4.3500000000000005,4.38,212.32,213.28,213.8,214.29,214.76,215.20000000000002,215.65,216.06,216.9,32.55,31.84,31.54,31.27,31.03,30.8,30.57,30.36,29.94,N/A,N/A +2013,5,30,20,30,93510,92460,91450,26.97,0,3.59,4.34,4.5600000000000005,4.68,4.7700000000000005,4.83,4.88,4.91,4.97,216.08,217.09,217.62,218.12,218.56,218.98000000000002,219.38,219.76,220.46,33.38,32.67,32.37,32.09,31.85,31.62,31.400000000000002,31.18,30.76,N/A,N/A +2013,5,30,21,30,93450,92410,91400,24.25,0,3.95,4.74,4.96,5.05,5.12,5.16,5.19,5.21,5.23,209.69,210.8,211.56,212.3,212.95000000000002,213.59,214.20000000000002,214.78,215.9,34.08,33.37,33.08,32.82,32.58,32.36,32.14,31.93,31.51,N/A,N/A +2013,5,30,22,30,93400,92360,91350,22.97,0,3.63,4.39,4.6000000000000005,4.71,4.79,4.84,4.88,4.91,4.95,207.97,208.58,209.02,209.51,209.96,210.39000000000001,210.82,211.23000000000002,212.03,34.56,33.9,33.64,33.38,33.15,32.93,32.71,32.51,32.09,N/A,N/A +2013,5,30,23,30,93360,92320,91310,22.85,0,4.87,5.96,6.26,6.390000000000001,6.48,6.53,6.57,6.59,6.61,179.14000000000001,180.23,180.88,181.48,182.02,182.53,183.02,183.49,184.41,34.56,33.96,33.72,33.480000000000004,33.27,33.05,32.84,32.64,32.24,N/A,N/A +2013,5,31,0,30,93350,92310,91300,25.32,0,6.05,7.58,7.97,8.18,8.31,8.38,8.42,8.44,8.45,164.85,166.13,166.96,167.69,168.34,168.94,169.55,170.13,171.27,33.83,33.37,33.17,32.95,32.75,32.55,32.34,32.15,31.76,N/A,N/A +2013,5,31,1,30,93370,92330,91310,28.96,0,5.22,7.3500000000000005,8.040000000000001,8.540000000000001,8.94,9.24,9.48,9.68,9.96,160.63,161.26,161.66,162.01,162.32,162.61,162.86,163.08,163.43,32.38,32.29,32.19,32.03,31.88,31.720000000000002,31.54,31.37,31.01,N/A,N/A +2013,5,31,2,30,93440,92390,91370,34.56,0,4.33,6.6000000000000005,7.42,8.11,8.68,9.17,9.61,10.01,10.700000000000001,148.45000000000002,149.38,150.09,150.81,151.44,152,152.5,152.96,153.85,30.84,30.84,30.77,30.650000000000002,30.51,30.36,30.2,30.03,29.66,N/A,N/A +2013,5,31,3,30,93480,92430,91410,43.58,0,5.67,8.08,8.97,9.700000000000001,10.33,10.89,11.4,11.88,12.71,161.55,162.08,162.43,162.76,163.05,163.32,163.6,163.85,164.37,29.42,29.330000000000002,29.23,29.09,28.95,28.810000000000002,28.66,28.5,28.18,N/A,N/A +2013,5,31,4,30,93520,92460,91440,47.660000000000004,0,5.0600000000000005,7.43,8.33,9.11,9.78,10.36,10.88,11.36,12.200000000000001,155.29,157.3,158.64000000000001,159.73,160.65,161.45000000000002,162.16,162.82,164,28.52,28.48,28.400000000000002,28.3,28.19,28.080000000000002,27.97,27.85,27.61,N/A,N/A +2013,5,31,5,30,93540,92480,91460,48.02,0,4.75,7.16,8.120000000000001,8.99,9.75,10.43,11.07,11.66,12.69,152.52,155.74,157.85,159.56,160.95000000000002,162.1,163.01,163.78,164.9,27.97,28.01,27.97,27.91,27.85,27.79,27.72,27.650000000000002,27.48,N/A,N/A +2013,5,31,6,30,93580,92510,91490,50.18,0,4.54,6.97,7.98,8.91,9.74,10.52,11.24,11.92,13.1,151.56,153.87,155.45000000000002,156.87,158.1,159.22,160.26,161.23,163.08,27.25,27.35,27.35,27.34,27.32,27.3,27.28,27.26,27.21,N/A,N/A +2013,5,31,7,30,93580,92520,91490,54.36,0,5.57,8.26,9.32,10.24,11.05,11.790000000000001,12.47,13.11,14.23,149.74,151.8,153.1,154.19,155.13,155.96,156.69,157.36,158.53,26.990000000000002,27.01,26.96,26.900000000000002,26.830000000000002,26.76,26.69,26.62,26.45,N/A,N/A +2013,5,31,8,30,93600,92530,91490,70.03,0,6.98,9.64,10.57,11.33,11.96,12.5,13,13.47,14.32,145.69,146.78,147.47,148.12,148.73,149.31,149.94,150.54,151.91,25.22,25.080000000000002,24.97,24.84,24.71,24.57,24.44,24.32,24.09,N/A,N/A +2013,5,31,9,30,93610,92540,91500,78.55,0,6.13,8.6,9.51,10.27,10.91,11.47,12,12.48,13.41,146.41,147.84,148.72,149.45000000000002,150.11,150.71,151.31,151.89000000000001,153.12,24.26,24.11,24.01,23.87,23.740000000000002,23.62,23.490000000000002,23.37,23.14,N/A,N/A +2013,5,31,10,30,93640,92560,91520,85.36,0,6.32,8.790000000000001,9.68,10.44,11.06,11.61,12.11,12.57,13.46,146.76,148.16,149.06,149.82,150.48,151.09,151.69,152.25,153.42000000000002,23.45,23.27,23.14,22.990000000000002,22.84,22.69,22.53,22.39,22.1,N/A,N/A +2013,5,31,11,30,93650,92570,91530,89.34,0,5.0200000000000005,7.390000000000001,8.36,9.22,9.96,10.6,11.19,11.73,12.8,147.92000000000002,150.22,151.64000000000001,152.71,153.58,154.32,155.01,155.64000000000001,156.9,22.740000000000002,22.59,22.47,22.32,22.18,22.04,21.89,21.75,21.47,N/A,N/A +2013,5,31,12,30,93710,92630,91590,89.02,0,4.92,6.8500000000000005,7.61,8.25,8.81,9.32,9.8,10.25,11.11,148.04,149.51,150.45000000000002,151.26,152.01,152.73,153.42000000000002,154.05,155.33,22.490000000000002,22.23,22.080000000000002,21.91,21.740000000000002,21.57,21.400000000000002,21.240000000000002,20.92,N/A,N/A +2013,5,31,13,30,93750,92670,91620,80.15,0,5.58,7.09,7.58,7.88,8.1,8.26,8.39,8.5,8.72,164.62,164.76,164.81,164.89000000000001,164.99,165.08,165.20000000000002,165.31,165.61,23.51,23,22.78,22.56,22.36,22.17,21.97,21.79,21.42,N/A,N/A +2013,5,31,14,30,93780,92710,91660,72.53,0,5.66,7.03,7.44,7.640000000000001,7.78,7.86,7.9,7.94,7.97,176.26,175.98,175.83,175.73,175.65,175.6,175.56,175.52,175.47,24.69,24.04,23.78,23.54,23.330000000000002,23.12,22.91,22.73,22.34,N/A,N/A +2013,5,31,15,30,93760,92690,91660,62.97,0,5.62,6.95,7.3500000000000005,7.54,7.67,7.75,7.79,7.82,7.82,174.13,174.27,174.35,174.44,174.53,174.62,174.72,174.81,175.04,26.57,25.830000000000002,25.55,25.29,25.07,24.85,24.64,24.45,24.05,N/A,N/A +2013,5,31,16,30,93730,92670,91640,51.85,0,5.78,7.1000000000000005,7.49,7.68,7.79,7.86,7.890000000000001,7.9,7.9,179.72,179.59,179.5,179.45000000000002,179.42000000000002,179.41,179.41,179.41,179.46,28.650000000000002,27.86,27.560000000000002,27.29,27.05,26.830000000000002,26.62,26.42,26.03,N/A,N/A +2013,5,31,17,30,93690,92630,91610,42.97,0,5.47,6.68,7.05,7.21,7.3100000000000005,7.36,7.38,7.390000000000001,7.38,179.91,179.91,179.93,180,180.08,180.18,180.3,180.42000000000002,180.69,30.64,29.830000000000002,29.52,29.240000000000002,29,28.77,28.560000000000002,28.36,27.96,N/A,N/A +2013,5,31,18,30,93640,92590,91570,35.38,0,5.62,6.8500000000000005,7.21,7.37,7.47,7.5200000000000005,7.55,7.57,7.5600000000000005,182.23,182.55,182.78,183.03,183.27,183.53,183.78,184.03,184.56,32.47,31.650000000000002,31.330000000000002,31.05,30.810000000000002,30.580000000000002,30.36,30.150000000000002,29.740000000000002,N/A,N/A +2013,5,31,19,30,93570,92530,91520,29.060000000000002,0,5.22,6.37,6.72,6.88,7,7.07,7.11,7.140000000000001,7.17,184.42000000000002,184.8,185.08,185.35,185.6,185.85,186.09,186.33,186.81,34.06,33.26,32.95,32.660000000000004,32.42,32.19,31.96,31.75,31.34,N/A,N/A +2013,5,31,20,30,93500,92470,91460,25.47,0,5.51,6.73,7.1000000000000005,7.28,7.41,7.49,7.54,7.58,7.62,178.14000000000001,178.9,179.42000000000002,179.91,180.32,180.73,181.1,181.46,182.15,35.25,34.45,34.14,33.86,33.61,33.38,33.15,32.94,32.52,N/A,N/A +2013,5,31,21,30,93450,92420,91410,22.72,0,5.41,6.61,6.99,7.18,7.3100000000000005,7.4,7.46,7.5,7.5600000000000005,181.42000000000002,182.27,182.84,183.36,183.81,184.24,184.64000000000001,185.02,185.74,36.04,35.27,34.980000000000004,34.7,34.46,34.230000000000004,34.01,33.79,33.38,N/A,N/A +2013,5,31,22,30,93390,92360,91350,21.88,0,5.44,6.69,7.07,7.2700000000000005,7.42,7.51,7.58,7.63,7.7,186.98,187.75,188.24,188.66,189.01,189.35,189.66,189.96,190.5,36.38,35.67,35.4,35.13,34.9,34.67,34.46,34.24,33.83,N/A,N/A +2013,5,31,23,30,93360,92320,91320,24.42,0,6.2700000000000005,7.8,8.22,8.43,8.57,8.66,8.72,8.76,8.81,175.06,175.6,175.91,176.21,176.47,176.71,176.96,177.19,177.67000000000002,35.96,35.33,35.1,34.85,34.63,34.42,34.21,34,33.6,N/A,N/A +2013,6,1,0,30,93310,92270,91270,27.77,0,6.43,8.120000000000001,8.57,8.82,8.99,9.11,9.200000000000001,9.26,9.35,173.33,173.4,173.47,173.55,173.61,173.68,173.75,173.82,173.96,35.33,34.87,34.67,34.44,34.24,34.03,33.83,33.63,33.230000000000004,N/A,N/A +2013,6,1,1,30,93300,92270,91260,30.55,0,6.01,8.23,8.92,9.43,9.83,10.15,10.42,10.65,11.01,162.05,162.20000000000002,162.31,162.41,162.49,162.56,162.61,162.65,162.68,34.21,34.08,33.97,33.8,33.65,33.47,33.3,33.12,32.76,N/A,N/A +2013,6,1,2,30,93310,92270,91260,33.02,0,7.0200000000000005,9.700000000000001,10.58,11.31,11.92,12.46,12.94,13.38,14.13,155.21,155.44,155.61,155.83,156.05,156.3,156.57,156.84,157.4,33.160000000000004,33.06,32.980000000000004,32.85,32.730000000000004,32.59,32.45,32.3,31.990000000000002,N/A,N/A +2013,6,1,3,30,93310,92270,91260,36.34,0,6.8,9.41,10.290000000000001,11.02,11.63,12.16,12.67,13.15,14.06,156.85,156.99,157.14000000000001,157.32,157.54,157.8,158.15,158.52,159.45000000000002,32.21,32.14,32.07,31.94,31.830000000000002,31.71,31.580000000000002,31.45,31.19,N/A,N/A +2013,6,1,4,30,93310,92260,91250,43.93,0,7.21,10.06,11.05,11.9,12.64,13.32,13.96,14.540000000000001,15.65,156.3,157.06,157.51,157.94,158.34,158.75,159.16,159.54,160.33,31.03,30.95,30.87,30.76,30.66,30.55,30.43,30.32,30.1,N/A,N/A +2013,6,1,5,30,93320,92270,91260,44.910000000000004,0,6.33,9.16,10.19,11.120000000000001,11.92,12.64,13.32,13.97,15.16,158.01,159.14000000000001,159.86,160.47,161.03,161.54,162.05,162.54,163.5,30.27,30.23,30.16,30.07,29.98,29.88,29.77,29.67,29.45,N/A,N/A +2013,6,1,6,30,93380,92330,91310,45.63,0,5.97,8.98,10.15,11.23,12.15,12.98,13.75,14.450000000000001,15.73,159.41,161.14000000000001,162.18,163,163.70000000000002,164.32,164.9,165.44,166.44,29.66,29.63,29.57,29.48,29.38,29.28,29.17,29.07,28.85,N/A,N/A +2013,6,1,7,30,93430,92370,91350,47.01,0,6.17,9.040000000000001,10.14,11.15,12.030000000000001,12.84,13.59,14.3,15.64,148.83,151.88,153.74,155.23,156.47,157.55,158.54,159.44,161.1,28.61,28.560000000000002,28.48,28.38,28.28,28.17,28.05,27.93,27.68,N/A,N/A +2013,6,1,8,30,93460,92390,91370,54.28,0,7.67,10.59,11.63,12.540000000000001,13.33,14.01,14.68,15.290000000000001,16.47,146.44,148.59,149.94,151.1,152.1,153.02,153.86,154.65,156.1,27.150000000000002,27.01,26.900000000000002,26.75,26.62,26.47,26.32,26.17,25.86,N/A,N/A +2013,6,1,9,30,93470,92410,91370,63.08,0,7.46,10.33,11.35,12.200000000000001,12.94,13.59,14.200000000000001,14.77,15.860000000000001,147.72,149.59,150.73,151.71,152.55,153.33,154.08,154.78,156.16,25.82,25.66,25.54,25.38,25.240000000000002,25.09,24.94,24.8,24.52,N/A,N/A +2013,6,1,10,30,93490,92420,91380,71.03,0,6.58,9.200000000000001,10.18,11.01,11.71,12.34,12.91,13.43,14.44,148.19,150.21,151.47,152.5,153.39000000000001,154.17000000000002,154.9,155.56,156.82,24.77,24.61,24.48,24.32,24.18,24.02,23.87,23.72,23.42,N/A,N/A +2013,6,1,11,30,93520,92440,91400,76.54,0,6.0200000000000005,8.53,9.48,10.32,11.03,11.67,12.280000000000001,12.84,13.91,153.9,155.57,156.61,157.49,158.23,158.9,159.49,160.04,161.04,23.87,23.71,23.59,23.44,23.29,23.14,23,22.86,22.57,N/A,N/A +2013,6,1,12,30,93600,92530,91480,78.84,0,4.65,6.5,7.21,7.82,8.35,8.83,9.290000000000001,9.72,10.57,161.34,162.33,162.96,163.5,163.96,164.37,164.75,165.1,165.77,23.44,23.18,23.03,22.86,22.68,22.52,22.34,22.17,21.85,N/A,N/A +2013,6,1,13,30,93620,92550,91500,75.09,0,6.49,8.14,8.620000000000001,8.89,9.08,9.19,9.27,9.33,9.46,166.07,166.27,166.42000000000002,166.56,166.71,166.85,167.03,167.20000000000002,167.65,24.13,23.63,23.42,23.2,23,22.8,22.61,22.43,22.07,N/A,N/A +2013,6,1,14,30,93680,92610,91570,68.4,0,5.9,7.29,7.72,7.92,8.05,8.120000000000001,8.15,8.16,8.14,169.6,169.72,169.77,169.84,169.93,170.02,170.13,170.23,170.51,25.57,24.91,24.66,24.42,24.2,24,23.79,23.6,23.22,N/A,N/A +2013,6,1,15,30,93720,92650,91620,59.93,0,4.42,5.43,5.73,5.88,5.97,6.03,6.0600000000000005,6.08,6.09,189.14000000000001,189.01,188.97,189.02,189.1,189.19,189.32,189.44,189.74,27.37,26.66,26.38,26.13,25.900000000000002,25.69,25.48,25.29,24.900000000000002,N/A,N/A +2013,6,1,16,30,93730,92670,91640,50.980000000000004,0,3.91,4.75,5,5.11,5.18,5.23,5.26,5.28,5.28,188.04,188.56,188.85,189.19,189.51,189.84,190.20000000000002,190.53,191.24,29.150000000000002,28.44,28.14,27.88,27.650000000000002,27.43,27.22,27.01,26.62,N/A,N/A +2013,6,1,17,30,93720,92670,91640,41.97,0,2.19,2.61,2.73,2.79,2.83,2.85,2.87,2.88,2.89,199.71,199.6,199.62,199.78,199.97,200.18,200.41,200.65,201.16,31.01,30.38,30.080000000000002,29.810000000000002,29.580000000000002,29.36,29.14,28.94,28.54,N/A,N/A +2013,6,1,18,30,93710,92660,91640,35.63,0,1.79,2.08,2.14,2.15,2.16,2.16,2.16,2.14,2.11,153.9,154.77,155.42000000000002,156.13,156.76,157.38,157.99,158.58,159.74,32.7,32.08,31.78,31.5,31.25,31.03,30.810000000000002,30.6,30.18,N/A,N/A +2013,6,1,19,30,93670,92630,91610,30.060000000000002,0,2.22,2.59,2.66,2.69,2.7,2.7,2.69,2.69,2.66,134.67000000000002,134.71,134.72,134.7,134.69,134.68,134.65,134.64000000000001,134.6,33.93,33.29,32.980000000000004,32.71,32.46,32.24,32.01,31.8,31.39,N/A,N/A +2013,6,1,20,30,93610,92570,91560,20.88,0,2.2800000000000002,2.65,2.72,2.75,2.77,2.77,2.77,2.7600000000000002,2.75,108.45,107.97,107.72,107.46000000000001,107.23,107,106.79,106.59,106.15,35.39,34.74,34.44,34.160000000000004,33.92,33.69,33.46,33.25,32.83,N/A,N/A +2013,6,1,21,30,93570,92540,91530,25,0,1.53,1.9100000000000001,2.05,2.16,2.24,2.32,2.37,2.43,2.52,114.14,114.5,114.88,115.17,115.4,115.59,115.75,115.88,116.13,35.71,35.09,34.81,34.54,34.300000000000004,34.08,33.86,33.65,33.230000000000004,N/A,N/A +2013,6,1,22,30,93560,92530,91520,23.68,0,3.1,3.72,3.91,4,4.0600000000000005,4.1,4.13,4.15,4.19,115.68,115.08,114.74000000000001,114.33,113.98,113.65,113.34,113.06,112.52,36.19,35.53,35.26,34.99,34.76,34.54,34.32,34.11,33.7,N/A,N/A +2013,6,1,23,30,93520,92480,91480,24.7,0,4.54,5.55,5.8100000000000005,5.92,6,6.05,6.07,6.09,6.1000000000000005,125.21000000000001,124.99000000000001,124.76,124.45,124.18,123.91,123.65,123.41,122.94,36,35.36,35.12,34.87,34.65,34.44,34.22,34.02,33.61,N/A,N/A +2013,6,2,0,30,93520,92480,91480,24.86,0,3.48,4.25,4.44,4.5200000000000005,4.5600000000000005,4.59,4.6000000000000005,4.61,4.6000000000000005,140.82,140.48,140.09,139.68,139.33,138.98,138.64000000000001,138.32,137.67000000000002,35.56,35.08,34.88,34.660000000000004,34.46,34.26,34.06,33.86,33.47,N/A,N/A +2013,6,2,1,30,93610,92560,91540,32.51,0,9.07,11.43,11.96,12.27,12.48,12.59,12.68,12.74,12.68,63.2,62.57,61.75,60.86,60.01,59.14,58.33,57.58,55.47,30.5,30.080000000000002,29.900000000000002,29.71,29.54,29.38,29.21,29.03,28.69,N/A,N/A +2013,6,2,2,30,93690,92620,91590,50.96,0,2.67,3.02,3,2.97,2.7800000000000002,2.56,2.17,1.84,1.04,155.58,164.29,171,179.63,183.42000000000002,184.98,184.07,183.52,191.49,25.68,25.88,26.36,27.14,27.68,28.080000000000002,28.03,27.93,27.66,N/A,N/A +2013,6,2,3,30,93850,92790,91760,38.62,0,5.73,7.66,8.24,8.67,8.97,9.17,9.25,9.290000000000001,9.120000000000001,41.12,41.230000000000004,40.63,39.76,38.63,37.35,35.67,34.01,30.44,28.11,28.02,27.95,27.87,27.8,27.72,27.63,27.55,27.400000000000002,N/A,N/A +2013,6,2,4,30,94000,92920,91880,48.78,0,3.89,5.33,5.8500000000000005,6.29,6.7,7.07,7.42,7.74,8.370000000000001,89.32000000000001,88.55,87.94,87.22,86.45,85.67,84.8,83.95,81.92,25.7,25.37,25.17,24.95,24.740000000000002,24.53,24.32,24.11,23.7,N/A,N/A +2013,6,2,5,30,94080,93000,91960,51.53,0,2.22,3.89,4.72,5.53,6.24,6.9,7.49,8.03,9.01,65.37,60.9,58.43,57.34,56.68,56.32,56.21,56.17,56.36,25.55,25.36,25.240000000000002,25.080000000000002,24.93,24.78,24.62,24.47,24.16,N/A,N/A +2013,6,2,6,30,94120,93040,92000,51.45,0,6.7700000000000005,9.01,9.8,10.450000000000001,10.99,11.44,11.870000000000001,12.26,13.030000000000001,60.72,60.76,60.79,60.78,60.78,60.79,60.86,60.94,61.31,25.490000000000002,25.19,25.02,24.82,24.63,24.44,24.25,24.07,23.69,N/A,N/A +2013,6,2,7,30,94150,93070,92020,56.21,0,5.53,7.73,8.69,9.66,10.290000000000001,10.72,11.19,11.65,12.6,70.89,70.26,70.14,70.12,69.99,69.8,69.78,69.81,70.09,24.68,24.36,24.19,24,23.81,23.63,23.44,23.27,22.92,N/A,N/A +2013,6,2,8,30,94210,93110,92050,65.96000000000001,0,9,12.31,13.280000000000001,14.11,14.85,15.51,16.16,16.77,17.77,75.61,74.5,74.08,73.78,73.55,73.36,73.16,72.92,72.28,21.29,20.94,20.75,20.580000000000002,20.39,20.23,20.05,19.89,19.580000000000002,N/A,N/A +2013,6,2,9,30,94270,93170,92110,76.38,0,2.45,2.0100000000000002,1.62,1.32,1.37,1.59,1.8800000000000001,2.19,2.83,142.22,127.65,110.56,85.35000000000001,65.66,45.63,39.26,35.480000000000004,38.99,19.96,19.72,19.6,19.46,19.32,19.19,19.02,18.87,18.61,N/A,N/A +2013,6,2,10,30,94380,93280,92210,73.07000000000001,1.8,1.1400000000000001,1.53,1.76,2.06,2.5,2.99,3.31,3.6,4.18,101.68,98.51,95.86,93.82000000000001,91.52,89.09,87.16,85.4,82.5,20.37,20.080000000000002,19.95,19.830000000000002,19.76,19.7,19.64,19.59,19.44,N/A,N/A +2013,6,2,11,30,94280,93180,92120,75.79,0,0.99,1.61,1.79,2.18,2.5,2.79,3.02,3.23,3.65,240.56,199.70000000000002,178.48,162.73,152.25,144.70000000000002,138.42000000000002,132.69,122.99000000000001,20.86,20.93,20.86,20.77,20.67,20.580000000000002,20.47,20.37,20.14,N/A,N/A +2013,6,2,12,30,94380,93290,92230,71.11,0,1.75,1.31,0.68,0.2,0.26,0.71,1.2,1.75,2.69,266.17,267.72,278.39,289.46,318.96,58.550000000000004,88.19,90.19,91.38,20.98,21.09,21.150000000000002,21.150000000000002,21.1,21.02,20.89,20.76,20.41,N/A,N/A +2013,6,2,13,30,94430,93340,92280,70.9,0,2.62,3.49,3.81,4.04,4.22,4.37,4.5,4.62,4.84,90.26,91.91,92.56,93.06,93.45,93.78,94.06,94.31,94.69,22.56,22.1,21.900000000000002,21.68,21.48,21.29,21.080000000000002,20.900000000000002,20.51,N/A,N/A +2013,6,2,14,30,94430,93350,92290,63.300000000000004,0,5.41,6.86,7.3,7.5600000000000005,7.75,7.890000000000001,8,8.09,8.22,106.15,106.65,106.85000000000001,106.95,107.02,107.07000000000001,107.10000000000001,107.13,107.17,24.13,23.5,23.25,23.02,22.8,22.59,22.38,22.19,21.79,N/A,N/A +2013,6,2,15,30,94460,93380,92330,55.800000000000004,0,6.16,7.71,8.18,8.45,8.63,8.77,8.870000000000001,8.950000000000001,9.06,115.34,115.88,116.15,116.31,116.44,116.53,116.61,116.68,116.81,25.330000000000002,24.6,24.330000000000002,24.07,23.84,23.63,23.41,23.21,22.8,N/A,N/A +2013,6,2,16,30,94440,93360,92310,50.88,0,5.8100000000000005,7.24,7.65,7.87,8.03,8.14,8.21,8.27,8.36,126.15,126.29,126.33,126.32000000000001,126.3,126.28,126.25,126.22,126.17,26.43,25.650000000000002,25.35,25.09,24.85,24.63,24.400000000000002,24.2,23.78,N/A,N/A +2013,6,2,17,30,94390,93320,92270,45.19,0,5.1000000000000005,6.33,6.7,6.890000000000001,7.03,7.140000000000001,7.21,7.28,7.36,122.92,123.32000000000001,123.52,123.62,123.69,123.75,123.79,123.83,123.89,27.64,26.85,26.54,26.27,26.03,25.8,25.580000000000002,25.37,24.95,N/A,N/A +2013,6,2,18,30,94340,93270,92230,41.65,0,4.8100000000000005,5.94,6.2700000000000005,6.45,6.58,6.67,6.73,6.78,6.8500000000000005,129.69,130.15,130.36,130.48,130.57,130.63,130.68,130.72,130.8,28.79,28.01,27.69,27.42,27.17,26.94,26.71,26.51,26.09,N/A,N/A +2013,6,2,19,30,94280,93220,92180,38.160000000000004,0,5.01,6.15,6.48,6.65,6.76,6.84,6.9,6.94,6.99,130.22,130.83,131.19,131.41,131.6,131.77,131.92000000000002,132.05,132.3,29.84,29.04,28.72,28.44,28.2,27.97,27.740000000000002,27.53,27.11,N/A,N/A +2013,6,2,20,30,94190,93120,92090,33.45,0,4.99,6.17,6.5200000000000005,6.69,6.82,6.91,6.97,7.0200000000000005,7.08,132.97,133.32,133.52,133.64000000000001,133.75,133.83,133.9,133.97,134.09,30.84,30.05,29.740000000000002,29.47,29.22,28.990000000000002,28.77,28.560000000000002,28.14,N/A,N/A +2013,6,2,21,30,94090,93030,92010,33.72,0,5.11,6.33,6.7,6.9,7.04,7.140000000000001,7.22,7.28,7.37,132.24,132.81,133.11,133.32,133.48,133.61,133.72,133.82,133.99,31.39,30.62,30.32,30.05,29.810000000000002,29.580000000000002,29.36,29.150000000000002,28.73,N/A,N/A +2013,6,2,22,30,94000,92940,91920,30.71,0,5.34,6.65,7.05,7.28,7.45,7.57,7.66,7.74,7.8500000000000005,132.24,132.84,133.17000000000002,133.42000000000002,133.63,133.8,133.96,134.1,134.37,31.900000000000002,31.17,30.89,30.63,30.39,30.17,29.95,29.740000000000002,29.32,N/A,N/A +2013,6,2,23,30,93920,92870,91850,30.36,0,5.71,7.2,7.67,7.930000000000001,8.120000000000001,8.26,8.370000000000001,8.46,8.59,141.55,141.53,141.5,141.43,141.37,141.32,141.26,141.21,141.11,31.98,31.34,31.1,30.85,30.63,30.41,30.2,29.990000000000002,29.59,N/A,N/A +2013,6,3,0,30,93860,92800,91780,32.93,0,6.04,7.68,8.18,8.47,8.69,8.86,8.98,9.09,9.24,133.78,134.91,135.45,135.88,136.24,136.55,136.84,137.09,137.53,31.57,31.09,30.88,30.650000000000002,30.44,30.240000000000002,30.03,29.830000000000002,29.43,N/A,N/A +2013,6,3,1,30,93880,92820,91800,39.29,0,5.88,7.84,8.48,8.9,9.23,9.49,9.700000000000001,9.86,10.1,154.70000000000002,154.51,154.32,154.13,153.98,153.86,153.75,153.65,153.46,30.240000000000002,30.02,29.87,29.68,29.5,29.310000000000002,29.12,28.94,28.560000000000002,N/A,N/A +2013,6,3,2,30,93900,92840,91810,42.410000000000004,0,5.64,7.75,8.41,8.91,9.32,9.67,9.97,10.25,10.700000000000001,165.74,165.5,165.37,165.24,165.14000000000001,165.05,164.97,164.89000000000001,164.71,29.12,28.95,28.82,28.66,28.490000000000002,28.32,28.14,27.97,27.6,N/A,N/A +2013,6,3,3,30,93970,92910,91880,42.51,0,5.34,7.54,8.31,8.96,9.52,10.02,10.47,10.89,11.6,168.22,167.96,167.76,167.56,167.36,167.15,166.9,166.65,166.06,28.47,28.34,28.23,28.09,27.94,27.79,27.62,27.46,27.11,N/A,N/A +2013,6,3,4,30,94000,92930,91900,45.94,0,4.65,6.82,7.640000000000001,8.34,8.94,9.48,9.97,10.42,11.200000000000001,164.72,164.44,164.27,164.09,163.93,163.76,163.59,163.42000000000002,163.16,27.78,27.73,27.66,27.55,27.43,27.32,27.18,27.060000000000002,26.78,N/A,N/A +2013,6,3,5,30,94070,93000,91970,45.67,0,4.68,6.7700000000000005,7.54,8.2,8.77,9.3,9.77,10.200000000000001,10.98,169.45000000000002,169.02,168.55,168.12,167.74,167.4,167.15,166.94,166.85,27.490000000000002,27.41,27.330000000000002,27.22,27.11,27,26.87,26.75,26.490000000000002,N/A,N/A +2013,6,3,6,30,94070,93000,91960,47.75,0,5.45,7.72,8.540000000000001,9.23,9.85,10.41,10.94,11.43,12.26,167.28,168.05,168.63,169.13,169.5,169.77,169.99,170.18,170.61,26.900000000000002,26.82,26.740000000000002,26.64,26.54,26.43,26.310000000000002,26.19,25.92,N/A,N/A +2013,6,3,7,30,94030,92960,91920,51.69,0,5.3,7.69,8.56,9.32,10,10.61,11.19,11.72,12.67,149.75,151.13,152.05,153.01,153.98,154.94,155.95000000000002,156.9,158.83,26.23,26.16,26.080000000000002,25.990000000000002,25.89,25.78,25.68,25.580000000000002,25.37,N/A,N/A +2013,6,3,8,30,93990,92910,91870,55.36,0,6.5,9.02,9.88,10.59,11.200000000000001,11.75,12.24,12.69,13.5,140.65,141.87,142.70000000000002,143.51,144.31,145.13,146.01,146.84,148.68,25.650000000000002,25.52,25.43,25.310000000000002,25.19,25.080000000000002,24.96,24.85,24.63,N/A,N/A +2013,6,3,9,30,94020,92950,91900,53.57,0,5.45,7.640000000000001,8.42,9.08,9.63,10.120000000000001,10.57,10.99,11.700000000000001,156.98,158.42000000000002,159.31,160.15,160.92000000000002,161.65,162.39000000000001,163.09,164.51,25.42,25.330000000000002,25.240000000000002,25.13,25.01,24.900000000000002,24.76,24.63,24.34,N/A,N/A +2013,6,3,10,30,94070,92990,91950,54.480000000000004,0,4.95,6.83,7.49,8.040000000000001,8.51,8.91,9.200000000000001,9.44,9.34,154.52,156.75,158.27,159.83,161.32,162.76,164.48,166.14000000000001,171.51,24.63,24.490000000000002,24.39,24.29,24.19,24.1,24.03,23.98,24.05,N/A,N/A +2013,6,3,11,30,94060,92980,91930,53.99,0,5.14,7.140000000000001,7.8100000000000005,8.370000000000001,8.84,9.24,9.6,9.92,10.35,160.42000000000002,162.33,163.66,165.14000000000001,166.68,168.24,169.95000000000002,171.55,174.94,24.240000000000002,24.12,24.04,23.94,23.85,23.76,23.67,23.6,23.43,N/A,N/A +2013,6,3,12,30,94080,93000,91950,52.53,0,6.390000000000001,8.55,9.200000000000001,9.68,10.06,10.36,10.620000000000001,10.85,11.200000000000001,158.74,159.05,159.26,159.41,159.53,159.64000000000001,159.81,159.98,160.65,24.330000000000002,24.150000000000002,24.03,23.88,23.73,23.580000000000002,23.43,23.28,22.97,N/A,N/A +2013,6,3,13,30,94120,93040,91990,59.74,0,5.42,6.84,7.2700000000000005,7.51,7.68,7.79,7.87,7.94,8.040000000000001,153.89000000000001,154.14000000000001,154.31,154.46,154.6,154.73,154.88,155.02,155.35,24.07,23.6,23.39,23.17,22.97,22.77,22.57,22.38,21.990000000000002,N/A,N/A +2013,6,3,14,30,94120,93040,91990,56.51,0,5.24,6.57,6.99,7.21,7.37,7.48,7.5600000000000005,7.62,7.69,157.59,157.81,157.92000000000002,158.03,158.13,158.22,158.33,158.43,158.66,25.07,24.42,24.17,23.93,23.71,23.51,23.3,23.1,22.71,N/A,N/A +2013,6,3,15,30,94100,93030,91980,50.88,0,5.64,7.04,7.46,7.69,7.84,7.95,8.02,8.08,8.15,159.97,160.13,160.20000000000002,160.24,160.28,160.31,160.35,160.38,160.46,26.490000000000002,25.75,25.47,25.21,24.98,24.76,24.55,24.35,23.94,N/A,N/A +2013,6,3,16,30,94070,93000,91960,44.5,0,6.22,7.71,8.15,8.38,8.540000000000001,8.65,8.72,8.78,8.84,166.66,166.9,167.03,167.13,167.23,167.32,167.4,167.49,167.66,27.900000000000002,27.1,26.8,26.52,26.28,26.060000000000002,25.84,25.63,25.22,N/A,N/A +2013,6,3,17,30,94010,92940,91910,43.34,0,6.4,7.94,8.41,8.67,8.85,8.97,9.05,9.120000000000001,9.200000000000001,167.65,167.8,167.9,167.98,168.05,168.12,168.18,168.24,168.36,29.3,28.45,28.14,27.85,27.6,27.36,27.14,26.92,26.5,N/A,N/A +2013,6,3,18,30,93930,92870,91840,41.39,0,6.8500000000000005,8.48,8.96,9.21,9.38,9.49,9.57,9.63,9.69,173.62,173.53,173.46,173.4,173.34,173.29,173.25,173.22,173.15,30.37,29.490000000000002,29.17,28.88,28.62,28.39,28.16,27.94,27.52,N/A,N/A +2013,6,3,19,30,93880,92830,91800,38.19,0,6.1000000000000005,7.53,7.96,8.18,8.34,8.44,8.51,8.57,8.63,174.01,173.9,173.84,173.79,173.75,173.72,173.69,173.68,173.64000000000001,31.55,30.7,30.38,30.09,29.830000000000002,29.6,29.37,29.150000000000002,28.73,N/A,N/A +2013,6,3,20,30,93800,92750,91730,36.18,0,6.18,7.63,8.05,8.28,8.43,8.52,8.59,8.64,8.700000000000001,170.39000000000001,170.5,170.6,170.67000000000002,170.74,170.79,170.85,170.9,171.01,32.49,31.64,31.330000000000002,31.04,30.79,30.55,30.330000000000002,30.11,29.69,N/A,N/A +2013,6,3,21,30,93740,92690,91670,34.86,0,6.24,7.72,8.14,8.35,8.49,8.59,8.66,8.700000000000001,8.76,162.78,163.22,163.5,163.73,163.93,164.11,164.29,164.45000000000002,164.78,33.09,32.27,31.970000000000002,31.69,31.45,31.220000000000002,31,30.79,30.37,N/A,N/A +2013,6,3,22,30,93680,92640,91620,33.72,0,6.36,7.9,8.32,8.53,8.68,8.77,8.84,8.89,8.94,162.83,163.28,163.55,163.77,163.95000000000002,164.11,164.26,164.41,164.69,33.4,32.64,32.37,32.1,31.87,31.650000000000002,31.43,31.220000000000002,30.810000000000002,N/A,N/A +2013,6,3,23,30,93640,92600,91590,33.47,0,6.63,8.26,8.73,8.96,9.120000000000001,9.22,9.3,9.35,9.41,163.04,163.38,163.57,163.72,163.85,163.96,164.08,164.18,164.4,33.47,32.82,32.57,32.32,32.1,31.88,31.67,31.46,31.060000000000002,N/A,N/A +2013,6,4,0,30,93620,92570,91560,35.09,0,7.36,9.34,9.89,10.18,10.38,10.52,10.620000000000001,10.69,10.790000000000001,157.29,157.55,157.75,157.91,158.05,158.20000000000002,158.34,158.48,158.76,32.99,32.51,32.3,32.08,31.87,31.67,31.470000000000002,31.27,30.88,N/A,N/A +2013,6,4,1,30,93600,92550,91540,39.730000000000004,0,6.68,8.97,9.620000000000001,10.08,10.44,10.72,10.950000000000001,11.14,11.44,151.13,151.49,151.74,152.03,152.33,152.65,153.03,153.4,154.23,31.970000000000002,31.740000000000002,31.6,31.42,31.25,31.07,30.88,30.71,30.34,N/A,N/A +2013,6,4,2,30,93630,92580,91560,40.6,0,6.68,9.25,10.07,10.75,11.31,11.8,12.25,12.67,13.41,157.26,157.57,157.78,157.98,158.19,158.38,158.6,158.8,159.25,31.17,31.02,30.900000000000002,30.76,30.61,30.45,30.29,30.13,29.8,N/A,N/A +2013,6,4,3,30,93670,92620,91600,41.28,0,5.97,8.28,9.02,9.6,10.1,10.52,10.91,11.26,11.92,153.27,153.52,153.8,154.13,154.49,154.88,155.34,155.8,156.86,30.38,30.25,30.14,30,29.86,29.71,29.55,29.39,29.060000000000002,N/A,N/A +2013,6,4,4,30,93670,92610,91590,42.19,0,7.3,10.08,11.01,11.77,12.42,13,13.540000000000001,14.040000000000001,14.94,157.43,158.06,158.46,158.85,159.22,159.59,159.97,160.33,161.07,29.54,29.45,29.35,29.23,29.11,28.98,28.85,28.73,28.45,N/A,N/A +2013,6,4,5,30,93670,92610,91580,37.57,0,7.32,10.18,11.17,12.01,12.74,13.41,14.05,14.65,15.81,160.3,160.98,161.42000000000002,161.83,162.21,162.56,162.91,163.24,163.91,28.95,28.89,28.810000000000002,28.71,28.61,28.51,28.400000000000002,28.29,28.07,N/A,N/A +2013,6,4,6,30,93660,92590,91570,36.26,0,7.63,10.6,11.6,12.43,13.14,13.77,14.36,14.9,15.88,160.16,161.33,162.06,162.77,163.46,164.15,164.87,165.56,167,28.23,28.19,28.11,28.02,27.93,27.830000000000002,27.73,27.64,27.43,N/A,N/A +2013,6,4,7,30,93710,92640,91610,37.76,0,6.78,9.69,10.78,11.74,12.59,13.36,14.11,14.81,16.14,157.24,159,160.15,161.21,162.16,163.05,163.9,164.70000000000002,166.15,27.44,27.44,27.400000000000002,27.34,27.27,27.21,27.150000000000002,27.09,26.97,N/A,N/A +2013,6,4,8,30,93710,92640,91610,37.09,0,6.97,10.05,11.21,12.25,13.17,13.99,14.76,15.47,16.8,157.65,159.64000000000001,160.87,161.94,162.87,163.68,164.42000000000002,165.1,166.3,26.89,26.91,26.87,26.82,26.77,26.72,26.67,26.62,26.52,N/A,N/A +2013,6,4,9,30,93700,92630,91590,37.89,0,7.01,10.040000000000001,11.14,12.13,12.98,13.75,14.46,15.11,16.34,156.69,158.66,159.86,160.91,161.83,162.67000000000002,163.44,164.16,165.59,26.29,26.310000000000002,26.28,26.23,26.19,26.14,26.09,26.05,25.97,N/A,N/A +2013,6,4,10,30,93700,92630,91590,40.4,0,5.5,8.2,9.32,10.370000000000001,11.32,12.19,13.030000000000001,13.82,15.370000000000001,151.65,154.64000000000001,156.59,158.20000000000002,159.55,160.72,161.75,162.69,164.43,25.27,25.34,25.330000000000002,25.3,25.26,25.23,25.19,25.150000000000002,25.05,N/A,N/A +2013,6,4,11,30,93750,92670,91630,46.95,0,4.9,7.5200000000000005,8.6,9.6,10.47,11.26,12,12.69,13.97,158.46,160.39000000000001,161.55,162.45000000000002,163.16,163.73,164.25,164.72,165.74,24.51,24.57,24.54,24.490000000000002,24.44,24.38,24.310000000000002,24.25,24.11,N/A,N/A +2013,6,4,12,30,93760,92680,91640,54.96,0,6.84,9.31,10.18,10.93,11.6,12.21,12.83,13.43,14.65,158.74,159.89000000000001,160.67000000000002,161.41,162.1,162.74,163.38,163.99,165.26,24.2,24.03,23.92,23.8,23.68,23.57,23.46,23.37,23.2,N/A,N/A +2013,6,4,13,30,93790,92710,91670,56.02,0,7.46,9.36,9.85,10.15,10.370000000000001,10.53,10.71,10.86,11.38,172.04,171.88,171.84,171.83,171.84,171.86,171.92000000000002,171.97,172.23,25.060000000000002,24.59,24.400000000000002,24.2,24.01,23.84,23.67,23.51,23.22,N/A,N/A +2013,6,4,14,30,93790,92720,91680,49.14,0,6.58,8.13,8.55,8.76,8.870000000000001,8.93,8.950000000000001,8.950000000000001,8.92,173.11,173.12,173.11,173.14000000000001,173.19,173.25,173.34,173.43,173.68,26.68,26.04,25.8,25.57,25.36,25.16,24.97,24.79,24.43,N/A,N/A +2013,6,4,15,30,93800,92740,91710,41.58,0,5.55,6.82,7.19,7.36,7.46,7.5200000000000005,7.54,7.55,7.53,172.44,172.67000000000002,172.81,172.97,173.12,173.28,173.46,173.62,174.02,28.68,27.97,27.69,27.44,27.22,27.01,26.810000000000002,26.62,26.240000000000002,N/A,N/A +2013,6,4,16,30,93790,92730,91700,37.26,0,6,7.4,7.82,8.02,8.15,8.22,8.27,8.290000000000001,8.3,157.82,158.28,158.5,158.70000000000002,158.88,159.06,159.24,159.41,159.78,30.48,29.69,29.39,29.13,28.89,28.67,28.46,28.26,27.86,N/A,N/A +2013,6,4,17,30,93750,92700,91680,33.17,0,5.94,7.29,7.7,7.9,8.03,8.11,8.16,8.19,8.22,167.85,168.44,168.78,169.11,169.39000000000001,169.67000000000002,169.94,170.21,170.74,32.160000000000004,31.34,31.03,30.75,30.51,30.28,30.060000000000002,29.85,29.44,N/A,N/A +2013,6,4,18,30,93680,92640,91620,30.02,0,5.99,7.34,7.73,7.91,8.040000000000001,8.11,8.15,8.17,8.18,178.33,178.28,178.29,178.32,178.36,178.41,178.47,178.54,178.70000000000002,33.52,32.68,32.36,32.07,31.830000000000002,31.59,31.37,31.150000000000002,30.740000000000002,N/A,N/A +2013,6,4,19,30,93650,92610,91590,27.650000000000002,0,6.640000000000001,8.15,8.58,8.76,8.88,8.950000000000001,8.99,9.02,9.02,175.42000000000002,175.87,176.22,176.51,176.76,177,177.21,177.42000000000002,177.82,34.68,33.82,33.5,33.21,32.97,32.730000000000004,32.51,32.3,31.88,N/A,N/A +2013,6,4,20,30,93610,92570,91560,24.85,0,6.12,7.5200000000000005,7.930000000000001,8.120000000000001,8.25,8.33,8.4,8.44,8.48,183.26,183.45000000000002,183.63,183.82,183.99,184.17000000000002,184.34,184.5,184.85,35.64,34.81,34.51,34.22,33.980000000000004,33.75,33.52,33.31,32.89,N/A,N/A +2013,6,4,21,30,93540,92510,91500,22.97,0,6.62,8.18,8.620000000000001,8.84,8.99,9.08,9.15,9.200000000000001,9.26,182.57,183.16,183.56,183.93,184.25,184.55,184.83,185.1,185.62,36.33,35.52,35.230000000000004,34.96,34.72,34.49,34.26,34.05,33.64,N/A,N/A +2013,6,4,22,30,93500,92470,91460,22.12,0,6.7700000000000005,8.39,8.83,9.05,9.200000000000001,9.290000000000001,9.35,9.4,9.450000000000001,174.74,175.29,175.67000000000002,176,176.29,176.58,176.85,177.11,177.61,36.62,35.88,35.6,35.34,35.11,34.89,34.67,34.46,34.05,N/A,N/A +2013,6,4,23,30,93460,92430,91420,22.73,0,7.1000000000000005,8.88,9.370000000000001,9.620000000000001,9.8,9.91,9.99,10.05,10.120000000000001,169.21,169.33,169.42000000000002,169.49,169.55,169.6,169.66,169.71,169.82,36.4,35.77,35.53,35.28,35.06,34.84,34.63,34.43,34.02,N/A,N/A +2013,6,5,0,30,93490,92460,91450,24.97,0,7.04,8.93,9.44,9.73,9.93,10.07,10.17,10.25,10.35,163.55,163.79,163.87,163.93,163.97,164.01,164.06,164.1,164.18,35.58,35.13,34.93,34.71,34.51,34.300000000000004,34.1,33.9,33.5,N/A,N/A +2013,6,5,1,30,93530,92490,91480,27.080000000000002,0,5.98,8.22,8.93,9.47,9.89,10.24,10.53,10.790000000000001,11.200000000000001,160.48,160.70000000000002,160.83,160.99,161.14000000000001,161.31,161.46,161.61,161.87,34.07,33.95,33.85,33.69,33.54,33.38,33.21,33.03,32.67,N/A,N/A +2013,6,5,2,30,93560,92520,91500,30.01,0,6.47,9.040000000000001,9.89,10.57,11.14,11.620000000000001,12.06,12.450000000000001,13.15,150.89000000000001,151.35,151.64000000000001,151.93,152.20000000000002,152.48,152.76,153.04,153.6,32.53,32.44,32.34,32.2,32.06,31.91,31.740000000000002,31.580000000000002,31.240000000000002,N/A,N/A +2013,6,5,3,30,93570,92520,91510,28.29,0,6.62,9.28,10.19,10.93,11.56,12.11,12.620000000000001,13.09,13.94,154.13,154.69,154.96,155.20000000000002,155.42000000000002,155.63,155.87,156.11,156.65,31.5,31.46,31.39,31.28,31.17,31.04,30.91,30.78,30.48,N/A,N/A +2013,6,5,4,30,93550,92490,91470,30.740000000000002,0,6.8,9.620000000000001,10.620000000000001,11.51,12.31,13.030000000000001,13.75,14.43,15.76,151.71,153.11,153.99,154.84,155.62,156.35,157.03,157.67000000000002,158.81,30.25,30.21,30.14,30.05,29.95,29.85,29.740000000000002,29.63,29.400000000000002,N/A,N/A +2013,6,5,5,30,93560,92510,91480,32.37,0,8.1,11.11,12.18,13.08,13.86,14.56,15.23,15.860000000000001,17.05,152.32,153.42000000000002,154.15,154.8,155.38,155.94,156.49,157,158.05,29.29,29.23,29.150000000000002,29.05,28.95,28.84,28.73,28.63,28.43,N/A,N/A +2013,6,5,6,30,93560,92500,91470,33.22,0,8.42,11.59,12.68,13.61,14.4,15.11,15.780000000000001,16.41,17.63,155.21,156.45000000000002,157.19,157.81,158.34,158.81,159.25,159.66,160.45000000000002,28.37,28.28,28.19,28.080000000000002,27.97,27.86,27.740000000000002,27.62,27.39,N/A,N/A +2013,6,5,7,30,93640,92570,91540,37.2,0,6.93,9.81,10.92,11.9,12.74,13.49,14.19,14.86,16.12,156.11,157.72,158.77,159.65,160.39000000000001,161.04,161.63,162.17000000000002,163.15,27.46,27.400000000000002,27.32,27.21,27.11,27,26.89,26.78,26.560000000000002,N/A,N/A +2013,6,5,8,30,93610,92540,91510,41.31,0,6.59,9.52,10.71,11.790000000000001,12.73,13.58,14.38,15.11,16.54,151.43,154.12,155.87,157.3,158.5,159.55,160.49,161.34,162.93,26.580000000000002,26.52,26.43,26.330000000000002,26.22,26.12,26.01,25.91,25.73,N/A,N/A +2013,6,5,9,30,93610,92540,91500,42.67,0,7.29,10.34,11.52,12.530000000000001,13.41,14.200000000000001,14.92,15.58,16.81,157.54,159.20000000000002,160.23,161.1,161.86,162.54,163.20000000000002,163.81,165.02,26.240000000000002,26.19,26.11,26.01,25.91,25.810000000000002,25.72,25.63,25.48,N/A,N/A +2013,6,5,10,30,93660,92590,91540,47.61,0,4.9,7.26,8.28,9.22,10.05,10.82,11.58,12.3,13.700000000000001,150.99,153.1,154.70000000000002,156.08,157.24,158.25,159.14000000000001,159.93,161.3,24.79,24.77,24.71,24.61,24.5,24.400000000000002,24.3,24.2,23.990000000000002,N/A,N/A +2013,6,5,11,30,93660,92590,91550,54.910000000000004,0,5.13,7.57,8.61,9.59,10.47,11.3,12.11,12.89,14.44,155.1,156.70000000000002,157.75,158.75,159.63,160.43,161.18,161.88,163.3,23.93,23.900000000000002,23.85,23.76,23.68,23.6,23.53,23.46,23.38,N/A,N/A +2013,6,5,12,30,93740,92660,91610,59.94,0,5.89,8.09,8.92,9.63,10.24,10.790000000000001,11.31,11.8,12.780000000000001,167.24,167.75,168.17000000000002,168.61,169.04,169.46,169.89000000000001,170.29,171.05,23.94,23.740000000000002,23.62,23.48,23.34,23.22,23.09,22.98,22.79,N/A,N/A +2013,6,5,13,30,93700,92620,91580,58.22,0,6.57,8.2,8.65,8.9,9.08,9.200000000000001,9.33,9.44,9.870000000000001,153.87,154.35,154.76,155.19,155.64000000000001,156.09,156.65,157.19,158.86,24.66,24.18,23.98,23.77,23.580000000000002,23.400000000000002,23.22,23.05,22.73,N/A,N/A +2013,6,5,14,30,93720,92650,91610,52.06,0,5.7,7.09,7.49,7.69,7.82,7.890000000000001,7.92,7.94,7.95,166.3,166.24,166.21,166.23,166.28,166.34,166.43,166.52,166.77,26.38,25.740000000000002,25.5,25.26,25.05,24.86,24.66,24.47,24.1,N/A,N/A +2013,6,5,15,30,93690,92620,91590,44.28,0,6.0200000000000005,7.45,7.86,8.07,8.19,8.26,8.290000000000001,8.3,8.27,165.89000000000001,165.86,165.86,165.88,165.89000000000001,165.91,165.94,165.98,166.08,28.5,27.77,27.5,27.25,27.02,26.810000000000002,26.61,26.42,26.04,N/A,N/A +2013,6,5,16,30,93650,92600,91570,39.07,0,6.23,7.65,8.06,8.25,8.36,8.41,8.44,8.44,8.4,165.54,165.9,166.12,166.3,166.46,166.62,166.79,166.94,167.28,30.400000000000002,29.6,29.3,29.04,28.8,28.59,28.38,28.19,27.8,N/A,N/A +2013,6,5,17,30,93610,92570,91550,30.37,0,4.75,5.8,6.15,6.3100000000000005,6.43,6.49,6.53,6.5600000000000005,6.58,158.53,158.81,158.91,158.99,159.07,159.15,159.24,159.32,159.52,32.94,32.19,31.87,31.6,31.37,31.14,30.93,30.72,30.32,N/A,N/A +2013,6,5,18,30,93560,92520,91510,26.91,0,5.16,6.3,6.62,6.78,6.88,6.94,6.97,7,7.01,170.32,171.17000000000002,171.66,172.08,172.45000000000002,172.8,173.14000000000001,173.45000000000002,174.08,34.58,33.77,33.46,33.17,32.93,32.7,32.480000000000004,32.27,31.85,N/A,N/A +2013,6,5,19,30,93520,92480,91470,23.86,0,5.13,6.22,6.53,6.65,6.73,6.7700000000000005,6.78,6.79,6.7700000000000005,181.22,180.19,179.6,179.17000000000002,178.83,178.53,178.28,178.06,177.68,35.56,34.76,34.44,34.15,33.910000000000004,33.68,33.46,33.25,32.83,N/A,N/A +2013,6,5,20,30,93440,92410,91410,22.73,0,5.37,6.6000000000000005,6.97,7.19,7.3500000000000005,7.45,7.53,7.58,7.65,162.77,162.86,162.95000000000002,163.1,163.23,163.38,163.53,163.67000000000002,163.96,36.53,35.730000000000004,35.42,35.13,34.88,34.64,34.410000000000004,34.19,33.77,N/A,N/A +2013,6,5,21,30,93420,92390,91380,20.75,0,5.51,6.8100000000000005,7.2,7.41,7.5600000000000005,7.67,7.75,7.8100000000000005,7.9,177.06,177.09,177.12,177.18,177.24,177.32,177.4,177.48,177.64000000000001,36.97,36.19,35.9,35.63,35.39,35.160000000000004,34.94,34.72,34.300000000000004,N/A,N/A +2013,6,5,22,30,93460,92410,91390,32.9,0,6.88,8.42,8.74,8.91,8.93,8.88,8.58,8.27,7.21,25.3,25.79,25.490000000000002,24.75,23.59,22.29,20.69,19.23,14.63,30.54,30.1,29.990000000000002,29.92,29.87,29.82,29.86,29.91,30.17,N/A,N/A +2013,6,5,23,30,93370,92330,91310,32.95,0,7.36,8.91,9.24,9.26,9.200000000000001,9.040000000000001,8.8,8.53,7.76,92.52,92.58,92.77,93.14,93.60000000000001,94.16,94.95,95.81,98.72,32.04,31.37,31.13,30.92,30.75,30.6,30.46,30.34,30.17,N/A,N/A +2013,6,6,0,30,93440,92390,91370,40.9,0,8.76,10.78,11.26,11.47,11.57,11.56,11.5,11.41,11.16,54.01,55.07,55.71,56.31,56.89,57.480000000000004,58.120000000000005,58.74,60.06,29.51,28.95,28.73,28.5,28.3,28.12,27.94,27.78,27.47,N/A,N/A +2013,6,6,1,30,93640,92570,91550,41.53,0,9.42,12.38,13.25,13.790000000000001,14.18,14.450000000000001,14.66,14.83,15.01,3.98,3.86,3.52,3.14,2.77,2.4,2.07,1.78,0.9400000000000001,28.73,28.41,28.240000000000002,28.05,27.87,27.68,27.490000000000002,27.310000000000002,26.92,N/A,N/A +2013,6,6,2,30,93580,92520,91490,42.79,0,5.6000000000000005,7.25,7.8,8.26,8.73,9.22,9.52,9.700000000000001,10.43,44.78,43.38,42.410000000000004,41.17,39.69,37.84,36.76,36.08,34.17,27.990000000000002,27.68,27.51,27.330000000000002,27.17,27.01,26.830000000000002,26.64,26.5,N/A,N/A +2013,6,6,3,30,93610,92540,91520,42.17,0,6.23,8.38,9.120000000000001,9.700000000000001,10.16,10.540000000000001,10.84,11.1,11.36,62.26,62.730000000000004,63.01,63.34,63.730000000000004,64.22,64.96000000000001,65.78,68.79,27.95,27.79,27.68,27.54,27.42,27.3,27.19,27.080000000000002,26.93,N/A,N/A +2013,6,6,4,30,93570,92500,91480,41.49,0,5.08,7.2700000000000005,8.14,8.84,9.39,9.82,10.16,10.44,10.82,94.07000000000001,95.09,95.8,96.85000000000001,98.05,99.54,101.39,103.35000000000001,108.05,27.7,27.67,27.61,27.54,27.46,27.39,27.330000000000002,27.27,27.14,N/A,N/A +2013,6,6,5,30,93600,92530,91500,41.65,0,4.0600000000000005,6.32,7.21,8.01,8.68,9.26,9.78,10.25,11.11,100.15,101.07000000000001,102.04,103.19,104.51,105.98,107.75,109.54,113.57000000000001,27.3,27.3,27.240000000000002,27.14,27.04,26.95,26.85,26.76,26.580000000000002,N/A,N/A +2013,6,6,6,30,93730,92650,91600,56.93,0,7.7700000000000005,10.32,11.07,11.66,12.13,12.51,12.83,13.11,13.530000000000001,52.52,53.08,53.480000000000004,53.93,54.410000000000004,54.870000000000005,55.4,55.910000000000004,57.32,23.86,23.62,23.48,23.330000000000002,23.18,23.05,22.92,22.8,22.63,N/A,N/A +2013,6,6,7,30,93770,92690,91640,56.6,0,8.65,11.36,12.16,12.76,13.22,13.59,13.9,14.16,14.51,53.06,54.19,54.89,55.63,56.38,57.14,58.03,58.870000000000005,61,23.85,23.63,23.490000000000002,23.34,23.2,23.07,22.95,22.830000000000002,22.66,N/A,N/A +2013,6,6,8,30,93720,92640,91590,61.620000000000005,0,6.45,8.86,9.700000000000001,10.38,10.92,11.38,11.76,12.09,12.6,94.12,94.77,95.24,95.89,96.71000000000001,97.64,98.93,100.21000000000001,103.83,23.56,23.43,23.34,23.25,23.18,23.12,23.080000000000002,23.05,23.06,N/A,N/A +2013,6,6,9,30,93850,92770,91710,66.02,0,7.09,9.53,10.31,10.950000000000001,11.52,12.030000000000001,12.5,12.92,13.5,40.77,41.74,42.32,42.94,43.58,44.22,44.88,45.5,47.07,22.19,21.97,21.85,21.7,21.56,21.42,21.29,21.18,21.04,N/A,N/A +2013,6,6,10,30,93840,92750,91700,63.03,0,6.46,8.74,9.48,10.05,10.49,10.85,11.120000000000001,11.35,11.59,62.56,63.64,64.37,65.21000000000001,66.2,67.28,68.73,70.16,74.42,22.63,22.5,22.41,22.3,22.21,22.12,22.06,22,21.94,N/A,N/A +2013,6,6,11,30,93870,92780,91730,64.39,0,5.53,7.59,8.33,8.99,9.53,9.99,10.38,10.72,11.1,59,60,60.82,61.82,62.93,64.1,65.62,67.13,71.95,21.990000000000002,21.85,21.740000000000002,21.61,21.5,21.39,21.31,21.240000000000002,21.2,N/A,N/A +2013,6,6,12,30,94030,92940,91880,66.39,0,6.48,8.93,9.84,10.58,11.200000000000001,11.75,12.24,12.69,13.4,38.730000000000004,39,39.12,39.33,39.53,39.72,39.95,40.18,40.660000000000004,21.66,21.42,21.29,21.17,21.06,20.97,20.91,20.87,20.81,N/A,N/A +2013,6,6,13,30,93930,92850,91790,59.65,0,6.45,7.99,8.4,8.620000000000001,8.76,8.86,8.93,8.99,9.24,65.5,66.23,66.59,66.99,67.41,67.83,68.3,68.75,69.96000000000001,23.23,22.73,22.52,22.32,22.13,21.96,21.79,21.64,21.35,N/A,N/A +2013,6,6,14,30,93960,92880,91840,52.25,0,5.19,6.47,6.86,7.09,7.24,7.3500000000000005,7.42,7.49,7.58,94.72,94.42,94.21000000000001,94.02,93.86,93.72,93.58,93.46000000000001,93.23,25.07,24.43,24.18,23.94,23.72,23.52,23.32,23.13,22.75,N/A,N/A +2013,6,6,15,30,93990,92920,91880,50.96,0,4.17,5.11,5.4,5.55,5.66,5.73,5.78,5.83,5.87,107.39,107.69,107.82000000000001,107.87,107.88,107.87,107.86,107.83,107.75,26.35,25.66,25.38,25.12,24.900000000000002,24.68,24.46,24.26,23.86,N/A,N/A +2013,6,6,16,30,93970,92900,91870,48.02,0,3.61,4.4,4.63,4.74,4.82,4.86,4.89,4.91,4.92,132.26,132.19,132.18,132.04,131.89000000000001,131.73,131.55,131.37,130.96,27.54,26.84,26.54,26.28,26.05,25.830000000000002,25.61,25.41,25,N/A,N/A +2013,6,6,17,30,93960,92900,91870,43.94,0,3.68,4.41,4.62,4.72,4.78,4.82,4.8500000000000005,4.87,4.9,92.88,93.02,93.12,93.16,93.18,93.19,93.2,93.2,93.18,28.91,28.19,27.88,27.6,27.36,27.13,26.900000000000002,26.69,26.27,N/A,N/A +2013,6,6,18,30,93910,92850,91820,44.65,0,4.63,5.5600000000000005,5.8,5.9,5.96,5.99,6.01,6.0200000000000005,6.01,68.58,68.83,68.89,68.94,69,69.07000000000001,69.18,69.3,69.60000000000001,28.97,28.19,27.87,27.6,27.36,27.14,26.92,26.71,26.310000000000002,N/A,N/A +2013,6,6,19,30,93880,92830,91800,39.85,0,3.23,3.86,4.04,4.13,4.2,4.24,4.28,4.3,4.34,95,93.23,92.34,91.76,91.27,90.84,90.45,90.10000000000001,89.45,30.57,29.87,29.55,29.27,29.03,28.8,28.57,28.36,27.94,N/A,N/A +2013,6,6,20,30,93820,92770,91750,37.11,0,3.29,3.91,4.08,4.17,4.24,4.28,4.32,4.34,4.38,87.94,86.71000000000001,85.92,85.3,84.77,84.28,83.84,83.44,82.69,31.490000000000002,30.79,30.48,30.2,29.95,29.71,29.490000000000002,29.27,28.85,N/A,N/A +2013,6,6,21,30,93780,92730,91710,38.13,0,4.03,4.95,5.2,5.3,5.36,5.38,5.4,5.4,5.37,60.82,60.28,60.25,60.370000000000005,60.47,60.56,60.65,60.730000000000004,60.9,31.150000000000002,30.650000000000002,30.42,30.18,29.97,29.76,29.55,29.35,28.95,N/A,N/A +2013,6,6,22,30,93710,92660,91640,32.05,0,3.24,3.81,3.95,3.99,4.0200000000000005,4.03,4.04,4.05,4.05,86.46000000000001,87.22,87.64,87.87,88.04,88.18,88.3,88.4,88.57000000000001,32.480000000000004,31.8,31.54,31.28,31.060000000000002,30.84,30.63,30.43,30.02,N/A,N/A +2013,6,6,23,30,93700,92650,91630,33.94,0,4.86,5.93,6.21,6.33,6.390000000000001,6.42,6.42,6.42,6.38,77.18,76.41,75.96000000000001,75.65,75.38,75.13,74.9,74.68,74.29,32.08,31.44,31.2,30.96,30.740000000000002,30.52,30.310000000000002,30.11,29.71,N/A,N/A +2013,6,7,0,30,93680,92630,91610,36.32,0,6.29,7.78,8.19,8.370000000000001,8.48,8.540000000000001,8.57,8.58,8.57,63.36,63.47,63.6,63.77,63.93,64.1,64.28,64.46000000000001,64.83,31.400000000000002,30.88,30.66,30.43,30.22,30.01,29.810000000000002,29.61,29.22,N/A,N/A +2013,6,7,1,30,93680,92620,91600,39.33,0,5.53,7.17,7.6000000000000005,7.87,8.07,8.22,8.33,8.42,8.56,63.67,63.97,64.16,64.36,64.55,64.74,64.94,65.12,65.49,30.57,30.28,30.11,29.91,29.72,29.53,29.330000000000002,29.150000000000002,28.76,N/A,N/A +2013,6,7,2,30,93740,92680,91660,40.42,0,5.83,7.8100000000000005,8.39,8.82,9.16,9.44,9.67,9.88,10.22,60.79,61.24,61.550000000000004,61.93,62.33,62.74,63.2,63.63,64.6,29.59,29.38,29.240000000000002,29.07,28.900000000000002,28.73,28.55,28.38,28.02,N/A,N/A +2013,6,7,3,30,93820,92760,91730,42.050000000000004,0,6.24,8.43,9.19,9.8,10.31,10.75,11.15,11.5,12.120000000000001,74.35000000000001,74.46000000000001,74.47,74.58,74.71000000000001,74.89,75.09,75.31,75.87,28.740000000000002,28.55,28.41,28.240000000000002,28.080000000000002,27.900000000000002,27.73,27.560000000000002,27.21,N/A,N/A +2013,6,7,4,30,93910,92850,91810,44.06,0,5.8,7.930000000000001,8.74,9.42,9.99,10.5,10.950000000000001,11.34,12.07,77.65,77.96000000000001,78.24,78.52,78.8,79.10000000000001,79.41,79.7,80.35000000000001,27.91,27.740000000000002,27.61,27.44,27.28,27.11,26.94,26.77,26.43,N/A,N/A +2013,6,7,5,30,93900,92830,91800,47.46,0,5.91,7.79,8.43,8.98,9.450000000000001,9.870000000000001,10.3,10.71,11.05,76.04,76.35000000000001,76.60000000000001,76.94,77.31,77.71000000000001,78.23,78.76,79.29,26.88,26.560000000000002,26.400000000000002,26.21,26.03,25.86,25.68,25.51,25.13,N/A,N/A +2013,6,7,6,30,93960,92890,91850,50.910000000000004,0,5.78,7.54,8.15,8.620000000000001,9,9.32,9.6,9.85,10.28,81.65,81.93,82.24,82.49,82.71000000000001,82.91,83.11,83.29,83.66,26.37,26.05,25.87,25.66,25.46,25.26,25.060000000000002,24.87,24.47,N/A,N/A +2013,6,7,7,30,94010,92940,91890,53.96,0,5.96,7.86,8.49,9.01,9.44,9.82,10.18,10.51,11.16,90.95,91.17,91.18,91.21000000000001,91.27,91.34,91.45,91.56,91.89,25.17,24.88,24.72,24.51,24.32,24.13,23.93,23.75,23.36,N/A,N/A +2013,6,7,8,30,94170,93060,92000,73.87,0,4.84,6.22,6.68,7.0200000000000005,7.51,8,8.44,8.84,9.47,207.3,207.88,207.77,207.91,207.70000000000002,207.42000000000002,207.23000000000002,207.06,206.76,19.84,19.46,19.29,19.12,19.02,18.95,18.98,19.01,19.12,N/A,N/A +2013,6,7,9,30,94210,93110,92040,77.95,0,5.58,7.07,7.43,7.59,7.66,7.68,7.66,7.63,7.54,327.56,328.41,328.7,329.05,329.6,330.23,331.02,331.79,334.1,20.16,19.8,19.62,19.42,19.23,19.05,18.86,18.68,18.3,N/A,N/A +2013,6,7,10,30,94240,93150,92090,76.87,0,3.46,4.4,4.67,4.83,4.94,5.01,5.05,5.08,5.09,325.36,326.99,327.87,328.65000000000003,329.35,329.98,330.64,331.25,332.6,21.22,20.86,20.68,20.48,20.29,20.1,19.91,19.73,19.37,N/A,N/A +2013,6,7,11,30,94270,93170,92100,80,0,6.22,7.86,8.35,8.67,8.93,9.14,9.35,9.540000000000001,9.92,18.740000000000002,17.28,16.43,15.48,14.5,13.540000000000001,12.41,11.32,8.82,20.14,19.77,19.59,19.39,19.2,19.01,18.82,18.650000000000002,18.28,N/A,N/A +2013,6,7,12,30,94300,93200,92130,80.53,0,4.26,5.29,5.51,5.6000000000000005,5.63,5.64,5.62,5.59,5.5,124.39,125.73,125.85000000000001,125.81,125.61,125.34,124.86,124.36,122.92,19.98,19.6,19.41,19.21,19.02,18.84,18.650000000000002,18.48,18.14,N/A,N/A +2013,6,7,13,30,94350,93240,92170,81.9,1.8,3.72,4.71,5,5.16,5.26,5.34,5.4,5.47,5.71,158.15,156.91,156.32,155.6,154.79,153.97,152.92000000000002,151.87,148.84,18.89,18.51,18.32,18.13,17.94,17.77,17.580000000000002,17.42,17.080000000000002,N/A,N/A +2013,6,7,14,30,94300,93200,92130,79.10000000000001,0,3.98,4.91,5.16,5.28,5.37,5.42,5.48,5.5200000000000005,5.67,100.64,100.52,100.39,100.17,99.91,99.64,99.36,99.14,99.03,19.580000000000002,19.06,18.85,18.650000000000002,18.46,18.28,18.1,17.93,17.6,N/A,N/A +2013,6,7,15,30,94340,93250,92190,58.95,0,2.2600000000000002,2.7,2.81,2.88,2.92,2.95,2.97,2.99,3,88.35000000000001,91.96000000000001,93.93,95.42,96.67,97.74000000000001,98.73,99.59,101.2,23.09,22.5,22.240000000000002,22.01,21.79,21.580000000000002,21.37,21.18,20.78,N/A,N/A +2013,6,7,16,30,94280,93190,92130,54.35,0,5.72,7.05,7.390000000000001,7.5600000000000005,7.65,7.71,7.74,7.75,7.74,134.34,135.15,135.57,135.93,136.25,136.54,136.84,137.12,137.69,23.88,23.09,22.8,22.54,22.3,22.09,21.87,21.68,21.27,N/A,N/A +2013,6,7,17,30,94250,93170,92120,49.42,0,3.42,4.18,4.4,4.51,4.58,4.63,4.66,4.69,4.71,138.68,139.55,140.04,140.38,140.67000000000002,140.91,141.15,141.36,141.77,25,24.3,24,23.740000000000002,23.5,23.29,23.07,22.87,22.46,N/A,N/A +2013,6,7,18,30,94190,93110,92060,41.08,0,2.92,3.5500000000000003,3.71,3.8000000000000003,3.85,3.89,3.92,3.94,3.96,138.18,139.14000000000001,139.66,140.05,140.37,140.66,140.93,141.17000000000002,141.63,26.57,25.89,25.59,25.330000000000002,25.080000000000002,24.86,24.650000000000002,24.44,24.03,N/A,N/A +2013,6,7,19,30,94130,93060,92020,37.99,0,2.75,3.29,3.43,3.5,3.5500000000000003,3.5700000000000003,3.59,3.6,3.6,145.58,146.57,147.17000000000002,147.64000000000001,148.05,148.4,148.74,149.05,149.64000000000001,27.92,27.25,26.94,26.67,26.43,26.21,25.98,25.78,25.36,N/A,N/A +2013,6,7,20,30,94050,92980,91950,37.730000000000004,0,3.15,3.7800000000000002,3.95,4.03,4.09,4.13,4.15,4.17,4.18,155.62,155.70000000000002,155.71,155.69,155.65,155.62,155.57,155.52,155.42000000000002,28.740000000000002,28.05,27.75,27.47,27.22,26.990000000000002,26.77,26.560000000000002,26.14,N/A,N/A +2013,6,7,21,30,93950,92890,91850,34.97,0,3.63,4.4,4.6000000000000005,4.7,4.76,4.8,4.82,4.84,4.8500000000000005,153.72,153.8,153.78,153.73,153.65,153.58,153.5,153.42000000000002,153.27,29.36,28.64,28.35,28.09,27.85,27.62,27.400000000000002,27.19,26.78,N/A,N/A +2013,6,7,22,30,93910,92850,91820,32.26,0,3.0300000000000002,3.64,3.81,3.88,3.92,3.95,3.96,3.97,3.98,135.12,136.27,136.83,137.21,137.51,137.77,138,138.21,138.59,29.73,29.080000000000002,28.8,28.55,28.330000000000002,28.11,27.89,27.69,27.28,N/A,N/A +2013,6,7,23,30,93850,92790,91760,31.990000000000002,0,3.81,4.68,4.93,5.05,5.13,5.19,5.23,5.26,5.29,155.85,155.74,155.66,155.52,155.39000000000001,155.26,155.12,154.99,154.75,29.89,29.27,29.02,28.78,28.560000000000002,28.34,28.13,27.93,27.52,N/A,N/A +2013,6,8,0,30,93810,92750,91720,37.49,0,4.3500000000000005,5.46,5.76,5.93,6.04,6.11,6.15,6.18,6.21,142.18,142.31,142.42000000000002,142.51,142.6,142.67000000000002,142.76,142.84,143.01,29.3,28.79,28.57,28.34,28.13,27.93,27.72,27.52,27.12,N/A,N/A +2013,6,8,1,30,93790,92720,91690,41.74,0,5.72,7.47,7.91,8.19,8.4,8.56,8.67,8.77,8.9,150.46,150.75,150.81,150.82,150.83,150.84,150.84,150.84,150.84,28.04,27.73,27.55,27.36,27.16,26.97,26.76,26.580000000000002,26.18,N/A,N/A +2013,6,8,2,30,93880,92810,91770,44.9,0,5.71,7.62,8.2,8.61,8.93,9.200000000000001,9.42,9.63,9.950000000000001,158.02,158.06,158.14000000000001,158.20000000000002,158.27,158.34,158.42000000000002,158.49,158.63,26.66,26.43,26.28,26.1,25.93,25.75,25.57,25.39,25.02,N/A,N/A +2013,6,8,3,30,93920,92850,91810,45.94,0,5.59,7.65,8.34,8.870000000000001,9.31,9.69,10.02,10.31,10.8,157.64000000000001,157.75,157.76,157.75,157.76,157.77,157.81,157.84,157.98,25.98,25.8,25.67,25.51,25.35,25.19,25.02,24.86,24.52,N/A,N/A +2013,6,8,4,30,93940,92860,91820,47.07,0,4.93,6.97,7.69,8.290000000000001,8.81,9.27,9.69,10.06,10.64,157.01,157.20000000000002,157.26,157.26,157.25,157.21,157.19,157.16,157.32,25.16,25.02,24.91,24.77,24.63,24.490000000000002,24.34,24.2,23.92,N/A,N/A +2013,6,8,5,30,94000,92920,91870,52.11,0,5.11,7.18,7.890000000000001,8.48,9,9.46,9.91,10.31,11.01,149.20000000000002,150.07,150.58,151.03,151.43,151.82,152.20000000000002,152.57,153.27,24.27,24.11,23.990000000000002,23.85,23.71,23.57,23.42,23.29,23.01,N/A,N/A +2013,6,8,6,30,94020,92940,91890,56.83,0,4.4,6.34,7.09,7.76,8.36,8.9,9.450000000000001,9.96,10.89,139.65,140.81,141.56,142.31,143.07,143.85,144.74,145.61,147.57,23.28,23.14,23.04,22.900000000000002,22.77,22.64,22.52,22.400000000000002,22.21,N/A,N/A +2013,6,8,7,30,94040,92960,91900,60.18,0,4.22,6.25,7.03,7.71,8.32,8.88,9.42,9.93,10.86,151.20000000000002,152.08,152.59,152.92000000000002,153.15,153.32,153.47,153.59,153.88,22.66,22.53,22.43,22.32,22.2,22.09,21.990000000000002,21.89,21.72,N/A,N/A +2013,6,8,8,30,94030,92940,91880,60.52,0,3.66,5.61,6.36,7.0200000000000005,7.640000000000001,8.22,8.78,9.3,10.200000000000001,161.72,163.48,164.49,165.25,165.83,166.3,166.61,166.87,167.26,22.17,22.080000000000002,22.01,21.91,21.82,21.73,21.650000000000002,21.57,21.44,N/A,N/A +2013,6,8,9,30,93980,92890,91830,62.660000000000004,0,3.72,5.71,6.5,7.22,7.87,8.48,9.040000000000001,9.55,10.38,151.84,154.94,156.83,158.31,159.52,160.54,161.42000000000002,162.22,163.78,21.88,21.82,21.75,21.67,21.580000000000002,21.5,21.41,21.330000000000002,21.14,N/A,N/A +2013,6,8,10,30,93960,92870,91810,65.74,0,3.5100000000000002,5.44,6.21,6.93,7.5600000000000005,8.13,8.67,9.18,10.13,151.51,153.98,155.56,157,158.23,159.31,160.26,161.13,162.73,21.38,21.29,21.19,21.07,20.94,20.8,20.650000000000002,20.51,20.21,N/A,N/A +2013,6,8,11,30,93930,92830,91770,69.91,0,3.35,5.12,5.82,6.45,7,7.5,8,8.46,9.39,143.75,146.64000000000001,148.46,150.06,151.52,152.85,154.14000000000001,155.35,157.63,20.82,20.650000000000002,20.53,20.38,20.23,20.09,19.94,19.8,19.53,N/A,N/A +2013,6,8,12,30,93920,92820,91760,69.28,0,5.12,7.47,8.34,8.86,9.41,9.950000000000001,10.4,10.8,11.57,144.39000000000001,147.28,148.79,149.6,150.38,151.12,151.89000000000001,152.6,154.14000000000001,20.78,20.490000000000002,20.32,20.14,19.98,19.830000000000002,19.67,19.52,19.23,N/A,N/A +2013,6,8,13,30,93930,92840,91790,64.75,0,5.6000000000000005,7.0600000000000005,7.47,7.72,7.88,8,8.09,8.17,8.33,153.07,153.68,154.09,154.45000000000002,154.81,155.14000000000001,155.52,155.87,156.75,21.68,21.16,20.94,20.72,20.52,20.330000000000002,20.13,19.94,19.56,N/A,N/A +2013,6,8,14,30,93920,92840,91790,62.730000000000004,0,6.3,7.890000000000001,8.33,8.58,8.73,8.83,8.9,8.94,9,164.72,164.84,164.93,165.01,165.1,165.18,165.28,165.38,165.61,23.05,22.38,22.12,21.89,21.66,21.46,21.25,21.06,20.67,N/A,N/A +2013,6,8,15,30,93910,92830,91790,60.83,0,5.92,7.37,7.79,8.01,8.15,8.25,8.3,8.35,8.39,169.1,169.4,169.57,169.73,169.88,170.02,170.17000000000002,170.31,170.6,24.68,23.93,23.64,23.39,23.16,22.95,22.73,22.53,22.13,N/A,N/A +2013,6,8,16,30,93880,92810,91770,54.21,0,5.41,6.69,7.05,7.25,7.37,7.45,7.51,7.55,7.6000000000000005,174.53,174.75,174.87,175,175.11,175.22,175.32,175.42000000000002,175.64000000000001,26.45,25.67,25.37,25.1,24.86,24.64,24.41,24.21,23.79,N/A,N/A +2013,6,8,17,30,93830,92770,91730,49.2,0,5.48,6.7700000000000005,7.13,7.33,7.46,7.55,7.61,7.66,7.72,175.26,175.08,175.02,174.97,174.95000000000002,174.93,174.92000000000002,174.91,174.91,27.84,27.03,26.71,26.43,26.18,25.95,25.72,25.51,25.09,N/A,N/A +2013,6,8,18,30,93750,92690,91660,44.85,0,5.99,7.38,7.76,7.95,8.08,8.16,8.21,8.25,8.290000000000001,175.28,175.3,175.33,175.39000000000001,175.45000000000002,175.52,175.59,175.67000000000002,175.84,28.97,28.12,27.8,27.51,27.26,27.03,26.810000000000002,26.6,26.18,N/A,N/A +2013,6,8,19,30,93690,92630,91600,40.42,0,5.51,6.74,7.0600000000000005,7.2,7.29,7.3500000000000005,7.38,7.4,7.41,179.47,179.96,180.23,180.47,180.69,180.88,181.08,181.26,181.62,30,29.17,28.86,28.580000000000002,28.330000000000002,28.1,27.88,27.67,27.25,N/A,N/A +2013,6,8,20,30,93610,92550,91530,38.22,0,5.04,6.19,6.5,6.67,6.78,6.8500000000000005,6.890000000000001,6.93,6.96,184.91,183.97,183.48,183.17000000000002,182.94,182.76,182.61,182.49,182.3,30.91,30.11,29.8,29.52,29.27,29.04,28.810000000000002,28.6,28.18,N/A,N/A +2013,6,8,21,30,93530,92480,91460,37.82,0,5.26,6.47,6.8100000000000005,7.01,7.15,7.24,7.3100000000000005,7.36,7.42,177.13,176.97,176.98,177.1,177.22,177.36,177.5,177.63,177.92000000000002,31.470000000000002,30.68,30.39,30.1,29.86,29.63,29.400000000000002,29.19,28.77,N/A,N/A +2013,6,8,22,30,93480,92420,91410,37.36,0,5.15,6.3500000000000005,6.7,6.93,7.09,7.21,7.29,7.37,7.47,177.11,176.75,176.52,176.31,176.15,176.01,175.9,175.79,175.62,31.720000000000002,30.990000000000002,30.72,30.45,30.21,29.990000000000002,29.76,29.55,29.13,N/A,N/A +2013,6,8,23,30,93430,92380,91370,38.51,0,6.05,7.55,7.97,8.19,8.34,8.44,8.51,8.56,8.620000000000001,161.37,161.79,162.08,162.34,162.59,162.82,163.05,163.27,163.70000000000002,31.55,30.88,30.62,30.37,30.150000000000002,29.93,29.71,29.51,29.1,N/A,N/A +2013,6,9,0,30,93350,92300,91290,43.74,0,6.98,8.89,9.38,9.67,9.86,9.99,10.07,10.14,10.21,155.51,155.76,155.94,156.11,156.27,156.42000000000002,156.57,156.72,157.01,30.77,30.240000000000002,30.02,29.79,29.57,29.37,29.16,28.96,28.560000000000002,N/A,N/A +2013,6,9,1,30,93360,92310,91290,48.36,0,6.71,8.76,9.31,9.67,9.94,10.15,10.32,10.47,10.68,152.18,152.26,152.32,152.36,152.41,152.47,152.54,152.6,152.78,29.650000000000002,29.35,29.18,28.98,28.8,28.61,28.41,28.22,27.84,N/A,N/A +2013,6,9,2,30,93420,92360,91340,51.97,0,7.890000000000001,10.49,11.22,11.75,12.17,12.52,12.83,13.1,13.58,149.18,149.46,149.59,149.73,149.88,150.03,150.22,150.39000000000001,150.78,28.580000000000002,28.330000000000002,28.17,27.990000000000002,27.8,27.62,27.43,27.25,26.87,N/A,N/A +2013,6,9,3,30,93490,92430,91400,57.17,0,8.47,11.290000000000001,12.06,12.63,13.07,13.44,13.76,14.05,14.56,152.20000000000002,152.69,152.97,153.22,153.46,153.68,153.91,154.13,154.57,27.59,27.32,27.16,26.98,26.79,26.61,26.42,26.240000000000002,25.86,N/A,N/A +2013,6,9,4,30,93500,92440,91410,61.19,0,8.55,11.32,12.15,12.76,13.25,13.67,14.05,14.38,14.98,153.62,153.96,154.18,154.39000000000001,154.6,154.81,155.02,155.23,155.65,26.650000000000002,26.39,26.23,26.04,25.86,25.68,25.48,25.3,24.91,N/A,N/A +2013,6,9,5,30,93460,92390,91360,59.65,0,7.88,10.63,11.43,12.05,12.55,12.98,13.35,13.69,14.3,158.6,159.28,159.65,160,160.35,160.69,161.05,161.38,162.09,25.53,25.29,25.14,24.97,24.79,24.62,24.44,24.27,23.92,N/A,N/A +2013,6,9,6,30,93610,92540,91500,55.54,0,4.99,6.92,7.61,8.17,8.64,9.05,9.44,9.790000000000001,10.46,150.79,152.16,152.93,153.65,154.35,155.02,155.73,156.4,157.73,24.47,24.23,24.080000000000002,23.91,23.740000000000002,23.57,23.400000000000002,23.240000000000002,22.900000000000002,N/A,N/A +2013,6,9,7,30,93820,92740,91700,55.59,0,1.61,3.0700000000000003,3.31,3.34,3.3000000000000003,3.25,3.2,3.17,3.23,305.8,301.77,298.04,293.62,287.81,282.17,274.75,267.85,252.75,24.28,24.26,24.12,23.93,23.71,23.51,23.27,23.05,22.59,N/A,N/A +2013,6,9,8,30,93760,92670,91630,53.61,0,3.92,5.68,6.28,6.79,7.21,7.58,7.94,8.27,8.92,159.95000000000002,162.5,164.32,166.13,167.71,169.12,170.23,171.20000000000002,172.17000000000002,23.71,23.55,23.42,23.26,23.080000000000002,22.900000000000002,22.68,22.48,22,N/A,N/A +2013,6,9,9,30,93720,92630,91580,62.45,0,4.51,6.5200000000000005,7.24,7.8500000000000005,8.34,8.75,9.11,9.43,10.02,137.18,137.38,137.59,137.81,138.15,138.56,139.26,139.99,142.19,22.51,22.3,22.16,21.990000000000002,21.81,21.63,21.43,21.25,20.84,N/A,N/A +2013,6,9,10,30,93980,92890,91840,69.16,0,7.140000000000001,9.35,9.93,10.35,10.68,10.97,11.21,11.43,11.84,71.67,71.82000000000001,71.92,72.13,72.45,72.78,73.22,73.64,74.66,21.93,21.61,21.43,21.240000000000002,21.04,20.86,20.67,20.48,20.1,N/A,N/A +2013,6,9,11,30,94060,92970,91910,69.19,0,9.93,12.68,13.370000000000001,13.83,14.17,14.44,14.69,14.92,15.32,69.5,69.7,69.62,69.55,69.5,69.46000000000001,69.5,69.56,69.78,21.02,20.68,20.490000000000002,20.29,20.080000000000002,19.89,19.69,19.51,19.11,N/A,N/A +2013,6,9,12,30,93730,92650,91600,51.82,0,8.9,12.030000000000001,12.96,13.67,14.200000000000001,14.64,14.98,15.280000000000001,15.66,150.25,150.22,150.11,149.92000000000002,149.71,149.51,149.31,149.12,148.85,23.02,22.89,22.79,22.68,22.57,22.48,22.38,22.31,22.2,N/A,N/A +2013,6,9,13,30,93990,92900,91840,63.03,0,6.03,7.66,8.11,8.39,8.6,8.76,8.91,9.06,9.41,103.49000000000001,104.15,104.49000000000001,104.78,105.07000000000001,105.35000000000001,105.69,106.03,106.97,22,21.56,21.36,21.150000000000002,20.95,20.77,20.56,20.38,20,N/A,N/A +2013,6,9,14,30,94050,92970,91910,61.940000000000005,0,5.96,7.47,7.86,8.07,8.19,8.26,8.31,8.34,8.370000000000001,140.62,140.77,140.73,140.68,140.63,140.58,140.54,140.51,140.46,22.87,22.22,21.98,21.75,21.54,21.35,21.150000000000002,20.96,20.59,N/A,N/A +2013,6,9,15,30,94010,92930,91890,49.88,0,4.5600000000000005,5.65,5.92,6.08,6.17,6.22,6.23,6.24,6.21,158.32,158.67000000000002,159.25,159.65,159.95000000000002,160.20000000000002,160.42000000000002,160.6,160.97,25.46,24.79,24.53,24.29,24.07,23.87,23.67,23.48,23.1,N/A,N/A +2013,6,9,16,30,94020,92950,91910,41.47,0,4.07,5.01,5.25,5.37,5.43,5.47,5.47,5.48,5.44,179.82,179.26,178.88,178.54,178.23,177.96,177.68,177.42000000000002,176.86,27.37,26.650000000000002,26.37,26.11,25.88,25.66,25.45,25.25,24.85,N/A,N/A +2013,6,9,17,30,94000,92940,91900,38.95,0,3.0100000000000002,3.65,3.81,3.9,3.95,3.97,3.99,3.99,3.99,166.02,165.06,164.55,164.08,163.65,163.24,162.82,162.43,161.62,28.72,28.04,27.75,27.490000000000002,27.26,27.04,26.82,26.63,26.22,N/A,N/A +2013,6,9,18,30,93970,92900,91880,34.53,0,2.29,2.79,2.92,3,3.0500000000000003,3.1,3.13,3.16,3.21,133.32,132.75,132.37,131.93,131.48,131.04,130.59,130.16,129.26,30.27,29.61,29.32,29.060000000000002,28.82,28.6,28.38,28.18,27.77,N/A,N/A +2013,6,9,19,30,93920,92870,91850,27.39,0,3.5300000000000002,4.29,4.48,4.58,4.65,4.7,4.73,4.75,4.79,91.27,91.58,91.75,91.84,91.9,91.94,91.96000000000001,91.97,91.99,32.17,31.45,31.150000000000002,30.88,30.64,30.41,30.19,29.98,29.57,N/A,N/A +2013,6,9,20,30,93880,92820,91800,24.36,0,4.98,6.04,6.2700000000000005,6.37,6.42,6.45,6.47,6.48,6.48,84.35000000000001,85.85000000000001,86.60000000000001,87.15,87.60000000000001,88,88.37,88.7,89.28,32.86,32.08,31.78,31.52,31.29,31.07,30.85,30.650000000000002,30.240000000000002,N/A,N/A +2013,6,9,21,30,93820,92770,91750,21.85,0,4.69,5.75,6.0200000000000005,6.15,6.24,6.3,6.34,6.38,6.41,86.48,87.34,87.77,88.06,88.27,88.44,88.59,88.72,88.93,33.660000000000004,32.910000000000004,32.63,32.37,32.13,31.91,31.69,31.490000000000002,31.080000000000002,N/A,N/A +2013,6,9,22,30,93780,92740,91720,20.89,0,4.46,5.41,5.63,5.73,5.78,5.82,5.84,5.84,5.84,77.38,78.49,79.15,79.74,80.26,80.74,81.19,81.60000000000001,82.39,33.92,33.230000000000004,32.97,32.72,32.49,32.28,32.06,31.86,31.46,N/A,N/A +2013,6,9,23,30,93770,92720,91710,22.79,0,3.99,4.92,5.16,5.3,5.4,5.46,5.51,5.54,5.58,92.36,93.56,94.16,94.56,94.86,95.12,95.32000000000001,95.5,95.79,33.88,33.27,33.03,32.79,32.56,32.35,32.13,31.93,31.52,N/A,N/A +2013,6,10,0,30,93770,92720,91710,23.45,0,4.33,5.43,5.73,5.91,6.04,6.13,6.2,6.25,6.34,117.49000000000001,115.71000000000001,114.84,114.09,113.46000000000001,112.91,112.42,111.97,111.15,33.47,33.01,32.8,32.58,32.38,32.17,31.970000000000002,31.77,31.38,N/A,N/A +2013,6,10,1,30,93770,92720,91700,24.04,0,4.13,6.11,6.61,6.8500000000000005,7,7.1000000000000005,7.17,7.22,7.29,107.24000000000001,107.99000000000001,108.34,108.48,108.48,108.38,108.2,108,107.53,32.45,32.39,32.27,32.09,31.91,31.720000000000002,31.52,31.330000000000002,30.93,N/A,N/A +2013,6,10,2,30,93830,92770,91750,29.55,0,3.61,6.13,6.96,7.58,7.930000000000001,8.120000000000001,8.16,8.16,8.08,93.34,95.52,96.66,97.53,98.41,99.26,99.97,100.58,101.26,30.96,31.220000000000002,31.26,31.220000000000002,31.12,31,30.84,30.68,30.310000000000002,N/A,N/A +2013,6,10,3,30,93920,92860,91840,35.09,0,3.0300000000000002,5.24,5.99,6.6000000000000005,7.08,7.46,7.8100000000000005,8.120000000000001,8.790000000000001,91.71000000000001,93.01,94.14,95.62,97.26,98.97,100.63,102.18,104.72,29.76,29.990000000000002,30.02,29.990000000000002,29.94,29.86,29.76,29.650000000000002,29.36,N/A,N/A +2013,6,10,4,30,93990,92920,91880,57.18,0,5.08,7.21,7.88,8.45,8.93,9.35,9.74,10.09,10.68,129.85,131.2,131.8,132.24,132.58,132.86,133.07,133.25,133.48,27.240000000000002,27.01,26.87,26.7,26.53,26.36,26.19,26.02,25.7,N/A,N/A +2013,6,10,5,30,94080,93010,91970,58.28,0,4.76,6.75,7.4,7.94,8.42,8.85,9.26,9.63,10.35,139.46,140.3,140.62,140.74,140.79,140.81,140.82,140.82,140.95000000000002,26.13,25.94,25.810000000000002,25.650000000000002,25.48,25.32,25.14,24.97,24.62,N/A,N/A +2013,6,10,6,30,94160,93080,92030,61.800000000000004,0,5.51,7.46,8.06,8.540000000000001,8.94,9.28,9.61,9.91,10.55,150.17000000000002,151.42000000000002,152.16,152.84,153.45000000000002,154,154.51,154.96,155.6,24.560000000000002,24.310000000000002,24.16,23.98,23.8,23.63,23.45,23.28,22.96,N/A,N/A +2013,6,10,7,30,94190,93100,92050,66.94,0,5.17,7.05,7.640000000000001,8.13,8.55,8.92,9.31,9.68,10.55,151,152.89000000000001,154.08,155.24,156.35,157.38,158.46,159.47,161.31,23.17,22.91,22.75,22.57,22.38,22.2,22.01,21.84,21.52,N/A,N/A +2013,6,10,8,30,94210,93120,92060,71.55,0,3.65,5.34,5.95,6.46,6.9,7.28,7.63,7.95,8.57,163.73,164.5,164.95000000000002,165.37,165.78,166.17000000000002,166.56,166.92000000000002,167.62,22.36,22.12,21.97,21.8,21.63,21.46,21.28,21.11,20.78,N/A,N/A +2013,6,10,9,30,94180,93090,92030,76.56,0,3.13,4.8,5.42,5.97,6.44,6.8500000000000005,7.25,7.63,8.370000000000001,152.51,154.6,155.82,156.94,157.99,158.96,159.92000000000002,160.81,162.47,21.81,21.62,21.490000000000002,21.35,21.2,21.07,20.92,20.8,20.56,N/A,N/A +2013,6,10,10,30,94180,93090,92030,80.96000000000001,0,1.97,3.66,4.28,4.87,5.41,5.9,6.38,6.83,7.73,139.27,145.53,149.11,151.79,154.07,156.07,157.85,159.49,162.25,21.1,21.05,20.96,20.85,20.73,20.62,20.51,20.42,20.29,N/A,N/A +2013,6,10,11,30,94200,93110,92050,84.08,0,2.54,4.15,4.74,5.29,5.79,6.26,6.74,7.21,8.17,130.86,137.48,141.43,144.78,147.64000000000001,150.19,152.5,154.63,158.3,20.53,20.5,20.45,20.37,20.28,20.2,20.13,20.06,20,N/A,N/A +2013,6,10,12,30,94250,93150,92090,82.5,0,2.39,4.04,4.82,5.39,5.93,6.43,6.92,7.38,8.28,129.55,140.14000000000001,145.45000000000002,148.34,150.89000000000001,153.19,155.17000000000002,156.98,159.97,20.45,20.28,20.2,20.11,20.04,19.98,19.92,19.88,19.84,N/A,N/A +2013,6,10,13,30,94260,93160,92100,71.99,0,4.74,5.94,6.25,6.43,6.55,6.63,6.71,6.78,7.0200000000000005,152.18,153.06,153.54,154,154.46,154.89000000000001,155.43,155.96,157.37,21.92,21.41,21.21,21,20.81,20.63,20.44,20.27,19.92,N/A,N/A +2013,6,10,14,30,94290,93200,92140,62.68,0,5.17,6.48,6.82,7.01,7.13,7.21,7.2700000000000005,7.3100000000000005,7.38,163.98,164.43,164.67000000000002,164.85,165.04,165.21,165.39000000000001,165.56,165.98,23.67,23.04,22.79,22.57,22.36,22.16,21.96,21.78,21.41,N/A,N/A +2013,6,10,15,30,94280,93190,92150,55.01,0,5,6.22,6.54,6.71,6.82,6.890000000000001,6.93,6.96,6.99,164.01,164.34,164.49,164.6,164.70000000000002,164.78,164.87,164.96,165.14000000000001,25.62,24.900000000000002,24.63,24.38,24.150000000000002,23.94,23.73,23.54,23.14,N/A,N/A +2013,6,10,16,30,94270,93200,92150,49.28,0,4.19,5.17,5.44,5.58,5.68,5.74,5.78,5.8100000000000005,5.8500000000000005,168.1,168.20000000000002,168.22,168.22,168.22,168.22,168.22,168.21,168.20000000000002,27.14,26.41,26.12,25.86,25.62,25.400000000000002,25.19,24.990000000000002,24.580000000000002,N/A,N/A +2013,6,10,17,30,94250,93180,92140,42.31,0,4.32,5.33,5.62,5.7700000000000005,5.87,5.95,5.99,6.03,6.08,162.1,162.12,162.12,162.1,162.06,162.02,161.98,161.93,161.82,28.7,27.94,27.64,27.36,27.12,26.900000000000002,26.68,26.47,26.060000000000002,N/A,N/A +2013,6,10,18,30,94210,93140,92110,36.36,0,4.26,5.24,5.5,5.64,5.73,5.79,5.84,5.87,5.91,157.02,157.13,157.15,157.13,157.1,157.07,157.03,156.99,156.91,30.060000000000002,29.3,28.990000000000002,28.72,28.48,28.25,28.02,27.82,27.400000000000002,N/A,N/A +2013,6,10,19,30,94150,93090,92070,33.05,0,4.28,5.25,5.5200000000000005,5.66,5.76,5.84,5.88,5.92,5.97,147.23,147.69,147.9,148.03,148.12,148.20000000000002,148.25,148.3,148.38,31.25,30.48,30.17,29.900000000000002,29.66,29.42,29.2,28.990000000000002,28.57,N/A,N/A +2013,6,10,20,30,94080,93020,92000,29.21,0,4.57,5.65,5.93,6.08,6.19,6.2700000000000005,6.32,6.37,6.42,142.32,142.74,142.94,143.05,143.13,143.19,143.24,143.29,143.35,32.2,31.43,31.13,30.86,30.61,30.39,30.16,29.95,29.53,N/A,N/A +2013,6,10,21,30,94040,92980,91960,25.32,0,4.67,5.76,6.04,6.19,6.29,6.36,6.41,6.45,6.49,141.29,141.74,141.96,142.07,142.16,142.21,142.26,142.3,142.35,32.82,32.06,31.78,31.51,31.27,31.05,30.830000000000002,30.62,30.21,N/A,N/A +2013,6,10,22,30,94000,92950,91930,25.76,0,4.95,6.17,6.5,6.69,6.82,6.92,6.99,7.05,7.12,142.27,142.6,142.75,142.85,142.92000000000002,142.97,143.03,143.07,143.15,33.04,32.32,32.05,31.8,31.560000000000002,31.34,31.11,30.91,30.490000000000002,N/A,N/A +2013,6,10,23,30,93980,92920,91900,26.97,0,5.08,6.32,6.63,6.8100000000000005,6.93,7.01,7.07,7.11,7.16,132.46,133.65,134.33,134.91,135.41,135.87,136.29,136.68,137.43,32.74,32.11,31.86,31.62,31.400000000000002,31.19,30.970000000000002,30.77,30.36,N/A,N/A +2013,6,11,0,30,93950,92890,91870,27.54,0,5.73,7.2700000000000005,7.640000000000001,7.83,7.95,8.02,8.07,8.1,8.11,137.83,138.54,138.82,138.98,139.12,139.23,139.32,139.4,139.56,32.21,31.720000000000002,31.51,31.3,31.09,30.89,30.68,30.490000000000002,30.09,N/A,N/A +2013,6,11,1,30,93960,92910,91880,30.82,0,5.26,7.41,8.05,8.51,8.85,9.11,9.290000000000001,9.44,9.59,138.57,139.59,140.08,140.51,140.87,141.19,141.42000000000002,141.61,141.77,31.21,31.01,30.87,30.7,30.52,30.35,30.16,29.98,29.6,N/A,N/A +2013,6,11,2,30,93970,92910,91880,36.79,0,2.9,5.0600000000000005,5.79,6.37,6.84,7.25,7.57,7.8500000000000005,8.27,143.18,143.06,143.01,143.1,143.28,143.51,143.74,143.95000000000002,144.29,29.89,30,29.96,29.87,29.76,29.63,29.47,29.32,28.990000000000002,N/A,N/A +2013,6,11,3,30,94000,92940,91910,37.410000000000004,0,4.17,6.67,7.6000000000000005,8.43,9.16,9.83,10.39,10.88,11.57,158.70000000000002,157.99,157.64000000000001,157.5,157.53,157.68,157.89000000000001,158.11,158.51,29.07,29.150000000000002,29.13,29.080000000000002,29.01,28.92,28.8,28.69,28.41,N/A,N/A +2013,6,11,4,30,94040,92970,91940,40.74,0,4.45,6.98,7.91,8.77,9.56,10.28,10.94,11.540000000000001,12.46,154.74,155,155.19,155.4,155.62,155.85,156.02,156.18,156.36,28.07,28.150000000000002,28.13,28.09,28.03,27.95,27.85,27.75,27.48,N/A,N/A +2013,6,11,5,30,94080,93010,91970,46.89,0,4.58,7.07,7.99,8.81,9.56,10.25,10.870000000000001,11.450000000000001,12.43,157.72,157.71,157.64000000000001,157.57,157.53,157.5,157.51,157.53,157.61,27.38,27.41,27.36,27.3,27.22,27.14,27.04,26.94,26.7,N/A,N/A +2013,6,11,6,30,94100,93030,91990,51.47,0,4.0200000000000005,6.57,7.54,8.44,9.290000000000001,10.08,10.82,11.52,12.76,154.03,154.96,155.49,156,156.54,157.08,157.62,158.13,159.07,26.400000000000002,26.47,26.45,26.400000000000002,26.34,26.28,26.19,26.11,25.89,N/A,N/A +2013,6,11,7,30,94140,93060,92020,56.46,0,5.58,8.14,9.02,9.790000000000001,10.49,11.14,11.75,12.31,13.3,157.24,158.63,159.53,160.43,161.37,162.31,163.29,164.22,166.11,25.71,25.650000000000002,25.57,25.48,25.37,25.27,25.150000000000002,25.04,24.79,N/A,N/A +2013,6,11,8,30,94170,93090,92050,64.39,0,3.64,5.91,6.75,7.5600000000000005,8.3,8.98,9.66,10.31,11.46,155.16,157.53,158.89000000000001,160.16,161.31,162.37,163.45000000000002,164.48,166.55,24.89,24.900000000000002,24.85,24.79,24.7,24.62,24.52,24.43,24.22,N/A,N/A +2013,6,11,9,30,94170,93090,92050,69.76,0,3.95,6.21,7.05,7.83,8.55,9.22,9.85,10.44,11.43,148.46,151.87,153.84,155.53,157.04,158.42000000000002,159.75,161,163.42000000000002,24.12,24.16,24.14,24.11,24.060000000000002,24,23.93,23.86,23.68,N/A,N/A +2013,6,11,10,30,94160,93080,92030,75.31,0,3.97,6.22,7.1000000000000005,7.890000000000001,8.61,9.26,9.88,10.450000000000001,11.450000000000001,145.33,147.78,149.34,150.73,152.08,153.41,154.82,156.18,159.1,23.29,23.27,23.22,23.150000000000002,23.07,22.990000000000002,22.91,22.830000000000002,22.67,N/A,N/A +2013,6,11,11,30,94190,93100,92050,78.60000000000001,0,3.94,6.09,6.87,7.5600000000000005,8.19,8.78,9.35,9.88,10.93,142.47,145.4,147.21,148.84,150.43,151.97,153.53,155,158.05,22.61,22.57,22.51,22.43,22.34,22.26,22.16,22.080000000000002,21.92,N/A,N/A +2013,6,11,12,30,94200,93110,92060,76.56,0,5.7700000000000005,7.9,8.56,9.120000000000001,9.61,10.040000000000001,10.47,10.870000000000001,11.65,151.57,153.1,154,154.9,155.81,156.68,157.69,158.65,160.70000000000002,22.8,22.580000000000002,22.46,22.32,22.19,22.07,21.95,21.830000000000002,21.62,N/A,N/A +2013,6,11,13,30,94260,93180,92120,70.23,0,6.63,8.44,8.89,9.16,9.35,9.48,9.57,9.66,9.8,157.29,157.82,158.14000000000001,158.41,158.68,158.93,159.22,159.49,160.16,23.87,23.36,23.150000000000002,22.94,22.73,22.55,22.35,22.16,21.79,N/A,N/A +2013,6,11,14,30,94280,93190,92150,64.77,0,6.49,8.22,8.700000000000001,8.98,9.17,9.31,9.4,9.47,9.55,160.32,160.49,160.58,160.65,160.72,160.79,160.87,160.95000000000002,161.12,25.09,24.43,24.17,23.93,23.71,23.5,23.28,23.09,22.69,N/A,N/A +2013,6,11,15,30,94290,93220,92170,57.800000000000004,0,6.0600000000000005,7.640000000000001,8.08,8.33,8.49,8.61,8.69,8.76,8.84,159.38,159.59,159.69,159.77,159.84,159.91,159.97,160.03,160.17000000000002,26.38,25.62,25.34,25.09,24.85,24.64,24.41,24.21,23.81,N/A,N/A +2013,6,11,16,30,94280,93200,92160,50.46,0,6.13,7.69,8.11,8.35,8.51,8.620000000000001,8.700000000000001,8.77,8.85,157.64000000000001,157.84,157.91,157.97,158.03,158.09,158.14000000000001,158.19,158.3,27.72,26.92,26.62,26.35,26.1,25.88,25.66,25.45,25.04,N/A,N/A +2013,6,11,17,30,94260,93190,92160,45.230000000000004,0,5.82,7.26,7.65,7.87,8.02,8.13,8.2,8.26,8.33,156.61,156.83,156.97,157.07,157.14000000000001,157.20000000000002,157.25,157.31,157.4,28.98,28.150000000000002,27.84,27.57,27.32,27.09,26.86,26.650000000000002,26.23,N/A,N/A +2013,6,11,18,30,94230,93160,92130,38.63,0,6.2700000000000005,7.82,8.22,8.45,8.6,8.71,8.790000000000001,8.85,8.93,153.79,154.07,154.23,154.34,154.42000000000002,154.49,154.55,154.61,154.72,30.17,29.32,29,28.72,28.46,28.23,28,27.79,27.36,N/A,N/A +2013,6,11,19,30,94160,93100,92070,35.410000000000004,0,6.11,7.61,8.01,8.24,8.39,8.51,8.58,8.65,8.73,156.82,157.15,157.31,157.42000000000002,157.5,157.58,157.65,157.71,157.82,31.1,30.25,29.93,29.650000000000002,29.39,29.16,28.93,28.71,28.29,N/A,N/A +2013,6,11,20,30,94130,93070,92050,34.88,0,6.43,8.03,8.45,8.69,8.86,8.98,9.07,9.14,9.23,153.56,153.98,154.19,154.34,154.46,154.57,154.66,154.75,154.9,31.720000000000002,30.87,30.560000000000002,30.28,30.02,29.79,29.560000000000002,29.34,28.91,N/A,N/A +2013,6,11,21,30,94110,93050,92030,34.53,0,5.5,6.8500000000000005,7.21,7.43,7.58,7.69,7.76,7.83,7.92,150.03,150.48,150.74,150.95000000000002,151.13,151.28,151.42000000000002,151.55,151.79,32.14,31.35,31.05,30.78,30.53,30.3,30.07,29.86,29.44,N/A,N/A +2013,6,11,22,30,94050,93000,91980,31.85,0,5.58,6.97,7.33,7.54,7.69,7.8,7.87,7.930000000000001,8.02,159.04,159.19,159.23,159.22,159.21,159.18,159.15,159.13,159.07,32.45,31.71,31.44,31.18,30.94,30.72,30.5,30.29,29.87,N/A,N/A +2013,6,11,23,30,94020,92970,91950,31.19,0,6.0200000000000005,7.57,7.98,8.22,8.38,8.5,8.59,8.66,8.76,159.02,158.74,158.53,158.3,158.09,157.91,157.72,157.55,157.22,32.36,31.71,31.46,31.220000000000002,30.990000000000002,30.78,30.560000000000002,30.36,29.95,N/A,N/A +2013,6,12,0,30,94020,92970,91940,35.730000000000004,0,6.74,8.56,9.03,9.28,9.44,9.56,9.63,9.69,9.76,153.15,153.05,152.95000000000002,152.82,152.71,152.6,152.5,152.41,152.23,31.580000000000002,31.07,30.86,30.64,30.43,30.22,30.02,29.82,29.42,N/A,N/A +2013,6,12,1,30,94000,92940,91920,36.74,0,6.15,8.24,8.81,9.21,9.51,9.76,9.950000000000001,10.11,10.35,155.07,154.74,154.53,154.31,154.12,153.94,153.78,153.63,153.35,30.7,30.46,30.3,30.12,29.94,29.76,29.57,29.39,29.01,N/A,N/A +2013,6,12,2,30,94060,92990,91970,36.52,0,4.2,6.3,7.0200000000000005,7.6000000000000005,8.08,8.5,8.86,9.19,9.72,140.12,140.6,140.98,141.4,141.87,142.36,142.91,143.44,144.52,29.55,29.5,29.41,29.29,29.16,29.02,28.86,28.71,28.38,N/A,N/A +2013,6,12,3,30,94080,93010,91980,36.800000000000004,0,4.82,7.19,7.98,8.65,9.22,9.72,10.18,10.61,11.33,148.9,148.5,148.33,148.22,148.26,148.38,148.65,148.93,149.76,28.78,28.73,28.66,28.55,28.43,28.3,28.16,28.03,27.73,N/A,N/A +2013,6,12,4,30,94070,93000,91970,42.81,0,4.72,7.22,8.16,8.98,9.71,10.39,11.040000000000001,11.64,12.700000000000001,146.41,146.67000000000002,146.85,147.03,147.26,147.52,147.85,148.19,148.95000000000002,27.79,27.78,27.71,27.62,27.51,27.41,27.28,27.17,26.900000000000002,N/A,N/A +2013,6,12,5,30,94110,93040,92000,47.89,0,4.8500000000000005,7.38,8.32,9.16,9.9,10.57,11.22,11.82,12.9,148.39000000000001,148.6,148.73,148.89000000000001,149.15,149.46,149.92000000000002,150.39000000000001,151.68,27.1,27.080000000000002,27.02,26.94,26.85,26.76,26.650000000000002,26.55,26.330000000000002,N/A,N/A +2013,6,12,6,30,94150,93070,92030,50.870000000000005,0,5.26,7.82,8.75,9.58,10.32,11.01,11.68,12.290000000000001,13.43,151.4,151.65,151.81,152.01,152.28,152.6,153.01,153.41,154.42000000000002,26.43,26.37,26.29,26.18,26.07,25.95,25.810000000000002,25.69,25.41,N/A,N/A +2013,6,12,7,30,94160,93090,92050,58.47,0,7.1000000000000005,9.91,10.8,11.55,12.200000000000001,12.77,13.33,13.84,14.8,155.54,156.1,156.46,156.81,157.17000000000002,157.53,157.92000000000002,158.3,159.14000000000001,25.62,25.46,25.34,25.19,25.04,24.89,24.73,24.57,24.25,N/A,N/A +2013,6,12,8,30,94180,93100,92050,64.2,0,6.6000000000000005,9.28,10.14,10.86,11.51,12.09,12.65,13.17,14.23,156.13,157.03,157.59,158.13,158.66,159.16,159.67000000000002,160.14000000000001,161.1,24.89,24.740000000000002,24.62,24.490000000000002,24.34,24.21,24.05,23.91,23.61,N/A,N/A +2013,6,12,9,30,94190,93110,92060,68.89,0,5.97,8.44,9.27,9.97,10.57,11.1,11.64,12.13,13.09,153.04,153.8,154.24,154.69,155.14000000000001,155.57,156.06,156.52,157.48,24,23.84,23.71,23.57,23.41,23.26,23.09,22.93,22.59,N/A,N/A +2013,6,12,10,30,94200,93110,92060,73.11,0,6.44,9.01,9.8,10.46,11.05,11.58,12.1,12.59,13.55,150.82,152.08,152.81,153.5,154.20000000000002,154.85,155.53,156.18,157.47,23.07,22.88,22.75,22.61,22.45,22.31,22.14,21.990000000000002,21.66,N/A,N/A +2013,6,12,11,30,94220,93130,92080,72.59,0,6.0200000000000005,8.51,9.32,10.02,10.63,11.18,11.71,12.200000000000001,13.15,151.83,153.09,153.86,154.59,155.32,156.02,156.73,157.39000000000001,158.75,22.400000000000002,22.23,22.1,21.96,21.81,21.67,21.5,21.36,21.05,N/A,N/A +2013,6,12,12,30,94280,93190,92130,67.59,0,6.84,9.19,9.93,10.51,10.99,11.4,11.790000000000001,12.13,12.8,153.19,154.14000000000001,154.68,155.20000000000002,155.71,156.21,156.75,157.26,158.38,22.28,22.02,21.87,21.71,21.55,21.39,21.23,21.080000000000002,20.77,N/A,N/A +2013,6,12,13,30,94310,93220,92160,60.19,0,7.08,9,9.5,9.81,10.02,10.17,10.27,10.36,10.51,153.82,154.29,154.57,154.8,155.02,155.22,155.44,155.65,156.17000000000002,23.150000000000002,22.64,22.43,22.21,22.01,21.81,21.61,21.43,21.05,N/A,N/A +2013,6,12,14,30,94320,93230,92180,52.77,0,6.84,8.66,9.14,9.43,9.620000000000001,9.75,9.84,9.91,10,157.73,158.01,158.17000000000002,158.31,158.42000000000002,158.52,158.63,158.73,158.95000000000002,24.48,23.81,23.56,23.32,23.09,22.89,22.68,22.48,22.080000000000002,N/A,N/A +2013,6,12,15,30,94310,93230,92180,47.63,0,6.86,8.64,9.120000000000001,9.4,9.58,9.700000000000001,9.790000000000001,9.86,9.94,157.28,157.49,157.61,157.70000000000002,157.78,157.84,157.9,157.96,158.08,25.67,24.91,24.63,24.37,24.14,23.92,23.7,23.5,23.09,N/A,N/A +2013,6,12,16,30,94290,93210,92170,43.65,0,6.8100000000000005,8.53,8.98,9.24,9.41,9.53,9.61,9.68,9.76,153.35,153.71,153.9,154.03,154.14000000000001,154.24,154.33,154.41,154.57,27.04,26.22,25.92,25.650000000000002,25.400000000000002,25.18,24.96,24.75,24.34,N/A,N/A +2013,6,12,17,30,94300,93230,92190,39.68,0,6.01,7.5,7.92,8.15,8.3,8.41,8.49,8.55,8.620000000000001,150.92000000000002,151.32,151.53,151.68,151.81,151.91,152.02,152.12,152.3,28.46,27.63,27.310000000000002,27.03,26.78,26.55,26.32,26.12,25.69,N/A,N/A +2013,6,12,18,30,94210,93140,92110,36.410000000000004,0,6,7.49,7.88,8.11,8.26,8.370000000000001,8.44,8.5,8.57,152.59,152.92000000000002,153.09,153.21,153.31,153.38,153.46,153.52,153.63,29.54,28.69,28.37,28.09,27.84,27.61,27.37,27.17,26.740000000000002,N/A,N/A +2013,6,12,19,30,94190,93120,92090,33.18,0,6.2,7.73,8.14,8.370000000000001,8.53,8.64,8.72,8.790000000000001,8.870000000000001,149.18,149.5,149.64000000000001,149.74,149.81,149.88,149.95000000000002,150,150.12,30.55,29.69,29.38,29.09,28.84,28.61,28.37,28.16,27.73,N/A,N/A +2013,6,12,20,30,94140,93080,92050,30.93,0,5.84,7.28,7.68,7.9,8.06,8.17,8.26,8.32,8.41,146.78,147.26,147.51,147.69,147.85,147.98,148.11,148.22,148.43,31.240000000000002,30.42,30.1,29.830000000000002,29.580000000000002,29.34,29.11,28.900000000000002,28.47,N/A,N/A +2013,6,12,21,30,94110,93050,92020,29.2,0,5.88,7.34,7.74,7.96,8.120000000000001,8.23,8.32,8.38,8.47,143.14000000000001,143.70000000000002,144,144.22,144.41,144.57,144.71,144.84,145.09,31.7,30.900000000000002,30.6,30.330000000000002,30.09,29.86,29.63,29.42,29,N/A,N/A +2013,6,12,22,30,94070,93010,91990,28.51,0,6.25,7.84,8.27,8.51,8.68,8.790000000000001,8.870000000000001,8.94,9.03,138.45000000000002,139.14000000000001,139.52,139.81,140.05,140.26,140.45000000000002,140.62,140.95000000000002,31.89,31.14,30.86,30.61,30.37,30.14,29.92,29.71,29.3,N/A,N/A +2013,6,12,23,30,94060,93000,91970,28.47,0,6.16,7.79,8.24,8.51,8.71,8.84,8.950000000000001,9.03,9.15,146.84,146.70000000000002,146.62,146.52,146.43,146.35,146.28,146.22,146.1,31.82,31.17,30.92,30.68,30.45,30.23,30.01,29.810000000000002,29.400000000000002,N/A,N/A +2013,6,13,0,30,94040,92980,91960,29.43,0,5.92,7.58,8.040000000000001,8.32,8.53,8.68,8.790000000000001,8.89,9.03,148.56,148.42000000000002,148.34,148.25,148.17000000000002,148.08,148.01,147.95000000000002,147.83,31.36,30.87,30.66,30.44,30.23,30.02,29.810000000000002,29.62,29.21,N/A,N/A +2013,6,13,1,30,94040,92980,91950,32.480000000000004,0,6.23,8.56,9.25,9.77,10.17,10.5,10.76,10.98,11.31,137.68,138.25,138.53,138.78,139.01,139.23,139.45000000000002,139.64000000000001,139.99,30.2,29.98,29.830000000000002,29.650000000000002,29.48,29.3,29.11,28.93,28.55,N/A,N/A +2013,6,13,2,30,94080,93010,91980,35.64,0,4.4,6.98,7.96,8.82,9.55,10.18,10.69,11.13,11.700000000000001,144.04,144.11,144.15,144.16,144.20000000000002,144.27,144.36,144.46,144.65,29.080000000000002,29.060000000000002,29,28.91,28.8,28.69,28.560000000000002,28.43,28.12,N/A,N/A +2013,6,13,3,30,94140,93070,92030,38.49,0,3.7,6.26,7.29,8.24,9.120000000000001,9.94,10.72,11.46,12.66,137.57,138.19,138.64000000000001,139.13,139.70000000000002,140.29,140.92000000000002,141.52,142.62,28.09,28.17,28.14,28.080000000000002,28,27.91,27.8,27.7,27.44,N/A,N/A +2013,6,13,4,30,94140,93070,92030,38.79,0,4.23,6.76,7.75,8.65,9.46,10.21,10.93,11.61,12.870000000000001,135.56,135.68,135.89000000000001,136.2,136.69,137.28,138,138.71,140.13,27.36,27.41,27.38,27.32,27.25,27.17,27.09,27.01,26.82,N/A,N/A +2013,6,13,5,30,94150,93080,92040,41.13,0,4.15,6.73,7.75,8.700000000000001,9.58,10.41,11.22,11.99,13.42,140.11,140.24,140.43,140.79,141.4,142.13,143.04,143.92000000000002,145.69,26.51,26.57,26.55,26.5,26.45,26.39,26.34,26.28,26.16,N/A,N/A +2013,6,13,6,30,94170,93090,92050,44.31,0,5.0200000000000005,7.68,8.67,9.57,10.39,11.17,11.91,12.61,13.96,142.39000000000001,142.69,142.89000000000001,143.18,143.62,144.13,144.77,145.39000000000001,146.78,26.02,26.05,26.01,25.95,25.88,25.810000000000002,25.73,25.66,25.5,N/A,N/A +2013,6,13,7,30,94170,93090,92050,48.96,0,4.05,6.63,7.63,8.55,9.43,10.26,11.11,11.94,13.66,141,141.48,141.73,142,142.48,143.03,143.84,144.65,146.6,25.09,25.14,25.12,25.07,25.02,24.97,24.900000000000002,24.85,24.72,N/A,N/A +2013,6,13,8,30,94220,93140,92100,56.09,0,4.82,7.32,8.24,9.08,9.86,10.59,11.33,12.030000000000001,13.51,142.32,143.38,143.98,144.56,145.19,145.83,146.56,147.28,148.92000000000002,24.580000000000002,24.5,24.400000000000002,24.28,24.150000000000002,24.03,23.87,23.73,23.42,N/A,N/A +2013,6,13,9,30,94270,93190,92140,66.39,0,4.42,6.7,7.57,8.35,9.06,9.71,10.36,10.97,12.16,141.02,142.4,143.24,143.98,144.69,145.38,146.12,146.84,148.45000000000002,23.68,23.57,23.47,23.35,23.21,23.080000000000002,22.92,22.78,22.46,N/A,N/A +2013,6,13,10,30,94250,93170,92110,80.92,0,5.07,7.29,8.06,8.73,9.31,9.84,10.36,10.85,11.82,142.17000000000002,143.39000000000001,144.13,144.76,145.37,145.94,146.57,147.19,148.6,23.03,22.86,22.740000000000002,22.59,22.44,22.3,22.13,21.990000000000002,21.68,N/A,N/A +2013,6,13,11,30,94300,93210,92150,82.24,0,5.11,7.34,8.08,8.72,9.290000000000001,9.8,10.290000000000001,10.74,11.64,138.09,139.97,141.05,142.01,142.91,143.76,144.62,145.43,147.20000000000002,22.490000000000002,22.3,22.17,22.03,21.88,21.740000000000002,21.57,21.43,21.13,N/A,N/A +2013,6,13,12,30,94320,93230,92180,80.36,0,4.99,6.96,7.72,8.35,8.8,9.120000000000001,9.6,10.07,10.96,138.31,140.21,140.89000000000001,140.93,141.68,142.72,143.77,144.74,146.68,22.31,22.01,21.85,21.68,21.5,21.330000000000002,21.17,21.03,20.75,N/A,N/A +2013,6,13,13,30,94350,93270,92210,71.60000000000001,0,6.09,7.72,8.16,8.43,8.61,8.73,8.81,8.89,9.01,145.06,145.78,146.17000000000002,146.51,146.81,147.1,147.42000000000002,147.72,148.47,23.330000000000002,22.8,22.580000000000002,22.36,22.150000000000002,21.96,21.76,21.580000000000002,21.2,N/A,N/A +2013,6,13,14,30,94390,93300,92250,63.85,0,5.64,7.12,7.54,7.79,7.95,8.07,8.15,8.21,8.290000000000001,147.20000000000002,147.81,148.14000000000001,148.4,148.62,148.83,149.03,149.22,149.63,24.68,24.01,23.76,23.52,23.29,23.09,22.87,22.68,22.29,N/A,N/A +2013,6,13,15,30,94370,93290,92240,58.33,0,5.45,6.83,7.24,7.47,7.63,7.74,7.82,7.88,7.96,144.33,144.88,145.18,145.41,145.59,145.74,145.89000000000001,146.02,146.28,26.060000000000002,25.32,25.03,24.78,24.54,24.32,24.1,23.91,23.5,N/A,N/A +2013,6,13,16,30,94340,93260,92220,53.7,0,5.47,6.83,7.21,7.43,7.57,7.67,7.74,7.8,7.86,146.66,147.09,147.32,147.48,147.62,147.73,147.84,147.93,148.12,27.28,26.48,26.18,25.91,25.67,25.45,25.22,25.02,24.6,N/A,N/A +2013,6,13,17,30,94310,93240,92200,48.69,0,5.43,6.76,7.13,7.33,7.47,7.57,7.640000000000001,7.7,7.7700000000000005,141.74,142.27,142.54,142.73,142.89000000000001,143.01,143.13,143.23,143.43,28.580000000000002,27.76,27.44,27.17,26.92,26.69,26.46,26.25,25.830000000000002,N/A,N/A +2013,6,13,18,30,94260,93190,92160,44.660000000000004,0,5.2,6.45,6.79,6.98,7.11,7.2,7.26,7.32,7.38,139.20000000000002,139.68,139.94,140.1,140.23,140.33,140.43,140.51,140.66,29.66,28.84,28.52,28.240000000000002,27.990000000000002,27.75,27.53,27.32,26.89,N/A,N/A +2013,6,13,19,30,94200,93140,92110,41.03,0,5.42,6.7,7.0600000000000005,7.25,7.390000000000001,7.48,7.55,7.61,7.68,137.23,137.59,137.76,137.85,137.92000000000002,137.95000000000002,137.99,138.02,138.07,30.6,29.77,29.45,29.16,28.91,28.68,28.45,28.240000000000002,27.810000000000002,N/A,N/A +2013,6,13,20,30,94140,93080,92050,37.62,0,5.5,6.8100000000000005,7.18,7.38,7.53,7.63,7.7,7.76,7.84,132.82,133.35,133.64000000000001,133.82,133.97,134.08,134.19,134.28,134.43,31.37,30.54,30.23,29.95,29.7,29.47,29.240000000000002,29.02,28.6,N/A,N/A +2013,6,13,21,30,94070,93010,91990,35.89,0,5.5,6.8500000000000005,7.23,7.45,7.6000000000000005,7.71,7.79,7.86,7.95,135.98,136.38,136.53,136.6,136.64000000000001,136.66,136.67000000000002,136.67000000000002,136.67000000000002,31.84,31.04,30.740000000000002,30.46,30.22,29.990000000000002,29.76,29.55,29.13,N/A,N/A +2013,6,13,22,30,94020,92970,91950,34.85,0,5.98,7.48,7.91,8.15,8.31,8.43,8.51,8.58,8.68,131.55,132.02,132.3,132.48,132.62,132.74,132.84,132.93,133.09,32.08,31.310000000000002,31.04,30.77,30.53,30.310000000000002,30.080000000000002,29.88,29.46,N/A,N/A +2013,6,13,23,30,93990,92940,91920,33.67,0,6.36,8.01,8.46,8.72,8.89,9.02,9.1,9.18,9.27,132.36,132.84,133.09,133.28,133.45,133.6,133.75,133.88,134.14000000000001,31.94,31.27,31.02,30.77,30.55,30.330000000000002,30.11,29.91,29.5,N/A,N/A +2013,6,14,0,30,94000,92950,91930,36.26,0,6.43,8.24,8.77,9.08,9.290000000000001,9.44,9.56,9.65,9.77,139.63,139.65,139.59,139.48,139.38,139.29,139.20000000000002,139.11,138.96,31.38,30.88,30.68,30.45,30.25,30.04,29.830000000000002,29.64,29.240000000000002,N/A,N/A +2013,6,14,1,30,93990,92930,91910,37.82,0,6.33,8.39,8.97,9.36,9.66,9.88,10.06,10.22,10.44,147.83,147.58,147.44,147.28,147.16,147.05,146.94,146.84,146.67000000000002,30.52,30.25,30.080000000000002,29.89,29.71,29.52,29.330000000000002,29.14,28.76,N/A,N/A +2013,6,14,2,30,93990,92930,91900,39.43,0,6.3,8.74,9.5,10.08,10.55,10.94,11.26,11.55,11.98,144.72,144.88,144.97,145.03,145.1,145.16,145.22,145.28,145.34,29.72,29.51,29.37,29.2,29.02,28.85,28.66,28.490000000000002,28.12,N/A,N/A +2013,6,14,3,30,94030,92970,91940,42.53,0,5.12,7.38,8.13,8.75,9.27,9.74,10.17,10.57,11.31,139.95000000000002,140.47,140.82,141.18,141.59,141.99,142.41,142.79,143.48,28.92,28.76,28.63,28.48,28.310000000000002,28.150000000000002,27.97,27.8,27.44,N/A,N/A +2013,6,14,4,30,94060,92990,91960,45.64,0,3.84,5.83,6.54,7.13,7.63,8.06,8.46,8.82,9.46,136.2,135.93,135.86,135.9,136.05,136.27,136.57,136.87,137.58,28.14,28.05,27.96,27.830000000000002,27.69,27.55,27.39,27.23,26.89,N/A,N/A +2013,6,14,5,30,94020,92950,91920,45.980000000000004,0,4.3500000000000005,6.640000000000001,7.49,8.24,8.89,9.47,10.01,10.52,11.44,136.70000000000002,136.38,136.18,136.1,136.2,136.39000000000001,136.72,137.06,137.94,27.47,27.38,27.28,27.16,27.03,26.900000000000002,26.75,26.62,26.310000000000002,N/A,N/A +2013,6,14,6,30,94040,92960,91930,48.22,0,4,6.29,7.18,8.01,8.73,9.38,10.02,10.61,11.71,126.39,126.73,127.07000000000001,127.55,128.18,128.86,129.69,130.52,132.31,26.62,26.54,26.45,26.34,26.21,26.09,25.95,25.82,25.53,N/A,N/A +2013,6,14,7,30,94060,92990,91950,51.76,0,5.8100000000000005,8.27,9.08,9.75,10.32,10.82,11.26,11.66,12.36,139.63,139.36,139.25,139.26,139.42000000000002,139.65,140.04,140.42000000000002,141.38,26.09,25.95,25.830000000000002,25.69,25.55,25.400000000000002,25.25,25.1,24.78,N/A,N/A +2013,6,14,8,30,94110,93030,91990,59.06,0,4.61,6.69,7.44,8.08,8.64,9.13,9.620000000000001,10.07,10.97,140.55,140.98,141.27,141.6,142.01,142.47,143.03,143.58,144.89000000000001,24.93,24.77,24.650000000000002,24.5,24.330000000000002,24.18,24,23.84,23.490000000000002,N/A,N/A +2013,6,14,9,30,94120,93030,91990,68.23,0,4.19,6.18,6.91,7.5200000000000005,8.06,8.55,9,9.43,10.22,135.82,137.43,138.48,139.46,140.46,141.44,142.46,143.42000000000002,145.39000000000001,24.09,23.92,23.8,23.64,23.490000000000002,23.330000000000002,23.16,23.01,22.67,N/A,N/A +2013,6,14,10,30,94110,93020,91980,73.18,0,4.41,6.36,7.05,7.640000000000001,8.14,8.58,8.99,9.38,10.1,135.81,137.32,138.3,139.33,140.34,141.31,142.38,143.39000000000001,145.49,23.51,23.330000000000002,23.2,23.05,22.89,22.740000000000002,22.56,22.400000000000002,22.06,N/A,N/A +2013,6,14,11,30,94140,93060,92010,79.32000000000001,0,4,5.8,6.45,7.01,7.53,8.02,8.49,8.93,9.65,136.53,137.32,137.78,138.28,138.91,139.6,140.08,140.49,141.82,22.990000000000002,22.79,22.650000000000002,22.490000000000002,22.32,22.150000000000002,21.97,21.81,21.45,N/A,N/A +2013,6,14,12,30,94180,93090,92040,89.55,9.200000000000001,4.38,6.17,6.96,7.59,8.18,8.73,9.13,9.47,9.96,145.1,145.63,145.92000000000002,145.59,145.03,144.32,143.95000000000002,143.70000000000002,144.43,21.75,21.54,21.47,21.42,21.43,21.46,21.400000000000002,21.32,21.080000000000002,N/A,N/A +2013,6,14,13,30,94170,93090,92040,80.10000000000001,0,5.72,7.34,7.82,8.1,8.3,8.46,8.57,8.67,8.84,129.3,130.49,131.15,131.65,132.1,132.5,132.93,133.33,134.25,23.36,22.85,22.64,22.44,22.240000000000002,22.05,21.86,21.68,21.32,N/A,N/A +2013,6,14,14,30,94180,93100,92050,79,0,4.79,6.26,6.67,6.95,7.18,7.37,7.54,7.69,7.98,161.99,162.02,161.93,161.73,161.48,161.22,161.08,160.96,160.6,23.52,23.19,23.02,22.830000000000002,22.650000000000002,22.48,22.29,22.12,21.77,N/A,N/A +2013,6,14,15,30,94210,93120,92070,72.55,0,5.32,6.68,7.07,7.3,7.45,7.55,7.63,7.69,7.7700000000000005,132.19,133.72,134.41,135.02,135.57,136.08,136.62,137.12,138.24,23.42,22.75,22.5,22.27,22.06,21.86,21.66,21.48,21.11,N/A,N/A +2013,6,14,16,30,94220,93140,92090,70.64,1.8,6.18,7.76,8.21,8.46,8.620000000000001,8.74,8.81,8.870000000000001,8.950000000000001,157.26,156.69,156.20000000000002,155.8,155.48,155.22,154.97,154.74,154.37,24.22,23.55,23.3,23.06,22.84,22.64,22.43,22.240000000000002,21.85,N/A,N/A +2013,6,14,17,30,94200,93110,92060,69.93,5.5,3.8200000000000003,5.08,5.46,5.69,5.88,6.05,6.2700000000000005,6.47,6.83,199.69,195.73000000000002,192.89000000000001,190.23,188.71,187.86,187.1,186.42000000000002,184.8,23.44,23.41,23.36,23.2,23.02,22.82,22.650000000000002,22.490000000000002,22.2,N/A,N/A +2013,6,14,18,30,94180,93090,92040,79.97,1.8,5.3,6.32,6.55,6.63,6.65,6.65,6.65,6.640000000000001,6.78,199.67000000000002,197.26,195.34,193.39000000000001,191.5,189.6,187.41,185.32,180.24,22.56,22.04,21.830000000000002,21.650000000000002,21.48,21.330000000000002,21.18,21.05,20.81,N/A,N/A +2013,6,14,19,30,94120,93040,91990,83.47,0,1.75,1.97,1.98,1.96,1.94,1.94,2.09,2.2800000000000002,2.89,42.69,47.33,50.33,54.36,60.84,68.58,78.42,88.61,103.15,22.740000000000002,22.35,22.18,22.01,21.86,21.73,21.61,21.52,21.43,N/A,N/A +2013,6,14,20,30,94030,92970,91930,54.56,0,2.43,3.34,3.73,4.03,4.28,4.51,4.72,4.9,5.24,131.74,135.34,137.5,138.89000000000001,140,140.91,141.67000000000002,142.33,143.4,27.94,27.35,27.1,26.86,26.64,26.44,26.23,26.04,25.64,N/A,N/A +2013,6,14,21,30,93960,92900,91870,45.26,0,5.6000000000000005,6.99,7.42,7.66,7.83,7.96,8.06,8.14,8.27,141.31,141.72,142,142.27,142.5,142.69,142.89000000000001,143.07,143.41,29.45,28.75,28.490000000000002,28.240000000000002,28.01,27.79,27.580000000000002,27.38,26.97,N/A,N/A +2013,6,14,22,30,93900,92840,91810,42.37,0,7.21,9.06,9.56,9.81,9.97,10.08,10.14,10.18,10.21,140.72,140.65,140.59,140.52,140.45000000000002,140.39000000000001,140.33,140.28,140.18,29.86,29.22,28.98,28.73,28.51,28.3,28.09,27.89,27.490000000000002,N/A,N/A +2013,6,14,23,30,93880,92820,91790,42.22,0,4.99,6.42,6.9,7.2,7.43,7.59,7.73,7.8500000000000005,8.02,139.74,139.17000000000002,139.1,139.05,139.01,138.98,138.98,139,139.07,30.07,29.55,29.330000000000002,29.11,28.900000000000002,28.69,28.48,28.29,27.89,N/A,N/A +2013,6,15,0,30,93880,92820,91790,45.27,0,6.9,9.18,9.86,10.33,10.700000000000001,11.01,11.26,11.48,11.83,154.85,153.34,152.54,151.78,151.14000000000001,150.58,150.09,149.67000000000002,149.01,29.150000000000002,28.96,28.82,28.650000000000002,28.48,28.3,28.12,27.94,27.57,N/A,N/A +2013,6,15,1,30,93870,92810,91780,46.26,0,4.08,6.36,7.19,7.84,8.370000000000001,8.8,9.14,9.450000000000001,9.9,141.84,142.89000000000001,143.57,144.34,145.06,145.73,146.32,146.84,147.64000000000001,28.73,28.8,28.76,28.66,28.53,28.39,28.22,28.060000000000002,27.7,N/A,N/A +2013,6,15,2,30,93870,92810,91780,45.57,0,4.07,6.22,6.98,7.59,8.1,8.540000000000001,8.92,9.26,9.83,136.42000000000002,136.76,137.08,137.57,138.14000000000001,138.76,139.39000000000001,139.98,141.03,28.62,28.62,28.55,28.45,28.32,28.19,28.03,27.88,27.54,N/A,N/A +2013,6,15,3,30,93960,92890,91860,55.120000000000005,0,4.98,7.13,7.79,8.31,8.68,8.96,9.16,9.31,9.51,190.84,193.98000000000002,195.51,196.64000000000001,197.3,197.63,197.53,197.29,195.8,26.990000000000002,26.93,26.84,26.71,26.580000000000002,26.45,26.310000000000002,26.17,25.88,N/A,N/A +2013,6,15,4,30,93970,92900,91860,57.85,0,1.92,3.0300000000000002,3.46,3.9,4.3,4.69,5.07,5.44,6.16,156.41,160.14000000000001,162.62,164.78,166.48,167.84,168.69,169.34,169.56,26.51,26.43,26.35,26.25,26.14,26.03,25.91,25.8,25.55,N/A,N/A +2013,6,15,5,30,94000,92920,91890,64.22,0,2,3.83,4.41,4.93,5.3500000000000005,5.69,5.98,6.24,6.7700000000000005,166.13,173.05,177.46,181.4,184.41,186.75,188.46,189.89000000000001,190.84,25.47,25.71,25.69,25.64,25.560000000000002,25.46,25.3,25.150000000000002,24.79,N/A,N/A +2013,6,15,6,30,94030,92950,91910,62.76,0,1.55,2.34,2.69,3.09,3.5100000000000002,3.96,4.4,4.83,5.51,138.23,147.35,153.44,159.63,164.51,168.62,171.22,173.36,174.69,25.11,24.98,24.900000000000002,24.810000000000002,24.7,24.6,24.47,24.36,24.09,N/A,N/A +2013,6,15,7,30,94070,92990,91950,63.17,0,1.8,3.2600000000000002,3.9,4.5,5.07,5.61,6.17,6.72,7.94,154.49,155.73,156.45000000000002,157.12,157.65,158.1,158.28,158.39000000000001,157.85,25.23,25.1,25,24.87,24.740000000000002,24.61,24.46,24.330000000000002,24.01,N/A,N/A +2013,6,15,8,30,94090,93010,91970,58.86,0,3.04,5.05,5.99,6.890000000000001,7.640000000000001,8.3,8.82,9.27,9.88,132.16,132.11,132.26,132.43,132.9,133.53,134.49,135.47,137.82,24.830000000000002,24.8,24.77,24.72,24.64,24.55,24.42,24.29,23.96,N/A,N/A +2013,6,15,9,30,94100,93020,91970,60.38,0,3.45,5.32,5.93,6.43,6.83,7.17,7.46,7.7,8.08,151.25,150.36,149.82,149.37,148.98,148.64000000000001,148.36,148.12,147.96,23.98,24,23.93,23.82,23.7,23.57,23.41,23.26,22.91,N/A,N/A +2013,6,15,10,30,94110,93020,91970,72.21000000000001,0,3.9,5.66,6.24,6.69,7.05,7.3500000000000005,7.640000000000001,7.91,8.5,157.6,158.38,158.83,159.27,159.59,159.83,159.81,159.71,158.71,22.87,22.75,22.63,22.48,22.32,22.16,21.97,21.81,21.43,N/A,N/A +2013,6,15,11,30,94140,93050,92000,71.74,0,3.8200000000000003,5.2,5.65,5.99,6.2700000000000005,6.49,6.7,6.88,7.28,143.37,144.54,145.06,145.3,145.58,145.88,146.07,146.22,146.24,22.740000000000002,22.47,22.32,22.14,21.96,21.78,21.59,21.41,21.03,N/A,N/A +2013,6,15,12,30,94190,93100,92050,64.82000000000001,0,4.4,5.75,6.18,6.54,6.890000000000001,7.24,7.37,7.47,7.92,130.26,132.16,133.38,134.71,136.24,137.82,138.49,139.09,142.52,22.09,21.78,21.61,21.42,21.23,21.05,20.84,20.650000000000002,20.31,N/A,N/A +2013,6,15,13,30,94230,93130,92070,74.32000000000001,0,4.18,5.23,5.48,5.62,5.72,5.8,5.9,6,6.3500000000000005,131.4,132.13,132.46,132.64000000000001,132.81,132.96,133.24,133.55,135.17000000000002,21.43,21.080000000000002,20.900000000000002,20.7,20.5,20.31,20.11,19.92,19.53,N/A,N/A +2013,6,15,14,30,94260,93170,92110,78.82000000000001,0,4.14,5.24,5.58,5.78,5.91,6,6.07,6.13,6.23,142.76,143.92000000000002,144.69,145.4,146.08,146.72,147.4,148.02,149.36,22.11,21.63,21.42,21.21,21,20.81,20.62,20.44,20.080000000000002,N/A,N/A +2013,6,15,15,30,94250,93160,92110,73.14,0,4.19,5.23,5.57,5.75,5.88,5.97,6.03,6.08,6.15,139.55,140.63,141.29,141.78,142.19,142.56,142.92000000000002,143.25,143.94,23.400000000000002,22.72,22.45,22.2,21.98,21.78,21.57,21.38,20.98,N/A,N/A +2013,6,15,16,30,94240,93160,92110,65.5,0,4.12,5.17,5.5,5.69,5.82,5.92,6,6.0600000000000005,6.15,152.97,153.77,154.18,154.46,154.69,154.88,155.05,155.21,155.52,25.17,24.48,24.21,23.96,23.73,23.51,23.3,23.1,22.69,N/A,N/A +2013,6,15,17,30,94210,93130,92090,62.76,0,3.79,4.76,5.0600000000000005,5.22,5.34,5.43,5.5,5.5600000000000005,5.64,149.81,150.51,150.89000000000001,151.11,151.28,151.41,151.53,151.64000000000001,151.84,25.89,25.36,25.14,24.92,24.71,24.51,24.3,24.11,23.71,N/A,N/A +2013,6,15,18,30,94160,93090,92060,56.34,0,3.16,3.98,4.25,4.42,4.54,4.64,4.72,4.79,4.89,144.94,145.09,145.41,145.67000000000002,145.89000000000001,146.07,146.24,146.4,146.69,27.54,26.93,26.69,26.45,26.23,26.02,25.8,25.61,25.2,N/A,N/A +2013,6,15,19,30,94130,93060,92030,56.78,0,4.46,5.66,6,6.2,6.34,6.43,6.5,6.5600000000000005,6.63,139.31,139.98,140.37,140.67000000000002,140.93,141.16,141.37,141.56,141.94,27.76,27.27,27.04,26.810000000000002,26.6,26.38,26.17,25.98,25.57,N/A,N/A +2013,6,15,20,30,94090,93020,91990,50.7,0,4.41,5.37,5.65,5.7700000000000005,5.8500000000000005,5.9,5.93,5.95,5.97,147.81,147.62,147.61,147.59,147.59,147.61,147.65,147.69,147.84,28.85,28.1,27.8,27.54,27.310000000000002,27.09,26.87,26.67,26.27,N/A,N/A +2013,6,15,21,30,94010,92940,91920,48.300000000000004,0,4.9,6,6.28,6.43,6.5200000000000005,6.57,6.6000000000000005,6.62,6.62,149.07,149.39000000000001,149.45000000000002,149.41,149.34,149.24,149.11,148.97,148.67000000000002,29.86,29.1,28.82,28.55,28.310000000000002,28.080000000000002,27.86,27.66,27.240000000000002,N/A,N/A +2013,6,15,22,30,93970,92910,91890,47.32,0,5.11,6.32,6.67,6.8500000000000005,6.98,7.0600000000000005,7.12,7.17,7.22,139.18,140.15,140.55,140.83,141.07,141.29,141.48,141.66,141.98,30.1,29.38,29.11,28.85,28.62,28.400000000000002,28.18,27.97,27.560000000000002,N/A,N/A +2013,6,15,23,30,93930,92870,91850,48.19,0,5.38,6.84,7.23,7.44,7.59,7.68,7.75,7.79,7.84,144.41,145.16,145.47,145.67000000000002,145.83,145.96,146.07,146.17000000000002,146.34,29.71,29.32,29.13,28.92,28.72,28.52,28.32,28.13,27.740000000000002,N/A,N/A +2013,6,16,0,30,93920,92860,91830,46.09,0,5.44,6.91,7.34,7.58,7.75,7.86,7.94,8.01,8.1,140.91,141.24,141.42000000000002,141.55,141.68,141.79,141.91,142.03,142.28,30.04,29.57,29.37,29.150000000000002,28.94,28.740000000000002,28.54,28.34,27.95,N/A,N/A +2013,6,16,1,30,93910,92850,91830,48.04,0,4.0200000000000005,5.69,6.23,6.63,6.93,7.17,7.36,7.5200000000000005,7.76,137.26,138.14000000000001,138.72,139.33,139.95000000000002,140.57,141.21,141.82,143.02,29.54,29.35,29.22,29.05,28.87,28.7,28.51,28.330000000000002,27.96,N/A,N/A +2013,6,16,2,30,93920,92860,91830,51.410000000000004,0,2.69,4.58,5.29,5.88,6.38,6.8,7.15,7.46,7.94,138.23,138.95000000000002,139.56,140.44,141.32,142.22,143.02,143.73,144.84,28.75,28.82,28.79,28.71,28.61,28.490000000000002,28.34,28.2,27.87,N/A,N/A +2013,6,16,3,30,93970,92900,91880,52.77,0,2.54,4.67,5.54,6.41,7.21,7.97,8.65,9.27,9.99,144.49,144.63,144.82,145.05,145.56,146.3,147.20000000000002,148.13,149.59,28.17,28.38,28.41,28.41,28.38,28.330000000000002,28.25,28.17,27.93,N/A,N/A +2013,6,16,4,30,93970,92910,91880,53.89,0,2.85,4.93,5.7,6.41,7.0600000000000005,7.66,8.25,8.83,9.74,149.3,148.27,147.89000000000001,148.18,148.98,150.13,151.36,152.57,154.68,27.650000000000002,27.98,28.080000000000002,28.12,28.13,28.1,28.05,27.990000000000002,27.79,N/A,N/A +2013,6,16,5,30,94000,92930,91900,55.81,0,2.62,4.82,5.66,6.46,7.25,8.040000000000001,8.89,9.74,11.42,138.98,137.58,137.01,137.12,138.04,139.62,141.71,143.93,148.29,26.830000000000002,27.13,27.18,27.18,27.17,27.150000000000002,27.150000000000002,27.150000000000002,27.16,N/A,N/A +2013,6,16,6,30,94030,92960,91920,55.370000000000005,0,3.18,5.48,6.38,7.21,7.98,8.71,9.450000000000001,10.14,11.61,141.09,140.78,140.76,140.96,141.59,142.44,143.63,144.83,147.41,26.04,26.18,26.17,26.12,26.04,25.95,25.830000000000002,25.71,25.400000000000002,N/A,N/A +2013,6,16,7,30,94080,93000,91960,66.11,0,4.49,6.88,7.82,8.68,9.46,10.200000000000001,10.94,11.66,12.99,144.28,145.5,146.29,146.87,147.44,148.01,148.63,149.25,150.34,25.22,25.19,25.13,25.04,24.94,24.830000000000002,24.71,24.59,24.310000000000002,N/A,N/A +2013,6,16,8,30,94110,93030,91990,74.29,0,5.03,7.36,8.22,8.98,9.66,10.290000000000001,10.92,11.5,12.63,147.8,148.65,149.11,149.44,149.75,150.04,150.39000000000001,150.72,151.56,24.55,24.43,24.32,24.18,24.04,23.900000000000002,23.75,23.6,23.28,N/A,N/A +2013,6,16,9,30,94100,93020,91970,81.61,0,4.37,6.54,7.390000000000001,8.13,8.8,9.42,10.02,10.58,11.69,146.42000000000002,148.11,149.14000000000001,149.93,150.59,151.18,151.73,152.24,153.34,23.88,23.75,23.650000000000002,23.52,23.38,23.25,23.11,22.98,22.7,N/A,N/A +2013,6,16,10,30,94140,93060,92010,86.02,0,3.95,6.04,6.87,7.6000000000000005,8.24,8.8,9.36,9.88,10.91,141.22,143.21,144.4,145.35,146.21,146.99,147.8,148.57,150.25,23.35,23.240000000000002,23.14,23.01,22.88,22.75,22.6,22.47,22.18,N/A,N/A +2013,6,16,11,30,94140,93060,92010,85.13,0,4.72,6.51,7.16,7.71,8.18,8.6,9,9.370000000000001,10.16,151.55,152.95000000000002,153.86,154.69,155.48,156.26,156.96,157.6,158.92000000000002,23.75,23.490000000000002,23.330000000000002,23.16,22.98,22.81,22.63,22.46,22.13,N/A,N/A +2013,6,16,12,30,94210,93130,92080,86.66,0,3.48,4.6000000000000005,5,5.3500000000000005,5.72,6.1000000000000005,6.61,7.140000000000001,8.02,144.92000000000002,146.25,147.17000000000002,148.21,149.33,150.52,151.96,153.41,155.62,23.52,23.2,23.03,22.84,22.66,22.48,22.3,22.13,21.78,N/A,N/A +2013,6,16,13,30,94240,93150,92100,83.45,0,4.18,5.36,5.72,5.95,6.13,6.26,6.38,6.49,6.73,154.37,155.16,155.72,156.25,156.76,157.26,157.83,158.38,159.70000000000002,23.92,23.5,23.3,23.09,22.900000000000002,22.71,22.51,22.330000000000002,21.97,N/A,N/A +2013,6,16,14,30,94230,93150,92100,75.22,0,4.96,6.25,6.640000000000001,6.86,7.0200000000000005,7.12,7.2,7.26,7.3500000000000005,161.78,161.91,161.99,162.05,162.11,162.16,162.22,162.28,162.44,25.02,24.39,24.150000000000002,23.91,23.7,23.490000000000002,23.28,23.09,22.7,N/A,N/A +2013,6,16,15,30,94220,93140,92100,63.5,0,5.72,7.17,7.58,7.8100000000000005,7.96,8.07,8.15,8.21,8.28,164.07,164.09,164.09,164.09,164.09,164.09,164.1,164.11,164.15,26.89,26.16,25.89,25.64,25.41,25.19,24.97,24.78,24.37,N/A,N/A +2013,6,16,16,30,94210,93150,92110,54.870000000000005,0,5.41,6.73,7.12,7.34,7.48,7.58,7.66,7.72,7.79,159.42000000000002,159.45000000000002,159.45000000000002,159.42000000000002,159.38,159.34,159.3,159.25,159.16,28.45,27.67,27.39,27.12,26.88,26.66,26.44,26.240000000000002,25.82,N/A,N/A +2013,6,16,17,30,94190,93120,92090,49.01,0,5.12,6.3500000000000005,6.71,6.9,7.03,7.13,7.2,7.25,7.32,157.19,157.24,157.24,157.21,157.16,157.11,157.06,157.01,156.91,29.810000000000002,29.02,28.72,28.45,28.21,27.98,27.76,27.55,27.13,N/A,N/A +2013,6,16,18,30,94160,93110,92080,44.49,0,4.87,6.0200000000000005,6.37,6.57,6.71,6.8100000000000005,6.88,6.94,7.0200000000000005,158.64000000000001,158.46,158.32,158.19,158.08,157.97,157.86,157.76,157.57,31.1,30.310000000000002,30.01,29.72,29.48,29.240000000000002,29.02,28.8,28.39,N/A,N/A +2013,6,16,19,30,94110,93050,92030,41.27,0,5.2,6.42,6.78,6.98,7.12,7.22,7.29,7.3500000000000005,7.43,162.76,162.46,162.27,162.1,161.95000000000002,161.81,161.68,161.56,161.34,32.07,31.26,30.95,30.67,30.42,30.18,29.96,29.740000000000002,29.32,N/A,N/A +2013,6,16,20,30,94060,93010,91990,38.29,0,4.86,5.98,6.3100000000000005,6.49,6.62,6.71,6.78,6.83,6.91,151.95000000000002,152.17000000000002,152.3,152.39000000000001,152.45000000000002,152.48,152.52,152.56,152.6,32.79,32.01,31.71,31.43,31.19,30.96,30.73,30.52,30.1,N/A,N/A +2013,6,16,21,30,93990,92950,91930,35.61,0,5,6.17,6.5,6.67,6.78,6.87,6.92,6.96,7.0200000000000005,146.1,146.77,147.13,147.39000000000001,147.6,147.79,147.96,148.12,148.4,33.28,32.52,32.230000000000004,31.96,31.73,31.5,31.28,31.07,30.66,N/A,N/A +2013,6,16,22,30,93920,92870,91860,35.4,0,5.33,6.63,7,7.19,7.33,7.43,7.49,7.55,7.62,151.56,151.4,151.28,151.18,151.09,151.02,150.96,150.9,150.8,33.46,32.730000000000004,32.46,32.2,31.970000000000002,31.75,31.53,31.32,30.91,N/A,N/A +2013,6,16,23,30,93870,92830,91810,34.27,0,5.49,6.83,7.23,7.43,7.58,7.68,7.75,7.8100000000000005,7.88,149.22,149.64000000000001,149.91,150.12,150.31,150.48,150.64000000000001,150.8,151.09,33.4,32.77,32.53,32.28,32.06,31.84,31.63,31.43,31.02,N/A,N/A +2013,6,17,0,30,93850,92800,91780,35.59,0,5.8500000000000005,7.37,7.79,7.98,8.11,8.2,8.26,8.3,8.34,156.02,156.08,156.15,156.20000000000002,156.25,156.3,156.36,156.42000000000002,156.55,32.85,32.38,32.160000000000004,31.94,31.740000000000002,31.53,31.330000000000002,31.14,30.740000000000002,N/A,N/A +2013,6,17,1,30,93850,92800,91780,38.85,0,4.54,6.21,6.68,7.0600000000000005,7.3500000000000005,7.59,7.78,7.95,8.23,155.81,155.99,156.09,156.3,156.55,156.83,157.16,157.48,158.20000000000002,32.02,31.8,31.66,31.490000000000002,31.310000000000002,31.14,30.95,30.78,30.41,N/A,N/A +2013,6,17,2,30,93930,92870,91850,41.730000000000004,0,3.13,5.04,5.7,6.29,6.8,7.24,7.62,7.96,8.45,149.24,149.98,150.58,151.20000000000002,151.76,152.28,152.68,153.02,153.39000000000001,30.990000000000002,31.01,30.95,30.86,30.75,30.62,30.47,30.330000000000002,29.990000000000002,N/A,N/A +2013,6,17,3,30,94000,92940,91920,43.86,0,2.83,4.89,5.66,6.28,6.78,7.2,7.57,7.91,8.56,141.96,142.3,142.67000000000002,143.19,143.97,145.02,146.33,147.71,150.71,30.04,30.18,30.18,30.13,30.060000000000002,29.96,29.84,29.72,29.43,N/A,N/A +2013,6,17,4,30,94050,92990,91960,45.6,0,1.93,3.86,4.58,5.32,6.01,6.67,7.2700000000000005,7.8100000000000005,8.59,122.52,127.60000000000001,130.88,133.27,135.27,136.98,138.48,139.84,142.19,29.14,29.41,29.41,29.36,29.310000000000002,29.240000000000002,29.17,29.1,28.93,N/A,N/A +2013,6,17,5,30,94060,92990,91970,47.34,0,2.74,4.84,5.64,6.36,6.99,7.55,8.06,8.540000000000001,9.24,128.81,126.53,125.89,126.78,128.48,130.89000000000001,133.63,136.38,141.35,28.46,28.7,28.75,28.76,28.76,28.75,28.71,28.66,28.48,N/A,N/A +2013,6,17,6,30,94080,93010,91980,47.980000000000004,0,3.86,6.26,7.21,8.07,8.84,9.56,10.23,10.85,11.91,134.88,135.51,136.08,137.26,138.63,140.18,141.65,143.04,145.36,28.07,28.21,28.23,28.240000000000002,28.240000000000002,28.22,28.150000000000002,28.080000000000002,27.830000000000002,N/A,N/A +2013,6,17,7,30,94050,92980,91950,49.11,0,4.55,7,7.97,8.89,9.75,10.57,11.36,12.11,13.27,148.36,148.44,148.57,148.69,149.1,149.73,150.59,151.52,153.22,27.38,27.5,27.51,27.52,27.52,27.51,27.490000000000002,27.47,27.35,N/A,N/A +2013,6,17,8,30,93990,92920,91890,50.54,0,7.62,10.49,11.42,12.19,12.85,13.43,13.96,14.44,15.280000000000001,154.45000000000002,154.97,155.32,155.65,155.98,156.3,156.65,156.97,157.70000000000002,26.78,26.7,26.61,26.5,26.38,26.27,26.150000000000002,26.04,25.810000000000002,N/A,N/A +2013,6,17,9,30,93990,92920,91880,55.46,0,5.63,8.09,8.98,9.78,10.49,11.14,11.790000000000001,12.4,13.57,157.3,158.44,159.14000000000001,159.78,160.35,160.86,161.36,161.83,162.75,25.55,25.46,25.37,25.25,25.13,25.01,24.89,24.77,24.53,N/A,N/A +2013,6,17,10,30,94080,93010,91960,62.65,0,3.13,5.15,5.99,6.78,7.48,8.120000000000001,8.74,9.31,10.450000000000001,145.35,148.14000000000001,149.93,151.42000000000002,152.71,153.87,154.93,155.92000000000002,157.86,24.5,24.46,24.39,24.29,24.18,24.07,23.92,23.8,23.51,N/A,N/A +2013,6,17,11,30,94100,93020,91970,70.26,0,3.36,5.25,6.03,6.76,7.4,7.99,8.58,9.16,10.32,143.3,145.95000000000002,147.51,148.91,150.19,151.39000000000001,152.6,153.76,156.13,23.89,23.77,23.67,23.55,23.42,23.29,23.14,23.01,22.73,N/A,N/A +2013,6,17,12,30,94130,93040,92000,74.91,0,3.9,5.69,6.5,7.22,7.8100000000000005,8.31,8.82,9.3,10.25,131.75,136.89000000000001,139.96,142.37,144.34,146.01,147.52,148.91,151.61,23.76,23.47,23.32,23.14,22.96,22.79,22.62,22.48,22.18,N/A,N/A +2013,6,17,13,30,94130,93050,92000,74.58,0,5.39,6.82,7.25,7.5,7.67,7.79,7.88,7.95,8.06,148.63,149.4,149.85,150.24,150.59,150.93,151.3,151.64000000000001,152.43,24.62,24.1,23.89,23.67,23.46,23.27,23.06,22.88,22.490000000000002,N/A,N/A +2013,6,17,14,30,94130,93060,92010,69.92,0,5.54,6.96,7.37,7.61,7.76,7.86,7.930000000000001,7.99,8.05,156.36,156.79,157.04,157.26,157.46,157.64000000000001,157.84,158.02,158.41,25.93,25.28,25.03,24.79,24.57,24.37,24.16,23.97,23.580000000000002,N/A,N/A +2013,6,17,15,30,94130,93060,92020,63.15,0,5.76,7.18,7.6000000000000005,7.82,7.97,8.07,8.14,8.19,8.24,164.83,164.88,164.89000000000001,164.9,164.92000000000002,164.94,164.95000000000002,164.98,165.04,27.48,26.740000000000002,26.46,26.2,25.97,25.76,25.54,25.34,24.94,N/A,N/A +2013,6,17,16,30,94120,93050,92020,56.74,0,5.23,6.47,6.82,7.01,7.13,7.21,7.2700000000000005,7.3100000000000005,7.3500000000000005,167.12,167.34,167.44,167.52,167.59,167.65,167.70000000000002,167.75,167.85,28.93,28.150000000000002,27.86,27.59,27.36,27.13,26.92,26.71,26.310000000000002,N/A,N/A +2013,6,17,17,30,94070,93020,91990,50.18,0,4.86,6.01,6.34,6.53,6.66,6.75,6.8100000000000005,6.86,6.92,167.15,167.06,166.99,166.92000000000002,166.85,166.78,166.72,166.66,166.54,30.490000000000002,29.7,29.39,29.12,28.87,28.64,28.42,28.21,27.79,N/A,N/A +2013,6,17,18,30,94030,92970,91950,44.95,0,5.15,6.34,6.71,6.91,7.05,7.140000000000001,7.21,7.26,7.33,162.24,162.44,162.56,162.65,162.71,162.77,162.82,162.86,162.93,31.82,31.01,30.69,30.41,30.16,29.92,29.7,29.48,29.060000000000002,N/A,N/A +2013,6,17,19,30,93940,92890,91870,40.44,0,5.64,6.95,7.3100000000000005,7.49,7.61,7.69,7.74,7.78,7.82,153.41,154.12,154.49,154.74,154.94,155.12,155.27,155.41,155.66,32.82,31.98,31.67,31.39,31.150000000000002,30.91,30.69,30.47,30.060000000000002,N/A,N/A +2013,6,17,20,30,93880,92830,91820,36.22,0,5.14,6.32,6.67,6.84,6.96,7.03,7.08,7.12,7.17,165.31,164.81,164.5,164.20000000000002,163.93,163.68,163.44,163.22,162.79,33.71,32.910000000000004,32.61,32.33,32.09,31.86,31.64,31.43,31.01,N/A,N/A +2013,6,17,21,30,93820,92780,91760,35.300000000000004,0,5.65,6.98,7.38,7.6000000000000005,7.76,7.87,7.95,8.01,8.09,164.67000000000002,164.51,164.42000000000002,164.32,164.23,164.16,164.08,164.02,163.89000000000001,34.38,33.59,33.29,33.02,32.77,32.54,32.31,32.1,31.68,N/A,N/A +2013,6,17,22,30,93750,92700,91690,33.63,0,6.1000000000000005,7.57,7.96,8.15,8.27,8.35,8.4,8.44,8.47,170.20000000000002,169.65,169.35,169.12,168.92000000000002,168.75,168.58,168.44,168.17000000000002,34.47,33.730000000000004,33.46,33.2,32.97,32.74,32.53,32.32,31.91,N/A,N/A +2013,6,17,23,30,93730,92690,91680,32.910000000000004,0,5.86,7.3,7.7,7.9,8.040000000000001,8.13,8.19,8.24,8.290000000000001,187.75,186.94,186.52,186.28,186.09,185.92000000000002,185.77,185.62,185.33,34.38,33.75,33.51,33.27,33.05,32.83,32.62,32.42,32.01,N/A,N/A +2013,6,18,0,30,93760,92720,91710,34.04,0,5.26,6.6000000000000005,7,7.25,7.43,7.5600000000000005,7.65,7.73,7.83,186.70000000000002,187.14000000000001,187.13,186.87,186.65,186.44,186.26,186.09,185.81,34.13,33.660000000000004,33.46,33.230000000000004,33.03,32.82,32.62,32.42,32.03,N/A,N/A +2013,6,18,1,30,94110,93020,91970,70.68,1.8,11.71,14.98,15.99,16.7,17.23,17.66,18.03,18.35,18.97,343.34000000000003,343.21,343.1,342.93,342.76,342.58,342.39,342.21,341.8,23.11,22.61,22.400000000000002,22.19,21.990000000000002,21.81,21.63,21.47,21.14,N/A,N/A +2013,6,18,2,30,94040,92950,91900,76.75,0,7.5600000000000005,9.53,10.03,10.33,10.57,10.78,11.09,11.42,12.57,32.65,31.43,30.650000000000002,29.76,28.71,27.63,26.03,24.34,18.5,22.55,22.12,21.93,21.740000000000002,21.56,21.39,21.21,21.04,20.84,N/A,N/A +2013,6,18,3,30,93960,92880,91830,65.51,0,5.57,7.890000000000001,8.51,8.700000000000001,9.34,10.21,11.11,11.96,13.36,32.36,31.66,31.37,31.21,30.54,29.63,28.26,26.88,24.09,24.5,24.27,24.13,23.95,23.93,23.98,24.2,24.43,25.17,N/A,N/A +2013,6,18,4,30,93980,92910,91870,56.01,0,1.8,3.5500000000000003,4.41,5.05,5.61,6.11,6.69,7.2700000000000005,8.4,33.84,35.92,36.92,36.74,36.06,35.06,33.37,31.560000000000002,27.490000000000002,25.990000000000002,25.88,25.810000000000002,25.73,25.68,25.63,25.650000000000002,25.67,26.09,N/A,N/A +2013,6,18,5,30,94050,92970,91940,56.86,0,2.2,2.43,2.32,2.47,2.7800000000000002,3.25,3.39,3.42,2.85,244.14000000000001,275.11,293.99,317.68,334.24,347.1,356.29,3.36,19.75,25.89,25.8,25.79,25.89,26.04,26.22,26.41,26.580000000000002,26.810000000000002,N/A,N/A +2013,6,18,6,30,94440,93350,92290,89.61,36.6,5.88,7.36,7.890000000000001,8.49,8.77,8.82,8.98,9.16,9.6,317.52,319.88,321.95,325.07,326.53000000000003,326.82,328.92,331.32,335.94,21.09,20.8,20.68,20.55,20.39,20.21,20.09,19.990000000000002,19.8,N/A,N/A +2013,6,18,7,30,94420,93320,92260,88.16,3.7,7.05,8.8,9.09,9.21,9.28,9.32,9.3,9.24,8.9,158.46,158,158.65,159.31,159.87,160.34,161.31,161.88,160.86,20.400000000000002,20.17,20.05,19.92,19.78,19.66,19.84,19.97,19.89,N/A,N/A +2013,6,18,8,30,94160,93070,92010,70.52,0,7.4,10.06,10.97,11.75,12.43,13.030000000000001,13.58,14.08,15.01,110.08,107.58,106.08,104.71000000000001,103.56,102.56,101.75,101.04,100.02,22.13,22,21.91,21.8,21.7,21.6,21.5,21.42,21.28,N/A,N/A +2013,6,18,9,30,94190,93100,92040,76.28,0,3.95,5.65,6.2700000000000005,6.8100000000000005,7.3,7.75,8.2,8.620000000000001,9.46,138.6,134.91,132.5,130.12,127.98,126.04,124.35000000000001,122.85000000000001,120.61,21.47,21.27,21.14,21,20.85,20.7,20.56,20.42,20.18,N/A,N/A +2013,6,18,10,30,94170,93080,92020,75.59,0,0.49,0.96,1.28,2.05,2.91,3.8200000000000003,4.78,5.78,7.57,249.46,174.19,137.09,122.91,113.92,109.75,107.56,105.92,104.33,21.79,21.98,21.98,21.95,21.91,21.86,21.81,21.76,21.650000000000002,N/A,N/A +2013,6,18,11,30,94240,93150,92090,76.37,0,0.84,1.3,1.53,2.15,2.72,3.23,3.64,4,4.54,264.73,225.3,199.22,165.1,147.07,140.73,136.65,133.21,128.31,21.64,21.7,21.72,21.79,21.830000000000002,21.830000000000002,21.830000000000002,21.830000000000002,21.77,N/A,N/A +2013,6,18,12,30,94240,93140,92090,75.79,0,1.8800000000000001,2.62,2.74,2.5500000000000003,2.43,2.33,2.4,2.49,2.87,47.06,44.1,45.550000000000004,51.57,59.99,69.10000000000001,78.52,87.33,100.56,21.45,21.29,21.3,21.400000000000002,21.45,21.47,21.41,21.34,21.1,N/A,N/A +2013,6,18,13,30,94250,93160,92110,67.2,0,1.51,1.83,1.93,1.97,1.99,2.0100000000000002,2.0100000000000002,2.02,2.09,108.13,107.66,107.02,106.38,105.8,105.25,104.13,103.03,101.98,22.990000000000002,22.580000000000002,22.39,22.2,22.01,21.84,21.650000000000002,21.490000000000002,21.14,N/A,N/A +2013,6,18,14,30,94270,93190,92140,59.47,0,2.87,3.5300000000000002,3.73,3.83,3.9,3.95,3.98,4.01,4.05,107.76,108.04,108.24000000000001,108.27,108.26,108.22,108.15,108.08,107.91,24.71,24.18,23.96,23.740000000000002,23.54,23.34,23.14,22.96,22.580000000000002,N/A,N/A +2013,6,18,15,30,94280,93200,92160,53.82,0,2.3000000000000003,2.86,3.0500000000000003,3.16,3.24,3.3000000000000003,3.35,3.39,3.45,121.7,121.76,121.69,121.59,121.5,121.39,121.28,121.17,120.99000000000001,26.22,25.650000000000002,25.41,25.18,24.96,24.76,24.55,24.36,23.97,N/A,N/A +2013,6,18,16,30,94280,93210,92170,53.93,0,2.39,2.89,3.0300000000000002,3.1,3.15,3.18,3.21,3.22,3.24,126.59,127.06,127.3,127.45,127.54,127.62,127.67,127.7,127.76,27.400000000000002,26.78,26.52,26.28,26.05,25.84,25.63,25.44,25.04,N/A,N/A +2013,6,18,17,30,94240,93180,92140,53.19,0,2.33,2.79,2.91,2.97,3.0100000000000002,3.0300000000000002,3.0500000000000003,3.06,3.0700000000000003,127.66,128.49,129.02,129.37,129.66,129.91,130.12,130.31,130.67000000000002,28.45,27.82,27.54,27.28,27.060000000000002,26.84,26.63,26.43,26.02,N/A,N/A +2013,6,18,18,30,94190,93130,92100,49.29,0,2.62,3.17,3.3200000000000003,3.41,3.46,3.5,3.5300000000000002,3.56,3.59,138.55,139.05,139.29,139.43,139.54,139.63,139.71,139.78,139.91,29.63,28.97,28.69,28.43,28.2,27.98,27.76,27.560000000000002,27.150000000000002,N/A,N/A +2013,6,18,19,30,94130,93070,92050,44.64,0,2.66,3.23,3.39,3.48,3.5500000000000003,3.59,3.63,3.66,3.7,135.9,136.86,137.43,137.86,138.22,138.53,138.82,139.09,139.59,30.87,30.21,29.92,29.66,29.42,29.2,28.98,28.78,28.37,N/A,N/A +2013,6,18,20,30,94060,93010,91990,41.89,0,2.7800000000000002,3.35,3.5100000000000002,3.6,3.66,3.7,3.73,3.75,3.79,127.59,128.85,129.6,130.2,130.7,131.14000000000001,131.54,131.9,132.59,31.87,31.19,30.91,30.64,30.41,30.19,29.97,29.76,29.35,N/A,N/A +2013,6,18,21,30,93980,92930,91910,37.61,0,2.93,3.5100000000000002,3.66,3.73,3.7800000000000002,3.81,3.83,3.85,3.87,122.78,124.68,125.81,126.74000000000001,127.51,128.19,128.83,129.43,130.53,32.67,32.01,31.73,31.48,31.25,31.03,30.82,30.61,30.2,N/A,N/A +2013,6,18,22,30,93910,92860,91840,36.35,0,2.83,3.47,3.66,3.7600000000000002,3.84,3.89,3.94,3.98,4.03,126.54,127.56,128.05,128.42000000000002,128.73,129.01,129.26,129.49,129.91,33.17,32.55,32.3,32.05,31.830000000000002,31.61,31.400000000000002,31.19,30.79,N/A,N/A +2013,6,18,23,30,93840,92800,91780,36.25,0,2.74,3.36,3.54,3.63,3.7,3.75,3.7800000000000002,3.81,3.86,139.38,139.45000000000002,139.47,139.44,139.42000000000002,139.39000000000001,139.37,139.33,139.31,33.4,32.84,32.61,32.38,32.160000000000004,31.95,31.740000000000002,31.54,31.14,N/A,N/A +2013,6,19,0,30,93810,92770,91750,36.86,0,3.69,4.58,4.8100000000000005,4.91,4.98,5.0200000000000005,5.04,5.0600000000000005,5.08,120.47,121.38,121.86,122.23,122.52,122.78,123.03,123.25,123.69,33.26,32.8,32.6,32.38,32.18,31.970000000000002,31.77,31.580000000000002,31.18,N/A,N/A +2013,6,19,1,30,93820,92770,91760,41.09,0,3.17,4.86,5.4,5.8100000000000005,6.12,6.3500000000000005,6.53,6.67,6.87,128.03,127.94,127.95,127.95,127.98,128.03,128.1,128.18,128.36,32.67,32.480000000000004,32.34,32.160000000000004,31.98,31.8,31.6,31.42,31.03,N/A,N/A +2013,6,19,2,30,93860,92810,91790,43.74,0,3.7800000000000002,5.71,6.44,7.03,7.5200000000000005,7.95,8.33,8.67,9.26,126.81,127.24000000000001,127.61,128.08,128.52,128.98,129.39000000000001,129.76,130.4,31.75,31.720000000000002,31.66,31.53,31.41,31.26,31.1,30.93,30.580000000000002,N/A,N/A +2013,6,19,3,30,93900,92840,91810,51.31,0,4.92,6.92,7.59,8.15,8.63,9.07,9.49,9.88,10.6,144.25,144.79,145.05,145.24,145.48,145.75,146.1,146.46,147.39000000000001,29.19,29.04,28.94,28.810000000000002,28.69,28.580000000000002,28.46,28.35,28.14,N/A,N/A +2013,6,19,4,30,93930,92870,91840,50.52,0,4.5,6.55,7.3100000000000005,7.98,8.57,9.11,9.620000000000001,10.1,11,141.06,141.57,141.9,142.19,142.53,142.93,143.41,143.93,145.23,28.78,28.67,28.580000000000002,28.45,28.330000000000002,28.2,28.07,27.95,27.73,N/A,N/A +2013,6,19,5,30,93940,92870,91840,51.18,0,5.01,7.28,8.09,8.8,9.41,9.96,10.48,10.97,11.88,136.09,136.42000000000002,136.59,136.72,136.94,137.22,137.65,138.1,139.37,27.86,27.76,27.67,27.560000000000002,27.45,27.34,27.240000000000002,27.14,26.96,N/A,N/A +2013,6,19,6,30,93940,92870,91840,49.39,0,4.66,7.04,7.92,8.68,9.38,10.040000000000001,10.69,11.3,12.5,136.73,137.11,137.34,137.54,137.88,138.31,138.95000000000002,139.6,141.29,27.37,27.34,27.28,27.2,27.12,27.04,26.96,26.89,26.740000000000002,N/A,N/A +2013,6,19,7,30,93990,92920,91880,50.06,0,5.03,7.49,8.42,9.23,9.950000000000001,10.61,11.22,11.8,12.82,138.32,139.12,139.61,139.94,140.31,140.71,141.23,141.78,143.34,26.76,26.73,26.67,26.580000000000002,26.490000000000002,26.39,26.29,26.2,26.04,N/A,N/A +2013,6,19,8,30,93990,92910,91880,53.49,0,4.97,7.45,8.39,9.22,9.96,10.65,11.32,11.950000000000001,13.18,139.66,140.54,141,141.38,141.8,142.25,142.82,143.39000000000001,144.85,25.93,25.900000000000002,25.84,25.76,25.67,25.59,25.5,25.43,25.28,N/A,N/A +2013,6,19,9,30,93970,92890,91850,57.76,0,4.5200000000000005,6.9,7.82,8.63,9.35,9.99,10.63,11.22,12.39,141.51,143.16,144.11,144.8,145.39000000000001,145.91,146.5,147.07,148.55,25.080000000000002,25.01,24.93,24.830000000000002,24.71,24.6,24.48,24.37,24.14,N/A,N/A +2013,6,19,10,30,93990,92910,91860,59.81,0,4.7,7.07,8,8.8,9.52,10.17,10.790000000000001,11.38,12.51,141.04,142.92000000000002,144.04,144.91,145.69,146.41,147.17000000000002,147.89000000000001,149.54,24.38,24.34,24.26,24.17,24.07,23.96,23.86,23.76,23.56,N/A,N/A +2013,6,19,11,30,93990,92910,91860,62.95,0,4.63,7.05,8.02,8.88,9.63,10.3,10.94,11.55,12.73,144.73,146.4,147.4,148.21,148.97,149.69,150.51,151.3,153.20000000000002,23.68,23.63,23.57,23.490000000000002,23.400000000000002,23.32,23.240000000000002,23.16,23.04,N/A,N/A +2013,6,19,12,30,94010,92930,91880,59.5,0,4.38,6.33,7.1000000000000005,7.78,8.370000000000001,8.9,9.42,9.92,10.9,139.32,141.58,142.99,144.24,145.45000000000002,146.61,147.85,149.03,151.56,23.69,23.52,23.41,23.28,23.16,23.05,22.94,22.84,22.66,N/A,N/A +2013,6,19,13,30,94040,92960,91910,53.64,0,5.29,6.74,7.18,7.46,7.66,7.82,7.96,8.09,8.4,140.24,141.5,142.29,142.98,143.65,144.29,145.02,145.72,147.47,24.76,24.3,24.1,23.89,23.7,23.52,23.330000000000002,23.16,22.8,N/A,N/A +2013,6,19,14,30,94070,92990,91950,48.57,0,5.79,7.3,7.75,8,8.17,8.28,8.36,8.43,8.51,152.05,152.67000000000002,152.96,153.23,153.48,153.72,153.98,154.21,154.78,26.26,25.650000000000002,25.41,25.19,24.97,24.77,24.560000000000002,24.38,23.990000000000002,N/A,N/A +2013,6,19,15,30,94100,93030,91990,46.800000000000004,0,6.22,7.79,8.26,8.52,8.69,8.81,8.89,8.950000000000001,9.03,149.95000000000002,150.45000000000002,150.72,150.95000000000002,151.14000000000001,151.31,151.49,151.66,152.01,27.400000000000002,26.69,26.42,26.17,25.94,25.73,25.51,25.32,24.92,N/A,N/A +2013,6,19,16,30,94070,93000,91970,43.81,0,6.49,8.14,8.620000000000001,8.89,9.08,9.200000000000001,9.3,9.370000000000001,9.46,159.16,159.37,159.5,159.61,159.71,159.79,159.88,159.95000000000002,160.13,28.990000000000002,28.22,27.93,27.67,27.43,27.21,26.990000000000002,26.79,26.38,N/A,N/A +2013,6,19,17,30,94050,92990,91960,40.5,0,6.33,7.9,8.370000000000001,8.620000000000001,8.8,8.93,9.02,9.09,9.18,154.29,154.69,154.94,155.12,155.27,155.41,155.54,155.65,155.88,30.36,29.54,29.240000000000002,28.97,28.73,28.5,28.28,28.07,27.66,N/A,N/A +2013,6,19,18,30,94010,92950,91930,37.12,0,6.66,8.3,8.78,9.03,9.21,9.34,9.43,9.5,9.59,156.25,156.52,156.66,156.77,156.87,156.96,157.05,157.13,157.3,31.57,30.73,30.43,30.150000000000002,29.900000000000002,29.67,29.45,29.240000000000002,28.82,N/A,N/A +2013,6,19,19,30,93950,92890,91870,34.59,0,6.68,8.32,8.790000000000001,9.05,9.23,9.35,9.44,9.51,9.6,156.14000000000001,156.41,156.54,156.65,156.74,156.81,156.89000000000001,156.96,157.11,32.55,31.71,31.400000000000002,31.12,30.88,30.64,30.42,30.21,29.79,N/A,N/A +2013,6,19,20,30,93910,92860,91840,32.47,0,6.390000000000001,7.96,8.41,8.66,8.84,8.96,9.05,9.120000000000001,9.21,149.89000000000001,150.35,150.67000000000002,150.91,151.11,151.28,151.43,151.58,151.85,33.34,32.52,32.230000000000004,31.95,31.71,31.48,31.25,31.04,30.62,N/A,N/A +2013,6,19,21,30,93900,92850,91830,31.080000000000002,0,6.3,7.8500000000000005,8.31,8.56,8.74,8.870000000000001,8.950000000000001,9.02,9.120000000000001,134.35,135.15,135.72,136.12,136.44,136.71,136.94,137.15,137.51,33.8,33.03,32.74,32.47,32.230000000000004,32.01,31.78,31.57,31.150000000000002,N/A,N/A +2013,6,19,22,30,93860,92810,91800,29.51,0,6.54,8.21,8.68,8.94,9.13,9.26,9.35,9.42,9.52,131.22,131.77,132.15,132.41,132.63,132.82,132.98,133.14000000000001,133.42000000000002,33.85,33.14,32.87,32.62,32.38,32.160000000000004,31.94,31.740000000000002,31.330000000000002,N/A,N/A +2013,6,19,23,30,93820,92780,91760,28.150000000000002,0,7.09,9,9.55,9.88,10.11,10.28,10.4,10.5,10.64,137.38,137.70000000000002,137.86,137.96,138.04,138.1,138.16,138.21,138.31,33.730000000000004,33.12,32.89,32.65,32.42,32.21,32,31.79,31.39,N/A,N/A +2013,6,20,0,30,93790,92750,91730,28.07,0,7.4,9.55,10.14,10.5,10.76,10.96,11.11,11.23,11.4,144.99,145.01,145.01,144.97,144.94,144.9,144.88,144.85,144.79,33.11,32.69,32.49,32.27,32.07,31.87,31.67,31.48,31.080000000000002,N/A,N/A +2013,6,20,1,30,93820,92770,91750,30.12,0,5.7,8.19,9,9.65,10.19,10.65,11.040000000000001,11.38,11.92,148.68,148.58,148.53,148.47,148.43,148.4,148.37,148.35,148.28,31.91,31.830000000000002,31.73,31.59,31.45,31.3,31.13,30.970000000000002,30.61,N/A,N/A +2013,6,20,2,30,93880,92830,91810,32.39,0,4.7,7.2,8.09,8.82,9.43,9.96,10.44,10.870000000000001,11.61,147.89000000000001,148.3,148.62,148.97,149.34,149.72,150.1,150.47,151.15,30.64,30.740000000000002,30.72,30.67,30.59,30.5,30.39,30.28,30.01,N/A,N/A +2013,6,20,3,30,93960,92900,91870,35,0,4.33,6.96,7.99,8.91,9.71,10.44,11.09,11.69,12.65,155.12,155.04,155.05,155.01,155.02,155.08,155.27,155.49,156.27,29.830000000000002,30,30.02,29.990000000000002,29.96,29.900000000000002,29.82,29.740000000000002,29.53,N/A,N/A +2013,6,20,4,30,93950,92880,91860,38.44,0,5.22,8.13,9.26,10.3,11.23,12.09,12.89,13.620000000000001,14.88,145.72,145.99,146.16,146.51,147.02,147.64000000000001,148.4,149.17000000000002,150.76,28.85,28.990000000000002,29.02,29.02,29.01,28.98,28.94,28.89,28.75,N/A,N/A +2013,6,20,5,30,93980,92910,91880,39.75,0,6.1000000000000005,9.05,10.16,11.15,12.030000000000001,12.84,13.61,14.33,15.65,148.73,149.59,150.13,150.74,151.38,152.06,152.8,153.53,154.99,28.43,28.490000000000002,28.47,28.43,28.38,28.330000000000002,28.26,28.21,28.060000000000002,N/A,N/A +2013,6,20,6,30,93980,92910,91880,44.86,0,7.0200000000000005,10.06,11.120000000000001,12.030000000000001,12.83,13.55,14.24,14.870000000000001,16.07,154.02,154.94,155.51,156.08,156.66,157.22,157.8,158.34,159.36,27.810000000000002,27.830000000000002,27.78,27.71,27.64,27.560000000000002,27.47,27.38,27.18,N/A,N/A +2013,6,20,7,30,94030,92960,91930,50.870000000000005,0,7.03,9.96,10.97,11.84,12.59,13.27,13.91,14.5,15.67,155.93,156.58,156.98,157.37,157.77,158.16,158.58,158.98,159.81,27.18,27.11,27.02,26.900000000000002,26.79,26.67,26.54,26.42,26.16,N/A,N/A +2013,6,20,8,30,94060,92980,91940,55.46,0,6.45,9.16,10.11,10.92,11.64,12.290000000000001,12.93,13.530000000000001,14.700000000000001,155.4,156.51,157.24,157.93,158.6,159.25,159.92000000000002,160.55,161.81,26.080000000000002,25.98,25.88,25.76,25.63,25.51,25.37,25.25,24.98,N/A,N/A +2013,6,20,9,30,94060,92980,91940,53.68,0,7.28,10.15,11.13,11.96,12.68,13.32,13.94,14.51,15.64,155.61,156.82,157.58,158.28,158.94,159.56,160.18,160.76,161.95000000000002,25.26,25.14,25.03,24.900000000000002,24.76,24.63,24.48,24.35,24.060000000000002,N/A,N/A +2013,6,20,10,30,94080,93000,91950,56.76,0,7.140000000000001,9.89,10.84,11.63,12.290000000000001,12.88,13.43,13.950000000000001,14.950000000000001,162.03,162.66,163.05,163.42000000000002,163.77,164.1,164.45000000000002,164.79,165.55,24.650000000000002,24.5,24.39,24.25,24.11,23.97,23.82,23.68,23.39,N/A,N/A +2013,6,20,11,30,94120,93030,91980,64.49,0,5.49,7.88,8.790000000000001,9.59,10.290000000000001,10.92,11.540000000000001,12.120000000000001,13.27,138.38,141.15,143.08,144.89000000000001,146.53,148.06,149.57,150.98,153.62,23.44,23.35,23.26,23.14,23.02,22.900000000000002,22.77,22.650000000000002,22.39,N/A,N/A +2013,6,20,12,30,94100,93010,91960,68.74,0,7.09,9.61,10.44,11.120000000000001,11.68,12.16,12.620000000000001,13.040000000000001,13.84,150.51,151.92000000000002,152.76,153.54,154.29,154.99,155.75,156.47,158,23.2,22.97,22.84,22.69,22.54,22.39,22.25,22.11,21.85,N/A,N/A +2013,6,20,13,30,94140,93060,92010,67.83,0,8.4,10.68,11.28,11.64,11.89,12.07,12.21,12.33,12.55,154.85,155.21,155.43,155.63,155.84,156.04,156.28,156.5,157.08,23.94,23.46,23.25,23.03,22.830000000000002,22.64,22.44,22.26,21.89,N/A,N/A +2013,6,20,14,30,94190,93110,92070,63.08,0,8.28,10.450000000000001,11.05,11.38,11.61,11.76,11.86,11.94,12.030000000000001,151.53,151.9,152.11,152.28,152.43,152.58,152.74,152.89000000000001,153.22,25.150000000000002,24.51,24.26,24.02,23.8,23.6,23.39,23.2,22.81,N/A,N/A +2013,6,20,15,30,94220,93140,92100,54.13,0,7.640000000000001,9.620000000000001,10.200000000000001,10.540000000000001,10.77,10.92,11.03,11.11,11.22,158.23,158.41,158.49,158.57,158.64000000000001,158.71,158.78,158.85,159,26.72,25.98,25.71,25.45,25.22,25.01,24.79,24.6,24.2,N/A,N/A +2013,6,20,16,30,94220,93150,92110,45.34,0,7.72,9.69,10.26,10.57,10.790000000000001,10.94,11.05,11.13,11.24,159.49,159.71,159.83,159.91,159.99,160.05,160.11,160.17000000000002,160.29,28.25,27.45,27.150000000000002,26.89,26.650000000000002,26.42,26.2,26,25.59,N/A,N/A +2013,6,20,17,30,94190,93130,92100,37.86,0,7.41,9.28,9.84,10.14,10.36,10.5,10.61,10.69,10.8,156.88,157.07,157.16,157.22,157.29,157.35,157.41,157.46,157.57,29.75,28.91,28.6,28.32,28.080000000000002,27.85,27.62,27.42,27,N/A,N/A +2013,6,20,18,30,94160,93100,92070,31.68,0,7.640000000000001,9.57,10.14,10.46,10.69,10.84,10.96,11.040000000000001,11.16,157.62,157.76,157.84,157.89000000000001,157.94,157.99,158.03,158.08,158.16,31.11,30.25,29.94,29.66,29.41,29.18,28.95,28.740000000000002,28.32,N/A,N/A +2013,6,20,19,30,94130,93070,92050,28.51,0,7.58,9.5,10.07,10.39,10.620000000000001,10.77,10.89,10.98,11.1,154.43,154.69,154.83,154.94,155.03,155.1,155.18,155.25,155.39000000000001,32.09,31.240000000000002,30.93,30.64,30.39,30.16,29.93,29.71,29.29,N/A,N/A +2013,6,20,20,30,94080,93030,92000,26.5,0,7.73,9.69,10.26,10.58,10.81,10.97,11.09,11.18,11.31,154.76,154.99,155.12,155.21,155.3,155.37,155.44,155.51,155.64000000000001,32.79,31.95,31.650000000000002,31.37,31.12,30.89,30.66,30.45,30.02,N/A,N/A +2013,6,20,21,30,94020,92970,91950,25.45,0,7.66,9.63,10.21,10.540000000000001,10.77,10.93,11.06,11.16,11.290000000000001,153.59,153.73,153.82,153.88,153.93,153.97,154.01,154.04,154.12,33.29,32.5,32.21,31.94,31.69,31.470000000000002,31.240000000000002,31.03,30.61,N/A,N/A +2013,6,20,22,30,93960,92910,91890,25.830000000000002,0,8,10.09,10.69,11.040000000000001,11.290000000000001,11.46,11.59,11.700000000000001,11.84,156.13,156.20000000000002,156.22,156.22,156.21,156.20000000000002,156.20000000000002,156.19,156.17000000000002,33.39,32.660000000000004,32.4,32.13,31.900000000000002,31.68,31.46,31.25,30.830000000000002,N/A,N/A +2013,6,20,23,30,93930,92880,91860,28.23,0,8.870000000000001,11.33,12,12.38,12.65,12.84,12.98,13.09,13.23,148.97,149.27,149.42000000000002,149.55,149.67000000000002,149.77,149.88,149.98,150.19,32.92,32.32,32.09,31.85,31.63,31.41,31.2,31,30.6,N/A,N/A +2013,6,21,0,30,93910,92860,91840,32.47,0,8.22,10.56,11.22,11.63,11.94,12.17,12.36,12.51,12.74,156.51,156.27,156.12,155.98,155.87,155.76,155.68,155.6,155.47,32.52,32.09,31.89,31.68,31.470000000000002,31.27,31.07,30.87,30.47,N/A,N/A +2013,6,21,1,30,93920,92870,91850,37.53,0,7.11,9.68,10.49,11.09,11.58,12,12.36,12.67,13.17,155.86,155.81,155.77,155.72,155.69,155.67000000000002,155.65,155.63,155.58,31.3,31.13,31,30.830000000000002,30.67,30.5,30.32,30.14,29.78,N/A,N/A +2013,6,21,2,30,94000,92940,91920,40.53,0,6.03,8.55,9.39,10.07,10.63,11.120000000000001,11.540000000000001,11.91,12.530000000000001,151.20000000000002,150.96,150.86,150.76,150.69,150.63,150.58,150.54,150.48,30.48,30.39,30.29,30.16,30.03,29.89,29.73,29.580000000000002,29.240000000000002,N/A,N/A +2013,6,21,3,30,94050,92990,91970,41.410000000000004,0,5.8100000000000005,8.51,9.49,10.35,11.11,11.81,12.48,13.1,14.26,146.69,147.11,147.44,147.79,148.19,148.62,149.09,149.56,150.51,29.71,29.66,29.59,29.490000000000002,29.37,29.26,29.13,29.01,28.73,N/A,N/A +2013,6,21,4,30,94110,93050,92020,42.58,0,4.55,7.0200000000000005,7.97,8.8,9.56,10.27,10.950000000000001,11.6,12.85,148.9,149.16,149.41,149.74,150.16,150.67000000000002,151.26,151.88,153.24,28.75,28.79,28.76,28.69,28.6,28.51,28.41,28.310000000000002,28.080000000000002,N/A,N/A +2013,6,21,5,30,94130,93060,92030,44.980000000000004,0,5.5,8.21,9.200000000000001,10.07,10.86,11.58,12.27,12.92,14.15,148.23,148.53,148.79,149.13,149.58,150.07,150.65,151.23,152.45000000000002,28.01,28,27.95,27.88,27.79,27.7,27.59,27.490000000000002,27.25,N/A,N/A +2013,6,21,6,30,94180,93110,92070,47.84,0,6.2700000000000005,8.99,9.98,10.82,11.55,12.23,12.86,13.450000000000001,14.58,148.94,149.39000000000001,149.71,150.06,150.43,150.84,151.28,151.70000000000002,152.62,27.42,27.34,27.26,27.14,27.03,26.91,26.77,26.64,26.37,N/A,N/A +2013,6,21,7,30,94240,93160,92120,56.79,0,6.16,8.78,9.72,10.51,11.22,11.86,12.48,13.06,14.15,149.66,150.04,150.27,150.53,150.83,151.15,151.52,151.89000000000001,152.70000000000002,26.21,26.080000000000002,25.97,25.830000000000002,25.68,25.53,25.36,25.21,24.87,N/A,N/A +2013,6,21,8,30,94290,93210,92160,64.82000000000001,0,4.15,6.3100000000000005,7.140000000000001,7.87,8.52,9.120000000000001,9.700000000000001,10.24,11.28,143.69,145.16,146.1,146.96,147.8,148.63,149.47,150.28,151.89000000000001,25.2,25.080000000000002,24.97,24.84,24.69,24.55,24.39,24.23,23.89,N/A,N/A +2013,6,21,9,30,94290,93210,92160,73.96000000000001,0,5.15,7.28,8.040000000000001,8.66,9.200000000000001,9.69,10.15,10.58,11.41,145.77,146.72,147.34,147.97,148.61,149.23,149.9,150.53,151.85,24.53,24.330000000000002,24.2,24.03,23.86,23.7,23.53,23.36,23.01,N/A,N/A +2013,6,21,10,30,94280,93200,92150,79.96000000000001,0,5.54,7.74,8.5,9.13,9.67,10.14,10.58,10.99,11.76,146.23,147.14000000000001,147.72,148.27,148.79,149.29,149.81,150.31,151.35,23.76,23.56,23.42,23.25,23.080000000000002,22.91,22.740000000000002,22.57,22.22,N/A,N/A +2013,6,21,11,30,94260,93180,92130,82.94,0,6.38,8.67,9.42,10.01,10.51,10.93,11.33,11.69,12.39,149.69,150.47,150.97,151.49,152.01,152.52,153.08,153.62,154.76,23.45,23.23,23.080000000000002,22.900000000000002,22.72,22.55,22.36,22.19,21.82,N/A,N/A +2013,6,21,12,30,94240,93150,92100,83.52,0,7.640000000000001,10.17,10.93,11.49,11.98,12.4,12.81,13.17,13.870000000000001,152.6,153.17000000000002,153.57,154.03,154.46,154.86,155.3,155.70000000000002,156.54,23.29,23,22.84,22.66,22.48,22.3,22.11,21.94,21.57,N/A,N/A +2013,6,21,13,30,94250,93170,92120,80.45,0,7.9,10.21,10.86,11.290000000000001,11.6,11.84,12.040000000000001,12.21,12.51,160.93,161.14000000000001,161.27,161.39000000000001,161.51,161.63,161.77,161.9,162.20000000000002,23.48,23.07,22.87,22.67,22.47,22.28,22.080000000000002,21.900000000000002,21.51,N/A,N/A +2013,6,21,14,30,94300,93220,92170,73.25,0,7.83,9.99,10.620000000000001,11,11.27,11.46,11.6,11.72,11.870000000000001,159.39000000000001,159.5,159.55,159.6,159.65,159.70000000000002,159.76,159.81,159.94,24.22,23.650000000000002,23.41,23.18,22.96,22.76,22.55,22.35,21.95,N/A,N/A +2013,6,21,15,30,94330,93250,92200,61.160000000000004,0,7.59,9.53,10.1,10.42,10.64,10.790000000000001,10.9,10.98,11.08,162.93,163.15,163.27,163.37,163.46,163.54,163.62,163.70000000000002,163.86,26.060000000000002,25.3,25.02,24.76,24.52,24.3,24.080000000000002,23.88,23.47,N/A,N/A +2013,6,21,16,30,94330,93250,92210,53.33,0,7.42,9.27,9.84,10.14,10.36,10.5,10.61,10.69,10.8,163.92000000000002,164.15,164.28,164.39000000000001,164.48,164.56,164.64000000000001,164.71,164.84,27.47,26.64,26.34,26.07,25.82,25.59,25.37,25.16,24.75,N/A,N/A +2013,6,21,17,30,94280,93210,92180,47,0,7.87,9.85,10.43,10.75,10.98,11.13,11.24,11.33,11.44,163.01,163.21,163.32,163.41,163.49,163.57,163.65,163.72,163.86,28.830000000000002,27.96,27.650000000000002,27.36,27.11,26.88,26.650000000000002,26.44,26.02,N/A,N/A +2013,6,21,18,30,94250,93190,92150,41.46,0,7.82,9.77,10.35,10.68,10.9,11.06,11.17,11.26,11.39,161.04,161.26,161.42000000000002,161.53,161.62,161.71,161.78,161.85,161.99,30.14,29.26,28.94,28.650000000000002,28.400000000000002,28.16,27.93,27.72,27.3,N/A,N/A +2013,6,21,19,30,94200,93140,92110,37.38,0,7.97,9.98,10.56,10.88,11.11,11.26,11.38,11.47,11.6,159.70000000000002,159.9,160.01,160.1,160.17000000000002,160.25,160.31,160.37,160.5,31.28,30.39,30.080000000000002,29.79,29.54,29.3,29.07,28.85,28.43,N/A,N/A +2013,6,21,20,30,94140,93080,92060,33.84,0,7.48,9.36,9.91,10.21,10.42,10.57,10.67,10.76,10.88,158.66,158.93,159.09,159.21,159.31,159.41,159.5,159.59,159.75,32.160000000000004,31.310000000000002,31,30.72,30.47,30.240000000000002,30.01,29.79,29.37,N/A,N/A +2013,6,21,21,30,94090,93040,92020,30.62,0,7.82,9.81,10.38,10.69,10.91,11.06,11.17,11.26,11.39,160.61,160.61,160.63,160.62,160.61,160.6,160.6,160.6,160.59,32.74,31.93,31.64,31.36,31.12,30.89,30.66,30.45,30.03,N/A,N/A +2013,6,21,22,30,94040,92990,91970,28.98,0,7.5,9.42,9.99,10.32,10.55,10.72,10.84,10.94,11.08,163.28,163.36,163.36,163.34,163.33,163.31,163.29,163.28,163.24,33.08,32.34,32.07,31.810000000000002,31.57,31.34,31.12,30.91,30.5,N/A,N/A +2013,6,21,23,30,94000,92950,91930,28.11,0,7.45,9.42,10,10.33,10.57,10.74,10.870000000000001,10.97,11.120000000000001,162.27,162.06,161.94,161.83,161.73,161.64000000000001,161.56,161.49,161.35,33.05,32.43,32.19,31.94,31.720000000000002,31.5,31.29,31.080000000000002,30.68,N/A,N/A +2013,6,22,0,30,93980,92930,91910,27.72,0,8,10.26,10.88,11.25,11.52,11.72,11.870000000000001,11.98,12.15,161.62,161.36,161.21,161.08,160.97,160.87,160.8,160.72,160.6,32.63,32.19,31.990000000000002,31.77,31.560000000000002,31.36,31.150000000000002,30.96,30.560000000000002,N/A,N/A +2013,6,22,1,30,93990,92930,91910,30.490000000000002,0,5.99,8.35,9.14,9.77,10.290000000000001,10.74,11.13,11.49,12.08,162.71,162.51,162.39000000000001,162.28,162.20000000000002,162.13,162.07,162.02,161.9,31.55,31.42,31.3,31.150000000000002,31,30.830000000000002,30.66,30.5,30.14,N/A,N/A +2013,6,22,2,30,94000,92940,91920,34.19,0,4.91,7.26,8.1,8.8,9.41,9.96,10.46,10.92,11.76,148.72,149.29,149.71,150.29,150.89000000000001,151.54,152.18,152.78,153.88,30.36,30.35,30.28,30.18,30.07,29.95,29.810000000000002,29.69,29.400000000000002,N/A,N/A +2013,6,22,3,30,94060,93000,91970,35.9,0,6.41,9.27,10.27,11.13,11.89,12.59,13.24,13.83,14.92,149.46,150,150.31,150.76,151.26,151.8,152.35,152.88,153.87,29.6,29.560000000000002,29.490000000000002,29.39,29.29,29.18,29.05,28.94,28.67,N/A,N/A +2013,6,22,4,30,94120,93050,92020,36.52,0,5.62,8.26,9.23,10.09,10.84,11.540000000000001,12.21,12.84,14.01,152.47,153.21,153.79,154.38,154.94,155.48,155.99,156.46,157.32,28.96,28.98,28.93,28.86,28.77,28.68,28.57,28.47,28.23,N/A,N/A +2013,6,22,5,30,94060,92990,91960,38.39,0,5.7,8.49,9.51,10.43,11.26,12.02,12.780000000000001,13.5,14.89,145.84,146.85,147.55,148.31,149.15,150.03,151.02,151.97,154.02,27.95,27.96,27.92,27.87,27.810000000000002,27.75,27.67,27.61,27.44,N/A,N/A +2013,6,22,6,30,94110,93040,92000,39.56,0,6.0600000000000005,8.86,9.89,10.81,11.63,12.39,13.13,13.82,15.17,145.95000000000002,146.88,147.51,148.18,148.92000000000002,149.69,150.58,151.45000000000002,153.41,26.990000000000002,26.98,26.93,26.86,26.79,26.72,26.64,26.57,26.42,N/A,N/A +2013,6,22,7,30,94100,93030,91990,47.08,0,7.61,10.63,11.64,12.49,13.24,13.91,14.55,15.15,16.3,150.39000000000001,151.09,151.54,152,152.46,152.92000000000002,153.41,153.88,154.85,26.07,25.97,25.88,25.76,25.64,25.51,25.38,25.26,25,N/A,N/A +2013,6,22,8,30,94090,93010,91970,60.18,0,8.120000000000001,11.13,12.09,12.86,13.530000000000001,14.120000000000001,14.700000000000001,15.23,16.3,155.77,156.52,156.98,157.44,157.92000000000002,158.4,158.94,159.44,160.48,25.22,25.07,24.95,24.810000000000002,24.67,24.53,24.39,24.25,23.97,N/A,N/A +2013,6,22,9,30,94080,93000,91950,68.59,0,8.27,11.27,12.22,12.99,13.63,14.17,14.68,15.15,16.04,154.84,155.48,155.88,156.26,156.61,156.95000000000002,157.32,157.66,158.39000000000001,24.490000000000002,24.3,24.17,24.02,23.86,23.71,23.54,23.38,23.05,N/A,N/A +2013,6,22,10,30,94110,93030,91980,75.96000000000001,0,7.12,9.76,10.66,11.39,12,12.530000000000001,13.030000000000001,13.48,14.36,153.24,154.32,155.01,155.66,156.27,156.84,157.43,157.98,159.08,23.77,23.57,23.44,23.28,23.13,22.97,22.8,22.650000000000002,22.32,N/A,N/A +2013,6,22,11,30,94120,93040,91990,79.62,0,7.84,10.57,11.47,12.17,12.75,13.24,13.69,14.11,14.88,154.84,155.48,155.92000000000002,156.31,156.69,157.04,157.42000000000002,157.77,158.53,23.27,23.04,22.900000000000002,22.73,22.56,22.400000000000002,22.23,22.080000000000002,21.740000000000002,N/A,N/A +2013,6,22,12,30,94110,93030,91980,81.19,0,6.5200000000000005,9.33,10.48,11.450000000000001,12.22,12.85,13.280000000000001,13.64,14.68,150.98,152.88,153.86,154.37,154.9,155.44,155.79,156.07,156.74,22.81,22.51,22.35,22.17,21.990000000000002,21.81,21.62,21.44,21.1,N/A,N/A +2013,6,22,13,30,94160,93080,92020,72.49,0,8.32,10.620000000000001,11.25,11.65,11.91,12.11,12.25,12.370000000000001,12.55,153.64000000000001,154.04,154.26,154.46,154.66,154.85,155.05,155.25,155.72,23.55,23.04,22.82,22.6,22.39,22.2,22,21.81,21.43,N/A,N/A +2013,6,22,14,30,94170,93090,92040,64.16,0,8.28,10.48,11.11,11.48,11.73,11.9,12.02,12.11,12.22,156.45000000000002,156.72,156.91,157.06,157.19,157.32,157.45000000000002,157.57,157.83,24.69,24.03,23.77,23.53,23.31,23.1,22.88,22.69,22.3,N/A,N/A +2013,6,22,15,30,94180,93100,92060,54.88,0,7.8,9.86,10.450000000000001,10.790000000000001,11.03,11.19,11.3,11.39,11.51,156.85,157.08,157.19,157.29,157.38,157.47,157.57,157.65,157.85,26.28,25.52,25.240000000000002,24.98,24.75,24.53,24.32,24.12,23.71,N/A,N/A +2013,6,22,16,30,94170,93100,92060,48.4,0,7.83,9.86,10.44,10.78,11,11.16,11.27,11.36,11.47,158.16,158.39000000000001,158.53,158.63,158.72,158.81,158.89000000000001,158.97,159.13,27.900000000000002,27.07,26.77,26.5,26.25,26.03,25.8,25.6,25.19,N/A,N/A +2013,6,22,17,30,94160,93100,92070,42.74,0,7.7700000000000005,9.73,10.32,10.64,10.86,11.01,11.120000000000001,11.21,11.32,157.88,158.07,158.17000000000002,158.25,158.32,158.38,158.43,158.49,158.6,29.38,28.51,28.19,27.91,27.66,27.43,27.2,26.990000000000002,26.57,N/A,N/A +2013,6,22,18,30,94100,93040,92010,38.38,0,7.72,9.64,10.21,10.52,10.73,10.88,10.99,11.07,11.17,159.41,159.57,159.64000000000001,159.69,159.72,159.75,159.78,159.81,159.87,30.57,29.68,29.35,29.060000000000002,28.810000000000002,28.57,28.34,28.13,27.71,N/A,N/A +2013,6,22,19,30,94050,93000,91970,34.28,0,7.5200000000000005,9.370000000000001,9.91,10.200000000000001,10.4,10.540000000000001,10.64,10.71,10.81,160.41,160.43,160.44,160.43,160.43,160.42000000000002,160.41,160.41,160.4,31.720000000000002,30.830000000000002,30.52,30.23,29.97,29.740000000000002,29.51,29.29,28.87,N/A,N/A +2013,6,22,20,30,93960,92910,91890,32.46,0,7.21,9.02,9.540000000000001,9.84,10.040000000000001,10.18,10.290000000000001,10.370000000000001,10.48,158.38,158.54,158.63,158.69,158.75,158.79,158.83,158.87,158.96,32.6,31.75,31.44,31.150000000000002,30.900000000000002,30.66,30.43,30.22,29.8,N/A,N/A +2013,6,22,21,30,93900,92850,91830,30.26,0,7.3100000000000005,9.17,9.700000000000001,9.99,10.200000000000001,10.35,10.46,10.55,10.67,158.75,158.81,158.85,158.86,158.87,158.87,158.88,158.89000000000001,158.9,33.28,32.46,32.17,31.89,31.650000000000002,31.42,31.19,30.98,30.55,N/A,N/A +2013,6,22,22,30,93850,92800,91790,29.1,0,7.38,9.3,9.86,10.19,10.43,10.59,10.72,10.82,10.97,157.32,157.34,157.35,157.35,157.35,157.34,157.33,157.33,157.33,33.5,32.75,32.480000000000004,32.21,31.98,31.75,31.53,31.32,30.900000000000002,N/A,N/A +2013,6,22,23,30,93830,92780,91770,27.78,0,7.28,9.24,9.83,10.21,10.48,10.67,10.82,10.94,11.13,156.94,156.96,156.93,156.93,156.94,156.97,156.99,157.03,157.1,33.47,32.85,32.61,32.36,32.14,31.92,31.7,31.5,31.09,N/A,N/A +2013,6,23,0,30,93790,92740,91730,28.17,0,9,11.57,12.26,12.67,12.96,13.17,13.32,13.44,13.6,147.09,147.47,147.72,147.94,148.16,148.36,148.57,148.76,149.19,32.69,32.24,32.04,31.830000000000002,31.62,31.42,31.220000000000002,31.03,30.63,N/A,N/A +2013,6,23,1,30,93800,92740,91720,30,0,6.5200000000000005,8.99,9.78,10.38,10.86,11.25,11.58,11.870000000000001,12.33,149.35,149.55,149.64000000000001,149.79,149.98,150.19,150.45000000000002,150.71,151.29,31.75,31.57,31.44,31.28,31.12,30.95,30.77,30.6,30.240000000000002,N/A,N/A +2013,6,23,2,30,93820,92760,91740,32.02,0,5.96,8.48,9.34,10.07,10.700000000000001,11.28,11.82,12.33,13.3,150.8,151.39000000000001,151.81,152.26,152.71,153.18,153.67000000000002,154.14000000000001,155.05,30.78,30.67,30.580000000000002,30.46,30.330000000000002,30.2,30.05,29.91,29.6,N/A,N/A +2013,6,23,3,30,93860,92800,91780,37.27,0,5.26,7.73,8.65,9.450000000000001,10.14,10.76,11.370000000000001,11.94,13.02,151.72,151.98,152.15,152.37,152.64000000000001,152.94,153.31,153.69,154.5,30.060000000000002,29.990000000000002,29.900000000000002,29.78,29.650000000000002,29.52,29.38,29.240000000000002,28.94,N/A,N/A +2013,6,23,4,30,93880,92820,91800,37.57,0,6.95,9.790000000000001,10.73,11.55,12.25,12.89,13.51,14.08,15.16,157.94,158.14000000000001,158.26,158.39000000000001,158.55,158.72,158.92000000000002,159.11,159.53,29.54,29.43,29.34,29.22,29.09,28.97,28.830000000000002,28.7,28.42,N/A,N/A +2013,6,23,5,30,93890,92830,91800,43.49,0,6.5200000000000005,9.21,10.14,10.92,11.6,12.200000000000001,12.780000000000001,13.32,14.33,153.41,154.34,154.97,155.58,156.15,156.71,157.24,157.75,158.66,28.62,28.55,28.47,28.35,28.240000000000002,28.12,27.990000000000002,27.86,27.59,N/A,N/A +2013,6,23,6,30,93920,92850,91820,50.54,0,7.12,9.870000000000001,10.78,11.52,12.15,12.700000000000001,13.21,13.69,14.58,153.38,153.8,154.09,154.41,154.74,155.08,155.46,155.83,156.68,27.87,27.73,27.62,27.47,27.330000000000002,27.19,27.03,26.89,26.580000000000002,N/A,N/A +2013,6,23,7,30,93940,92870,91840,56.09,0,8.49,11.540000000000001,12.52,13.290000000000001,13.93,14.5,15.01,15.48,16.34,158.3,158.59,158.78,159,159.23,159.46,159.72,159.98,160.54,26.93,26.76,26.63,26.47,26.32,26.16,25.990000000000002,25.830000000000002,25.5,N/A,N/A +2013,6,23,8,30,93960,92890,91850,63.25,0,7.95,10.84,11.76,12.51,13.13,13.67,14.16,14.620000000000001,15.47,155.87,156.64000000000001,157.11,157.55,157.97,158.37,158.78,159.17000000000002,159.97,25.92,25.72,25.59,25.43,25.27,25.11,24.94,24.78,24.44,N/A,N/A +2013,6,23,9,30,93940,92860,91820,62.24,0,8.58,11.6,12.55,13.290000000000001,13.91,14.450000000000001,14.950000000000001,15.4,16.27,158.42000000000002,159.09,159.47,159.82,160.15,160.47,160.79,161.09,161.68,25.21,25.02,24.89,24.73,24.57,24.42,24.25,24.1,23.77,N/A,N/A +2013,6,23,10,30,93950,92870,91820,58.65,0,8.61,11.61,12.56,13.290000000000001,13.91,14.46,14.96,15.41,16.3,156.07,156.81,157.3,157.74,158.17000000000002,158.59,159,159.38,160.17000000000002,24.490000000000002,24.310000000000002,24.18,24.03,23.88,23.73,23.57,23.42,23.12,N/A,N/A +2013,6,23,11,30,93970,92890,91840,54.97,0,8.74,11.71,12.65,13.39,14,14.52,15.01,15.44,16.3,157.1,157.69,158.07,158.43,158.77,159.1,159.44,159.76,160.44,23.89,23.71,23.580000000000002,23.42,23.27,23.12,22.97,22.82,22.53,N/A,N/A +2013,6,23,12,30,93970,92880,91830,55.74,0,8.44,11.24,12.07,12.71,13.23,13.66,14.07,14.43,15.120000000000001,154.02,154.81,155.27,155.67000000000002,156.05,156.41,156.78,157.13,157.85,23.490000000000002,23.23,23.080000000000002,22.91,22.75,22.59,22.42,22.27,21.96,N/A,N/A +2013,6,23,13,30,94060,92970,91920,57.36,0,6.96,8.92,9.5,9.870000000000001,10.13,10.31,10.44,10.55,10.71,150.61,151.06,151.31,151.52,151.71,151.88,152.06,152.22,152.6,23.81,23.31,23.1,22.88,22.67,22.47,22.27,22.080000000000002,21.69,N/A,N/A +2013,6,23,14,30,94020,92940,91890,52.42,0,8.09,10.24,10.85,11.21,11.44,11.6,11.700000000000001,11.78,11.870000000000001,155.89000000000001,156.14000000000001,156.32,156.43,156.53,156.6,156.68,156.74,156.88,24.87,24.23,23.98,23.740000000000002,23.52,23.31,23.1,22.91,22.52,N/A,N/A +2013,6,23,15,30,94030,92950,91910,45.1,0,7.05,8.89,9.43,9.74,9.950000000000001,10.09,10.18,10.25,10.34,155.68,156.03,156.22,156.36,156.48,156.58,156.69,156.78,156.98,26.42,25.66,25.39,25.13,24.900000000000002,24.68,24.46,24.27,23.86,N/A,N/A +2013,6,23,16,30,94020,92950,91910,39.7,0,7.41,9.3,9.85,10.15,10.36,10.5,10.6,10.68,10.76,156.45000000000002,156.70000000000002,156.83,156.92000000000002,157,157.08,157.15,157.21,157.35,28.03,27.21,26.91,26.64,26.39,26.17,25.95,25.740000000000002,25.330000000000002,N/A,N/A +2013,6,23,17,30,93980,92920,91880,33.8,0,7.78,9.74,10.32,10.64,10.86,11,11.1,11.18,11.28,158.65,158.8,158.87,158.92000000000002,158.96,158.99,159.03,159.06,159.14000000000001,29.560000000000002,28.69,28.38,28.1,27.85,27.62,27.39,27.18,26.77,N/A,N/A +2013,6,23,18,30,93940,92880,91850,30.32,0,7.6000000000000005,9.5,10.03,10.33,10.53,10.67,10.77,10.84,10.93,160.69,160.70000000000002,160.69,160.67000000000002,160.65,160.64000000000001,160.63,160.62,160.6,30.810000000000002,29.92,29.61,29.32,29.07,28.830000000000002,28.6,28.39,27.97,N/A,N/A +2013,6,23,19,30,93900,92840,91820,27.44,0,7.42,9.26,9.77,10.05,10.24,10.370000000000001,10.46,10.53,10.61,162.19,162.23,162.26,162.27,162.27,162.27,162.27,162.27,162.28,31.85,30.970000000000002,30.650000000000002,30.37,30.11,29.88,29.650000000000002,29.44,29.01,N/A,N/A +2013,6,23,20,30,93860,92810,91790,25.71,0,7.41,9.26,9.78,10.07,10.27,10.41,10.51,10.58,10.68,157.44,157.62,157.70000000000002,157.76,157.8,157.84,157.88,157.92000000000002,157.99,32.6,31.740000000000002,31.43,31.150000000000002,30.89,30.66,30.43,30.21,29.79,N/A,N/A +2013,6,23,21,30,93820,92770,91750,23.740000000000002,0,7.66,9.59,10.14,10.44,10.65,10.790000000000001,10.9,10.98,11.09,158.59,158.65,158.64000000000001,158.6,158.57,158.54,158.5,158.48,158.43,33.13,32.31,32.01,31.73,31.490000000000002,31.26,31.03,30.82,30.39,N/A,N/A +2013,6,23,22,30,93780,92740,91720,22.09,0,7.46,9.370000000000001,9.93,10.25,10.48,10.64,10.75,10.85,10.98,155.02,155.17000000000002,155.26,155.32,155.36,155.4,155.43,155.47,155.52,33.39,32.65,32.37,32.11,31.87,31.64,31.42,31.21,30.79,N/A,N/A +2013,6,23,23,30,93760,92710,91700,21.78,0,7.86,9.97,10.59,10.950000000000001,11.200000000000001,11.39,11.53,11.64,11.8,151.62,151.78,151.89000000000001,151.96,152.02,152.06,152.11,152.15,152.23,33.22,32.59,32.35,32.1,31.88,31.66,31.44,31.240000000000002,30.830000000000002,N/A,N/A +2013,6,24,0,30,93760,92710,91690,21.8,0,7.7,9.89,10.49,10.86,11.13,11.32,11.47,11.6,11.78,154.47,154.49,154.49,154.47,154.45000000000002,154.42000000000002,154.4,154.38,154.35,32.64,32.2,32,31.78,31.580000000000002,31.37,31.17,30.970000000000002,30.57,N/A,N/A +2013,6,24,1,30,93790,92730,91710,23.94,0,5.39,7.67,8.49,9.16,9.71,10.19,10.61,10.99,11.64,155.05,154.86,154.69,154.6,154.55,154.54,154.54,154.55,154.54,31.39,31.3,31.19,31.05,30.91,30.75,30.580000000000002,30.42,30.07,N/A,N/A +2013,6,24,2,30,93820,92760,91740,24.88,0,6.45,9.32,10.35,11.24,12.01,12.69,13.31,13.88,14.84,151.6,151.35,151.23,151.11,151.03,150.96,150.92000000000002,150.89000000000001,150.86,30.2,30.19,30.13,30.03,29.92,29.8,29.67,29.55,29.26,N/A,N/A +2013,6,24,3,30,93850,92790,91760,26.830000000000002,0,4.3100000000000005,6.91,7.930000000000001,8.85,9.68,10.44,11.18,11.870000000000001,13.17,146.56,146.4,146.33,146.35,146.54,146.84,147.29,147.76,148.92000000000002,29.01,29.080000000000002,29.05,29,28.95,28.89,28.810000000000002,28.740000000000002,28.57,N/A,N/A +2013,6,24,4,30,93860,92790,91760,25,0,6.15,9.16,10.25,11.23,12.09,12.86,13.61,14.31,15.55,147.74,148.75,149.39000000000001,150.04,150.70000000000002,151.33,151.96,152.54,153.51,28.54,28.59,28.57,28.55,28.5,28.45,28.400000000000002,28.34,28.19,N/A,N/A +2013,6,24,5,30,93900,92830,91800,26.23,0,6.640000000000001,9.76,10.86,11.81,12.65,13.41,14.120000000000001,14.77,15.92,157.05,157.57,157.89000000000001,158.24,158.6,158.98,159.38,159.76,160.55,28.150000000000002,28.22,28.2,28.16,28.1,28.04,27.96,27.89,27.7,N/A,N/A +2013,6,24,6,30,93950,92880,91840,46.62,0,6.99,9.76,10.73,11.52,12.22,12.84,13.43,13.99,15.09,148.97,149.44,149.89000000000001,150.38,150.92000000000002,151.48,152.1,152.70000000000002,153.93,26.78,26.66,26.560000000000002,26.43,26.3,26.17,26.03,25.91,25.650000000000002,N/A,N/A +2013,6,24,7,30,93990,92910,91870,53.06,0,7.86,10.88,11.88,12.700000000000001,13.42,14.07,14.69,15.27,16.42,154.41,154.94,155.25,155.59,155.94,156.32,156.72,157.1,157.87,26.150000000000002,26,25.89,25.76,25.62,25.48,25.34,25.2,24.92,N/A,N/A +2013,6,24,8,30,94050,92970,91920,55.46,0,7.37,10.15,11.05,11.790000000000001,12.42,12.99,13.52,14.01,14.97,150.8,151.38,151.76,152.15,152.54,152.94,153.37,153.77,154.65,25.060000000000002,24.88,24.75,24.59,24.43,24.28,24.11,23.96,23.62,N/A,N/A +2013,6,24,9,30,94050,92960,91920,50.65,0,7.1000000000000005,10,11.01,11.86,12.59,13.23,13.84,14.4,15.49,152.35,152.85,153.17000000000002,153.53,153.92000000000002,154.31,154.76,155.20000000000002,156.15,23.94,23.82,23.71,23.57,23.43,23.28,23.13,22.98,22.68,N/A,N/A +2013,6,24,10,30,94060,92980,91920,55.04,0,6.7700000000000005,9.58,10.59,11.44,12.17,12.82,13.44,14.01,15.120000000000001,150.69,151.6,152.19,152.77,153.34,153.9,154.48,155.04,156.17000000000002,22.8,22.67,22.56,22.43,22.29,22.16,22.01,21.87,21.580000000000002,N/A,N/A +2013,6,24,11,30,94100,93010,91950,57.77,0,5.75,8.4,9.41,10.28,11.03,11.69,12.32,12.91,14.05,148.24,149.56,150.39000000000001,151.13,151.82,152.47,153.14000000000001,153.77,155.05,21.94,21.84,21.740000000000002,21.61,21.48,21.35,21.21,21.07,20.8,N/A,N/A +2013,6,24,12,30,94120,93030,91970,59.31,0,6.890000000000001,9.39,10.22,10.89,11.46,11.96,12.44,12.870000000000001,13.71,148.13,149.11,149.75,150.33,150.89000000000001,151.41,151.97,152.51,153.59,21.67,21.43,21.29,21.13,20.96,20.81,20.64,20.490000000000002,20.18,N/A,N/A +2013,6,24,13,30,94150,93060,92000,56.620000000000005,0,7.53,9.6,10.19,10.56,10.82,11.01,11.17,11.3,11.55,152.83,153.26,153.51,153.73,153.94,154.13,154.35,154.55,155.04,22.490000000000002,22,21.79,21.580000000000002,21.37,21.18,20.98,20.8,20.43,N/A,N/A +2013,6,24,14,30,94210,93120,92070,53.13,0,7.21,9.120000000000001,9.68,10.01,10.23,10.38,10.48,10.57,10.66,155.77,155.95000000000002,156.05,156.13,156.21,156.29,156.36,156.44,156.61,23.73,23.080000000000002,22.830000000000002,22.59,22.37,22.16,21.95,21.75,21.36,N/A,N/A +2013,6,24,15,30,94200,93120,92070,46,0,7.12,8.96,9.52,9.84,10.06,10.21,10.32,10.4,10.51,157.02,157.20000000000002,157.26,157.31,157.36,157.4,157.44,157.49,157.58,25.37,24.62,24.330000000000002,24.07,23.84,23.62,23.400000000000002,23.2,22.8,N/A,N/A +2013,6,24,16,30,94170,93100,92050,38.34,0,7.44,9.36,9.92,10.24,10.450000000000001,10.61,10.71,10.8,10.91,156.26,156.46,156.59,156.68,156.75,156.82,156.88,156.94,157.06,27.07,26.26,25.96,25.69,25.45,25.22,25,24.8,24.39,N/A,N/A +2013,6,24,17,30,94160,93090,92050,32.61,0,7.17,8.96,9.49,9.790000000000001,9.99,10.13,10.23,10.31,10.42,152.08,152.43,152.64000000000001,152.8,152.92000000000002,153.03,153.13,153.23,153.4,28.7,27.86,27.55,27.26,27.01,26.78,26.560000000000002,26.35,25.93,N/A,N/A +2013,6,24,18,30,94080,93020,91980,28.42,0,7.33,9.15,9.67,9.96,10.16,10.3,10.39,10.47,10.57,155.77,155.99,156.1,156.19,156.27,156.33,156.4,156.46,156.58,30.14,29.27,28.95,28.66,28.400000000000002,28.17,27.94,27.73,27.310000000000002,N/A,N/A +2013,6,24,19,30,94050,92990,91960,26.3,0,7.140000000000001,8.91,9.42,9.700000000000001,9.89,10.03,10.13,10.21,10.31,158.02,158.19,158.26,158.31,158.35,158.38,158.42000000000002,158.44,158.5,31.3,30.43,30.11,29.82,29.57,29.34,29.11,28.89,28.47,N/A,N/A +2013,6,24,20,30,93990,92940,91910,25.88,0,6.8,8.48,8.98,9.26,9.450000000000001,9.58,9.68,9.75,9.85,154.91,155.09,155.19,155.26,155.32,155.37,155.42000000000002,155.47,155.56,32.19,31.34,31.03,30.75,30.5,30.26,30.03,29.82,29.400000000000002,N/A,N/A +2013,6,24,21,30,93940,92890,91870,24.86,0,6.78,8.45,8.950000000000001,9.23,9.42,9.56,9.66,9.74,9.85,154.20000000000002,154.48,154.65,154.77,154.88,154.96,155.04,155.12,155.25,32.92,32.11,31.810000000000002,31.54,31.29,31.060000000000002,30.830000000000002,30.61,30.19,N/A,N/A +2013,6,24,22,30,93890,92840,91820,25.91,0,6.78,8.5,9.02,9.31,9.52,9.66,9.77,9.85,9.97,153.75,154.02,154.16,154.27,154.37,154.45000000000002,154.53,154.61,154.76,33.05,32.31,32.03,31.77,31.53,31.3,31.080000000000002,30.87,30.45,N/A,N/A +2013,6,24,23,30,93860,92810,91790,26.3,0,7.11,8.96,9.52,9.85,10.08,10.25,10.370000000000001,10.47,10.61,153.99,154.26,154.41,154.52,154.61,154.69,154.76,154.83,154.95000000000002,33.03,32.38,32.14,31.89,31.66,31.44,31.220000000000002,31.02,30.61,N/A,N/A +2013,6,25,0,30,93830,92780,91760,27.71,0,7.51,9.6,10.17,10.5,10.74,10.91,11.03,11.13,11.26,152.04,152.16,152.26,152.35,152.43,152.51,152.59,152.68,152.85,32.53,32.06,31.86,31.63,31.43,31.220000000000002,31.01,30.82,30.42,N/A,N/A +2013,6,25,1,30,93830,92780,91760,31.12,0,6.23,8.59,9.35,9.93,10.39,10.77,11.09,11.370000000000001,11.8,145.11,145.46,145.72,145.99,146.26,146.53,146.83,147.12,147.72,31.54,31.36,31.23,31.060000000000002,30.89,30.72,30.54,30.36,29.990000000000002,N/A,N/A +2013,6,25,2,30,93860,92800,91780,33.74,0,6.2,8.81,9.71,10.450000000000001,11.07,11.61,12.09,12.51,13.24,149.46,149.45000000000002,149.43,149.45000000000002,149.53,149.65,149.81,149.98,150.4,30.68,30.6,30.51,30.39,30.26,30.12,29.97,29.830000000000002,29.51,N/A,N/A +2013,6,25,3,30,93920,92860,91840,36.43,0,5.22,7.74,8.64,9.41,10.1,10.72,11.290000000000001,11.84,12.83,150.45000000000002,151.13,151.59,152.13,152.67000000000002,153.24,153.79,154.32,155.29,29.96,29.96,29.91,29.82,29.72,29.62,29.5,29.38,29.12,N/A,N/A +2013,6,25,4,30,93930,92860,91840,38.11,0,5.8500000000000005,8.58,9.56,10.43,11.18,11.85,12.47,13.040000000000001,14.02,150.84,152.06,152.82,153.57,154.25,154.88,155.43,155.93,156.69,29.41,29.41,29.37,29.310000000000002,29.240000000000002,29.16,29.07,28.98,28.740000000000002,N/A,N/A +2013,6,25,5,30,93940,92880,91850,41.44,0,7,9.88,10.89,11.73,12.47,13.14,13.75,14.32,15.38,147.57,148.42000000000002,149.01,149.65,150.3,150.97,151.65,152.3,153.57,28.8,28.740000000000002,28.67,28.57,28.46,28.36,28.240000000000002,28.13,27.88,N/A,N/A +2013,6,25,6,30,93990,92930,91890,44.09,0,7.84,10.82,11.82,12.63,13.33,13.950000000000001,14.530000000000001,15.06,16.080000000000002,149.85,150.34,150.62,150.91,151.22,151.54,151.89000000000001,152.23,152.99,27.86,27.71,27.59,27.44,27.3,27.150000000000002,26.990000000000002,26.84,26.52,N/A,N/A +2013,6,25,7,30,94050,92970,91930,41.49,0,8.53,11.620000000000001,12.6,13.4,14.08,14.68,15.23,15.74,16.7,154.9,155.38,155.70000000000002,155.99,156.28,156.55,156.83,157.1,157.66,26.91,26.75,26.63,26.48,26.32,26.16,26,25.84,25.51,N/A,N/A +2013,6,25,8,30,94060,92980,91940,45.76,0,7.98,10.97,11.93,12.71,13.38,13.97,14.52,15.030000000000001,16.02,153.58,154.13,154.46,154.76,155.05,155.32,155.63,155.91,156.51,25.52,25.35,25.22,25.07,24.91,24.76,24.59,24.43,24.09,N/A,N/A +2013,6,25,9,30,94070,92990,91940,52.33,0,8.49,11.51,12.47,13.25,13.9,14.47,14.99,15.47,16.4,153.75,154.43,154.88,155.31,155.72,156.12,156.54,156.93,157.76,24.54,24.36,24.23,24.07,23.92,23.77,23.6,23.45,23.13,N/A,N/A +2013,6,25,10,30,94060,92970,91920,58.27,0,7.26,10.01,10.94,11.72,12.36,12.9,13.42,13.89,14.780000000000001,153.06,153.77,154.19,154.6,155,155.38,155.8,156.20000000000002,157.09,23.7,23.51,23.38,23.22,23.06,22.91,22.740000000000002,22.59,22.28,N/A,N/A +2013,6,25,11,30,94070,92990,91940,62.85,0,6.0600000000000005,8.51,9.41,10.16,10.790000000000001,11.33,11.84,12.3,13.19,152.71,153.74,154.41,154.99,155.53,156.03,156.53,157,157.98,22.900000000000002,22.72,22.580000000000002,22.42,22.26,22.1,21.93,21.78,21.46,N/A,N/A +2013,6,25,12,30,94090,93010,91950,67.45,0,5.0200000000000005,7.48,8.58,9.5,10.27,10.950000000000001,11.540000000000001,12.07,13.06,150.68,152.19,153.52,155.32,156.42000000000002,157.14000000000001,157.68,158.15,159.1,22.400000000000002,22.12,21.96,21.77,21.6,21.45,21.28,21.12,20.79,N/A,N/A +2013,6,25,13,30,94140,93050,92000,65.49,0,7.12,9.07,9.620000000000001,9.96,10.18,10.34,10.44,10.52,10.64,154.62,154.97,155.17000000000002,155.33,155.48,155.62,155.76,155.9,156.21,23.13,22.6,22.38,22.16,21.95,21.75,21.55,21.36,20.97,N/A,N/A +2013,6,25,14,30,94160,93070,92020,60.85,0,6.41,8.040000000000001,8.53,8.8,8.97,9.08,9.14,9.200000000000001,9.25,162,162.11,162.16,162.21,162.26,162.31,162.37,162.43,162.59,24.41,23.740000000000002,23.490000000000002,23.240000000000002,23.02,22.81,22.61,22.42,22.02,N/A,N/A +2013,6,25,15,30,94150,93080,92030,53.45,0,6.74,8.41,8.89,9.15,9.31,9.42,9.49,9.53,9.57,161.96,162.16,162.27,162.36,162.43,162.5,162.58,162.65,162.82,26.2,25.43,25.150000000000002,24.89,24.66,24.44,24.23,24.03,23.63,N/A,N/A +2013,6,25,16,30,94120,93050,92010,46.26,0,6.640000000000001,8.26,8.72,8.97,9.13,9.23,9.290000000000001,9.34,9.38,164.39000000000001,164.66,164.82,164.95000000000002,165.06,165.16,165.25,165.34,165.53,28.04,27.22,26.92,26.650000000000002,26.41,26.19,25.97,25.77,25.36,N/A,N/A +2013,6,25,17,30,94080,93020,91990,39.4,0,6.22,7.7,8.13,8.35,8.5,8.6,8.66,8.700000000000001,8.75,168.51,168.74,168.88,168.99,169.09,169.18,169.27,169.35,169.51,29.990000000000002,29.150000000000002,28.84,28.560000000000002,28.310000000000002,28.080000000000002,27.86,27.650000000000002,27.240000000000002,N/A,N/A +2013,6,25,18,30,94020,92960,91940,34.27,0,5.76,7.11,7.5,7.71,7.8500000000000005,7.94,8,8.05,8.1,176.72,176.46,176.31,176.18,176.07,175.98,175.9,175.82,175.69,31.68,30.85,30.53,30.25,30,29.77,29.54,29.330000000000002,28.91,N/A,N/A +2013,6,25,19,30,93970,92920,91900,29.55,0,5.11,6.25,6.55,6.69,6.7700000000000005,6.8100000000000005,6.84,6.8500000000000005,6.83,181.65,180.81,180.41,180.08,179.82,179.57,179.35,179.15,178.79,33.12,32.32,32.01,31.73,31.490000000000002,31.26,31.04,30.84,30.43,N/A,N/A +2013,6,25,20,30,93910,92870,91850,27.150000000000002,0,5.46,6.71,7.07,7.25,7.36,7.44,7.48,7.5200000000000005,7.54,175.81,175.17000000000002,174.8,174.45000000000002,174.15,173.87,173.59,173.35,172.86,34.26,33.45,33.14,32.86,32.61,32.38,32.160000000000004,31.95,31.53,N/A,N/A +2013,6,25,21,30,93850,92810,91790,25.47,0,5.54,6.8500000000000005,7.22,7.43,7.57,7.66,7.72,7.7700000000000005,7.82,166.76,166.6,166.52,166.44,166.37,166.29,166.22,166.15,166.01,35.11,34.32,34.03,33.75,33.5,33.27,33.05,32.83,32.42,N/A,N/A +2013,6,25,22,30,93770,92730,91720,26.12,0,6.41,7.97,8.4,8.620000000000001,8.77,8.86,8.93,8.98,9.03,157.72,158.1,158.27,158.4,158.5,158.59,158.67000000000002,158.74,158.87,35.32,34.57,34.29,34.03,33.79,33.57,33.35,33.14,32.730000000000004,N/A,N/A +2013,6,25,23,30,93790,92750,91740,26.63,0,5.91,7.4,7.82,8.05,8.21,8.32,8.4,8.46,8.53,160.75,160.69,160.67000000000002,160.65,160.64000000000001,160.65,160.65,160.67000000000002,160.70000000000002,35.33,34.68,34.44,34.19,33.97,33.75,33.54,33.33,32.92,N/A,N/A +2013,6,26,0,30,93750,92710,91690,26.6,0,6.5600000000000005,8.34,8.83,9.11,9.32,9.46,9.56,9.64,9.74,150.43,150.87,151.13,151.36,151.56,151.75,151.93,152.1,152.42000000000002,34.79,34.31,34.1,33.88,33.67,33.46,33.25,33.06,32.660000000000004,N/A,N/A +2013,6,26,1,30,93790,92740,91730,28.26,0,5.0600000000000005,7.01,7.61,8.06,8.41,8.69,8.92,9.11,9.41,159.27,159.33,159.39000000000001,159.47,159.55,159.67000000000002,159.8,159.94,160.24,33.59,33.42,33.3,33.13,32.97,32.8,32.62,32.44,32.07,N/A,N/A +2013,6,26,2,30,93790,92740,91730,29.45,0,5.41,7.8100000000000005,8.61,9.28,9.84,10.33,10.74,11.1,11.66,150.96,151.8,152.32,152.91,153.52,154.14000000000001,154.74,155.3,156.24,32.5,32.410000000000004,32.31,32.19,32.05,31.92,31.76,31.61,31.28,N/A,N/A +2013,6,26,3,30,93830,92780,91760,32.47,0,4.98,7.38,8.24,8.97,9.61,10.19,10.73,11.23,12.14,150.27,150.82,151.16,151.59,152.1,152.71,153.4,154.09,155.53,31.36,31.330000000000002,31.28,31.19,31.1,31.01,30.900000000000002,30.8,30.57,N/A,N/A +2013,6,26,4,30,93830,92770,91750,31.63,0,5.55,8.09,9,9.77,10.450000000000001,11.08,11.66,12.200000000000001,13.18,152.24,152.79,153.16,153.51,153.88,154.29,154.75,155.21,156.27,30.77,30.72,30.650000000000002,30.55,30.46,30.36,30.25,30.150000000000002,29.94,N/A,N/A +2013,6,26,5,30,93860,92800,91780,31.79,0,5.99,8.72,9.700000000000001,10.57,11.36,12.1,12.81,13.48,14.68,156.13,157.04,157.64000000000001,158.16,158.65,159.11,159.51,159.87,160.41,30.01,30.02,29.98,29.92,29.86,29.8,29.72,29.650000000000002,29.46,N/A,N/A +2013,6,26,6,30,93880,92820,91790,32.32,0,6.49,9.32,10.31,11.19,11.97,12.67,13.33,13.950000000000001,15.08,157.81,158.72,159.28,159.83,160.38,160.94,161.54,162.11,163.33,29.51,29.490000000000002,29.44,29.38,29.32,29.26,29.2,29.14,29.01,N/A,N/A +2013,6,26,7,30,93880,92820,91790,33.25,0,6.83,9.77,10.76,11.61,12.35,13.030000000000001,13.65,14.22,15.23,160.61,161.51,162.09,162.64000000000001,163.17000000000002,163.71,164.27,164.8,165.91,28.990000000000002,28.98,28.93,28.87,28.8,28.740000000000002,28.68,28.62,28.490000000000002,N/A,N/A +2013,6,26,8,30,93920,92850,91820,41.46,0,5.01,7.66,8.700000000000001,9.64,10.46,11.200000000000001,11.92,12.61,13.950000000000001,151.77,153.54,154.58,155.44,156.19,156.87,157.55,158.19,159.53,27.16,27.07,26.97,26.85,26.71,26.580000000000002,26.43,26.29,26.01,N/A,N/A +2013,6,26,9,30,93920,92850,91810,57.45,0,6.47,9.1,10.01,10.8,11.49,12.11,12.700000000000001,13.25,14.36,156,157.13,157.81,158.43,158.98,159.48,159.94,160.37,161.15,25.900000000000002,25.73,25.61,25.46,25.310000000000002,25.17,25.01,24.86,24.560000000000002,N/A,N/A +2013,6,26,10,30,93940,92870,91830,64.51,0,5.33,7.76,8.67,9.48,10.18,10.8,11.4,11.950000000000001,13.040000000000001,152.53,154.12,155.07,155.9,156.67000000000002,157.39000000000001,158.1,158.77,160.11,24.94,24.77,24.650000000000002,24.5,24.35,24.2,24.04,23.900000000000002,23.61,N/A,N/A +2013,6,26,11,30,93950,92870,91830,68.74,0,5.53,7.96,8.85,9.63,10.31,10.9,11.47,12,13.030000000000001,150.11,152.04,153.18,154.21,155.15,156.03,156.91,157.72,159.36,24.25,24.09,23.97,23.830000000000002,23.69,23.56,23.42,23.3,23.05,N/A,N/A +2013,6,26,12,30,93980,92900,91850,69.95,0,4.65,7.03,7.99,8.700000000000001,9.290000000000001,9.8,10.27,10.68,11.47,146.02,151.13,153.41,154.14000000000001,154.82,155.46,156.16,156.84,158.29,24,23.72,23.57,23.41,23.26,23.11,22.97,22.84,22.580000000000002,N/A,N/A +2013,6,26,13,30,94040,92960,91910,66.45,0,6.32,8.040000000000001,8.540000000000001,8.84,9.05,9.19,9.3,9.38,9.52,156.35,156.74,156.95000000000002,157.16,157.36,157.55,157.77,157.98,158.48,24.63,24.11,23.89,23.67,23.46,23.27,23.07,22.89,22.51,N/A,N/A +2013,6,26,14,30,94040,92960,91920,58.14,0,5.73,7.2,7.6000000000000005,7.82,7.96,8.05,8.11,8.15,8.2,160.58,160.91,161.14000000000001,161.33,161.51,161.67000000000002,161.86,162.03,162.43,26.09,25.43,25.19,24.95,24.740000000000002,24.54,24.34,24.16,23.78,N/A,N/A +2013,6,26,15,30,94050,92980,91940,46.96,0,5.98,7.46,7.86,8.07,8.21,8.290000000000001,8.33,8.370000000000001,8.38,166.88,167.09,167.24,167.37,167.49,167.61,167.73,167.85,168.11,28.32,27.57,27.3,27.04,26.810000000000002,26.6,26.39,26.2,25.8,N/A,N/A +2013,6,26,16,30,94030,92970,91940,39.97,0,5.8500000000000005,7.25,7.640000000000001,7.8500000000000005,7.98,8.06,8.11,8.14,8.16,166.07,166.33,166.48,166.61,166.74,166.85,166.97,167.07,167.3,30.11,29.32,29.02,28.75,28.51,28.29,28.080000000000002,27.87,27.47,N/A,N/A +2013,6,26,17,30,94000,92940,91920,33.37,0,6.0600000000000005,7.51,7.91,8.120000000000001,8.26,8.34,8.39,8.42,8.45,169.04,169.24,169.33,169.43,169.51,169.58,169.67000000000002,169.76,169.93,31.970000000000002,31.13,30.82,30.54,30.29,30.07,29.84,29.63,29.22,N/A,N/A +2013,6,26,18,30,93950,92900,91880,28.560000000000002,0,5.21,6.42,6.76,6.93,7.05,7.12,7.17,7.2,7.22,174.28,174.28,174.27,174.25,174.24,174.23,174.23,174.22,174.23,33.64,32.83,32.51,32.230000000000004,31.98,31.75,31.53,31.32,30.900000000000002,N/A,N/A +2013,6,26,19,30,93930,92890,91880,26.02,0,5.39,6.63,6.97,7.15,7.2700000000000005,7.34,7.390000000000001,7.42,7.45,165.87,166.08,166.17000000000002,166.26,166.33,166.39000000000001,166.45000000000002,166.51,166.63,34.97,34.14,33.83,33.54,33.29,33.06,32.84,32.62,32.21,N/A,N/A +2013,6,26,20,30,93880,92840,91830,23.85,0,5.69,7.04,7.4,7.59,7.72,7.8100000000000005,7.87,7.91,7.96,163.04,163.20000000000002,163.3,163.38,163.44,163.49,163.54,163.57,163.66,35.94,35.12,34.81,34.53,34.28,34.04,33.82,33.61,33.19,N/A,N/A +2013,6,26,21,30,93830,92800,91790,22.84,0,5.16,6.33,6.65,6.79,6.890000000000001,6.94,6.97,6.99,6.99,160.59,160.77,160.85,160.87,160.87,160.86,160.83,160.81,160.75,36.54,35.77,35.47,35.2,34.96,34.74,34.52,34.31,33.9,N/A,N/A +2013,6,26,22,30,93800,92760,91760,23.39,0,5.8,7.21,7.58,7.7700000000000005,7.9,7.98,8.03,8.06,8.1,153.85,154.05,154.15,154.20000000000002,154.23,154.24,154.26,154.27,154.27,36.75,36,35.730000000000004,35.46,35.230000000000004,35.01,34.79,34.58,34.17,N/A,N/A +2013,6,26,23,30,93790,92750,91740,22.97,0,6.45,8.14,8.58,8.83,9,9.11,9.19,9.25,9.31,148.1,148.51,148.75,148.96,149.14000000000001,149.3,149.46,149.61,149.9,36.46,35.81,35.56,35.32,35.09,34.88,34.660000000000004,34.46,34.05,N/A,N/A +2013,6,27,0,30,93800,92760,91750,22.67,0,6.63,8.48,8.96,9.25,9.450000000000001,9.6,9.700000000000001,9.78,9.88,146.27,146.51,146.64000000000001,146.74,146.83,146.9,146.97,147.05,147.18,35.75,35.27,35.06,34.84,34.63,34.43,34.22,34.02,33.62,N/A,N/A +2013,6,27,1,30,93810,92770,91760,22.93,0,4.57,6.67,7.36,7.9,8.33,8.69,8.97,9.22,9.58,145.72,146.13,146.38,146.65,146.95000000000002,147.25,147.56,147.84,148.32,34.4,34.29,34.18,34.02,33.86,33.69,33.51,33.33,32.95,N/A,N/A +2013,6,27,2,30,93890,92840,91830,27.92,0,4.59,6.88,7.67,8.3,8.83,9.27,9.66,10,10.56,141.82,142.49,142.97,143.55,144.14000000000001,144.77,145.38,145.95000000000002,146.94,32.95,32.94,32.87,32.77,32.660000000000004,32.54,32.4,32.26,31.95,N/A,N/A +2013,6,27,3,30,93900,92850,91830,28.75,0,4.97,7.48,8.39,9.200000000000001,9.9,10.540000000000001,11.14,11.71,12.69,147.45000000000002,147.86,148.08,148.27,148.47,148.67000000000002,148.9,149.13,149.65,31.900000000000002,31.900000000000002,31.85,31.78,31.69,31.61,31.5,31.400000000000002,31.16,N/A,N/A +2013,6,27,4,30,93940,92880,91870,29.900000000000002,0,5.86,8.71,9.72,10.61,11.38,12.08,12.71,13.280000000000001,14.22,149,149.86,150.43,151.01,151.62,152.25,152.91,153.54,154.77,31.23,31.26,31.220000000000002,31.16,31.1,31.04,30.970000000000002,30.900000000000002,30.740000000000002,N/A,N/A +2013,6,27,5,30,93960,92900,91880,31.63,0,5.66,8.42,9.43,10.34,11.15,11.89,12.6,13.25,14.46,148.63,149.75,150.48,151.17000000000002,151.86,152.56,153.3,154.01,155.48,30.27,30.29,30.25,30.19,30.14,30.09,30.03,29.990000000000002,29.88,N/A,N/A +2013,6,27,6,30,94000,92940,91910,35.52,0,5.29,8.11,9.13,10.03,10.83,11.56,12.26,12.91,14.11,148.92000000000002,149.66,150.13,150.61,151.15,151.74,152.43,153.13,154.72,29.32,29.35,29.310000000000002,29.240000000000002,29.17,29.1,29.02,28.94,28.79,N/A,N/A +2013,6,27,7,30,94060,92990,91960,41.33,0,4.74,7.42,8.48,9.46,10.34,11.14,11.93,12.69,14.13,152.96,154.70000000000002,155.78,156.75,157.62,158.42000000000002,159.20000000000002,159.92000000000002,161.24,28.29,28.330000000000002,28.3,28.25,28.19,28.12,28.060000000000002,28,27.86,N/A,N/A +2013,6,27,8,30,94070,93000,91960,48.83,0,4.9,7.38,8.34,9.22,10.03,10.76,11.51,12.22,13.67,153.3,154.54,155.31,155.97,156.58,157.14000000000001,157.71,158.26,159.45000000000002,27.22,27.13,27.05,26.94,26.82,26.71,26.59,26.47,26.22,N/A,N/A +2013,6,27,9,30,94080,93010,91970,61.14,0,5.13,7.53,8.4,9.16,9.84,10.450000000000001,11.040000000000001,11.61,12.73,154.97,156.09,156.76,157.38,157.95000000000002,158.49,159.05,159.59,160.73,26.09,25.95,25.84,25.69,25.55,25.41,25.26,25.12,24.830000000000002,N/A,N/A +2013,6,27,10,30,94100,93020,91980,72.95,0,6.640000000000001,9.03,9.790000000000001,10.42,10.96,11.44,11.89,12.31,13.16,154.81,155.91,156.61,157.27,157.88,158.46,159.05,159.6,160.78,25.310000000000002,25.060000000000002,24.91,24.75,24.580000000000002,24.43,24.26,24.11,23.8,N/A,N/A +2013,6,27,11,30,94150,93070,92030,77.23,0,6.41,8.61,9.290000000000001,9.81,10.24,10.61,10.94,11.24,11.790000000000001,151.19,152.23,152.86,153.45000000000002,154.02,154.57,155.15,155.68,156.83,24.91,24.64,24.48,24.3,24.13,23.96,23.78,23.62,23.28,N/A,N/A +2013,6,27,12,30,94170,93090,92040,80.14,0,3.83,5.97,6.88,7.51,8.08,8.61,9.11,9.58,10.51,144.67000000000002,148.29,150.5,152.37,153.77,154.88,155.93,156.9,158.8,24.36,24.080000000000002,23.93,23.75,23.59,23.43,23.27,23.13,22.830000000000002,N/A,N/A +2013,6,27,13,30,94180,93110,92060,70.91,0,5.69,7.23,7.66,7.92,8.09,8.21,8.3,8.38,8.53,148.84,149.65,150.09,150.48,150.85,151.19,151.58,151.93,152.82,25.66,25.14,24.93,24.72,24.52,24.32,24.13,23.95,23.580000000000002,N/A,N/A +2013,6,27,14,30,94200,93130,92090,62.57,0,5.71,7.21,7.62,7.8500000000000005,8,8.1,8.16,8.22,8.28,154.21,154.71,154.99,155.23,155.44,155.64000000000001,155.85,156.05,156.51,27.02,26.37,26.12,25.88,25.67,25.47,25.26,25.080000000000002,24.7,N/A,N/A +2013,6,27,15,30,94230,93160,92120,53.550000000000004,0,6.09,7.62,8.040000000000001,8.26,8.41,8.51,8.57,8.620000000000001,8.66,159.72,160,160.1,160.19,160.27,160.34,160.42000000000002,160.5,160.68,28.69,27.94,27.66,27.41,27.18,26.96,26.75,26.560000000000002,26.16,N/A,N/A +2013,6,27,16,30,94230,93170,92140,44.51,0,5.53,6.890000000000001,7.2700000000000005,7.48,7.61,7.71,7.7700000000000005,7.82,7.87,162.94,163.16,163.31,163.43,163.53,163.62,163.71,163.81,163.99,30.47,29.68,29.38,29.12,28.88,28.66,28.45,28.25,27.85,N/A,N/A +2013,6,27,17,30,94180,93130,92100,35.19,0,5.33,6.63,6.99,7.19,7.32,7.42,7.48,7.53,7.59,160.87,161.17000000000002,161.34,161.48,161.59,161.69,161.79,161.89000000000001,162.07,32.43,31.62,31.32,31.04,30.8,30.57,30.35,30.150000000000002,29.740000000000002,N/A,N/A +2013,6,27,18,30,94140,93090,92070,29.93,0,5.38,6.65,7,7.18,7.3,7.38,7.43,7.47,7.51,159.83,160.08,160.18,160.24,160.28,160.32,160.36,160.38,160.43,33.92,33.1,32.79,32.52,32.27,32.04,31.82,31.61,31.19,N/A,N/A +2013,6,27,19,30,94110,93060,92050,25.91,0,4.82,5.95,6.26,6.43,6.54,6.62,6.68,6.72,6.78,154.31,154.31,154.29,154.23,154.16,154.1,154.04,153.98,153.85,35.14,34.34,34.03,33.75,33.51,33.28,33.05,32.84,32.43,N/A,N/A +2013,6,27,20,30,94060,93010,92000,22.41,0,4.88,6.0200000000000005,6.32,6.48,6.58,6.66,6.71,6.75,6.8,139.72,140.16,140.4,140.53,140.63,140.71,140.77,140.82,140.9,36.14,35.35,35.050000000000004,34.77,34.53,34.300000000000004,34.08,33.86,33.45,N/A,N/A +2013,6,27,21,30,94030,92990,91980,20.36,0,5.26,6.5200000000000005,6.86,7.04,7.17,7.26,7.32,7.37,7.43,133.58,133.98,134.18,134.31,134.41,134.48,134.54,134.59,134.69,36.64,35.87,35.58,35.31,35.07,34.84,34.62,34.410000000000004,33.99,N/A,N/A +2013,6,27,22,30,94000,92960,91950,20.69,0,5.59,7,7.38,7.58,7.73,7.83,7.9,7.97,8.040000000000001,135.61,135.79,135.87,135.88,135.88,135.86,135.84,135.82,135.76,36.6,35.86,35.6,35.34,35.1,34.88,34.660000000000004,34.45,34.04,N/A,N/A +2013,6,27,23,30,93990,92950,91940,20.96,0,5.73,7.23,7.63,7.87,8.040000000000001,8.15,8.24,8.3,8.4,139.74,139.79,139.79,139.74,139.69,139.63,139.57,139.52,139.4,36.32,35.67,35.43,35.19,34.96,34.75,34.53,34.33,33.92,N/A,N/A +2013,6,28,0,30,93980,92930,91920,22.29,0,5.48,6.97,7.36,7.59,7.75,7.86,7.930000000000001,7.99,8.07,142.68,142.98,143.07,143.11,143.13,143.14000000000001,143.15,143.15,143.13,35.53,35.050000000000004,34.85,34.63,34.42,34.22,34.01,33.81,33.42,N/A,N/A +2013,6,28,1,30,93990,92940,91930,24.79,0,4.7,6.8500000000000005,7.5,7.98,8.33,8.6,8.77,8.9,9.01,151.42000000000002,151.19,151.06,150.9,150.78,150.68,150.58,150.48,150.3,34.22,34.1,33.980000000000004,33.83,33.660000000000004,33.49,33.3,33.12,32.74,N/A,N/A +2013,6,28,2,30,94020,92970,91950,28.39,0,3.71,6.04,6.86,7.58,8.16,8.64,8.99,9.27,9.51,156.14000000000001,156.25,156.38,156.61,156.89000000000001,157.19,157.48,157.75,158.23,32.730000000000004,32.87,32.86,32.81,32.730000000000004,32.62,32.49,32.34,32,N/A,N/A +2013,6,28,3,30,94050,93000,91980,31.43,0,3.5700000000000003,5.96,6.8100000000000005,7.55,8.17,8.700000000000001,9.11,9.47,9.93,160.13,159.8,159.51,159.25,159.02,158.8,158.54,158.29,157.72,31.62,31.82,31.85,31.85,31.810000000000002,31.75,31.66,31.55,31.28,N/A,N/A +2013,6,28,4,30,94070,93010,91990,30.02,0,4.6000000000000005,7.28,8.24,9.09,9.790000000000001,10.4,10.870000000000001,11.26,11.69,155.1,156.24,156.82,157.20000000000002,157.45000000000002,157.63,157.73,157.8,157.99,30.8,31,31.04,31.07,31.07,31.05,30.990000000000002,30.92,30.69,N/A,N/A +2013,6,28,5,30,94120,93060,92030,31.79,0,4.42,7.1000000000000005,8.120000000000001,9.06,9.88,10.61,11.21,11.74,12.39,154.59,155.16,155.33,155.16,154.97,154.78,154.71,154.69,155.02,29.7,29.94,30.01,30.05,30.060000000000002,30.060000000000002,30.03,30,29.86,N/A,N/A +2013,6,28,6,30,94180,93120,92090,33.7,0,4.28,7.07,8.16,9.18,10.11,10.98,11.78,12.52,13.61,156.20000000000002,156.8,157,156.96,156.97,157.02,157.25,157.52,158.19,28.85,29.150000000000002,29.23,29.29,29.310000000000002,29.310000000000002,29.28,29.240000000000002,29.080000000000002,N/A,N/A +2013,6,28,7,30,94200,93130,92090,37.13,0,4.38,7.22,8.290000000000001,9.32,10.25,11.11,11.9,12.63,13.72,156.6,157.47,157.77,157.75,157.93,158.21,158.87,159.59,161.29,27.990000000000002,28.27,28.34,28.39,28.41,28.42,28.42,28.41,28.330000000000002,N/A,N/A +2013,6,28,8,30,94240,93160,92130,39.59,0,3.89,6.58,7.66,8.74,9.76,10.74,11.63,12.46,13.57,153.61,155.57,156.53,156.97,157.33,157.62,157.98,158.35,159.36,27.28,27.57,27.64,27.68,27.71,27.73,27.740000000000002,27.740000000000002,27.69,N/A,N/A +2013,6,28,9,30,94280,93210,92170,44.1,0,3.06,5.46,6.41,7.44,8.44,9.41,10.3,11.15,12.47,127.28,137.89000000000001,143.47,147.33,150.26,152.65,154.68,156.53,159.8,25.71,26.19,26.310000000000002,26.38,26.41,26.400000000000002,26.38,26.34,26.240000000000002,N/A,N/A +2013,6,28,10,30,94210,93130,92090,55.75,0,5.98,8.78,9.790000000000001,10.69,11.52,12.290000000000001,13.02,13.68,14.76,160.56,162.4,163.48,164.5,165.55,166.61,167.8,168.96,171.49,25.59,25.57,25.52,25.46,25.39,25.32,25.25,25.19,25.05,N/A,N/A +2013,6,28,11,30,94290,93200,92160,65.73,0,2.11,4.36,5.23,6.2,7.12,8.02,8.870000000000001,9.68,11.07,132.91,146.99,154.05,158.31,161.14000000000001,163.19,164.78,166.23,169.33,23.93,24.330000000000002,24.38,24.41,24.39,24.35,24.28,24.22,24.09,N/A,N/A +2013,6,28,12,30,94300,93210,92170,65.63,0,3.44,5.17,5.9,6.63,7.3100000000000005,7.94,8.55,9.120000000000001,10.09,147.11,153.34,156.85,159.74,162.01,163.93,165.59,167.12,170.15,24.1,23.990000000000002,23.93,23.86,23.78,23.71,23.64,23.57,23.46,N/A,N/A +2013,6,28,13,30,94330,93250,92210,63,0,3.7600000000000002,4.71,4.97,5.13,5.25,5.33,5.44,5.54,6.08,157.18,158.83,159.78,160.65,161.53,162.38,163.48,164.54,167.82,25.490000000000002,25.01,24.82,24.62,24.43,24.26,24.080000000000002,23.92,23.62,N/A,N/A +2013,6,28,14,30,94320,93240,92200,56.03,0,4.57,5.72,6.03,6.2,6.3100000000000005,6.37,6.41,6.43,6.46,167.16,167.88,168.25,168.58,168.91,169.22,169.56,169.88,170.65,27.21,26.580000000000002,26.34,26.12,25.91,25.71,25.51,25.330000000000002,24.96,N/A,N/A +2013,6,28,15,30,94320,93250,92210,48.2,0,3.42,4.2,4.39,4.49,4.55,4.58,4.61,4.62,4.62,177.79,178.03,178.20000000000002,178.36,178.51,178.65,178.8,178.93,179.23,28.76,28.1,27.84,27.6,27.38,27.18,26.96,26.77,26.38,N/A,N/A +2013,6,28,16,30,94320,93250,92220,40.12,0,2.7800000000000002,3.37,3.5100000000000002,3.58,3.62,3.65,3.66,3.66,3.65,172.56,172.45000000000002,172.41,172.35,172.29,172.24,172.17000000000002,172.11,171.99,30.400000000000002,29.73,29.45,29.2,28.97,28.76,28.55,28.35,27.95,N/A,N/A +2013,6,28,17,30,94260,93200,92180,34.02,0,1.56,1.84,1.9000000000000001,1.94,1.96,1.98,1.99,2,2.0100000000000002,161.87,160.03,159.14000000000001,158.41,157.79,157.25,156.74,156.28,155.44,32.06,31.44,31.150000000000002,30.900000000000002,30.66,30.44,30.22,30.02,29.61,N/A,N/A +2013,6,28,18,30,94220,93170,92150,28.67,0,1.9000000000000001,2.18,2.22,2.22,2.22,2.21,2.19,2.18,2.15,104.69,106.05,106.93,107.67,108.31,108.91,109.47,109.99000000000001,110.98,33.61,32.97,32.67,32.410000000000004,32.18,31.96,31.740000000000002,31.53,31.13,N/A,N/A +2013,6,28,19,30,94150,93100,92090,24.86,0,1.54,1.81,1.87,1.9100000000000001,1.94,1.97,1.99,2.0100000000000002,2.05,124.41,124.35000000000001,124.15,123.87,123.61,123.34,123.05,122.76,122.17,34.980000000000004,34.34,34.05,33.78,33.55,33.32,33.1,32.9,32.49,N/A,N/A +2013,6,28,20,30,94050,93010,92000,19.67,0,2.56,3.06,3.16,3.22,3.25,3.27,3.29,3.31,3.33,93.76,93.32000000000001,93.03,92.73,92.44,92.15,91.85000000000001,91.57000000000001,90.99,36.35,35.67,35.38,35.13,34.89,34.67,34.46,34.25,33.84,N/A,N/A +2013,6,28,21,30,94010,92970,91960,19.2,0,2.68,3.19,3.29,3.3200000000000003,3.35,3.37,3.38,3.39,3.4,87.14,86.60000000000001,86.23,85.84,85.47,85.09,84.65,84.21000000000001,83.36,36.85,36.19,35.92,35.68,35.46,35.24,35.03,34.84,34.44,N/A,N/A +2013,6,28,22,30,93940,92900,91900,18,0,3.42,3.79,3.8000000000000003,3.77,3.75,3.73,3.72,3.71,3.7,123.11,116.18,112.37,108.64,105.61,103.01,100.8,98.87,95.8,37.57,36.9,36.64,36.39,36.160000000000004,35.94,35.72,35.52,35.1,N/A,N/A +2013,6,28,23,30,93880,92850,91850,18.28,0,2.12,2.66,2.81,2.91,2.99,3.06,3.11,3.16,3.23,78.06,78.79,79.58,80.2,80.74,81.22,81.67,82.09,82.87,37.660000000000004,37.1,36.86,36.62,36.410000000000004,36.19,35.980000000000004,35.78,35.37,N/A,N/A +2013,6,29,0,30,93820,92780,91780,17.72,0,3.45,4.3500000000000005,4.58,4.7,4.78,4.83,4.86,4.88,4.9,104.27,104.02,103.83,103.64,103.46000000000001,103.26,103.07000000000001,102.87,102.46000000000001,37.59,37.12,36.92,36.7,36.5,36.29,36.09,35.89,35.49,N/A,N/A +2013,6,29,1,30,93820,92790,91780,21.2,0,2.58,3.96,4.17,4.3,4.39,4.45,4.48,4.5,4.5,152.93,153.56,153.68,153.72,153.68,153.56,153.3,152.99,152.1,36.58,36.57,36.46,36.28,36.11,35.92,35.730000000000004,35.54,35.15,N/A,N/A +2013,6,29,2,30,93830,92790,91790,23.01,0,3.9,6.03,6.55,6.8100000000000005,6.93,6.93,6.88,6.8100000000000005,6.67,181.29,181.97,182.21,182.3,182.35,182.36,182.32,182.27,181.77,35.17,35.4,35.410000000000004,35.34,35.230000000000004,35.09,34.93,34.76,34.4,N/A,N/A +2013,6,29,3,30,93830,92790,91780,25.63,0,2.84,5.16,5.66,5.8,5.7,5.43,5.18,4.95,4.8100000000000005,185.93,186.44,186.38,185.84,185.8,186.09,186.44,186.77,186.44,34.13,34.81,34.95,34.97,34.9,34.76,34.550000000000004,34.34,33.93,N/A,N/A +2013,6,29,4,30,93870,92820,91810,29.86,0,0.54,1.76,2.5500000000000003,3.31,3.97,4.51,4.96,5.3500000000000005,5.88,132.01,163.20000000000002,183.19,189.5,193.88,196.41,197.92000000000002,198.92000000000002,200.25,32.27,32.87,32.99,33.12,33.19,33.22,33.21,33.18,33.05,N/A,N/A +2013,6,29,5,30,93870,92810,91800,31.310000000000002,0,1.24,2.98,3.8200000000000003,4.84,5.76,6.62,7.28,7.84,8.35,165.4,185.78,196.57,201.22,204.08,205.47,206.19,206.62,206.84,31.42,32.04,32.14,32.21,32.24,32.26,32.24,32.21,32.07,N/A,N/A +2013,6,29,6,30,93890,92840,91820,34.86,0,1.86,3.0500000000000003,3.43,4.26,5.11,5.97,6.72,7.41,8.21,127.31,161.53,177.70000000000002,190.05,197.63,201.79,204.37,206.29,208.71,30.28,30.91,31.02,31.12,31.19,31.220000000000002,31.240000000000002,31.25,31.19,N/A,N/A +2013,6,29,7,30,93930,92870,91850,37.27,0,2.04,3.12,3.41,4.09,4.8,5.55,6.18,6.75,7.53,120.73,151.66,169.23,188.22,198.94,204.15,206.47,207.77,208.3,29.34,30.07,30.2,30.330000000000002,30.42,30.48,30.51,30.52,30.46,N/A,N/A +2013,6,29,8,30,93960,92900,91870,39.49,0,1.3900000000000001,1.86,1.8800000000000001,2.11,2.44,2.86,3.29,3.74,4.57,124.99000000000001,154.27,169.45000000000002,185.27,195.29,202.07,205.83,208.68,210.95000000000002,28.64,29.34,29.43,29.490000000000002,29.52,29.53,29.52,29.5,29.44,N/A,N/A +2013,6,29,9,30,93990,92920,91890,43.29,0,1.52,1.98,1.68,1.33,1.05,0.8300000000000001,0.85,0.92,1.3900000000000001,98.57000000000001,96.58,99.43,105.42,121.04,137.56,159.32,182.06,199.76,27.22,28.3,28.560000000000002,28.71,28.77,28.79,28.79,28.77,28.69,N/A,N/A +2013,6,29,10,30,94000,92930,91900,44.43,0,0.49,0.89,0.9500000000000001,0.97,0.98,0.98,1.07,1.18,1.6300000000000001,157.09,142.13,137.25,137.48,143.77,152.35,163.3,174.53,187.47,26.67,27.38,27.5,27.63,27.73,27.810000000000002,27.88,27.94,28.02,N/A,N/A +2013,6,29,11,30,94020,92940,91910,48.480000000000004,0,0.23,0.27,0.31,0.5,0.54,0.49,0.46,0.45,0.93,330.65000000000003,78.4,106.09,111.64,118.61,124.42,164.22,201.68,230.20000000000002,25.05,25.94,26.23,26.51,26.79,27.05,27.36,27.63,27.900000000000002,N/A,N/A +2013,6,29,12,30,94030,92950,91920,49.27,0,0.16,0.36,0.48,0.67,0.81,0.93,0.92,0.89,0.89,120.96000000000001,111.10000000000001,108.8,113.59,118.23,122.54,133.97,145.38,182.68,24.46,25.23,25.5,25.61,25.830000000000002,26.09,26.52,26.92,27.55,N/A,N/A +2013,6,29,13,30,94070,93000,91960,41.13,0,0.2,0.32,0.4,0.5700000000000001,0.8,1.1,1.1300000000000001,1.09,0.9400000000000001,151.29,144.07,140.21,137.31,131.37,122.63,125.53,130.94,154.61,26.44,26.1,25.97,25.84,25.98,26.240000000000002,26.650000000000002,27.05,27.46,N/A,N/A +2013,6,29,14,30,94070,93010,91970,33.6,0,0.55,0.54,0.5,0.47000000000000003,0.47000000000000003,0.48,0.53,0.59,0.91,259.05,249.87,243.14000000000001,234.92000000000002,226.22,217.08,209.44,202.12,194.61,29.51,29.07,28.88,28.7,28.54,28.39,28.240000000000002,28.1,27.93,N/A,N/A +2013,6,29,15,30,94030,92970,91950,26.68,0,1.25,1.49,1.56,1.61,1.6400000000000001,1.68,1.72,1.75,1.83,242.51,236.8,233.37,230.53,228.11,225.95000000000002,223.94,222.11,218.68,32.68,32.15,31.91,31.69,31.490000000000002,31.3,31.1,30.92,30.55,N/A,N/A +2013,6,29,16,30,94020,92970,91960,23.57,0,0.76,0.87,0.88,0.89,0.9,0.9,0.91,0.92,0.92,235.1,231.66,229.85,228.28,226.92000000000002,225.70000000000002,224.59,223.6,221.72,34.800000000000004,34.230000000000004,33.96,33.72,33.5,33.28,33.07,32.88,32.480000000000004,N/A,N/A +2013,6,29,17,30,94000,92960,91950,19.75,0,2.17,2.48,2.52,2.52,2.5100000000000002,2.5,2.49,2.47,2.44,26.39,25.45,24.8,24.29,23.86,23.47,23.12,22.82,22.25,36.300000000000004,35.65,35.36,35.1,34.87,34.64,34.42,34.22,33.8,N/A,N/A +2013,6,29,18,30,93960,92930,91920,14.9,0,2.12,2.4,2.43,2.43,2.43,2.43,2.43,2.43,2.42,51.660000000000004,51,50.52,50.06,49.64,49.25,48.89,48.54,47.81,37.59,36.92,36.63,36.37,36.13,35.9,35.68,35.47,35.050000000000004,N/A,N/A +2013,6,29,19,30,93890,92850,91850,12.92,0,2.13,2.5500000000000003,2.66,2.72,2.77,2.81,2.84,2.86,2.9,78.38,76.47,75.29,74.32000000000001,73.5,72.76,72.07000000000001,71.43,70.26,38.480000000000004,37.81,37.52,37.25,37.01,36.78,36.550000000000004,36.34,35.92,N/A,N/A +2013,6,29,20,30,93820,92790,91780,16.6,0,4.89,5.6000000000000005,5.66,5.6000000000000005,5.54,5.47,5.39,5.3100000000000005,5.16,63.440000000000005,63,62.58,62.050000000000004,61.6,61.17,60.79,60.45,59.81,38.51,37.730000000000004,37.44,37.17,36.94,36.71,36.49,36.28,35.87,N/A,N/A +2013,6,29,21,30,93770,92740,91730,15.09,0,3.46,4.08,4.22,4.28,4.33,4.36,4.39,4.4,4.42,28.6,29.400000000000002,29.85,30.22,30.55,30.87,31.16,31.43,31.94,38.78,38.07,37.800000000000004,37.550000000000004,37.32,37.1,36.88,36.68,36.26,N/A,N/A +2013,6,29,22,30,93690,92660,91660,13.93,0,2.65,3.18,3.3200000000000003,3.39,3.45,3.49,3.5300000000000002,3.56,3.6,45.64,44.06,42.99,42.12,41.38,40.7,40.08,39.52,38.480000000000004,38.94,38.300000000000004,38.04,37.79,37.57,37.35,37.14,36.93,36.52,N/A,N/A +2013,6,29,23,30,93650,92620,91620,13.4,0,3.39,3.95,4.0600000000000005,4.09,4.11,4.11,4.1,4.09,4.0600000000000005,40.35,40.95,41.29,41.61,41.9,42.17,42.43,42.67,43.13,38.9,38.31,38.08,37.84,37.63,37.42,37.21,37.01,36.61,N/A,N/A +2013,6,30,0,30,93610,92580,91590,14.25,0,2.22,2.64,2.73,2.75,2.7600000000000002,2.7600000000000002,2.75,2.74,2.7,58.65,57.76,57.39,57.24,57.14,57.09,57.06,57.050000000000004,57.1,38.6,38.15,37.96,37.74,37.54,37.34,37.14,36.94,36.550000000000004,N/A,N/A +2013,6,30,1,30,93600,92560,91560,18.84,0,2,3.75,4.12,4.25,4.3,4.28,4.21,4.13,3.99,148.44,143.85,141.89000000000001,142.02,143.07,145.1,147.56,150.20000000000002,154.02,37.09,37.45,37.410000000000004,37.26,37.11,36.96,36.79,36.61,36.2,N/A,N/A +2013,6,30,2,30,93600,92560,91560,20.52,0,2.41,4.04,4.22,4.3500000000000005,4.43,4.49,4.5200000000000005,4.53,4.49,135.22,133.63,133.41,134.46,135.5,136.61,137.71,138.75,140.37,35.6,36.25,36.28,36.22,36.14,36.050000000000004,35.93,35.82,35.56,N/A,N/A +2013,6,30,3,30,93650,92610,91600,21.81,0,2.75,5.26,6.05,6.71,7.19,7.5200000000000005,7.62,7.62,7.1000000000000005,153,154.8,156.59,159.3,161.14000000000001,162.28,162.44,162.14000000000001,160.31,34.35,35.160000000000004,35.39,35.56,35.67,35.74,35.730000000000004,35.68,35.43,N/A,N/A +2013,6,30,4,30,93720,92670,91660,23.55,0,2.75,4.42,4.73,5.16,5.7700000000000005,6.63,7.61,8.68,10.66,116.89,120.22,121.85000000000001,122.83,125.71000000000001,130.65,135.26,139.78,146.13,33.19,33.71,33.7,33.52,33.27,32.95,32.62,32.3,31.84,N/A,N/A +2013,6,30,5,30,93730,92670,91660,28.810000000000002,0,3.7,6.05,6.94,7.7700000000000005,8.52,9.21,9.77,10.25,10.63,128.63,131.39000000000001,133.05,134.48,135.78,137,138.21,139.36,142.17000000000002,31.23,31.42,31.42,31.37,31.310000000000002,31.25,31.220000000000002,31.21,31.28,N/A,N/A +2013,6,30,6,30,94060,92990,91950,57.19,0,6.86,8.92,9.86,10.88,11.77,12.59,13.41,14.23,15.47,25.23,20.03,16.29,13.4,10.92,8.700000000000001,6.55,4.45,1.31,26.310000000000002,26.02,25.88,25.72,25.580000000000002,25.44,25.310000000000002,25.2,24.98,N/A,N/A +2013,6,30,7,30,93970,92900,91870,49.86,0,5.57,7.79,8.52,9.1,9.61,10.06,10.49,10.89,11.67,37.07,36,35.38,34.68,34.06,33.5,33.08,32.7,32.36,27.57,27.39,27.29,27.18,27.09,27.03,26.990000000000002,26.97,26.98,N/A,N/A +2013,6,30,8,30,93860,92790,91770,42.74,0,6.42,8.92,9.73,10.41,10.98,11.48,11.92,12.31,12.92,46.24,47.01,47.480000000000004,47.93,48.36,48.76,49.120000000000005,49.44,49.95,28.77,28.72,28.66,28.59,28.53,28.48,28.44,28.42,28.43,N/A,N/A +2013,6,30,9,30,93890,92830,91800,39.910000000000004,0,5.38,7.58,8.32,8.97,9.49,9.94,10.32,10.66,11.22,40.85,42.24,43.43,44.69,45.84,46.92,47.88,48.75,50.050000000000004,29.44,29.35,29.27,29.16,29.060000000000002,28.96,28.86,28.76,28.560000000000002,N/A,N/A +2013,6,30,10,30,94040,92970,91940,45.08,0,5.79,7.3,7.47,7.36,7.17,6.92,6.69,6.49,6.3500000000000005,306.29,307.90000000000003,309.14,311.15000000000003,313.92,317.32,322.06,326.91,338.49,27.72,27.64,27.560000000000002,27.44,27.32,27.18,27.04,26.900000000000002,26.61,N/A,N/A +2013,6,30,11,30,94030,92960,91930,51.32,0,1.45,3.16,3.93,4.8500000000000005,5.66,6.38,6.78,7.04,7.01,341.46,348.1,352.73,357.24,0.9400000000000001,3.93,6.83,9.49,15.540000000000001,26.76,26.92,26.810000000000002,26.62,26.45,26.27,26.11,25.95,25.61,N/A,N/A +2013,6,30,12,30,94070,93000,91960,52.33,0,3.06,4.49,5.05,5.54,5.96,6.34,6.69,7.01,7.640000000000001,57.47,55.57,54.730000000000004,54.82,55.370000000000005,56.22,57.32,58.42,60.81,26.36,26.13,25.98,25.810000000000002,25.64,25.48,25.3,25.14,24.8,N/A,N/A +2013,6,30,13,30,94060,92990,91950,52.26,0,4.12,5.15,5.46,5.66,5.8,5.9,5.99,6.0600000000000005,6.21,77.17,77.75,78.02,78.31,78.60000000000001,78.9,79.24,79.57000000000001,80.42,27.09,26.59,26.38,26.16,25.96,25.77,25.580000000000002,25.39,25.01,N/A,N/A +2013,6,30,14,30,94060,92990,91960,43.94,0,4.73,6.01,6.41,6.640000000000001,6.8100000000000005,6.95,7.05,7.140000000000001,7.2700000000000005,110.28,110.45,110.44,110.4,110.37,110.33,110.3,110.26,110.2,29.19,28.57,28.330000000000002,28.09,27.88,27.68,27.47,27.29,26.900000000000002,N/A,N/A +2013,6,30,15,30,94090,93030,92000,38.61,0,5.91,7.4,7.84,8.08,8.24,8.35,8.43,8.49,8.56,120.44,120.65,120.69,120.7,120.7,120.69,120.69,120.7,120.72,30.45,29.7,29.42,29.16,28.92,28.7,28.490000000000002,28.29,27.88,N/A,N/A +2013,6,30,16,30,94110,93060,92030,35.49,0,4.94,6.1000000000000005,6.43,6.6000000000000005,6.71,6.79,6.84,6.88,6.92,122.75,122.62,122.55,122.45,122.35000000000001,122.25,122.17,122.08,121.91,31.55,30.78,30.490000000000002,30.22,29.98,29.76,29.53,29.32,28.91,N/A,N/A +2013,6,30,17,30,94100,93050,92020,35.5,0,4.34,5.29,5.53,5.66,5.75,5.8100000000000005,5.8500000000000005,5.88,5.91,102.19,102.59,102.86,103.03,103.14,103.23,103.28,103.33,103.38,32.17,31.400000000000002,31.09,30.810000000000002,30.57,30.34,30.11,29.89,29.47,N/A,N/A +2013,6,30,18,30,94090,93040,92020,33.12,0,4.51,5.33,5.51,5.5600000000000005,5.58,5.58,5.5600000000000005,5.54,5.48,70.98,71.46000000000001,71.78,72.04,72.28,72.5,72.7,72.89,73.28,32.27,31.53,31.240000000000002,30.98,30.75,30.52,30.3,30.1,29.69,N/A,N/A +2013,6,30,19,30,94060,93000,91980,30.94,0,3.43,4.04,4.17,4.22,4.24,4.25,4.24,4.23,4.19,52.19,50.27,48.910000000000004,47.59,46.36,45.14,43.910000000000004,42.75,40.4,31.94,31.25,30.98,30.72,30.490000000000002,30.27,30.05,29.85,29.44,N/A,N/A +2013,6,30,20,30,93930,92870,91850,31.25,0,0.5,0.62,0.67,0.7000000000000001,0.73,0.76,0.79,0.81,0.87,20,26.54,29.71,31.78,33.230000000000004,34.26,34.89,35.36,35.35,31.92,31.36,31.11,30.87,30.650000000000002,30.45,30.240000000000002,30.04,29.650000000000002,N/A,N/A +2013,6,30,21,30,93870,92820,91810,27.990000000000002,0,4.8500000000000005,5.75,5.91,5.95,5.96,5.95,5.91,5.88,5.79,40.38,41.11,41.550000000000004,42.02,42.43,42.81,43.17,43.5,44.14,33.59,32.82,32.53,32.26,32.02,31.8,31.580000000000002,31.37,30.96,N/A,N/A +2013,6,30,22,30,93880,92830,91810,35.11,0,7.21,8.99,9.450000000000001,9.69,9.83,9.92,9.96,9.98,9.950000000000001,85.81,85.87,85.82000000000001,85.77,85.73,85.7,85.66,85.63,85.56,31.41,30.62,30.330000000000002,30.07,29.830000000000002,29.62,29.400000000000002,29.2,28.8,N/A,N/A +2013,6,30,23,30,93850,92800,91780,32.09,0,5.29,6.49,6.8,6.93,7.01,7.05,7.0600000000000005,7.0600000000000005,7.0200000000000005,88.44,88.27,88.15,88.01,87.88,87.76,87.62,87.49,87.2,31.91,31.23,30.98,30.73,30.51,30.3,30.09,29.89,29.490000000000002,N/A,N/A +2013,7,1,0,30,93840,92790,91770,32.910000000000004,0,3.68,4.61,4.84,4.95,5.04,5.09,5.12,5.14,5.14,87.01,87.13,87.13,87.09,87.03,86.96000000000001,86.88,86.79,86.62,31.52,31.13,30.93,30.72,30.53,30.330000000000002,30.13,29.93,29.54,N/A,N/A +2013,7,1,1,30,93880,92820,91800,34.03,0,3.08,4.3100000000000005,4.68,4.92,5.09,5.23,5.33,5.42,5.54,90.35000000000001,91.78,92.48,93.09,93.60000000000001,94.03,94.4,94.71000000000001,95.22,31.23,30.970000000000002,30.8,30.61,30.42,30.23,30.03,29.84,29.47,N/A,N/A +2013,7,1,2,30,93880,92830,91810,36.800000000000004,0,3.47,5.4,6.04,6.5,6.78,6.93,7.11,7.28,7.73,77.8,77.89,78.31,79.17,80.04,80.92,81.81,82.65,83.61,30.2,30.17,30.09,29.96,29.8,29.62,29.42,29.23,28.84,N/A,N/A +2013,7,1,3,30,93950,92880,91850,40.74,0,3.65,5.01,5.3100000000000005,5.53,5.67,5.7700000000000005,5.83,5.89,5.96,146.06,154.33,159.07,159.32,159.11,158.63,157.34,155.96,151.95000000000002,28.92,28.73,28.6,28.43,28.28,28.13,27.97,27.82,27.55,N/A,N/A +2013,7,1,4,30,94000,92930,91900,52.35,0,1.35,2.57,2.94,3.3200000000000003,3.65,3.95,4.16,4.33,4.2,152.59,161.66,166.59,169.24,170.41,170.53,170.12,169.6,167.89000000000001,27.240000000000002,27.21,27.12,27,26.88,26.78,26.67,26.57,26.37,N/A,N/A +2013,7,1,5,30,94030,92950,91920,55.81,0,1.1300000000000001,2.12,2.35,2.54,2.7,2.83,2.96,3.09,3.27,88.12,116.79,135,143.47,150.61,156.61,161.67000000000002,166.16,168.35,26.51,26.69,26.650000000000002,26.54,26.400000000000002,26.23,26.080000000000002,25.95,25.72,N/A,N/A +2013,7,1,6,30,94100,93030,91990,58.2,0,1.6,2.4,2.37,2.2600000000000002,2.23,2.27,2.36,2.46,2.63,69.14,85.17,93.38,100.14,109.22,118.64,128.63,137.94,138.77,25.89,26.2,26.2,26.11,26.02,25.91,25.77,25.64,25.400000000000002,N/A,N/A +2013,7,1,7,30,94130,93060,92010,59.72,0,0.77,1.41,1.54,1.6600000000000001,1.77,1.8800000000000001,2.04,2.21,2.64,87.73,94.79,97.34,97.21000000000001,94.77,90.79,88.48,86.48,85.78,25.27,25.580000000000002,25.59,25.59,25.560000000000002,25.52,25.42,25.330000000000002,25.05,N/A,N/A +2013,7,1,8,30,94170,93080,92040,64.39,0,0.5,1.31,1.71,2.06,2.39,2.73,3.0500000000000003,3.39,4.07,37.25,41.37,47.7,56.17,62.46,66.75,70.31,73.42,78.85000000000001,24.27,24.68,24.77,24.85,24.88,24.86,24.8,24.73,24.53,N/A,N/A +2013,7,1,9,30,94190,93100,92060,67.83,0,0.8,1.58,1.92,2.39,2.85,3.3200000000000003,3.72,4.09,4.71,19.69,40.63,52.03,61.800000000000004,69.33,75.16,79.27,82.74,86.76,23.53,23.78,23.81,23.87,23.94,24.02,24.060000000000002,24.09,24.12,N/A,N/A +2013,7,1,10,30,94220,93130,92090,67.1,0,1.73,2.95,3.25,3.52,3.8000000000000003,4.09,4.37,4.65,5.17,26.79,38.03,45.9,54.63,61.52,67.34,71.25,74.53,77.46000000000001,23.19,23.52,23.6,23.72,23.82,23.900000000000002,23.97,24.02,24.03,N/A,N/A +2013,7,1,11,30,94270,93180,92140,68.97,0,1.2,2.44,2.82,3.1,3.48,3.92,4.43,4.95,5.91,186.74,195.88,32.82,48.03,58.26,66.1,71.18,75.56,79.63,22.81,23.06,23.06,23.05,23.09,23.14,23.21,23.28,23.330000000000002,N/A,N/A +2013,7,1,12,30,94330,93240,92190,61.93,0,1.72,2.31,2.39,2.63,3.02,3.47,4.0200000000000005,4.6000000000000005,5.73,192.9,33.09,46.58,56.96,64.89,71.37,75.95,79.97,84.78,23.05,23.1,23.080000000000002,23.02,22.95,22.89,22.79,22.7,22.46,N/A,N/A +2013,7,1,13,30,94380,93290,92250,50.74,0,2.39,3.06,3.2800000000000002,3.43,3.5500000000000003,3.66,3.77,3.87,4.11,85.54,86.25,86.68,87.01,87.29,87.54,87.78,88.01,88.5,24.75,24.3,24.11,23.900000000000002,23.71,23.53,23.34,23.16,22.79,N/A,N/A +2013,7,1,14,30,94410,93330,92280,45.97,0,3.66,4.5,4.73,4.8500000000000005,4.93,4.99,5.03,5.07,5.12,100.78,101.57000000000001,102.04,102.38,102.66,102.91,103.14,103.34,103.72,25.6,24.990000000000002,24.75,24.53,24.310000000000002,24.11,23.91,23.72,23.34,N/A,N/A +2013,7,1,15,30,94440,93350,92310,43.96,0,3.77,4.62,4.83,4.93,4.98,5.0200000000000005,5.0600000000000005,5.09,5.16,101.48,101.99000000000001,102.24000000000001,102.46000000000001,102.63,102.77,102.88,102.95,102.96000000000001,26.11,25.57,25.34,25.11,24.900000000000002,24.7,24.490000000000002,24.3,23.91,N/A,N/A +2013,7,1,16,30,94440,93370,92330,39.42,0,3.9,4.89,5.16,5.3,5.39,5.46,5.49,5.5200000000000005,5.54,90.84,89.89,89.52,89.28,89.09,88.93,88.81,88.7,88.5,27.21,26.64,26.41,26.18,25.95,25.740000000000002,25.54,25.34,24.93,N/A,N/A +2013,7,1,17,30,94440,93370,92320,37.410000000000004,0,4.5200000000000005,5.46,5.7,5.8,5.87,5.92,5.94,5.96,5.97,83.34,82.44,81.87,81.4,81,80.64,80.3,80,79.42,27.78,27.07,26.79,26.54,26.3,26.080000000000002,25.86,25.66,25.240000000000002,N/A,N/A +2013,7,1,18,30,94440,93370,92320,36.54,0,4.67,5.8,6.11,6.29,6.42,6.5200000000000005,6.59,6.65,6.74,65.04,64.81,64.75,64.78,64.82000000000001,64.85,64.89,64.93,65,27.85,27.23,26.990000000000002,26.75,26.52,26.32,26.1,25.900000000000002,25.490000000000002,N/A,N/A +2013,7,1,19,30,94490,93410,92350,48.2,0,8.35,10.33,10.82,11.08,11.22,11.3,11.32,11.33,11.27,42.75,43.160000000000004,43.46,43.78,44.08,44.35,44.64,44.910000000000004,45.46,25.29,24.45,24.14,23.88,23.63,23.42,23.21,23.02,22.64,N/A,N/A +2013,7,1,20,30,94500,93410,92350,52.730000000000004,1.5,6.34,7.76,8.120000000000001,8.290000000000001,8.38,8.44,8.45,8.45,8.4,49.26,49.02,48.88,48.78,48.68,48.56,48.44,48.33,48.07,24.6,23.81,23.52,23.27,23.04,22.84,22.63,22.43,22.06,N/A,N/A +2013,7,1,21,30,94420,93340,92290,46.43,0,4.89,6,6.32,6.49,6.61,6.69,6.76,6.8,6.87,54.61,53.75,53.32,52.96,52.660000000000004,52.39,52.120000000000005,51.870000000000005,51.4,25.830000000000002,25.09,24.810000000000002,24.55,24.32,24.11,23.89,23.7,23.29,N/A,N/A +2013,7,1,22,30,94380,93300,92250,39.480000000000004,0,4.55,5.6000000000000005,5.91,6.07,6.19,6.2700000000000005,6.33,6.390000000000001,6.45,48.17,48.53,48.730000000000004,48.94,49.14,49.31,49.5,49.660000000000004,50,27.05,26.35,26.07,25.82,25.59,25.38,25.16,24.97,24.560000000000002,N/A,N/A +2013,7,1,23,30,94310,93240,92200,37.5,0,2.87,3.68,3.97,4.17,4.33,4.46,4.58,4.68,4.8500000000000005,42.910000000000004,44.410000000000004,45.28,46.03,46.660000000000004,47.24,47.79,48.28,49.18,27.84,27.27,27.03,26.79,26.580000000000002,26.37,26.16,25.97,25.57,N/A,N/A +2013,7,2,0,30,94280,93200,92160,37.32,0,4.38,5.44,5.75,5.91,6.03,6.11,6.17,6.22,6.28,68.59,68.19,67.96000000000001,67.78,67.61,67.46000000000001,67.33,67.2,66.93,27.95,27.44,27.23,27,26.79,26.59,26.38,26.18,25.78,N/A,N/A +2013,7,2,1,30,94310,93230,92190,39.89,0,3.02,3.85,4.07,4.22,4.32,4.4,4.46,4.5,4.5600000000000005,76.3,75.83,75.53,75.28,75.06,74.85000000000001,74.64,74.43,74.06,27.43,27.12,26.95,26.75,26.560000000000002,26.36,26.16,25.98,25.580000000000002,N/A,N/A +2013,7,2,2,30,94320,93250,92200,43.52,0,0.79,1.6,1.81,1.8800000000000001,1.8900000000000001,1.86,1.82,1.77,1.67,48.31,48.24,48.25,48.67,49.03,49.34,49.660000000000004,49.95,49.97,26.78,26.64,26.52,26.36,26.19,26.03,25.85,25.69,25.34,N/A,N/A +2013,7,2,3,30,94380,93300,92260,45.68,0,1.34,2.5500000000000003,2.8000000000000003,2.85,2.79,2.67,2.52,2.39,2.05,143.03,136.39000000000001,132.69,130.25,127.96000000000001,125.87,123.7,121.79,119.33,26.34,26.42,26.330000000000002,26.17,26.01,25.84,25.68,25.52,25.21,N/A,N/A +2013,7,2,4,30,94400,93320,92270,46.230000000000004,0,0.85,1.21,1.16,1.11,1.1300000000000001,1.18,1.25,1.32,1.46,340.82,353.85,2.99,14.83,22.7,28.490000000000002,26.900000000000002,23.23,11.790000000000001,26,25.900000000000002,25.810000000000002,25.72,25.63,25.54,25.44,25.36,25.16,N/A,N/A +2013,7,2,5,30,94440,93360,92310,56.26,0,1.8,3.92,4.69,5.2,5.48,5.62,5.37,5.0600000000000005,4.6000000000000005,26.55,20.91,17.94,17.3,17.36,17.88,18.98,20.06,21.080000000000002,24.39,24.89,24.96,24.990000000000002,24.97,24.900000000000002,24.8,24.7,24.37,N/A,N/A +2013,7,2,6,30,94470,93390,92340,62.52,0,1.6300000000000001,3.62,4.36,4.89,5.25,5.49,5.8,6.11,6.76,34.89,26.98,22.89,22.02,22.650000000000002,24.17,27.57,31.240000000000002,44.800000000000004,23.2,23.72,23.79,23.81,23.77,23.69,23.62,23.55,23.48,N/A,N/A +2013,7,2,7,30,94520,93430,92370,61.84,0,1.82,2.8000000000000003,2.9,3.08,3.46,3.98,4.51,5.04,6.13,29.830000000000002,48.34,59.88,71.74,80.87,88.92,93.05,96.12,99.04,22.19,22.63,22.66,22.71,22.8,22.92,23.02,23.1,23.17,N/A,N/A +2013,7,2,8,30,94560,93470,92410,54.58,0,2.15,3.17,3.35,3.84,4.43,5.07,5.75,6.42,7.62,16.6,43.5,59.72,77.18,88.65,96.84,101.42,105.13,108.83,22.01,22.44,22.44,22.490000000000002,22.57,22.650000000000002,22.73,22.8,22.84,N/A,N/A +2013,7,2,9,30,94550,93460,92400,55,0,1.67,2.49,2.71,3.2600000000000002,3.96,4.78,5.55,6.28,7.21,23.94,53,69.37,85.22,94.68,100.7,103.79,106.27,109.13,21.1,21.72,21.8,21.85,21.91,21.96,22.04,22.12,22.23,N/A,N/A +2013,7,2,10,30,94570,93470,92410,55.5,0,1.19,1.45,1.56,2.13,2.8000000000000003,3.5500000000000003,4.3,5.04,6.22,19.27,54.18,71.04,89.10000000000001,98.17,102.44,104.94,107.09,109.9,20.55,21.22,21.29,21.28,21.25,21.21,21.2,21.21,21.36,N/A,N/A +2013,7,2,11,30,94600,93500,92430,57,0,1.03,0.71,0.59,0.6900000000000001,1.03,1.6300000000000001,2.23,2.88,4.1,352.91,2.13,25.13,76.82000000000001,97.87,104.77,106.7,107.89,109.78,20.06,20.64,20.7,20.740000000000002,20.73,20.71,20.66,20.63,20.69,N/A,N/A +2013,7,2,12,30,94620,93510,92450,54.54,0,1.8,2.45,2.36,2.22,2.2800000000000002,2.43,2.66,2.89,3.42,19.67,30.03,43.47,63.43,74.7,82.38,88.24,93.29,98.52,20.06,20.150000000000002,20.16,20.19,20.2,20.21,20.22,20.23,20.29,N/A,N/A +2013,7,2,13,30,94650,93550,92480,47.050000000000004,0,0.91,1,0.98,0.92,0.84,0.77,0.75,0.79,2.14,23.490000000000002,27.3,29.26,30.72,35.64,41.28,58.36,73.78,88.56,21.54,21.16,20.98,20.81,20.64,20.490000000000002,20.35,20.25,20.38,N/A,N/A +2013,7,2,14,30,94640,93550,92490,40.410000000000004,0,0.8,1.1,1.22,1.33,1.43,1.53,1.62,1.71,1.9100000000000001,80.42,77.10000000000001,75.24,74.25,73.61,73.17,73,72.9,73.06,23.97,23.5,23.28,23.07,22.88,22.69,22.51,22.330000000000002,21.97,N/A,N/A +2013,7,2,15,30,94650,93570,92520,32.52,0,2.44,2.88,2.98,3.0100000000000002,3.0300000000000002,3.0300000000000002,3.0300000000000002,3.02,3,89.85000000000001,89.49,89.26,89.05,88.82000000000001,88.59,88.35000000000001,88.12,87.63,26.18,25.580000000000002,25.32,25.080000000000002,24.86,24.650000000000002,24.44,24.25,23.84,N/A,N/A +2013,7,2,16,30,94620,93540,92490,29.62,0,1.71,1.98,2.0300000000000002,2.05,2.07,2.08,2.08,2.09,2.09,94.34,92.69,91.71000000000001,90.81,89.98,89.2,88.38,87.64,86.11,27.13,26.52,26.25,26,25.77,25.55,25.330000000000002,25.14,24.72,N/A,N/A +2013,7,2,17,30,94590,93510,92460,26.400000000000002,0,3.11,3.62,3.72,3.75,3.77,3.77,3.77,3.7600000000000002,3.74,30.55,31.63,32.29,32.87,33.37,33.83,34.27,34.67,35.43,28.13,27.44,27.14,26.88,26.64,26.42,26.2,25.990000000000002,25.57,N/A,N/A +2013,7,2,18,30,94540,93470,92420,26.400000000000002,0,2.5300000000000002,3,3.12,3.18,3.23,3.2600000000000002,3.29,3.31,3.34,54.68,54.61,54.47,54.33,54.2,54.07,53.910000000000004,53.76,53.45,28.740000000000002,28.080000000000002,27.78,27.51,27.26,27.04,26.810000000000002,26.6,26.18,N/A,N/A +2013,7,2,19,30,94470,93400,92360,24.7,0,4.0600000000000005,4.68,4.79,4.82,4.83,4.82,4.8100000000000005,4.79,4.75,40.6,41.49,41.87,42.14,42.36,42.53,42.67,42.78,42.95,29.53,28.78,28.48,28.21,27.97,27.740000000000002,27.51,27.310000000000002,26.89,N/A,N/A +2013,7,2,20,30,94420,93350,92310,24.03,0,3.7600000000000002,4.53,4.73,4.82,4.88,4.91,4.93,4.94,4.94,6.94,8.11,8.68,9.16,9.56,9.92,10.27,10.59,11.22,30.05,29.34,29.04,28.77,28.53,28.3,28.080000000000002,27.87,27.45,N/A,N/A +2013,7,2,21,30,94370,93300,92260,23.36,0,5.14,6.140000000000001,6.3500000000000005,6.42,6.45,6.44,6.41,6.38,6.28,26.02,25.6,25.52,25.59,25.69,25.810000000000002,25.97,26.13,26.47,30.47,29.71,29.42,29.14,28.900000000000002,28.67,28.44,28.23,27.810000000000002,N/A,N/A +2013,7,2,22,30,94310,93240,92210,24.52,0,2.22,2.74,2.91,3.02,3.12,3.19,3.2600000000000002,3.3200000000000003,3.42,33.65,37.52,39.68,41.35,42.730000000000004,43.93,44.980000000000004,45.910000000000004,47.54,30.12,29.51,29.25,29,28.77,28.560000000000002,28.34,28.14,27.73,N/A,N/A +2013,7,2,23,30,94260,93190,92160,23.97,0,3.87,4.66,4.87,4.97,5.04,5.09,5.13,5.16,5.22,61.34,61.44,61.46,61.53,61.58,61.620000000000005,61.65,61.68,61.71,30.310000000000002,29.69,29.45,29.21,28.990000000000002,28.78,28.57,28.37,27.97,N/A,N/A +2013,7,3,0,30,94190,93130,92090,24.51,0,4.22,5.22,5.46,5.6000000000000005,5.69,5.74,5.7700000000000005,5.79,5.8,79.99,79.02,78.27,77.57000000000001,76.93,76.37,75.79,75.26,74.24,30.18,29.68,29.47,29.25,29.03,28.830000000000002,28.62,28.43,28.02,N/A,N/A +2013,7,3,1,30,94210,93140,92110,24.76,0,3.9,5.51,5.98,6.32,6.59,6.79,6.95,7.08,7.26,87.44,87.15,86.91,86.7,86.51,86.34,86.16,85.99,85.62,29.47,29.25,29.09,28.91,28.72,28.54,28.330000000000002,28.150000000000002,27.75,N/A,N/A +2013,7,3,2,30,94240,93170,92140,25.830000000000002,0,3.44,5.7,6.46,7.07,7.54,7.930000000000001,8.22,8.47,8.75,82.68,83.35000000000001,83.72,84.04,84.31,84.53,84.77,85,85.58,28.5,28.57,28.52,28.44,28.310000000000002,28.18,28.01,27.85,27.46,N/A,N/A +2013,7,3,3,30,94310,93240,92200,26.86,0,4.6000000000000005,6.86,7.65,8.26,8.71,9.05,9.25,9.4,9.51,80.78,81.83,82.66,83.7,84.74,85.79,86.76,87.63,88.88,27.72,27.810000000000002,27.810000000000002,27.78,27.72,27.650000000000002,27.54,27.43,27.12,N/A,N/A +2013,7,3,4,30,94320,93240,92200,29.29,0,3.3200000000000003,5.73,6.67,7.41,8,8.49,8.89,9.24,9.75,102.32000000000001,101.57000000000001,101.85000000000001,103.54,105.53,107.74000000000001,109.41,110.84,111.84,26.34,26.67,26.79,26.88,26.91,26.92,26.86,26.79,26.59,N/A,N/A +2013,7,3,5,30,94330,93250,92200,30.27,0,3.7600000000000002,6.2,7.1000000000000005,7.86,8.47,8.98,9.39,9.77,10.46,103.96000000000001,102.86,103.02,104.15,105.96000000000001,108.05,110.08,111.92,113.87,25.560000000000002,25.77,25.8,25.8,25.78,25.76,25.73,25.69,25.57,N/A,N/A +2013,7,3,6,30,94380,93290,92240,34.49,0,2.54,4.68,5.5600000000000005,6.6000000000000005,7.61,8.6,9.5,10.34,11.6,143.35,130.81,124.27,121.03,119.76,119.69,120.52,121.5,123.72,24.240000000000002,24.68,24.75,24.76,24.78,24.79,24.8,24.82,24.830000000000002,N/A,N/A +2013,7,3,7,30,94380,93290,92240,35.480000000000004,0,3.58,6.04,7.05,8.07,8.99,9.84,10.6,11.290000000000001,12.38,136.93,129.91,126.21000000000001,124.13000000000001,123.74000000000001,124.26,125.61,127.01,129.74,23.8,24.09,24.150000000000002,24.18,24.19,24.19,24.18,24.18,24.14,N/A,N/A +2013,7,3,8,30,94400,93300,92250,38.9,0,3.48,5.7700000000000005,6.6000000000000005,7.36,8.09,8.8,9.46,10.08,11.07,141.65,137.45000000000002,134.82,132.37,131.41,131.18,132.14000000000001,133.27,136.36,23.06,23.37,23.41,23.39,23.38,23.37,23.38,23.39,23.41,N/A,N/A +2013,7,3,9,30,94380,93290,92240,42.09,0,2.95,5.2700000000000005,6.140000000000001,7.04,7.890000000000001,8.71,9.35,9.92,10.57,141.09,134.45,130.55,127.37,126.29,126.24000000000001,127.57000000000001,129.07,133,22.54,22.91,22.98,23.02,23.080000000000002,23.150000000000002,23.22,23.28,23.37,N/A,N/A +2013,7,3,10,30,94410,93310,92250,47.04,0,1.93,4.32,5.36,6.34,7.3100000000000005,8.27,9.13,9.93,10.96,132.09,129.9,128.03,125.71000000000001,124.81,124.74000000000001,125.57000000000001,126.55,129.13,21.6,22.25,22.34,22.39,22.42,22.44,22.46,22.490000000000002,22.52,N/A,N/A +2013,7,3,11,30,94410,93310,92250,48.61,0,1.6400000000000001,3.56,4.39,5.2700000000000005,6.15,7.03,7.78,8.47,9.36,139.12,132.47,128.71,126.33,125.78,126.19,127.71000000000001,129.36,133.15,20.96,21.56,21.62,21.650000000000002,21.69,21.740000000000002,21.82,21.89,22.080000000000002,N/A,N/A +2013,7,3,12,30,94420,93320,92260,44.11,0,2.77,4.57,5.2700000000000005,5.91,6.53,7.13,7.7,8.22,8.94,124.47,126.82000000000001,127.96000000000001,128.38,129.4,130.68,132.6,134.53,138.77,21.35,21.46,21.5,21.55,21.62,21.69,21.81,21.92,22.17,N/A,N/A +2013,7,3,13,30,94420,93330,92270,38.78,0,3.15,3.89,4.11,4.25,4.46,4.68,5.13,5.62,6.8500000000000005,129.32,130.93,131.89000000000001,132.8,134.15,135.67000000000002,137.25,138.85,143.24,23.25,22.830000000000002,22.66,22.490000000000002,22.34,22.21,22.14,22.1,22.27,N/A,N/A +2013,7,3,14,30,94430,93350,92290,34.7,0,3.88,4.8100000000000005,5.08,5.23,5.32,5.38,5.42,5.45,5.53,143.89000000000001,144.77,145.36,145.88,146.38,146.85,147.37,147.85,149.06,25.32,24.75,24.52,24.3,24.1,23.91,23.72,23.55,23.19,N/A,N/A +2013,7,3,15,30,94450,93370,92330,31.89,0,4.75,5.91,6.2700000000000005,6.46,6.6000000000000005,6.69,6.76,6.8100000000000005,6.890000000000001,144.55,145.20000000000002,145.58,145.86,146.09,146.29,146.47,146.65,146.99,27.12,26.43,26.16,25.91,25.68,25.47,25.25,25.060000000000002,24.650000000000002,N/A,N/A +2013,7,3,16,30,94430,93350,92310,29.52,0,4.55,5.59,5.9,6.0600000000000005,6.17,6.25,6.3,6.34,6.4,150.93,151.41,151.65,151.81,151.93,152.04,152.13,152.21,152.36,28.330000000000002,27.61,27.310000000000002,27.05,26.810000000000002,26.59,26.36,26.16,25.740000000000002,N/A,N/A +2013,7,3,17,30,94380,93310,92270,27.23,0,4.28,5.23,5.5,5.64,5.73,5.8,5.8500000000000005,5.88,5.93,150.02,150.3,150.48,150.61,150.71,150.79,150.87,150.93,151.06,29.25,28.51,28.2,27.93,27.68,27.46,27.23,27.02,26.6,N/A,N/A +2013,7,3,18,30,94330,93260,92220,24.26,0,4.0600000000000005,4.9,5.13,5.24,5.3100000000000005,5.36,5.39,5.41,5.44,138.93,139.76,140.23,140.57,140.84,141.08,141.29,141.49,141.84,30.01,29.27,28.96,28.68,28.44,28.21,27.98,27.77,27.34,N/A,N/A +2013,7,3,19,30,94250,93190,92150,23.2,0,3.71,4.51,4.72,4.83,4.91,4.97,5,5.03,5.07,148.25,147.97,147.76,147.54,147.34,147.14000000000001,146.96,146.78,146.45000000000002,30.61,29.87,29.560000000000002,29.29,29.05,28.82,28.59,28.38,27.95,N/A,N/A +2013,7,3,20,30,94190,93130,92100,21.43,0,3.91,4.69,4.9,5,5.0600000000000005,5.11,5.14,5.16,5.19,125.7,127.18,127.87,128.36,128.76,129.09,129.4,129.66,130.14000000000001,31.11,30.38,30.080000000000002,29.810000000000002,29.560000000000002,29.34,29.11,28.900000000000002,28.48,N/A,N/A +2013,7,3,21,30,94110,93050,92020,20.3,0,4.4,5.26,5.49,5.61,5.69,5.75,5.79,5.82,5.86,114.41,116.60000000000001,117.96000000000001,119.16,120.18,121.13,122.01,122.79,124.3,31.6,30.87,30.580000000000002,30.310000000000002,30.07,29.84,29.62,29.41,28.98,N/A,N/A +2013,7,3,22,30,94030,92970,91950,21.68,0,3.95,4.86,5.09,5.21,5.29,5.3500000000000005,5.39,5.42,5.46,151.89000000000001,150.74,150.27,149.93,149.67000000000002,149.45000000000002,149.25,149.09,148.82,31.470000000000002,30.79,30.53,30.28,30.05,29.84,29.62,29.42,29.01,N/A,N/A +2013,7,3,23,30,93980,92920,91900,21,0,4.0600000000000005,4.98,5.22,5.34,5.42,5.47,5.51,5.53,5.57,135.61,135.73,135.7,135.59,135.47,135.36,135.24,135.14000000000001,134.93,31.48,30.86,30.62,30.39,30.17,29.96,29.740000000000002,29.54,29.13,N/A,N/A +2013,7,4,0,30,93960,92900,91880,21.91,0,4.64,5.88,6.25,6.48,6.640000000000001,6.76,6.8500000000000005,6.93,7.03,143.29,143.1,143.04,143,142.97,142.96,142.96,142.96,142.98,31.240000000000002,30.75,30.55,30.32,30.11,29.91,29.7,29.5,29.1,N/A,N/A +2013,7,4,1,30,93970,92910,91880,24.62,0,3.79,5.5200000000000005,6.0600000000000005,6.45,6.74,6.95,7.11,7.23,7.3500000000000005,154.34,155.08,155.43,155.74,155.98,156.19,156.28,156.33,156.14000000000001,30.23,30.1,29.97,29.810000000000002,29.64,29.46,29.27,29.09,28.72,N/A,N/A +2013,7,4,2,30,93960,92900,91870,25.67,0,4.07,6.32,7.1000000000000005,7.72,8.21,8.6,8.85,9.03,9.1,154.9,154.1,153.57,153.12,152.78,152.53,152.33,152.17000000000002,151.78,29.310000000000002,29.47,29.47,29.400000000000002,29.310000000000002,29.2,29.05,28.91,28.57,N/A,N/A +2013,7,4,3,30,94010,92940,91910,27.22,0,3.85,6.21,6.95,7.48,7.890000000000001,8.23,8.51,8.74,9.02,169.65,167.99,166.78,165.41,164.32,163.43,162.78,162.24,161.26,28.44,28.810000000000002,28.87,28.84,28.77,28.68,28.560000000000002,28.45,28.16,N/A,N/A +2013,7,4,4,30,94030,92960,91930,28.44,0,4.68,7.1000000000000005,8.05,8.91,9.64,10.290000000000001,10.82,11.27,11.8,162.11,162.36,162.34,162.05,161.76,161.46,161.34,161.28,161.62,28.02,28.11,28.11,28.09,28.04,27.990000000000002,27.91,27.830000000000002,27.62,N/A,N/A +2013,7,4,5,30,94020,92950,91920,30.03,0,5.3500000000000005,7.7700000000000005,8.67,9.5,10.27,11,11.68,12.31,13.3,166.54,166.52,166.46,166.31,166.15,165.97,165.83,165.70000000000002,165.65,27.43,27.43,27.38,27.32,27.26,27.19,27.12,27.04,26.87,N/A,N/A +2013,7,4,6,30,94060,92980,91940,32.9,0,5.3,7.74,8.65,9.49,10.27,10.99,11.68,12.32,13.46,164.17000000000002,164.43,164.44,164.21,163.89000000000001,163.54,163.21,162.9,162.54,26.72,26.7,26.64,26.560000000000002,26.46,26.36,26.23,26.11,25.830000000000002,N/A,N/A +2013,7,4,7,30,94070,92990,91950,37.18,0,5.87,8.27,9.120000000000001,9.870000000000001,10.56,11.19,11.81,12.39,13.47,161.77,162.97,163.65,164.25,164.75,165.18,165.56,165.92000000000002,166.56,26.060000000000002,25.96,25.87,25.78,25.69,25.59,25.490000000000002,25.400000000000002,25.19,N/A,N/A +2013,7,4,8,30,94040,92960,91920,41.51,0,4.53,6.95,7.86,8.69,9.42,10.1,10.77,11.4,12.620000000000001,150.99,153.49,154.98,156.21,157.23,158.1,158.89000000000001,159.63,161.05,25.150000000000002,25.22,25.19,25.13,25.060000000000002,24.990000000000002,24.900000000000002,24.82,24.650000000000002,N/A,N/A +2013,7,4,9,30,94070,92990,91940,43.7,0,5.37,7.97,8.94,9.85,10.68,11.46,12.24,12.98,14.46,160.84,161.4,161.69,161.97,162.22,162.46,162.72,162.98,163.42000000000002,24.650000000000002,24.69,24.66,24.61,24.55,24.490000000000002,24.400000000000002,24.32,24.09,N/A,N/A +2013,7,4,10,30,94060,92980,91930,46.47,0,5.37,7.8100000000000005,8.700000000000001,9.49,10.19,10.82,11.47,12.09,13.33,153.61,154.88,155.64000000000001,156.29,156.91,157.49,158.14000000000001,158.76,160.19,23.97,23.900000000000002,23.8,23.69,23.57,23.45,23.330000000000002,23.22,23.01,N/A,N/A +2013,7,4,11,30,94080,93000,91940,56.5,0,1.83,4.04,4.92,5.76,6.54,7.2700000000000005,7.99,8.69,10.11,128.06,137.64000000000001,142.96,146.4,149.28,151.81,154.25,156.55,160.96,22.21,22.45,22.42,22.36,22.29,22.22,22.14,22.07,21.94,N/A,N/A +2013,7,4,12,30,94100,93010,91960,56.83,0,5.98,8.1,8.82,9.43,9.94,10.39,10.82,11.22,12,147.92000000000002,150.05,151.29,152.47,153.58,154.63,155.71,156.74,158.91,22.95,22.76,22.650000000000002,22.52,22.400000000000002,22.29,22.18,22.080000000000002,21.89,N/A,N/A +2013,7,4,13,30,94130,93040,91990,55.94,0,6.37,8.040000000000001,8.52,8.83,9.040000000000001,9.19,9.32,9.43,9.72,153.19,154.04,154.57,155.03,155.47,155.87,156.34,156.78,157.93,23.89,23.39,23.18,22.97,22.77,22.59,22.39,22.22,21.86,N/A,N/A +2013,7,4,14,30,94130,93050,92010,53.24,0,6.45,8.09,8.56,8.83,9,9.11,9.18,9.24,9.31,156.11,156.68,157,157.24,157.46,157.65,157.87,158.07,158.55,25.5,24.85,24.6,24.36,24.14,23.94,23.740000000000002,23.55,23.17,N/A,N/A +2013,7,4,15,30,94100,93020,91980,47.800000000000004,0,7.3500000000000005,9.27,9.81,10.14,10.35,10.5,10.61,10.69,10.790000000000001,162.47,162.83,163.06,163.26,163.43,163.58,163.73,163.88,164.17000000000002,27.28,26.52,26.240000000000002,25.98,25.740000000000002,25.52,25.310000000000002,25.11,24.7,N/A,N/A +2013,7,4,16,30,94110,93040,92010,40.45,0,7.63,9.56,10.14,10.47,10.700000000000001,10.86,10.97,11.06,11.18,168.13,168.3,168.39000000000001,168.47,168.54,168.59,168.65,168.69,168.78,28.87,28.03,27.73,27.45,27.2,26.97,26.740000000000002,26.53,26.11,N/A,N/A +2013,7,4,17,30,94070,93010,91980,34.410000000000004,0,7.18,8.93,9.44,9.72,9.92,10.05,10.14,10.21,10.31,166.43,166.57,166.67000000000002,166.74,166.8,166.85,166.9,166.94,167.03,30.11,29.25,28.94,28.650000000000002,28.400000000000002,28.17,27.94,27.72,27.3,N/A,N/A +2013,7,4,18,30,94020,92960,91930,30.310000000000002,0,6.91,8.59,9.07,9.33,9.51,9.64,9.73,9.8,9.89,166.02,166.16,166.24,166.31,166.36,166.4,166.45000000000002,166.48,166.56,31.13,30.26,29.95,29.66,29.400000000000002,29.16,28.93,28.71,28.28,N/A,N/A +2013,7,4,19,30,93970,92910,91880,27.93,0,6.69,8.3,8.77,9.03,9.200000000000001,9.33,9.42,9.49,9.59,164.03,164.34,164.51,164.65,164.75,164.85,164.94,165.01,165.16,31.96,31.1,30.78,30.490000000000002,30.23,29.990000000000002,29.76,29.54,29.11,N/A,N/A +2013,7,4,20,30,93910,92850,91830,26.8,0,6.5600000000000005,8.13,8.59,8.84,9.02,9.14,9.23,9.31,9.41,160.36,160.77,161.05,161.27,161.47,161.65,161.81,161.97,162.26,32.53,31.69,31.37,31.09,30.84,30.6,30.37,30.150000000000002,29.72,N/A,N/A +2013,7,4,21,30,93860,92800,91790,25.47,0,6.62,8.19,8.64,8.88,9.05,9.16,9.25,9.31,9.4,155.47,156.20000000000002,156.68,157.07,157.39000000000001,157.69,157.97,158.22,158.71,32.92,32.11,31.810000000000002,31.53,31.29,31.05,30.830000000000002,30.61,30.19,N/A,N/A +2013,7,4,22,30,94030,92940,91880,82.28,0,16.53,20.29,21.51,21.98,22.31,22.490000000000002,22.52,22.44,22.3,40.2,41.74,42.1,41.75,41.42,40.99,40.730000000000004,40.62,39.93,20.85,20.13,19.95,19.96,19.98,20.02,20.05,20.06,20.150000000000002,N/A,N/A +2013,7,4,23,30,94200,93120,92060,73.62,3.7,8.73,11.11,11.94,12.41,12.76,13.01,13.22,13.4,13.75,18.830000000000002,19.54,19.62,19.91,20.240000000000002,20.63,21.09,21.54,22.8,22.2,21.75,21.54,21.32,21.13,20.95,20.77,20.61,20.28,N/A,N/A +2013,7,5,0,30,94110,93010,91960,86.67,42.1,7.0600000000000005,8.88,9.18,9.23,9.28,9.33,9.38,9.42,9.67,81.87,83.42,84.34,85.53,85.94,86.05,86.14,86.29,88.51,20.45,20.740000000000002,20.990000000000002,21.240000000000002,21.35,21.39,21.48,21.57,21.88,N/A,N/A +2013,7,5,1,30,93900,92820,91770,56.660000000000004,0,10.53,14.14,15.120000000000001,15.85,16.43,16.91,17.32,17.68,18.26,132.05,132.76,133.1,133.5,133.98,134.45,135.1,135.73,137.24,23.740000000000002,23.68,23.62,23.54,23.45,23.37,23.28,23.2,23.02,N/A,N/A +2013,7,5,2,30,93890,92810,91770,53.93,0,7.05,10.14,11.21,12.1,12.84,13.47,14.01,14.48,15.200000000000001,138.8,140.68,141.76,142.54,143.13,143.6,143.98,144.32,144.96,24.86,24.95,24.94,24.92,24.900000000000002,24.88,24.87,24.86,24.88,N/A,N/A +2013,7,5,3,30,93950,92870,91830,60.68,0,1.3900000000000001,3.24,4.15,5.17,6.01,6.72,7.2700000000000005,7.76,8.98,76.57000000000001,96.39,106.88,112.78,117.82000000000001,122.22,126.65,130.8,136.88,23.740000000000002,23.95,24.01,24.1,24.25,24.42,24.62,24.810000000000002,25.18,N/A,N/A +2013,7,5,4,30,93950,92880,91840,58.24,0,2.83,5.25,6.23,7.2,8.03,8.76,9.31,9.78,10.3,139.43,133.65,130.59,128.69,128.08,128.23,129.29,130.48,133.76,24.41,25,25.22,25.400000000000002,25.55,25.68,25.78,25.88,25.94,N/A,N/A +2013,7,5,5,30,93970,92890,91850,57.300000000000004,0,4.12,6.94,8.07,9.08,9.93,10.67,11.27,11.8,12.56,130.95,129.12,128.14000000000001,127.60000000000001,127.64,128.01,128.98,130.02,133.28,24.67,25.05,25.16,25.240000000000002,25.310000000000002,25.37,25.42,25.47,25.51,N/A,N/A +2013,7,5,6,30,94000,92920,91880,60.45,0,3.5,6.18,7.24,8.23,9.15,10.03,10.86,11.65,13.27,142.17000000000002,140.81,139.98,139.48,139.68,140.27,141.61,143.02,146.62,24.01,24.46,24.6,24.71,24.810000000000002,24.900000000000002,24.990000000000002,25.07,25.19,N/A,N/A +2013,7,5,7,30,94000,92920,91870,56.13,0,5.01,8.07,9.24,10.32,11.31,12.24,13.200000000000001,14.11,15.92,144.73,144.73,144.71,144.71,145.1,145.63,146.62,147.63,150.01,24.05,24.400000000000002,24.5,24.580000000000002,24.64,24.67,24.67,24.67,24.55,N/A,N/A +2013,7,5,8,30,94030,92950,91900,57.07,0,6.0200000000000005,9.25,10.49,11.620000000000001,12.67,13.65,14.61,15.51,17.150000000000002,147.42000000000002,148.64000000000001,149.31,149.91,150.57,151.24,152.07,152.9,154.84,23.46,23.650000000000002,23.67,23.68,23.67,23.650000000000002,23.61,23.580000000000002,23.48,N/A,N/A +2013,7,5,9,30,94050,92960,91910,60.74,0,6.3100000000000005,9.36,10.49,11.53,12.47,13.33,14.200000000000001,15.02,16.56,146.99,149.02,150.25,151.35,152.39000000000001,153.35,154.35,155.31,157.25,22.88,22.97,22.96,22.94,22.900000000000002,22.86,22.81,22.76,22.64,N/A,N/A +2013,7,5,10,30,94050,92960,91900,64.96000000000001,0,5.22,8.06,9.15,10.14,11.03,11.84,12.64,13.39,14.84,144.1,146.32,147.59,148.70000000000002,149.75,150.73,151.75,152.72,154.78,22.19,22.26,22.23,22.18,22.13,22.07,22,21.93,21.79,N/A,N/A +2013,7,5,11,30,94060,92970,91920,67.47,0,5.04,7.7700000000000005,8.8,9.73,10.55,11.290000000000001,12.030000000000001,12.73,14.08,141.73,143.79,145.03,146.13,147.26,148.34,149.58,150.78,153.42000000000002,21.650000000000002,21.68,21.64,21.59,21.52,21.46,21.38,21.31,21.16,N/A,N/A +2013,7,5,12,30,94120,93020,91970,68.53,0,5.26,7.61,8.49,9.26,9.93,10.52,11.1,11.63,12.66,143.05,144.8,145.83,146.75,147.64000000000001,148.5,149.46,150.38,152.45000000000002,21.580000000000002,21.44,21.34,21.22,21.1,20.990000000000002,20.87,20.76,20.55,N/A,N/A +2013,7,5,13,30,94120,93030,91980,65.53,0,5.9,7.5600000000000005,8.05,8.39,8.65,8.86,9.07,9.26,9.78,150.93,151.89000000000001,152.49,153.04,153.58,154.09,154.67000000000002,155.24,156.66,22.84,22.41,22.22,22.02,21.830000000000002,21.650000000000002,21.46,21.28,20.93,N/A,N/A +2013,7,5,14,30,94140,93060,92010,63.08,0,6.5,8.21,8.68,8.950000000000001,9.13,9.25,9.33,9.4,9.49,150.96,151.47,151.75,151.98,152.20000000000002,152.41,152.64000000000001,152.85,153.35,24.25,23.67,23.44,23.21,23,22.8,22.6,22.41,22.02,N/A,N/A +2013,7,5,15,30,94140,93060,92010,59.370000000000005,0,6.8500000000000005,8.67,9.19,9.49,9.700000000000001,9.84,9.94,10.02,10.13,158.69,158.91,159.02,159.11,159.19,159.27,159.35,159.42000000000002,159.59,25.8,25.12,24.86,24.61,24.39,24.18,23.96,23.77,23.37,N/A,N/A +2013,7,5,16,30,94150,93080,92040,53.660000000000004,0,6.84,8.6,9.11,9.41,9.61,9.76,9.86,9.950000000000001,10.07,161.77,161.94,162.04,162.11,162.17000000000002,162.23,162.28,162.33,162.44,27.42,26.67,26.39,26.13,25.900000000000002,25.68,25.46,25.26,24.85,N/A,N/A +2013,7,5,17,30,94110,93040,92010,47.52,0,6.99,8.78,9.27,9.55,9.74,9.870000000000001,9.96,10.040000000000001,10.13,161.78,161.9,161.98,162.03,162.06,162.1,162.14000000000001,162.16,162.22,28.79,27.990000000000002,27.7,27.43,27.19,26.97,26.740000000000002,26.54,26.13,N/A,N/A +2013,7,5,18,30,94070,93010,91980,40.97,0,6.68,8.35,8.81,9.06,9.23,9.35,9.43,9.5,9.58,159.70000000000002,159.8,159.86,159.88,159.91,159.93,159.94,159.95000000000002,159.97,30.02,29.2,28.91,28.64,28.39,28.17,27.94,27.73,27.32,N/A,N/A +2013,7,5,19,30,94030,92970,91940,35.1,0,6.4,7.96,8.4,8.64,8.81,8.93,9.01,9.08,9.16,157.71,157.78,157.85,157.86,157.86,157.87,157.86,157.86,157.86,31.16,30.35,30.060000000000002,29.78,29.54,29.310000000000002,29.09,28.88,28.46,N/A,N/A +2013,7,5,20,30,93940,92890,91870,32.25,0,5.7,7.1000000000000005,7.5,7.73,7.88,7.99,8.08,8.14,8.23,155.99,156.14000000000001,156.21,156.26,156.29,156.32,156.34,156.36,156.4,31.990000000000002,31.220000000000002,30.93,30.67,30.43,30.2,29.97,29.76,29.34,N/A,N/A +2013,7,5,21,30,93880,92820,91800,28.88,0,5.8100000000000005,7.23,7.63,7.8500000000000005,8,8.1,8.18,8.24,8.32,150.33,150.67000000000002,150.85,150.96,151.04,151.11,151.17000000000002,151.22,151.31,32.56,31.82,31.54,31.28,31.05,30.82,30.6,30.39,29.98,N/A,N/A +2013,7,5,22,30,93810,92760,91740,26.48,0,5.47,6.83,7.2,7.390000000000001,7.53,7.62,7.69,7.75,7.82,150.99,151.31,151.44,151.51,151.56,151.61,151.65,151.68,151.75,32.78,32.11,31.86,31.61,31.39,31.17,30.95,30.75,30.34,N/A,N/A +2013,7,5,23,30,93760,92710,91690,27.62,0,6.67,8.44,8.9,9.17,9.35,9.48,9.57,9.64,9.74,143.36,143.84,144.07,144.26,144.42000000000002,144.57,144.71,144.84,145.1,32.660000000000004,32.08,31.85,31.62,31.400000000000002,31.19,30.970000000000002,30.77,30.37,N/A,N/A +2013,7,6,0,30,93730,92680,91660,25.900000000000002,0,6.69,8.67,9.21,9.57,9.82,10.01,10.15,10.27,10.44,143.78,143.93,144.02,144.11,144.21,144.3,144.4,144.5,144.72,32.26,31.87,31.69,31.48,31.27,31.07,30.87,30.68,30.28,N/A,N/A +2013,7,6,1,30,93720,92660,91640,28.150000000000002,0,4.6000000000000005,6.86,7.55,8.11,8.57,8.950000000000001,9.28,9.57,10.07,148.41,148.07,147.92000000000002,147.8,147.73,147.69,147.66,147.62,147.52,30.88,30.91,30.85,30.740000000000002,30.62,30.48,30.32,30.17,29.830000000000002,N/A,N/A +2013,7,6,2,30,93810,92750,91730,29.59,0,4.95,7.98,9.200000000000001,10.32,11.24,12,12.530000000000001,12.96,13.33,150.42000000000002,150.41,150.43,150.51,150.65,150.83,151.01,151.17000000000002,151.4,29.73,29.96,29.990000000000002,29.990000000000002,29.94,29.88,29.76,29.64,29.32,N/A,N/A +2013,7,6,3,30,93850,92790,91760,31.25,0,4.91,7.71,8.73,9.66,10.48,11.24,11.91,12.530000000000001,13.48,149.87,149.78,149.72,149.68,149.74,149.86,150.05,150.24,150.65,28.76,28.95,28.98,28.97,28.95,28.900000000000002,28.84,28.77,28.560000000000002,N/A,N/A +2013,7,6,4,30,93900,92830,91800,32.63,0,5.64,8.69,9.88,10.97,11.98,12.94,13.84,14.67,16.05,147.43,147.74,147.85,147.8,147.75,147.71,147.69,147.68,147.70000000000002,27.71,27.89,27.92,27.92,27.900000000000002,27.86,27.8,27.740000000000002,27.54,N/A,N/A +2013,7,6,5,30,93920,92850,91820,34.18,0,5.51,8.43,9.57,10.61,11.55,12.42,13.3,14.13,15.59,147.25,147.24,147.12,146.84,146.64000000000001,146.48,146.45000000000002,146.45000000000002,146.78,26.740000000000002,26.88,26.88,26.86,26.82,26.77,26.72,26.67,26.54,N/A,N/A +2013,7,6,6,30,93940,92860,91820,35.33,0,5.68,8.65,9.74,10.72,11.61,12.44,13.24,13.98,15.34,145.22,145.25,145.16,144.97,144.89000000000001,144.85,144.99,145.16,145.91,26.060000000000002,26.19,26.19,26.17,26.150000000000002,26.12,26.080000000000002,26.05,25.990000000000002,N/A,N/A +2013,7,6,7,30,94000,92920,91880,39.75,0,5.3100000000000005,8.2,9.26,10.200000000000001,11.09,11.92,12.75,13.52,14.98,152.91,152.78,152.48,152.03,151.69,151.41,151.37,151.39000000000001,151.9,25.32,25.48,25.5,25.5,25.48,25.46,25.43,25.41,25.34,N/A,N/A +2013,7,6,8,30,94000,92920,91870,46.800000000000004,0,6.83,9.74,10.76,11.65,12.43,13.14,13.81,14.42,15.57,147.09,148.4,149.22,149.98,150.72,151.43,152.22,152.98,154.85,24.8,24.79,24.73,24.650000000000002,24.55,24.46,24.35,24.25,24.01,N/A,N/A +2013,7,6,9,30,93990,92900,91860,58.870000000000005,0,5.9,8.58,9.49,10.290000000000001,11,11.66,12.280000000000001,12.86,13.96,149.27,151,152.03,152.99,153.94,154.83,155.74,156.59,158.33,24.04,23.98,23.900000000000002,23.8,23.69,23.59,23.46,23.35,23.1,N/A,N/A +2013,7,6,10,30,93960,92880,91840,69.79,0,6.09,8.69,9.57,10.33,10.99,11.58,12.16,12.68,13.67,146.57,148.29,149.4,150.45000000000002,151.46,152.39000000000001,153.35,154.25,156.03,23.41,23.31,23.23,23.12,23.01,22.900000000000002,22.79,22.68,22.45,N/A,N/A +2013,7,6,11,30,93980,92890,91840,77.10000000000001,0,5.43,7.87,8.700000000000001,9.42,10.040000000000001,10.6,11.14,11.63,12.58,147.4,148.83,149.68,150.42000000000002,151.14000000000001,151.8,152.49,153.15,154.61,22.830000000000002,22.7,22.6,22.47,22.34,22.21,22.07,21.93,21.66,N/A,N/A +2013,7,6,12,30,94010,92930,91880,79.81,0,5.79,7.91,8.59,9.15,9.63,10.05,10.450000000000001,10.82,11.55,149.74,151.15,151.95000000000002,152.70000000000002,153.45000000000002,154.16,154.94,155.68,157.23,22.5,22.26,22.13,21.98,21.830000000000002,21.68,21.54,21.400000000000002,21.13,N/A,N/A +2013,7,6,13,30,94040,92960,91910,76.84,0,6.0600000000000005,7.68,8.08,8.32,8.47,8.59,8.67,8.74,8.89,154.34,154.95000000000002,155.35,155.67000000000002,155.97,156.25,156.56,156.85,157.56,23.26,22.77,22.55,22.34,22.14,21.95,21.75,21.57,21.2,N/A,N/A +2013,7,6,14,30,94040,92960,91910,71.61,0,6.05,7.640000000000001,8.08,8.33,8.49,8.6,8.68,8.74,8.82,150.45000000000002,151,151.29,151.53,151.74,151.93,152.15,152.34,152.79,24.6,23.96,23.72,23.490000000000002,23.27,23.080000000000002,22.87,22.68,22.3,N/A,N/A +2013,7,6,15,30,94050,92970,91930,66.89,0,6.42,8.07,8.53,8.78,8.94,9.05,9.120000000000001,9.17,9.21,142.91,143.94,144.52,145.02,145.47,145.89000000000001,146.31,146.70000000000002,147.52,25.560000000000002,24.82,24.55,24.3,24.080000000000002,23.87,23.66,23.46,23.07,N/A,N/A +2013,7,6,16,30,94040,92970,91930,56.85,0,6,7.54,7.96,8.21,8.370000000000001,8.49,8.57,8.63,8.72,148.06,148.94,149.41,149.79,150.11,150.4,150.68,150.94,151.45000000000002,27.07,26.310000000000002,26.02,25.77,25.53,25.32,25.1,24.91,24.51,N/A,N/A +2013,7,6,17,30,94020,92960,91920,42.51,0,6.48,8.13,8.58,8.85,9.03,9.15,9.24,9.32,9.41,150.81,151.12,151.26,151.37,151.46,151.53,151.6,151.66,151.79,29.12,28.310000000000002,28.01,27.740000000000002,27.5,27.28,27.05,26.85,26.43,N/A,N/A +2013,7,6,18,30,93980,92910,91880,36.12,0,5.89,7.33,7.72,7.930000000000001,8.08,8.19,8.26,8.32,8.39,147.76,148.12,148.3,148.42000000000002,148.52,148.61,148.69,148.76,148.89000000000001,30.47,29.67,29.37,29.09,28.85,28.62,28.400000000000002,28.19,27.77,N/A,N/A +2013,7,6,19,30,93930,92870,91840,29.32,0,5.96,7.43,7.84,8.07,8.23,8.34,8.42,8.49,8.57,144.12,144.49,144.68,144.81,144.91,144.99,145.07,145.13,145.26,31.560000000000002,30.76,30.46,30.18,29.94,29.71,29.490000000000002,29.28,28.86,N/A,N/A +2013,7,6,20,30,93870,92820,91800,24.38,0,6.08,7.58,7.99,8.21,8.370000000000001,8.48,8.56,8.620000000000001,8.71,142.76,143.05,143.19,143.27,143.33,143.39000000000001,143.44,143.47,143.55,32.35,31.560000000000002,31.27,31,30.76,30.53,30.310000000000002,30.1,29.68,N/A,N/A +2013,7,6,21,30,93820,92770,91750,25.76,0,5.89,7.390000000000001,7.8100000000000005,8.06,8.23,8.36,8.46,8.53,8.65,146.02,146.18,146.27,146.3,146.33,146.34,146.35,146.36,146.37,32.78,32.02,31.740000000000002,31.48,31.240000000000002,31.01,30.79,30.57,30.150000000000002,N/A,N/A +2013,7,6,22,30,93770,92720,91700,25.62,0,6.46,8.09,8.55,8.83,9.03,9.17,9.28,9.370000000000001,9.5,143.45000000000002,143.49,143.56,143.65,143.73,143.8,143.88,143.95000000000002,144.11,32.87,32.160000000000004,31.900000000000002,31.650000000000002,31.41,31.19,30.970000000000002,30.76,30.34,N/A,N/A +2013,7,6,23,30,93750,92700,91680,22.67,0,6.24,7.9,8.36,8.64,8.84,8.98,9.09,9.17,9.290000000000001,132.57,133.22,133.64000000000001,134.03,134.37,134.69,134.99,135.27,135.81,32.88,32.29,32.06,31.82,31.6,31.38,31.17,30.970000000000002,30.560000000000002,N/A,N/A +2013,7,7,0,30,93730,92680,91660,24.35,0,6.22,7.96,8.41,8.68,8.870000000000001,9,9.11,9.19,9.31,154.09,153.54,153.19,152.81,152.48,152.18,151.89000000000001,151.62,151.11,32.28,31.87,31.67,31.46,31.26,31.060000000000002,30.86,30.66,30.27,N/A,N/A +2013,7,7,1,30,93720,92670,91650,28.23,0,3.85,5.91,6.5600000000000005,7.09,7.5200000000000005,7.87,8.17,8.43,8.84,143.46,142.32,141.77,141.33,141.03,140.82,140.71,140.62,140.56,31.07,31.080000000000002,31,30.88,30.740000000000002,30.59,30.42,30.25,29.89,N/A,N/A +2013,7,7,2,30,93760,92700,91680,30.73,0,4,6.49,7.41,8.21,8.9,9.52,10.040000000000001,10.5,11.15,137.26,137.68,138.05,138.61,139.24,139.9,140.51,141.08,142.07,29.96,30.09,30.080000000000002,30.02,29.94,29.85,29.73,29.61,29.32,N/A,N/A +2013,7,7,3,30,93780,92720,91690,34.4,0,4.78,7.45,8.42,9.28,10.01,10.66,11.24,11.76,12.57,146.9,146.99,147.07,147.16,147.28,147.4,147.47,147.53,147.44,29.11,29.25,29.25,29.23,29.18,29.12,29.03,28.95,28.71,N/A,N/A +2013,7,7,4,30,93830,92760,91740,38.86,0,3.5700000000000003,6.15,7.16,8.09,8.96,9.78,10.53,11.23,12.26,149.16,148.93,148.74,148.53,148.44,148.41,148.42000000000002,148.44,148.36,28.02,28.26,28.3,28.3,28.29,28.26,28.22,28.17,28.03,N/A,N/A +2013,7,7,5,30,93860,92790,91760,42.86,0,4.0600000000000005,6.79,7.8500000000000005,8.85,9.81,10.74,11.67,12.57,14.19,144.86,144.22,143.87,143.58,143.56,143.67000000000002,143.89000000000001,144.12,144.48,27.18,27.38,27.41,27.42,27.400000000000002,27.38,27.330000000000002,27.29,27.12,N/A,N/A +2013,7,7,6,30,93900,92830,91800,51.84,0,4.94,7.46,8.38,9.21,9.98,10.700000000000001,11.42,12.09,13.41,150.94,150.93,150.86,150.76,150.75,150.79,150.95000000000002,151.13,151.73,26.25,26.240000000000002,26.17,26.080000000000002,25.98,25.88,25.77,25.67,25.46,N/A,N/A +2013,7,7,7,30,93960,92890,91850,60.15,0,3.9,6.3,7.21,8.040000000000001,8.8,9.51,10.200000000000001,10.85,12.07,149.75,151.54,152.49,153.16,153.73,154.22,154.77,155.31,156.68,25.47,25.51,25.48,25.42,25.35,25.27,25.17,25.080000000000002,24.87,N/A,N/A +2013,7,7,8,30,93950,92870,91830,65.3,0,3.95,6.3100000000000005,7.21,8.05,8.84,9.59,10.31,11,12.25,137.84,141.07,142.84,144.27,145.57,146.79,147.95000000000002,149.03,151.01,24.7,24.77,24.77,24.75,24.71,24.68,24.62,24.57,24.42,N/A,N/A +2013,7,7,9,30,93990,92910,91870,69.44,0,3.43,5.73,6.61,7.41,8.15,8.84,9.540000000000001,10.200000000000001,11.51,138.64000000000001,140.38,141.21,141.66,142.17000000000002,142.69,143.45000000000002,144.21,146.13,24.16,24.2,24.17,24.11,24.03,23.96,23.86,23.78,23.57,N/A,N/A +2013,7,7,10,30,94020,92940,91890,74.41,0,3.68,6.01,6.91,7.72,8.45,9.14,9.8,10.42,11.620000000000001,146.83,147.56,147.97,148.25,148.61,149,149.57,150.15,151.77,23.63,23.62,23.56,23.47,23.38,23.28,23.17,23.06,22.84,N/A,N/A +2013,7,7,11,30,94070,92990,91940,80.98,0,2.4,4.59,5.45,6.23,6.93,7.57,8.19,8.78,9.88,137.37,142.21,144.6,145.91,146.96,147.84,148.84,149.81,152.18,22.85,22.92,22.88,22.81,22.72,22.63,22.53,22.43,22.22,N/A,N/A +2013,7,7,12,30,94110,93020,91970,80.72,0,4.16,5.9,6.5200000000000005,7.0600000000000005,7.55,8.01,8.47,8.89,9.76,138.25,140.77,142.24,143.57,144.89000000000001,146.15,147.5,148.78,151.57,22.93,22.71,22.59,22.46,22.32,22.2,22.07,21.96,21.740000000000002,N/A,N/A +2013,7,7,13,30,94120,93040,91990,75.16,0,5.4,6.890000000000001,7.29,7.54,7.71,7.84,7.930000000000001,8.02,8.17,147.54,148.3,148.69,149.03,149.39000000000001,149.73,150.12,150.5,151.4,24.13,23.64,23.43,23.22,23.02,22.830000000000002,22.63,22.45,22.080000000000002,N/A,N/A +2013,7,7,14,30,94160,93080,92040,68.71000000000001,0,4.76,5.99,6.33,6.5200000000000005,6.65,6.75,6.8100000000000005,6.86,6.93,153.77,154.1,154.26,154.37,154.45000000000002,154.52,154.58,154.64000000000001,154.75,25.400000000000002,24.77,24.53,24.3,24.080000000000002,23.88,23.67,23.47,23.07,N/A,N/A +2013,7,7,15,30,94170,93100,92060,60.36,0,4.93,6.18,6.53,6.74,6.87,6.97,7.04,7.1000000000000005,7.17,152.47,152.70000000000002,152.84,152.92000000000002,152.99,153.04,153.09,153.13,153.20000000000002,26.79,26.09,25.82,25.57,25.330000000000002,25.12,24.91,24.71,24.3,N/A,N/A +2013,7,7,16,30,94170,93100,92060,53.58,0,5.51,6.9,7.28,7.5,7.65,7.76,7.83,7.9,7.98,144.66,145.06,145.24,145.36,145.46,145.53,145.61,145.67000000000002,145.77,28.11,27.34,27.05,26.79,26.55,26.330000000000002,26.11,25.900000000000002,25.490000000000002,N/A,N/A +2013,7,7,17,30,94150,93090,92050,49.24,0,4.62,5.73,6.05,6.22,6.34,6.43,6.5,6.55,6.63,147.79,147.96,148.05,148.07,148.06,148.05,148.01,147.98,147.91,29.18,28.41,28.11,27.84,27.6,27.38,27.150000000000002,26.95,26.53,N/A,N/A +2013,7,7,18,30,94140,93080,92050,45.38,0,5.07,6.26,6.59,6.76,6.88,6.97,7.03,7.08,7.140000000000001,148.82,148.71,148.58,148.42000000000002,148.27,148.12,147.96,147.81,147.51,30.07,29.27,28.96,28.69,28.44,28.21,27.990000000000002,27.78,27.36,N/A,N/A +2013,7,7,19,30,94100,93040,92010,40.74,0,4.73,5.8500000000000005,6.16,6.33,6.45,6.53,6.6000000000000005,6.65,6.73,142.68,142.73,142.72,142.65,142.57,142.49,142.4,142.32,142.13,30.970000000000002,30.18,29.88,29.61,29.36,29.13,28.91,28.69,28.27,N/A,N/A +2013,7,7,20,30,94050,92990,91970,38.410000000000004,0,5.08,6.29,6.63,6.82,6.96,7.0600000000000005,7.140000000000001,7.2,7.29,139.61,139.78,139.82,139.79,139.75,139.70000000000002,139.63,139.57,139.44,31.740000000000002,30.95,30.650000000000002,30.38,30.13,29.900000000000002,29.67,29.46,29.04,N/A,N/A +2013,7,7,21,30,94000,92940,91920,32.87,0,5.16,6.46,6.8100000000000005,7.03,7.18,7.3,7.38,7.46,7.5600000000000005,142.46,141.89000000000001,141.65,141.44,141.26,141.1,140.95000000000002,140.83,140.61,32.51,31.75,31.470000000000002,31.2,30.96,30.73,30.5,30.29,29.87,N/A,N/A +2013,7,7,22,30,93950,92900,91880,32.69,0,5.12,6.41,6.79,7.0200000000000005,7.18,7.3,7.4,7.48,7.61,148.18,148.01,147.84,147.61,147.39000000000001,147.18,146.98,146.79,146.41,32.65,31.94,31.68,31.42,31.19,30.970000000000002,30.75,30.54,30.12,N/A,N/A +2013,7,7,23,30,93910,92860,91840,32.71,0,5.36,6.79,7.19,7.44,7.62,7.76,7.86,7.95,8.08,141.87,141.53,141.4,141.3,141.23,141.18,141.14000000000001,141.1,141.06,32.82,32.2,31.96,31.720000000000002,31.490000000000002,31.28,31.060000000000002,30.86,30.45,N/A,N/A +2013,7,8,0,30,93920,92870,91850,34.14,0,5.82,7.3500000000000005,7.74,7.96,8.11,8.22,8.290000000000001,8.35,8.42,132.52,133.28,133.75,134.15,134.49,134.81,135.1,135.38,135.88,32.410000000000004,31.93,31.73,31.51,31.3,31.1,30.89,30.69,30.3,N/A,N/A +2013,7,8,1,30,93900,92840,91820,34.29,0,4.5200000000000005,6.3500000000000005,6.8500000000000005,7.2,7.46,7.67,7.8100000000000005,7.930000000000001,8.08,156.31,155.70000000000002,155.36,154.97,154.63,154.32,154.03,153.76,153.26,31.63,31.43,31.29,31.12,30.94,30.76,30.57,30.39,30.02,N/A,N/A +2013,7,8,2,30,93960,92900,91880,35.12,0,4.69,6.97,7.72,8.32,8.8,9.19,9.49,9.75,10.06,150.3,149.69,149.37,149.11,148.92000000000002,148.78,148.68,148.59,148.47,30.91,30.830000000000002,30.740000000000002,30.62,30.48,30.34,30.17,30.02,29.67,N/A,N/A +2013,7,8,3,30,94030,92970,91940,37.300000000000004,0,3.4,5.61,6.45,7.25,8.01,8.75,9.450000000000001,10.1,11.14,156.96,155.54,154.68,153.9,153.27,152.74,152.31,151.93,151.52,30.01,30.1,30.07,30,29.900000000000002,29.79,29.66,29.53,29.240000000000002,N/A,N/A +2013,7,8,4,30,94020,92960,91930,39.480000000000004,0,4.2,6.58,7.44,8.22,8.91,9.56,10.13,10.65,11.55,150.31,149.95000000000002,149.83,149.81,149.92000000000002,150.11,150.33,150.55,150.93,29.240000000000002,29.28,29.240000000000002,29.18,29.09,29.01,28.89,28.77,28.5,N/A,N/A +2013,7,8,5,30,94090,93020,91990,55.25,0,5.79,8.2,9,9.66,10.24,10.75,11.25,11.71,12.58,144.65,144.68,144.63,144.58,144.59,144.63,144.73,144.84,145.16,27.48,27.29,27.150000000000002,26.990000000000002,26.82,26.66,26.48,26.310000000000002,25.95,N/A,N/A +2013,7,8,6,30,94170,93100,92060,60.76,0,4.3100000000000005,6.34,7.05,7.69,8.27,8.82,9.34,9.83,10.83,147.35,147.51,147.51,147.36,147.20000000000002,147.04,146.94,146.86,146.89000000000001,26.61,26.44,26.32,26.17,26.02,25.86,25.69,25.53,25.18,N/A,N/A +2013,7,8,7,30,94240,93160,92120,62.84,0,4.7700000000000005,6.86,7.55,8.14,8.66,9.14,9.6,10.01,10.86,148.14000000000001,149.58,150.4,151.12,151.75,152.31,152.79,153.22,153.95000000000002,25.82,25.66,25.53,25.38,25.22,25.060000000000002,24.88,24.71,24.330000000000002,N/A,N/A +2013,7,8,8,30,94300,93210,92170,64.43,0,5.07,7.18,7.9,8.51,9.040000000000001,9.52,9.98,10.42,11.24,149.23,150.52,151.27,151.89000000000001,152.41,152.87,153.3,153.71,154.61,24.990000000000002,24.8,24.67,24.51,24.34,24.18,24.01,23.85,23.5,N/A,N/A +2013,7,8,9,30,94270,93180,92140,68.47,0,5.39,7.54,8.23,8.82,9.34,9.81,10.26,10.68,11.51,143.26,144.97,145.98,146.9,147.75,148.55,149.35,150.09,151.63,24.330000000000002,24.14,24.01,23.86,23.7,23.55,23.38,23.23,22.900000000000002,N/A,N/A +2013,7,8,10,30,94310,93230,92180,72.37,0,4.7,6.72,7.43,8.040000000000001,8.56,9.03,9.5,9.93,10.8,138.92000000000002,141.27,142.73,144.11,145.4,146.59,147.85,149.04,151.51,23.8,23.63,23.5,23.36,23.21,23.07,22.91,22.77,22.48,N/A,N/A +2013,7,8,11,30,94390,93300,92250,76.26,0,3.83,5.73,6.44,7.0600000000000005,7.61,8.1,8.58,9.02,9.88,140.59,142.22,143.22,144.18,145.16,146.12,147.17000000000002,148.17000000000002,150.23,23.32,23.150000000000002,23.03,22.89,22.740000000000002,22.6,22.45,22.3,22.01,N/A,N/A +2013,7,8,12,30,94400,93310,92250,77.88,0,4.09,6.16,6.99,7.57,8.08,8.53,8.99,9.44,10.25,138.66,140.61,142.04,143.58,144.77,145.75,146.41,146.99,148.57,23.14,22.85,22.69,22.51,22.330000000000002,22.150000000000002,21.990000000000002,21.84,21.53,N/A,N/A +2013,7,8,13,30,94440,93360,92300,71.77,0,5.88,7.51,7.95,8.22,8.4,8.52,8.620000000000001,8.69,8.790000000000001,150.24,150.67000000000002,150.89000000000001,151.07,151.25,151.42000000000002,151.62,151.8,152.23,23.94,23.43,23.22,23,22.79,22.6,22.400000000000002,22.21,21.82,N/A,N/A +2013,7,8,14,30,94490,93400,92350,64.02,0,5.25,6.6000000000000005,6.99,7.2,7.34,7.44,7.5,7.55,7.61,151.83,152.25,152.5,152.67000000000002,152.81,152.93,153.04,153.15,153.34,25.11,24.47,24.22,23.990000000000002,23.77,23.56,23.35,23.16,22.76,N/A,N/A +2013,7,8,15,30,94500,93420,92370,54.94,0,4.86,6.08,6.42,6.61,6.74,6.83,6.9,6.95,7.01,151.06,151.43,151.6,151.73,151.82,151.91,151.98,152.06,152.19,26.52,25.810000000000002,25.54,25.29,25.060000000000002,24.84,24.63,24.43,24.02,N/A,N/A +2013,7,8,16,30,94500,93430,92380,48.95,0,5.34,6.65,7.0200000000000005,7.22,7.36,7.46,7.53,7.59,7.66,154.89000000000001,155.01,155.05,155.07,155.07,155.07,155.07,155.05,155.04,27.73,26.96,26.67,26.41,26.17,25.95,25.72,25.52,25.1,N/A,N/A +2013,7,8,17,30,94460,93390,92350,45.18,0,5,6.19,6.5200000000000005,6.7,6.8100000000000005,6.9,6.96,7.01,7.07,149.22,149.52,149.65,149.72,149.77,149.81,149.83,149.85,149.87,28.8,28.01,27.71,27.44,27.2,26.97,26.740000000000002,26.54,26.12,N/A,N/A +2013,7,8,18,30,94420,93350,92320,41.12,0,5.03,6.25,6.57,6.75,6.87,6.96,7.0200000000000005,7.07,7.140000000000001,149.20000000000002,149.42000000000002,149.54,149.61,149.65,149.68,149.70000000000002,149.72,149.74,29.82,29.02,28.71,28.44,28.19,27.97,27.73,27.53,27.1,N/A,N/A +2013,7,8,19,30,94370,93310,92280,37.37,0,4.7700000000000005,5.94,6.24,6.42,6.54,6.63,6.69,6.74,6.82,142.85,143.18,143.31,143.38,143.43,143.46,143.48,143.5,143.51,30.73,29.94,29.64,29.37,29.12,28.900000000000002,28.66,28.46,28.03,N/A,N/A +2013,7,8,20,30,94330,93270,92240,34.4,0,5.17,6.42,6.75,6.94,7.07,7.16,7.23,7.28,7.36,141.33,141.5,141.55,141.55,141.52,141.49,141.45000000000002,141.42000000000002,141.34,31.48,30.69,30.39,30.12,29.88,29.650000000000002,29.42,29.21,28.79,N/A,N/A +2013,7,8,21,30,94290,93230,92200,33.15,0,5.29,6.62,6.97,7.18,7.33,7.43,7.51,7.58,7.67,138.35,138.6,138.71,138.74,138.76,138.76,138.76,138.75,138.72,32.01,31.240000000000002,30.96,30.69,30.45,30.22,29.990000000000002,29.78,29.36,N/A,N/A +2013,7,8,22,30,94230,93180,92150,31.55,0,5.89,7.390000000000001,7.79,8.02,8.17,8.28,8.370000000000001,8.43,8.52,143.13,142.95000000000002,142.79,142.6,142.42000000000002,142.25,142.09,141.94,141.65,32.26,31.53,31.26,31,30.76,30.54,30.32,30.12,29.7,N/A,N/A +2013,7,8,23,30,94200,93150,92120,29.11,0,6.13,7.75,8.18,8.43,8.59,8.71,8.8,8.870000000000001,8.96,133.79,134.49,134.87,135.17000000000002,135.42000000000002,135.64000000000001,135.85,136.04,136.4,32.28,31.650000000000002,31.41,31.17,30.94,30.73,30.52,30.32,29.91,N/A,N/A +2013,7,9,0,30,94190,93130,92100,28.13,0,6.49,8.35,8.83,9.11,9.3,9.44,9.540000000000001,9.620000000000001,9.71,135,135.67000000000002,136.03,136.31,136.56,136.79,137.02,137.23,137.63,31.92,31.45,31.25,31.03,30.82,30.62,30.42,30.22,29.82,N/A,N/A +2013,7,9,1,30,94210,93150,92120,30.560000000000002,0,4.0600000000000005,5.87,6.43,6.890000000000001,7.25,7.5600000000000005,7.8100000000000005,8.03,8.4,143.47,142.72,142.41,142.15,142.01,141.93,141.93,141.94,142.09,31.11,30.93,30.79,30.63,30.45,30.28,30.09,29.91,29.53,N/A,N/A +2013,7,9,2,30,94250,93180,92160,33.84,0,4.74,6.84,7.5,8.05,8.5,8.89,9.23,9.540000000000001,10.03,158.53,158.23,158.06,157.92000000000002,157.83,157.75,157.69,157.63,157.46,30.400000000000002,30.26,30.14,30,29.85,29.69,29.52,29.35,29,N/A,N/A +2013,7,9,3,30,94310,93240,92210,46.43,0,7.54,10.09,10.75,11.21,11.540000000000001,11.8,12,12.16,12.39,143.29,143.91,144.25,144.6,144.96,145.33,145.74,146.13,146.99,29.04,28.82,28.68,28.51,28.35,28.18,28,27.830000000000002,27.48,N/A,N/A +2013,7,9,4,30,94350,93280,92250,53.120000000000005,0,5.29,7.36,8.01,8.52,8.94,9.31,9.63,9.93,10.48,137.88,138.56,138.96,139.39000000000001,139.87,140.35,140.9,141.43,142.57,27.8,27.57,27.42,27.25,27.07,26.89,26.7,26.52,26.150000000000002,N/A,N/A +2013,7,9,5,30,94390,93320,92280,52.7,0,5.3100000000000005,7.55,8.28,8.9,9.450000000000001,9.93,10.4,10.83,11.66,150,150.22,150.32,150.42000000000002,150.53,150.64000000000001,150.74,150.83,150.9,27.29,27.11,26.990000000000002,26.84,26.68,26.52,26.35,26.19,25.84,N/A,N/A +2013,7,9,6,30,94460,93380,92340,59.38,0,5.36,7.5600000000000005,8.290000000000001,8.89,9.42,9.9,10.35,10.76,11.55,143.6,144.05,144.3,144.51,144.75,144.98,145.24,145.49,146.06,26.330000000000002,26.11,25.96,25.78,25.6,25.42,25.23,25.05,24.66,N/A,N/A +2013,7,9,7,30,94480,93400,92360,65.21000000000001,0,5.82,8.05,8.76,9.33,9.83,10.27,10.68,11.07,11.81,146.91,147.33,147.58,147.83,148.09,148.35,148.66,148.95000000000002,149.61,25.55,25.330000000000002,25.19,25.02,24.85,24.69,24.51,24.35,24,N/A,N/A +2013,7,9,8,30,94520,93440,92390,66.88,0,5.5,7.68,8.39,8.98,9.49,9.950000000000001,10.370000000000001,10.76,11.540000000000001,150.06,150.82,151.31,151.75,152.19,152.6,153.02,153.41,154.20000000000002,25.080000000000002,24.87,24.73,24.57,24.41,24.25,24.07,23.91,23.56,N/A,N/A +2013,7,9,9,30,94580,93490,92440,69.76,0,4.34,6.28,6.95,7.53,8.02,8.46,8.89,9.28,10.05,146.84,147.93,148.64000000000001,149.31,149.95000000000002,150.54,151.14000000000001,151.71,152.85,24.54,24.34,24.2,24.04,23.88,23.72,23.54,23.37,23.02,N/A,N/A +2013,7,9,10,30,94550,93460,92410,72.33,0,4.79,6.86,7.57,8.16,8.69,9.16,9.61,10.040000000000001,10.870000000000001,148.71,149.48,149.94,150.41,150.92000000000002,151.41,151.97,152.51,153.66,23.88,23.67,23.54,23.38,23.22,23.07,22.89,22.73,22.400000000000002,N/A,N/A +2013,7,9,11,30,94590,93500,92440,73.21000000000001,0,4.54,6.5600000000000005,7.28,7.890000000000001,8.42,8.9,9.36,9.790000000000001,10.64,150.97,151.83,152.39000000000001,152.9,153.41,153.9,154.45000000000002,154.97,156.08,23.330000000000002,23.14,23.01,22.85,22.69,22.54,22.37,22.22,21.900000000000002,N/A,N/A +2013,7,9,12,30,94580,93490,92440,72.48,0,3.6,5.76,6.65,7.2,7.74,8.25,8.74,9.200000000000001,10.07,141.15,144.47,146.52,148.17000000000002,149.22,149.94,150.75,151.53,153.17000000000002,23.05,22.77,22.62,22.44,22.27,22.12,21.96,21.81,21.51,N/A,N/A +2013,7,9,13,30,94620,93530,92470,62.96,0,6.4,8.15,8.620000000000001,8.91,9.11,9.25,9.35,9.43,9.56,150.69,151.36,151.73,152.04,152.33,152.59,152.87,153.13,153.70000000000002,24.05,23.55,23.330000000000002,23.12,22.91,22.72,22.51,22.330000000000002,21.94,N/A,N/A +2013,7,9,14,30,94630,93550,92490,57.25,0,6.5200000000000005,8.23,8.68,8.94,9.11,9.23,9.31,9.370000000000001,9.450000000000001,157.92000000000002,158.25,158.44,158.59,158.71,158.82,158.93,159.03,159.26,25.17,24.52,24.27,24.03,23.81,23.6,23.38,23.19,22.79,N/A,N/A +2013,7,9,15,30,94640,93560,92510,53.68,0,5.89,7.390000000000001,7.8100000000000005,8.040000000000001,8.2,8.31,8.39,8.46,8.53,160.94,161.12,161.23,161.3,161.36,161.41,161.45000000000002,161.5,161.6,26.29,25.560000000000002,25.28,25.03,24.79,24.580000000000002,24.36,24.16,23.75,N/A,N/A +2013,7,9,16,30,94610,93530,92490,48.980000000000004,0,5.76,7.19,7.58,7.79,7.94,8.040000000000001,8.11,8.17,8.25,162.66,162.78,162.82,162.84,162.85,162.86,162.87,162.87,162.89000000000001,27.55,26.76,26.47,26.21,25.97,25.75,25.52,25.32,24.900000000000002,N/A,N/A +2013,7,9,17,30,94590,93520,92480,44.46,0,5.12,6.36,6.71,6.91,7.04,7.13,7.2,7.25,7.33,162.22,162.32,162.37,162.39000000000001,162.4,162.41,162.42000000000002,162.42000000000002,162.42000000000002,28.810000000000002,28.02,27.72,27.44,27.2,26.97,26.740000000000002,26.54,26.12,N/A,N/A +2013,7,9,18,30,94520,93460,92420,40.69,0,5.87,7.3,7.68,7.890000000000001,8.03,8.14,8.21,8.26,8.34,163.17000000000002,163.12,163.1,163.05,163.02,162.99,162.95000000000002,162.92000000000002,162.87,29.91,29.080000000000002,28.77,28.490000000000002,28.240000000000002,28.01,27.78,27.57,27.14,N/A,N/A +2013,7,9,19,30,94490,93420,92390,35.51,0,5.73,7.11,7.49,7.71,7.8500000000000005,7.95,8.03,8.09,8.17,160.32,160.17000000000002,160.08,159.97,159.87,159.76,159.66,159.58,159.39000000000001,30.970000000000002,30.14,29.830000000000002,29.55,29.3,29.07,28.84,28.62,28.2,N/A,N/A +2013,7,9,20,30,94430,93370,92340,32.65,0,6.08,7.58,8,8.23,8.4,8.51,8.6,8.66,8.75,148.1,148.47,148.67000000000002,148.83,148.95000000000002,149.06,149.17000000000002,149.25,149.42000000000002,31.79,30.96,30.66,30.38,30.13,29.900000000000002,29.67,29.45,29.03,N/A,N/A +2013,7,9,21,30,94360,93300,92280,31.080000000000002,0,5.92,7.41,7.82,8.06,8.23,8.35,8.44,8.51,8.620000000000001,149.73,149.84,149.89000000000001,149.91,149.92000000000002,149.93,149.93,149.93,149.94,32.230000000000004,31.45,31.16,30.89,30.64,30.42,30.19,29.98,29.560000000000002,N/A,N/A +2013,7,9,22,30,94320,93260,92240,30.04,0,6.1000000000000005,7.69,8.14,8.39,8.57,8.71,8.8,8.89,9,147.88,148.23,148.39000000000001,148.49,148.56,148.62,148.67000000000002,148.71,148.78,32.42,31.69,31.41,31.150000000000002,30.92,30.7,30.47,30.27,29.85,N/A,N/A +2013,7,9,23,30,94260,93200,92180,30.150000000000002,0,6.53,8.27,8.75,9.03,9.22,9.36,9.46,9.55,9.67,140.44,141.22,141.65,141.98,142.27,142.52,142.77,142.99,143.41,32.3,31.66,31.42,31.18,30.96,30.740000000000002,30.53,30.330000000000002,29.92,N/A,N/A +2013,7,10,0,30,94250,93190,92170,30.6,0,6.26,8.02,8.5,8.83,9.06,9.24,9.38,9.49,9.67,151.25,151.8,151.96,152.07,152.15,152.22,152.28,152.32,152.39000000000001,32.160000000000004,31.69,31.48,31.26,31.05,30.85,30.64,30.44,30.04,N/A,N/A +2013,7,10,1,30,94240,93180,92150,30.78,0,5.3500000000000005,7.390000000000001,7.99,8.46,8.84,9.16,9.42,9.66,10.05,154.45000000000002,154.62,154.74,154.84,154.93,155.04,155.14000000000001,155.23,155.37,31.37,31.17,31.04,30.87,30.7,30.53,30.35,30.17,29.8,N/A,N/A +2013,7,10,2,30,94250,93180,92150,30.91,0,4.16,6.4,7.19,7.86,8.45,8.97,9.46,9.92,10.75,147.22,147.68,148.08,148.62,149.25,149.93,150.66,151.36,152.69,30.45,30.43,30.36,30.26,30.14,30.02,29.88,29.75,29.45,N/A,N/A +2013,7,10,3,30,94270,93200,92170,34.660000000000004,0,3.56,5.9,6.78,7.58,8.3,8.97,9.6,10.21,11.34,143.06,144.11,144.86,145.75,146.70000000000002,147.69,148.67000000000002,149.59,151.23,29.55,29.62,29.6,29.54,29.46,29.37,29.25,29.14,28.87,N/A,N/A +2013,7,10,4,30,94270,93200,92170,37.4,0,4.12,6.72,7.73,8.65,9.47,10.22,10.89,11.5,12.49,150.09,150.89000000000001,151.4,152.02,152.71,153.45000000000002,154.27,155.08,156.91,28.93,29.03,29.03,29.01,28.97,28.91,28.84,28.76,28.560000000000002,N/A,N/A +2013,7,10,5,30,94340,93270,92240,43.76,0,3.5,5.83,6.7,7.49,8.21,8.88,9.53,10.15,11.36,149.20000000000002,149.69,149.96,150.18,150.37,150.55,150.69,150.81,151,28.38,28.47,28.45,28.38,28.3,28.19,28.060000000000002,27.93,27.61,N/A,N/A +2013,7,10,6,30,94330,93260,92230,51.5,0,4.83,7.3100000000000005,8.16,8.91,9.55,10.120000000000001,10.66,11.15,12.08,151.85,152.9,153.6,154.37,155.18,155.99,156.83,157.63,159.28,27.650000000000002,27.63,27.57,27.48,27.38,27.28,27.17,27.060000000000002,26.8,N/A,N/A +2013,7,10,7,30,94390,93310,92280,57.18,0,5.16,7.63,8.47,9.19,9.81,10.36,10.88,11.35,12.18,153.11,153.75,154.14000000000001,154.59,155.1,155.63,156.23,156.8,157.99,26.990000000000002,26.92,26.84,26.740000000000002,26.62,26.51,26.39,26.27,26.02,N/A,N/A +2013,7,10,8,30,94400,93320,92280,62.39,0,4.47,6.78,7.61,8.36,9.06,9.71,10.370000000000001,10.99,12.3,153.93,154.59,154.99,155.46,155.99,156.55,157.16,157.75,159.01,26.11,26.05,25.97,25.87,25.76,25.650000000000002,25.52,25.400000000000002,25.13,N/A,N/A +2013,7,10,9,30,94450,93370,92330,67.73,0,4.65,6.97,7.8,8.540000000000001,9.19,9.78,10.370000000000001,10.92,11.950000000000001,149.4,150.69,151.46,152.19,152.88,153.54,154.23,154.89000000000001,156.24,25.400000000000002,25.3,25.21,25.09,24.97,24.84,24.7,24.560000000000002,24.26,N/A,N/A +2013,7,10,10,30,94450,93370,92320,73.34,0,4.38,6.46,7.21,7.86,8.44,8.97,9.5,10,11.03,142.76,144.13,145.02,145.95000000000002,146.95000000000002,147.96,149.12,150.25,152.75,24.61,24.48,24.37,24.240000000000002,24.1,23.97,23.82,23.68,23.37,N/A,N/A +2013,7,10,11,30,94450,93370,92320,79.03,0,5.17,7.45,8.23,8.91,9.49,10.02,10.52,11,11.93,152.3,153.25,153.86,154.45000000000002,155.07,155.69,156.43,157.13,158.79,24.02,23.86,23.740000000000002,23.59,23.44,23.3,23.14,23,22.7,N/A,N/A +2013,7,10,12,30,94520,93430,92380,80.01,0,5.08,7.03,7.7,8.26,8.76,9.200000000000001,9.63,10.03,10.83,151.42000000000002,153.18,154.15,155.08,155.98,156.86,157.76,158.61,160.34,23.78,23.54,23.400000000000002,23.240000000000002,23.09,22.94,22.79,22.64,22.35,N/A,N/A +2013,7,10,13,30,94520,93430,92380,71.84,0,6.13,7.8,8.24,8.52,8.700000000000001,8.83,8.91,8.99,9.09,161.41,161.76,161.97,162.16,162.34,162.53,162.73,162.92000000000002,163.38,24.64,24.13,23.92,23.71,23.5,23.31,23.1,22.92,22.54,N/A,N/A +2013,7,10,14,30,94570,93480,92440,61.01,0,5.72,7.2,7.59,7.8100000000000005,7.94,8.040000000000001,8.1,8.14,8.19,160.47,160.67000000000002,160.8,160.89000000000001,160.98,161.05,161.13,161.21,161.37,25.96,25.310000000000002,25.07,24.830000000000002,24.61,24.41,24.2,24.01,23.61,N/A,N/A +2013,7,10,15,30,94530,93450,92410,47.97,0,6.2,7.7700000000000005,8.21,8.45,8.620000000000001,8.73,8.8,8.86,8.93,166.04,166.21,166.29,166.35,166.4,166.44,166.48,166.51,166.59,27.54,26.8,26.53,26.28,26.05,25.830000000000002,25.62,25.42,25.01,N/A,N/A +2013,7,10,16,30,94520,93450,92410,41.53,0,5.11,6.3500000000000005,6.7,6.890000000000001,7.0200000000000005,7.11,7.17,7.22,7.28,162.14000000000001,162.42000000000002,162.53,162.61,162.68,162.75,162.82,162.88,163,28.91,28.150000000000002,27.86,27.6,27.36,27.14,26.92,26.71,26.310000000000002,N/A,N/A +2013,7,10,17,30,94480,93420,92380,38.03,0,5.22,6.49,6.84,7.03,7.16,7.25,7.32,7.37,7.44,164.28,164.26,164.23,164.19,164.15,164.11,164.09,164.06,164.01,30.14,29.35,29.05,28.78,28.54,28.310000000000002,28.080000000000002,27.88,27.46,N/A,N/A +2013,7,10,18,30,94420,93360,92330,35.44,0,5.03,6.23,6.57,6.75,6.88,6.97,7.04,7.09,7.16,160.64000000000001,160.58,160.51,160.42000000000002,160.34,160.26,160.17000000000002,160.1,159.95000000000002,31.25,30.45,30.14,29.87,29.62,29.39,29.16,28.95,28.53,N/A,N/A +2013,7,10,19,30,94370,93310,92280,32.12,0,4.92,6.07,6.390000000000001,6.5600000000000005,6.68,6.76,6.82,6.87,6.94,161.11,161.17000000000002,161.14000000000001,161.1,161.06,161.02,160.98,160.94,160.87,32.31,31.51,31.2,30.93,30.68,30.44,30.21,30,29.580000000000002,N/A,N/A +2013,7,10,20,30,94300,93240,92220,30.96,0,4.82,5.96,6.2700000000000005,6.44,6.5600000000000005,6.640000000000001,6.7,6.75,6.82,165.88,165.43,165.15,164.89000000000001,164.65,164.43,164.22,164.03,163.65,33.01,32.22,31.92,31.650000000000002,31.400000000000002,31.17,30.94,30.73,30.310000000000002,N/A,N/A +2013,7,10,21,30,94210,93160,92140,27.21,0,5.3500000000000005,6.65,7,7.2,7.34,7.44,7.51,7.57,7.65,153.17000000000002,153.28,153.36,153.42000000000002,153.47,153.51,153.54,153.58,153.65,33.7,32.92,32.64,32.37,32.13,31.900000000000002,31.67,31.46,31.04,N/A,N/A +2013,7,10,22,30,94170,93120,92100,26.05,0,5.14,6.4,6.75,6.96,7.11,7.22,7.3,7.37,7.46,149.78,150.18,150.41,150.58,150.72,150.82,150.92000000000002,151.01,151.16,34.01,33.29,33.02,32.77,32.53,32.31,32.09,31.88,31.46,N/A,N/A +2013,7,10,23,30,94110,93060,92040,23.64,0,5.64,7.07,7.45,7.63,7.76,7.8500000000000005,7.9,7.95,8,146.31,146.81,147.05,147.22,147.36,147.47,147.58,147.68,147.88,33.9,33.28,33.04,32.8,32.58,32.37,32.160000000000004,31.96,31.55,N/A,N/A +2013,7,11,0,30,94080,93020,92010,24.85,0,5.6000000000000005,7.09,7.47,7.66,7.79,7.88,7.930000000000001,7.97,8.01,149.15,149.20000000000002,149.31,149.4,149.48,149.57,149.67000000000002,149.76,149.97,33.5,33.04,32.84,32.62,32.42,32.21,32.01,31.82,31.43,N/A,N/A +2013,7,11,1,30,94070,93020,92000,28.43,0,4.88,6.86,7.41,7.7700000000000005,8.040000000000001,8.25,8.4,8.51,8.66,161.81,161.38,161.04,160.65,160.27,159.89000000000001,159.49,159.1,158.28,32.46,32.33,32.21,32.06,31.900000000000002,31.73,31.54,31.37,30.990000000000002,N/A,N/A +2013,7,11,2,30,94090,93030,92010,30.68,0,4.88,7.3,8.11,8.8,9.36,9.82,10.200000000000001,10.52,10.92,151.85,151.20000000000002,150.81,150.51,150.29,150.14000000000001,150.01,149.9,149.66,31.42,31.400000000000002,31.330000000000002,31.220000000000002,31.11,30.98,30.84,30.7,30.38,N/A,N/A +2013,7,11,3,30,94160,93100,92080,34.36,0,3.25,5.7,6.66,7.53,8.28,8.96,9.51,9.99,10.57,146.94,147.70000000000002,148.23,148.74,149.26,149.78,150.27,150.73,151.52,30.27,30.45,30.46,30.42,30.36,30.28,30.17,30.060000000000002,29.78,N/A,N/A +2013,7,11,4,30,94180,93120,92090,36.03,0,3.95,6.47,7.43,8.33,9.1,9.78,10.34,10.83,11.540000000000001,150.75,150.33,150.16,150.17000000000002,150.44,150.89000000000001,151.56,152.25,153.76,29.47,29.66,29.7,29.71,29.7,29.67,29.6,29.54,29.330000000000002,N/A,N/A +2013,7,11,5,30,94220,93150,92120,38.33,0,4.51,7.28,8.370000000000001,9.39,10.3,11.13,11.85,12.5,13.450000000000001,150.86,151.37,151.69,152.04,152.51,153.03,153.58,154.09,155.01,28.73,28.89,28.93,28.95,28.95,28.94,28.89,28.84,28.66,N/A,N/A +2013,7,11,6,30,94260,93190,92160,39.19,0,5.65,8.540000000000001,9.65,10.64,11.53,12.35,13.09,13.77,14.75,151.62,152.32,152.76,153.18,153.65,154.14000000000001,154.70000000000002,155.25,156.36,28.2,28.310000000000002,28.32,28.32,28.3,28.27,28.23,28.18,28.02,N/A,N/A +2013,7,11,7,30,94310,93240,92200,41.410000000000004,0,5.08,7.75,8.72,9.620000000000001,10.44,11.21,11.94,12.63,13.84,153.23,153.78,154.13,154.41,154.72,155.04,155.43,155.81,156.68,27.59,27.64,27.62,27.580000000000002,27.54,27.490000000000002,27.44,27.39,27.26,N/A,N/A +2013,7,11,8,30,94320,93250,92210,45.17,0,4.19,6.84,7.92,8.91,9.81,10.68,11.47,12.21,13.370000000000001,149.27,151.06,152.09,152.91,153.73,154.55,155.37,156.14000000000001,157.58,26.66,26.830000000000002,26.87,26.900000000000002,26.92,26.94,26.93,26.92,26.84,N/A,N/A +2013,7,11,9,30,94310,93240,92190,49.03,0,4.14,6.69,7.68,8.61,9.47,10.28,11.06,11.8,13.1,149.15,150.89000000000001,151.91,152.76,153.65,154.53,155.6,156.64000000000001,159.3,25.830000000000002,25.92,25.91,25.88,25.830000000000002,25.78,25.7,25.64,25.5,N/A,N/A +2013,7,11,10,30,94300,93220,92170,54.31,0,4.18,6.63,7.61,8.58,9.51,10.39,11.24,12.02,13.120000000000001,150.51,153.74,155.53,157.02,158.33,159.53,160.76,161.94,164.56,24.93,24.97,24.95,24.93,24.92,24.91,24.92,24.93,25.04,N/A,N/A +2013,7,11,11,30,94320,93240,92190,60.49,0,3.84,6.17,7.11,8.05,8.9,9.69,10.48,11.22,12.55,145.33,150.48,153.49,155.91,157.92000000000002,159.67000000000002,161.37,162.98,166.25,24.28,24.35,24.34,24.32,24.28,24.25,24.21,24.17,24.07,N/A,N/A +2013,7,11,12,30,94310,93220,92180,65.92,0,4.58,6.62,7.38,8.08,8.73,9.34,9.950000000000001,10.53,11.61,145.87,149.31,151.42000000000002,153.35,155.13,156.78,158.38,159.87,162.71,24.080000000000002,23.91,23.81,23.69,23.580000000000002,23.47,23.36,23.26,23.07,N/A,N/A +2013,7,11,13,30,94310,93230,92180,62.56,0,5.62,7.1000000000000005,7.48,7.71,7.87,7.98,8.07,8.15,8.39,160.88,161.38,161.67000000000002,161.92000000000002,162.18,162.42000000000002,162.72,163.01,163.86,25.13,24.650000000000002,24.45,24.25,24.05,23.87,23.68,23.51,23.17,N/A,N/A +2013,7,11,14,30,94320,93250,92200,54.480000000000004,0,4.9,6.13,6.46,6.640000000000001,6.75,6.82,6.8500000000000005,6.88,6.890000000000001,162.34,162.74,162.95000000000002,163.11,163.26,163.38,163.51,163.64000000000001,163.92000000000002,26.560000000000002,25.95,25.72,25.490000000000002,25.28,25.080000000000002,24.88,24.7,24.32,N/A,N/A +2013,7,11,15,30,94320,93240,92200,46.53,0,4.57,5.68,5.99,6.16,6.2700000000000005,6.34,6.38,6.41,6.43,168.43,168.56,168.62,168.67000000000002,168.72,168.75,168.78,168.82,168.89000000000001,28.02,27.330000000000002,27.060000000000002,26.810000000000002,26.59,26.38,26.16,25.97,25.580000000000002,N/A,N/A +2013,7,11,16,30,94300,93230,92200,38.76,0,4.3500000000000005,5.38,5.66,5.8100000000000005,5.91,5.98,6.0200000000000005,6.05,6.08,163.17000000000002,163.54,163.76,163.92000000000002,164.05,164.16,164.26,164.36,164.55,29.66,28.93,28.650000000000002,28.39,28.150000000000002,27.93,27.72,27.52,27.11,N/A,N/A +2013,7,11,17,30,94260,93190,92160,34.11,0,3.8200000000000003,4.71,4.95,5.07,5.16,5.22,5.26,5.29,5.33,155.41,155.72,155.86,155.93,155.98,156.02,156.05,156.08,156.11,31.11,30.38,30.080000000000002,29.810000000000002,29.580000000000002,29.35,29.13,28.92,28.51,N/A,N/A +2013,7,11,18,30,94190,93130,92110,31.970000000000002,0,3.09,3.77,3.96,4.07,4.14,4.19,4.23,4.26,4.3100000000000005,145.29,145.57,145.73,145.83,145.89000000000001,145.92000000000002,145.96,145.98,146.02,32.160000000000004,31.46,31.16,30.89,30.650000000000002,30.42,30.2,29.990000000000002,29.57,N/A,N/A +2013,7,11,19,30,94150,93100,92080,29.72,0,3.83,4.69,4.93,5.0600000000000005,5.15,5.21,5.26,5.29,5.34,135.59,136.17000000000002,136.49,136.69,136.84,136.97,137.08,137.16,137.31,33.14,32.4,32.1,31.82,31.580000000000002,31.35,31.12,30.91,30.490000000000002,N/A,N/A +2013,7,11,20,30,94080,93030,92010,29.02,0,3.99,4.9,5.14,5.28,5.37,5.44,5.49,5.53,5.58,142.5,142.27,142.14000000000001,141.97,141.82,141.67000000000002,141.53,141.4,141.13,33.77,33.02,32.72,32.45,32.21,31.98,31.75,31.54,31.12,N/A,N/A +2013,7,11,21,30,94020,92980,91960,27.51,0,4.05,4.97,5.22,5.3500000000000005,5.44,5.5,5.55,5.58,5.63,134.79,135.12,135.24,135.28,135.3,135.3,135.3,135.28,135.25,34.230000000000004,33.5,33.21,32.95,32.7,32.480000000000004,32.26,32.05,31.63,N/A,N/A +2013,7,11,22,30,93970,92920,91910,27.580000000000002,0,4.5,5.57,5.86,6.0200000000000005,6.13,6.21,6.2700000000000005,6.3100000000000005,6.38,137.16,137.92000000000002,138.3,138.56,138.76,138.92000000000002,139.05,139.16,139.36,34.37,33.660000000000004,33.39,33.14,32.910000000000004,32.68,32.46,32.26,31.84,N/A,N/A +2013,7,11,23,30,93930,92880,91870,28.25,0,4.32,5.38,5.68,5.8500000000000005,5.97,6.0600000000000005,6.13,6.18,6.26,143.99,144.02,144,143.92000000000002,143.84,143.75,143.66,143.56,143.38,34.32,33.69,33.45,33.2,32.980000000000004,32.76,32.55,32.34,31.94,N/A,N/A +2013,7,12,0,30,93910,92860,91850,29.73,0,4.5600000000000005,5.75,6.07,6.2700000000000005,6.42,6.5200000000000005,6.6000000000000005,6.66,6.75,151.3,150.69,150.38,150.07,149.79,149.53,149.28,149.05,148.61,33.92,33.43,33.22,32.99,32.79,32.58,32.37,32.18,31.78,N/A,N/A +2013,7,12,1,30,93880,92830,91820,32.07,0,4.5200000000000005,6.21,6.7,7.04,7.3,7.5,7.65,7.7700000000000005,7.92,143.43,143.42000000000002,143.47,143.58,143.72,143.88,144.07,144.25,144.62,33.07,32.84,32.69,32.5,32.32,32.14,31.94,31.76,31.37,N/A,N/A +2013,7,12,2,30,93900,92850,91830,35.64,0,3.7800000000000002,5.79,6.48,7.12,7.68,8.17,8.59,8.96,9.450000000000001,156.46,155.43,154.94,154.59,154.41,154.36,154.41,154.49,154.64000000000001,31.990000000000002,31.86,31.75,31.61,31.46,31.32,31.150000000000002,31.01,30.67,N/A,N/A +2013,7,12,3,30,93960,92910,91890,36.42,0,4.69,6.78,7.48,8.07,8.540000000000001,8.950000000000001,9.3,9.6,10.03,174.3,174.23,174.07,173.79,173.4,172.93,172.32,171.68,170.22,31.330000000000002,31.25,31.150000000000002,31.03,30.89,30.75,30.59,30.43,30.09,N/A,N/A +2013,7,12,4,30,93970,92910,91890,37.36,0,4.83,7.16,7.96,8.65,9.27,9.84,10.36,10.83,11.63,162.33,162.21,162.1,161.94,161.78,161.62,161.49,161.38,161.33,30.46,30.41,30.330000000000002,30.22,30.1,29.96,29.810000000000002,29.66,29.330000000000002,N/A,N/A +2013,7,12,5,30,94010,92950,91930,39.800000000000004,0,4.7700000000000005,7.140000000000001,7.95,8.67,9.290000000000001,9.86,10.38,10.85,11.65,157.73,157.66,157.6,157.52,157.53,157.6,157.87,158.18,159.36,29.650000000000002,29.62,29.560000000000002,29.48,29.38,29.28,29.16,29.060000000000002,28.810000000000002,N/A,N/A +2013,7,12,6,30,94050,92990,91960,41.54,0,4.62,7.04,7.95,8.790000000000001,9.540000000000001,10.23,10.86,11.43,12.33,153.42000000000002,154.03,154.37,154.65,154.91,155.16,155.42000000000002,155.66,156.19,28.87,28.87,28.830000000000002,28.76,28.68,28.6,28.5,28.400000000000002,28.17,N/A,N/A +2013,7,12,7,30,94070,93000,91970,44.61,0,4.26,6.74,7.7,8.6,9.42,10.18,10.9,11.57,12.63,150.14000000000001,150.75,151.12,151.46,151.89000000000001,152.37,152.97,153.57,154.96,28.02,28.05,28.02,27.97,27.91,27.86,27.79,27.72,27.560000000000002,N/A,N/A +2013,7,12,8,30,94070,93000,91970,48.43,0,3.79,6.2,7.17,8.1,8.94,9.74,10.48,11.17,12.290000000000001,150.43,151.76,152.46,152.96,153.45000000000002,153.93,154.43,154.92000000000002,155.9,27.27,27.35,27.35,27.330000000000002,27.3,27.26,27.21,27.16,27.02,N/A,N/A +2013,7,12,9,30,94050,92980,91950,51.660000000000004,0,4.19,6.63,7.58,8.46,9.28,10.05,10.8,11.5,12.76,145.33,146.38,146.93,147.24,147.59,147.95000000000002,148.52,149.12,151.02,26.7,26.72,26.68,26.62,26.53,26.43,26.3,26.18,25.89,N/A,N/A +2013,7,12,10,30,94070,93000,91960,56.36,0,4.32,6.54,7.38,8.16,8.89,9.59,10.3,10.98,12.32,144.08,146.23,147.64000000000001,149,150.42000000000002,151.87,153.53,155.15,158.77,25.75,25.69,25.62,25.52,25.42,25.32,25.21,25.11,24.89,N/A,N/A +2013,7,12,11,30,94100,93020,91980,63.07,0,4.13,6.21,6.98,7.66,8.290000000000001,8.88,9.47,10.03,11.11,141.63,144.36,146.12,147.72,149.26,150.76,152.35,153.86,157.07,24.93,24.87,24.8,24.71,24.61,24.5,24.38,24.28,24.04,N/A,N/A +2013,7,12,12,30,94090,93010,91970,66.69,0,4.53,6.36,7,7.5600000000000005,8.07,8.540000000000001,9.02,9.46,10.34,143.76,146.06,147.5,148.84,150.19,151.49,152.94,154.34,157.44,24.59,24.37,24.240000000000002,24.11,23.97,23.85,23.72,23.61,23.39,N/A,N/A +2013,7,12,13,30,94110,93030,91990,63.64,0,5.0600000000000005,6.4,6.74,6.94,7.07,7.16,7.22,7.28,7.4,152.36,153.22,153.69,154.1,154.53,154.94,155.45000000000002,155.94,157.19,25.59,25.09,24.88,24.67,24.47,24.29,24.09,23.92,23.55,N/A,N/A +2013,7,12,14,30,94150,93070,92030,57.53,0,4.79,5.99,6.32,6.5,6.62,6.69,6.74,6.7700000000000005,6.8,151.07,151.72,152.04,152.28,152.48,152.65,152.84,152.99,153.35,27.12,26.490000000000002,26.240000000000002,26.01,25.8,25.59,25.39,25.2,24.810000000000002,N/A,N/A +2013,7,12,15,30,94180,93110,92070,51.61,0,4.54,5.66,5.97,6.15,6.26,6.34,6.4,6.44,6.49,159.02,159.1,159.15,159.15,159.15,159.14000000000001,159.11,159.09,159.05,28.55,27.84,27.57,27.32,27.09,26.88,26.66,26.46,26.060000000000002,N/A,N/A +2013,7,12,16,30,94160,93100,92070,46.67,0,4.11,5.09,5.36,5.5,5.6000000000000005,5.67,5.72,5.76,5.8100000000000005,151.51,151.94,152.16,152.31,152.42000000000002,152.52,152.62,152.69,152.84,29.93,29.2,28.91,28.650000000000002,28.41,28.19,27.97,27.77,27.36,N/A,N/A +2013,7,12,17,30,94130,93070,92040,41.6,0,4.03,4.96,5.22,5.36,5.45,5.5200000000000005,5.57,5.61,5.66,146.14000000000001,146.73,147.07,147.31,147.51,147.67000000000002,147.82,147.96,148.20000000000002,31.18,30.43,30.13,29.86,29.62,29.39,29.16,28.96,28.54,N/A,N/A +2013,7,12,18,30,94070,93020,92000,37.82,0,4.09,5.0200000000000005,5.26,5.4,5.49,5.55,5.6000000000000005,5.64,5.69,136.67000000000002,137.53,137.98,138.29,138.55,138.77,138.96,139.14000000000001,139.45000000000002,32.22,31.45,31.150000000000002,30.88,30.63,30.400000000000002,30.17,29.96,29.54,N/A,N/A +2013,7,12,19,30,94050,93000,91980,34.5,0,4.11,5.07,5.33,5.47,5.57,5.64,5.69,5.73,5.78,138.94,139.52,139.85,140.06,140.23,140.37,140.49,140.6,140.79,33.14,32.37,32.06,31.79,31.54,31.310000000000002,31.080000000000002,30.87,30.45,N/A,N/A +2013,7,12,20,30,93980,92930,91920,31.48,0,4.28,5.28,5.55,5.71,5.8100000000000005,5.89,5.95,6,6.0600000000000005,139.94,139.84,139.72,139.56,139.41,139.27,139.14000000000001,139.01,138.77,33.86,33.09,32.78,32.51,32.27,32.04,31.810000000000002,31.6,31.17,N/A,N/A +2013,7,12,21,30,93930,92880,91870,27.85,0,4.99,6.17,6.5,6.68,6.8100000000000005,6.890000000000001,6.96,7.0200000000000005,7.09,133.08,134.03,134.5,134.85,135.12,135.35,135.55,135.74,136.06,34.46,33.69,33.4,33.13,32.89,32.660000000000004,32.43,32.22,31.8,N/A,N/A +2013,7,12,22,30,93900,92860,91850,24.95,0,5.48,6.83,7.21,7.42,7.58,7.68,7.7700000000000005,7.83,7.930000000000001,144.4,144.34,144.25,144.12,143.99,143.84,143.71,143.58,143.31,34.730000000000004,34.01,33.730000000000004,33.47,33.24,33.01,32.79,32.58,32.160000000000004,N/A,N/A +2013,7,12,23,30,93890,92850,91830,20.830000000000002,0,5.8100000000000005,7.29,7.69,7.9,8.040000000000001,8.13,8.2,8.25,8.31,136.71,137.07,137.28,137.43,137.56,137.68,137.8,137.9,138.12,34.7,34.07,33.83,33.59,33.37,33.160000000000004,32.95,32.74,32.34,N/A,N/A +2013,7,13,0,30,93900,92850,91840,22.080000000000002,0,6.26,8.02,8.47,8.73,8.91,9.040000000000001,9.13,9.200000000000001,9.28,140.86,141.18,141.33,141.44,141.53,141.61,141.70000000000002,141.78,141.91,34.13,33.660000000000004,33.46,33.24,33.03,32.83,32.63,32.43,32.03,N/A,N/A +2013,7,13,1,30,93910,92860,91840,23.16,0,5.01,7.2,7.87,8.38,8.8,9.13,9.39,9.61,9.92,146.85,146.77,146.73,146.70000000000002,146.71,146.75,146.81,146.88,147.02,32.99,32.85,32.74,32.58,32.42,32.24,32.06,31.88,31.5,N/A,N/A +2013,7,13,2,30,93960,92910,91890,23.7,0,4.97,7.3500000000000005,8.16,8.85,9.43,9.94,10.370000000000001,10.76,11.32,158.87,158.82,158.78,158.74,158.71,158.70000000000002,158.68,158.66,158.63,31.77,31.77,31.720000000000002,31.63,31.53,31.41,31.28,31.150000000000002,30.85,N/A,N/A +2013,7,13,3,30,94020,92960,91940,24.59,0,5.3100000000000005,7.930000000000001,8.85,9.64,10.32,10.92,11.42,11.870000000000001,12.52,159.24,159.25,159.22,159.18,159.17000000000002,159.20000000000002,159.25,159.31,159.48,30.79,30.84,30.810000000000002,30.76,30.69,30.61,30.51,30.42,30.16,N/A,N/A +2013,7,13,4,30,94020,92960,91930,25.53,0,5.11,7.83,8.870000000000001,9.82,10.68,11.48,12.21,12.88,13.88,154.13,154.26,154.33,154.38,154.46,154.57,154.70000000000002,154.83,155.13,29.830000000000002,29.92,29.91,29.88,29.830000000000002,29.77,29.69,29.62,29.42,N/A,N/A +2013,7,13,5,30,94060,92990,91960,26.16,0,4.84,7.6000000000000005,8.620000000000001,9.57,10.43,11.22,11.94,12.59,13.57,155.44,156.21,156.54,156.67000000000002,156.75,156.79,156.85,156.91,157.18,28.990000000000002,29.16,29.2,29.21,29.2,29.19,29.16,29.12,28.97,N/A,N/A +2013,7,13,6,30,94070,93000,91970,27.51,0,4.46,7.390000000000001,8.56,9.63,10.61,11.5,12.24,12.89,13.67,152.23,153.76,154.46,154.85,155.17000000000002,155.46,155.79,156.12,156.89000000000001,28,28.330000000000002,28.44,28.52,28.57,28.6,28.59,28.580000000000002,28.44,N/A,N/A +2013,7,13,7,30,94130,93060,92030,30.07,0,4.33,7.21,8.3,9.3,10.17,10.94,11.59,12.18,12.94,157.39000000000001,158.36,158.65,158.49,158.45000000000002,158.47,158.71,158.98,159.95000000000002,27.63,28,28.1,28.16,28.19,28.19,28.18,28.16,28.060000000000002,N/A,N/A +2013,7,13,8,30,94180,93100,92060,34.07,0,3.25,5.95,7.05,8.09,9.03,9.89,10.67,11.39,12.43,144.25,150.72,153.87,155.54,156.96,158.21,159.69,161.13,163.93,26.48,27,27.16,27.27,27.310000000000002,27.32,27.29,27.27,27.16,N/A,N/A +2013,7,13,9,30,94190,93110,92070,37.97,0,2.86,5.15,6.07,7.1000000000000005,8.13,9.17,10.18,11.13,12.56,134.81,143.37,148.31,152.42000000000002,155.85,158.89000000000001,161.47,163.86,167.29,25.62,26.07,26.21,26.330000000000002,26.41,26.48,26.52,26.54,26.5,N/A,N/A +2013,7,13,10,30,94190,93110,92060,40.19,0,3.73,6.2,7.15,8.05,8.89,9.66,10.36,10.99,11.89,142.26,147.55,150.53,153,155.33,157.53,159.83,162.01,166.23,25.34,25.62,25.69,25.740000000000002,25.76,25.76,25.740000000000002,25.71,25.59,N/A,N/A +2013,7,13,11,30,94210,93130,92090,45.5,0,3.47,5.58,6.37,7.13,7.86,8.57,9.26,9.9,10.83,138.19,142.22,144.88,147.56,150.48,153.46,156.58,159.54,164.82,24.16,24.34,24.39,24.42,24.46,24.490000000000002,24.53,24.560000000000002,24.61,N/A,N/A +2013,7,13,12,30,94240,93160,92110,50.42,0,2.91,4.54,5.18,5.78,6.3500000000000005,6.890000000000001,7.42,7.91,8.73,133.55,137.93,140.55,142.85,145.32,147.83,150.8,153.70000000000002,159.94,23.91,23.830000000000002,23.78,23.71,23.66,23.61,23.580000000000002,23.55,23.53,N/A,N/A +2013,7,13,13,30,94280,93200,92150,49.56,0,3.8000000000000003,4.73,4.98,5.14,5.2700000000000005,5.38,5.58,5.79,6.42,140.95000000000002,143.06,144.34,145.56,146.89000000000001,148.20000000000002,150.07,151.91,156.08,25.37,24.91,24.72,24.53,24.34,24.18,24,23.85,23.56,N/A,N/A +2013,7,13,14,30,94300,93220,92180,49.76,0,3.6,4.51,4.7700000000000005,4.91,5.01,5.08,5.12,5.16,5.22,163,163.70000000000002,164.01,164.28,164.54,164.76,165.01,165.23,165.77,26.990000000000002,26.39,26.16,25.93,25.72,25.53,25.330000000000002,25.14,24.76,N/A,N/A +2013,7,13,15,30,94290,93230,92190,45.160000000000004,0,3.7,4.61,4.8500000000000005,4.99,5.08,5.15,5.19,5.23,5.28,159.32,159.78,160.02,160.17000000000002,160.3,160.41,160.49,160.57,160.73,28.740000000000002,28.07,27.810000000000002,27.57,27.35,27.14,26.93,26.740000000000002,26.35,N/A,N/A +2013,7,13,16,30,94280,93210,92180,38.67,0,4.15,5.15,5.41,5.55,5.65,5.72,5.7700000000000005,5.8100000000000005,5.87,152.3,152.66,152.8,152.86,152.9,152.92000000000002,152.93,152.93,152.93,30.29,29.560000000000002,29.28,29.02,28.79,28.57,28.35,28.150000000000002,27.740000000000002,N/A,N/A +2013,7,13,17,30,94240,93180,92150,34.86,0,4.23,5.22,5.5,5.65,5.76,5.84,5.9,5.95,6.01,139.32,139.82,140.09,140.26,140.39000000000001,140.49,140.58,140.66,140.78,31.52,30.77,30.47,30.2,29.96,29.73,29.51,29.3,28.88,N/A,N/A +2013,7,13,18,30,94200,93140,92120,31.970000000000002,0,4.2700000000000005,5.26,5.53,5.68,5.78,5.86,5.91,5.96,6.03,141.36,141.68,141.84,141.9,141.95000000000002,141.97,141.98,141.98,141.97,32.480000000000004,31.71,31.400000000000002,31.13,30.88,30.650000000000002,30.43,30.22,29.79,N/A,N/A +2013,7,13,19,30,94150,93100,92080,28.22,0,4.29,5.28,5.55,5.71,5.82,5.9,5.96,6,6.07,139.20000000000002,139.57,139.77,139.9,139.99,140.06,140.12,140.17000000000002,140.24,33.46,32.68,32.38,32.1,31.85,31.62,31.39,31.18,30.75,N/A,N/A +2013,7,13,20,30,94090,93040,92020,26.69,0,4.3500000000000005,5.3500000000000005,5.63,5.78,5.89,5.97,6.03,6.08,6.140000000000001,138.71,139.08,139.22,139.27,139.29,139.29,139.28,139.26,139.20000000000002,34.08,33.31,33.01,32.730000000000004,32.49,32.26,32.03,31.810000000000002,31.39,N/A,N/A +2013,7,13,21,30,94030,92980,91970,24.990000000000002,0,4.44,5.48,5.76,5.92,6.03,6.11,6.18,6.23,6.3,156.28,155.29,154.71,154.17000000000002,153.69,153.24,152.8,152.4,151.63,34.57,33.82,33.54,33.27,33.03,32.8,32.57,32.36,31.94,N/A,N/A +2013,7,13,22,30,93970,92930,91910,24.330000000000002,0,5.2,6.38,6.67,6.8100000000000005,6.890000000000001,6.95,6.99,7.0200000000000005,7.04,165.63,164.46,163.78,163.15,162.6,162.09,161.59,161.11,160.21,34.65,33.92,33.660000000000004,33.4,33.17,32.95,32.74,32.53,32.12,N/A,N/A +2013,7,13,23,30,93920,92880,91860,23.14,0,5.48,6.8100000000000005,7.140000000000001,7.3,7.41,7.48,7.5200000000000005,7.5600000000000005,7.6000000000000005,160.6,159.83,159.39000000000001,158.96,158.56,158.18,157.81,157.48,156.8,34.65,34.02,33.78,33.54,33.32,33.11,32.89,32.7,32.29,N/A,N/A +2013,7,14,0,30,93920,92870,91860,23.35,0,4.74,5.95,6.26,6.45,6.59,6.69,6.7700000000000005,6.83,6.92,157.96,156.66,156.01,155.39000000000001,154.86,154.38,153.94,153.54,152.81,34.47,34,33.79,33.58,33.37,33.17,32.96,32.77,32.37,N/A,N/A +2013,7,14,1,30,93900,92850,91830,25.02,0,4.3100000000000005,6.140000000000001,6.66,7.05,7.3500000000000005,7.6000000000000005,7.8,7.98,8.23,165.87,165.84,165.77,165.59,165.39000000000001,165.18,164.98,164.78,164.43,33.4,33.26,33.14,32.980000000000004,32.81,32.63,32.45,32.26,31.88,N/A,N/A +2013,7,14,2,30,93920,92870,91850,26.97,0,4.33,6.390000000000001,7.03,7.53,7.92,8.26,8.52,8.75,9.07,182.57,182.17000000000002,181.79,181.32,180.76,180.13,179.41,178.69,177.17000000000002,32.28,32.27,32.2,32.09,31.96,31.82,31.66,31.51,31.16,N/A,N/A +2013,7,14,3,30,93960,92900,91880,29.03,0,3.98,6.25,7.07,7.82,8.5,9.120000000000001,9.700000000000001,10.25,11.09,174.69,174.9,174.85,174.58,174.17000000000002,173.67000000000002,173.11,172.56,171.81,31.34,31.43,31.42,31.36,31.28,31.18,31.05,30.93,30.62,N/A,N/A +2013,7,14,4,30,93970,92910,91880,30.75,0,4.5,7.03,7.97,8.84,9.6,10.290000000000001,10.88,11.41,12.25,174.27,175.42000000000002,175.99,176.24,176.26,176.14000000000001,175.72,175.24,174,30.6,30.72,30.73,30.71,30.64,30.57,30.44,30.310000000000002,29.97,N/A,N/A +2013,7,14,5,30,93990,92930,91900,33.43,0,3.72,6.13,7.04,7.95,8.76,9.52,10.21,10.85,11.93,159.49,165.01,167.9,169.94,171.3,172.23,172.72,173.06,173.25,29.490000000000002,29.69,29.73,29.740000000000002,29.72,29.67,29.6,29.51,29.27,N/A,N/A +2013,7,14,6,30,94030,92970,91940,36.550000000000004,0,3.52,6.03,7.03,8.05,8.950000000000001,9.76,10.46,11.1,12.030000000000001,166.71,173.63,177.21,179.29,180.51,181.16,181.36,181.41,181.08,28.78,29.07,29.14,29.19,29.2,29.2,29.16,29.11,28.94,N/A,N/A +2013,7,14,7,30,94020,92960,91930,40.57,0,2.61,5.03,5.99,7.07,8.06,9,9.790000000000001,10.51,11.44,153.58,166.37,173.06,177.25,179.9,181.54,182.27,182.76,182.85,27.72,28.17,28.28,28.39,28.46,28.51,28.52,28.52,28.43,N/A,N/A +2013,7,14,8,30,94020,92950,91920,42.11,0,2.68,5.1000000000000005,6.01,6.97,7.83,8.620000000000001,9.290000000000001,9.9,10.68,161.48,172.81,178.65,182.5,184.97,186.61,187.43,188.02,188.14000000000001,27.36,27.740000000000002,27.810000000000002,27.86,27.900000000000002,27.92,27.93,27.93,27.86,N/A,N/A +2013,7,14,9,30,94050,92970,91940,46.68,0,1.3900000000000001,2.65,3.14,3.88,4.65,5.47,6.25,7.0200000000000005,8.290000000000001,120.94,149.70000000000002,166.07,178.53,186.1,190.25,192.36,193.89000000000001,194.56,26.09,26.6,26.67,26.72,26.76,26.8,26.830000000000002,26.86,26.89,N/A,N/A +2013,7,14,10,30,94030,92960,91920,49.65,0,1.6500000000000001,2.21,2.35,2.95,3.5700000000000003,4.21,4.82,5.44,6.51,98.88,131.53,150.57,174.31,185.48,188.98,190.94,192.44,193.43,25.32,25.84,25.95,26.13,26.22,26.25,26.28,26.3,26.32,N/A,N/A +2013,7,14,11,30,94030,92960,91920,50.730000000000004,0,1.45,2.19,2.3000000000000003,2.58,2.9,3.24,3.59,3.93,4.59,128.09,154.18,167.67000000000002,179.36,186.99,192.32,195.4,197.8,199.49,24.69,25.42,25.59,25.7,25.75,25.77,25.76,25.73,25.650000000000002,N/A,N/A +2013,7,14,12,30,94040,92960,91920,51.86,0,1.29,2.12,2.22,2.31,2.46,2.63,2.84,3.06,3.54,130.68,145.61,155.9,167.36,176.17000000000002,183.62,188.92000000000002,193.54,198.87,24.07,24.64,24.87,25.060000000000002,25.17,25.240000000000002,25.25,25.26,25.21,N/A,N/A +2013,7,14,13,30,94060,92980,91940,43.32,0,0.84,0.9400000000000001,0.9500000000000001,0.9500000000000001,0.98,1.03,1.16,1.3,2.05,120.03,130.47,137.45000000000002,145.12,153.79,162.98,173.67000000000002,184.43,194.03,26.02,25.650000000000002,25.48,25.310000000000002,25.150000000000002,25,24.85,24.73,24.72,N/A,N/A +2013,7,14,14,30,94050,92980,91950,38.11,0,1.05,1.32,1.41,1.49,1.57,1.6400000000000001,1.72,1.79,1.97,217.34,211.88,208.84,206.62,204.86,203.4,202.22,201.18,199.78,28.26,27.78,27.57,27.36,27.17,26.990000000000002,26.8,26.62,26.26,N/A,N/A +2013,7,14,15,30,94030,92970,91940,33.25,0,2.04,2.52,2.67,2.7600000000000002,2.83,2.89,2.93,2.98,3.0500000000000003,210.64000000000001,210.22,210.08,210.05,210.08,210.15,210.25,210.35,210.6,30.92,30.330000000000002,30.080000000000002,29.85,29.63,29.43,29.22,29.03,28.64,N/A,N/A +2013,7,14,16,30,94000,92950,91930,27.93,0,2.27,2.73,2.85,2.91,2.95,2.98,3,3.02,3.04,211.33,210.71,210.45000000000002,210.32,210.25,210.20000000000002,210.17000000000002,210.15,210.15,32.71,32.08,31.810000000000002,31.560000000000002,31.330000000000002,31.11,30.900000000000002,30.7,30.3,N/A,N/A +2013,7,14,17,30,93940,92890,91880,24.84,0,2.9,3.48,3.62,3.69,3.74,3.7600000000000002,3.77,3.7800000000000002,3.7800000000000002,185.77,185.47,185.37,185.31,185.27,185.24,185.21,185.19,185.14000000000001,34.02,33.33,33.05,32.78,32.54,32.32,32.1,31.89,31.48,N/A,N/A +2013,7,14,18,30,93890,92850,91840,22.1,0,3.29,3.95,4.11,4.19,4.25,4.28,4.3100000000000005,4.32,4.33,165.81,165.61,165.48,165.32,165.18,165.04,164.91,164.79,164.53,35,34.28,33.980000000000004,33.71,33.47,33.24,33.01,32.8,32.38,N/A,N/A +2013,7,14,19,30,93850,92810,91800,20.44,0,3.16,3.7600000000000002,3.9,3.94,3.97,3.99,4.01,4.0200000000000005,4.03,167.35,167.79,167.88,167.71,167.51,167.29,167.05,166.82,166.35,35.1,34.410000000000004,34.13,33.89,33.660000000000004,33.45,33.24,33.04,32.64,N/A,N/A +2013,7,14,20,30,93770,92730,91720,19.62,0,3.3200000000000003,4.07,4.28,4.4,4.48,4.54,4.58,4.62,4.67,158.19,159.14000000000001,159.68,160.19,160.69,161.20000000000002,161.70000000000002,162.17000000000002,163.1,35.89,35.19,34.9,34.62,34.38,34.15,33.93,33.71,33.29,N/A,N/A +2013,7,14,21,30,93700,92660,91650,18.98,0,3.67,4.36,4.54,4.62,4.67,4.71,4.73,4.75,4.7700000000000005,154.14000000000001,155.81,156.79,157.75,158.52,159.19,159.77,160.3,161.19,36.03,35.33,35.050000000000004,34.78,34.54,34.31,34.09,33.88,33.46,N/A,N/A +2013,7,14,22,30,93650,92610,91610,18.97,0,4.23,5.1000000000000005,5.3100000000000005,5.42,5.49,5.54,5.5600000000000005,5.58,5.61,192.58,191.98000000000002,191.13,190.23,189.47,188.78,188.13,187.54,186.48,36.22,35.54,35.28,35.02,34.79,34.56,34.34,34.14,33.72,N/A,N/A +2013,7,14,23,30,93600,92570,91560,19.09,0,3.47,4.25,4.48,4.62,4.72,4.78,4.83,4.88,4.94,194.52,193.92000000000002,193.43,192.85,192.34,191.85,191.39000000000001,190.97,190.13,36.02,35.43,35.2,34.95,34.730000000000004,34.52,34.31,34.11,33.7,N/A,N/A +2013,7,15,0,30,93580,92540,91530,20.09,0,5.64,7.05,7.41,7.58,7.69,7.75,7.79,7.8100000000000005,7.83,158.33,158.78,159.12,159.54,159.92000000000002,160.3,160.67000000000002,161.02,161.69,35.480000000000004,35.01,34.800000000000004,34.58,34.38,34.17,33.97,33.77,33.38,N/A,N/A +2013,7,15,1,30,93580,92540,91530,22.18,0,5.3500000000000005,7.3,7.9,8.3,8.620000000000001,8.85,9.040000000000001,9.18,9.38,169.86,169.64000000000001,169.66,169.78,169.94,170.18,170.46,170.77,171.48,34.4,34.24,34.12,33.95,33.79,33.61,33.43,33.26,32.89,N/A,N/A +2013,7,15,2,30,93600,92550,91540,24.490000000000002,0,6.5,8.870000000000001,9.56,10.07,10.47,10.8,11.07,11.3,11.65,175.28,175.23,175.22,175.16,175.08,174.97,174.84,174.69,174.41,33.480000000000004,33.36,33.26,33.11,32.97,32.82,32.660000000000004,32.5,32.160000000000004,N/A,N/A +2013,7,15,3,30,93620,92570,91550,26.14,0,6.79,9.36,10.16,10.82,11.38,11.88,12.34,12.76,13.55,160.26,160.26,160.28,160.34,160.44,160.57,160.74,160.92000000000002,161.41,32.31,32.18,32.07,31.93,31.78,31.62,31.46,31.3,30.96,N/A,N/A +2013,7,15,4,30,93630,92580,91560,28.47,0,6.66,9.25,10.07,10.73,11.290000000000001,11.790000000000001,12.25,12.66,13.4,155.79,155.97,156.13,156.29,156.46,156.64000000000001,156.85,157.07,157.59,31.36,31.26,31.16,31.04,30.900000000000002,30.76,30.61,30.46,30.150000000000002,N/A,N/A +2013,7,15,5,30,93640,92580,91560,30.03,0,5.32,7.640000000000001,8.44,9.13,9.75,10.31,10.84,11.34,12.31,139.63,141.16,142.07,142.97,143.87,144.75,145.69,146.6,148.48,30.400000000000002,30.21,30.080000000000002,29.93,29.78,29.63,29.46,29.310000000000002,28.990000000000002,N/A,N/A +2013,7,15,6,30,93720,92660,91630,33.17,0,5.39,7.71,8.49,9.13,9.68,10.17,10.620000000000001,11.040000000000001,11.81,134.65,135.83,136.70000000000002,137.56,138.44,139.34,140.29,141.21,143.07,29.43,29.28,29.16,29.01,28.85,28.69,28.52,28.36,28.01,N/A,N/A +2013,7,15,7,30,93800,92740,91710,33.52,0,5.05,6.96,7.58,8.07,8.47,8.82,9.120000000000001,9.38,9.85,108.53,109.99000000000001,110.99000000000001,111.98,113.01,114.05,115.21000000000001,116.32000000000001,118.88,28.78,28.53,28.38,28.2,28.01,27.84,27.650000000000002,27.47,27.09,N/A,N/A +2013,7,15,8,30,93860,92800,91760,36.44,0,3.92,5.5200000000000005,6.08,6.54,6.93,7.26,7.55,7.8100000000000005,8.26,86.27,87.85000000000001,88.92,89.9,90.79,91.62,92.47,93.27,95.02,28.3,28.07,27.92,27.740000000000002,27.55,27.37,27.18,26.990000000000002,26.6,N/A,N/A +2013,7,15,9,30,93960,92880,91820,64.4,0,7.25,9.08,9.52,9.790000000000001,9.96,10.08,10.21,10.32,10.46,60.54,61.18,61.6,62.09,62.660000000000004,63.26,64.19,65.12,68.08,23.150000000000002,22.77,22.580000000000002,22.39,22.21,22.04,21.87,21.72,21.43,N/A,N/A +2013,7,15,10,30,93980,92890,91830,64.87,0,7.16,9.01,9.46,9.75,9.94,10.07,10.17,10.25,10.57,62.61,62.95,63.24,63.59,64.02,64.48,65.12,65.77,68.19,22.19,21.8,21.61,21.42,21.22,21.04,20.85,20.68,20.330000000000002,N/A,N/A +2013,7,15,11,30,94030,92940,91880,72.9,0,6.890000000000001,8.68,9.120000000000001,9.41,9.61,9.75,9.88,9.99,10.31,64.61,65,65.27,65.6,66.02,66.46000000000001,67.08,67.72,69.63,21.39,21,20.81,20.61,20.42,20.240000000000002,20.06,19.89,19.55,N/A,N/A +2013,7,15,12,30,94070,92980,91910,78.94,1.8,4.98,6.34,6.73,7.01,7.23,7.41,7.61,7.8100000000000005,8.35,77.86,78.05,78.19,78.39,78.69,79.02,79.5,80.02,81.99,20.900000000000002,20.51,20.330000000000002,20.14,19.95,19.77,19.59,19.42,19.09,N/A,N/A +2013,7,15,13,30,94080,92980,91920,78.05,0,4.65,5.89,6.24,6.48,6.67,6.83,7.01,7.2,7.8,98.51,98.28,98.14,98.12,98.19,98.3,98.63,99.03,100.89,21.09,20.69,20.5,20.31,20.11,19.93,19.740000000000002,19.56,19.21,N/A,N/A +2013,7,15,14,30,94120,93020,91960,77.48,0,4.3500000000000005,5.47,5.79,5.98,6.11,6.2,6.28,6.3500000000000005,6.5200000000000005,92.72,93.4,93.84,94.25,94.67,95.08,95.59,96.09,97.65,21.3,20.88,20.68,20.48,20.27,20.09,19.89,19.7,19.31,N/A,N/A +2013,7,15,15,30,94160,93070,92010,71.12,0,3.96,4.86,5.11,5.24,5.32,5.37,5.4,5.43,5.44,93.71000000000001,94.75,95.34,95.86,96.35000000000001,96.81,97.31,97.78,98.8,22.73,22.07,21.81,21.580000000000002,21.36,21.16,20.95,20.76,20.37,N/A,N/A +2013,7,15,16,30,94190,93110,92050,68.96000000000001,0,3.3200000000000003,4.05,4.24,4.33,4.39,4.42,4.44,4.45,4.45,101.53,101.98,102.19,102.34,102.48,102.62,102.77,102.91,103.25,23.52,22.91,22.67,22.44,22.22,22.02,21.81,21.62,21.22,N/A,N/A +2013,7,15,17,30,94190,93110,92060,67.48,0,3.2600000000000002,4.05,4.28,4.42,4.51,4.57,4.62,4.67,4.73,102.86,103.77,104.36,104.87,105.31,105.71000000000001,106.11,106.48,107.23,24.1,23.57,23.35,23.13,22.92,22.73,22.52,22.330000000000002,21.93,N/A,N/A +2013,7,15,18,30,94160,93080,92040,61.47,0,3.27,3.99,4.19,4.3,4.38,4.43,4.48,4.5200000000000005,4.58,104.21000000000001,105.59,106.24000000000001,106.87,107.44,107.99000000000001,108.55,109.08,110.2,25.14,24.46,24.17,23.91,23.67,23.46,23.240000000000002,23.05,22.64,N/A,N/A +2013,7,15,19,30,94130,93050,92010,54.95,0,3.65,4.32,4.47,4.53,4.5600000000000005,4.57,4.57,4.5600000000000005,4.53,71.01,71.09,71.09,71.12,71.14,71.16,71.17,71.19,71.23,26.400000000000002,25.67,25.37,25.1,24.86,24.64,24.42,24.21,23.8,N/A,N/A +2013,7,15,20,30,94220,93130,92070,76.68,0,7.99,10.14,10.76,11.120000000000001,11.370000000000001,11.55,11.67,11.77,11.91,34.38,34.59,34.69,34.85,35.04,35.25,35.51,35.75,36.35,21.400000000000002,20.96,20.77,20.56,20.37,20.19,20,19.830000000000002,19.47,N/A,N/A +2013,7,15,21,30,94220,93120,92060,73.34,1.8,8.43,10.65,11.22,11.55,11.76,11.89,11.96,12.01,12.02,51.07,51.1,51.22,51.38,51.56,51.74,51.94,52.14,52.59,21.6,21.05,20.830000000000002,20.6,20.39,20.2,19.990000000000002,19.8,19.42,N/A,N/A +2013,7,15,22,30,94240,93140,92080,74.21000000000001,1.8,7.34,9.21,9.71,9.99,10.17,10.28,10.33,10.36,10.370000000000001,51.43,51.36,51.38,51.47,51.6,51.730000000000004,51.9,52.06,52.480000000000004,21.04,20.5,20.28,20.07,19.87,19.68,19.48,19.3,18.94,N/A,N/A +2013,7,15,23,30,94230,93130,92070,76.11,1.8,6.36,8.13,8.59,8.88,9.06,9.200000000000001,9.28,9.34,9.42,43.01,43.17,43.300000000000004,43.46,43.63,43.78,43.96,44.12,44.51,20.81,20.42,20.23,20.03,19.84,19.650000000000002,19.45,19.27,18.900000000000002,N/A,N/A +2013,7,16,0,30,94260,93160,92090,78.07000000000001,0,4.5,5.74,6.07,6.2700000000000005,6.41,6.5,6.57,6.63,6.7,33.75,34.35,34.77,35.230000000000004,35.68,36.1,36.57,37.02,38,20.54,20.150000000000002,19.95,19.76,19.56,19.37,19.18,18.990000000000002,18.61,N/A,N/A +2013,7,16,1,30,94290,93190,92130,82.48,1.8,3.74,4.75,5.04,5.21,5.33,5.41,5.46,5.51,5.57,41.08,41.56,41.9,42.300000000000004,42.730000000000004,43.14,43.62,44.08,45.18,20.04,19.67,19.490000000000002,19.3,19.11,18.94,18.75,18.57,18.21,N/A,N/A +2013,7,16,2,30,94320,93210,92150,85.05,3.7,3.24,4.13,4.37,4.5200000000000005,4.62,4.7,4.75,4.79,4.87,39.71,40.13,40.46,40.79,41.14,41.46,41.85,42.230000000000004,43.29,19.830000000000002,19.47,19.29,19.11,18.92,18.75,18.56,18.39,18.04,N/A,N/A +2013,7,16,3,30,94350,93250,92190,84.92,1.8,2.9,3.62,3.81,3.91,3.97,4.01,4.03,4.05,4.1,35.77,37.24,38.28,39.300000000000004,40.38,41.410000000000004,42.6,43.730000000000004,46.9,19.92,19.57,19.39,19.2,19.01,18.84,18.650000000000002,18.48,18.12,N/A,N/A +2013,7,16,4,30,94360,93260,92190,86.99,0,3.1,3.87,4.05,4.15,4.19,4.22,4.23,4.24,4.2700000000000005,32.55,33.14,33.68,34.28,34.99,35.67,36.61,37.56,42.36,19.68,19.330000000000002,19.150000000000002,18.96,18.77,18.6,18.41,18.240000000000002,17.91,N/A,N/A +2013,7,16,5,30,94400,93290,92230,87.65,3.7,2.77,3.45,3.63,3.73,3.8000000000000003,3.85,3.88,3.9,3.96,51.31,52.63,53.59,54.61,55.660000000000004,56.660000000000004,57.81,58.88,61.29,19.79,19.45,19.28,19.1,18.92,18.75,18.57,18.39,18.04,N/A,N/A +2013,7,16,6,30,94420,93320,92250,89.62,1.8,2.5300000000000002,3.16,3.33,3.44,3.52,3.59,3.67,3.77,4.26,85.75,85.25,84.95,84.76,84.62,84.52,84.51,84.55,85.88,19.69,19.35,19.18,19,18.82,18.66,18.48,18.32,18.02,N/A,N/A +2013,7,16,7,30,94450,93350,92280,88.18,0,2.74,3.49,3.71,3.86,3.98,4.07,4.16,4.24,4.44,103.48,104.11,104.36,104.55,104.72,104.88,105.07000000000001,105.22,105.28,20.03,19.71,19.54,19.36,19.17,19,18.82,18.650000000000002,18.28,N/A,N/A +2013,7,16,8,30,94440,93330,92260,92.74,3.7,2.33,2.91,3.06,3.16,3.2600000000000002,3.36,3.52,3.75,4.99,96.54,96.96000000000001,97.06,96.99000000000001,96.75,96.45,96.08,95.96000000000001,98.61,19.55,19.22,19.06,18.900000000000002,18.73,18.580000000000002,18.43,18.3,18.080000000000002,N/A,N/A +2013,7,16,9,30,94440,93340,92270,91,0,2.37,2.97,3.15,3.29,3.47,3.67,4.42,5.25,6.140000000000001,96.51,97.92,98.67,99.34,100.03,100.71000000000001,104.02,107.60000000000001,110.29,19.8,19.48,19.32,19.14,18.96,18.8,18.69,18.6,18.330000000000002,N/A,N/A +2013,7,16,10,30,94450,93350,92280,90.16,1.8,2.98,3.89,4.19,4.41,4.59,4.75,4.91,5.0600000000000005,5.5200000000000005,110.98,112,112.66,113.23,113.79,114.33,115.10000000000001,115.89,118.46000000000001,20.06,19.740000000000002,19.57,19.38,19.2,19.02,18.830000000000002,18.66,18.3,N/A,N/A +2013,7,16,11,30,94460,93360,92290,89.8,0,2.7600000000000002,3.5700000000000003,3.8200000000000003,4.01,4.18,4.34,4.55,4.7700000000000005,5.57,116.73,118.51,119.60000000000001,120.56,121.59,122.60000000000001,124.07000000000001,125.52,128.94,20.11,19.79,19.62,19.44,19.25,19.080000000000002,18.89,18.72,18.39,N/A,N/A +2013,7,16,12,30,94500,93400,92330,90.57000000000001,0,1.4000000000000001,1.79,1.92,2.0300000000000002,2.19,2.38,3.33,4.5200000000000005,5.3100000000000005,114.38,116.94,118.45,119.79,122.24000000000001,125.23,128.72,132.68,134.8,20.150000000000002,19.84,19.67,19.48,19.3,19.12,19.02,18.92,18.62,N/A,N/A +2013,7,16,13,30,94500,93400,92330,91.48,0,1.43,1.8,2.05,2.41,3.0700000000000003,4,4.5,4.9,5.7,108.95,113.54,118.38,125.71000000000001,129.2,130.69,131.73,132.65,134.57,20.34,20.03,19.87,19.7,19.6,19.54,19.41,19.28,19.04,N/A,N/A +2013,7,16,14,30,94530,93430,92370,88.51,0,2.82,3.6,3.84,4,4.14,4.28,4.47,4.68,5.44,129.76,130.07,130.29,130.43,130.68,130.97,131.66,132.43,135.1,21.21,20.82,20.64,20.46,20.27,20.1,19.92,19.76,19.44,N/A,N/A +2013,7,16,15,30,94520,93430,92370,78.17,0,2.85,3.46,3.61,3.68,3.72,3.74,3.7600000000000002,3.77,3.8000000000000003,133.76,136.17000000000002,137.67000000000002,138.94,140.12,141.22,142.33,143.34,145.37,22.81,22.22,21.97,21.75,21.54,21.35,21.150000000000002,20.97,20.6,N/A,N/A +2013,7,16,16,30,94570,93470,92410,84.60000000000001,0,1.8900000000000001,2.33,2.44,2.5,2.5300000000000002,2.5500000000000003,2.5500000000000003,2.5500000000000003,2.5500000000000003,101.76,103.58,104.36,105.04,105.66,106.22,106.81,107.36,108.55,22.25,21.830000000000002,21.64,21.44,21.25,21.06,20.87,20.69,20.32,N/A,N/A +2013,7,16,17,30,94570,93480,92420,75.84,0,1.54,1.9100000000000001,2.0300000000000002,2.1,2.16,2.21,2.2600000000000002,2.3000000000000003,2.4,134.57,136.84,138.11,139.07,139.89000000000001,140.59,141.29,141.94,143.28,23.02,22.59,22.39,22.19,22,21.81,21.62,21.44,21.07,N/A,N/A +2013,7,16,18,30,94530,93440,92390,68.84,0,1.6500000000000001,1.8900000000000001,1.9100000000000001,1.8800000000000001,1.84,1.8,1.75,1.7,1.6,110.91,114.68,117,119.10000000000001,121.05,122.82000000000001,124.77,126.53,130.62,24.09,23.740000000000002,23.56,23.37,23.17,22.990000000000002,22.79,22.61,22.23,N/A,N/A +2013,7,16,19,30,94450,93370,92320,54.550000000000004,0,1.07,1.31,1.3900000000000001,1.47,1.54,1.62,1.71,1.79,1.96,143.21,151.24,156.01,159.94,163.12,165.83,167.93,169.74,171.86,26.72,26.14,25.88,25.64,25.42,25.22,25.01,24.830000000000002,24.44,N/A,N/A +2013,7,16,20,30,94410,93340,92300,49.88,0,1.68,2.07,2.21,2.3000000000000003,2.38,2.46,2.5300000000000002,2.59,2.71,174.20000000000002,171.82,170.32,169.1,168.08,167.17000000000002,166.37,165.64000000000001,164.41,27.97,27.38,27.12,26.88,26.67,26.46,26.25,26.060000000000002,25.66,N/A,N/A +2013,7,16,21,30,94390,93320,92280,50.800000000000004,0,3.22,4.34,4.68,4.92,5.08,5.21,5.3100000000000005,5.39,5.49,121.28,122.38,122.8,122.97,123.07000000000001,123.13000000000001,123.17,123.19,123.19,27.67,27.29,27.1,26.89,26.68,26.490000000000002,26.28,26.09,25.69,N/A,N/A +2013,7,16,22,30,94360,93290,92260,45.26,0,4.94,6.0600000000000005,6.37,6.5200000000000005,6.62,6.69,6.73,6.75,6.78,114.58,116.32000000000001,117.37,118.22,118.94,119.57000000000001,120.16,120.7,121.71000000000001,28.580000000000002,27.95,27.71,27.48,27.26,27.05,26.84,26.64,26.240000000000002,N/A,N/A +2013,7,16,23,30,94400,93320,92280,56.79,0,8.47,10.4,10.94,11.200000000000001,11.370000000000001,11.46,11.51,11.540000000000001,11.52,112.77,113.15,113.44,113.71000000000001,113.95,114.18,114.42,114.62,115.05,26.95,26.400000000000002,26.19,25.98,25.79,25.61,25.43,25.26,24.92,N/A,N/A +2013,7,17,0,30,94420,93340,92300,62.71,0,3.71,4.64,4.95,5.3,5.51,5.64,5.83,6.0200000000000005,6.43,152.54,151.16,149.86,147.9,146.1,144.44,140.76,136.69,131.03,25.41,25.11,24.97,24.84,24.68,24.53,24.46,24.44,24.2,N/A,N/A +2013,7,17,1,30,94430,93350,92300,56.07,0,4.65,6.3100000000000005,6.8500000000000005,7.25,7.57,7.83,8.05,8.24,8.58,119.61,119.84,120.05,120.19,120.31,120.42,120.56,120.68,120.8,26.02,25.77,25.62,25.44,25.26,25.080000000000002,24.89,24.71,24.330000000000002,N/A,N/A +2013,7,17,2,30,94470,93390,92350,59.29,0,3.3200000000000003,5.05,5.71,6.26,6.73,7.13,7.5,7.83,8.4,116.64,116.38,116.19,115.89,115.65,115.44,115.32000000000001,115.21000000000001,115.24000000000001,25.59,25.46,25.36,25.21,25.060000000000002,24.91,24.73,24.57,24.21,N/A,N/A +2013,7,17,3,30,94550,93470,92420,68.78,0,4.7700000000000005,6.73,7.37,7.9,8.31,8.65,8.92,9.16,9.5,96.91,97.39,97.69,97.95,98.22,98.48,98.82000000000001,99.14,100.01,24.740000000000002,24.53,24.39,24.22,24.04,23.87,23.68,23.51,23.150000000000002,N/A,N/A +2013,7,17,4,30,94560,93470,92420,74.60000000000001,0,4.7,6.42,7.07,7.68,8.11,8.43,8.67,8.870000000000001,9.23,93.71000000000001,94.02,94.29,94.64,95.01,95.39,95.51,95.60000000000001,97.22,23.72,23.43,23.27,23.080000000000002,22.89,22.71,22.52,22.34,21.97,N/A,N/A +2013,7,17,5,30,94580,93490,92440,74.43,0,4.7,6.3100000000000005,6.9,7.47,7.8,8,8.24,8.47,9.01,99.62,100.15,100.48,100.76,100.82000000000001,100.75,101.05,101.41,103.10000000000001,23.580000000000002,23.29,23.14,22.97,22.79,22.61,22.42,22.25,21.94,N/A,N/A +2013,7,17,6,30,94620,93530,92470,77.69,0,4.78,6.42,6.97,7.43,7.79,8.09,8.38,8.65,9.120000000000001,102.16,103.07000000000001,103.69,104.32000000000001,105.12,105.96000000000001,106.82000000000001,107.63,109.48,22.97,22.7,22.54,22.37,22.19,22.03,21.86,21.7,21.39,N/A,N/A +2013,7,17,7,30,94670,93580,92520,79.2,0,4.53,6.03,6.5,6.87,7.2,7.5,7.79,8.06,8.45,109.53,109.84,110,110.12,110.22,110.29,110.39,110.5,111.13,22.68,22.37,22.19,22,21.8,21.62,21.42,21.240000000000002,20.85,N/A,N/A +2013,7,17,8,30,94670,93570,92510,82.13,0,4.88,6.66,7.2700000000000005,7.78,8.22,8.61,8.98,9.34,9.98,102.58,103.84,104.59,105.26,105.93,106.58,107.28,107.95,109.5,22.48,22.2,22.03,21.85,21.66,21.490000000000002,21.3,21.12,20.76,N/A,N/A +2013,7,17,9,30,94680,93580,92520,85.76,0,3.58,4.76,5.18,5.53,5.88,6.2,6.5,6.76,7.140000000000001,107.09,108.10000000000001,108.61,109.02,109.43,109.82000000000001,110.26,110.69,111.37,22.09,21.77,21.61,21.42,21.240000000000002,21.07,20.89,20.72,20.35,N/A,N/A +2013,7,17,10,30,94680,93580,92520,88.82000000000001,0,2.89,3.9,4.28,4.6000000000000005,4.94,5.29,5.66,6.0200000000000005,6.78,129.32,129.25,129.22,128.93,128.65,128.39000000000001,127.68,127.03,126.92,21.77,21.45,21.28,21.11,20.94,20.78,20.62,20.47,20.2,N/A,N/A +2013,7,17,11,30,94730,93640,92570,89.32000000000001,0,2.62,3.5100000000000002,3.83,4.12,4.32,4.47,4.69,4.91,5.5200000000000005,117.63,120.51,122.17,123.74000000000001,124.62,125.12,126.35000000000001,127.65,131.09,21.71,21.39,21.22,21.03,20.85,20.67,20.48,20.3,19.93,N/A,N/A +2013,7,17,12,30,94770,93670,92600,88.46000000000001,0,3.02,4.1,4.51,4.92,5.29,5.64,5.78,5.88,6.3100000000000005,115.67,116.9,117.59,118.15,118.82000000000001,119.52,119.66,119.71000000000001,120.45,21.56,21.27,21.11,20.93,20.75,20.59,20.39,20.21,19.86,N/A,N/A +2013,7,17,13,30,94770,93670,92600,88.53,1.8,3.31,4.18,4.43,4.62,4.82,5.0200000000000005,5.34,5.66,6.3100000000000005,105.41,106.69,107.51,108.24000000000001,109.03,109.8,111.26,112.7,115.25,21.41,21.080000000000002,20.92,20.75,20.59,20.43,20.28,20.150000000000002,19.87,N/A,N/A +2013,7,17,14,30,94820,93720,92650,84.78,1.8,4.33,5.49,5.8,6,6.15,6.2700000000000005,6.390000000000001,6.5,6.79,104.65,106.85000000000001,108,109.10000000000001,110.2,111.25,112.43,113.54,116.24000000000001,21.73,21.34,21.16,20.97,20.79,20.62,20.43,20.27,19.92,N/A,N/A +2013,7,17,15,30,94840,93740,92680,78.05,0,4.05,5.04,5.33,5.5,5.62,5.71,5.78,5.84,5.95,102.83,104.01,104.68,105.19,105.64,106.03,106.42,106.78,107.54,22.650000000000002,22.05,21.81,21.59,21.39,21.19,21,20.81,20.44,N/A,N/A +2013,7,17,16,30,94830,93740,92670,76.61,1.8,3.5500000000000003,4.39,4.62,4.75,4.84,4.9,4.96,5,5.09,108.4,108.02,107.93,107.7,107.42,107.13,106.8,106.48,105.79,22.990000000000002,22.400000000000002,22.16,21.95,21.75,21.57,21.38,21.21,20.85,N/A,N/A +2013,7,17,17,30,94770,93690,92640,59.58,0,4.69,5.84,6.19,6.390000000000001,6.53,6.640000000000001,6.73,6.8100000000000005,6.92,114.85000000000001,115.49000000000001,115.78,115.98,116.11,116.23,116.32000000000001,116.4,116.55,26.04,25.34,25.080000000000002,24.830000000000002,24.6,24.39,24.18,23.98,23.57,N/A,N/A +2013,7,17,18,30,94730,93650,92600,64.64,0,4.2,5.16,5.41,5.57,5.67,5.74,5.8,5.84,5.92,150.3,146.4,144.34,142.43,140.72,139.17000000000002,137.75,136.48,134.16,25.6,24.91,24.64,24.39,24.17,23.96,23.75,23.56,23.16,N/A,N/A +2013,7,17,19,30,94720,93630,92580,63.64,1.8,5.79,7.390000000000001,7.68,7.8100000000000005,7.88,7.91,7.9,7.9,7.84,126.42,125.95,125.24000000000001,124.47,123.7,123,122.2,121.47,119.96000000000001,25.57,25.080000000000002,24.86,24.650000000000002,24.45,24.26,24.060000000000002,23.87,23.5,N/A,N/A +2013,7,17,20,30,94720,93630,92570,77.56,3.7,4.68,5.67,5.92,6,6.0200000000000005,6.0200000000000005,5.99,5.96,5.88,197.06,199.08,199.97,200.67000000000002,201.14000000000001,201.47,201.54,201.55,201.15,23.81,23.23,23.01,22.82,22.650000000000002,22.490000000000002,22.330000000000002,22.18,21.89,N/A,N/A +2013,7,17,21,30,94660,93570,92510,72.88,0,1.44,1.84,1.98,2.08,2.14,2.2,2.24,2.2800000000000002,2.4,87.46000000000001,93.74,97.21000000000001,100.08,102.65,104.97,107.31,109.44,113.51,24.07,23.6,23.38,23.18,22.98,22.8,22.6,22.43,22.06,N/A,N/A +2013,7,17,22,30,94670,93580,92530,73.96000000000001,0,5.1000000000000005,6.73,7.23,7.6000000000000005,7.8500000000000005,8.040000000000001,8.17,8.28,8.4,87.31,88.24,88.65,88.92,89.11,89.24,89.33,89.39,89.44,24.36,23.92,23.72,23.5,23.3,23.1,22.89,22.71,22.32,N/A,N/A +2013,7,17,23,30,94680,93590,92530,80.87,0,2.95,3.65,3.79,3.85,3.88,3.88,3.86,3.84,3.7600000000000002,53.51,54.92,55.94,56.9,57.86,58.77,59.82,60.81,63.68,22.95,22.56,22.37,22.17,21.98,21.79,21.6,21.42,21.04,N/A,N/A +2013,7,18,0,30,94660,93570,92510,79.33,0,3.39,4.16,4.33,4.4,4.44,4.46,4.46,4.46,4.48,85.73,87.32000000000001,87.99,88.60000000000001,89.2,89.76,90.41,91.02,92.68,23.14,22.740000000000002,22.55,22.35,22.16,21.97,21.78,21.6,21.23,N/A,N/A +2013,7,18,1,30,94660,93570,92510,79.58,0,3.7,4.72,4.97,5.13,5.26,5.36,5.44,5.51,5.66,81.86,83.05,83.84,84.63,85.47,86.28,87.32000000000001,88.32000000000001,91.21000000000001,23.13,22.830000000000002,22.66,22.48,22.29,22.12,21.93,21.76,21.400000000000002,N/A,N/A +2013,7,18,2,30,94680,93590,92530,78.17,0,0.68,1.36,1.78,2.21,2.62,3,3.35,3.69,4.29,29.36,42.59,49.71,53.01,55.21,56.800000000000004,58.33,59.81,63.120000000000005,23.080000000000002,22.88,22.75,22.6,22.44,22.28,22.11,21.95,21.62,N/A,N/A +2013,7,18,3,30,94700,93600,92540,81.82000000000001,0,1.07,2.18,2.77,3.31,3.81,4.3,4.78,5.24,6.07,105.41,102.29,100.08,97.17,94.73,92.60000000000001,91.43,90.49,90.16,22.64,22.400000000000002,22.25,22.07,21.900000000000002,21.75,21.59,21.45,21.16,N/A,N/A +2013,7,18,4,30,94730,93630,92570,85.99,0,2.7800000000000002,4.12,4.64,5.09,5.49,5.8500000000000005,6.21,6.53,7.15,127.56,124.63000000000001,122.48,120.64,118.88,117.23,115.96000000000001,114.85000000000001,113.60000000000001,22.41,22.13,21.97,21.81,21.64,21.47,21.29,21.12,20.78,N/A,N/A +2013,7,18,5,30,94720,93620,92560,88.26,1.8,4.37,5.95,6.53,7.05,7.28,7.37,7.67,7.97,8.46,132.97,134.23,135.51,137.3,137.86,137.85,138.72,139.74,143.3,21.44,21.16,21.02,20.86,20.68,20.5,20.36,20.26,20.240000000000002,N/A,N/A +2013,7,18,6,30,94740,93640,92580,88.02,0,2.47,3.29,3.62,3.97,4.28,4.55,4.87,5.18,5.8100000000000005,125.28,125.92,126.12,125.93,125.47,124.89,124.26,123.7,123.53,21.61,21.32,21.17,21.01,20.86,20.71,20.57,20.44,20.16,N/A,N/A +2013,7,18,7,30,94760,93660,92600,89.53,0,2.83,4.13,4.5600000000000005,4.88,5.2,5.49,5.8100000000000005,6.12,6.78,124.46000000000001,125.55,126.12,126.46000000000001,126.81,127.15,127.53,127.91,128.83,21.61,21.36,21.21,21.05,20.88,20.73,20.57,20.43,20.150000000000002,N/A,N/A +2013,7,18,8,30,94780,93680,92620,90.33,0,2.95,4.63,5.32,5.94,6.49,6.99,7.46,7.9,8.69,117,118.33,119.16,119.69,120.29,120.91,121.79,122.68,124.89,21.66,21.5,21.39,21.25,21.1,20.95,20.79,20.64,20.32,N/A,N/A +2013,7,18,9,30,94750,93650,92580,86.99,0,3.73,5.59,6.26,6.83,7.3100000000000005,7.74,8.11,8.44,9.01,124.71000000000001,124.95,125.07000000000001,125.07000000000001,125.15,125.28,125.54,125.83,126.93,21.42,21.25,21.13,20.98,20.82,20.67,20.490000000000002,20.330000000000002,19.98,N/A,N/A +2013,7,18,10,30,94770,93670,92610,88.68,0,3.3000000000000003,5.19,5.93,6.5600000000000005,7.1000000000000005,7.58,7.99,8.370000000000001,9.01,128.79,129.98,130.65,131.03,131.48,131.93,132.39000000000001,132.85,134,21.03,20.88,20.76,20.61,20.46,20.31,20.16,20.01,19.7,N/A,N/A +2013,7,18,11,30,94790,93690,92620,91.01,0,2.81,4.51,5.19,5.78,6.28,6.74,7.17,7.57,8.33,122.61,124.35000000000001,125.22,125.73,126.23,126.7,127.35000000000001,128.02,129.89000000000001,20.62,20.490000000000002,20.38,20.25,20.1,19.96,19.81,19.66,19.37,N/A,N/A +2013,7,18,12,30,94800,93690,92630,89.13,0,3.46,4.91,5.47,5.94,6.34,6.71,7.05,7.36,7.97,131.09,131.56,131.87,132.19,132.57,132.96,133.55,134.15,135.77,20.91,20.68,20.54,20.39,20.23,20.080000000000002,19.91,19.76,19.45,N/A,N/A +2013,7,18,13,30,94790,93690,92620,85.35000000000001,0,4.5200000000000005,5.8,6.13,6.34,6.48,6.58,6.66,6.72,6.84,137.18,137.64000000000001,137.83,137.99,138.16,138.31,138.52,138.72,139.25,21.39,21.01,20.82,20.62,20.42,20.23,20.03,19.85,19.47,N/A,N/A +2013,7,18,14,30,94820,93720,92660,81.86,0,4.04,5.1000000000000005,5.41,5.59,5.72,5.8,5.87,5.92,6,132.1,132.81,133.19,133.46,133.68,133.88,134.06,134.24,134.64000000000001,21.76,21.26,21.05,20.830000000000002,20.63,20.43,20.22,20.03,19.64,N/A,N/A +2013,7,18,15,30,94810,93710,92650,73.28,0,4.04,5.05,5.3500000000000005,5.5200000000000005,5.63,5.72,5.78,5.84,5.91,140.38,140.23,140.07,139.87,139.66,139.46,139.24,139.04,138.61,23,22.37,22.12,21.88,21.66,21.46,21.25,21.06,20.67,N/A,N/A +2013,7,18,16,30,94810,93720,92660,68.78,0,3.48,4.43,4.71,4.88,5,5.09,5.16,5.21,5.3,141.76,141.56,141.44,141.27,141.07,140.88,140.68,140.49,140.09,23.85,23.330000000000002,23.1,22.88,22.67,22.47,22.25,22.06,21.66,N/A,N/A +2013,7,18,17,30,94770,93680,92630,58.800000000000004,0,4.07,5.08,5.38,5.55,5.68,5.7700000000000005,5.8500000000000005,5.92,6.0200000000000005,137.68,137.54,137.46,137.34,137.22,137.1,136.98,136.87,136.65,25.52,24.82,24.55,24.3,24.07,23.86,23.64,23.45,23.04,N/A,N/A +2013,7,18,18,30,94710,93620,92580,54.07,0,4.3,5.29,5.57,5.72,5.82,5.89,5.94,5.98,6.04,120.04,121.67,122.49000000000001,123.17,123.74000000000001,124.25,124.74000000000001,125.18,126.04,26.68,25.96,25.68,25.42,25.19,24.97,24.75,24.560000000000002,24.150000000000002,N/A,N/A +2013,7,18,19,30,94640,93560,92520,47.6,0,4.61,5.72,6.04,6.22,6.3500000000000005,6.45,6.5200000000000005,6.58,6.67,128.49,129.57,130.23,130.75,131.18,131.56,131.92000000000002,132.24,132.84,27.95,27.22,26.94,26.68,26.45,26.23,26.01,25.810000000000002,25.400000000000002,N/A,N/A +2013,7,18,20,30,94520,93450,92410,42.17,0,4.6000000000000005,5.74,6.07,6.2700000000000005,6.41,6.51,6.59,6.66,6.7700000000000005,139.03,139.98,140.45000000000002,140.78,141.04,141.26,141.46,141.63,141.94,28.900000000000002,28.18,27.900000000000002,27.650000000000002,27.42,27.2,26.98,26.78,26.36,N/A,N/A +2013,7,18,21,30,94440,93380,92340,39.32,0,4.55,5.67,6,6.2,6.34,6.45,6.54,6.61,6.71,139.83,140.28,140.55,140.75,140.9,141.04,141.15,141.24,141.42000000000002,29.73,29.04,28.77,28.52,28.29,28.07,27.85,27.650000000000002,27.23,N/A,N/A +2013,7,18,22,30,94390,93330,92290,39.39,0,4.72,5.94,6.28,6.49,6.640000000000001,6.75,6.84,6.91,7.0200000000000005,137.64000000000001,138.15,138.47,138.74,138.97,139.18,139.38,139.57,139.94,30.080000000000002,29.45,29.21,28.97,28.740000000000002,28.53,28.32,28.12,27.71,N/A,N/A +2013,7,18,23,30,94430,93350,92310,50.5,0,6.55,8.44,9.02,9.4,9.67,9.89,10.06,10.200000000000001,10.42,121,122.67,123.3,123.78,124.15,124.47,124.75,125,125.4,27.740000000000002,27.150000000000002,26.92,26.7,26.48,26.28,26.07,25.87,25.47,N/A,N/A +2013,7,19,0,30,94410,93330,92290,57.79,0,5.84,7.4,7.82,8.07,8.23,8.35,8.43,8.5,8.57,116.93,118.49000000000001,119.28,119.93,120.49000000000001,121,121.49000000000001,121.94,122.8,26.62,26.17,25.97,25.76,25.560000000000002,25.36,25.16,24.98,24.59,N/A,N/A +2013,7,19,1,30,94370,93290,92250,57,0,3.91,5.32,5.72,6,6.22,6.390000000000001,6.5200000000000005,6.63,6.83,132.27,132.07,131.86,131.54,131.19,130.82,130.38,129.97,128.94,25.94,25.68,25.51,25.32,25.13,24.94,24.75,24.560000000000002,24.18,N/A,N/A +2013,7,19,2,30,94380,93300,92250,59.63,0,2.99,4.51,5.05,5.47,5.82,6.11,6.38,6.62,7.12,136.34,136.64000000000001,136.86,137.06,137.39000000000001,137.79,138.32,138.85,140.03,25.330000000000002,25.16,25.04,24.88,24.73,24.580000000000002,24.43,24.28,24,N/A,N/A +2013,7,19,3,30,94420,93340,92290,65.09,0,1.79,3.23,3.81,4.3,4.74,5.13,5.5,5.84,6.48,134.83,137.66,139,139.54,139.87,140.06,140.16,140.22,140.25,24.95,24.87,24.79,24.68,24.560000000000002,24.43,24.3,24.17,23.900000000000002,N/A,N/A +2013,7,19,4,30,94420,93340,92290,69.35000000000001,0,1.77,3.29,3.84,4.32,4.78,5.21,5.71,6.2,7.2,108.77,114.10000000000001,116.82000000000001,118.41,119.83,121.12,122.48,123.83,126.87,24.51,24.580000000000002,24.55,24.47,24.38,24.28,24.17,24.07,23.81,N/A,N/A +2013,7,19,5,30,94420,93340,92290,71.25,0,2.0100000000000002,3.96,4.82,5.66,6.48,7.25,8,8.71,9.85,134.62,136.09,137.31,138.85,140.42000000000002,141.98,143.3,144.52,145.99,24.080000000000002,24.18,24.17,24.13,24.1,24.05,24.01,23.96,23.82,N/A,N/A +2013,7,19,6,30,94450,93360,92310,71.59,0,1.82,3.73,4.54,5.3500000000000005,6.140000000000001,6.91,7.66,8.38,9.450000000000001,133.6,137.4,139.69,141.45000000000002,142.88,144.11,144.99,145.73,146.3,23.64,23.8,23.8,23.77,23.71,23.650000000000002,23.56,23.46,23.21,N/A,N/A +2013,7,19,7,30,94470,93380,92330,73.34,0,2.33,4.28,5.09,5.8500000000000005,6.54,7.18,7.76,8.290000000000001,9.18,132.76,135.01,136.38,137.54,138.87,140.26,141.9,143.51,147.09,23.11,23.2,23.19,23.150000000000002,23.09,23.02,22.93,22.85,22.67,N/A,N/A +2013,7,19,8,30,94490,93400,92340,74.09,0,3.19,5.23,6.05,6.82,7.53,8.2,8.83,9.43,10.4,138.83,140.1,140.8,141.27,141.86,142.5,143.37,144.26,146.45000000000002,22.75,22.740000000000002,22.69,22.62,22.54,22.45,22.37,22.28,22.11,N/A,N/A +2013,7,19,9,30,94470,93380,92320,76.13,0,3.09,5.1000000000000005,5.91,6.63,7.3,7.92,8.540000000000001,9.120000000000001,10.19,136.56,137.78,138.38,138.78,139.35,139.98,140.97,142,144.75,22.32,22.29,22.23,22.150000000000002,22.07,21.98,21.900000000000002,21.82,21.68,N/A,N/A +2013,7,19,10,30,94490,93400,92340,79.22,0,2.49,4.41,5.21,5.95,6.66,7.33,8,8.64,9.790000000000001,133.01,135.53,137,138.09,139.34,140.63,142.23,143.82,147.58,21.91,21.93,21.89,21.830000000000002,21.76,21.7,21.650000000000002,21.6,21.53,N/A,N/A +2013,7,19,11,30,94490,93390,92330,82.07000000000001,0,2.36,4.24,4.99,5.67,6.33,6.96,7.640000000000001,8.31,9.74,138.28,140.33,141.32,141.98,142.8,143.69,144.75,145.82,148.06,21.57,21.6,21.57,21.51,21.45,21.39,21.32,21.27,21.16,N/A,N/A +2013,7,19,12,30,94490,93390,92330,81.7,0,2.73,4.32,5.0200000000000005,5.69,6.34,6.96,7.65,8.31,9.59,135.91,137.88,139.04,140.11,141.4,142.76,144.57,146.42000000000002,150.75,21.62,21.48,21.39,21.3,21.21,21.12,21.05,20.990000000000002,20.89,N/A,N/A +2013,7,19,13,30,94520,93420,92370,75.55,0,4.74,5.97,6.29,6.48,6.61,6.7,6.79,6.86,7.0600000000000005,142.67000000000002,143.63,144.18,144.67000000000002,145.17000000000002,145.65,146.24,146.8,148.35,22.87,22.42,22.22,22.02,21.830000000000002,21.650000000000002,21.46,21.28,20.92,N/A,N/A +2013,7,19,14,30,94500,93420,92360,70.12,0,4.82,6.04,6.38,6.57,6.7,6.78,6.8500000000000005,6.890000000000001,6.96,160.76,161.06,161.18,161.26,161.32,161.37,161.42000000000002,161.47,161.56,24.09,23.5,23.26,23.04,22.82,22.62,22.41,22.22,21.830000000000002,N/A,N/A +2013,7,19,15,30,94500,93420,92370,65.62,0,4.55,5.67,5.99,6.17,6.29,6.37,6.43,6.48,6.54,161.36,161.3,161.3,161.25,161.19,161.12,161.05,160.99,160.82,25.14,24.47,24.21,23.97,23.740000000000002,23.53,23.32,23.13,22.72,N/A,N/A +2013,7,19,16,30,94480,93390,92350,64.09,0,4.39,5.48,5.8,5.97,6.09,6.17,6.24,6.29,6.37,153.54,154.12,154.46,154.66,154.81,154.93,155.04,155.14000000000001,155.31,25.47,24.84,24.59,24.36,24.14,23.93,23.72,23.53,23.13,N/A,N/A +2013,7,19,17,30,94440,93370,92320,55.480000000000004,0,4.61,5.69,5.99,6.16,6.2700000000000005,6.3500000000000005,6.41,6.45,6.51,154.20000000000002,154.29,154.33,154.32,154.29,154.25,154.21,154.16,154.06,27.1,26.35,26.060000000000002,25.8,25.560000000000002,25.34,25.12,24.92,24.5,N/A,N/A +2013,7,19,18,30,94390,93310,92280,47.44,0,4.5,5.57,5.88,6.05,6.17,6.26,6.33,6.38,6.45,144.97,145.5,145.76,145.92000000000002,146.04,146.14000000000001,146.22,146.29,146.41,28.36,27.61,27.32,27.05,26.810000000000002,26.59,26.37,26.16,25.75,N/A,N/A +2013,7,19,19,30,94300,93240,92200,43.61,0,4.49,5.55,5.8500000000000005,6.0200000000000005,6.140000000000001,6.23,6.29,6.34,6.41,148.89000000000001,149.06,149.14000000000001,149.15,149.14000000000001,149.12,149.09,149.06,148.98,29.400000000000002,28.650000000000002,28.35,28.080000000000002,27.84,27.62,27.39,27.19,26.77,N/A,N/A +2013,7,19,20,30,94210,93150,92120,39.2,0,4.63,5.73,6.05,6.22,6.34,6.42,6.49,6.54,6.61,144.67000000000002,145.1,145.23,145.27,145.29,145.29,145.29,145.29,145.25,30.26,29.51,29.23,28.96,28.73,28.5,28.28,28.07,27.650000000000002,N/A,N/A +2013,7,19,21,30,94160,93100,92070,38.660000000000004,0,4.25,5.26,5.55,5.72,5.84,5.93,6,6.05,6.140000000000001,141.13,141.22,141.32,141.38,141.41,141.45000000000002,141.47,141.49,141.52,30.77,30.060000000000002,29.79,29.53,29.3,29.07,28.85,28.650000000000002,28.23,N/A,N/A +2013,7,19,22,30,94060,93000,91970,33.02,0,5.15,6.37,6.7,6.88,7,7.08,7.140000000000001,7.18,7.24,126.13000000000001,127.31,128,128.57,129.04,129.46,129.85,130.21,130.9,31.240000000000002,30.57,30.32,30.07,29.84,29.62,29.41,29.2,28.79,N/A,N/A +2013,7,19,23,30,94010,92950,91930,34.61,0,5.32,6.68,7.05,7.25,7.390000000000001,7.49,7.57,7.63,7.72,129.57,130.85,131.49,131.97,132.37,132.72,133.04,133.33,133.86,31.12,30.54,30.32,30.09,29.87,29.67,29.45,29.26,28.86,N/A,N/A +2013,7,20,0,30,93970,92910,91890,37.26,0,4.67,6.0200000000000005,6.42,6.69,6.88,7.0200000000000005,7.13,7.21,7.34,139.74,139.9,140,140.07,140.12,140.17000000000002,140.23,140.28,140.39000000000001,30.94,30.51,30.32,30.1,29.900000000000002,29.7,29.490000000000002,29.3,28.91,N/A,N/A +2013,7,20,1,30,93960,92900,91880,42.06,0,3.2,4.7700000000000005,5.26,5.67,6,6.28,6.5200000000000005,6.73,7.09,144.41,144.29,144.24,144.24,144.31,144.41,144.55,144.70000000000002,145.01,29.92,29.79,29.68,29.53,29.38,29.21,29.04,28.87,28.51,N/A,N/A +2013,7,20,2,30,94020,92960,91930,44.32,0,3.44,5.32,5.95,6.45,6.8500000000000005,7.2,7.5,7.76,8.21,142.14000000000001,143.08,143.85,144.75,145.64000000000001,146.55,147.3,147.97,148.92000000000002,29.150000000000002,29.16,29.1,28.990000000000002,28.87,28.73,28.580000000000002,28.43,28.1,N/A,N/A +2013,7,20,3,30,94070,93000,91970,45.730000000000004,0,3.6,5.71,6.54,7.28,7.91,8.48,8.950000000000001,9.370000000000001,9.950000000000001,142.44,143.04,143.49,143.97,144.48,145,145.46,145.89000000000001,146.39000000000001,28.580000000000002,28.560000000000002,28.5,28.400000000000002,28.29,28.17,28.02,27.89,27.57,N/A,N/A +2013,7,20,4,30,94090,93020,91990,48.76,0,3.39,5.44,6.22,6.91,7.5,8.040000000000001,8.53,8.97,9.76,142.92000000000002,142.63,142.51,142.51,142.73,143.07,143.65,144.27,146.06,27.89,27.900000000000002,27.85,27.78,27.68,27.580000000000002,27.45,27.330000000000002,27.03,N/A,N/A +2013,7,20,5,30,94090,93030,91990,49.68,0,3.27,5.13,5.79,6.4,6.92,7.390000000000001,7.8100000000000005,8.19,8.78,148.16,147.75,147.5,147.39000000000001,147.35,147.38,147.4,147.41,147.4,27.47,27.46,27.41,27.330000000000002,27.23,27.13,27.01,26.900000000000002,26.63,N/A,N/A +2013,7,20,6,30,94140,93070,92040,51.86,0,3.42,5.51,6.33,7.07,7.72,8.32,8.870000000000001,9.38,10.25,153.58,152.71,152.24,151.89000000000001,151.71,151.63,151.64000000000001,151.66,151.75,26.990000000000002,27,26.96,26.89,26.8,26.71,26.59,26.48,26.2,N/A,N/A +2013,7,20,7,30,94160,93090,92050,54.47,0,3.64,5.51,6.18,6.7700000000000005,7.28,7.75,8.18,8.58,9.290000000000001,146.47,146.02,145.81,145.67000000000002,145.71,145.84,146.17000000000002,146.53,147.67000000000002,26.52,26.44,26.36,26.26,26.14,26.02,25.88,25.75,25.45,N/A,N/A +2013,7,20,8,30,94190,93110,92070,57.43,0,4.79,6.98,7.78,8.47,9.1,9.67,10.23,10.75,11.73,148.29,148.95000000000002,149.39000000000001,149.89000000000001,150.43,151.01,151.64000000000001,152.24,153.41,26.05,25.93,25.830000000000002,25.7,25.57,25.43,25.28,25.14,24.830000000000002,N/A,N/A +2013,7,20,9,30,94180,93100,92060,61.65,0,4,5.87,6.57,7.19,7.72,8.2,8.68,9.13,9.99,147.94,149.20000000000002,150.04,150.92000000000002,151.78,152.62,153.5,154.35,156.1,25.54,25.39,25.27,25.13,24.98,24.830000000000002,24.66,24.51,24.17,N/A,N/A +2013,7,20,10,30,94140,93060,92020,65.27,0,4.24,6.15,6.83,7.41,7.91,8.370000000000001,8.81,9.23,10.03,149.24,150.20000000000002,150.88,151.56,152.27,152.98,153.77,154.54,156.14000000000001,25.060000000000002,24.88,24.76,24.61,24.46,24.3,24.14,23.98,23.64,N/A,N/A +2013,7,20,11,30,94180,93100,92050,67.57000000000001,0,3.49,5.22,5.9,6.5,7.04,7.5200000000000005,8,8.45,9.33,145.33,147.23,148.51,149.78,151.01,152.20000000000002,153.44,154.61,156.89000000000001,24.61,24.43,24.310000000000002,24.16,24.01,23.85,23.69,23.53,23.2,N/A,N/A +2013,7,20,12,30,94180,93100,92060,70.03,0,3.39,4.93,5.49,5.98,6.390000000000001,6.76,7.11,7.44,8.09,132.19,134.41,135.87,137.28,138.68,140.05,141.51,142.89000000000001,145.83,24.2,23.990000000000002,23.85,23.69,23.52,23.36,23.18,23.01,22.66,N/A,N/A +2013,7,20,13,30,94190,93110,92060,72.51,0,4.83,6.21,6.61,6.86,7.04,7.17,7.28,7.37,7.54,150.08,150.75,151.07,151.38,151.70000000000002,152.02,152.39000000000001,152.74,153.58,24.23,23.85,23.66,23.46,23.27,23.080000000000002,22.88,22.7,22.31,N/A,N/A +2013,7,20,14,30,94210,93130,92090,70.2,0,4.92,6.18,6.53,6.73,6.8500000000000005,6.94,7,7.04,7.09,153.09,153.51,153.72,153.89000000000001,154.04,154.19,154.32,154.45000000000002,154.74,24.8,24.25,24.03,23.8,23.59,23.39,23.18,22.990000000000002,22.6,N/A,N/A +2013,7,20,15,30,94200,93120,92080,65.06,0,4.64,5.79,6.12,6.3,6.41,6.5,6.55,6.59,6.640000000000001,158.35,158.43,158.48,158.5,158.51,158.51,158.52,158.52,158.53,25.75,25.1,24.85,24.61,24.39,24.18,23.96,23.77,23.37,N/A,N/A +2013,7,20,16,30,94180,93110,92070,58.800000000000004,0,4.25,5.26,5.5600000000000005,5.72,5.82,5.9,5.95,5.99,6.04,157.83,157.96,157.96,157.94,157.93,157.91,157.88,157.87,157.83,27.04,26.32,26.04,25.78,25.55,25.330000000000002,25.12,24.92,24.51,N/A,N/A +2013,7,20,17,30,94140,93070,92030,52.19,0,4.5200000000000005,5.57,5.87,6.03,6.140000000000001,6.21,6.26,6.3,6.3500000000000005,162.11,161.98,161.89000000000001,161.79,161.69,161.6,161.5,161.42000000000002,161.24,28.36,27.61,27.32,27.05,26.810000000000002,26.59,26.37,26.16,25.76,N/A,N/A +2013,7,20,18,30,94080,93010,91980,48.160000000000004,0,4.32,5.3100000000000005,5.59,5.74,5.84,5.91,5.97,6.01,6.05,161.23,160.82,160.6,160.37,160.16,159.96,159.76,159.58,159.22,29.400000000000002,28.64,28.35,28.080000000000002,27.84,27.61,27.39,27.19,26.77,N/A,N/A +2013,7,20,19,30,94030,92970,91940,44.94,0,4.3500000000000005,5.36,5.65,5.8100000000000005,5.93,6.01,6.07,6.12,6.19,149.26,149.43,149.52,149.56,149.58,149.59,149.59,149.6,149.59,30.36,29.61,29.32,29.05,28.810000000000002,28.59,28.36,28.150000000000002,27.740000000000002,N/A,N/A +2013,7,20,20,30,93910,92860,91840,42.050000000000004,0,4.68,5.8,6.11,6.29,6.42,6.51,6.58,6.63,6.71,149.43,149.48,149.53,149.54,149.56,149.57,149.58,149.58,149.59,31.11,30.35,30.060000000000002,29.79,29.55,29.32,29.1,28.89,28.47,N/A,N/A +2013,7,20,21,30,93850,92800,91770,43.2,0,3.86,5.11,5.54,5.83,6.05,6.23,6.36,6.48,6.66,183.68,178.96,176.59,174.87,173.53,172.43,171.51,170.72,169.33,30.59,30.150000000000002,29.96,29.740000000000002,29.55,29.35,29.150000000000002,28.97,28.580000000000002,N/A,N/A +2013,7,20,22,30,93900,92840,91810,41.99,0,7.640000000000001,9.47,9.91,10.1,10.19,10.22,10.200000000000001,10.17,10.05,190.65,189.67000000000002,189.20000000000002,188.86,188.55,188.28,187.97,187.67000000000002,186.93,29.2,28.5,28.26,28.05,27.88,27.72,27.57,27.44,27.18,N/A,N/A +2013,7,20,23,30,93890,92820,91780,59.370000000000005,0,0.54,0.85,1.06,1.28,1.6600000000000001,2.21,2.88,3.65,4.63,126.47,123.02,122.57000000000001,121.66,123.73,128.26,130.99,133.39000000000001,136.54,26.150000000000002,25.82,25.69,25.6,25.560000000000002,25.57,25.72,25.89,25.91,N/A,N/A +2013,7,21,0,30,93900,92830,91790,61.660000000000004,0,4.62,5.76,6.01,6.12,6.16,6.17,6.15,6.11,6.01,215.70000000000002,215.29,215.27,215.36,215.49,215.62,215.75,215.86,215.9,26.47,26.04,25.85,25.650000000000002,25.45,25.27,25.080000000000002,24.900000000000002,24.54,N/A,N/A +2013,7,21,1,30,93900,92820,91780,62.35,0,4.12,5.61,6.140000000000001,6.5200000000000005,6.9,7.26,7.78,8.31,9.36,201.81,201.67000000000002,201.73000000000002,202.15,202.36,202.46,202.52,202.57,201.43,25.080000000000002,24.76,24.59,24.400000000000002,24.22,24.05,23.96,23.88,23.95,N/A,N/A +2013,7,21,2,30,93920,92840,91800,64.08,0,4.01,5.45,5.92,6.23,6.61,7.0200000000000005,7.41,7.78,8.56,174.68,175.65,176.34,176.87,177.62,178.45000000000002,179.37,180.25,181.87,25,24.67,24.5,24.310000000000002,24.150000000000002,24.02,23.900000000000002,23.8,23.71,N/A,N/A +2013,7,21,3,30,93970,92890,91850,69.96000000000001,0,5.59,7.37,7.88,8.26,8.540000000000001,8.76,8.950000000000001,9.120000000000001,9.39,188.69,189.04,189.23,189.45000000000002,189.67000000000002,189.88,190.11,190.33,190.77,24.85,24.560000000000002,24.39,24.21,24.02,23.84,23.64,23.46,23.080000000000002,N/A,N/A +2013,7,21,4,30,94020,92940,91890,71,0,1.92,2.81,3.19,3.5500000000000003,3.89,4.2,4.53,4.84,5.41,170.08,174.29,176.87,179.03,180.6,181.82,182.75,183.56,184.86,24.09,23.82,23.67,23.490000000000002,23.32,23.150000000000002,22.97,22.81,22.47,N/A,N/A +2013,7,21,5,30,93990,92910,91860,71.94,0,2.37,3.7,4.24,4.75,5.22,5.65,6.07,6.46,7.2,170.1,173.36,175.29,177.03,178.43,179.6,180.44,181.18,181.97,23.72,23.53,23.41,23.27,23.150000000000002,23.02,22.900000000000002,22.79,22.57,N/A,N/A +2013,7,21,6,30,94080,93000,91950,76.13,0,1.29,2.41,2.86,3.33,3.7800000000000002,4.22,4.66,5.1000000000000005,5.94,120.96000000000001,134.49,142.37,148.19,152.58,156.09,158.8,161.22,164.5,23.41,23.28,23.17,23.04,22.900000000000002,22.77,22.62,22.490000000000002,22.21,N/A,N/A +2013,7,21,7,30,94070,92990,91940,73.38,0,2.69,4.28,4.9,5.46,5.96,6.41,6.84,7.23,7.97,155.20000000000002,158.04,159.75,161.31,162.71,164,165.17000000000002,166.23,168.03,23.66,23.48,23.35,23.21,23.05,22.900000000000002,22.72,22.56,22.21,N/A,N/A +2013,7,21,8,30,94070,92990,91940,77.65,0,3.12,4.73,5.32,5.8100000000000005,6.22,6.5600000000000005,6.86,7.12,7.54,164.70000000000002,165.35,165.85,166.45000000000002,167.04,167.62,168.12,168.57,169.01,23.07,22.89,22.77,22.62,22.46,22.3,22.13,21.96,21.6,N/A,N/A +2013,7,21,9,30,94050,92970,91910,81.8,0,2.86,4.39,4.96,5.45,5.88,6.2700000000000005,6.63,6.96,7.61,154.81,156.03,156.89000000000001,157.67000000000002,158.44,159.18,159.95000000000002,160.69,162.13,22.56,22.37,22.25,22.09,21.93,21.78,21.61,21.45,21.13,N/A,N/A +2013,7,21,10,30,94090,93000,91950,84.84,0,3.64,5.44,6.1000000000000005,6.69,7.21,7.68,8.120000000000001,8.52,9.32,149.33,151.5,152.81,154.05,155.27,156.47,157.75,158.96,161.49,22.11,21.93,21.8,21.64,21.48,21.32,21.14,20.98,20.63,N/A,N/A +2013,7,21,11,30,94110,93020,91970,86.15,0,4.34,6.19,6.84,7.38,7.84,8.23,8.58,8.89,9.46,163.39000000000001,164.34,164.86,165.4,165.95000000000002,166.49,167.05,167.57,168.62,21.78,21.57,21.44,21.28,21.12,20.96,20.79,20.63,20.31,N/A,N/A +2013,7,21,12,30,94110,93020,91970,87.37,0,3.71,5.05,5.49,5.84,6.13,6.390000000000001,6.61,6.8100000000000005,7.19,174.55,174.83,175.01,175.19,175.39000000000001,175.59,175.79,175.97,176.26,21.650000000000002,21.38,21.21,21.04,20.86,20.69,20.5,20.330000000000002,19.98,N/A,N/A +2013,7,21,13,30,94130,93040,91990,80.94,0,3.0100000000000002,3.8200000000000003,4.05,4.19,4.29,4.37,4.44,4.5,4.66,155.12,155.82,156.16,156.42000000000002,156.65,156.85,157.07,157.27,157.72,22.52,22.05,21.84,21.64,21.44,21.26,21.07,20.89,20.52,N/A,N/A +2013,7,21,14,30,94140,93060,92000,77.92,0,3.79,4.73,4.99,5.13,5.22,5.29,5.33,5.37,5.42,165.85,166.63,167.03,167.39000000000001,167.73,168.06,168.39000000000001,168.71,169.38,23.06,22.56,22.34,22.13,21.93,21.73,21.54,21.35,20.97,N/A,N/A +2013,7,21,15,30,94160,93070,92020,73.98,0,3.0700000000000003,3.95,4.26,4.46,4.63,4.76,4.87,4.97,5.15,151,153.32,154.51,155.47,156.3,157.03,157.72,158.35,159.56,24.16,23.56,23.32,23.1,22.89,22.69,22.490000000000002,22.31,21.92,N/A,N/A +2013,7,21,16,30,94140,93060,92020,65.94,0,4.28,5.4,5.73,5.93,6.07,6.17,6.24,6.3100000000000005,6.4,172.61,172.46,172.35,172.26,172.19,172.13,172.09,172.05,171.97,25.85,25.16,24.900000000000002,24.650000000000002,24.43,24.21,24,23.81,23.400000000000002,N/A,N/A +2013,7,21,17,30,94100,93030,91990,59.480000000000004,0,5.08,6.3100000000000005,6.65,6.84,6.96,7.04,7.1000000000000005,7.15,7.21,169.68,169.3,169.07,168.88,168.71,168.57,168.44,168.33,168.1,27.27,26.5,26.21,25.95,25.71,25.490000000000002,25.27,25.07,24.67,N/A,N/A +2013,7,21,18,30,94070,93000,91970,49.14,0,4.57,5.69,6.0200000000000005,6.2,6.34,6.44,6.5200000000000005,6.58,6.68,166.73,166.49,166.37,166.26,166.16,166.06,165.97,165.89000000000001,165.72,28.96,28.2,27.900000000000002,27.64,27.39,27.17,26.95,26.740000000000002,26.330000000000002,N/A,N/A +2013,7,21,19,30,93980,92920,91890,44.660000000000004,0,5.11,6.34,6.69,6.890000000000001,7.03,7.13,7.2,7.26,7.3500000000000005,167.33,167.20000000000002,167.09,166.98,166.88,166.78,166.69,166.61,166.44,30.2,29.41,29.11,28.84,28.59,28.37,28.14,27.93,27.51,N/A,N/A +2013,7,21,20,30,93900,92840,91820,38.86,0,5.86,7.3,7.69,7.91,8.06,8.17,8.25,8.32,8.41,175.34,174.9,174.64000000000001,174.4,174.20000000000002,174.01,173.84,173.68,173.36,31.14,30.34,30.05,29.78,29.54,29.310000000000002,29.09,28.87,28.45,N/A,N/A +2013,7,21,21,30,93860,92800,91780,36.45,0,6.22,7.7700000000000005,8.19,8.43,8.59,8.71,8.790000000000001,8.86,8.950000000000001,170.51,170.24,170.11,169.99,169.87,169.76,169.65,169.55,169.34,31.69,30.92,30.64,30.38,30.14,29.91,29.69,29.48,29.060000000000002,N/A,N/A +2013,7,21,22,30,93840,92790,91770,31.94,0,6.22,7.78,8.19,8.43,8.59,8.700000000000001,8.78,8.85,8.94,170.71,170.51,170.38,170.24,170.12,170,169.89000000000001,169.78,169.56,31.95,31.25,30.990000000000002,30.740000000000002,30.51,30.29,30.07,29.87,29.45,N/A,N/A +2013,7,21,23,30,93800,92750,91730,32.79,0,6.73,8.5,8.96,9.23,9.41,9.53,9.63,9.700000000000001,9.81,171.4,170.94,170.70000000000002,170.47,170.25,170.06,169.86,169.68,169.32,31.76,31.17,30.93,30.7,30.48,30.27,30.05,29.85,29.45,N/A,N/A +2013,7,22,0,30,93800,92750,91720,31.42,0,6.93,8.88,9.38,9.68,9.9,10.06,10.17,10.27,10.41,169.65,169.49,169.4,169.31,169.22,169.13,169.04,168.96,168.78,31.36,30.95,30.75,30.54,30.34,30.14,29.94,29.75,29.35,N/A,N/A +2013,7,22,1,30,93800,92740,91710,34.02,0,5.17,7.3100000000000005,7.97,8.49,8.91,9.27,9.57,9.85,10.290000000000001,172.81,172.69,172.62,172.55,172.46,172.38,172.28,172.17000000000002,171.88,30.22,30.13,30.03,29.89,29.75,29.6,29.42,29.26,28.91,N/A,N/A +2013,7,22,2,30,93830,92770,91750,35.58,0,4.41,6.640000000000001,7.4,8.040000000000001,8.59,9.07,9.48,9.85,10.450000000000001,170.43,170.38,170.4,170.49,170.6,170.74,170.85,170.96,171.02,29.5,29.54,29.5,29.43,29.34,29.23,29.09,28.95,28.63,N/A,N/A +2013,7,22,3,30,93900,92830,91810,37.42,0,3.45,5.86,6.83,7.79,8.65,9.44,10.09,10.67,11.36,164.72,166.66,167.69,168.34,168.73,168.96,169.04,169.06,168.83,28.76,29.05,29.13,29.18,29.17,29.13,29.04,28.95,28.67,N/A,N/A +2013,7,22,4,30,93950,92890,91860,39.93,0,2.94,5.05,5.69,6.11,6.390000000000001,6.59,6.87,7.140000000000001,8.22,143.12,142.61,142.55,143.13,144.49,146.22,149.19,152.26,159.42000000000002,27.67,28.13,28.25,28.28,28.23,28.14,28.02,27.900000000000002,27.72,N/A,N/A +2013,7,22,5,30,93960,92890,91850,37.02,0,3.89,6.51,7.5600000000000005,8.540000000000001,9.450000000000001,10.32,11.21,12.07,13.5,143.12,146.42000000000002,148.8,151.39000000000001,154.05,156.72,159.42000000000002,162.01,165.84,27.2,27.62,27.78,27.92,28.01,28.080000000000002,28.13,28.150000000000002,28.080000000000002,N/A,N/A +2013,7,22,6,30,93990,92920,91880,34.28,0,4.37,7.33,8.47,9.47,10.28,10.97,11.55,12.06,12.83,169.82,170.43,170.59,170.61,170.63,170.64000000000001,170.84,171.07,171.81,26.810000000000002,27.29,27.45,27.55,27.57,27.57,27.51,27.45,27.28,N/A,N/A +2013,7,22,7,30,94040,92960,91930,33.6,0,4.12,6.79,7.7700000000000005,8.61,9.25,9.77,10.11,10.4,11.02,163.09,165.42000000000002,166.99,168.65,170.3,171.89000000000001,173.34,174.62,176.11,26.2,26.73,26.95,27.14,27.26,27.330000000000002,27.32,27.29,27.11,N/A,N/A +2013,7,22,8,30,94040,92960,91920,34.57,0,4.58,7.5,8.700000000000001,9.88,10.96,11.97,12.85,13.63,14.64,155.66,158.70000000000002,160.56,162.34,164.06,165.68,167.04,168.23,169.38,25.71,26.150000000000002,26.34,26.53,26.68,26.810000000000002,26.87,26.91,26.78,N/A,N/A +2013,7,22,9,30,94040,92960,91920,37.6,0,4.61,7.51,8.74,9.96,11.08,12.13,13.06,13.91,15.32,152.62,154.37,155.54,156.69,157.61,158.41,159.11,159.8,161.64000000000001,24.900000000000002,25.14,25.19,25.21,25.18,25.13,25.05,24.97,24.76,N/A,N/A +2013,7,22,10,30,94060,92980,91930,46.71,0,4.84,7.45,8.49,9.46,10.38,11.25,12.120000000000001,12.94,14.47,154.84,156.67000000000002,157.71,158.54,159.28,159.98,160.78,161.58,163.66,23.69,23.740000000000002,23.72,23.69,23.64,23.59,23.53,23.48,23.39,N/A,N/A +2013,7,22,11,30,94090,93000,91950,52.72,0,4.62,7.16,8.15,9.09,9.94,10.72,11.49,12.21,13.450000000000001,153.25,155.44,156.71,157.82,158.79,159.65,160.52,161.34,163.09,23.2,23.240000000000002,23.23,23.19,23.14,23.09,23.04,22.98,22.86,N/A,N/A +2013,7,22,12,30,94090,93000,91950,56.34,0,5.66,8.03,8.89,9.65,10.34,10.97,11.57,12.13,13.16,154.63,156.25,157.29,158.26,159.17000000000002,160.04,160.93,161.77,163.70000000000002,22.94,22.84,22.76,22.66,22.57,22.490000000000002,22.41,22.330000000000002,22.22,N/A,N/A +2013,7,22,13,30,94120,93030,91980,54.050000000000004,0,6.25,7.890000000000001,8.3,8.57,8.76,8.93,9.120000000000001,9.31,9.94,157.63,158.09,158.41,158.72,159.09,159.47,160,160.54,162.12,23.85,23.41,23.22,23.02,22.84,22.66,22.490000000000002,22.330000000000002,22.01,N/A,N/A +2013,7,22,14,30,94180,93100,92050,50.17,0,5.65,7.09,7.5,7.72,7.87,7.97,8.03,8.08,8.16,155.52,155.81,155.96,156.08,156.19,156.29,156.4,156.52,156.81,25.150000000000002,24.560000000000002,24.32,24.1,23.89,23.69,23.490000000000002,23.3,22.92,N/A,N/A +2013,7,22,15,30,94150,93080,92030,45.87,0,6.22,7.78,8.2,8.43,8.57,8.67,8.73,8.78,8.83,166.92000000000002,167.1,167.17000000000002,167.25,167.33,167.4,167.49,167.57,167.77,26.41,25.71,25.45,25.21,24.98,24.77,24.560000000000002,24.37,23.97,N/A,N/A +2013,7,22,16,30,94190,93120,92080,40.06,0,5.48,6.8100000000000005,7.19,7.4,7.54,7.63,7.7,7.75,7.82,164.92000000000002,165.15,165.32,165.46,165.59,165.70000000000002,165.82,165.93,166.15,27.98,27.240000000000002,26.95,26.7,26.46,26.25,26.03,25.830000000000002,25.42,N/A,N/A +2013,7,22,17,30,94160,93100,92060,35.12,0,5.15,6.37,6.72,6.92,7.0600000000000005,7.15,7.22,7.28,7.3500000000000005,171.39000000000001,171.52,171.59,171.65,171.70000000000002,171.74,171.79,171.82,171.9,29.400000000000002,28.64,28.34,28.080000000000002,27.84,27.61,27.39,27.18,26.77,N/A,N/A +2013,7,22,18,30,94110,93040,92010,33.24,0,5.41,6.72,7.1000000000000005,7.3100000000000005,7.46,7.5600000000000005,7.63,7.69,7.7700000000000005,167.99,167.95000000000002,167.93,167.9,167.89000000000001,167.88,167.88,167.87,167.87,30.52,29.73,29.43,29.16,28.91,28.68,28.46,28.25,27.830000000000002,N/A,N/A +2013,7,22,19,30,94060,93000,91970,30.5,0,5.53,6.8500000000000005,7.22,7.43,7.57,7.67,7.75,7.8100000000000005,7.890000000000001,172.58,172.21,171.96,171.73,171.53,171.35,171.18,171.02,170.72,31.48,30.69,30.39,30.11,29.87,29.64,29.41,29.2,28.78,N/A,N/A +2013,7,22,20,30,94020,92970,91940,28.05,0,5.84,7.22,7.61,7.82,7.96,8.05,8.120000000000001,8.18,8.24,163.35,163.59,163.70000000000002,163.77,163.82,163.84,163.87,163.89000000000001,163.93,32.21,31.42,31.12,30.85,30.61,30.38,30.150000000000002,29.94,29.52,N/A,N/A +2013,7,22,21,30,93950,92900,91880,28.35,0,5.47,6.8,7.18,7.390000000000001,7.54,7.65,7.73,7.79,7.890000000000001,165.56,165.45000000000002,165.37,165.27,165.18,165.09,165,164.92000000000002,164.75,32.67,31.91,31.63,31.37,31.13,30.91,30.68,30.48,30.060000000000002,N/A,N/A +2013,7,22,22,30,93890,92840,91820,26.330000000000002,0,6.05,7.55,7.94,8.14,8.27,8.36,8.42,8.47,8.53,158.9,159.14000000000001,159.21,159.22,159.21,159.20000000000002,159.16,159.14000000000001,159.07,32.97,32.27,32.01,31.77,31.54,31.32,31.1,30.900000000000002,30.490000000000002,N/A,N/A +2013,7,22,23,30,93870,92820,91800,27.97,0,6.51,8.19,8.64,8.88,9.040000000000001,9.16,9.24,9.3,9.38,153.71,153.93,153.97,153.95000000000002,153.92000000000002,153.89000000000001,153.85,153.81,153.73,32.83,32.230000000000004,32,31.77,31.55,31.330000000000002,31.12,30.92,30.52,N/A,N/A +2013,7,23,0,30,93840,92790,91770,30.080000000000002,0,6.34,8.14,8.6,8.870000000000001,9.06,9.200000000000001,9.31,9.39,9.5,155.54,155.23,155.09,154.93,154.8,154.68,154.57,154.47,154.29,32.43,32,31.8,31.580000000000002,31.38,31.18,30.98,30.79,30.39,N/A,N/A +2013,7,23,1,30,93840,92780,91760,32.9,0,5.76,8.11,8.84,9.4,9.83,10.17,10.450000000000001,10.68,11,154.13,153.85,153.66,153.48,153.33,153.20000000000002,153.09,152.99,152.78,31.41,31.28,31.16,31.01,30.85,30.68,30.5,30.330000000000002,29.96,N/A,N/A +2013,7,23,2,30,93870,92820,91800,34.64,0,5.26,7.7,8.52,9.21,9.790000000000001,10.3,10.75,11.17,11.85,150.16,149.91,149.79,149.71,149.71,149.76,149.87,149.98,150.29,30.7,30.650000000000002,30.57,30.46,30.34,30.21,30.060000000000002,29.92,29.6,N/A,N/A +2013,7,23,3,30,93920,92860,91840,37.410000000000004,0,3.99,6.22,7.01,7.7,8.28,8.8,9.24,9.64,10.24,151.36,151.58,151.77,151.95000000000002,152.20000000000002,152.51,152.96,153.41,154.66,29.85,29.900000000000002,29.88,29.830000000000002,29.76,29.68,29.580000000000002,29.48,29.22,N/A,N/A +2013,7,23,4,30,93930,92870,91840,38.42,0,3.92,6.3500000000000005,7.3,8.18,8.96,9.69,10.38,11.02,12.22,147.17000000000002,147.64000000000001,148.06,148.66,149.44,150.33,151.37,152.41,154.57,29.2,29.32,29.330000000000002,29.310000000000002,29.28,29.240000000000002,29.19,29.13,28.98,N/A,N/A +2013,7,23,5,30,93970,92900,91880,38.02,0,4.62,7.28,8.290000000000001,9.25,10.120000000000001,10.93,11.69,12.39,13.58,151.79,153.29,154.31,155.38,156.32,157.18,157.82,158.38,159.35,28.830000000000002,28.95,28.97,28.96,28.94,28.900000000000002,28.84,28.78,28.6,N/A,N/A +2013,7,23,6,30,94020,92950,91920,37.62,0,5.23,8.03,9.08,10.040000000000001,10.94,11.790000000000001,12.59,13.33,14.6,156.79,157.93,158.70000000000002,159.57,160.5,161.45000000000002,162.44,163.38,165.12,28.44,28.59,28.62,28.64,28.66,28.66,28.66,28.650000000000002,28.55,N/A,N/A +2013,7,23,7,30,94050,92980,91950,39.32,0,5.4,8.15,9.18,10.15,11.07,11.96,12.83,13.65,15.16,166.17000000000002,166.12,166.07,165.93,165.85,165.82,165.98,166.17000000000002,166.88,27.82,27.94,27.96,27.98,27.98,27.990000000000002,27.97,27.95,27.84,N/A,N/A +2013,7,23,8,30,94090,93020,91980,46.410000000000004,0,4.07,6.43,7.34,8.2,9.01,9.77,10.58,11.36,13,145.04,146.07,146.77,147.61,148.68,149.83,151.29,152.74,155.92000000000002,26.36,26.400000000000002,26.36,26.29,26.19,26.07,25.93,25.79,25.490000000000002,N/A,N/A +2013,7,23,9,30,94090,93020,91980,60.5,0,5.93,8.41,9.27,10.06,10.77,11.44,12.120000000000001,12.76,14.040000000000001,149.20000000000002,150.87,151.95000000000002,153.03,154.03,154.96,155.87,156.73,158.41,25.57,25.46,25.37,25.25,25.13,25.01,24.87,24.75,24.46,N/A,N/A +2013,7,23,10,30,94070,93000,91960,67.72,0,6.8100000000000005,9.41,10.28,11.01,11.66,12.25,12.83,13.36,14.41,159.86,160.78,161.34,161.88,162.4,162.9,163.42000000000002,163.9,164.97,25.03,24.88,24.77,24.64,24.5,24.36,24.22,24.09,23.8,N/A,N/A +2013,7,23,11,30,94120,93040,91990,72.31,0,5.71,8.01,8.78,9.44,10.03,10.57,11.1,11.6,12.57,152.57,153.91,154.77,155.55,156.31,157.02,157.77,158.48,160.05,24.51,24.35,24.23,24.1,23.96,23.81,23.66,23.53,23.23,N/A,N/A +2013,7,23,12,30,94120,93040,91990,75.85000000000001,0,5.58,7.640000000000001,8.33,8.93,9.450000000000001,9.92,10.39,10.83,11.73,153.96,155.32,156.16,156.94,157.68,158.37,159.1,159.79,161.32,24.07,23.84,23.71,23.55,23.39,23.240000000000002,23.080000000000002,22.94,22.650000000000002,N/A,N/A +2013,7,23,13,30,94130,93050,92010,73.28,0,6.41,8.08,8.53,8.790000000000001,8.96,9.07,9.16,9.23,9.370000000000001,154.8,155.4,155.73,156.02,156.29,156.54,156.83,157.11,157.85,24.740000000000002,24.25,24.05,23.84,23.64,23.45,23.26,23.080000000000002,22.71,N/A,N/A +2013,7,23,14,30,94160,93080,92040,67.55,0,6.42,8.040000000000001,8.45,8.67,8.8,8.88,8.91,8.92,8.91,163.67000000000002,163.96,164.11,164.22,164.32,164.42000000000002,164.51,164.61,164.82,25.91,25.28,25.04,24.810000000000002,24.59,24.39,24.19,24,23.62,N/A,N/A +2013,7,23,15,30,94190,93120,92080,60,0,5.39,6.69,7.05,7.24,7.36,7.43,7.47,7.5,7.51,165.27,165.53,165.67000000000002,165.78,165.88,165.95000000000002,166.04,166.12,166.27,27.45,26.740000000000002,26.47,26.22,25.990000000000002,25.78,25.57,25.38,24.98,N/A,N/A +2013,7,23,16,30,94140,93070,92040,51.480000000000004,0,5.24,6.48,6.82,6.99,7.1000000000000005,7.16,7.2,7.23,7.24,166.88,167.04,167.11,167.16,167.21,167.24,167.28,167.32,167.4,29.05,28.29,28,27.740000000000002,27.51,27.29,27.07,26.87,26.47,N/A,N/A +2013,7,23,17,30,94100,93040,92010,43.54,0,4.83,5.96,6.28,6.44,6.55,6.62,6.67,6.7,6.74,165.45000000000002,165.71,165.85,165.95000000000002,166.02,166.09,166.15,166.21,166.31,30.59,29.810000000000002,29.52,29.25,29.01,28.79,28.560000000000002,28.36,27.95,N/A,N/A +2013,7,23,18,30,94060,93010,91980,38.32,0,5.09,6.28,6.62,6.8,6.92,7.01,7.07,7.11,7.17,165.41,165.6,165.73,165.83,165.92000000000002,166,166.08,166.15,166.29,31.88,31.080000000000002,30.78,30.5,30.26,30.03,29.8,29.59,29.17,N/A,N/A +2013,7,23,19,30,94010,92960,91940,35.22,0,4.98,6.13,6.44,6.6000000000000005,6.71,6.78,6.83,6.86,6.91,162.73,163.16,163.4,163.6,163.77,163.92000000000002,164.06,164.20000000000002,164.44,32.78,31.98,31.68,31.41,31.16,30.93,30.71,30.5,30.080000000000002,N/A,N/A +2013,7,23,20,30,93970,92920,91900,32.01,0,4.98,6.13,6.45,6.61,6.72,6.79,6.84,6.88,6.93,161.11,161.09,161.05,161,160.95000000000002,160.89000000000001,160.84,160.8,160.70000000000002,33.56,32.78,32.480000000000004,32.21,31.970000000000002,31.740000000000002,31.52,31.310000000000002,30.89,N/A,N/A +2013,7,23,21,30,93900,92860,91840,31.5,0,5.12,6.3100000000000005,6.62,6.78,6.88,6.94,6.99,7.0200000000000005,7.05,163.36,163.03,162.83,162.64000000000001,162.47,162.31,162.15,162.01,161.73,34.03,33.27,32.99,32.730000000000004,32.49,32.27,32.05,31.84,31.43,N/A,N/A +2013,7,23,22,30,93850,92810,91800,31.990000000000002,0,5.28,6.53,6.88,7.05,7.17,7.26,7.32,7.36,7.42,165.53,164.96,164.6,164.25,163.95000000000002,163.67000000000002,163.42000000000002,163.17000000000002,162.70000000000002,34.27,33.57,33.3,33.04,32.81,32.6,32.38,32.17,31.76,N/A,N/A +2013,7,23,23,30,93800,92760,91750,30.900000000000002,0,5.72,7.17,7.58,7.8100000000000005,7.97,8.09,8.17,8.24,8.34,158.4,158.13,158,157.88,157.77,157.66,157.58,157.5,157.35,34.35,33.74,33.5,33.26,33.04,32.82,32.61,32.410000000000004,32,N/A,N/A +2013,7,24,0,30,93790,92740,91730,33.56,0,5.8500000000000005,7.49,7.94,8.24,8.45,8.61,8.73,8.83,8.97,146.11,146.43,146.66,146.9,147.13,147.35,147.57,147.79,148.22,33.82,33.36,33.160000000000004,32.94,32.74,32.53,32.33,32.13,31.73,N/A,N/A +2013,7,24,1,30,93770,92720,91710,37.1,0,5.43,7.49,8.11,8.58,8.94,9.23,9.47,9.67,9.98,139.45000000000002,139.77,140.03,140.34,140.68,141.06,141.49,141.91,142.84,32.67,32.480000000000004,32.34,32.18,32.01,31.84,31.66,31.490000000000002,31.12,N/A,N/A +2013,7,24,2,30,93820,92770,91760,38.59,0,5.09,7.3,8,8.52,8.92,9.24,9.49,9.700000000000001,10.03,142.99,143.24,143.42000000000002,143.73,144.13,144.62,145.21,145.82,147.25,31.85,31.76,31.67,31.55,31.41,31.28,31.13,30.990000000000002,30.68,N/A,N/A +2013,7,24,3,30,93870,92810,91790,34.480000000000004,0,6.55,9.35,10.34,11.18,11.91,12.56,13.14,13.67,14.59,153.18,153.61,153.86,154.13,154.4,154.66,154.91,155.13,155.51,31.150000000000002,31.1,31.02,30.92,30.82,30.7,30.57,30.45,30.17,N/A,N/A +2013,7,24,4,30,93900,92840,91820,33.74,0,4.23,6.640000000000001,7.61,8.51,9.34,10.15,10.950000000000001,11.700000000000001,13.06,146.48,147.42000000000002,148.07,148.83,149.70000000000002,150.68,151.71,152.72,154.42000000000002,29.93,30.03,30.04,30.02,29.990000000000002,29.96,29.91,29.86,29.71,N/A,N/A +2013,7,24,5,30,93940,92880,91850,27.72,0,5.0600000000000005,7.61,8.55,9.39,10.16,10.89,11.620000000000001,12.31,13.64,154.23,154.69,154.93,154.96,154.91,154.8,154.77,154.79,155.42000000000002,29.46,29.53,29.52,29.47,29.42,29.36,29.29,29.23,29.11,N/A,N/A +2013,7,24,6,30,93970,92900,91870,25.17,0,4.53,7.19,8.25,9.27,10.21,11.09,11.94,12.75,14.08,148.42000000000002,150.13,151.23,152.3,153.36,154.4,155.55,156.67000000000002,159.03,28.41,28.580000000000002,28.63,28.67,28.7,28.73,28.77,28.8,28.84,N/A,N/A +2013,7,24,7,30,94020,92950,91920,25.94,0,4.29,7.08,8.26,9.43,10.52,11.540000000000001,12.46,13.32,14.47,149.54,152.82,154.86,156.71,158.38,159.93,161.39000000000001,162.76,165.53,27.78,28.080000000000002,28.2,28.330000000000002,28.42,28.5,28.53,28.55,28.48,N/A,N/A +2013,7,24,8,30,94010,92940,91910,27.72,0,3.61,6.37,7.55,8.790000000000001,9.92,10.97,11.89,12.73,13.77,155.68,159.25,161.25,162.76,164.04,165.16,166.28,167.34,169.22,27.01,27.37,27.51,27.650000000000002,27.79,27.91,28.02,28.12,28.2,N/A,N/A +2013,7,24,9,30,94030,92950,91910,32.08,0,4.03,6.640000000000001,7.75,8.86,9.950000000000001,11.03,12.14,13.22,15.19,141.95000000000002,146.54,149.25,151.46,153.42000000000002,155.22,157.02,158.76,162.21,25.75,25.93,25.96,25.96,25.93,25.89,25.830000000000002,25.77,25.64,N/A,N/A +2013,7,24,10,30,94050,92970,91930,39.75,0,3.79,6.2700000000000005,7.3,8.3,9.28,10.22,11.18,12.1,13.66,138.68,144.39000000000001,147.76,150.43,152.79,154.95000000000002,157.13,159.22,163.67000000000002,24.650000000000002,24.79,24.8,24.79,24.78,24.77,24.77,24.77,24.830000000000002,N/A,N/A +2013,7,24,11,30,94060,92970,91930,44.46,0,3.0500000000000003,5.38,6.37,7.34,8.24,9.09,9.91,10.700000000000001,11.98,143.79,149.39000000000001,152.51,154.62,156.33,157.81,159.46,161.09,165.12,23.73,23.89,23.92,23.93,23.95,23.96,24.01,24.060000000000002,24.25,N/A,N/A +2013,7,24,12,30,94090,93000,91950,47.56,0,2.21,4.23,5.15,6.09,6.95,7.75,8.52,9.24,10.46,132.75,143.21,148.73,152.15,154.69,156.72,158.63,160.47,164.54,23.13,23.27,23.3,23.32,23.34,23.35,23.38,23.42,23.56,N/A,N/A +2013,7,24,13,30,94140,93050,92010,41.7,0,3.37,4.3500000000000005,4.68,4.93,5.13,5.3100000000000005,5.5200000000000005,5.74,6.36,156.38,157.12,157.46,157.91,158.43,158.97,159.65,160.31,161.92000000000002,24.89,24.47,24.28,24.09,23.900000000000002,23.73,23.55,23.39,23.07,N/A,N/A +2013,7,24,14,30,94180,93100,92060,38.76,0,3.74,4.69,4.98,5.15,5.26,5.33,5.39,5.44,5.5200000000000005,150.88,151.56,151.89000000000001,152.18,152.48,152.76,153.09,153.41,154.20000000000002,26.3,25.740000000000002,25.51,25.29,25.080000000000002,24.89,24.69,24.51,24.14,N/A,N/A +2013,7,24,15,30,94160,93090,92050,35.800000000000004,0,4.07,5.08,5.39,5.5600000000000005,5.68,5.75,5.8,5.84,5.89,172.83,172.88,172.83,172.83,172.84,172.85,172.88,172.9,172.99,28.05,27.400000000000002,27.14,26.91,26.69,26.48,26.27,26.09,25.69,N/A,N/A +2013,7,24,16,30,94180,93110,92080,32.07,0,4.34,5.37,5.66,5.8100000000000005,5.9,5.96,6,6.0200000000000005,6.04,168.29,168.17000000000002,168.11,168.02,167.93,167.84,167.76,167.68,167.5,29.67,28.96,28.68,28.43,28.2,27.990000000000002,27.77,27.580000000000002,27.18,N/A,N/A +2013,7,24,17,30,94160,93100,92070,29.57,0,4,4.9,5.15,5.2700000000000005,5.3500000000000005,5.4,5.44,5.46,5.47,167.11,166.9,166.77,166.63,166.5,166.37,166.25,166.13,165.92000000000002,31.12,30.400000000000002,30.11,29.85,29.61,29.39,29.17,28.97,28.560000000000002,N/A,N/A +2013,7,24,18,30,94120,93070,92040,26.8,0,4.11,5.04,5.2700000000000005,5.39,5.46,5.51,5.54,5.5600000000000005,5.57,163.39000000000001,163.32,163.28,163.20000000000002,163.11,163.03,162.94,162.86,162.67000000000002,32.35,31.62,31.32,31.060000000000002,30.82,30.6,30.37,30.17,29.76,N/A,N/A +2013,7,24,19,30,94110,93050,92030,24.67,0,4.3,5.29,5.5600000000000005,5.71,5.8100000000000005,5.88,5.93,5.97,6.0200000000000005,155.29,155.06,154.86,154.64000000000001,154.44,154.25,154.04,153.86,153.49,33.51,32.76,32.47,32.19,31.95,31.73,31.5,31.29,30.87,N/A,N/A +2013,7,24,20,30,94060,93010,91990,23.16,0,4.15,5.1000000000000005,5.37,5.51,5.61,5.68,5.73,5.7700000000000005,5.83,147.84,147.98,148.03,148.02,148,147.96,147.91,147.86,147.74,34.32,33.58,33.29,33.02,32.78,32.56,32.33,32.12,31.7,N/A,N/A +2013,7,24,21,30,94000,92950,91940,23,0,4.64,5.73,6.03,6.19,6.3,6.38,6.43,6.48,6.54,141.02,141.15,141.20000000000002,141.21,141.21,141.20000000000002,141.18,141.17000000000002,141.13,34.86,34.12,33.84,33.57,33.34,33.11,32.89,32.68,32.27,N/A,N/A +2013,7,24,22,30,93950,92900,91890,21.47,0,4.86,6.05,6.37,6.55,6.67,6.76,6.82,6.87,6.93,143.47,143.46,143.44,143.4,143.36,143.33,143.3,143.28,143.23,35.11,34.42,34.160000000000004,33.910000000000004,33.68,33.46,33.24,33.03,32.62,N/A,N/A +2013,7,24,23,30,93930,92880,91870,20.7,0,4.96,6.2,6.54,6.73,6.86,6.95,7.01,7.0600000000000005,7.13,147.05,146.97,146.88,146.77,146.66,146.55,146.45000000000002,146.35,146.16,34.980000000000004,34.39,34.160000000000004,33.92,33.7,33.49,33.28,33.08,32.67,N/A,N/A +2013,7,25,0,30,93940,92890,91880,20.35,0,5.08,6.45,6.82,7.0200000000000005,7.15,7.24,7.3,7.3500000000000005,7.390000000000001,143.68,143.78,143.78,143.74,143.71,143.67000000000002,143.64000000000001,143.6,143.54,34.45,34.04,33.85,33.64,33.43,33.24,33.03,32.84,32.45,N/A,N/A +2013,7,25,1,30,93970,92920,91900,24.09,0,3.68,5.84,6.53,7.04,7.43,7.74,7.97,8.15,8.39,152.47,151.68,151.23,150.9,150.67000000000002,150.51,150.39000000000001,150.29,150.18,32.84,32.97,32.94,32.84,32.72,32.56,32.39,32.22,31.84,N/A,N/A +2013,7,25,2,30,94030,92980,91960,24.54,0,4.59,7.05,7.87,8.51,8.97,9.28,9.43,9.5,9.33,161.5,160.63,160.08,159.6,159.33,159.21,159.27,159.39000000000001,159.93,31.61,31.810000000000002,31.84,31.82,31.77,31.69,31.57,31.45,31.14,N/A,N/A +2013,7,25,3,30,94090,93030,92010,23.38,0,4.65,7.36,8.36,9.23,9.870000000000001,10.34,10.49,10.51,9.81,164.23,163.9,163.61,163.27,163.09,163.01,163.11,163.25,163.66,30.560000000000002,30.89,30.990000000000002,31.060000000000002,31.080000000000002,31.080000000000002,30.990000000000002,30.900000000000002,30.55,N/A,N/A +2013,7,25,4,30,94140,93080,92050,21.63,0,4.49,7.09,7.930000000000001,8.53,8.870000000000001,9.040000000000001,9.02,8.94,8.65,162.94,163.4,163.62,163.69,163.70000000000002,163.66,163.5,163.31,162.52,29.6,30.060000000000002,30.21,30.310000000000002,30.330000000000002,30.3,30.19,30.07,29.71,N/A,N/A +2013,7,25,5,30,94160,93090,92060,21.330000000000002,0,3.85,6.76,7.68,8.15,8.33,8.32,8.24,8.15,8.02,170.23,169.5,169.12,168.84,168.53,168.22,167.54,166.84,164.39000000000001,28.67,29.71,30.05,30.22,30.21,30.080000000000002,29.88,29.68,29.25,N/A,N/A +2013,7,25,6,30,94190,93120,92090,22.240000000000002,0,3.7800000000000002,6.65,7.59,8.32,8.790000000000001,9.1,9.25,9.36,9.46,159.75,159.67000000000002,159.65,159.75,159.96,160.22,160.43,160.62,160.78,27.91,28.810000000000002,29.11,29.32,29.38,29.38,29.26,29.12,28.76,N/A,N/A +2013,7,25,7,30,94220,93150,92110,28.44,0,1.75,4.47,5.64,6.5200000000000005,7.21,7.7700000000000005,8.18,8.53,8.9,166.39000000000001,164.06,162.57,161.51,160.75,160.17000000000002,159.92000000000002,159.76,159.91,26.25,27.59,27.96,28.21,28.35,28.44,28.46,28.46,28.32,N/A,N/A +2013,7,25,8,30,94270,93190,92160,30.3,0,2.0300000000000002,4.44,5.32,6.1000000000000005,6.75,7.32,7.82,8.27,8.94,159.07,158.22,157.86,157.71,157.99,158.48,159.32,160.18,161.71,25.740000000000002,27.14,27.46,27.61,27.67,27.7,27.71,27.71,27.66,N/A,N/A +2013,7,25,9,30,94290,93210,92170,31.87,0,2.99,4.94,5.28,5.71,6.22,6.78,7.29,7.75,8.45,155.52,149.96,148.69,150.42000000000002,152.62,155.1,156.74,158.09,159.6,25.68,26.86,27.05,27.13,27.16,27.16,27.13,27.09,26.95,N/A,N/A +2013,7,25,10,30,94310,93220,92180,35.86,0,3.0500000000000003,5.0600000000000005,5.51,6.01,6.5600000000000005,7.140000000000001,7.66,8.15,8.9,141.93,142.84,144.34,147.08,149.61,152.01,153.54,154.82,156.38,24.85,25.85,26.09,26.25,26.35,26.42,26.42,26.42,26.310000000000002,N/A,N/A +2013,7,25,11,30,94350,93270,92220,40.95,0,3.36,5.3100000000000005,5.86,6.54,7.22,7.88,8.51,9.08,9.78,144.4,144.38,145.38,147.67000000000002,150.14000000000001,152.67000000000002,155.08,157.31,160.5,24.12,24.77,24.900000000000002,24.92,24.88,24.810000000000002,24.740000000000002,24.68,24.61,N/A,N/A +2013,7,25,12,30,94370,93280,92230,50.300000000000004,0,2.89,4.57,5.12,5.75,6.41,7.09,7.71,8.27,8.870000000000001,131.41,135.49,138.74,142.84,146.71,150.42000000000002,153.37,155.99,159.17000000000002,22.78,23.11,23.2,23.29,23.36,23.41,23.46,23.5,23.63,N/A,N/A +2013,7,25,13,30,94410,93320,92270,53.5,0,2.96,3.73,3.99,4.21,4.42,4.62,5.07,5.54,6.44,143.67000000000002,146.03,147.57,149.19,150.82,152.43,154.93,157.52,161.61,24.28,23.89,23.71,23.54,23.37,23.2,23.07,22.96,22.89,N/A,N/A +2013,7,25,14,30,94430,93350,92310,50.36,0,3.38,4.19,4.41,4.5200000000000005,4.57,4.61,4.61,4.62,4.66,164.06,164.47,164.68,164.91,165.17000000000002,165.45000000000002,165.83,166.19,167.37,25.98,25.44,25.22,25.01,24.82,24.63,24.45,24.28,23.94,N/A,N/A +2013,7,25,15,30,94460,93380,92340,44.49,0,3.14,3.87,4.08,4.19,4.26,4.3,4.33,4.3500000000000005,4.36,176.77,176.76,176.81,176.86,176.92000000000002,176.98,177.05,177.11,177.23,27.900000000000002,27.27,27.02,26.78,26.57,26.37,26.16,25.98,25.59,N/A,N/A +2013,7,25,16,30,94440,93370,92330,37.9,0,3.5100000000000002,4.2700000000000005,4.46,4.55,4.61,4.64,4.65,4.65,4.64,175.68,174.93,174.44,173.98,173.57,173.18,172.79,172.43,171.69,29.34,28.66,28.39,28.14,27.91,27.7,27.48,27.28,26.88,N/A,N/A +2013,7,25,17,30,94420,93360,92320,31.43,0,3.0100000000000002,3.67,3.85,3.95,4.03,4.07,4.11,4.14,4.17,167.81,167.21,166.88,166.59,166.31,166.04,165.77,165.54,165.03,30.68,30.01,29.72,29.46,29.22,29,28.78,28.580000000000002,28.17,N/A,N/A +2013,7,25,18,30,94400,93340,92310,28.59,0,2.98,3.64,3.83,3.94,4.01,4.07,4.11,4.14,4.2,155.16,155.16,155.12,155.02,154.91,154.8,154.67000000000002,154.55,154.29,32,31.32,31.03,30.76,30.52,30.3,30.080000000000002,29.87,29.46,N/A,N/A +2013,7,25,19,30,94350,93300,92280,28.1,0,3.0300000000000002,3.7,3.89,3.99,4.07,4.12,4.16,4.2,4.25,147.67000000000002,147.98,148.05,148.04,148.01,147.97,147.92000000000002,147.87,147.74,33.02,32.32,32.03,31.76,31.52,31.3,31.080000000000002,30.87,30.45,N/A,N/A +2013,7,25,20,30,94310,93250,92230,25.330000000000002,0,3.5,4.2700000000000005,4.49,4.61,4.69,4.75,4.79,4.82,4.88,144.88,145.51,145.8,145.96,146.07,146.14000000000001,146.20000000000002,146.24,146.29,33.96,33.25,32.96,32.7,32.46,32.230000000000004,32.01,31.8,31.39,N/A,N/A +2013,7,25,21,30,94240,93190,92180,20.42,0,3.92,4.78,5.01,5.12,5.2,5.25,5.28,5.3100000000000005,5.34,137.64000000000001,138.37,138.76,139,139.20000000000002,139.35,139.49,139.61,139.82,34.730000000000004,34.02,33.74,33.480000000000004,33.25,33.03,32.81,32.6,32.2,N/A,N/A +2013,7,25,22,30,94180,93130,92120,21.81,0,4.0600000000000005,5,5.26,5.41,5.51,5.59,5.64,5.68,5.74,135.98,136.88,137.42000000000002,137.84,138.18,138.48,138.76,139.01,139.46,34.99,34.32,34.06,33.81,33.58,33.36,33.14,32.94,32.52,N/A,N/A +2013,7,25,23,30,94120,93070,92060,19.990000000000002,0,3.93,4.87,5.13,5.29,5.4,5.48,5.53,5.58,5.64,142.74,143.54,143.97,144.38,144.72,145.02,145.32,145.58,146.09,35.08,34.5,34.27,34.03,33.82,33.6,33.39,33.19,32.78,N/A,N/A +2013,7,26,0,30,94110,93060,92050,21.61,0,4.12,5.18,5.47,5.66,5.79,5.89,5.96,6.0200000000000005,6.11,145.53,146.38,146.85,147.29,147.67000000000002,148.02,148.35,148.65,149.18,34.660000000000004,34.22,34.03,33.81,33.61,33.410000000000004,33.2,33.01,32.61,N/A,N/A +2013,7,26,1,30,94080,93030,92010,24.92,0,4.37,6.54,7.18,7.55,7.78,7.890000000000001,7.930000000000001,7.94,7.890000000000001,157.93,157.06,156.63,156.34,156.17000000000002,156.08,156.04,156.02,156.08,33.37,33.39,33.32,33.19,33.04,32.87,32.69,32.5,32.12,N/A,N/A +2013,7,26,2,30,94120,93070,92050,28.6,0,5.1000000000000005,7.54,8.35,9.03,9.56,10,10.32,10.57,10.84,161.95000000000002,161.66,161.45000000000002,161.21,161.05,160.94,160.92000000000002,160.93,161.08,32.15,32.21,32.17,32.1,32.01,31.900000000000002,31.76,31.62,31.3,N/A,N/A +2013,7,26,3,30,94170,93110,92090,31.75,0,4.09,6.3500000000000005,7.1000000000000005,7.72,8.23,8.66,9.05,9.4,10.03,169.16,169.32,169.26,168.85,168.35,167.78,167.26,166.79,166.25,30.84,31.03,31.05,31.01,30.93,30.82,30.68,30.54,30.240000000000002,N/A,N/A +2013,7,26,4,30,94190,93130,92100,33.3,0,4.79,7.42,8.4,9.31,10.120000000000001,10.86,11.52,12.13,12.99,164.83,164.72,164.52,164.15,163.83,163.55,163.4,163.32,163.52,29.84,30,30.02,30,29.96,29.900000000000002,29.82,29.75,29.57,N/A,N/A +2013,7,26,5,30,94210,93150,92120,36.22,0,4.83,7.46,8.44,9.28,10.01,10.66,11.23,11.74,12.530000000000001,168.35,167.72,167.18,166.42000000000002,165.84,165.39000000000001,165.35,165.46,166.5,28.98,29.240000000000002,29.330000000000002,29.38,29.39,29.38,29.310000000000002,29.25,29.05,N/A,N/A +2013,7,26,6,30,94230,93160,92130,39.800000000000004,0,5.09,7.8500000000000005,8.92,9.92,10.81,11.620000000000001,12.27,12.85,13.43,159.37,160.26,160.82,161.28,161.9,162.62,163.5,164.38,166.15,28.41,28.62,28.69,28.740000000000002,28.77,28.8,28.8,28.79,28.67,N/A,N/A +2013,7,26,7,30,94280,93210,92180,42.39,0,4.53,7.1000000000000005,8.08,8.950000000000001,9.74,10.5,11.24,11.94,13.16,160.06,160.75,160.99,160.85,160.71,160.56,160.67000000000002,160.86,161.72,27.84,28.060000000000002,28.11,28.14,28.16,28.17,28.18,28.19,28.14,N/A,N/A +2013,7,26,8,30,94280,93210,92180,39.81,0,5.1000000000000005,7.92,9.040000000000001,10.1,11.08,12.02,12.84,13.58,14.530000000000001,155.66,156.52,156.99,157.3,157.74,158.27,159.06,159.89000000000001,162.04,27.1,27.37,27.46,27.54,27.63,27.71,27.8,27.88,27.990000000000002,N/A,N/A +2013,7,26,9,30,94300,93230,92190,36.300000000000004,0,5.22,7.92,8.950000000000001,9.9,10.74,11.51,12.24,12.91,14.01,156.20000000000002,157.36,157.94,158.3,158.65,158.99,159.59,160.22,162.36,26.46,26.63,26.66,26.68,26.68,26.67,26.66,26.650000000000002,26.64,N/A,N/A +2013,7,26,10,30,94290,93200,92160,42.410000000000004,0,2.98,5.45,6.5200000000000005,7.62,8.65,9.620000000000001,10.48,11.28,12.46,139.39000000000001,147.43,151.77,154.43,156.3,157.70000000000002,158.91,160.04,162.79,24.64,24.900000000000002,24.95,24.98,25,25.01,25.03,25.05,25.2,N/A,N/A +2013,7,26,11,30,94350,93260,92210,48.09,0,3.06,5.4,6.41,7.42,8.35,9.22,10.05,10.83,12.16,134.43,143.07,147.95000000000002,151.12,153.56,155.54,157.3,158.93,162.03,23.71,23.89,23.91,23.91,23.91,23.900000000000002,23.92,23.93,24.03,N/A,N/A +2013,7,26,12,30,94360,93270,92220,55.22,0,1.8,3.61,4.39,5.18,5.93,6.66,7.390000000000001,8.1,9.47,119.95,132.1,138.89000000000001,143.21,146.65,149.56,152.16,154.62,159.38,23.05,23.14,23.12,23.07,23.02,22.98,22.94,22.91,22.91,N/A,N/A +2013,7,26,13,30,94390,93310,92260,56.33,0,3.0700000000000003,4.0600000000000005,4.43,4.72,4.95,5.15,5.33,5.49,6.04,147.17000000000002,148.92000000000002,149.98,151,151.93,152.81,153.65,154.43,156.69,24.69,24.26,24.07,23.87,23.68,23.51,23.32,23.16,22.81,N/A,N/A +2013,7,26,14,30,94410,93330,92290,54.92,0,3.34,4.28,4.61,4.82,4.98,5.1000000000000005,5.2,5.28,5.43,148.93,150.15,150.82,151.37,151.86,152.3,152.73,153.14000000000001,154.02,26.63,26.060000000000002,25.830000000000002,25.6,25.400000000000002,25.2,25,24.82,24.44,N/A,N/A +2013,7,26,15,30,94390,93320,92280,51.550000000000004,0,3.6,4.44,4.68,4.8100000000000005,4.9,4.95,4.99,5.0200000000000005,5.04,170.34,170.14000000000001,170.1,170.05,170,169.96,169.93,169.89000000000001,169.83,27.88,27.23,26.98,26.740000000000002,26.52,26.32,26.11,25.92,25.54,N/A,N/A +2013,7,26,16,30,94360,93300,92260,44.21,0,3.72,4.53,4.75,4.86,4.92,4.95,4.97,4.98,4.97,169.4,169.9,170.17000000000002,170.41,170.62,170.81,171,171.17000000000002,171.51,29.84,29.14,28.87,28.61,28.38,28.17,27.96,27.76,27.37,N/A,N/A +2013,7,26,17,30,94320,93260,92230,36.43,0,2.81,3.37,3.5,3.56,3.59,3.6,3.6,3.59,3.56,180.96,180.39000000000001,180.09,179.82,179.59,179.38,179.19,179.01,178.69,31.61,30.94,30.66,30.400000000000002,30.17,29.95,29.73,29.53,29.13,N/A,N/A +2013,7,26,18,30,94290,93230,92210,32.09,0,1.6400000000000001,1.87,1.9100000000000001,1.9100000000000001,1.9100000000000001,1.9000000000000001,1.8800000000000001,1.87,1.83,196.96,195.06,194,193.08,192.32,191.66,191.01,190.4,189.26,33.05,32.44,32.15,31.89,31.66,31.44,31.220000000000002,31.02,30.61,N/A,N/A +2013,7,26,19,30,94240,93190,92170,27.52,0,0.78,0.74,0.67,0.6,0.54,0.49,0.44,0.4,0.33,268.2,266.06,264.49,262.32,260.03000000000003,257.52,254.33,251.11,242.59,34.42,33.83,33.56,33.29,33.06,32.84,32.62,32.42,32,N/A,N/A +2013,7,26,20,30,94180,93130,92120,23.72,0,0.8,0.98,1.03,1.07,1.1,1.12,1.1400000000000001,1.16,1.19,51.26,52.64,53.06,53.19,53.31,53.410000000000004,53.53,53.64,53.85,35.56,34.97,34.69,34.43,34.19,33.97,33.74,33.53,33.12,N/A,N/A +2013,7,26,21,30,94120,93080,92070,20.3,0,1.3,1.55,1.61,1.6500000000000001,1.68,1.7,1.72,1.74,1.77,17.8,18.67,19.3,19.86,20.38,20.91,21.41,21.88,22.72,36.1,35.49,35.230000000000004,34.980000000000004,34.75,34.54,34.32,34.12,33.71,N/A,N/A +2013,7,26,22,30,94050,93010,92000,21.35,0,1.3,1.48,1.51,1.5,1.49,1.48,1.47,1.46,1.44,93.38,93.79,93.84,93.97,94.06,94.10000000000001,94.10000000000001,94.08,94.05,36.29,35.71,35.47,35.230000000000004,35.02,34.81,34.6,34.4,34.01,N/A,N/A +2013,7,26,23,30,94000,92960,91950,22.11,0,1.36,1.52,1.53,1.5,1.47,1.44,1.4000000000000001,1.37,1.29,123.23,124.62,125.15,125.4,125.5,125.49000000000001,125.42,125.33,125.01,36.49,35.96,35.730000000000004,35.5,35.28,35.07,34.87,34.660000000000004,34.26,N/A,N/A +2013,7,27,0,30,93970,92930,91920,21.59,0,1.41,1.57,1.57,1.55,1.53,1.5,1.47,1.44,1.3800000000000001,149.85,148.12,147.09,146.17000000000002,145.36,144.57,143.8,143.07,141.61,36.31,35.89,35.7,35.480000000000004,35.29,35.09,34.89,34.69,34.31,N/A,N/A +2013,7,27,1,30,94010,92970,91960,26.13,0,0.67,1.46,1.6600000000000001,1.6400000000000001,1.6600000000000001,1.72,1.77,1.81,1.87,122.32000000000001,125.26,128.43,134.39000000000001,137.89000000000001,139.47,140.66,141.59,142.38,35.52,35.64,35.52,35.31,35.13,34.94,34.75,34.56,34.17,N/A,N/A +2013,7,27,2,30,94040,93000,91990,27.71,0,1.6600000000000001,2.73,2.87,3.08,3.27,3.45,3.62,3.8000000000000003,4.08,120.86,118.47,117.63,117.94,118.60000000000001,119.69,120.67,121.58,123.10000000000001,34.57,34.95,34.93,34.82,34.68,34.51,34.32,34.13,33.72,N/A,N/A +2013,7,27,3,30,94090,93040,92030,30.830000000000002,0,2.98,5.26,5.91,6.01,5.94,5.72,5.5,5.29,5.09,124.66,125.23,125.95,127.13000000000001,128.19,129.18,130.44,131.74,134.44,33.46,33.95,34.04,33.94,33.78,33.55,33.3,33.05,32.62,N/A,N/A +2013,7,27,4,30,94130,93090,92070,33.01,0,2.5100000000000002,4.78,5.33,5.47,5.64,5.84,5.99,6.11,6.18,125.66,128.76,132.11,137.26,141.73,145.97,149.31,152.05,155.21,32.88,33.54,33.53,33.19,32.93,32.72,32.52,32.34,31.990000000000002,N/A,N/A +2013,7,27,5,30,94170,93120,92100,37.35,0,2.69,4.44,4.83,5.05,5.24,5.4,5.5200000000000005,5.62,5.73,128.76,130.53,131.49,132.08,133.78,136.4,138.35,139.9,142.87,31.580000000000002,32.42,32.56,32.31,32.08,31.84,31.63,31.44,31.03,N/A,N/A +2013,7,27,6,30,94220,93170,92150,43.49,0,2.15,4,4.32,4.34,4.43,4.58,4.53,4.4,3.61,132.55,134.77,136,136.65,137.79,139.39000000000001,142.97,147.08,155.07,30.77,31.23,31.220000000000002,31.11,30.990000000000002,30.84,30.7,30.57,30.19,N/A,N/A +2013,7,27,7,30,94280,93220,92200,44.94,0,1.92,3.15,3.47,4.24,4.99,5.74,6.28,6.7,7,101.3,122.29,134.05,144.54,150.46,152.15,152.46,152.13,150.6,29.650000000000002,30.23,30.34,30.43,30.43,30.37,30.26,30.14,29.82,N/A,N/A +2013,7,27,8,30,94320,93250,92220,46.300000000000004,0,2.23,3.47,3.49,3.3000000000000003,3.12,2.97,2.84,2.74,2.59,43.69,47.660000000000004,48.660000000000004,47.72,46.67,45.57,46.12,47.09,51.86,28.62,28.92,28.97,29,28.98,28.91,28.810000000000002,28.69,28.42,N/A,N/A +2013,7,27,9,30,94300,93230,92200,48.53,0,1.31,2.27,2.48,2.72,2.9,3.04,3.12,3.18,3.25,70.31,80.52,82.66,77.66,73.7,70.48,68.56,67.18,64.95,28,28.72,28.88,28.92,28.830000000000002,28.650000000000002,28.44,28.23,27.810000000000002,N/A,N/A +2013,7,27,10,30,94310,93240,92200,51.71,0,0.45,0.9500000000000001,1.17,1.48,1.82,2.18,2.52,2.85,3.4,148.36,111.76,89.9,72.07000000000001,60.45,53.32,49.5,46.87,45.84,27.03,27.48,27.54,27.560000000000002,27.54,27.5,27.43,27.35,27.14,N/A,N/A +2013,7,27,11,30,94350,93270,92240,52.4,0,0.49,1.57,2.44,3.75,5.17,6.65,7.78,8.76,9.6,347.92,29.92,57.69,69.08,76.73,80.52,82.62,84.09,85.57000000000001,26.310000000000002,26.71,26.78,26.86,26.94,27.02,27,26.96,26.68,N/A,N/A +2013,7,27,12,30,94360,93280,92240,52.18,0,1.62,3.24,3.83,4.39,4.9,5.38,5.88,6.36,7.390000000000001,55.24,51.57,49.86,49.21,49.31,49.9,51.1,52.410000000000004,55.57,25.52,25.67,25.68,25.7,25.7,25.7,25.66,25.61,25.38,N/A,N/A +2013,7,27,13,30,94370,93290,92250,48.94,0,5.74,7.21,7.61,7.8500000000000005,8.01,8.11,8.2,8.26,8.38,52.7,53.14,53.480000000000004,53.89,54.300000000000004,54.7,55.160000000000004,55.6,56.67,26.45,25.98,25.79,25.580000000000002,25.38,25.19,25,24.82,24.46,N/A,N/A +2013,7,27,14,30,94400,93330,92280,46.88,0,5.03,6.23,6.5600000000000005,6.74,6.86,6.95,7,7.04,7.09,66.82000000000001,66.62,66.48,66.41,66.37,66.34,66.32000000000001,66.32000000000001,66.3,27.400000000000002,26.79,26.55,26.310000000000002,26.09,25.88,25.67,25.48,25.080000000000002,N/A,N/A +2013,7,27,15,30,94380,93310,92270,43.550000000000004,0,3.71,4.55,4.78,4.9,4.98,5.04,5.08,5.11,5.15,69.49,69.25,69.17,69.12,69.08,69.04,69.01,68.98,68.9,28.47,27.8,27.54,27.29,27.060000000000002,26.85,26.63,26.44,26.03,N/A,N/A +2013,7,27,16,30,94370,93300,92270,41.27,0,2.98,3.59,3.74,3.83,3.89,3.92,3.95,3.97,3.99,52.07,52.52,52.870000000000005,53.18,53.43,53.65,53.85,54.02,54.33,29.62,28.95,28.67,28.42,28.18,27.97,27.75,27.54,27.13,N/A,N/A +2013,7,27,17,30,94310,93250,92220,39.39,0,3.0700000000000003,3.69,3.84,3.91,3.96,4,4.0200000000000005,4.04,4.0600000000000005,46.88,47.27,47.51,47.730000000000004,47.92,48.09,48.24,48.39,48.64,30.64,29.95,29.66,29.39,29.150000000000002,28.93,28.71,28.5,28.09,N/A,N/A +2013,7,27,18,30,94260,93210,92180,36.59,0,3.14,3.73,3.87,3.93,3.97,4,4.0200000000000005,4.03,4.04,32.4,33.31,33.87,34.38,34.83,35.25,35.63,35.980000000000004,36.660000000000004,31.67,30.970000000000002,30.67,30.400000000000002,30.16,29.93,29.71,29.5,29.080000000000002,N/A,N/A +2013,7,27,19,30,94230,93170,92150,33.910000000000004,0,2.86,3.41,3.54,3.61,3.65,3.68,3.7,3.72,3.74,39.910000000000004,40.230000000000004,40.43,40.62,40.77,40.9,41.02,41.13,41.32,32.58,31.89,31.59,31.32,31.080000000000002,30.85,30.63,30.42,30,N/A,N/A +2013,7,27,20,30,94150,93090,92080,30.060000000000002,0,2.7800000000000002,3.3000000000000003,3.42,3.48,3.5100000000000002,3.54,3.5500000000000003,3.56,3.5700000000000003,62.1,61.120000000000005,60.67,60.36,60.09,59.84,59.63,59.43,59.06,33.43,32.75,32.45,32.19,31.95,31.73,31.5,31.3,30.88,N/A,N/A +2013,7,27,21,30,94060,93010,92000,26.61,0,2.74,3.25,3.36,3.4,3.43,3.45,3.46,3.46,3.47,43.49,44.03,44.410000000000004,44.76,45.07,45.39,45.69,45.980000000000004,46.57,33.93,33.26,32.980000000000004,32.730000000000004,32.5,32.28,32.07,31.86,31.46,N/A,N/A +2013,7,27,22,30,94010,92960,91950,26.47,0,3.85,4.51,4.63,4.66,4.68,4.68,4.67,4.66,4.64,89.12,88.31,88.06,88,87.97,87.96000000000001,87.96000000000001,87.96000000000001,88,34.1,33.42,33.160000000000004,32.92,32.7,32.49,32.28,32.09,31.69,N/A,N/A +2013,7,27,23,30,93960,92910,91900,25.990000000000002,0,2.39,2.94,3.11,3.21,3.29,3.36,3.42,3.47,3.56,59.94,62.45,64.26,65.99,67.46000000000001,68.79,70.04,71.2,73.29,34.26,33.7,33.47,33.24,33.03,32.82,32.62,32.42,32.02,N/A,N/A +2013,7,28,0,30,93920,92870,91860,25.92,0,2.87,3.5300000000000002,3.7,3.7800000000000002,3.84,3.88,3.91,3.93,3.97,89.16,89.61,89.79,89.97,90.13,90.28,90.43,90.57000000000001,90.84,33.99,33.54,33.34,33.12,32.92,32.72,32.52,32.33,31.94,N/A,N/A +2013,7,28,1,30,93930,92890,91870,29.53,0,4.07,5.8500000000000005,6.4,6.78,7.04,7.23,7.3500000000000005,7.44,7.5,101.60000000000001,99.92,99.13,98.5,98,97.60000000000001,97.3,97.07000000000001,96.81,33.06,32.88,32.74,32.55,32.36,32.17,31.970000000000002,31.78,31.38,N/A,N/A +2013,7,28,2,30,93940,92880,91870,30.41,0,4.95,6.78,7.24,7.49,7.640000000000001,7.73,7.78,7.82,7.96,73.35000000000001,74.06,74.64,75.49,76.54,77.77,79.29,80.79,84.23,32.07,31.94,31.830000000000002,31.69,31.54,31.39,31.220000000000002,31.07,30.73,N/A,N/A +2013,7,28,3,30,93960,92900,91880,32.22,0,4.12,6.18,6.92,7.55,8.08,8.55,8.98,9.36,9.950000000000001,83.60000000000001,84.69,85.45,86.37,87.22,88.05,88.76,89.38,90.44,31.03,30.970000000000002,30.900000000000002,30.79,30.68,30.560000000000002,30.43,30.3,30.02,N/A,N/A +2013,7,28,4,30,93950,92890,91870,33.43,0,4.51,6.73,7.5,8.16,8.69,9.120000000000001,9.47,9.78,10.22,92.68,93.62,94.27,95.04,95.86,96.73,97.67,98.57000000000001,100.45,30.35,30.3,30.23,30.14,30.04,29.93,29.810000000000002,29.69,29.42,N/A,N/A +2013,7,28,5,30,93980,92920,91890,36.89,0,4.14,6.3100000000000005,7.12,7.8,8.35,8.81,9.17,9.48,9.84,94.46000000000001,95.61,96.39,97.29,98.31,99.41,100.65,101.87,104.25,29.45,29.43,29.37,29.29,29.21,29.12,29.02,28.93,28.7,N/A,N/A +2013,7,28,6,30,94000,92930,91900,41.42,0,3.86,5.99,6.8100000000000005,7.54,8.17,8.73,9.23,9.69,10.41,107.13,107.91,108.54,109.44,110.41,111.43,112.27,113,113.63,28.78,28.76,28.7,28.63,28.560000000000002,28.5,28.42,28.35,28.14,N/A,N/A +2013,7,28,7,30,94040,92970,91940,45.56,0,3.44,5.48,6.3,7.07,7.78,8.45,9.07,9.66,10.68,127.48,125.15,123.89,123.11,122.82000000000001,122.89,123.35000000000001,123.91,125.64,27.97,27.93,27.86,27.76,27.650000000000002,27.55,27.44,27.330000000000002,27.13,N/A,N/A +2013,7,28,8,30,94030,92960,91930,49.82,0,2.88,4.75,5.48,6.16,6.76,7.3100000000000005,7.84,8.35,9.200000000000001,127.85000000000001,126.23,125.39,124.77,124.69,124.95,125.68,126.53,129.05,27.19,27.2,27.150000000000002,27.080000000000002,27,26.92,26.85,26.79,26.67,N/A,N/A +2013,7,28,9,30,94020,92950,91910,52.230000000000004,0,3.22,5.22,5.96,6.63,7.21,7.72,8.19,8.63,9.43,121.48,122.36,123.14,124.26,125.7,127.36,129.4,131.43,136.04,26.76,26.77,26.73,26.67,26.61,26.560000000000002,26.490000000000002,26.43,26.3,N/A,N/A +2013,7,28,10,30,94040,92960,91930,55.17,0,3.12,5.03,5.7700000000000005,6.45,7.05,7.59,8.1,8.57,9.44,123.42,123.68,124.08,125.18,126.82000000000001,128.86,131.49,134.13,139.85,26.14,26.14,26.1,26.05,25.990000000000002,25.94,25.91,25.88,25.85,N/A,N/A +2013,7,28,11,30,94030,92950,91920,56.93,0,3.36,5.37,6.16,6.88,7.58,8.26,8.93,9.57,10.64,137.62,138.09,138.54,139.14000000000001,140.13,141.38,143.04,144.73,148.67000000000002,25.73,25.76,25.75,25.73,25.71,25.7,25.68,25.66,25.560000000000002,N/A,N/A +2013,7,28,12,30,94020,92950,91910,57.050000000000004,0,3.7600000000000002,5.62,6.3100000000000005,6.94,7.5,8.02,8.55,9.040000000000001,9.96,136.49,137.49,138.20000000000002,139.01,140.06,141.24,142.84,144.47,148.62,25.69,25.59,25.52,25.43,25.36,25.29,25.22,25.17,25.07,N/A,N/A +2013,7,28,13,30,94050,92980,91940,51.800000000000004,0,4.57,5.79,6.15,6.37,6.54,6.67,6.8,6.91,7.18,146.36,147.31,147.88,148.42000000000002,148.97,149.5,150.11,150.69,152.07,26.91,26.45,26.25,26.05,25.85,25.67,25.48,25.310000000000002,24.96,N/A,N/A +2013,7,28,14,30,94050,92980,91940,47.25,0,5.38,6.75,7.140000000000001,7.36,7.5,7.61,7.67,7.73,7.79,159.45000000000002,159.82,159.97,160.09,160.19,160.28,160.38,160.47,160.64000000000001,27.96,27.34,27.1,26.86,26.64,26.44,26.23,26.03,25.63,N/A,N/A +2013,7,28,15,30,94040,92970,91940,43.92,0,4.83,5.99,6.33,6.5,6.62,6.7,6.76,6.8,6.8500000000000005,166,165.9,165.82,165.75,165.70000000000002,165.66,165.63,165.6,165.56,29.150000000000002,28.45,28.18,27.93,27.7,27.48,27.26,27.060000000000002,26.650000000000002,N/A,N/A +2013,7,28,16,30,94020,92960,91930,40.31,0,4.55,5.61,5.91,6.07,6.17,6.24,6.3,6.34,6.38,168.70000000000002,168.82,168.85,168.88,168.89000000000001,168.91,168.93,168.95000000000002,168.99,30.23,29.490000000000002,29.2,28.94,28.7,28.48,28.26,28.05,27.64,N/A,N/A +2013,7,28,17,30,94000,92940,91920,36.230000000000004,0,4.51,5.5200000000000005,5.8100000000000005,5.97,6.08,6.15,6.2,6.24,6.29,163.76,164.25,164.54,164.77,164.95000000000002,165.11,165.26,165.4,165.65,31.44,30.67,30.37,30.1,29.85,29.62,29.400000000000002,29.19,28.77,N/A,N/A +2013,7,28,18,30,93950,92900,91880,31.990000000000002,0,4.36,5.3500000000000005,5.63,5.8,5.92,6.01,6.0600000000000005,6.11,6.18,171.96,171.83,171.72,171.63,171.55,171.47,171.41,171.35,171.26,32.64,31.88,31.57,31.29,31.04,30.8,30.57,30.36,29.93,N/A,N/A +2013,7,28,19,30,93910,92870,91850,28.85,0,4.34,5.3,5.58,5.74,5.86,5.93,5.99,6.04,6.1000000000000005,180.15,178.93,178.29,177.79,177.4,177.06,176.78,176.52,176.07,33.6,32.84,32.53,32.25,32,31.77,31.54,31.32,30.900000000000002,N/A,N/A +2013,7,28,20,30,93850,92810,91790,27.39,0,3.99,4.78,4.95,5,5.03,5.04,5.05,5.05,5.04,186.33,185.96,185.81,185.84,185.86,185.88,185.89000000000001,185.91,185.94,34.02,33.28,33,32.74,32.52,32.3,32.09,31.88,31.48,N/A,N/A +2013,7,28,21,30,93790,92750,91740,25.3,0,3.8000000000000003,4.6000000000000005,4.79,4.87,4.92,4.95,4.96,4.96,4.95,187.33,186.6,186.17000000000002,185.87,185.63,185.43,185.25,185.08,184.78,34.910000000000004,34.2,33.92,33.65,33.410000000000004,33.19,32.96,32.76,32.34,N/A,N/A +2013,7,28,22,30,93750,92710,91700,24.91,0,5,6.1000000000000005,6.41,6.61,6.76,6.86,6.94,7,7.1000000000000005,175.55,173.73,172.92000000000002,172.41,172.06,171.83,171.68,171.56,171.45000000000002,35.14,34.44,34.18,33.92,33.68,33.46,33.24,33.03,32.61,N/A,N/A +2013,7,28,23,30,93720,92680,91670,24.41,0,5.23,6.45,6.7700000000000005,6.92,7.0200000000000005,7.08,7.12,7.140000000000001,7.17,185.81,185.26,184.92000000000002,184.6,184.32,184.07,183.83,183.62,183.22,35.09,34.480000000000004,34.24,34,33.78,33.57,33.36,33.160000000000004,32.76,N/A,N/A +2013,7,29,0,30,93710,92670,91660,25.05,0,5.01,6.32,6.67,6.87,7.01,7.11,7.18,7.24,7.32,173.34,172.95000000000002,172.81,172.74,172.69,172.67000000000002,172.66,172.67000000000002,172.69,34.9,34.45,34.25,34.03,33.82,33.62,33.410000000000004,33.22,32.82,N/A,N/A +2013,7,29,1,30,93710,92670,91660,27.95,0,5.04,7.08,7.69,8.14,8.48,8.74,8.94,9.11,9.34,156.33,157.13,157.61,158.13,158.6,159.08,159.53,159.95000000000002,160.70000000000002,33.86,33.72,33.61,33.45,33.29,33.13,32.95,32.78,32.42,N/A,N/A +2013,7,29,2,30,93760,92720,91700,30.59,0,4.83,7.13,7.930000000000001,8.620000000000001,9.24,9.8,10.31,10.77,11.51,149.62,150.73,151.46,152.24,152.95000000000002,153.63,154.23,154.76,155.57,32.980000000000004,32.89,32.8,32.67,32.54,32.39,32.230000000000004,32.08,31.75,N/A,N/A +2013,7,29,3,30,93810,92760,91750,32.15,0,4.33,6.47,7.21,7.84,8.38,8.870000000000001,9.35,9.8,10.64,147.9,147.72,147.69,147.78,148,148.32,148.75,149.23,150.29,32.160000000000004,32.12,32.05,31.95,31.84,31.720000000000002,31.59,31.470000000000002,31.2,N/A,N/A +2013,7,29,4,30,93830,92780,91760,32.1,0,5.18,7.58,8.41,9.15,9.78,10.36,10.91,11.43,12.370000000000001,149.26,148.5,148.02,147.47,147.03,146.68,146.48,146.36,146.64000000000001,31.54,31.5,31.42,31.32,31.2,31.07,30.93,30.8,30.51,N/A,N/A +2013,7,29,5,30,93860,92800,91780,35.21,0,6.94,9.72,10.65,11.42,12.08,12.67,13.23,13.74,14.700000000000001,150.26,150.48,150.68,150.91,151.17000000000002,151.46,151.8,152.14000000000001,152.98,30.88,30.810000000000002,30.73,30.62,30.52,30.400000000000002,30.28,30.17,29.92,N/A,N/A +2013,7,29,6,30,93880,92820,91800,37.21,0,6.03,8.8,9.77,10.64,11.4,12.11,12.77,13.39,14.530000000000001,151.73,152.31,152.75,153.29,153.92000000000002,154.62,155.42000000000002,156.22,157.98,29.95,29.92,29.87,29.8,29.73,29.66,29.57,29.5,29.330000000000002,N/A,N/A +2013,7,29,7,30,93930,92870,91840,36.22,0,6.2,8.86,9.75,10.49,11.13,11.700000000000001,12.22,12.700000000000001,13.55,158.15,158.51,158.74,159,159.29,159.6,159.98,160.34,161.21,29.7,29.66,29.59,29.490000000000002,29.39,29.28,29.17,29.07,28.84,N/A,N/A +2013,7,29,8,30,93950,92890,91860,35.77,0,6.04,8.74,9.67,10.46,11.14,11.73,12.290000000000001,12.8,13.74,155.24,156.71,157.57,158.28,158.89000000000001,159.42000000000002,159.92000000000002,160.38,161.33,29.03,29.02,28.95,28.87,28.78,28.68,28.580000000000002,28.48,28.27,N/A,N/A +2013,7,29,9,30,93980,92910,91880,41.34,0,5.12,7.67,8.64,9.51,10.27,10.97,11.63,12.25,13.43,149.20000000000002,150.73,151.6,152.4,153.17000000000002,153.9,154.69,155.44,157.04,27.52,27.47,27.39,27.3,27.2,27.11,27,26.91,26.73,N/A,N/A +2013,7,29,10,30,94020,92950,91910,46.12,0,5.68,8.14,9,9.75,10.4,10.99,11.56,12.09,13.14,154.74,156.16,157.01,157.79,158.49,159.14000000000001,159.77,160.36,161.56,26.77,26.68,26.59,26.48,26.35,26.240000000000002,26.11,25.990000000000002,25.75,N/A,N/A +2013,7,29,11,30,94050,92970,91930,48.61,0,4.37,6.6000000000000005,7.43,8.2,8.870000000000001,9.46,10.05,10.6,11.66,148.66,151.26,152.91,154.37,155.62,156.72,157.76,158.72,160.59,26,25.94,25.86,25.76,25.650000000000002,25.54,25.43,25.32,25.11,N/A,N/A +2013,7,29,12,30,94120,93040,91990,51.04,0,3.86,5.87,6.66,7.390000000000001,8.06,8.67,9.290000000000001,9.88,11.05,149.78,152.43,154.1,155.63,156.99,158.24,159.42000000000002,160.53,162.66,25.3,25.21,25.13,25.03,24.93,24.830000000000002,24.72,24.63,24.46,N/A,N/A +2013,7,29,13,30,94140,93060,92020,44.37,0,6.3100000000000005,7.930000000000001,8.36,8.620000000000001,8.8,8.94,9.08,9.200000000000001,9.56,159.74,160.12,160.34,160.56,160.8,161.04,161.37,161.69,162.64000000000001,26.39,25.95,25.75,25.55,25.35,25.17,24.990000000000002,24.82,24.48,N/A,N/A +2013,7,29,14,30,94160,93090,92040,39.28,0,6.2700000000000005,7.83,8.23,8.45,8.57,8.65,8.69,8.71,8.71,163.54,163.67000000000002,163.77,163.86,163.95000000000002,164.05,164.16,164.28,164.56,27.52,26.900000000000002,26.67,26.43,26.22,26.02,25.810000000000002,25.63,25.240000000000002,N/A,N/A +2013,7,29,15,30,94180,93110,92080,35.230000000000004,0,5.65,6.99,7.3500000000000005,7.54,7.66,7.73,7.76,7.79,7.8,171.33,171.51,171.63,171.73,171.82,171.9,171.99,172.06,172.23,28.91,28.2,27.93,27.69,27.46,27.25,27.04,26.85,26.45,N/A,N/A +2013,7,29,16,30,94190,93120,92090,32.13,0,5.46,6.74,7.1000000000000005,7.29,7.41,7.49,7.54,7.57,7.59,174.13,174.04,173.97,173.92000000000002,173.89000000000001,173.86,173.85,173.84,173.84,30.46,29.7,29.41,29.14,28.91,28.69,28.47,28.26,27.86,N/A,N/A +2013,7,29,17,30,94170,93110,92090,29.28,0,4.8,5.89,6.18,6.33,6.42,6.48,6.5200000000000005,6.54,6.57,179.15,179.03,178.96,178.9,178.85,178.81,178.8,178.79,178.78,31.7,30.93,30.63,30.36,30.12,29.89,29.67,29.47,29.05,N/A,N/A +2013,7,29,18,30,94140,93080,92060,26.93,0,4.69,5.74,6.0200000000000005,6.16,6.24,6.3,6.34,6.36,6.38,178.5,178.07,177.8,177.59,177.41,177.25,177.12,177.01,176.79,32.92,32.14,31.84,31.560000000000002,31.32,31.09,30.86,30.66,30.240000000000002,N/A,N/A +2013,7,29,19,30,94110,93060,92040,25.26,0,4.72,5.76,6.04,6.18,6.28,6.34,6.38,6.41,6.43,183.3,182.53,182.08,181.70000000000002,181.38,181.09,180.83,180.6,180.16,33.96,33.18,32.87,32.6,32.35,32.12,31.89,31.68,31.26,N/A,N/A +2013,7,29,20,30,94080,93030,92020,23.97,0,4.9,5.98,6.25,6.37,6.45,6.49,6.5200000000000005,6.54,6.55,179.70000000000002,179.46,179.41,179.43,179.48,179.56,179.65,179.75,179.95000000000002,34.660000000000004,33.88,33.58,33.32,33.08,32.85,32.63,32.42,32.01,N/A,N/A +2013,7,29,21,30,94050,93010,91990,22.98,0,4.88,5.94,6.21,6.33,6.4,6.45,6.47,6.49,6.49,182.59,181.83,181.33,180.93,180.59,180.27,179.98,179.71,179.21,35.2,34.44,34.160000000000004,33.9,33.660000000000004,33.44,33.22,33.01,32.6,N/A,N/A +2013,7,29,22,30,94020,92980,91970,22.240000000000002,0,5.04,6.21,6.5200000000000005,6.69,6.8,6.87,6.92,6.96,7,181.55,180.74,180.26,179.88,179.57,179.29,179.03,178.8,178.37,35.51,34.800000000000004,34.54,34.28,34.05,33.83,33.61,33.4,32.99,N/A,N/A +2013,7,29,23,30,94000,92960,91940,21.76,0,5.42,6.76,7.12,7.32,7.46,7.5600000000000005,7.62,7.68,7.75,174.59,174.20000000000002,174.02,173.87,173.74,173.62,173.51,173.41,173.23,35.480000000000004,34.87,34.63,34.39,34.17,33.95,33.730000000000004,33.53,33.12,N/A,N/A +2013,7,30,0,30,94000,92960,91940,21.43,0,6.3,7.97,8.4,8.63,8.8,8.91,8.98,9.040000000000001,9.11,163.98,164.14000000000001,164.20000000000002,164.23,164.26,164.27,164.28,164.28,164.29,34.89,34.45,34.26,34.04,33.83,33.63,33.43,33.230000000000004,32.84,N/A,N/A +2013,7,30,1,30,94020,92970,91960,22.5,0,4.87,6.99,7.65,8.16,8.56,8.9,9.18,9.42,9.8,158.09,158.22,158.32,158.48,158.67000000000002,158.89000000000001,159.12,159.35,159.77,33.77,33.69,33.59,33.45,33.31,33.15,32.980000000000004,32.81,32.45,N/A,N/A +2013,7,30,2,30,94070,93010,91990,22.12,0,4.48,6.74,7.5,8.14,8.69,9.19,9.61,9.99,10.620000000000001,157.47,157.61,157.73,157.97,158.27,158.63,159.04,159.45000000000002,160.34,32.67,32.730000000000004,32.7,32.63,32.56,32.46,32.35,32.230000000000004,31.96,N/A,N/A +2013,7,30,3,30,94110,93050,92030,21.830000000000002,0,4.37,6.86,7.7700000000000005,8.620000000000001,9.39,10.120000000000001,10.82,11.47,12.540000000000001,156.66,156.96,157.12,157.23,157.39000000000001,157.59,157.89000000000001,158.22,159.11,31.82,32.01,32.05,32.06,32.04,32,31.93,31.86,31.63,N/A,N/A +2013,7,30,4,30,94150,93090,92070,23.14,0,4.73,7.390000000000001,8.4,9.41,10.39,11.370000000000001,12.33,13.25,14.540000000000001,156.15,156.31,156.41,156.55,157.02,157.71,158.65,159.65,161.32,31.1,31.32,31.37,31.41,31.43,31.44,31.43,31.43,31.3,N/A,N/A +2013,7,30,5,30,94160,93100,92080,25.79,0,4.88,7.62,8.69,9.69,10.61,11.5,12.34,13.11,14.38,159.63,161.22,162.19,163.11,163.96,164.77,165.66,166.53,168.63,30.36,30.6,30.67,30.72,30.75,30.77,30.75,30.72,30.560000000000002,N/A,N/A +2013,7,30,6,30,94220,93150,92130,29.01,0,5.04,7.7,8.66,9.59,10.43,11.23,11.98,12.67,13.86,164.36,165.47,166.15,166.85,167.56,168.25,168.96,169.65,171.01,29.82,29.98,30.02,30.060000000000002,30.080000000000002,30.09,30.07,30.05,29.93,N/A,N/A +2013,7,30,7,30,94270,93200,92170,35.31,0,4.73,7.32,8.26,9.11,9.88,10.6,11.28,11.92,13.17,145.44,146.68,147.42000000000002,148,148.64000000000001,149.31,150.14000000000001,150.95000000000002,152.9,28.52,28.63,28.63,28.61,28.57,28.51,28.43,28.35,28.13,N/A,N/A +2013,7,30,8,30,94290,93220,92180,32.89,0,6.5200000000000005,9.33,10.32,11.200000000000001,11.98,12.68,13.39,14.05,15.38,151.62,152.87,153.62,154.29,154.92000000000002,155.51,156.15,156.77,158.20000000000002,27.330000000000002,27.28,27.2,27.1,26.990000000000002,26.89,26.77,26.66,26.42,N/A,N/A +2013,7,30,9,30,94320,93240,92190,38,0,6.26,9.03,10.02,10.9,11.69,12.4,13.1,13.74,15.05,149.44,151.45000000000002,152.63,153.65,154.56,155.4,156.21,156.97,158.63,26.27,26.19,26.1,25.990000000000002,25.88,25.78,25.66,25.55,25.32,N/A,N/A +2013,7,30,10,30,94350,93260,92220,42.77,0,5.99,8.68,9.68,10.57,11.34,12.030000000000001,12.69,13.32,14.5,147.36,149.85,151.3,152.52,153.56,154.48,155.38,156.22,157.98,25.51,25.43,25.34,25.240000000000002,25.13,25.03,24.92,24.82,24.63,N/A,N/A +2013,7,30,11,30,94360,93280,92230,46.29,0,4.08,6.5600000000000005,7.57,8.5,9.3,10.01,10.67,11.290000000000001,12.44,142.37,146.79,149.32,151.17000000000002,152.62,153.82,154.87,155.83,157.70000000000002,24.66,24.64,24.560000000000002,24.47,24.37,24.27,24.16,24.07,23.87,N/A,N/A +2013,7,30,12,30,94420,93340,92280,49.46,0,3.7,5.88,6.79,7.63,8.370000000000001,9.05,9.69,10.3,11.47,141.13,145.84,148.6,150.69,152.36,153.77,154.98,156.07,158.12,24.05,23.97,23.89,23.79,23.68,23.580000000000002,23.47,23.36,23.16,N/A,N/A +2013,7,30,13,30,94470,93380,92330,46.25,0,5.36,6.84,7.28,7.58,7.8,7.97,8.14,8.3,8.78,159.69,160.20000000000002,160.44,160.70000000000002,160.95000000000002,161.22,161.56,161.89000000000001,162.92000000000002,25.09,24.64,24.44,24.240000000000002,24.04,23.86,23.67,23.5,23.150000000000002,N/A,N/A +2013,7,30,14,30,94460,93380,92330,42.84,0,5.76,7.18,7.57,7.7700000000000005,7.890000000000001,7.96,7.99,8.01,8.02,171.46,171.68,171.8,171.92000000000002,172.05,172.17000000000002,172.32,172.46,172.85,26.42,25.810000000000002,25.57,25.34,25.13,24.94,24.740000000000002,24.560000000000002,24.19,N/A,N/A +2013,7,30,15,30,94470,93400,92360,38.58,0,5.33,6.6000000000000005,6.95,7.13,7.24,7.3,7.33,7.3500000000000005,7.34,176.3,176.17000000000002,176.09,176.06,176.04,176.03,176.04,176.07,176.14000000000001,28.19,27.48,27.21,26.97,26.740000000000002,26.54,26.330000000000002,26.14,25.75,N/A,N/A +2013,7,30,16,30,94460,93400,92360,34.05,0,5.03,6.17,6.48,6.63,6.72,6.7700000000000005,6.79,6.8100000000000005,6.79,178.57,178.59,178.6,178.64000000000001,178.70000000000002,178.76,178.85,178.94,179.16,29.95,29.2,28.91,28.650000000000002,28.42,28.2,27.990000000000002,27.79,27.39,N/A,N/A +2013,7,30,17,30,94430,93370,92340,30.66,0,4.83,5.92,6.21,6.3500000000000005,6.44,6.49,6.5200000000000005,6.54,6.54,176.66,177.04,177.29,177.54,177.79,178.03,178.28,178.51,179.01,31.55,30.78,30.48,30.21,29.97,29.75,29.52,29.32,28.91,N/A,N/A +2013,7,30,18,30,94360,93300,92280,27.91,0,4.58,5.59,5.8500000000000005,5.98,6.0600000000000005,6.11,6.140000000000001,6.16,6.17,176.97,177.76,178.23,178.65,179.03,179.4,179.76,180.09,180.77,33.08,32.31,32,31.73,31.48,31.26,31.04,30.830000000000002,30.42,N/A,N/A +2013,7,30,19,30,94330,93270,92260,25.400000000000002,0,4.1,4.97,5.18,5.29,5.36,5.39,5.42,5.43,5.44,164.31,166.11,167.15,168.05,168.82,169.52,170.18,170.78,171.92000000000002,34.43,33.68,33.38,33.1,32.86,32.63,32.410000000000004,32.2,31.79,N/A,N/A +2013,7,30,20,30,94270,93230,92210,23.71,0,3.91,4.73,4.96,5.08,5.16,5.22,5.26,5.28,5.32,163.17000000000002,165.86,167.37,168.61,169.65,170.57,171.41,172.19,173.58,35.46,34.730000000000004,34.43,34.15,33.910000000000004,33.68,33.45,33.24,32.82,N/A,N/A +2013,7,30,21,30,94230,93180,92170,22.57,0,4.28,5.15,5.36,5.44,5.48,5.49,5.49,5.48,5.44,162.53,164.09,164.96,165.63,166.21,166.75,167.27,167.77,168.73,35.97,35.24,34.96,34.69,34.46,34.230000000000004,34.02,33.81,33.4,N/A,N/A +2013,7,30,22,30,94180,93140,92120,21.63,0,3.84,4.6000000000000005,4.7700000000000005,4.82,4.84,4.8500000000000005,4.84,4.83,4.79,168.55,169.1,169.23,169.27,169.3,169.34,169.39000000000001,169.44,169.61,36.18,35.52,35.26,35.01,34.79,34.58,34.37,34.160000000000004,33.76,N/A,N/A +2013,7,30,23,30,94150,93100,92090,22.1,0,3.83,4.7,4.93,5.04,5.12,5.17,5.21,5.24,5.2700000000000005,179.19,178.72,178.43,178.1,177.82,177.57,177.32,177.1,176.66,36.22,35.63,35.4,35.160000000000004,34.95,34.74,34.53,34.33,33.93,N/A,N/A +2013,7,31,0,30,94150,93100,92090,22.51,0,4.49,5.57,5.83,5.93,5.99,6.0200000000000005,6.03,6.03,6.01,157.97,158.87,159.28,159.54,159.73,159.88,160,160.11,160.28,35.86,35.43,35.230000000000004,35.02,34.81,34.62,34.410000000000004,34.22,33.83,N/A,N/A +2013,7,31,1,30,94140,93100,92090,26.22,0,3.71,5.65,6.22,6.7,7.08,7.38,7.61,7.8,8.03,159.6,160.66,161.27,161.88,162.37,162.77,163.02,163.20000000000002,163.28,34.58,34.58,34.51,34.37,34.230000000000004,34.07,33.9,33.72,33.36,N/A,N/A +2013,7,31,2,30,94190,93140,92130,32.12,0,3.8000000000000003,5.7700000000000005,6.4,6.9,7.32,7.68,7.99,8.27,8.73,151.09,151.02,151.09,151.21,151.41,151.68,152,152.34,153.04,33.3,33.3,33.24,33.13,33.01,32.87,32.72,32.56,32.230000000000004,N/A,N/A +2013,7,31,3,30,94250,93190,92170,33.11,0,3.89,6.1000000000000005,6.88,7.5600000000000005,8.16,8.700000000000001,9.18,9.620000000000001,10.36,148.41,149.06,149.56,150.20000000000002,150.93,151.75,152.56,153.34,154.68,32.38,32.44,32.410000000000004,32.34,32.26,32.160000000000004,32.05,31.93,31.66,N/A,N/A +2013,7,31,4,30,94280,93220,92200,34.06,0,5.15,7.71,8.65,9.52,10.32,11.1,11.82,12.49,13.58,149.33,148.83,148.53,148.18,148.03,148.03,148.28,148.61,149.58,31.32,31.32,31.27,31.2,31.13,31.060000000000002,30.990000000000002,30.93,30.79,N/A,N/A +2013,7,31,5,30,94300,93240,92220,34.09,0,4.86,7.58,8.61,9.55,10.41,11.21,11.96,12.65,13.75,149.05,149.51,149.74,149.84,150.02,150.24,150.69,151.20000000000002,152.96,30.650000000000002,30.77,30.78,30.77,30.740000000000002,30.71,30.66,30.61,30.53,N/A,N/A +2013,7,31,6,30,94320,93260,92230,32.44,0,5.1000000000000005,7.8500000000000005,8.82,9.69,10.450000000000001,11.15,11.74,12.280000000000001,13.08,154.04,154.5,154.77,154.94,155.26,155.65,156.32,157.02,159.06,30.16,30.32,30.35,30.37,30.38,30.38,30.37,30.35,30.27,N/A,N/A +2013,7,31,7,30,94380,93310,92280,33.33,0,5.17,7.91,8.89,9.78,10.58,11.33,12.05,12.72,13.91,153.76,154.8,155.38,155.88,156.43,157,157.67000000000002,158.34,159.85,29.34,29.52,29.57,29.61,29.63,29.650000000000002,29.66,29.66,29.61,N/A,N/A +2013,7,31,8,30,94390,93320,92280,35.17,0,4.93,7.69,8.76,9.790000000000001,10.72,11.59,12.41,13.18,14.43,151.94,153.3,154.08,154.69,155.25,155.77,156.35,156.93,158.36,28.16,28.28,28.28,28.26,28.23,28.18,28.12,28.07,27.94,N/A,N/A +2013,7,31,9,30,94440,93360,92320,47.61,0,4.96,7.47,8.41,9.28,10.09,10.85,11.61,12.34,13.72,146.39000000000001,149.12,150.67000000000002,151.95000000000002,153.07,154.1,155.16,156.19,158.43,26.75,26.740000000000002,26.69,26.61,26.52,26.43,26.34,26.25,26.1,N/A,N/A +2013,7,31,10,30,94440,93370,92320,60.660000000000004,0,4.84,7.15,8.02,8.83,9.57,10.28,11,11.69,13.06,143.16,146.42000000000002,148.37,150.11,151.64000000000001,153.04,154.37,155.63,158.15,25.8,25.72,25.64,25.55,25.45,25.35,25.25,25.150000000000002,24.97,N/A,N/A +2013,7,31,11,30,94470,93390,92350,72.01,0,4.45,6.7,7.53,8.28,8.97,9.6,10.24,10.84,12.02,147.47,150.28,151.92000000000002,153.35,154.63,155.81,156.98,158.09,160.44,25.17,25.080000000000002,25,24.900000000000002,24.79,24.69,24.59,24.490000000000002,24.310000000000002,N/A,N/A +2013,7,31,12,30,94500,93420,92370,78.28,0,3.71,5.64,6.390000000000001,7.1000000000000005,7.75,8.35,8.97,9.55,10.72,137.62,141.65,144.02,146.1,147.97,149.71,151.45000000000002,153.1,156.35,24.54,24.41,24.32,24.22,24.12,24.03,23.94,23.86,23.72,N/A,N/A +2013,7,31,13,30,94550,93470,92420,68.54,0,5.12,6.5200000000000005,6.92,7.17,7.34,7.47,7.59,7.68,7.94,151.73,152.78,153.36,153.87,154.37,154.84,155.38,155.9,157.24,25.86,25.400000000000002,25.2,24.990000000000002,24.8,24.62,24.43,24.26,23.92,N/A,N/A +2013,7,31,14,30,94560,93480,92440,56.78,0,5.11,6.43,6.8,7.01,7.140000000000001,7.22,7.28,7.32,7.3500000000000005,154.75,155.31,155.58,155.8,156,156.19,156.4,156.6,157.07,27.39,26.78,26.54,26.310000000000002,26.1,25.900000000000002,25.7,25.51,25.14,N/A,N/A +2013,7,31,15,30,94550,93480,92440,48.08,0,4.45,5.54,5.84,6,6.1000000000000005,6.17,6.21,6.24,6.2700000000000005,158.26,158.66,158.89000000000001,159.08,159.24,159.38,159.53,159.69,160.02,29.13,28.44,28.17,27.93,27.71,27.5,27.29,27.1,26.71,N/A,N/A +2013,7,31,16,30,94550,93490,92460,39.660000000000004,0,4.17,5.16,5.43,5.58,5.67,5.73,5.78,5.8100000000000005,5.84,167.54,167.66,167.69,167.71,167.74,167.77,167.8,167.84,167.93,30.88,30.150000000000002,29.87,29.61,29.38,29.16,28.95,28.75,28.35,N/A,N/A +2013,7,31,17,30,94510,93450,92420,34.54,0,3.87,4.75,4.99,5.11,5.19,5.25,5.29,5.3100000000000005,5.34,161.27,161.77,162.04,162.21,162.36,162.48,162.59,162.67000000000002,162.86,32.34,31.61,31.32,31.05,30.810000000000002,30.59,30.37,30.16,29.75,N/A,N/A +2013,7,31,18,30,94460,93410,92390,29.46,0,3.93,4.79,5.01,5.12,5.19,5.24,5.2700000000000005,5.29,5.3,160.09,160.33,160.45000000000002,160.51,160.54,160.57,160.59,160.6,160.62,33.7,32.95,32.65,32.38,32.14,31.91,31.69,31.48,31.060000000000002,N/A,N/A +2013,7,31,19,30,94410,93360,92340,26.77,0,2.96,3.58,3.73,3.81,3.86,3.9,3.92,3.94,3.96,154.91,154.64000000000001,154.48,154.27,154.08,153.9,153.71,153.54,153.19,34.660000000000004,33.96,33.660000000000004,33.39,33.15,32.93,32.7,32.49,32.08,N/A,N/A +2013,7,31,20,30,94360,93310,92290,24.88,0,2.77,3.35,3.49,3.58,3.64,3.68,3.71,3.74,3.77,138.12,138.65,139.02,139.29,139.51,139.70000000000002,139.87,140.01,140.24,35.53,34.84,34.54,34.27,34.03,33.8,33.58,33.37,32.95,N/A,N/A +2013,7,31,21,30,94280,93240,92230,23.62,0,3.04,3.64,3.79,3.87,3.92,3.95,3.98,3.99,4.0200000000000005,115.82000000000001,117.26,118.04,118.63,119.11,119.52,119.89,120.22,120.83,35.97,35.28,35,34.74,34.51,34.29,34.07,33.86,33.45,N/A,N/A +2013,7,31,22,30,94230,93190,92180,22.400000000000002,0,2.91,3.48,3.61,3.67,3.71,3.73,3.74,3.75,3.7600000000000002,123.49000000000001,124.36,124.73,124.98,125.18,125.35000000000001,125.48,125.60000000000001,125.81,36.24,35.59,35.34,35.09,34.87,34.65,34.43,34.230000000000004,33.83,N/A,N/A +2013,7,31,23,30,94160,93120,92110,22.6,0,3.79,4.64,4.86,4.97,5.05,5.11,5.15,5.17,5.2,118.41,118.56,118.66,118.68,118.67,118.63,118.59,118.55,118.43,36.39,35.78,35.54,35.31,35.09,34.87,34.660000000000004,34.45,34.05,N/A,N/A +2013,8,1,0,30,94150,93110,92100,24.26,0,4.11,5.14,5.4,5.54,5.63,5.68,5.72,5.74,5.75,144.72,144.49,144.18,143.71,143.26,142.81,142.34,141.9,141.01,35.88,35.43,35.22,35,34.800000000000004,34.6,34.4,34.2,33.81,N/A,N/A +2013,8,1,1,30,94130,93080,92070,25.330000000000002,0,3.52,5.36,5.9,6.3,6.58,6.78,6.92,7.01,7.09,155.05,154.45000000000002,154.12,153.86,153.69,153.59,153.53,153.49,153.43,34.87,34.77,34.67,34.51,34.35,34.17,33.980000000000004,33.79,33.410000000000004,N/A,N/A +2013,8,1,2,30,94170,93120,92110,24.92,0,4.3,6.34,6.96,7.47,7.890000000000001,8.25,8.55,8.8,9.16,167.21,167.46,167.56,167.61,167.58,167.51,167.35,167.17000000000002,166.63,33.84,33.83,33.77,33.660000000000004,33.54,33.4,33.25,33.09,32.76,N/A,N/A +2013,8,1,3,30,94200,93140,92120,24.150000000000002,0,5.25,7.67,8.48,9.200000000000001,9.8,10.33,10.75,11.1,11.49,170.1,170.57,170.76,170.78,170.71,170.56,170.39000000000001,170.24,170.12,32.83,32.84,32.79,32.71,32.61,32.5,32.36,32.230000000000004,31.91,N/A,N/A +2013,8,1,4,30,94240,93180,92160,25.1,0,5.01,7.55,8.44,9.26,9.97,10.61,11.17,11.68,12.370000000000001,169.29,170.5,171.1,171.42000000000002,171.55,171.54,171.46,171.35,171.31,31.8,31.86,31.84,31.8,31.740000000000002,31.67,31.580000000000002,31.490000000000002,31.240000000000002,N/A,N/A +2013,8,1,5,30,94250,93190,92160,26.64,0,5.04,7.61,8.51,9.32,10.03,10.67,11.22,11.73,12.450000000000001,163.72,165.27,166.1,166.71,167.17000000000002,167.53,167.83,168.1,168.68,30.89,30.970000000000002,30.95,30.92,30.88,30.830000000000002,30.75,30.67,30.46,N/A,N/A +2013,8,1,6,30,94300,93230,92210,27.810000000000002,0,4.14,6.73,7.7,8.61,9.39,10.07,10.65,11.16,11.870000000000001,162.93,165.98,167.48,168.41,168.98,169.31,169.52,169.68,170.04,29.98,30.16,30.2,30.22,30.22,30.21,30.17,30.13,29.990000000000002,N/A,N/A +2013,8,1,7,30,94340,93270,92240,29.990000000000002,0,3.63,6.2700000000000005,7.3,8.3,9.17,9.94,10.61,11.200000000000001,12.06,158.04,163.22,165.95000000000002,167.76,169,169.87,170.44,170.92000000000002,171.54,29.060000000000002,29.29,29.32,29.34,29.34,29.32,29.28,29.240000000000002,29.1,N/A,N/A +2013,8,1,8,30,94360,93290,92260,31.79,0,2.96,5.5,6.47,7.43,8.28,9.040000000000001,9.72,10.33,11.23,150.85,157.96,161.81,164.35,166.20000000000002,167.62,168.69,169.62,170.94,28.1,28.43,28.48,28.51,28.52,28.52,28.51,28.5,28.44,N/A,N/A +2013,8,1,9,30,94390,93310,92270,36.31,0,1.98,3.97,4.67,5.43,6.17,6.91,7.65,8.36,9.55,144.63,153.3,158.21,161.93,164.75,167.03,168.59,169.93,171.36,26.84,27.310000000000002,27.35,27.37,27.39,27.41,27.42,27.44,27.44,N/A,N/A +2013,8,1,10,30,94400,93320,92280,38.480000000000004,0,1.69,2.92,3.31,3.97,4.71,5.53,6.3,7.05,8.27,114.88,131.7,141.38,150.32,156.45000000000002,161.02,163.72,165.95000000000002,168.38,25.580000000000002,26.09,26.19,26.29,26.400000000000002,26.5,26.57,26.650000000000002,26.71,N/A,N/A +2013,8,1,11,30,94430,93340,92300,38.9,0,1.52,2.5,2.7800000000000002,3.2600000000000002,3.91,4.71,5.36,5.97,7.0200000000000005,120.37,128.65,135.69,145.48,152.84,159.16,162.38,164.88,168.16,24.95,25.39,25.47,25.580000000000002,25.72,25.85,25.88,25.88,25.86,N/A,N/A +2013,8,1,12,30,94450,93360,92320,41.97,0,1.6,2.84,3.2,3.71,4.26,4.8500000000000005,5.36,5.83,6.65,115.95,127.79,135.54,143.96,150.34,155.6,159.18,162.32,166.87,24.29,24.71,24.78,24.87,24.94,25,25.05,25.09,25.18,N/A,N/A +2013,8,1,13,30,94440,93360,92310,35.87,0,2.14,2.65,2.79,2.88,3.0500000000000003,3.27,3.7,4.18,5.11,131.98,135.88,138.26,140.52,143.67000000000002,147.22,151.33,155.49,161.11,26.1,25.72,25.55,25.37,25.21,25.05,24.93,24.82,24.8,N/A,N/A +2013,8,1,14,30,94440,93370,92330,34.660000000000004,0,3.12,3.86,4.0600000000000005,4.16,4.23,4.2700000000000005,4.3,4.33,4.4,147.1,149.05,150.18,151.20000000000002,152.18,153.11,154.20000000000002,155.22,157.82,28.09,27.560000000000002,27.34,27.13,26.94,26.75,26.57,26.400000000000002,26.05,N/A,N/A +2013,8,1,15,30,94440,93380,92340,32,0,3.13,3.84,4.04,4.14,4.19,4.23,4.24,4.25,4.24,159.64000000000001,160.47,160.96,161.35,161.69,162.01,162.33,162.64000000000001,163.3,30.150000000000002,29.53,29.28,29.04,28.830000000000002,28.63,28.42,28.23,27.85,N/A,N/A +2013,8,1,16,30,94420,93360,92330,28.63,0,3.0100000000000002,3.66,3.83,3.92,3.97,4,4.0200000000000005,4.03,4.03,170.74,170.85,170.9,170.91,170.89000000000001,170.87,170.85,170.83,170.75,31.650000000000002,30.990000000000002,30.72,30.47,30.240000000000002,30.03,29.810000000000002,29.61,29.2,N/A,N/A +2013,8,1,17,30,94400,93340,92320,26.6,0,2.63,3.19,3.34,3.43,3.48,3.52,3.54,3.56,3.59,155.86,156.02,156.15,156.24,156.29,156.32,156.35,156.37,156.38,32.910000000000004,32.24,31.96,31.69,31.46,31.23,31.01,30.810000000000002,30.39,N/A,N/A +2013,8,1,18,30,94350,93290,92270,24.93,0,3.06,3.71,3.88,3.97,4.04,4.08,4.12,4.14,4.18,144.38,144.85,145.08,145.20000000000002,145.27,145.33,145.37,145.41,145.43,33.88,33.19,32.89,32.62,32.38,32.15,31.93,31.720000000000002,31.310000000000002,N/A,N/A +2013,8,1,19,30,94300,93250,92240,24.93,0,3.46,4.22,4.42,4.54,4.62,4.67,4.72,4.75,4.79,143.65,144.03,144.21,144.3,144.37,144.41,144.45000000000002,144.48,144.5,34.7,33.97,33.67,33.4,33.160000000000004,32.93,32.7,32.49,32.07,N/A,N/A +2013,8,1,20,30,94240,93190,92170,24.63,0,3.86,4.69,4.9,5,5.07,5.12,5.15,5.17,5.2,136.2,137.1,137.53,137.83,138.08,138.29,138.47,138.63,138.91,35.22,34.47,34.18,33.910000000000004,33.67,33.44,33.22,33.01,32.59,N/A,N/A +2013,8,1,21,30,94190,93140,92130,23.48,0,4.18,5.11,5.3500000000000005,5.47,5.55,5.6000000000000005,5.64,5.67,5.7,144.69,144.73,144.74,144.68,144.65,144.58,144.53,144.47,144.37,35.59,34.86,34.58,34.32,34.08,33.86,33.63,33.43,33.02,N/A,N/A +2013,8,1,22,30,94120,93080,92060,23.19,0,4.29,5.25,5.49,5.6000000000000005,5.68,5.72,5.76,5.78,5.8100000000000005,158.57,157.83,157.37,156.94,156.57,156.22,155.9,155.61,155.03,35.69,35,34.730000000000004,34.480000000000004,34.26,34.04,33.82,33.61,33.21,N/A,N/A +2013,8,1,23,30,94070,93030,92020,22.64,0,5.01,6.23,6.55,6.72,6.84,6.92,6.98,7.0200000000000005,7.07,150.08,150.32,150.44,150.51,150.56,150.6,150.63,150.67000000000002,150.70000000000002,35.67,35.050000000000004,34.81,34.57,34.35,34.13,33.92,33.72,33.31,N/A,N/A +2013,8,2,0,30,94060,93010,92000,19.87,0,5.29,6.67,7.03,7.24,7.390000000000001,7.48,7.55,7.61,7.68,169.11,168.62,168.29,167.94,167.63,167.32,167.01,166.72,166.16,35.34,34.910000000000004,34.71,34.49,34.29,34.08,33.88,33.68,33.28,N/A,N/A +2013,8,2,1,30,94030,92980,91970,21.37,0,3.35,5.11,5.6000000000000005,5.97,6.2700000000000005,6.5,6.69,6.8500000000000005,7.12,160.16,160.72,161.05,161.44,161.82,162.19,162.53,162.83,163.29,34.06,34.08,34,33.87,33.730000000000004,33.58,33.410000000000004,33.24,32.88,N/A,N/A +2013,8,2,2,30,94060,93010,92000,25,0,3.61,5.48,6.0200000000000005,6.47,6.8500000000000005,7.18,7.47,7.73,8.13,174.56,174.99,175.20000000000002,175.35,175.42000000000002,175.45000000000002,175.42000000000002,175.37,175.09,32.93,32.980000000000004,32.93,32.84,32.730000000000004,32.6,32.44,32.29,31.94,N/A,N/A +2013,8,2,3,30,94060,93010,91990,29.72,0,4.62,6.92,7.67,8.3,8.81,9.23,9.540000000000001,9.8,10.07,180.93,180.70000000000002,180.53,180.25,179.92000000000002,179.55,179.19,178.85,178.34,32.09,32.13,32.09,32.02,31.94,31.84,31.71,31.580000000000002,31.27,N/A,N/A +2013,8,2,4,30,94090,93030,92010,31.18,0,4.82,7.23,8.08,8.86,9.540000000000001,10.18,10.74,11.25,12.01,176.85,177.13,177.28,177.4,177.47,177.52,177.51,177.48,177.25,31.43,31.46,31.43,31.37,31.29,31.2,31.09,30.98,30.71,N/A,N/A +2013,8,2,5,30,94090,93030,92010,32.480000000000004,0,4.82,7.28,8.18,9.02,9.77,10.48,11.14,11.76,12.8,171.89000000000001,173.01,173.68,174.20000000000002,174.6,174.91,175.18,175.42000000000002,175.85,30.580000000000002,30.67,30.68,30.66,30.62,30.580000000000002,30.51,30.43,30.240000000000002,N/A,N/A +2013,8,2,6,30,94120,93050,92030,32.61,0,5.45,8.02,8.93,9.75,10.48,11.15,11.77,12.34,13.280000000000001,170.93,172.02,172.64000000000001,173.1,173.42000000000002,173.64000000000001,173.77,173.87,174.07,29.92,29.93,29.89,29.84,29.78,29.71,29.64,29.560000000000002,29.38,N/A,N/A +2013,8,2,7,30,94100,93030,92000,33.75,0,5.13,7.71,8.65,9.52,10.31,11.03,11.69,12.3,13.25,169.34,170.9,171.79,172.5,173.01,173.4,173.65,173.85,174.14000000000001,29.07,29.13,29.11,29.09,29.060000000000002,29.04,29.01,28.98,28.88,N/A,N/A +2013,8,2,8,30,94150,93080,92050,33.95,0,4.79,7.45,8.47,9.44,10.290000000000001,11.05,11.71,12.31,13.16,170.89000000000001,172.99,174.15,174.99,175.59,176.03,176.36,176.63,177.1,28.34,28.46,28.48,28.48,28.46,28.45,28.42,28.39,28.29,N/A,N/A +2013,8,2,9,30,94140,93070,92040,36.33,0,3.81,6.4,7.45,8.47,9.39,10.23,10.99,11.700000000000001,12.82,163.66,167.63,169.8,171.27,172.33,173.12,173.72,174.24,175.12,27.41,27.61,27.66,27.7,27.73,27.75,27.76,27.76,27.73,N/A,N/A +2013,8,2,10,30,94150,93080,92040,39.79,0,3.04,5.5200000000000005,6.5200000000000005,7.5,8.41,9.25,10.06,10.83,12.17,151.56,158.31,161.94,164.18,165.74,166.87,167.72,168.46,169.79,26.52,26.82,26.88,26.92,26.95,26.96,26.95,26.93,26.86,N/A,N/A +2013,8,2,11,30,94170,93090,92050,41.03,0,3.94,6.34,7.26,8.16,8.99,9.790000000000001,10.55,11.27,12.540000000000001,150.08,154.93,157.82,160.25,162.44,164.47,166.41,168.23,171.8,25.88,26.05,26.07,26.09,26.11,26.12,26.14,26.150000000000002,26.21,N/A,N/A +2013,8,2,12,30,94220,93140,92100,42.480000000000004,0,3.29,5.51,6.43,7.3500000000000005,8.2,8.99,9.73,10.43,11.63,140.63,149,153.75,157.16,159.87,162.14000000000001,164.22,166.16,169.79,25.14,25.37,25.44,25.5,25.55,25.6,25.650000000000002,25.69,25.77,N/A,N/A +2013,8,2,13,30,94190,93120,92080,36.87,0,5.13,6.63,7.140000000000001,7.59,8.06,8.53,8.84,9.09,10.21,157.20000000000002,158.53,159.39000000000001,160.32,161.3,162.31,162.95000000000002,163.47,165.82,27.01,26.62,26.45,26.28,26.12,25.98,25.810000000000002,25.650000000000002,25.41,N/A,N/A +2013,8,2,14,30,94210,93140,92100,36.26,0,5.78,7.23,7.63,7.8500000000000005,8,8.09,8.16,8.21,8.290000000000001,164.71,165.19,165.47,165.68,165.88,166.06,166.26,166.44,166.88,28.48,27.88,27.650000000000002,27.42,27.21,27.01,26.810000000000002,26.63,26.26,N/A,N/A +2013,8,2,15,30,94200,93130,92100,33.230000000000004,0,5.92,7.41,7.83,8.06,8.21,8.31,8.38,8.43,8.49,171.75,171.9,172,172.08,172.14000000000001,172.20000000000002,172.27,172.33,172.45000000000002,29.89,29.18,28.91,28.66,28.44,28.22,28.01,27.82,27.42,N/A,N/A +2013,8,2,16,30,94200,93140,92110,29.11,0,5.25,6.49,6.84,7.0200000000000005,7.140000000000001,7.22,7.28,7.32,7.36,175.06,174.92000000000002,174.85,174.78,174.70000000000002,174.64000000000001,174.58,174.52,174.42000000000002,31.330000000000002,30.57,30.28,30.02,29.78,29.560000000000002,29.34,29.14,28.740000000000002,N/A,N/A +2013,8,2,17,30,94180,93120,92100,28.330000000000002,0,5.4,6.66,7.0200000000000005,7.21,7.34,7.42,7.48,7.5200000000000005,7.57,175.93,175.62,175.45000000000002,175.31,175.20000000000002,175.09,175.01,174.92000000000002,174.78,32.37,31.57,31.27,30.990000000000002,30.75,30.52,30.3,30.09,29.67,N/A,N/A +2013,8,2,18,30,94110,93060,92040,27.2,0,5.0200000000000005,6.19,6.51,6.69,6.8100000000000005,6.890000000000001,6.95,6.99,7.05,174.03,173.77,173.64000000000001,173.51,173.39000000000001,173.28,173.18,173.08,172.91,33.46,32.660000000000004,32.35,32.07,31.82,31.59,31.36,31.150000000000002,30.73,N/A,N/A +2013,8,2,19,30,94080,93030,92010,25.69,0,5.01,6.15,6.45,6.61,6.72,6.79,6.84,6.88,6.92,180.49,179.79,179.37,179.02,178.72,178.46,178.21,177.98,177.56,34.37,33.58,33.27,32.99,32.74,32.51,32.28,32.07,31.650000000000002,N/A,N/A +2013,8,2,20,30,94020,92970,91960,24.6,0,4.86,5.96,6.2700000000000005,6.43,6.54,6.62,6.67,6.71,6.7700000000000005,174.56,174.11,173.83,173.57,173.36,173.17000000000002,172.98,172.81,172.5,35.07,34.29,33.980000000000004,33.7,33.46,33.22,33,32.78,32.36,N/A,N/A +2013,8,2,21,30,93960,92920,91910,23.32,0,4.2700000000000005,5.24,5.51,5.66,5.76,5.83,5.88,5.92,5.98,175.61,175.09,174.79,174.51,174.28,174.06,173.86,173.68,173.35,35.59,34.85,34.57,34.300000000000004,34.05,33.83,33.6,33.39,32.97,N/A,N/A +2013,8,2,22,30,93930,92880,91870,23.47,0,4.38,5.38,5.66,5.8100000000000005,5.92,5.99,6.05,6.09,6.140000000000001,169.82,169.93,169.95000000000002,169.94,169.93,169.9,169.88,169.86,169.82,35.81,35.11,34.85,34.59,34.36,34.13,33.910000000000004,33.7,33.29,N/A,N/A +2013,8,2,23,30,93910,92860,91850,23.85,0,4.96,6.15,6.47,6.640000000000001,6.76,6.84,6.9,6.94,6.99,165.83,166.23,166.42000000000002,166.53,166.62,166.69,166.75,166.79,166.87,35.65,35.04,34.800000000000004,34.56,34.34,34.12,33.910000000000004,33.71,33.3,N/A,N/A +2013,8,3,0,30,93880,92840,91830,25.3,0,5.71,7.17,7.51,7.68,7.79,7.86,7.9,7.930000000000001,7.96,152.73,153.59,154.07,154.46,154.8,155.11,155.41,155.69,156.21,35.06,34.61,34.410000000000004,34.2,33.99,33.79,33.59,33.39,33,N/A,N/A +2013,8,3,1,30,93890,92850,91830,27.400000000000002,0,4.73,6.65,7.17,7.51,7.75,7.92,8.03,8.11,8.17,169.91,169.03,168.58,168.22,167.98,167.82,167.77,167.77,167.92000000000002,34.02,33.92,33.81,33.660000000000004,33.5,33.33,33.15,32.980000000000004,32.6,N/A,N/A +2013,8,3,2,30,93950,92900,91890,30.51,0,5.11,7.3100000000000005,8.01,8.59,9.07,9.47,9.81,10.120000000000001,10.620000000000001,159.51,159.05,158.77,158.52,158.32,158.15,158.04,157.95000000000002,157.82,32.92,32.87,32.79,32.68,32.56,32.43,32.29,32.15,31.830000000000002,N/A,N/A +2013,8,3,3,30,93980,92930,91910,31.93,0,4.63,7.07,7.96,8.78,9.5,10.16,10.73,11.23,12.02,149.87,150.87,151.51,152.19,152.85,153.5,154.12,154.70000000000002,155.77,31.76,31.77,31.73,31.650000000000002,31.560000000000002,31.46,31.34,31.220000000000002,30.93,N/A,N/A +2013,8,3,4,30,94000,92940,91920,30.66,0,5.48,8.07,8.950000000000001,9.73,10.4,11,11.540000000000001,12.030000000000001,12.81,152.93,153.49,153.82,154.07,154.27,154.46,154.68,154.9,155.48,31.04,31.060000000000002,31.03,30.970000000000002,30.89,30.810000000000002,30.71,30.62,30.39,N/A,N/A +2013,8,3,5,30,94020,92960,91930,32.410000000000004,0,5.3500000000000005,8.06,9.040000000000001,9.92,10.71,11.44,12.1,12.700000000000001,13.700000000000001,150.65,151.51,152.02,152.41,152.8,153.19,153.65,154.1,155.20000000000002,30.04,30.1,30.09,30.060000000000002,30.02,29.97,29.92,29.86,29.72,N/A,N/A +2013,8,3,6,30,94090,93030,92000,34.57,0,5.37,8.09,9.1,10.01,10.83,11.58,12.32,13,14.200000000000001,150.74,151.70000000000002,152.26,152.8,153.36,153.93,154.58,155.22,156.53,29.19,29.26,29.25,29.23,29.2,29.16,29.13,29.09,28.98,N/A,N/A +2013,8,3,7,30,94120,93050,92020,35.1,0,5.25,8.08,9.13,10.1,10.97,11.78,12.55,13.26,14.55,149.53,151,151.85,152.56,153.23,153.88,154.57,155.23,156.75,28.48,28.560000000000002,28.55,28.53,28.5,28.47,28.43,28.400000000000002,28.32,N/A,N/A +2013,8,3,8,30,94130,93060,92030,37.27,0,5.34,8.14,9.18,10.120000000000001,10.97,11.75,12.5,13.200000000000001,14.48,147.91,150.04,151.29,152.45000000000002,153.57,154.65,155.75,156.81,158.89000000000001,27.67,27.73,27.72,27.7,27.68,27.66,27.64,27.62,27.57,N/A,N/A +2013,8,3,9,30,94150,93080,92040,42.64,0,4.73,7.46,8.540000000000001,9.540000000000001,10.46,11.31,12.16,12.98,14.59,148.78,151.20000000000002,152.6,153.82,154.92000000000002,155.94,156.94,157.88,159.75,26.740000000000002,26.77,26.72,26.66,26.59,26.52,26.43,26.35,26.17,N/A,N/A +2013,8,3,10,30,94180,93110,92060,50.03,0,4.59,7.25,8.290000000000001,9.24,10.08,10.86,11.61,12.31,13.67,149.85,152.49,154.02,155.25,156.3,157.23,158.11,158.92000000000002,160.49,25.68,25.66,25.59,25.5,25.39,25.29,25.17,25.07,24.830000000000002,N/A,N/A +2013,8,3,11,30,94200,93120,92080,61.27,0,4.42,6.87,7.84,8.76,9.56,10.3,11.02,11.700000000000001,13.02,144.19,147.54,149.5,151.18,152.65,153.99,155.26,156.45000000000002,158.75,24.59,24.52,24.43,24.32,24.21,24.1,23.98,23.87,23.64,N/A,N/A +2013,8,3,12,30,94240,93150,92100,72.37,0,4.25,6.5,7.4,8.22,8.93,9.58,10.200000000000001,10.78,11.96,143.84,146.73,148.43,149.89000000000001,151.22,152.46,153.73,154.92000000000002,157.43,23.88,23.740000000000002,23.63,23.5,23.37,23.25,23.12,23,22.77,N/A,N/A +2013,8,3,13,30,94240,93160,92120,68.47,0,5.43,6.97,7.42,7.71,7.930000000000001,8.11,8.26,8.4,8.76,155.3,155.98,156.36,156.72,157.09,157.46,157.89000000000001,158.3,159.36,24.95,24.48,24.28,24.07,23.88,23.69,23.5,23.330000000000002,22.97,N/A,N/A +2013,8,3,14,30,94270,93190,92150,61.9,0,5.8,7.33,7.7700000000000005,8.02,8.18,8.290000000000001,8.36,8.42,8.49,157.85,158.11,158.26,158.4,158.53,158.65,158.8,158.94,159.28,26.41,25.78,25.54,25.3,25.09,24.89,24.69,24.5,24.12,N/A,N/A +2013,8,3,15,30,94280,93210,92170,52.15,0,5.63,7.07,7.47,7.69,7.84,7.95,8.01,8.06,8.120000000000001,163.1,163.3,163.42000000000002,163.52,163.61,163.68,163.77,163.86,164.04,28.23,27.51,27.240000000000002,26.990000000000002,26.76,26.55,26.34,26.150000000000002,25.75,N/A,N/A +2013,8,3,16,30,94270,93200,92170,42.65,0,6.03,7.5200000000000005,7.930000000000001,8.16,8.31,8.41,8.47,8.52,8.57,164.17000000000002,164.31,164.4,164.48,164.54,164.59,164.64000000000001,164.70000000000002,164.81,30.12,29.32,29.03,28.76,28.52,28.3,28.080000000000002,27.88,27.47,N/A,N/A +2013,8,3,17,30,94210,93150,92130,36.160000000000004,0,5.49,6.8,7.16,7.34,7.46,7.54,7.6000000000000005,7.640000000000001,7.68,164.01,164.21,164.32,164.4,164.46,164.52,164.57,164.63,164.74,31.59,30.79,30.48,30.21,29.97,29.740000000000002,29.52,29.310000000000002,28.900000000000002,N/A,N/A +2013,8,3,18,30,94190,93130,92110,32.18,0,5,6.15,6.46,6.62,6.72,6.79,6.84,6.87,6.91,169.18,169.45000000000002,169.57,169.66,169.72,169.78,169.84,169.89000000000001,169.97,32.78,31.98,31.67,31.39,31.150000000000002,30.91,30.69,30.48,30.060000000000002,N/A,N/A +2013,8,3,19,30,94150,93100,92080,29.42,0,4.97,6.12,6.44,6.62,6.74,6.82,6.88,6.93,6.99,170.37,170.20000000000002,170.11,170.01,169.9,169.8,169.70000000000002,169.61,169.43,33.78,32.980000000000004,32.67,32.38,32.13,31.900000000000002,31.67,31.45,31.03,N/A,N/A +2013,8,3,20,30,94110,93060,92040,27.11,0,5.07,6.23,6.54,6.7,6.8100000000000005,6.88,6.93,6.96,7,160.6,160.76,160.86,160.9,160.93,160.95000000000002,160.96,160.97,160.95000000000002,34.5,33.7,33.39,33.12,32.87,32.64,32.42,32.2,31.78,N/A,N/A +2013,8,3,21,30,94070,93020,92010,24.78,0,4.78,5.87,6.16,6.3100000000000005,6.41,6.48,6.53,6.57,6.61,157.3,157.35,157.33,157.29,157.23,157.18,157.11,157.05,156.94,35.06,34.300000000000004,34.02,33.75,33.51,33.29,33.06,32.85,32.44,N/A,N/A +2013,8,3,22,30,94050,93010,92000,24.650000000000002,0,4.86,6.0200000000000005,6.3500000000000005,6.53,6.66,6.75,6.8100000000000005,6.86,6.93,150.04,150,150.02,150.02,150.03,150.02,150.02,150.02,150.02,35.25,34.54,34.27,34.01,33.78,33.56,33.34,33.13,32.71,N/A,N/A +2013,8,3,23,30,94020,92980,91970,23.57,0,5.32,6.63,6.98,7.16,7.29,7.37,7.43,7.48,7.54,151.64000000000001,151.63,151.62,151.57,151.53,151.48,151.45000000000002,151.41,151.33,35.06,34.44,34.2,33.97,33.75,33.53,33.32,33.12,32.71,N/A,N/A +2013,8,4,0,30,94020,92970,91960,25.5,0,5.69,7.28,7.7,7.96,8.14,8.26,8.36,8.44,8.540000000000001,141.64000000000001,141.99,142.17000000000002,142.34,142.49,142.63,142.77,142.9,143.15,34.43,33.980000000000004,33.78,33.56,33.36,33.15,32.95,32.75,32.35,N/A,N/A +2013,8,4,1,30,94020,92970,91960,26.580000000000002,0,5.17,7.42,8.11,8.620000000000001,9.02,9.34,9.58,9.78,10.040000000000001,148.44,148.37,148.3,148.21,148.13,148.07,148,147.91,147.68,33.1,32.99,32.88,32.730000000000004,32.57,32.410000000000004,32.230000000000004,32.06,31.69,N/A,N/A +2013,8,4,2,30,94100,93040,92020,28.12,0,3.0100000000000002,5.29,6.12,6.84,7.49,8.08,8.59,9.05,9.8,144.8,144.08,143.71,143.55,143.56,143.71,143.94,144.19,144.75,31.69,31.86,31.84,31.77,31.67,31.560000000000002,31.42,31.29,30.990000000000002,N/A,N/A +2013,8,4,3,30,94130,93070,92050,24.66,0,4.5600000000000005,7.17,8.14,8.98,9.72,10.39,10.93,11.4,11.98,149.46,149.07,148.84,148.71,148.75,148.92000000000002,149.23,149.57,150.36,30.990000000000002,31.13,31.14,31.11,31.07,31.02,30.93,30.85,30.6,N/A,N/A +2013,8,4,4,30,94150,93080,92060,28.48,0,4.2,6.79,7.79,8.74,9.6,10.4,11.11,11.75,12.56,145.5,145.45000000000002,145.49,145.6,145.95000000000002,146.45000000000002,147.16,147.89000000000001,149.45000000000002,29.88,30.07,30.12,30.14,30.150000000000002,30.14,30.11,30.09,29.96,N/A,N/A +2013,8,4,5,30,94200,93130,92110,33.56,0,3.31,5.84,6.86,7.84,8.75,9.61,10.46,11.28,12.700000000000001,145.27,144.67000000000002,144.41,144.49,144.95000000000002,145.66,146.56,147.48,149.13,29.18,29.42,29.47,29.490000000000002,29.5,29.5,29.490000000000002,29.47,29.37,N/A,N/A +2013,8,4,6,30,94230,93160,92130,42.550000000000004,0,3.7800000000000002,6.34,7.3500000000000005,8.28,9.14,9.950000000000001,10.71,11.42,12.620000000000001,145.47,145.67000000000002,145.88,146.16,146.68,147.34,148.16,148.97,150.54,28.57,28.72,28.740000000000002,28.740000000000002,28.73,28.71,28.68,28.650000000000002,28.55,N/A,N/A +2013,8,4,7,30,94280,93210,92180,48.59,0,4.33,6.74,7.68,8.52,9.31,10.05,10.790000000000001,11.49,12.81,142.65,143.21,143.63,144.05,144.58,145.21,146,146.79,148.73,28.07,28.080000000000002,28.05,27.990000000000002,27.92,27.85,27.77,27.68,27.490000000000002,N/A,N/A +2013,8,4,8,30,94290,93220,92190,53.47,0,6.140000000000001,8.84,9.78,10.620000000000001,11.38,12.09,12.8,13.47,14.700000000000001,145.55,146.32,146.82,147.34,147.89000000000001,148.46,149.12,149.76,151.13,27.57,27.47,27.38,27.26,27.14,27.02,26.89,26.77,26.51,N/A,N/A +2013,8,4,9,30,94310,93240,92200,56.9,0,5.61,8.08,8.92,9.67,10.33,10.93,11.52,12.09,13.22,147.16,148.11,148.72,149.3,149.9,150.51,151.22,151.92000000000002,153.58,26.57,26.45,26.35,26.23,26.09,25.96,25.810000000000002,25.68,25.39,N/A,N/A +2013,8,4,10,30,94340,93260,92210,58.83,0,6.21,8.75,9.58,10.290000000000001,10.93,11.5,12.07,12.61,13.68,149.81,150.97,151.68,152.35,153,153.62,154.29,154.93,156.32,25.72,25.57,25.46,25.32,25.18,25.04,24.900000000000002,24.76,24.47,N/A,N/A +2013,8,4,11,30,94360,93280,92230,63.32,0,5.69,8.09,8.9,9.59,10.19,10.74,11.27,11.77,12.780000000000001,146.62,147.84,148.57,149.26,149.97,150.65,151.41,152.13,153.73,24.96,24.8,24.69,24.55,24.41,24.27,24.13,23.990000000000002,23.71,N/A,N/A +2013,8,4,12,30,94360,93280,92230,67.27,0,5.73,8.06,8.86,9.52,10.1,10.61,11.11,11.57,12.47,149.63,150.67000000000002,151.26,151.81,152.37,152.92000000000002,153.57,154.18,155.59,24.35,24.16,24.03,23.89,23.740000000000002,23.6,23.45,23.31,23.03,N/A,N/A +2013,8,4,13,30,94420,93330,92290,61.550000000000004,0,6.78,8.65,9.16,9.48,9.700000000000001,9.870000000000001,9.99,10.1,10.31,152.20000000000002,152.83,153.19,153.52,153.83,154.11,154.43,154.74,155.46,25.16,24.7,24.490000000000002,24.28,24.080000000000002,23.89,23.7,23.52,23.150000000000002,N/A,N/A +2013,8,4,14,30,94420,93340,92290,55.01,0,6.4,8.11,8.59,8.870000000000001,9.06,9.19,9.28,9.34,9.42,159.72,159.97,160.08,160.17000000000002,160.25,160.32,160.39000000000001,160.46,160.63,26.36,25.72,25.48,25.240000000000002,25.02,24.810000000000002,24.6,24.41,24.02,N/A,N/A +2013,8,4,15,30,94430,93360,92320,48.39,0,5.97,7.51,7.94,8.19,8.36,8.47,8.55,8.620000000000001,8.69,154.15,154.45000000000002,154.63,154.75,154.85,154.92000000000002,154.99,155.05,155.19,27.75,27.02,26.740000000000002,26.490000000000002,26.26,26.05,25.830000000000002,25.63,25.23,N/A,N/A +2013,8,4,16,30,94390,93320,92280,42.74,0,6.15,7.71,8.14,8.39,8.56,8.67,8.75,8.82,8.9,153.25,153.61,153.79,153.92000000000002,154.03,154.11,154.19,154.26,154.4,29.240000000000002,28.44,28.150000000000002,27.88,27.64,27.41,27.19,26.990000000000002,26.57,N/A,N/A +2013,8,4,17,30,94360,93300,92270,38.78,0,5.61,6.99,7.38,7.59,7.74,7.84,7.91,7.97,8.040000000000001,158.14000000000001,158.22,158.26,158.27,158.28,158.28,158.28,158.29,158.29,30.57,29.75,29.44,29.16,28.92,28.69,28.46,28.26,27.830000000000002,N/A,N/A +2013,8,4,18,30,94320,93260,92230,35.63,0,5.08,6.3100000000000005,6.66,6.8500000000000005,6.99,7.08,7.15,7.2,7.28,153.18,153.42000000000002,153.55,153.64000000000001,153.70000000000002,153.76,153.82,153.87,153.97,31.76,30.95,30.64,30.36,30.11,29.88,29.650000000000002,29.44,29.02,N/A,N/A +2013,8,4,19,30,94260,93200,92180,31.810000000000002,0,5.41,6.71,7.0600000000000005,7.26,7.390000000000001,7.49,7.55,7.61,7.68,153.19,153.47,153.63,153.73,153.81,153.88,153.94,153.99,154.1,32.85,32.03,31.720000000000002,31.44,31.19,30.95,30.72,30.51,30.09,N/A,N/A +2013,8,4,20,30,94210,93160,92140,28.580000000000002,0,5.22,6.49,6.84,7.04,7.17,7.2700000000000005,7.3500000000000005,7.4,7.48,156.04,156.21,156.26,156.28,156.3,156.31,156.32,156.33,156.33,33.7,32.89,32.59,32.31,32.06,31.830000000000002,31.6,31.39,30.970000000000002,N/A,N/A +2013,8,4,21,30,94160,93110,92100,25.66,0,5.43,6.75,7.1000000000000005,7.3,7.44,7.54,7.61,7.67,7.75,151.55,151.77,151.89000000000001,151.97,152.04,152.09,152.15,152.19,152.27,34.28,33.5,33.21,32.94,32.7,32.47,32.24,32.03,31.61,N/A,N/A +2013,8,4,22,30,94120,93070,92060,24.830000000000002,0,5.54,6.9,7.2700000000000005,7.47,7.62,7.72,7.79,7.8500000000000005,7.930000000000001,152.25,152.55,152.67000000000002,152.74,152.8,152.85,152.88,152.92000000000002,152.98,34.47,33.75,33.480000000000004,33.22,32.980000000000004,32.76,32.54,32.33,31.91,N/A,N/A +2013,8,4,23,30,94070,93020,92010,24.41,0,5.73,7.19,7.58,7.8,7.95,8.06,8.15,8.21,8.3,155.79,155.91,155.92000000000002,155.9,155.87,155.84,155.81,155.78,155.71,34.28,33.660000000000004,33.42,33.18,32.96,32.74,32.53,32.33,31.92,N/A,N/A +2013,8,5,0,30,94070,93020,92000,26.64,0,5.76,7.38,7.8100000000000005,8.1,8.3,8.45,8.57,8.66,8.81,150.92000000000002,150.89000000000001,150.93,150.99,151.04,151.11,151.17000000000002,151.23,151.36,33.7,33.25,33.05,32.83,32.63,32.42,32.22,32.02,31.62,N/A,N/A +2013,8,5,1,30,94060,93000,91990,29.5,0,5.83,8.23,8.96,9.52,9.94,10.28,10.540000000000001,10.76,11.040000000000001,140.99,141.37,141.59,141.79,142,142.19,142.4,142.59,142.96,32.35,32.2,32.07,31.91,31.75,31.580000000000002,31.39,31.220000000000002,30.85,N/A,N/A +2013,8,5,2,30,94100,93040,92020,31.66,0,4.22,6.34,7.0200000000000005,7.6000000000000005,8.07,8.48,8.85,9.200000000000001,9.81,142.1,142.56,142.93,143.44,144.02,144.63,145.27,145.9,147.01,31.36,31.32,31.25,31.150000000000002,31.02,30.89,30.740000000000002,30.6,30.27,N/A,N/A +2013,8,5,3,30,94150,93090,92060,33.94,0,4.03,6.43,7.33,8.120000000000001,8.8,9.4,9.92,10.38,11.18,141.08,141.46,141.77,142.20000000000002,142.73,143.34,144.05,144.74,146.18,30.42,30.48,30.46,30.400000000000002,30.32,30.240000000000002,30.13,30.03,29.77,N/A,N/A +2013,8,5,4,30,94190,93120,92100,35.74,0,3.94,6.3500000000000005,7.25,8.05,8.77,9.44,10.07,10.67,11.77,142.39000000000001,142.66,142.86,143.11,143.5,143.97,144.57,145.18,146.53,29.78,29.87,29.84,29.79,29.73,29.66,29.57,29.490000000000002,29.3,N/A,N/A +2013,8,5,5,30,94180,93110,92090,38.84,0,4.82,7.38,8.31,9.14,9.9,10.59,11.26,11.89,13.05,144.72,144.8,144.89000000000001,145.03,145.32,145.67000000000002,146.16,146.67000000000002,147.97,29.02,29.060000000000002,29.03,28.98,28.91,28.84,28.76,28.68,28.5,N/A,N/A +2013,8,5,6,30,94220,93150,92120,43.04,0,5.61,8.36,9.35,10.22,11.02,11.76,12.49,13.16,14.450000000000001,150.86,151.20000000000002,151.42000000000002,151.62,151.87,152.15,152.51,152.85,153.69,28.490000000000002,28.46,28.400000000000002,28.32,28.23,28.150000000000002,28.04,27.95,27.75,N/A,N/A +2013,8,5,7,30,94270,93190,92160,47.74,0,4.6000000000000005,7.11,8.05,8.91,9.69,10.43,11.17,11.86,13.200000000000001,147.96,148.85,149.41,149.92000000000002,150.48,151.05,151.70000000000002,152.34,153.77,27.67,27.67,27.62,27.55,27.46,27.37,27.26,27.16,26.92,N/A,N/A +2013,8,5,8,30,94300,93230,92190,53,0,4.19,6.6000000000000005,7.5200000000000005,8.35,9.11,9.8,10.5,11.16,12.42,146.69,147.56,148.13,148.74,149.41,150.12,150.91,151.68,153.22,26.78,26.75,26.68,26.580000000000002,26.47,26.36,26.23,26.12,25.85,N/A,N/A +2013,8,5,9,30,94300,93220,92180,47.77,0,5.42,8.040000000000001,8.99,9.84,10.61,11.33,12.040000000000001,12.700000000000001,14.01,146.97,148.42000000000002,149.29,150.08,150.85,151.58,152.4,153.18,154.9,25.93,25.87,25.79,25.69,25.59,25.490000000000002,25.38,25.28,25.05,N/A,N/A +2013,8,5,10,30,94330,93250,92200,45.9,0,4.57,6.98,7.86,8.66,9.39,10.06,10.73,11.370000000000001,12.67,145.45000000000002,147.33,148.44,149.44,150.45000000000002,151.43,152.52,153.56,155.91,24.97,24.94,24.87,24.79,24.7,24.6,24.490000000000002,24.39,24.2,N/A,N/A +2013,8,5,11,30,94320,93240,92190,51.88,0,5.26,7.7,8.61,9.41,10.15,10.83,11.49,12.120000000000001,13.32,141.09,143.73,145.42000000000002,146.92000000000002,148.34,149.69,151.08,152.4,155.19,24.2,24.13,24.05,23.96,23.87,23.78,23.69,23.61,23.45,N/A,N/A +2013,8,5,12,30,94330,93240,92190,56.31,0,4.43,6.8,7.69,8.49,9.18,9.8,10.39,10.94,11.99,140.35,143.25,144.89000000000001,146.29,147.64000000000001,148.92000000000002,150.33,151.66,154.6,23.62,23.52,23.43,23.32,23.22,23.12,23.02,22.92,22.76,N/A,N/A +2013,8,5,13,30,94340,93250,92200,56.18,0,5.13,6.62,7.0600000000000005,7.3500000000000005,7.58,7.76,7.930000000000001,8.09,8.5,154.75,155.67000000000002,156.23,156.73,157.22,157.68,158.22,158.72,160,24.59,24.13,23.93,23.73,23.53,23.34,23.150000000000002,22.98,22.62,N/A,N/A +2013,8,5,14,30,94360,93280,92230,54.870000000000005,0,5.36,6.75,7.15,7.390000000000001,7.53,7.63,7.69,7.75,7.8,159.67000000000002,160.06,160.28,160.45000000000002,160.6,160.73,160.87,161.01,161.31,25.94,25.32,25.080000000000002,24.84,24.63,24.43,24.22,24.03,23.64,N/A,N/A +2013,8,5,15,30,94350,93270,92230,50.72,0,5.34,6.66,7.03,7.23,7.36,7.45,7.51,7.55,7.6000000000000005,159.22,159.47,159.65,159.78,159.89000000000001,159.99,160.09,160.17000000000002,160.37,27.47,26.75,26.48,26.23,26,25.79,25.580000000000002,25.39,24.990000000000002,N/A,N/A +2013,8,5,16,30,94330,93260,92220,44.74,0,4.8100000000000005,5.98,6.32,6.51,6.640000000000001,6.73,6.79,6.84,6.9,161.5,161.78,161.93,162.04,162.13,162.21,162.31,162.39000000000001,162.56,29.23,28.48,28.19,27.93,27.69,27.47,27.25,27.05,26.650000000000002,N/A,N/A +2013,8,5,17,30,94280,93220,92190,39.09,0,5.01,6.2,6.54,6.73,6.86,6.95,7.01,7.0600000000000005,7.12,167.04,167.25,167.38,167.49,167.59,167.67000000000002,167.77,167.87,168.05,30.8,30.01,29.7,29.43,29.19,28.96,28.73,28.53,28.11,N/A,N/A +2013,8,5,18,30,94190,93130,92110,34.86,0,5.45,6.76,7.11,7.32,7.46,7.57,7.640000000000001,7.69,7.7700000000000005,168.39000000000001,168.77,168.97,169.14000000000001,169.28,169.4,169.52,169.63,169.84,32.2,31.37,31.060000000000002,30.78,30.53,30.29,30.060000000000002,29.85,29.43,N/A,N/A +2013,8,5,19,30,94130,93080,92060,30.93,0,5.37,6.6000000000000005,6.95,7.140000000000001,7.2700000000000005,7.3500000000000005,7.41,7.46,7.51,181.01,180.41,180.03,179.67000000000002,179.37,179.1,178.84,178.6,178.18,33.38,32.56,32.25,31.96,31.71,31.470000000000002,31.240000000000002,31.03,30.61,N/A,N/A +2013,8,5,20,30,94070,93020,92010,27.67,0,4.92,6,6.2700000000000005,6.390000000000001,6.47,6.5200000000000005,6.54,6.5600000000000005,6.5600000000000005,175.88,174.96,174.47,174.08,173.74,173.43,173.15,172.9,172.43,34.15,33.36,33.06,32.79,32.55,32.32,32.1,31.89,31.48,N/A,N/A +2013,8,5,21,30,94010,92960,91950,27.03,0,4.68,5.71,5.97,6.09,6.16,6.2,6.22,6.23,6.23,177.96,177.70000000000002,177.52,177.35,177.21,177.08,176.95000000000002,176.82,176.59,34.69,33.93,33.65,33.39,33.15,32.93,32.7,32.5,32.09,N/A,N/A +2013,8,5,22,30,93950,92900,91890,26.92,0,4.65,5.72,6.0200000000000005,6.19,6.3100000000000005,6.38,6.44,6.48,6.54,171.66,171.42000000000002,171.42000000000002,171.49,171.57,171.66,171.75,171.84,172.03,35.04,34.34,34.07,33.8,33.57,33.35,33.12,32.910000000000004,32.5,N/A,N/A +2013,8,5,23,30,93910,92860,91850,25.900000000000002,0,4.4,5.45,5.75,5.93,6.0600000000000005,6.140000000000001,6.21,6.26,6.34,165.02,165.42000000000002,165.70000000000002,165.92000000000002,166.11,166.26,166.4,166.53,166.77,35.01,34.4,34.160000000000004,33.92,33.7,33.480000000000004,33.27,33.07,32.660000000000004,N/A,N/A +2013,8,6,0,30,93870,92830,91820,27.560000000000002,0,6.37,8.09,8.52,8.76,8.92,9.02,9.09,9.15,9.200000000000001,163.29,163.56,163.73,163.86,163.98,164.09,164.20000000000002,164.29,164.49,34.33,33.88,33.68,33.46,33.26,33.06,32.85,32.65,32.26,N/A,N/A +2013,8,6,1,30,93890,92840,91830,27.25,0,4.86,6.91,7.53,8.01,8.4,8.71,8.98,9.21,9.6,158.31,158.03,157.88,157.8,157.78,157.82,157.91,158,158.25,33.11,33.02,32.92,32.78,32.63,32.46,32.29,32.12,31.76,N/A,N/A +2013,8,6,2,30,93910,92860,91840,24.35,0,6.04,8.540000000000001,9.32,9.94,10.43,10.85,11.200000000000001,11.51,12,158.41,158.21,158.1,158,157.94,157.91,157.91,157.93,158.06,32.12,32.09,32.01,31.91,31.79,31.66,31.51,31.37,31.05,N/A,N/A +2013,8,6,3,30,93970,92910,91890,22.67,0,4.86,7.55,8.58,9.49,10.31,11.08,11.77,12.42,13.41,153.31,154.28,154.87,155.32,155.71,156.05,156.36,156.64000000000001,157.13,30.830000000000002,30.990000000000002,31.01,31,30.96,30.91,30.84,30.77,30.55,N/A,N/A +2013,8,6,4,30,93980,92920,91890,22.69,0,5.11,7.76,8.72,9.57,10.35,11.07,11.76,12.41,13.55,149.59,151.12,152.12,153.03,153.89000000000001,154.73,155.58,156.41,158.12,29.89,30.080000000000002,30.12,30.14,30.150000000000002,30.14,30.12,30.09,29.97,N/A,N/A +2013,8,6,5,30,93980,92910,91890,24.75,0,6.18,9.16,10.22,11.18,12.01,12.76,13.42,14.02,14.99,156.69,157.35,157.76,158.13,158.52,158.91,159.38,159.84,160.93,29.52,29.650000000000002,29.67,29.67,29.67,29.67,29.64,29.61,29.5,N/A,N/A +2013,8,6,6,30,93990,92920,91890,27.43,0,5.21,8.08,9.19,10.200000000000001,11.09,11.9,12.67,13.39,14.65,147.73,149.28,150.25,151.08,151.93,152.79,153.78,154.75,156.84,28.37,28.53,28.560000000000002,28.580000000000002,28.6,28.62,28.64,28.66,28.68,N/A,N/A +2013,8,6,7,30,94050,92980,91940,30.740000000000002,0,3.7600000000000002,6.59,7.76,8.83,9.790000000000001,10.67,11.51,12.3,13.76,142.26,146.85,149.41,151.02,152.34,153.46,154.59,155.69,158.13,27.240000000000002,27.52,27.57,27.61,27.63,27.650000000000002,27.66,27.67,27.68,N/A,N/A +2013,8,6,8,30,94040,92960,91930,32.01,0,5.03,7.99,9.17,10.27,11.27,12.200000000000001,13.13,14.01,15.71,144.46,147.74,149.59,151.06,152.37,153.56,154.75,155.88,158.15,26.63,26.78,26.810000000000002,26.82,26.830000000000002,26.830000000000002,26.84,26.84,26.810000000000002,N/A,N/A +2013,8,6,9,30,94010,92940,91900,34.87,0,6.24,9.23,10.36,11.39,12.3,13.13,13.93,14.69,16.12,148.82,151.31,152.81,154.1,155.25,156.31,157.36,158.33,160.31,26.05,26.07,26.03,25.97,25.91,25.84,25.78,25.71,25.580000000000002,N/A,N/A +2013,8,6,10,30,93980,92900,91860,41.550000000000004,0,5.62,8.56,9.71,10.75,11.66,12.47,13.24,13.96,15.27,148.73,151.8,153.56,154.93,156.09,157.11,158.11,159.05,161.06,25.07,25.060000000000002,25,24.93,24.86,24.79,24.72,24.67,24.6,N/A,N/A +2013,8,6,11,30,94060,92980,91930,51.5,0,1.95,4.45,5.57,6.62,7.55,8.370000000000001,9.16,9.9,11.26,125.83,137.41,144.17000000000002,147.61,150.12,152,153.58,155.02,157.5,23.63,23.990000000000002,23.95,23.900000000000002,23.830000000000002,23.76,23.68,23.6,23.46,N/A,N/A +2013,8,6,12,30,94060,92980,91930,53.38,0,2.85,5.0600000000000005,6.0200000000000005,6.99,7.91,8.78,9.64,10.47,12.07,133.97,142.6,147.38,150.69,153.09,154.95000000000002,156.41,157.72,160.25,22.93,23.06,23.07,23.06,23.04,23.02,22.98,22.96,22.94,N/A,N/A +2013,8,6,13,30,94090,93010,91970,50.36,0,4.59,5.91,6.34,6.65,6.9,7.11,7.34,7.5600000000000005,8.120000000000001,162.49,163.11,163.55,163.93,164.27,164.57,164.92000000000002,165.24,165.96,24.75,24.32,24.13,23.92,23.740000000000002,23.56,23.38,23.21,22.87,N/A,N/A +2013,8,6,14,30,94080,93000,91960,46.39,0,5.7700000000000005,7.16,7.53,7.72,7.83,7.890000000000001,7.92,7.94,8.07,159.91,160.38,160.61,160.82,161.04,161.25,161.53,161.8,162.86,26.26,25.66,25.44,25.22,25.03,24.85,24.67,24.51,24.21,N/A,N/A +2013,8,6,15,30,94110,93040,92000,40.17,0,4.94,6.1000000000000005,6.43,6.6000000000000005,6.7,6.75,6.76,6.76,6.72,173.97,174.06,174.09,174.15,174.22,174.29,174.38,174.47,174.69,28.5,27.810000000000002,27.54,27.3,27.080000000000002,26.87,26.67,26.48,26.1,N/A,N/A +2013,8,6,16,30,94080,93020,91990,34.61,0,4.89,5.99,6.28,6.41,6.49,6.5200000000000005,6.5200000000000005,6.5200000000000005,6.47,175.93,175.92000000000002,175.9,175.89000000000001,175.89000000000001,175.89000000000001,175.91,175.93,176.02,30.53,29.78,29.490000000000002,29.240000000000002,29.01,28.8,28.580000000000002,28.39,28,N/A,N/A +2013,8,6,17,30,94040,92990,91960,30.87,0,4.5,5.47,5.74,5.87,5.95,5.98,6,6,5.98,174.63,174.58,174.56,174.56,174.57,174.61,174.65,174.72,174.86,32.37,31.61,31.310000000000002,31.04,30.8,30.580000000000002,30.36,30.16,29.75,N/A,N/A +2013,8,6,18,30,94000,92960,91940,28.310000000000002,0,4.05,4.9,5.14,5.25,5.32,5.36,5.38,5.39,5.39,179.07,178.92000000000002,178.81,178.69,178.6,178.52,178.45000000000002,178.38,178.3,33.87,33.13,32.82,32.55,32.31,32.08,31.86,31.650000000000002,31.240000000000002,N/A,N/A +2013,8,6,19,30,93950,92910,91900,25.46,0,3.9,4.71,4.91,4.99,5.04,5.0600000000000005,5.07,5.07,5.05,182.56,181.9,181.6,181.43,181.32,181.25,181.20000000000002,181.17000000000002,181.17000000000002,35.12,34.38,34.08,33.8,33.56,33.33,33.11,32.9,32.49,N/A,N/A +2013,8,6,20,30,93880,92840,91830,23.35,0,4.3,5.21,5.45,5.57,5.64,5.68,5.71,5.73,5.74,174.28,175.76,176.6,177.26,177.84,178.37,178.86,179.33,180.21,36.14,35.38,35.08,34.800000000000004,34.56,34.33,34.11,33.9,33.480000000000004,N/A,N/A +2013,8,6,21,30,93830,92790,91790,21.5,0,4.05,4.91,5.16,5.32,5.43,5.51,5.58,5.63,5.71,171.71,174.76,176.51,177.87,178.96,179.88,180.65,181.33,182.49,36.89,36.17,35.89,35.61,35.38,35.14,34.92,34.71,34.29,N/A,N/A +2013,8,6,22,30,93760,92730,91720,19.82,0,3.44,4.14,4.33,4.46,4.54,4.6000000000000005,4.64,4.68,4.74,186.88,186.49,186.31,186.08,185.9,185.75,185.62,185.5,185.3,37.21,36.56,36.300000000000004,36.04,35.81,35.6,35.38,35.17,34.76,N/A,N/A +2013,8,6,23,30,93730,92700,91690,19.57,0,3.71,4.5,4.71,4.84,4.94,5.01,5.0600000000000005,5.1000000000000005,5.17,166.04,167.99,169.26,170.34,171.22,171.97,172.61,173.17000000000002,174.11,37.12,36.550000000000004,36.32,36.07,35.86,35.64,35.43,35.230000000000004,34.82,N/A,N/A +2013,8,7,0,30,93710,92670,91670,20.68,0,4.69,5.93,6.2700000000000005,6.47,6.61,6.7,6.78,6.83,6.91,172.08,171.70000000000002,171.57,171.47,171.4,171.34,171.3,171.27,171.23,36.58,36.160000000000004,35.96,35.74,35.54,35.34,35.13,34.94,34.54,N/A,N/A +2013,8,7,1,30,93730,92690,91680,25.19,0,5.15,7.28,7.91,8.370000000000001,8.73,9.01,9.24,9.42,9.68,172.15,172.1,172.06,171.95000000000002,171.8,171.6,171.37,171.13,170.62,35.14,35.06,34.96,34.81,34.660000000000004,34.5,34.32,34.15,33.78,N/A,N/A +2013,8,7,2,30,93780,92730,91720,27.400000000000002,0,5.37,7.68,8.45,9.09,9.64,10.13,10.58,10.99,11.66,162.98,162.98,162.99,162.98,162.97,162.97,162.98,163,163.09,34.01,33.95,33.87,33.75,33.62,33.480000000000004,33.32,33.17,32.84,N/A,N/A +2013,8,7,3,30,93780,92740,91720,28.66,0,6.01,8.57,9.42,10.17,10.82,11.39,11.93,12.43,13.280000000000001,159.25,159.68,159.92000000000002,160.1,160.29,160.48,160.71,160.95000000000002,161.59,32.76,32.7,32.63,32.53,32.43,32.32,32.2,32.08,31.810000000000002,N/A,N/A +2013,8,7,4,30,93820,92770,91750,29.66,0,6.5200000000000005,9.19,10.09,10.9,11.61,12.27,12.88,13.46,14.46,158.53,159.28,159.77,160.21,160.61,161,161.38,161.76,162.59,31.85,31.810000000000002,31.75,31.67,31.59,31.5,31.41,31.32,31.11,N/A,N/A +2013,8,7,5,30,93860,92800,91780,31,0,5.75,8.39,9.34,10.200000000000001,10.97,11.68,12.35,12.99,14.15,161.01,161.98,162.55,163.07,163.55,164.01,164.53,165.03,166.18,30.96,30.970000000000002,30.94,30.89,30.830000000000002,30.78,30.72,30.67,30.54,N/A,N/A +2013,8,7,6,30,93900,92840,91820,32.49,0,5.54,8.2,9.19,10.120000000000001,10.94,11.71,12.44,13.13,14.370000000000001,162.70000000000002,163.64000000000001,164.22,164.67000000000002,165.05,165.38,165.74,166.1,166.97,30.240000000000002,30.3,30.3,30.28,30.27,30.25,30.22,30.19,30.11,N/A,N/A +2013,8,7,7,30,93920,92860,91840,34.25,0,5.19,7.930000000000001,8.96,9.92,10.77,11.55,12.26,12.92,13.96,158.81,160.4,161.32,162.03,162.69,163.29,163.97,164.64000000000001,166.29,29.55,29.650000000000002,29.66,29.650000000000002,29.650000000000002,29.650000000000002,29.650000000000002,29.64,29.63,N/A,N/A +2013,8,7,8,30,93930,92870,91840,37.04,0,4.64,7.28,8.27,9.18,9.97,10.66,11.290000000000001,11.870000000000001,12.780000000000001,163.09,165.15,166.23,167.09,167.85,168.55,169.29,170.02,171.51,28.830000000000002,28.95,28.96,28.96,28.95,28.95,28.95,28.95,28.95,N/A,N/A +2013,8,7,9,30,93970,92900,91870,41.94,0,2.98,5.17,5.96,6.67,7.3100000000000005,7.890000000000001,8.46,9,10.03,137.69,144.08,147.67000000000002,150.03,151.92000000000002,153.5,155.02,156.46,159.6,27.25,27.48,27.5,27.5,27.47,27.44,27.400000000000002,27.36,27.28,N/A,N/A +2013,8,7,10,30,93920,92850,91810,45.5,0,2.77,4.94,5.8100000000000005,6.72,7.61,8.49,9.38,10.24,11.66,121.52,132.04,137.81,142.35,145.82,148.67000000000002,150.95000000000002,153.02,156.41,25.82,26.05,26.1,26.11,26.1,26.080000000000002,26.060000000000002,26.04,26.07,N/A,N/A +2013,8,7,11,30,93980,92900,91860,52.29,0,2.79,4.83,5.57,6.3,6.98,7.65,8.31,8.94,10.13,130.38,137.31,141.45000000000002,144.8,147.52,149.85,151.70000000000002,153.38,156.13,25.13,25.310000000000002,25.310000000000002,25.3,25.26,25.21,25.14,25.080000000000002,24.97,N/A,N/A +2013,8,7,12,30,94020,92940,91890,60.7,0,1.32,3.33,4.29,5.1000000000000005,5.8,6.43,7.03,7.61,8.790000000000001,163,161.97,161.17000000000002,160.53,159.99,159.53,159.32,159.17000000000002,159.89000000000001,24.57,24.72,24.63,24.53,24.42,24.310000000000002,24.19,24.080000000000002,23.92,N/A,N/A +2013,8,7,13,30,94030,92950,91910,57.01,0,4.25,5.3,5.6000000000000005,5.78,5.94,6.0600000000000005,6.28,6.5,7.140000000000001,166.14000000000001,166.6,166.87,167.17000000000002,167.52,167.91,168.5,169.12,170.83,25.76,25.32,25.13,24.94,24.76,24.59,24.41,24.26,23.990000000000002,N/A,N/A +2013,8,7,14,30,94020,92950,91910,50.19,0,3.7800000000000002,4.68,4.92,5.04,5.12,5.16,5.19,5.21,5.24,178.53,178.96,179.19,179.45000000000002,179.73,180.02,180.36,180.68,181.53,27.44,26.87,26.64,26.43,26.23,26.04,25.85,25.67,25.310000000000002,N/A,N/A +2013,8,7,15,30,94030,92960,91940,43.050000000000004,0,3.48,4.25,4.46,4.5600000000000005,4.62,4.65,4.66,4.67,4.66,187.25,187.53,187.71,187.93,188.17000000000002,188.4,188.68,188.94,189.55,29.57,28.93,28.67,28.43,28.22,28.01,27.810000000000002,27.62,27.240000000000002,N/A,N/A +2013,8,7,16,30,94000,92950,91930,37.35,0,3.45,4.2,4.39,4.49,4.55,4.58,4.6000000000000005,4.6000000000000005,4.59,182.74,183.35,183.65,183.99,184.31,184.64000000000001,184.98,185.31,186.02,31.61,30.93,30.650000000000002,30.39,30.17,29.95,29.740000000000002,29.55,29.150000000000002,N/A,N/A +2013,8,7,17,30,93970,92920,91900,31.28,0,2.61,3.13,3.2600000000000002,3.3200000000000003,3.36,3.38,3.39,3.4,3.4,194.3,194.77,195.09,195.44,195.78,196.12,196.47,196.82,197.53,33.62,32.96,32.67,32.410000000000004,32.17,31.95,31.73,31.53,31.12,N/A,N/A +2013,8,7,18,30,93920,92880,91870,26.22,0,2.07,2.46,2.56,2.61,2.65,2.67,2.69,2.7,2.72,205.18,205.44,205.59,205.79,205.97,206.16,206.37,206.57,206.97,35.19,34.53,34.24,33.97,33.730000000000004,33.5,33.28,33.07,32.660000000000004,N/A,N/A +2013,8,7,19,30,93890,92850,91840,23.18,0,2.68,3.18,3.31,3.36,3.4,3.42,3.44,3.45,3.45,204.52,204.43,204.56,204.74,204.91,205.1,205.3,205.49,205.87,36.26,35.59,35.28,35.01,34.77,34.54,34.32,34.11,33.69,N/A,N/A +2013,8,7,20,30,93820,92780,91780,21.81,0,3.08,3.66,3.8000000000000003,3.86,3.9,3.92,3.92,3.92,3.92,180.04,180.91,181.48,182.02,182.48,182.94,183.38,183.8,184.64000000000001,37.01,36.31,36.01,35.74,35.5,35.27,35.050000000000004,34.84,34.42,N/A,N/A +2013,8,7,21,30,93760,92730,91720,20.54,0,3.67,4.42,4.62,4.72,4.79,4.84,4.86,4.89,4.91,173.03,172.17000000000002,171.72,171.41,171.18,171,170.85,170.73,170.53,37.54,36.82,36.54,36.27,36.03,35.800000000000004,35.58,35.37,34.95,N/A,N/A +2013,8,7,22,30,93690,92660,91660,19.54,0,3.46,4.15,4.33,4.45,4.54,4.6000000000000005,4.64,4.68,4.74,175.02,177.21,178.48,179.39000000000001,180.08,180.63,181.09,181.48,182.11,37.72,37.07,36.81,36.550000000000004,36.32,36.1,35.88,35.67,35.26,N/A,N/A +2013,8,7,23,30,93670,92640,91630,19.81,0,4.13,5.0200000000000005,5.24,5.38,5.48,5.55,5.6000000000000005,5.64,5.69,168.1,170.72,172.31,173.49,174.44,175.25,175.95000000000002,176.56,177.62,37.54,36.95,36.72,36.47,36.25,36.04,35.83,35.62,35.21,N/A,N/A +2013,8,8,0,30,93730,92690,91670,26.48,0,2.94,3.92,4.3500000000000005,4.7,4.98,5.18,5.34,5.48,5.65,284.32,285.01,285.08,284.87,284.69,284.54,284.38,284.21,283.92,34.67,34.29,34.11,33.9,33.72,33.52,33.33,33.15,32.77,N/A,N/A +2013,8,8,1,30,93730,92690,91680,27.35,0,1.16,2.6,3.14,3.5,3.77,3.94,4.07,4.17,4.28,261.54,267.05,270.48,272.09000000000003,273.2,273.83,274.19,274.40000000000003,274.33,34.65,34.69,34.58,34.410000000000004,34.24,34.06,33.87,33.68,33.3,N/A,N/A +2013,8,8,2,30,93760,92720,91700,31.38,0,1.1300000000000001,2.42,2.86,3.13,3.18,3.04,2.7,2.32,1.85,324.13,325.04,325.49,325.69,324.2,321.28000000000003,315.07,308.23,296.75,32.99,33.01,32.86,32.660000000000004,32.49,32.35,32.28,32.24,32.11,N/A,N/A +2013,8,8,3,30,93800,92760,91740,34.56,0,0.3,0.28,0.27,0.43,0.56,0.6,0.6,0.58,0.91,151.45000000000002,235.11,261.17,275.6,279.85,270.07,253.06,234.08,205.6,32.08,32.37,32.35,32.31,32.230000000000004,32.14,32.07,32.02,31.95,N/A,N/A +2013,8,8,4,30,93840,92790,91780,34.59,0,1.09,1.79,1.82,1.78,1.79,1.85,1.97,2.12,2.48,155.14000000000001,154.94,154.29,152.68,152.35,153.05,155.26,158.18,164.36,31.68,32.28,32.34,32.28,32.19,32.06,31.92,31.79,31.54,N/A,N/A +2013,8,8,5,30,93850,92800,91780,36.1,0,2.18,4.08,4.6000000000000005,5.17,5.62,5.98,6.2,6.34,6.48,174.96,177.96,179.57,180.47,181.35,182.21,182.98,183.66,184.89000000000001,31.310000000000002,32.25,32.44,32.44,32.35,32.19,31.990000000000002,31.79,31.38,N/A,N/A +2013,8,8,6,30,93860,92800,91780,35.64,0,3.69,6.26,7.2,7.99,8.67,9.26,9.88,10.5,11.8,165.9,169.56,171.78,173.38,174.47,175.18,175.44,175.5,174.85,30.66,30.92,30.93,30.89,30.810000000000002,30.7,30.57,30.45,30.21,N/A,N/A +2013,8,8,7,30,93880,92820,91800,38.99,0,3.73,6.4,7.47,8.51,9.43,10.27,11.040000000000001,11.75,12.91,166.51,169.89000000000001,171.72,172.79,173.41,173.69,173.79,173.83,173.87,29.34,29.63,29.69,29.71,29.72,29.7,29.67,29.64,29.560000000000002,N/A,N/A +2013,8,8,8,30,93920,92850,91830,43.76,0,3.45,6.09,7.15,8.15,9.05,9.88,10.63,11.32,12.41,159.68,164.56,167.19,168.51,169.34,169.79,170.13,170.42000000000002,171.14000000000001,28.330000000000002,28.650000000000002,28.73,28.79,28.830000000000002,28.87,28.89,28.91,28.91,N/A,N/A +2013,8,8,9,30,93910,92840,91820,45.61,0,3.99,6.390000000000001,7.32,8.2,9.01,9.8,10.53,11.22,12.23,158.4,160.81,162.20000000000002,163.09,163.88,164.61,165.36,166.08,167.37,27.79,28.09,28.19,28.28,28.37,28.45,28.53,28.6,28.66,N/A,N/A +2013,8,8,10,30,93920,92850,91810,47.44,0,3.36,5.8100000000000005,6.82,7.87,8.8,9.63,10.39,11.1,12.06,151.05,154.66,156.64000000000001,157.68,158.16,158.26,158.69,159.19,161.56,26.67,27.01,27.09,27.1,27.060000000000002,26.990000000000002,26.94,26.89,26.94,N/A,N/A +2013,8,8,11,30,93910,92840,91800,49.06,0,3.56,5.79,6.7,7.6000000000000005,8.44,9.23,9.93,10.58,11.26,134.56,140.69,144.36,147.1,149.39000000000001,151.37,153.31,155.15,159,25.51,25.6,25.57,25.51,25.45,25.400000000000002,25.37,25.36,25.46,N/A,N/A +2013,8,8,12,30,93960,92880,91840,52.57,0,3.63,5.74,6.61,7.42,8.15,8.82,9.44,10.01,10.620000000000001,135.53,139.93,142.61,144.68,146.5,148.16,149.91,151.59,155.12,24.560000000000002,24.57,24.53,24.46,24.41,24.36,24.36,24.37,24.59,N/A,N/A +2013,8,8,13,30,93960,92880,91840,46.83,0,4.54,5.62,5.92,6.13,6.38,6.66,7.1000000000000005,7.57,8.47,148.72,150.03,150.92000000000002,151.95000000000002,153.26,154.79,156.70000000000002,158.64000000000001,162.93,25.8,25.400000000000002,25.22,25.05,24.900000000000002,24.77,24.67,24.59,24.72,N/A,N/A +2013,8,8,14,30,93970,92900,91870,37.82,0,4.04,5,5.26,5.4,5.48,5.5200000000000005,5.55,5.57,5.63,163.68,163.98,164.11,164.26,164.42000000000002,164.6,164.82,165.04,165.75,27.96,27.39,27.16,26.95,26.75,26.560000000000002,26.38,26.21,25.86,N/A,N/A +2013,8,8,15,30,93960,92900,91870,32.17,0,5.15,6.37,6.71,6.88,6.99,7.05,7.08,7.11,7.11,171.26,171.34,171.35,171.38,171.43,171.49,171.56,171.64000000000001,171.84,29.98,29.28,29.02,28.77,28.54,28.330000000000002,28.13,27.93,27.54,N/A,N/A +2013,8,8,16,30,93950,92890,91860,29.63,0,4.68,5.73,6.01,6.15,6.23,6.2700000000000005,6.29,6.3100000000000005,6.29,180.29,180.23,180.20000000000002,180.21,180.25,180.3,180.36,180.43,180.62,31.41,30.68,30.39,30.13,29.89,29.67,29.46,29.26,28.85,N/A,N/A +2013,8,8,17,30,93920,92870,91850,27.46,0,4.18,5.09,5.33,5.45,5.53,5.57,5.6000000000000005,5.61,5.62,180.65,181.02,181.27,181.53,181.77,182.01,182.25,182.47,182.94,32.8,32.05,31.76,31.48,31.240000000000002,31.01,30.79,30.59,30.17,N/A,N/A +2013,8,8,18,30,93880,92830,91810,25.55,0,4.15,5.04,5.3,5.44,5.53,5.59,5.64,5.67,5.71,181.14000000000001,181.59,181.87,182.1,182.31,182.49,182.67000000000002,182.83,183.14000000000001,34.01,33.26,32.95,32.67,32.42,32.19,31.96,31.75,31.330000000000002,N/A,N/A +2013,8,8,19,30,93830,92790,91780,23.94,0,4.24,5.15,5.4,5.55,5.65,5.71,5.76,5.8,5.84,171.93,173.66,174.62,175.39000000000001,176.03,176.62,177.14000000000001,177.63,178.53,34.92,34.160000000000004,33.85,33.57,33.32,33.09,32.86,32.64,32.22,N/A,N/A +2013,8,8,20,30,93780,92740,91730,22.86,0,3.61,4.36,4.6000000000000005,4.75,4.87,4.95,5.0200000000000005,5.08,5.17,180.48,183.22,184.77,185.82,186.64000000000001,187.3,187.83,188.27,188.95000000000002,35.71,35,34.7,34.42,34.17,33.93,33.71,33.49,33.07,N/A,N/A +2013,8,8,21,30,93690,92650,91640,22.07,0,3.46,4.14,4.32,4.44,4.53,4.59,4.64,4.68,4.74,189.17000000000002,188.18,187.65,187.16,186.76,186.43,186.14000000000001,185.89000000000001,185.44,36.14,35.46,35.18,34.910000000000004,34.67,34.44,34.22,34.01,33.59,N/A,N/A +2013,8,8,22,30,93680,92640,91630,21.61,0,3.7,4.44,4.65,4.79,4.89,4.96,5.01,5.0600000000000005,5.13,180.21,180.29,180.22,180.14000000000001,180.08,180.05,180.05,180.05,180.1,36.43,35.78,35.52,35.25,35.02,34.800000000000004,34.58,34.37,33.95,N/A,N/A +2013,8,8,23,30,93650,92610,91610,21.57,0,3.5300000000000002,4.29,4.5200000000000005,4.68,4.8,4.89,4.97,5.03,5.12,184.52,187.27,188.83,190.06,191.06,191.9,192.6,193.21,194.17000000000002,36.4,35.82,35.59,35.34,35.13,34.910000000000004,34.7,34.49,34.08,N/A,N/A +2013,8,9,0,30,93610,92580,91570,22.64,0,5.28,6.6000000000000005,6.92,7.07,7.18,7.24,7.28,7.3100000000000005,7.33,180.93,180.62,180.37,180.15,179.96,179.75,179.58,179.41,179.13,35.82,35.38,35.18,34.96,34.76,34.56,34.36,34.160000000000004,33.77,N/A,N/A +2013,8,9,1,30,93630,92590,91580,24.44,0,6.88,9.23,9.89,10.39,10.75,11.02,11.22,11.38,11.58,169.71,169.27,169.06,168.87,168.67000000000002,168.49,168.29,168.11,167.8,34.58,34.33,34.18,33.99,33.81,33.63,33.45,33.27,32.910000000000004,N/A,N/A +2013,8,9,2,30,93700,92650,91640,25.51,0,6.68,9.09,9.81,10.36,10.790000000000001,11.15,11.46,11.73,12.19,166.5,166.51,166.52,166.52,166.53,166.54,166.56,166.59,166.67000000000002,33.8,33.65,33.53,33.37,33.21,33.04,32.87,32.7,32.34,N/A,N/A +2013,8,9,3,30,93750,92700,91680,26.75,0,6.08,8.49,9.26,9.91,10.46,10.96,11.42,11.85,12.65,159.33,159.49,159.6,159.74,159.89000000000001,160.06,160.26,160.45000000000002,160.85,32.730000000000004,32.59,32.480000000000004,32.33,32.18,32.02,31.86,31.7,31.37,N/A,N/A +2013,8,9,4,30,93790,92730,91710,26.95,0,6.11,8.64,9.5,10.22,10.84,11.41,11.950000000000001,12.46,13.370000000000001,157.70000000000002,157.72,157.72,157.68,157.64000000000001,157.61,157.63,157.66,157.87,31.6,31.52,31.44,31.32,31.2,31.080000000000002,30.94,30.82,30.54,N/A,N/A +2013,8,9,5,30,93800,92750,91730,27.12,0,5.8,8.38,9.28,10.07,10.77,11.42,12.05,12.65,13.790000000000001,153.09,153.9,154.38,154.8,155.21,155.61,156.05,156.48,157.46,30.71,30.650000000000002,30.580000000000002,30.48,30.39,30.29,30.18,30.09,29.88,N/A,N/A +2013,8,9,6,30,93880,92820,91790,27.01,0,4.21,6.66,7.6000000000000005,8.47,9.26,9.99,10.69,11.36,12.66,146.99,149.36,150.83,152.09,153.23,154.29,155.31,156.28,158.17000000000002,29.82,29.88,29.86,29.82,29.77,29.72,29.66,29.6,29.490000000000002,N/A,N/A +2013,8,9,7,30,93910,92850,91820,25.53,0,4.76,7.37,8.38,9.33,10.19,10.98,11.73,12.450000000000001,13.71,151.55,154.5,156.27,157.67000000000002,158.8,159.75,160.6,161.37,162.86,29.38,29.47,29.46,29.45,29.43,29.41,29.38,29.36,29.28,N/A,N/A +2013,8,9,8,30,93940,92870,91840,25.26,0,4.17,6.78,7.83,8.84,9.74,10.56,11.32,12.02,13.23,153.21,156.83,158.99,160.6,161.9,162.99,163.96,164.87,166.72,28.79,29,29.04,29.07,29.09,29.1,29.1,29.09,29.05,N/A,N/A +2013,8,9,9,30,93950,92880,91850,27.76,0,2.99,5.48,6.45,7.42,8.3,9.13,9.89,10.61,11.8,144.54,151.62,155.73,158.42000000000002,160.5,162.20000000000002,163.73,165.17000000000002,167.98,27.66,28.05,28.13,28.2,28.25,28.29,28.330000000000002,28.36,28.38,N/A,N/A +2013,8,9,10,30,93960,92880,91850,29.88,0,3.21,5.8100000000000005,6.84,7.8100000000000005,8.71,9.57,10.41,11.200000000000001,12.5,143.86,147.55,149.66,151.23,152.79,154.33,156.05,157.74,161.16,26.43,26.71,26.78,26.830000000000002,26.900000000000002,26.96,27.07,27.17,27.42,N/A,N/A +2013,8,9,11,30,93960,92890,91850,47.08,0,4.82,7.3100000000000005,8.23,9.07,9.81,10.49,11.15,11.76,12.88,144.39000000000001,147.36,149.18,150.72,152.08,153.32,154.53,155.66,157.88,25.82,25.830000000000002,25.77,25.71,25.64,25.580000000000002,25.52,25.46,25.37,N/A,N/A +2013,8,9,12,30,94010,92930,91890,77.53,0,4.46,6.65,7.49,8.23,8.870000000000001,9.44,9.99,10.49,11.47,144.4,147.22,148.98,150.48,151.81,153.03,154.24,155.38,157.79,24.86,24.75,24.650000000000002,24.52,24.400000000000002,24.28,24.150000000000002,24.04,23.82,N/A,N/A +2013,8,9,13,30,94020,92950,91910,76.2,0,6.01,7.640000000000001,8.11,8.4,8.6,8.75,8.870000000000001,8.98,9.24,156.16,156.67000000000002,156.98,157.27,157.57,157.86,158.20000000000002,158.53,159.39000000000001,25.97,25.51,25.310000000000002,25.1,24.900000000000002,24.72,24.53,24.36,24,N/A,N/A +2013,8,9,14,30,94070,93010,91970,67.17,0,6.0200000000000005,7.57,8.040000000000001,8.3,8.47,8.58,8.65,8.700000000000001,8.75,159.63,159.82,159.91,159.99,160.07,160.15,160.23,160.32,160.52,27.5,26.86,26.62,26.38,26.16,25.96,25.75,25.560000000000002,25.18,N/A,N/A +2013,8,9,15,30,94070,93010,91980,56.160000000000004,0,5.65,7.04,7.45,7.66,7.8100000000000005,7.9,7.96,8.01,8.05,163.70000000000002,164.03,164.25,164.42000000000002,164.56,164.70000000000002,164.82,164.94,165.20000000000002,29.150000000000002,28.41,28.14,27.89,27.66,27.45,27.240000000000002,27.04,26.650000000000002,N/A,N/A +2013,8,9,16,30,94090,93030,92010,44.1,0,5.0200000000000005,6.2,6.5600000000000005,6.75,6.88,6.96,7.01,7.05,7.1000000000000005,163.57,163.89000000000001,164.08,164.22,164.33,164.44,164.54,164.64000000000001,164.82,31.04,30.28,29.990000000000002,29.72,29.48,29.26,29.04,28.84,28.43,N/A,N/A +2013,8,9,17,30,94080,93030,92010,35.36,0,4.83,5.95,6.26,6.41,6.5200000000000005,6.6000000000000005,6.65,6.69,6.73,163.76,164.02,164.17000000000002,164.27,164.35,164.42000000000002,164.47,164.52,164.62,32.63,31.84,31.53,31.26,31.02,30.79,30.57,30.36,29.94,N/A,N/A +2013,8,9,18,30,94050,93000,91980,29.47,0,4.34,5.3100000000000005,5.58,5.73,5.82,5.89,5.93,5.97,6.01,159.82,160.11,160.25,160.34,160.4,160.44,160.48,160.5,160.54,33.99,33.21,32.910000000000004,32.63,32.38,32.15,31.92,31.71,31.29,N/A,N/A +2013,8,9,19,30,94040,92990,91980,26.6,0,3.5100000000000002,4.26,4.46,4.57,4.64,4.68,4.71,4.73,4.76,146.16,146.57,146.79,146.9,146.97,147.02,147.05,147.07,147.08,34.95,34.22,33.92,33.64,33.4,33.17,32.94,32.730000000000004,32.31,N/A,N/A +2013,8,9,20,30,93990,92950,91940,26.310000000000002,0,3.68,4.48,4.7,4.82,4.9,4.96,5,5.03,5.08,141.69,141.82,141.9,141.9,141.88,141.85,141.81,141.77,141.67000000000002,35.58,34.84,34.54,34.27,34.03,33.79,33.57,33.36,32.93,N/A,N/A +2013,8,9,21,30,93930,92890,91880,24.61,0,3.48,4.29,4.53,4.67,4.7700000000000005,4.8500000000000005,4.91,4.97,5.05,148.58,147.64000000000001,147.04,146.5,146.03,145.6,145.19,144.82,144.15,36.01,35.300000000000004,35.02,34.76,34.52,34.300000000000004,34.07,33.86,33.44,N/A,N/A +2013,8,9,22,30,93900,92860,91860,20.13,0,4.4,5.41,5.69,5.83,5.92,5.99,6.03,6.0600000000000005,6.1000000000000005,129.94,130.25,130.46,130.61,130.74,130.85,130.96,131.05,131.22,36.46,35.77,35.51,35.25,35.02,34.800000000000004,34.58,34.37,33.96,N/A,N/A +2013,8,9,23,30,93870,92830,91820,19.75,0,4.61,5.71,6.01,6.17,6.28,6.36,6.42,6.46,6.51,126.76,127.12,127.44,127.74000000000001,127.99000000000001,128.23,128.45,128.65,129.04,36.44,35.83,35.6,35.35,35.13,34.92,34.7,34.5,34.09,N/A,N/A +2013,8,10,0,30,93910,92870,91860,22.46,0,4.3500000000000005,5.47,5.78,5.95,6.07,6.16,6.21,6.26,6.32,140.32,140.59,140.65,140.62,140.57,140.51,140.44,140.37,140.20000000000002,35.85,35.410000000000004,35.22,35,34.800000000000004,34.59,34.39,34.19,33.8,N/A,N/A +2013,8,10,1,30,93960,92920,91910,24.400000000000002,0,3.39,5.44,6.09,6.49,6.72,6.82,6.82,6.78,6.59,131.43,133.02,133.76,134.13,134.28,134.24,134.02,133.72,132.92000000000002,34.77,34.76,34.68,34.53,34.37,34.19,34.01,33.82,33.45,N/A,N/A +2013,8,10,2,30,94020,92970,91950,33.9,0,4.69,6.76,7.46,8.040000000000001,8.540000000000001,8.98,9.36,9.700000000000001,10.23,134.22,134.85,135.19,135.42000000000002,135.64000000000001,135.83,136.03,136.22,136.65,32.62,32.44,32.32,32.18,32.05,31.91,31.77,31.64,31.36,N/A,N/A +2013,8,10,3,30,94150,93090,92060,42.09,0,4.93,6.8100000000000005,7.43,7.86,8.35,8.88,9.35,9.78,10.120000000000001,37.35,37.92,37.96,37.5,37.32,37.33,37.5,37.71,39.06,29.88,29.62,29.490000000000002,29.37,29.28,29.22,29.22,29.23,29.3,N/A,N/A +2013,8,10,4,30,94180,93120,92100,38.33,0,3.29,5.18,5.9,6.59,7.17,7.69,8,8.21,7.3100000000000005,48.5,48.88,49.19,49.58,49.81,49.92,49.620000000000005,49.17,51.160000000000004,30.55,30.54,30.48,30.400000000000002,30.310000000000002,30.2,30.1,30,29.85,N/A,N/A +2013,8,10,5,30,94220,93160,92140,42.65,0,1.3800000000000001,2.09,2.14,2.29,2.48,2.75,2.99,3.22,3.5300000000000002,34.54,57.26,73.12,93.60000000000001,107.49000000000001,116.88,123.87,129.68,139.70000000000002,29.71,30.150000000000002,30.240000000000002,30.3,30.32,30.29,30.23,30.16,29.96,N/A,N/A +2013,8,10,6,30,94260,93200,92170,41.5,0,1.73,3.06,3.34,3.64,3.86,4.03,4.29,4.58,5.5200000000000005,98.05,109.64,115.63,119.44,124.46000000000001,130.2,136.5,142.79,151.73,29.17,29.64,29.69,29.73,29.77,29.8,29.76,29.71,29.490000000000002,N/A,N/A +2013,8,10,7,30,94340,93270,92240,39.15,0,2.13,4.01,4.47,4.82,4.99,5.01,5.15,5.3,6.12,101.62,107.36,111.52,116.17,120.64,124.85000000000001,132.45,140.68,150.64000000000001,28.26,28.86,28.93,28.95,28.91,28.84,28.8,28.77,28.580000000000002,N/A,N/A +2013,8,10,8,30,94350,93270,92240,41.26,0,1.71,3.56,4.19,4.75,5.22,5.63,6.16,6.7,8.06,101.41,116.72,125.47,131.66,137.09,141.98,146.4,150.56,156.74,27.27,27.79,27.86,27.92,27.95,27.97,27.97,27.97,27.96,N/A,N/A +2013,8,10,9,30,94360,93290,92250,40.67,0,2.07,4.28,5.01,5.63,6.19,6.7,7.3100000000000005,7.92,9.24,134.93,135.64000000000001,136.82,139.04,142.02,145.38,149.03,152.63,158.56,26.64,27.21,27.29,27.35,27.39,27.43,27.46,27.5,27.53,N/A,N/A +2013,8,10,10,30,94400,93320,92280,43.79,0,0.8300000000000001,2.16,2.8000000000000003,3.38,3.9,4.39,4.83,5.25,5.95,117.76,123.18,127.02,130.33,135.26,141.21,146.55,151.54,158.45000000000002,25.71,26.150000000000002,26.17,26.18,26.21,26.25,26.29,26.32,26.310000000000002,N/A,N/A +2013,8,10,11,30,94420,93340,92290,48.75,0,1.87,4.01,4.79,5.51,6.15,6.73,7.18,7.58,7.97,135.74,138.25,140.25,142.63,145.19,147.83,150.58,153.18,158.63,24.86,25.34,25.39,25.43,25.44,25.44,25.42,25.400000000000002,25.36,N/A,N/A +2013,8,10,12,30,94460,93370,92330,51.94,0,1.21,2.71,3.34,4,4.59,5.13,5.5600000000000005,5.94,6.23,128.24,129.66,131,132.88,135.67000000000002,138.88,143.13,147.36,154.98,24.3,24.68,24.7,24.69,24.68,24.66,24.68,24.72,24.86,N/A,N/A +2013,8,10,13,30,94490,93410,92360,47.97,0,2.24,2.79,2.94,3.0500000000000003,3.2,3.37,3.77,4.21,4.8100000000000005,130.19,130.46,130.48,130.52,131.12,131.99,133.69,135.6,140.85,25.76,25.37,25.19,25.02,24.85,24.7,24.62,24.57,24.76,N/A,N/A +2013,8,10,14,30,94510,93440,92390,46.22,0,2.93,3.6,3.7800000000000002,3.86,3.9,3.93,3.93,3.93,3.92,124.23,125.78,126.57000000000001,127.21000000000001,127.78,128.29,128.81,129.29,130.43,27.86,27.32,27.1,26.88,26.68,26.5,26.310000000000002,26.13,25.77,N/A,N/A +2013,8,10,15,30,94500,93430,92400,39.34,0,2.5500000000000003,3.12,3.27,3.34,3.39,3.42,3.44,3.45,3.45,136.05,137.20000000000002,137.81,138.28,138.70000000000002,139.07,139.44,139.78,140.45000000000002,29.72,29.11,28.85,28.62,28.400000000000002,28.2,27.990000000000002,27.8,27.41,N/A,N/A +2013,8,10,16,30,94520,93460,92430,34.64,0,2.15,2.56,2.66,2.71,2.74,2.7600000000000002,2.77,2.77,2.77,131.16,132.2,132.75,133.15,133.46,133.72,133.95,134.17000000000002,134.53,31.14,30.51,30.23,29.98,29.75,29.54,29.32,29.12,28.72,N/A,N/A +2013,8,10,17,30,94490,93430,92410,31.71,0,2.3000000000000003,2.73,2.83,2.88,2.91,2.93,2.94,2.95,2.95,121.75,122.44,122.86,123.15,123.38000000000001,123.57000000000001,123.74000000000001,123.89,124.12,32.28,31.63,31.34,31.080000000000002,30.84,30.62,30.400000000000002,30.19,29.78,N/A,N/A +2013,8,10,18,30,94440,93390,92370,30.3,0,2.04,2.41,2.5,2.5500000000000003,2.58,2.61,2.63,2.64,2.66,127,127.03,127.08,127.06,127.04,127.01,126.96000000000001,126.9,126.76,33.31,32.65,32.35,32.08,31.84,31.62,31.39,31.18,30.77,N/A,N/A +2013,8,10,19,30,94400,93340,92320,28.810000000000002,0,2.38,2.86,2.97,3.04,3.09,3.12,3.14,3.16,3.2,141.06,140.05,139.42000000000002,138.79,138.23,137.71,137.21,136.75,135.79,34.160000000000004,33.480000000000004,33.18,32.92,32.68,32.45,32.230000000000004,32.02,31.6,N/A,N/A +2013,8,10,20,30,94310,93260,92240,26.810000000000002,0,2.39,2.81,2.89,2.92,2.94,2.95,2.95,2.95,2.94,131.53,131.1,130.92000000000002,130.75,130.6,130.47,130.33,130.21,129.96,34.92,34.230000000000004,33.94,33.68,33.44,33.21,32.99,32.78,32.36,N/A,N/A +2013,8,10,21,30,94370,93300,92260,44.4,0,12.790000000000001,16.77,17.7,18.32,18.740000000000002,19.05,19.27,19.44,19.67,101.59,101.07000000000001,100.76,100.58,100.47,100.4,100.37,100.35000000000001,100.37,29.2,28.59,28.36,28.150000000000002,27.95,27.78,27.6,27.44,27.13,N/A,N/A +2013,8,10,22,30,94470,93400,92370,41.410000000000004,0,7.97,10.08,10.64,10.98,11.19,11.33,11.42,11.49,11.55,91.63,91.17,91.05,91,90.99,90.99,91.02,91.05,91.15,29.28,28.560000000000002,28.29,28.04,27.810000000000002,27.6,27.39,27.2,26.810000000000002,N/A,N/A +2013,8,10,23,30,94390,93330,92300,37.88,0,4.49,5.53,5.82,5.97,6.0600000000000005,6.13,6.17,6.21,6.26,111.61,112,112.25,112.46000000000001,112.65,112.81,112.96000000000001,113.11,113.37,30.18,29.560000000000002,29.330000000000002,29.1,28.900000000000002,28.7,28.51,28.32,27.95,N/A,N/A +2013,8,11,0,30,94300,93230,92210,33.89,0,2.91,3.62,3.8200000000000003,3.93,4,4.05,4.08,4.11,4.15,136.95000000000002,136.75,136.5,136.25,136.01,135.8,135.55,135.32,134.83,31.150000000000002,30.71,30.51,30.29,30.1,29.900000000000002,29.7,29.52,29.13,N/A,N/A +2013,8,11,1,30,94260,93190,92170,38.5,0,1.61,3.04,3.39,3.61,3.75,3.84,3.91,3.96,4.07,150.70000000000002,148.68,147.42000000000002,146.22,145.07,143.97,142.76,141.57,138.67000000000002,30.57,30.57,30.46,30.3,30.14,29.97,29.8,29.650000000000002,29.35,N/A,N/A +2013,8,11,2,30,94270,93210,92190,42.04,0,1.08,2.17,2.46,2.64,2.77,2.88,3.08,3.31,3.98,120,122.18,122.95,122.18,120.52,118.21000000000001,115.53,112.8,109.3,29.95,30.3,30.310000000000002,30.240000000000002,30.14,30.03,29.92,29.82,29.73,N/A,N/A +2013,8,11,3,30,94290,93230,92200,44.56,0,0.2,0.78,1.24,1.7,2.15,2.58,3,3.41,4.21,73.19,94.78,110.92,115.9,118.2,117.89,117.03,115.95,114.43,29.14,29.67,29.79,29.830000000000002,29.85,29.84,29.830000000000002,29.84,29.82,N/A,N/A +2013,8,11,4,30,94320,93260,92230,46.02,0,1.1300000000000001,1.92,2.11,2.46,2.81,3.18,3.58,3.99,4.78,37.75,60.83,72.97,82.7,89.14,93.36,95.98,98,100.27,28.69,29.13,29.2,29.25,29.28,29.29,29.29,29.29,29.25,N/A,N/A +2013,8,11,5,30,94340,93270,92240,49.1,0,0.9,2.0300000000000002,2.5500000000000003,3.21,3.86,4.49,5.0600000000000005,5.6000000000000005,6.45,45.46,74.4,87.7,90.4,91.72,91.85000000000001,92.21000000000001,92.64,95.07000000000001,28.17,28.580000000000002,28.61,28.580000000000002,28.55,28.5,28.46,28.41,28.35,N/A,N/A +2013,8,11,6,30,94370,93300,92260,50.800000000000004,0,2.67,4.99,5.89,6.76,7.5,8.14,8.700000000000001,9.22,10.55,116.14,114.26,114.08,115.51,118.58,122.62,128.49,134.48,147.17000000000002,27.46,27.43,27.32,27.19,27.060000000000002,26.94,26.830000000000002,26.73,26.650000000000002,N/A,N/A +2013,8,11,7,30,94430,93360,92320,54.36,0,3.54,5.69,6.5600000000000005,7.45,8.32,9.19,10.040000000000001,10.86,11.98,148.69,153.24,156.27,159.36,162.32,165.24,167.76,170.06,173.12,26.71,26.73,26.69,26.650000000000002,26.61,26.57,26.53,26.490000000000002,26.330000000000002,N/A,N/A +2013,8,11,8,30,94480,93400,92360,59.870000000000005,0,1.1400000000000001,2.79,3.5700000000000003,4.28,4.93,5.54,6.12,6.67,7.59,148.17000000000002,154.81,158.99,161.20000000000002,163,164.53,165.92000000000002,167.22,169.61,25.92,26.14,26.11,26.060000000000002,26.01,25.95,25.88,25.810000000000002,25.62,N/A,N/A +2013,8,11,9,30,94490,93410,92360,65.01,0,0.84,2.66,3.72,4.51,5.17,5.73,6.15,6.5200000000000005,6.99,154.51,156.57,157.96,158.35,158.93,159.61,160.6,161.61,164.5,25.07,25.38,25.41,25.41,25.39,25.34,25.26,25.17,24.96,N/A,N/A +2013,8,11,10,30,94480,93400,92350,67.83,0,0.56,2.02,2.94,3.7,4.37,4.94,5.37,5.75,6.19,93.55,116.58,130.21,134.59,138.67000000000002,142.48,146.25,149.84,158.20000000000002,24.45,24.68,24.69,24.68,24.67,24.650000000000002,24.62,24.59,24.54,N/A,N/A +2013,8,11,11,30,94480,93400,92350,71.60000000000001,0,1.1400000000000001,2.81,3.56,4.2700000000000005,4.88,5.41,5.8500000000000005,6.24,6.7,125.33,133.9,139,142.23,145.35,148.33,151.52,154.59,160.13,23.96,24.18,24.19,24.19,24.18,24.18,24.17,24.16,24.11,N/A,N/A +2013,8,11,12,30,94540,93460,92410,74.01,0,1.3,2.95,3.64,4.26,4.82,5.32,5.79,6.23,6.88,134.5,138.57,141.27,143.24,145.56,148.08,151.24,154.43,161.05,23.6,23.8,23.78,23.75,23.72,23.69,23.67,23.66,23.650000000000002,N/A,N/A +2013,8,11,13,30,94560,93480,92430,65.04,0,2.2600000000000002,2.85,3.0300000000000002,3.14,3.21,3.27,3.38,3.49,4.05,147.39000000000001,148.52,149.26,150,150.74,151.48,152.68,153.91,157.89000000000001,25.22,24.8,24.61,24.42,24.240000000000002,24.060000000000002,23.89,23.72,23.41,N/A,N/A +2013,8,11,14,30,94550,93480,92430,59.68,0,3.0500000000000003,3.79,3.99,4.1,4.17,4.22,4.24,4.26,4.28,164.59,164.9,165.07,165.18,165.29,165.39000000000001,165.49,165.57,165.76,26.8,26.23,26,25.77,25.560000000000002,25.37,25.16,24.97,24.59,N/A,N/A +2013,8,11,15,30,94560,93490,92450,53.980000000000004,0,3.37,4.15,4.36,4.47,4.54,4.59,4.62,4.64,4.66,162.86,162.79,162.71,162.63,162.54,162.46,162.38,162.31,162.15,28.11,27.46,27.2,26.95,26.73,26.52,26.310000000000002,26.11,25.71,N/A,N/A +2013,8,11,16,30,94520,93450,92420,46.77,0,3.08,3.7600000000000002,3.95,4.05,4.11,4.15,4.18,4.2,4.22,155.37,155.48,155.51,155.5,155.47,155.43,155.38,155.34,155.22,29.62,28.94,28.66,28.400000000000002,28.17,27.95,27.740000000000002,27.54,27.13,N/A,N/A +2013,8,11,17,30,94500,93430,92400,39.15,0,3.34,4.07,4.26,4.36,4.44,4.49,4.5200000000000005,4.55,4.59,138.94,139.33,139.58,139.72,139.82,139.87,139.91,139.94,139.95000000000002,31.03,30.32,30.03,29.76,29.52,29.3,29.07,28.87,28.45,N/A,N/A +2013,8,11,18,30,94440,93380,92360,32.52,0,3.77,4.63,4.86,4.98,5.08,5.14,5.19,5.23,5.28,132.43,132.71,132.8,132.84,132.86,132.86,132.85,132.83,132.79,32.29,31.55,31.240000000000002,30.970000000000002,30.73,30.5,30.27,30.060000000000002,29.64,N/A,N/A +2013,8,11,19,30,94370,93320,92300,27.55,0,4.07,4.97,5.21,5.34,5.42,5.48,5.5200000000000005,5.5600000000000005,5.6000000000000005,128.89000000000001,129.66,130.01,130.25,130.43,130.58,130.71,130.82,131.01,33.3,32.54,32.230000000000004,31.96,31.720000000000002,31.490000000000002,31.26,31.05,30.63,N/A,N/A +2013,8,11,20,30,94300,93250,92230,25.23,0,4.48,5.51,5.79,5.94,6.04,6.11,6.16,6.2,6.26,128.09,128.59,128.88,129.09,129.25,129.38,129.51,129.62,129.8,34.03,33.26,32.96,32.69,32.44,32.21,31.98,31.77,31.35,N/A,N/A +2013,8,11,21,30,94240,93190,92170,23.76,0,4.54,5.6000000000000005,5.89,6.03,6.13,6.2,6.24,6.28,6.33,129.73,130.03,130.16,130.24,130.29,130.33,130.36,130.38,130.43,34.34,33.6,33.31,33.05,32.81,32.59,32.37,32.160000000000004,31.740000000000002,N/A,N/A +2013,8,11,22,30,94180,93130,92120,25.09,0,4.63,5.72,6.01,6.15,6.25,6.32,6.37,6.41,6.46,131.11,131.68,131.97,132.16,132.32,132.45,132.56,132.65,132.83,34.46,33.75,33.49,33.24,33.01,32.79,32.57,32.37,31.96,N/A,N/A +2013,8,11,23,30,94130,93080,92070,26.12,0,4.6000000000000005,5.69,6,6.18,6.3100000000000005,6.4,6.47,6.5200000000000005,6.6000000000000005,132.59,133.23,133.53,133.77,133.97,134.13,134.27,134.41,134.64000000000001,34.51,33.9,33.660000000000004,33.410000000000004,33.19,32.97,32.76,32.56,32.15,N/A,N/A +2013,8,12,0,30,94130,93080,92070,28.86,0,5.05,6.41,6.78,6.99,7.15,7.26,7.3500000000000005,7.42,7.5200000000000005,157.05,156.28,155.82,155.39000000000001,155.01,154.66,154.33,154.02,153.46,33.910000000000004,33.46,33.25,33.03,32.83,32.63,32.42,32.230000000000004,31.830000000000002,N/A,N/A +2013,8,12,1,30,94150,93090,92070,38.77,0,9.58,12.59,13.36,13.92,14.290000000000001,14.540000000000001,14.700000000000001,14.82,15.030000000000001,140.79,141.79,142.14000000000001,142.44,142.72,142.99,143.11,143.18,142.77,30.89,30.51,30.32,30.12,29.93,29.75,29.57,29.41,29.1,N/A,N/A +2013,8,12,2,30,94210,93140,92120,37.95,0,6.68,8.91,9.55,10.040000000000001,10.44,10.790000000000001,11.1,11.370000000000001,11.84,147.35,147.38,147.33,147.20000000000002,147.14000000000001,147.11,147.14000000000001,147.18,147.36,30.48,30.23,30.09,29.93,29.77,29.61,29.45,29.3,28.990000000000002,N/A,N/A +2013,8,12,3,30,94300,93230,92200,53.95,0,8.03,10.46,11.120000000000001,11.61,12,12.34,12.64,12.93,13.47,154.03,154.4,154.58,154.71,154.84,154.95000000000002,155.07,155.19,155.41,27.92,27.6,27.43,27.23,27.05,26.86,26.67,26.5,26.13,N/A,N/A +2013,8,12,4,30,94340,93260,92230,57.57,0,7.4,9.67,10.25,10.65,10.94,11.18,11.370000000000001,11.53,11.8,156.63,156.54,156.53,156.5,156.46,156.42000000000002,156.37,156.33,156.24,27.29,26.97,26.79,26.6,26.400000000000002,26.21,26.01,25.830000000000002,25.44,N/A,N/A +2013,8,12,5,30,94380,93300,92260,61.89,0,5.29,6.94,7.4,7.73,7.99,8.19,8.36,8.51,8.75,161.19,161.15,161.06,161,160.94,160.9,160.87,160.83,160.77,26.46,26.150000000000002,25.98,25.78,25.59,25.400000000000002,25.21,25.02,24.64,N/A,N/A +2013,8,12,6,30,94410,93330,92280,60.47,0,6.66,8.85,9.48,9.94,10.31,10.63,10.91,11.17,11.63,162.28,162.36,162.38,162.36,162.31,162.27,162.20000000000002,162.12,161.95000000000002,25.66,25.36,25.19,25,24.810000000000002,24.62,24.43,24.25,23.87,N/A,N/A +2013,8,12,7,30,94440,93360,92310,63.35,0,4.59,6.2700000000000005,6.82,7.26,7.62,7.92,8.2,8.45,8.92,160.08,160.83,161.27,161.69,162.06,162.42000000000002,162.78,163.12,163.77,25.16,24.900000000000002,24.740000000000002,24.560000000000002,24.38,24.21,24.03,23.86,23.5,N/A,N/A +2013,8,12,8,30,94440,93360,92310,65.81,0,3.79,5.45,6.03,6.51,6.92,7.2700000000000005,7.59,7.890000000000001,8.44,156.92000000000002,157.82,158.38,158.94,159.49,160.01,160.53,161.02,161.88,24.67,24.44,24.3,24.13,23.96,23.79,23.61,23.44,23.09,N/A,N/A +2013,8,12,9,30,94450,93360,92310,69.24,0,2.63,4.16,4.74,5.25,5.69,6.09,6.45,6.79,7.41,163.05,163.52,163.91,164.4,164.94,165.5,166.09,166.66,167.76,24.2,24,23.86,23.7,23.53,23.37,23.19,23.03,22.68,N/A,N/A +2013,8,12,10,30,94420,93330,92280,73.06,0,2.2,3.7800000000000002,4.42,5,5.5200000000000005,6,6.47,6.91,7.7700000000000005,155.6,157.98,159.46,160.66,161.69,162.61,163.36,164.03,165.01,23.66,23.52,23.400000000000002,23.26,23.1,22.96,22.79,22.64,22.32,N/A,N/A +2013,8,12,11,30,94450,93360,92300,78.25,0,1.57,3.3000000000000003,4.01,4.69,5.33,5.93,6.54,7.12,8.15,129.68,136.72,140.72,143.43,145.75,147.83,149.79,151.64000000000001,155.01,22.96,22.94,22.85,22.740000000000002,22.62,22.490000000000002,22.36,22.23,21.97,N/A,N/A +2013,8,12,12,30,94470,93380,92330,80.73,0,1.8,3.36,3.91,4.43,4.9,5.3500000000000005,5.8100000000000005,6.25,7.13,132.65,138.61,142.07,144.76,147.19,149.44,151.86,154.23,159.33,22.59,22.56,22.48,22.38,22.26,22.150000000000002,22.02,21.900000000000002,21.63,N/A,N/A +2013,8,12,13,30,94490,93400,92340,72.10000000000001,0,4.08,5.17,5.48,5.67,5.8,5.89,5.97,6.03,6.16,157.41,158.31,158.84,159.3,159.74,160.17000000000002,160.64000000000001,161.08,162.14000000000001,23.830000000000002,23.37,23.16,22.96,22.76,22.57,22.38,22.2,21.830000000000002,N/A,N/A +2013,8,12,14,30,94480,93400,92350,64.77,0,4.14,5.15,5.43,5.57,5.66,5.73,5.76,5.78,5.8,163.65,163.81,163.93,164,164.06,164.1,164.14000000000001,164.18,164.26,25.03,24.42,24.17,23.94,23.73,23.53,23.32,23.13,22.73,N/A,N/A +2013,8,12,15,30,94470,93390,92340,60.02,0,4.22,5.23,5.51,5.65,5.74,5.8100000000000005,5.8500000000000005,5.88,5.91,169.77,169.8,169.78,169.76,169.74,169.73,169.73,169.72,169.71,26.17,25.48,25.21,24.96,24.73,24.52,24.310000000000002,24.11,23.71,N/A,N/A +2013,8,12,16,30,94460,93390,92350,52.68,0,3.72,4.58,4.82,4.94,5.0200000000000005,5.08,5.12,5.15,5.18,166.59,166.6,166.65,166.66,166.67000000000002,166.66,166.66,166.65,166.65,27.68,26.96,26.68,26.42,26.19,25.97,25.75,25.55,25.150000000000002,N/A,N/A +2013,8,12,17,30,94440,93370,92330,46.52,0,4.15,5.09,5.3500000000000005,5.48,5.58,5.64,5.68,5.71,5.75,154.09,154.26,154.35,154.36,154.36,154.36,154.34,154.32,154.29,29.17,28.41,28.11,27.84,27.6,27.37,27.14,26.94,26.52,N/A,N/A +2013,8,12,18,30,94380,93320,92290,42.09,0,3.65,4.46,4.68,4.8,4.89,4.95,4.99,5.0200000000000005,5.07,151.68,152.07,152.29,152.43,152.55,152.65,152.73,152.8,152.94,30.43,29.69,29.38,29.1,28.86,28.63,28.400000000000002,28.19,27.77,N/A,N/A +2013,8,12,19,30,94340,93280,92250,37.58,0,4.2700000000000005,5.26,5.51,5.66,5.76,5.83,5.87,5.91,5.97,146.57,146.99,147.21,147.37,147.48,147.58,147.67000000000002,147.74,147.86,31.55,30.77,30.46,30.19,29.94,29.71,29.48,29.26,28.84,N/A,N/A +2013,8,12,20,30,94280,93230,92200,36.4,0,4.19,5.14,5.4,5.54,5.64,5.7,5.75,5.79,5.84,151.3,151.29,151.24,151.15,151.07,150.98,150.9,150.82,150.67000000000002,32.12,31.35,31.05,30.77,30.53,30.3,30.07,29.86,29.44,N/A,N/A +2013,8,12,21,30,94210,93150,92130,34.31,0,4.15,5.1000000000000005,5.37,5.5,5.59,5.66,5.7,5.74,5.79,147.29,147.39000000000001,147.45000000000002,147.46,147.46,147.45000000000002,147.45000000000002,147.44,147.42000000000002,32.7,31.96,31.66,31.400000000000002,31.16,30.93,30.71,30.5,30.080000000000002,N/A,N/A +2013,8,12,22,30,94170,93120,92100,33.33,0,4.43,5.48,5.75,5.9,6.01,6.08,6.13,6.16,6.21,144.84,145.24,145.46,145.6,145.70000000000002,145.78,145.84,145.9,145.99,32.96,32.25,31.98,31.720000000000002,31.490000000000002,31.26,31.04,30.830000000000002,30.42,N/A,N/A +2013,8,12,23,30,94130,93070,92050,35.35,0,5.3100000000000005,6.6000000000000005,6.94,7.1000000000000005,7.21,7.28,7.32,7.3500000000000005,7.390000000000001,167.28,166.44,165.85,165.27,164.76,164.28,163.82,163.39000000000001,162.58,32.230000000000004,31.71,31.5,31.27,31.07,30.86,30.650000000000002,30.46,30.060000000000002,N/A,N/A +2013,8,13,0,30,94110,93050,92030,35.57,0,5.4,6.88,7.28,7.51,7.67,7.78,7.8500000000000005,7.91,7.98,143.71,143.97,144.15,144.31,144.46,144.6,144.73,144.86,145.12,32.19,31.720000000000002,31.51,31.28,31.080000000000002,30.87,30.66,30.46,30.07,N/A,N/A +2013,8,13,1,30,94120,93060,92030,35.35,0,5.57,7.45,7.94,8.28,8.53,8.73,8.870000000000001,9,9.16,158.35,158.22,158.15,158.05,157.96,157.87,157.8,157.72,157.59,31.3,31.05,30.89,30.71,30.52,30.34,30.14,29.96,29.580000000000002,N/A,N/A +2013,8,13,2,30,94140,93080,92050,28.25,0,5.25,7.46,8.15,8.72,9.19,9.6,9.94,10.25,10.73,156.95000000000002,156.76,156.64000000000001,156.53,156.47,156.45000000000002,156.49,156.54,156.82,30.66,30.51,30.400000000000002,30.26,30.1,29.96,29.79,29.63,29.28,N/A,N/A +2013,8,13,3,30,94200,93140,92110,30.84,0,4.32,6.51,7.29,7.97,8.56,9.1,9.59,10.040000000000001,10.75,150.72,150.87,151.01,151.15,151.34,151.54,151.77,151.99,152.42000000000002,29.73,29.71,29.650000000000002,29.560000000000002,29.45,29.34,29.21,29.080000000000002,28.77,N/A,N/A +2013,8,13,4,30,94210,93140,92110,35.46,0,3.85,6.11,6.96,7.73,8.41,9.040000000000001,9.6,10.11,10.88,157.14000000000001,157.25,157.37,157.47,157.64000000000001,157.86,158.14000000000001,158.42000000000002,159.03,29.05,29.09,29.060000000000002,28.990000000000002,28.91,28.82,28.71,28.6,28.330000000000002,N/A,N/A +2013,8,13,5,30,94230,93160,92130,39.050000000000004,0,3.92,6.22,7.1000000000000005,7.890000000000001,8.59,9.24,9.84,10.38,11.26,149.56,149.44,149.46,149.62,149.97,150.45000000000002,151.03,151.61,152.86,28.28,28.330000000000002,28.3,28.26,28.19,28.12,28.03,27.93,27.69,N/A,N/A +2013,8,13,6,30,94280,93210,92180,43.42,0,3.64,6,6.92,7.69,8.370000000000001,8.98,9.6,10.17,11.26,149.3,151.68,152.97,153.8,154.51,155.14000000000001,156.05,157,159.27,27.7,27.830000000000002,27.830000000000002,27.79,27.72,27.63,27.54,27.46,27.3,N/A,N/A +2013,8,13,7,30,94300,93230,92190,46.24,0,4.71,7.19,8.1,8.92,9.64,10.31,10.91,11.47,12.31,152.37,153.04,153.51,154.1,154.85,155.65,156.6,157.53,159.43,27.17,27.21,27.18,27.150000000000002,27.11,27.07,27.03,26.98,26.84,N/A,N/A +2013,8,13,8,30,94330,93250,92210,48.58,0,4.17,6.62,7.57,8.45,9.22,9.91,10.53,11.09,11.96,151.85,153.49,154.6,155.74,156.93,158.16,159.53,160.88,163.88,26.400000000000002,26.51,26.52,26.52,26.51,26.490000000000002,26.47,26.44,26.34,N/A,N/A +2013,8,13,9,30,94340,93260,92220,48.72,0,4.15,6.51,7.41,8.24,9.02,9.77,10.52,11.23,12.46,155.92000000000002,157.70000000000002,158.92000000000002,160.1,161.34,162.67000000000002,164.11,165.53,168.27,25.810000000000002,25.96,25.98,26,26.02,26.04,26.060000000000002,26.080000000000002,26.07,N/A,N/A +2013,8,13,10,30,94350,93270,92220,49.67,0,4.78,7.29,8.28,9.200000000000001,10.05,10.84,11.63,12.38,13.74,153.06,155.3,156.70000000000002,157.96,159.08,160.13,161.12,162.07,163.86,24.830000000000002,24.86,24.84,24.8,24.76,24.72,24.67,24.62,24.51,N/A,N/A +2013,8,13,11,30,94380,93290,92250,59.33,0,4.43,6.75,7.66,8.53,9.33,10.07,10.82,11.53,12.92,147.83,150.87,152.74,154.41,155.88,157.21,158.5,159.72,162.17000000000002,23.990000000000002,23.97,23.92,23.84,23.76,23.67,23.57,23.48,23.29,N/A,N/A +2013,8,13,12,30,94400,93310,92260,70.53,0,4.1,6.29,7.16,7.97,8.73,9.450000000000001,10.17,10.86,12.21,144.08,147.82,150.13,152.19,154.04,155.75,157.37,158.89000000000001,161.88,23.150000000000002,23.1,23.03,22.95,22.87,22.78,22.69,22.61,22.45,N/A,N/A +2013,8,13,13,30,94380,93290,92240,68.34,0,5.58,7.1000000000000005,7.54,7.83,8.06,8.25,8.44,8.61,9.17,156.03,157.06,157.66,158.23,158.81,159.38,160.04,160.66,162.39000000000001,24.26,23.82,23.62,23.42,23.23,23.06,22.87,22.7,22.37,N/A,N/A +2013,8,13,14,30,94420,93340,92290,63.03,0,5.88,7.37,7.78,8.01,8.16,8.26,8.33,8.38,8.44,159.31,159.67000000000002,159.84,160,160.14000000000001,160.28,160.44,160.59,160.94,25.740000000000002,25.12,24.87,24.64,24.43,24.22,24.02,23.830000000000002,23.45,N/A,N/A +2013,8,13,15,30,94420,93340,92300,56.26,0,5.44,6.8100000000000005,7.21,7.43,7.58,7.69,7.7700000000000005,7.83,7.91,164.48,164.81,164.99,165.11,165.23,165.33,165.44,165.53,165.72,27.32,26.6,26.32,26.07,25.84,25.63,25.42,25.22,24.82,N/A,N/A +2013,8,13,16,30,94400,93330,92290,48.230000000000004,0,5.69,7.0600000000000005,7.46,7.68,7.83,7.930000000000001,8.01,8.07,8.15,168.03,168.19,168.26,168.31,168.35,168.4,168.45000000000002,168.49,168.58,28.900000000000002,28.11,27.82,27.54,27.310000000000002,27.080000000000002,26.86,26.650000000000002,26.240000000000002,N/A,N/A +2013,8,13,17,30,94350,93290,92260,41.57,0,5.18,6.42,6.78,6.97,7.11,7.21,7.28,7.33,7.41,166.99,167.21,167.3,167.38,167.45000000000002,167.52,167.59,167.65,167.77,30.28,29.490000000000002,29.18,28.900000000000002,28.66,28.43,28.2,27.990000000000002,27.57,N/A,N/A +2013,8,13,18,30,94300,93240,92210,36.81,0,4.49,5.51,5.8,5.95,6.05,6.12,6.17,6.21,6.26,166.32,166.57,166.76,166.89000000000001,166.99,167.09,167.17000000000002,167.25,167.4,31.490000000000002,30.71,30.39,30.12,29.87,29.64,29.41,29.2,28.78,N/A,N/A +2013,8,13,19,30,94280,93220,92200,32.67,0,5.01,6.140000000000001,6.46,6.62,6.74,6.8100000000000005,6.87,6.91,6.96,155.55,156.11,156.43,156.67000000000002,156.86,157.02,157.17000000000002,157.31,157.55,32.6,31.8,31.48,31.2,30.95,30.72,30.490000000000002,30.27,29.85,N/A,N/A +2013,8,13,20,30,94220,93160,92140,28.27,0,4.55,5.55,5.79,5.9,5.97,6.01,6.03,6.05,6.05,156.32,156.82,157.07,157.21,157.33,157.44,157.53,157.61,157.76,33.28,32.51,32.21,31.94,31.7,31.48,31.26,31.05,30.63,N/A,N/A +2013,8,13,21,30,94130,93080,92060,26.14,0,4,4.8500000000000005,5.08,5.16,5.22,5.25,5.2700000000000005,5.28,5.29,168.63,168.17000000000002,167.77,167.38,167.02,166.68,166.34,166.03,165.41,33.84,33.12,32.84,32.58,32.35,32.13,31.91,31.7,31.3,N/A,N/A +2013,8,13,22,30,94070,93020,92010,26.48,0,3.5,4.29,4.5200000000000005,4.67,4.7700000000000005,4.8500000000000005,4.91,4.96,5.04,158.88,157.87,157.48,157.18,156.93,156.72,156.55,156.4,156.13,34.32,33.660000000000004,33.39,33.13,32.9,32.67,32.45,32.24,31.830000000000002,N/A,N/A +2013,8,13,23,30,94020,92970,91960,26.5,0,4.14,5.11,5.37,5.49,5.58,5.64,5.68,5.72,5.7700000000000005,151.89000000000001,152.28,152.32,152.26,152.18,152.08,151.99,151.9,151.69,34.08,33.480000000000004,33.25,33.02,32.8,32.6,32.38,32.19,31.79,N/A,N/A +2013,8,14,0,30,94010,92960,91940,28.37,0,4.3500000000000005,5.49,5.8100000000000005,6.01,6.16,6.26,6.33,6.4,6.49,141.86,142.43,142.8,143.17000000000002,143.51,143.83,144.13,144.41,144.99,33.86,33.43,33.230000000000004,33.01,32.81,32.6,32.4,32.2,31.8,N/A,N/A +2013,8,14,1,30,94030,92980,91960,30.35,0,4.21,6.140000000000001,6.75,7.12,7.36,7.49,7.55,7.57,7.53,140.13,140.35,140.47,140.52,140.55,140.59,140.61,140.62,140.65,32.82,32.72,32.62,32.46,32.3,32.12,31.94,31.76,31.38,N/A,N/A +2013,8,14,2,30,94020,92970,91950,32.65,0,2.56,4.75,5.57,6.3,6.88,7.32,7.6000000000000005,7.79,8,127.26,128.23,128.97,129.82,130.58,131.27,131.92000000000002,132.5,133.78,31.82,32.02,32.01,31.94,31.85,31.740000000000002,31.59,31.45,31.11,N/A,N/A +2013,8,14,3,30,94080,93030,92000,33.36,0,2.84,5.16,6.1000000000000005,7.0600000000000005,7.94,8.77,9.47,10.1,10.76,130.87,132.39000000000001,133.71,135.71,137.74,139.84,141.68,143.34,145.64000000000001,30.91,31.16,31.2,31.2,31.16,31.1,31.02,30.93,30.69,N/A,N/A +2013,8,14,4,30,94100,93040,92020,34.09,0,3.69,6.01,6.8500000000000005,7.6000000000000005,8.28,8.91,9.52,10.1,11.28,142.71,141.48,141.13,141.5,142.5,143.96,145.63,147.28,149.68,30.27,30.490000000000002,30.52,30.51,30.48,30.43,30.330000000000002,30.240000000000002,29.990000000000002,N/A,N/A +2013,8,14,5,30,94140,93080,92050,36.31,0,3.5,5.96,6.93,7.8500000000000005,8.72,9.56,10.370000000000001,11.15,12.42,144.75,145.55,146.05,146.51,147.23,148.15,149.22,150.3,151.91,29.37,29.67,29.740000000000002,29.76,29.76,29.740000000000002,29.7,29.650000000000002,29.47,N/A,N/A +2013,8,14,6,30,94160,93090,92070,38.96,0,3.67,6.33,7.42,8.42,9.32,10.16,10.89,11.540000000000001,12.39,154.49,153.9,153.6,153.47,153.70000000000002,154.20000000000002,154.88,155.58,156.86,28.8,29.12,29.21,29.26,29.29,29.3,29.29,29.28,29.17,N/A,N/A +2013,8,14,7,30,94190,93130,92100,42.77,0,4.11,6.67,7.68,8.61,9.47,10.290000000000001,11.040000000000001,11.73,12.700000000000001,152.61,152.12,151.86,151.79,152.12,152.71,153.64000000000001,154.62,156.92000000000002,28.35,28.580000000000002,28.64,28.68,28.71,28.72,28.72,28.72,28.64,N/A,N/A +2013,8,14,8,30,94210,93140,92110,46.5,0,3.65,6.0600000000000005,6.96,7.8,8.56,9.26,9.81,10.3,10.72,150.14000000000001,152.56,154.21,155.98,157.88,159.86,161.88,163.8,167.11,27.76,28.04,28.13,28.19,28.25,28.3,28.330000000000002,28.35,28.28,N/A,N/A +2013,8,14,9,30,94200,93130,92100,50.660000000000004,0,2.89,4.99,5.74,6.47,7.12,7.72,8.24,8.72,9.34,132.6,141.66,146.72,149.77,152.3,154.46,156.66,158.76,162.89000000000001,26.76,27.22,27.37,27.47,27.53,27.560000000000002,27.57,27.57,27.54,N/A,N/A +2013,8,14,10,30,94240,93160,92130,54.25,0,2.56,4.66,5.34,6.05,6.640000000000001,7.17,7.54,7.86,8.06,133.77,144.44,150.33,154.41,157.66,160.34,162.62,164.65,167.39000000000001,26.2,26.79,26.96,27.1,27.18,27.22,27.23,27.240000000000002,27.18,N/A,N/A +2013,8,14,11,30,94260,93180,92150,56.4,0,2.94,4.54,4.97,5.47,5.95,6.42,6.78,7.1000000000000005,7.18,127.24000000000001,133.91,138.65,144.33,148.98,153.01,155.66,157.76,158.83,25.42,25.830000000000002,25.990000000000002,26.19,26.36,26.51,26.62,26.71,26.75,N/A,N/A +2013,8,14,12,30,94310,93220,92180,61,0,2.63,4.42,4.94,5.43,5.92,6.42,6.93,7.42,8.13,126.27,131.74,135.68,139.94,144.08,148.18,151.83,155.20000000000002,159.94,24.57,24.89,24.97,25.03,25.080000000000002,25.12,25.150000000000002,25.19,25.22,N/A,N/A +2013,8,14,13,30,94320,93240,92200,56.1,0,2.07,2.59,2.77,2.9,3.0700000000000003,3.27,3.73,4.28,5.16,136.70000000000002,140.48,142.83,145.04,147.64000000000001,150.53,154.43,158.74,163.83,25.93,25.55,25.37,25.2,25.03,24.87,24.76,24.67,24.650000000000002,N/A,N/A +2013,8,14,14,30,94350,93270,92240,49.17,0,2.1,2.6,2.7600000000000002,2.84,2.9,2.94,2.97,3,3.04,150.12,152.15,153.4,154.41,155.3,156.14000000000001,156.97,157.74,159.38,27.87,27.36,27.14,26.92,26.72,26.53,26.330000000000002,26.150000000000002,25.78,N/A,N/A +2013,8,14,15,30,94360,93300,92260,43.14,0,2.21,2.69,2.83,2.9,2.95,2.98,3,3.02,3.0300000000000002,141.53,142.89000000000001,143.71,144.3,144.79,145.22,145.61,145.96,146.62,29.53,28.93,28.67,28.43,28.21,28.01,27.79,27.6,27.21,N/A,N/A +2013,8,14,16,30,94350,93280,92250,37.94,0,2.32,2.77,2.87,2.93,2.96,2.98,2.98,2.99,2.99,134.15,135.16,135.72,136.16,136.52,136.83,137.11,137.36,137.82,30.900000000000002,30.26,29.990000000000002,29.73,29.5,29.28,29.060000000000002,28.86,28.45,N/A,N/A +2013,8,14,17,30,94320,93260,92240,33.95,0,2.25,2.61,2.68,2.7,2.7,2.7,2.69,2.69,2.66,108.60000000000001,109.95,110.76,111.44,112.01,112.54,113.03,113.48,114.34,32.03,31.37,31.080000000000002,30.810000000000002,30.580000000000002,30.35,30.13,29.92,29.51,N/A,N/A +2013,8,14,18,30,94260,93210,92190,30.72,0,1.69,1.99,2.06,2.1,2.14,2.16,2.18,2.19,2.22,123.51,123.09,122.92,122.74000000000001,122.57000000000001,122.41,122.27,122.13,121.88,33.07,32.42,32.13,31.86,31.62,31.39,31.16,30.95,30.54,N/A,N/A +2013,8,14,19,30,94220,93170,92150,26.490000000000002,0,2.34,2.72,2.79,2.81,2.82,2.83,2.82,2.82,2.8000000000000003,121.88,122,121.98,121.92,121.86,121.77,121.67,121.57000000000001,121.36,34.07,33.4,33.1,32.83,32.6,32.37,32.15,31.95,31.53,N/A,N/A +2013,8,14,20,30,94120,93080,92060,24.61,0,1.68,1.95,2,2.02,2.04,2.05,2.05,2.05,2.05,141.33,140.34,139.89000000000001,139.45000000000002,139.05,138.68,138.33,138.01,137.41,34.94,34.300000000000004,34.01,33.730000000000004,33.49,33.26,33.04,32.83,32.410000000000004,N/A,N/A +2013,8,14,21,30,94070,93020,92010,22.69,0,1.4000000000000001,1.61,1.6500000000000001,1.6600000000000001,1.67,1.68,1.67,1.67,1.6600000000000001,126.24000000000001,127.49000000000001,128.04,128.45,128.77,129.04,129.27,129.48,129.84,35.4,34.77,34.5,34.24,34.02,33.8,33.58,33.38,32.97,N/A,N/A +2013,8,14,22,30,94010,92960,91950,22.330000000000002,0,1.62,1.87,1.92,1.94,1.95,1.95,1.94,1.94,1.93,138.26,136.89000000000001,136.11,135.42000000000002,134.88,134.45,134.08,133.75,133.17000000000002,35.65,35.050000000000004,34.800000000000004,34.550000000000004,34.33,34.12,33.910000000000004,33.71,33.31,N/A,N/A +2013,8,14,23,30,93940,92900,91890,21.66,0,1.74,2.0100000000000002,2.05,2.05,2.06,2.05,2.05,2.04,2.0300000000000002,132,132.03,131.84,131.49,131.19,130.89000000000001,130.61,130.35,129.86,35.78,35.24,35.01,34.78,34.57,34.36,34.15,33.96,33.56,N/A,N/A +2013,8,15,0,30,93930,92890,91880,23.73,0,2.05,2.5,2.62,2.68,2.72,2.75,2.7600000000000002,2.7800000000000002,2.8000000000000003,124.08,125.99000000000001,126.73,127.04,127.21000000000001,127.28,127.29,127.28,127.14,35.43,35.01,34.82,34.6,34.410000000000004,34.21,34.01,33.82,33.43,N/A,N/A +2013,8,15,1,30,93930,92890,91880,25.39,0,2.79,4.3100000000000005,4.68,4.79,4.86,4.87,4.8500000000000005,4.82,4.73,132.56,135.86,137.52,138.43,139.03,139.37,139.49,139.5,139.19,34.69,34.65,34.54,34.34,34.15,33.96,33.77,33.58,33.2,N/A,N/A +2013,8,15,2,30,93980,92940,91930,28.1,0,2.93,4.5200000000000005,4.96,5.33,5.62,5.84,6.03,6.18,6.41,151.02,151.11,151.11,150.97,150.69,150.25,149.69,149.08,147.79,33.82,33.89,33.85,33.75,33.64,33.49,33.32,33.15,32.78,N/A,N/A +2013,8,15,3,30,94050,93000,91980,33.56,0,4.15,5.72,6.3,6.8,7.23,7.61,7.97,8.290000000000001,8.91,112.82000000000001,112.59,112.5,112.55,112.72,113.04,113.5,114.03,115.2,32.410000000000004,32.160000000000004,32.03,31.86,31.7,31.54,31.37,31.21,30.87,N/A,N/A +2013,8,15,4,30,94090,93030,92010,37.42,0,3.61,5.5,6.21,6.84,7.390000000000001,7.9,8.35,8.77,9.46,123.76,123.2,123,123.01,123.31,123.85000000000001,124.65,125.52,127.65,31.29,31.150000000000002,31.03,30.89,30.740000000000002,30.59,30.43,30.29,30.02,N/A,N/A +2013,8,15,5,30,94110,93050,92030,40.85,0,3.25,5.17,5.95,6.7,7.4,8.07,8.72,9.35,10.43,131.03,131.42000000000002,131.48,131.3,131.13,130.96,130.91,130.9,131.33,30.310000000000002,30.17,30.05,29.88,29.71,29.54,29.37,29.22,29.01,N/A,N/A +2013,8,15,6,30,94170,93110,92080,43.38,0,3.9,5.9,6.65,7.34,7.96,8.540000000000001,9.02,9.450000000000001,9.81,142.36,142.38,142.37,142.14000000000001,142.02,141.98,142.13,142.34,143.28,29.59,29.52,29.46,29.38,29.3,29.240000000000002,29.19,29.150000000000002,29.1,N/A,N/A +2013,8,15,7,30,94190,93130,92100,46.69,0,2.44,4.43,5.19,5.96,6.640000000000001,7.28,7.8500000000000005,8.370000000000001,9.06,125.11,127.23,128.64000000000001,129.9,131.22,132.6,134.08,135.53,138.42000000000002,28.62,28.66,28.6,28.53,28.44,28.36,28.27,28.19,28.02,N/A,N/A +2013,8,15,8,30,94220,93150,92120,49.79,0,3,5,5.79,6.5200000000000005,7.19,7.84,8.51,9.16,10.35,136.09,135.64000000000001,135.7,136.56,137.99,139.92000000000002,142.1,144.32,148.35,27.79,27.8,27.75,27.67,27.580000000000002,27.5,27.43,27.38,27.36,N/A,N/A +2013,8,15,9,30,94250,93180,92140,55.620000000000005,0,1.78,3.7600000000000002,4.49,5.19,5.83,6.44,7.01,7.54,8.540000000000001,115.7,121.38,124.87,126.92,128.9,130.84,132.99,135.12,139.88,26.72,26.97,26.96,26.92,26.86,26.8,26.740000000000002,26.69,26.61,N/A,N/A +2013,8,15,10,30,94330,93250,92200,65.05,0,6.38,8.38,8.94,9.370000000000001,9.700000000000001,9.950000000000001,10.14,10.31,10.44,54.44,55.43,56.08,56.75,57.42,58.06,58.86,59.63,61.64,24.650000000000002,24.44,24.32,24.19,24.060000000000002,23.95,23.84,23.740000000000002,23.57,N/A,N/A +2013,8,15,11,30,94350,93270,92220,69.23,0,4.32,5.91,6.42,6.84,7.18,7.49,7.76,8,8.44,51.7,52.59,53.29,54.07,55.050000000000004,56.11,57.42,58.68,62.050000000000004,24,23.77,23.62,23.46,23.31,23.17,23.02,22.900000000000002,22.69,N/A,N/A +2013,8,15,12,30,94370,93280,92230,70.4,0,1.68,3.14,3.65,4.14,4.5600000000000005,4.93,5.3100000000000005,5.67,5.82,60.28,60.38,60.68,61.27,62.07,63.01,64.52,66.13,73.52,23.77,23.68,23.57,23.43,23.3,23.16,23.05,22.95,22.87,N/A,N/A +2013,8,15,13,30,94390,93300,92260,63.660000000000004,0,2.09,2.63,2.82,2.95,3.06,3.15,3.3200000000000003,3.49,3.95,99.63,98.71000000000001,98.25,97.86,97.58,97.35000000000001,97.41,97.53,98.75,24.95,24.53,24.34,24.14,23.96,23.79,23.62,23.47,23.23,N/A,N/A +2013,8,15,14,30,94370,93300,92250,53.620000000000005,0,2.12,2.67,2.86,2.97,3.06,3.13,3.19,3.24,3.33,129.02,129.65,129.97,130.19,130.37,130.51,130.64000000000001,130.76,131.02,26.900000000000002,26.37,26.14,25.92,25.72,25.52,25.330000000000002,25.14,24.76,N/A,N/A +2013,8,15,15,30,94350,93280,92240,47.56,0,2.77,3.41,3.6,3.7,3.77,3.8200000000000003,3.85,3.87,3.9,138.57,138.81,138.84,138.87,138.89000000000001,138.9,138.93,138.95000000000002,139.04,28.44,27.82,27.560000000000002,27.32,27.1,26.900000000000002,26.69,26.490000000000002,26.1,N/A,N/A +2013,8,15,16,30,94300,93240,92210,39.7,0,2.11,2.5500000000000003,2.68,2.75,2.79,2.82,2.84,2.85,2.86,151.3,152.8,153.69,154.4,155.02,155.59,156.13,156.61,157.63,30.330000000000002,29.71,29.43,29.18,28.95,28.740000000000002,28.52,28.330000000000002,27.93,N/A,N/A +2013,8,15,17,30,94260,93200,92170,32.82,0,1.12,1.3,1.34,1.36,1.36,1.37,1.3800000000000001,1.3800000000000001,1.3900000000000001,174.41,175.47,176.08,176.68,177.23,177.76,178.26,178.71,179.63,32.03,31.42,31.14,30.88,30.64,30.43,30.21,30,29.6,N/A,N/A +2013,8,15,18,30,94230,93170,92150,28.8,0,0.51,0.59,0.61,0.63,0.64,0.64,0.65,0.65,0.66,209.84,207.56,206.52,205.93,205.52,205.23000000000002,204.99,204.8,204.71,33.1,32.5,32.22,31.96,31.73,31.51,31.3,31.1,30.69,N/A,N/A +2013,8,15,19,30,94170,93120,92100,28.19,0,0.92,0.99,0.97,0.9500000000000001,0.92,0.9,0.88,0.86,0.81,98.24000000000001,99.04,99.19,99.15,99.11,99.04,98.96000000000001,98.88,98.69,33.84,33.230000000000004,32.95,32.7,32.47,32.26,32.04,31.84,31.44,N/A,N/A +2013,8,15,20,30,94090,93040,92030,23.580000000000002,0,2.22,2.5100000000000002,2.54,2.54,2.52,2.5100000000000002,2.49,2.47,2.42,91.18,85.83,83.3,82.17,81.24,80.41,79.76,79.24,78.43,35.13,34.480000000000004,34.19,33.910000000000004,33.67,33.44,33.21,33,32.58,N/A,N/A +2013,8,15,21,30,94020,92980,91960,23.2,0,1.36,1.61,1.68,1.72,1.75,1.78,1.8,1.82,1.86,80.18,74.23,70.96000000000001,68.57000000000001,66.61,64.91,63.440000000000005,62.14,59.81,35.37,34.75,34.480000000000004,34.230000000000004,34.01,33.79,33.57,33.37,32.97,N/A,N/A +2013,8,15,22,30,93950,92910,91900,22.09,0,0.85,0.87,0.84,0.8,0.78,0.75,0.73,0.72,0.7000000000000001,99.51,99.21000000000001,98.56,97.78,97.15,96.61,96.07000000000001,95.56,94.53,35.94,35.35,35.1,34.85,34.62,34.4,34.18,33.980000000000004,33.57,N/A,N/A +2013,8,15,23,30,93950,92910,91900,23.25,0,3.2,3.71,3.79,3.7800000000000002,3.75,3.7,3.66,3.61,3.5100000000000002,138.39000000000001,138.34,138.3,138.19,138.06,137.91,137.74,137.56,137.21,35.77,35.2,34.980000000000004,34.74,34.54,34.33,34.12,33.93,33.53,N/A,N/A +2013,8,16,0,30,94010,92950,91930,37.32,0,7.67,9.38,9.73,9.9,10.01,10.09,10.13,10.16,10.02,7.16,6.8100000000000005,6.5200000000000005,6.05,5.54,4.99,4.47,3.97,2.75,31.32,30.89,30.740000000000002,30.62,30.53,30.46,30.36,30.26,30.19,N/A,N/A +2013,8,16,1,30,94070,93010,91990,35.2,0,3.64,4.39,4.5200000000000005,4.54,4.59,4.67,4.82,4.99,5.26,42.78,47.75,50.64,53.52,55.800000000000004,57.730000000000004,60.19,62.84,65.54,31.75,31.45,31.3,31.12,30.96,30.8,30.68,30.59,30.400000000000002,N/A,N/A +2013,8,16,2,30,94140,93070,92040,51.02,0,7.17,9.19,9.8,10.33,10.63,10.77,11.040000000000001,11.34,11.72,97.8,96.64,95.83,94.91,94.44,94.24,93.9,93.55,92.58,28.04,27.75,27.62,27.5,27.34,27.17,27.12,27.11,27.12,N/A,N/A +2013,8,16,3,30,94140,93070,92040,48.57,0,4.19,6.05,6.78,7.43,7.98,8.46,8.89,9.28,10.01,116.88,115.53,114.81,114.45,114.05,113.64,113.23,112.86,112.17,28.75,28.5,28.37,28.25,28.13,28.01,27.88,27.75,27.51,N/A,N/A +2013,8,16,4,30,94180,93120,92090,48.59,0,3.92,5.54,6.09,6.53,6.9,7.21,7.48,7.73,8.19,150.27,150.76,151.05,151.07,150.96,150.77,150.51,150.24,149.65,28.7,28.51,28.400000000000002,28.28,28.16,28.060000000000002,27.96,27.87,27.73,N/A,N/A +2013,8,16,5,30,94240,93170,92130,51.34,0,3.86,5.37,5.8100000000000005,6.13,6.38,6.58,6.75,6.890000000000001,7.16,110.83,110.66,110.48,110.18,109.77,109.3,108.84,108.42,107.48,28.2,27.95,27.79,27.59,27.39,27.2,26.990000000000002,26.810000000000002,26.42,N/A,N/A +2013,8,16,6,30,94360,93280,92240,60.18,0,4.46,5.58,5.82,5.88,5.86,5.76,5.6000000000000005,5.45,5.08,0.5700000000000001,1.75,2.71,3.98,5.33,6.79,8.94,11.18,16.62,26.17,25.88,25.71,25.51,25.32,25.13,24.94,24.75,24.36,N/A,N/A +2013,8,16,7,30,94410,93330,92290,56.370000000000005,0,2.32,2.84,3,3.16,3.2,3.14,3,2.84,2.48,8,8.18,7.8,7.03,6.46,6.0600000000000005,6.66,7.5,10.01,26.04,25.740000000000002,25.580000000000002,25.38,25.21,25.05,24.900000000000002,24.77,24.47,N/A,N/A +2013,8,16,8,30,94290,93210,92170,57.47,0,2.58,3.08,3.16,3.18,3.18,3.16,3.16,3.15,3.2800000000000002,225.28,225.04,224.42000000000002,224.02,223.83,223.78,224,224.26,224.83,25.86,25.53,25.36,25.17,24.98,24.8,24.61,24.43,24.1,N/A,N/A +2013,8,16,9,30,94280,93200,92160,67.84,0,0.6900000000000001,0.79,0.88,1.1500000000000001,1.43,1.74,2.06,2.4,3.12,118.69,117.10000000000001,123.01,141.56,153.42000000000002,159.79,165.20000000000002,170.34,177.05,25.21,24.91,24.77,24.650000000000002,24.560000000000002,24.51,24.45,24.39,24.29,N/A,N/A +2013,8,16,10,30,94290,93210,92170,63.550000000000004,0,2.18,3.5700000000000003,4.08,4.49,4.8100000000000005,5.04,5.19,5.3,5.28,123.34,124.79,125.55,126.60000000000001,127.86,129.26,131.04,132.82,137.85,25.37,25.26,25.16,25.04,24.91,24.79,24.66,24.55,24.330000000000002,N/A,N/A +2013,8,16,11,30,94300,93220,92180,69.27,0,0.55,1.61,2.29,2.82,3.25,3.61,3.93,4.23,4.72,147.79,149.01,149.63,150.53,151.52,152.56,153.65,154.73,156.89000000000001,25.07,25.04,24.92,24.77,24.61,24.44,24.27,24.11,23.78,N/A,N/A +2013,8,16,12,30,94340,93260,92220,68.63,0,0.43,0.8200000000000001,0.97,1.2,1.44,1.71,1.99,2.27,2.8000000000000003,87.03,124.24000000000001,144.78,160.69,171.38,178.11,181.4,183.56,184.75,25.01,24.91,24.810000000000002,24.67,24.53,24.39,24.23,24.080000000000002,23.740000000000002,N/A,N/A +2013,8,16,13,30,94350,93270,92220,67.17,0,2.5300000000000002,3.04,3.15,3.17,3.16,3.14,3.11,3.08,3.0100000000000002,113.24000000000001,115.56,117.10000000000001,118.53,119.92,121.29,122.93,124.5,128.6,25.44,25.05,24.86,24.67,24.48,24.3,24.11,23.93,23.580000000000002,N/A,N/A +2013,8,16,14,30,94340,93270,92220,61.79,0,2,2.43,2.56,2.61,2.65,2.67,2.68,2.68,2.68,160.18,161.97,162.9,163.79,164.64000000000001,165.46,166.34,167.17000000000002,169.02,26.560000000000002,26.080000000000002,25.87,25.650000000000002,25.45,25.25,25.05,24.87,24.490000000000002,N/A,N/A +2013,8,16,15,30,94360,93290,92260,55.78,0,1.86,2.21,2.3000000000000003,2.33,2.35,2.36,2.36,2.36,2.33,138.02,139.74,140.6,141.38,142.08,142.73,143.38,144,145.26,28.2,27.61,27.35,27.11,26.89,26.68,26.48,26.28,25.89,N/A,N/A +2013,8,16,16,30,94370,93300,92270,51.01,0,2.2600000000000002,2.62,2.69,2.7,2.71,2.7,2.68,2.66,2.62,112.02,114.72,115.94,117.08,118.09,119.02,119.96000000000001,120.85000000000001,122.58,29.61,28.97,28.69,28.43,28.2,27.990000000000002,27.78,27.580000000000002,27.18,N/A,N/A +2013,8,16,17,30,94300,93240,92220,44.93,0,2.3000000000000003,2.67,2.73,2.75,2.74,2.73,2.72,2.7,2.66,110.07000000000001,111.82000000000001,112.93,113.88,114.72,115.49000000000001,116.24000000000001,116.94,118.3,31.150000000000002,30.490000000000002,30.19,29.93,29.7,29.48,29.26,29.05,28.650000000000002,N/A,N/A +2013,8,16,18,30,94270,93220,92200,38.76,0,1.83,2.1,2.15,2.17,2.18,2.18,2.18,2.17,2.16,117.13,116.8,116.62,116.42,116.25,116.09,115.93,115.77,115.45,32.53,31.88,31.580000000000002,31.310000000000002,31.07,30.84,30.62,30.41,30,N/A,N/A +2013,8,16,19,30,94230,93180,92160,35.84,0,2.48,2.87,2.95,2.97,2.98,2.98,2.97,2.96,2.94,124.66,124.94,124.91,124.78,124.64,124.47,124.3,124.13000000000001,123.74000000000001,33.57,32.89,32.59,32.31,32.08,31.85,31.62,31.42,31,N/A,N/A +2013,8,16,20,30,94140,93090,92080,33.57,0,2.67,3.12,3.22,3.25,3.27,3.2800000000000002,3.27,3.27,3.25,138.43,137.09,136.27,135.43,134.7,134,133.35,132.73,131.54,34.480000000000004,33.79,33.49,33.21,32.97,32.74,32.52,32.3,31.88,N/A,N/A +2013,8,16,21,30,94070,93020,92010,29.44,0,2.06,2.35,2.39,2.41,2.43,2.44,2.45,2.46,2.48,77.06,80.13,81.89,83.32000000000001,84.49,85.54,86.44,87.23,88.55,35,34.35,34.08,33.83,33.61,33.39,33.17,32.97,32.57,N/A,N/A +2013,8,16,22,30,94070,93030,92010,25.91,0,2.08,2.45,2.5300000000000002,2.5500000000000003,2.5500000000000003,2.5500000000000003,2.5500000000000003,2.54,2.52,56.050000000000004,59.44,61.33,62.7,63.82,64.82000000000001,65.71000000000001,66.51,67.95,35.49,34.910000000000004,34.68,34.44,34.22,34.01,33.8,33.61,33.2,N/A,N/A +2013,8,16,23,30,94080,93030,92010,27.54,0,2.46,2.82,2.89,2.88,2.91,2.98,3.09,3.23,3.6,234.82,243.66,250,257.08,263.76,271.04,277.44,283.29,292.22,33.57,33.1,32.92,32.76,32.63,32.49,32.36,32.22,31.94,N/A,N/A +2013,8,17,0,30,94070,93020,92000,28.51,0,4.9,6.21,6.390000000000001,6.47,6.49,6.48,6.42,6.36,6.19,225.07,222.46,221.9,221.47,221.12,220.83,220.55,220.3,219.92000000000002,32.910000000000004,32.44,32.230000000000004,32.01,31.8,31.6,31.400000000000002,31.220000000000002,30.85,N/A,N/A +2013,8,17,1,30,94170,93100,92070,50.84,0,5.41,6.8100000000000005,7.07,7.1000000000000005,6.8,6.3100000000000005,6.28,6.36,6.78,178.47,178.21,178.34,178.34,175.64000000000001,171.57,169.43,167.88,168.12,27.36,27.22,27.12,26.94,27.34,28.09,28.39,28.55,28.37,N/A,N/A +2013,8,17,2,30,94180,93110,92080,45.32,0,2.14,2.72,3.0300000000000002,3.46,3.94,4.46,4.99,5.53,6.5,141.66,147.29,151.63,156.9,161.86,166.70000000000002,169.71,172.14000000000001,174.98,27.900000000000002,27.6,27.47,27.37,27.330000000000002,27.330000000000002,27.37,27.41,27.54,N/A,N/A +2013,8,17,3,30,94260,93180,92150,46.69,0,1.79,2.0100000000000002,1.8900000000000001,1.6500000000000001,1.55,1.52,1.68,1.9000000000000001,2.61,80.77,89.46000000000001,98.34,110.71000000000001,124.36,138.99,150.39000000000001,161.12,168.72,27.68,27.52,27.5,27.54,27.59,27.650000000000002,27.71,27.77,27.88,N/A,N/A +2013,8,17,4,30,94260,93190,92160,46.11,0,1.04,2.41,2.97,3.36,3.67,3.94,4.17,4.39,4.84,144.3,139.26,135.8,132.97,131.6,131.23,132.41,134.02,139.06,27.71,27.900000000000002,27.96,28.01,28.02,28.02,28.03,28.03,28.04,N/A,N/A +2013,8,17,5,30,94280,93210,92170,46.89,0,2.24,3.7,4.15,4.65,5.1000000000000005,5.53,5.88,6.18,6.59,116.52,108.54,104.12,100.86,99.31,98.9,99.51,100.41,103.71000000000001,28.03,28.23,28.22,28.11,27.990000000000002,27.85,27.73,27.63,27.47,N/A,N/A +2013,8,17,6,30,94400,93320,92280,47.45,0,6.86,8.790000000000001,8.84,8.67,8.38,8.07,7.58,7.140000000000001,6.05,276.6,277.22,277.04,276.8,276.19,275.51,274.22,272.95,268.39,27.77,27.59,27.48,27.36,27.25,27.14,27.04,26.94,26.75,N/A,N/A +2013,8,17,7,30,94540,93450,92390,73.96000000000001,0,8.15,10.540000000000001,11.33,12.07,12.75,13.4,13.71,13.91,14.5,325.78000000000003,326.41,326.76,327.23,327.67,328.09000000000003,328.25,328.32,328.88,23.45,23.12,22.96,22.79,22.63,22.490000000000002,22.32,22.150000000000002,21.92,N/A,N/A +2013,8,17,8,30,94520,93430,92370,67.07000000000001,0,1.01,1.72,2.21,2.68,3.14,3.6,4.09,4.5600000000000005,5.3100000000000005,330.09000000000003,330.22,330.09000000000003,330.52,330.07,329.09000000000003,327.73,326.35,324.63,22.93,22.61,22.44,22.25,22.09,21.96,21.900000000000002,21.87,21.91,N/A,N/A +2013,8,17,9,30,94400,93310,92260,71.52,0,2.87,3.74,4.1,4.48,4.7,4.82,4.5600000000000005,4.2700000000000005,3.5700000000000003,36.160000000000004,37.24,38.06,38.83,39.58,40.28,42.13,43.88,47.78,23.07,22.78,22.64,22.5,22.59,22.79,23.16,23.52,24.03,N/A,N/A +2013,8,17,10,30,94400,93310,92260,74.99,0,0.43,1.46,2.2,2.95,3.62,4.23,4.7,5.1000000000000005,5.75,319.54,1.67,27.900000000000002,34.160000000000004,39.11,42.96,46.09,48.92,55.410000000000004,23.36,23.6,23.66,23.69,23.71,23.72,23.7,23.68,23.69,N/A,N/A +2013,8,17,11,30,94420,93340,92290,66.65,0,1.17,1.17,1.08,1.24,1.55,2.0300000000000002,2.54,3.09,4.18,328.73,8.92,30.37,57.870000000000005,73.96000000000001,84.2,88.93,92.23,95.44,24.43,24.96,24.990000000000002,24.86,24.75,24.650000000000002,24.55,24.46,24.26,N/A,N/A +2013,8,17,12,30,94430,93350,92300,61.11,0,0.66,1.06,1.28,1.84,2.41,2.98,3.5500000000000003,4.12,5.13,356.96,60.17,86.37,97.16,103.46000000000001,105.92,107.83,109.65,115.45,24.71,25.09,25.080000000000002,24.96,24.810000000000002,24.66,24.5,24.35,24.1,N/A,N/A +2013,8,17,13,30,94440,93360,92310,57.65,0,0.45,0.67,0.85,1.18,1.7,2.43,2.98,3.49,4.51,190.62,172.49,161.70000000000002,150.23,143.84,140.54,141.01,142.4,143.28,25.1,24.810000000000002,24.7,24.61,24.57,24.54,24.45,24.35,24.16,N/A,N/A +2013,8,17,14,30,94460,93390,92340,50.43,0,3.79,4.76,5.05,5.21,5.32,5.39,5.44,5.47,5.51,141.77,142.26,142.51,142.66,142.78,142.89000000000001,142.99,143.07,143.24,27.3,26.72,26.490000000000002,26.26,26.05,25.85,25.650000000000002,25.46,25.07,N/A,N/A +2013,8,17,15,30,94440,93370,92340,47.89,0,3.72,4.63,4.89,5.04,5.13,5.19,5.23,5.26,5.29,143.04,143.57,143.86,144.06,144.21,144.34,144.45000000000002,144.55,144.73,28.71,28.05,27.78,27.54,27.32,27.11,26.900000000000002,26.7,26.310000000000002,N/A,N/A +2013,8,17,16,30,94440,93380,92340,43.58,0,3.3200000000000003,4.0600000000000005,4.2700000000000005,4.38,4.45,4.5,4.53,4.55,4.57,148.4,148.81,149.03,149.17000000000002,149.28,149.36,149.44,149.5,149.61,30.07,29.39,29.11,28.84,28.61,28.39,28.18,27.97,27.57,N/A,N/A +2013,8,17,17,30,94390,93330,92300,38.36,0,2.9,3.49,3.65,3.73,3.7800000000000002,3.8200000000000003,3.84,3.85,3.86,145.33,146.02,146.44,146.74,146.99,147.21,147.41,147.58,147.89000000000001,31.46,30.78,30.48,30.21,29.97,29.740000000000002,29.52,29.310000000000002,28.900000000000002,N/A,N/A +2013,8,17,18,30,94330,93270,92250,33.980000000000004,0,2.7,3.21,3.34,3.4,3.45,3.47,3.49,3.49,3.5,138.92000000000002,139.87,140.4,140.81,141.14000000000001,141.42000000000002,141.67000000000002,141.9,142.3,32.660000000000004,31.970000000000002,31.66,31.39,31.150000000000002,30.92,30.69,30.48,30.060000000000002,N/A,N/A +2013,8,17,19,30,94260,93210,92190,31.310000000000002,0,2.5300000000000002,2.98,3.09,3.13,3.16,3.17,3.18,3.19,3.19,118.41,119.95,120.84,121.55,122.14,122.67,123.16,123.61,124.42,33.57,32.89,32.58,32.31,32.07,31.84,31.62,31.41,30.990000000000002,N/A,N/A +2013,8,17,20,30,94200,93150,92130,29.3,0,2.65,3.13,3.23,3.27,3.29,3.31,3.31,3.31,3.3000000000000003,112.99000000000001,114.44,115.37,116.17,116.86,117.47,118.05,118.57000000000001,119.57000000000001,34.34,33.65,33.36,33.1,32.86,32.63,32.410000000000004,32.2,31.79,N/A,N/A +2013,8,17,21,30,94130,93090,92070,27.14,0,2.65,3.15,3.2600000000000002,3.31,3.34,3.35,3.36,3.36,3.36,109.05,109.96000000000001,110.64,111.22,111.71000000000001,112.14,112.53,112.89,113.57000000000001,34.87,34.2,33.92,33.660000000000004,33.43,33.2,32.980000000000004,32.77,32.36,N/A,N/A +2013,8,17,22,30,94070,93030,92010,27.47,0,5.44,6.58,6.86,7,7.1000000000000005,7.15,7.18,7.2,7.21,129.32,128.61,128.27,128.06,127.92,127.82000000000001,127.77,127.73,127.7,34.83,34.1,33.84,33.57,33.34,33.12,32.89,32.69,32.27,N/A,N/A +2013,8,17,23,30,94050,93000,91990,27.830000000000002,0,4.11,5.0600000000000005,5.3,5.43,5.51,5.58,5.62,5.66,5.72,160.09,159.48,159.17000000000002,158.85,158.52,158.18,157.8,157.43,156.61,34.4,33.82,33.59,33.36,33.15,32.95,32.74,32.54,32.15,N/A,N/A +2013,8,18,0,30,94030,92980,91970,25.87,0,5.03,6.38,6.73,6.91,7.04,7.11,7.15,7.17,7.18,120.64,120.42,120.43,120.47,120.53,120.61,120.69,120.78,120.97,34.37,33.95,33.76,33.54,33.34,33.14,32.94,32.74,32.35,N/A,N/A +2013,8,18,1,30,94030,92980,91960,34.26,0,3.56,5.09,5.53,5.88,6.16,6.38,6.55,6.7,6.91,179.74,181.31,182.09,182.53,182.73,182.75,182.58,182.35,181.55,32.58,32.39,32.25,32.07,31.900000000000002,31.720000000000002,31.53,31.34,30.970000000000002,N/A,N/A +2013,8,18,2,30,94070,93020,92000,35.83,0,4.07,5.95,6.49,6.88,7.18,7.43,7.640000000000001,7.82,8.1,183.38,182.82,182.79,183.11,183.52,183.98,184.44,184.88,185.44,31.82,31.73,31.63,31.51,31.37,31.220000000000002,31.060000000000002,30.91,30.57,N/A,N/A +2013,8,18,3,30,94150,93090,92070,39.17,0,2.96,4.58,5.08,5.5600000000000005,5.99,6.4,6.76,7.08,7.58,135.19,138.23,140.48,143.04,145.48,147.99,150.38,152.64000000000001,156.51,30.77,30.830000000000002,30.79,30.72,30.64,30.54,30.44,30.32,30.060000000000002,N/A,N/A +2013,8,18,4,30,94180,93120,92090,35.85,0,3.17,5.45,6.23,6.91,7.46,7.91,8.290000000000001,8.620000000000001,9.200000000000001,131.83,130.94,130.69,130.59,130.75,131.1,131.61,132.17000000000002,133.1,29.990000000000002,30.22,30.23,30.19,30.13,30.04,29.93,29.82,29.54,N/A,N/A +2013,8,18,5,30,94220,93150,92120,30.330000000000002,0,6.0200000000000005,8.65,9.57,10.39,11.09,11.74,12.35,12.92,13.98,135.06,135.15,135.33,135.69,136.24,136.92000000000002,137.84,138.78,140.99,29.32,29.240000000000002,29.14,29.02,28.89,28.77,28.64,28.52,28.29,N/A,N/A +2013,8,18,6,30,94220,93150,92110,30.87,0,5.01,7.640000000000001,8.6,9.450000000000001,10.24,10.96,11.66,12.33,13.530000000000001,141.76,141.8,141.73,141.56,141.44,141.37,141.38,141.4,141.65,28.2,28.17,28.1,28.01,27.900000000000002,27.8,27.68,27.560000000000002,27.29,N/A,N/A +2013,8,18,7,30,94270,93200,92160,35.37,0,5.0600000000000005,7.5600000000000005,8.45,9.23,9.950000000000001,10.6,11.25,11.85,12.99,145.88,146.57,146.86,146.96,147.07,147.17000000000002,147.44,147.72,148.76,27.18,27.13,27.05,26.95,26.830000000000002,26.71,26.57,26.45,26.16,N/A,N/A +2013,8,18,8,30,94290,93210,92170,41.980000000000004,0,5.59,8.06,8.950000000000001,9.75,10.48,11.15,11.81,12.44,13.69,145.68,147.08,147.96,148.78,149.58,150.33,151.12,151.87,153.36,26.38,26.28,26.19,26.080000000000002,25.96,25.84,25.71,25.580000000000002,25.310000000000002,N/A,N/A +2013,8,18,9,30,94310,93230,92180,49.58,0,5.25,7.67,8.55,9.34,10.06,10.71,11.34,11.94,13.07,143.55,145.19,146.17000000000002,146.97,147.69,148.34,149.04,149.72,151.33,25.67,25.57,25.48,25.38,25.26,25.150000000000002,25.03,24.92,24.68,N/A,N/A +2013,8,18,10,30,94280,93200,92150,53.53,0,4.9,7.21,8.040000000000001,8.78,9.43,10.01,10.57,11.1,12.13,141.43,142.89000000000001,143.73,144.46,145.24,146.01,146.95000000000002,147.88,150.24,24.93,24.830000000000002,24.740000000000002,24.64,24.54,24.43,24.34,24.25,24.080000000000002,N/A,N/A +2013,8,18,11,30,94310,93230,92180,56.99,0,3.4,5.57,6.44,7.21,7.87,8.47,9.05,9.61,10.64,137.37,139.66,140.87,141.68,142.44,143.15,144.06,144.98,147.41,24.25,24.2,24.12,24.02,23.91,23.81,23.71,23.61,23.44,N/A,N/A +2013,8,18,12,30,94360,93280,92230,61.31,0,0.39,1.07,1.56,2.36,3.15,3.91,4.57,5.22,6.36,294.71,207.35,170.35,167.8,165.79,164.18,163.12,162.21,161.77,23.81,23.92,23.81,23.68,23.56,23.45,23.34,23.25,23.080000000000002,N/A,N/A +2013,8,18,13,30,94420,93330,92280,55.1,0,1.69,2.27,2.5,2.68,2.83,2.95,3.08,3.2,3.68,160.15,161.88,162.70000000000002,163.45000000000002,164.14000000000001,164.76,165.43,166.07,168.04,24.87,24.48,24.29,24.1,23.91,23.740000000000002,23.55,23.38,23.02,N/A,N/A +2013,8,18,14,30,94410,93330,92290,50.32,0,3.02,3.71,3.91,4,4.0600000000000005,4.1,4.12,4.14,4.17,141.06,143.02,144.17000000000002,145.23,146.23,147.18,148.20000000000002,149.15,151.39000000000001,26.28,25.73,25.51,25.29,25.09,24.900000000000002,24.7,24.52,24.150000000000002,N/A,N/A +2013,8,18,15,30,94380,93310,92270,42.49,0,4.05,5.03,5.33,5.48,5.59,5.66,5.71,5.74,5.79,162.5,162.95000000000002,163.17000000000002,163.34,163.51,163.68,163.86,164.03,164.42000000000002,28.64,27.97,27.71,27.46,27.25,27.04,26.830000000000002,26.64,26.25,N/A,N/A +2013,8,18,16,30,94350,93280,92250,36.480000000000004,0,4.39,5.42,5.72,5.88,5.98,6.05,6.1000000000000005,6.140000000000001,6.19,171.41,171.82,172.05,172.25,172.43,172.59,172.77,172.92000000000002,173.27,30.55,29.810000000000002,29.52,29.27,29.03,28.810000000000002,28.59,28.39,27.990000000000002,N/A,N/A +2013,8,18,17,30,94330,93270,92250,32.4,0,4.64,5.69,5.98,6.140000000000001,6.24,6.3100000000000005,6.3500000000000005,6.390000000000001,6.42,173.33,173.23,173.15,173.1,173.07,173.05,173.04,173.03,173.05,32,31.23,30.93,30.66,30.41,30.19,29.96,29.75,29.34,N/A,N/A +2013,8,18,18,30,94300,93240,92220,29.22,0,4.65,5.63,5.88,6.01,6.09,6.140000000000001,6.18,6.2,6.22,190.85,188.99,187.93,187.01,186.24,185.55,184.92000000000002,184.34,183.28,33.02,32.24,31.94,31.66,31.41,31.18,30.95,30.740000000000002,30.32,N/A,N/A +2013,8,18,19,30,94270,93220,92200,26.89,0,3.86,4.59,4.74,4.79,4.8,4.8,4.79,4.7700000000000005,4.72,196.89000000000001,195.4,194.54,193.9,193.36,192.85,192.39000000000001,191.96,191.16,33.76,33.02,32.72,32.45,32.22,31.990000000000002,31.77,31.560000000000002,31.150000000000002,N/A,N/A +2013,8,18,20,30,94210,93160,92140,25.97,0,3.45,4.11,4.25,4.29,4.3100000000000005,4.32,4.3100000000000005,4.3,4.2700000000000005,191.21,189.51,188.76,188.33,187.97,187.65,187.34,187.06,186.54,34.31,33.59,33.3,33.04,32.81,32.59,32.37,32.160000000000004,31.75,N/A,N/A +2013,8,18,21,30,94130,93080,92070,25.23,0,3.34,4.09,4.3,4.44,4.54,4.61,4.67,4.72,4.79,178.93,176.91,175.98,175.33,174.82,174.42000000000002,174.07,173.78,173.28,35,34.300000000000004,34.02,33.75,33.51,33.28,33.06,32.84,32.42,N/A,N/A +2013,8,18,22,30,94070,93020,92010,25.14,0,4.3500000000000005,5.37,5.62,5.76,5.8500000000000005,5.91,5.95,5.98,6.0200000000000005,171.5,170.82,170.69,170.65,170.63,170.64000000000001,170.67000000000002,170.69,170.77,35.1,34.4,34.14,33.88,33.65,33.43,33.21,33,32.59,N/A,N/A +2013,8,18,23,30,94040,93000,91980,28.36,0,6.640000000000001,8.620000000000001,9.09,9.42,9.65,9.82,9.950000000000001,10.05,10.19,133,133.53,134.08,134.56,134.97,135.31,135.64000000000001,135.93,136.48,34.36,33.88,33.65,33.43,33.2,32.99,32.77,32.57,32.160000000000004,N/A,N/A +2013,8,19,0,30,94270,93190,92150,45.93,1.8,7.75,9.8,9.9,9.31,8.51,7.72,6.91,6.25,5.46,267.86,263.76,260.72,256.51,252.03,247.98000000000002,241.43,235.59,223.85,25.830000000000002,26.25,26.490000000000002,26.64,26.650000000000002,26.61,26.650000000000002,26.7,26.98,N/A,N/A +2013,8,19,1,30,94100,93040,92020,40.42,0,1.99,2.88,3.23,3.63,4,4.34,4.57,4.74,5.01,124.89,133.69,138.96,143,145.88,147.95000000000002,149.20000000000002,150.13,151.98,29.740000000000002,29.69,29.73,29.85,30,30.17,30.25,30.29,30.13,N/A,N/A +2013,8,19,2,30,94190,93130,92100,38.56,0,2.61,4.39,4.99,5.51,6.01,6.51,7.04,7.57,8.620000000000001,119.10000000000001,120.75,121.81,122.85000000000001,123.96000000000001,125.16,126.17,127.07000000000001,128.34,29.86,30.060000000000002,30.080000000000002,30.04,29.96,29.85,29.72,29.580000000000002,29.240000000000002,N/A,N/A +2013,8,19,3,30,94190,93130,92100,41.58,0,5.12,7.46,8.22,8.85,9.39,9.86,10.32,10.74,11.55,140.82,141.37,141.6,141.84,142.13,142.46,142.88,143.3,144.43,29.18,29.13,29.05,28.93,28.8,28.68,28.54,28.42,28.16,N/A,N/A +2013,8,19,4,30,94180,93110,92080,42.61,0,4.67,7.04,7.82,8.47,9.040000000000001,9.56,10.07,10.540000000000001,11.52,149.34,150.97,151.96,152.91,153.92000000000002,154.95000000000002,156.14000000000001,157.31,159.89000000000001,28.85,28.900000000000002,28.87,28.810000000000002,28.740000000000002,28.67,28.59,28.52,28.37,N/A,N/A +2013,8,19,5,30,94230,93160,92130,43.01,0,4.03,6.48,7.41,8.27,9.05,9.77,10.44,11.07,12.16,156.42000000000002,158.68,160.11,161.38,162.5,163.52,164.46,165.33,166.9,28.53,28.72,28.740000000000002,28.73,28.69,28.63,28.54,28.45,28.22,N/A,N/A +2013,8,19,6,30,94280,93210,92170,43.9,0,4.41,6.96,7.88,8.71,9.43,10.07,10.66,11.19,12.11,166.21,167.83,168.77,169.63,170.44,171.21,171.95000000000002,172.64000000000001,173.9,28.150000000000002,28.3,28.3,28.26,28.2,28.12,28.02,27.92,27.650000000000002,N/A,N/A +2013,8,19,7,30,94290,93220,92180,47.63,0,3.54,5.78,6.53,7.22,7.82,8.35,8.85,9.3,10.14,154.94,159.39000000000001,162.02,164.29,166.27,168.05,169.53,170.85,172.6,27.28,27.48,27.490000000000002,27.48,27.44,27.39,27.310000000000002,27.22,26.98,N/A,N/A +2013,8,19,8,30,94290,93210,92170,52.18,0,2.75,5.04,5.8500000000000005,6.67,7.45,8.19,8.91,9.6,10.88,148.76,156.76,161.21,164.4,166.78,168.65,169.89000000000001,170.93,171.97,26.27,26.64,26.7,26.73,26.740000000000002,26.72,26.67,26.61,26.43,N/A,N/A +2013,8,19,9,30,94300,93220,92180,58.06,0,2.3000000000000003,4.45,5.15,5.87,6.53,7.17,7.82,8.44,9.68,137.95000000000002,146.01,150.59,153.94,156.65,158.97,160.91,162.68,165.3,25.13,25.61,25.69,25.740000000000002,25.78,25.8,25.79,25.78,25.69,N/A,N/A +2013,8,19,10,30,94270,93190,92150,62.5,0,2.12,4.44,5.28,6.09,6.83,7.53,8.16,8.74,9.74,141.87,148.43,152.20000000000002,154.75,156.93,158.88,160.75,162.53,166.01,24.23,24.8,24.900000000000002,24.97,25.01,25.03,25.03,25.02,24.96,N/A,N/A +2013,8,19,11,30,94320,93240,92190,60.120000000000005,0,2.9,5.16,5.97,6.75,7.44,8.07,8.67,9.23,10.21,134.02,142.55,147.11,150.09,152.48,154.51,156.62,158.65,163.04,23.830000000000002,24.25,24.36,24.42,24.44,24.45,24.44,24.44,24.42,N/A,N/A +2013,8,19,12,30,94310,93220,92170,57.84,0,3.79,6.22,7.1000000000000005,7.86,8.53,9.120000000000001,9.65,10.120000000000001,10.9,138.75,141.68,143.33,144.65,146.06,147.47,149.28,151.06,155.77,23.47,23.68,23.73,23.75,23.78,23.8,23.830000000000002,23.86,23.990000000000002,N/A,N/A +2013,8,19,13,30,94330,93240,92190,50.050000000000004,0,3.5300000000000002,4.59,4.95,5.25,5.5,5.73,6.22,6.75,7.88,152.07,153.13,153.70000000000002,154.26,154.85,155.43,156.66,158,160.97,24.87,24.53,24.37,24.2,24.03,23.87,23.72,23.6,23.53,N/A,N/A +2013,8,19,14,30,94350,93270,92230,42.09,0,4.76,5.95,6.2700000000000005,6.45,6.5600000000000005,6.63,6.67,6.7,6.7700000000000005,160.06,160.58,160.87,161.12,161.38,161.63,161.9,162.16,162.82,26.830000000000002,26.29,26.07,25.85,25.650000000000002,25.45,25.26,25.080000000000002,24.71,N/A,N/A +2013,8,19,15,30,94340,93270,92230,35.99,0,5.08,6.36,6.72,6.92,7.05,7.13,7.19,7.23,7.28,167.94,168.05,168.1,168.15,168.19,168.23,168.27,168.31,168.41,28.810000000000002,28.150000000000002,27.89,27.650000000000002,27.43,27.22,27.01,26.82,26.42,N/A,N/A +2013,8,19,16,30,94350,93280,92250,31.62,0,5.42,6.7700000000000005,7.140000000000001,7.36,7.5,7.6000000000000005,7.67,7.72,7.79,176.29,176.03,175.9,175.78,175.68,175.59,175.51,175.44,175.3,30.54,29.79,29.51,29.25,29.01,28.79,28.57,28.37,27.95,N/A,N/A +2013,8,19,17,30,94340,93280,92250,29.38,0,5.75,7.11,7.47,7.67,7.8,7.890000000000001,7.94,7.98,8.02,173.83,173.5,173.3,173.14000000000001,173,172.88,172.76,172.66,172.46,31.68,30.89,30.59,30.310000000000002,30.07,29.84,29.61,29.400000000000002,28.98,N/A,N/A +2013,8,19,18,30,94280,93230,92200,27.650000000000002,0,5.24,6.44,6.7700000000000005,6.95,7.08,7.16,7.21,7.25,7.3,179.29,178.71,178.38,178.1,177.86,177.65,177.46,177.29,176.96,32.62,31.82,31.51,31.23,30.98,30.75,30.52,30.310000000000002,29.88,N/A,N/A +2013,8,19,19,30,94220,93170,92150,26.03,0,4.95,6.08,6.38,6.55,6.66,6.74,6.79,6.83,6.87,177.57,176.88,176.49,176.15,175.87,175.63,175.4,175.18,174.79,33.45,32.660000000000004,32.36,32.08,31.830000000000002,31.59,31.37,31.150000000000002,30.73,N/A,N/A +2013,8,19,20,30,94180,93130,92110,25.51,0,4.99,6.12,6.45,6.63,6.76,6.8500000000000005,6.91,6.96,7.03,174.66,173.95000000000002,173.59,173.27,173,172.75,172.53,172.33,171.94,34.02,33.24,32.94,32.660000000000004,32.42,32.18,31.95,31.73,31.310000000000002,N/A,N/A +2013,8,19,21,30,94110,93060,92040,25.46,0,4.86,5.96,6.25,6.41,6.51,6.58,6.63,6.66,6.7,164.83,164.81,164.79,164.75,164.71,164.66,164.6,164.55,164.44,34.25,33.5,33.21,32.94,32.7,32.480000000000004,32.25,32.04,31.62,N/A,N/A +2013,8,19,22,30,94060,93010,91990,25.68,0,4.75,5.8500000000000005,6.13,6.28,6.38,6.44,6.48,6.51,6.54,151.29,151.92000000000002,152.22,152.42000000000002,152.59,152.73,152.85,152.96,153.15,34.230000000000004,33.54,33.28,33.02,32.79,32.57,32.35,32.15,31.73,N/A,N/A +2013,8,19,23,30,94020,92970,91950,27.13,0,5.1000000000000005,6.36,6.69,6.87,6.99,7.07,7.13,7.17,7.23,163.25,162.92000000000002,162.71,162.51,162.33,162.17000000000002,162.03,161.89000000000001,161.64000000000001,33.9,33.29,33.06,32.82,32.6,32.39,32.17,31.970000000000002,31.57,N/A,N/A +2013,8,20,0,30,94000,92950,91940,29.47,0,5.73,7.29,7.69,7.92,8.07,8.18,8.25,8.31,8.38,157.94,158.13,158.26,158.37,158.48,158.57,158.67000000000002,158.77,158.97,33.17,32.74,32.54,32.33,32.12,31.92,31.71,31.52,31.12,N/A,N/A +2013,8,20,1,30,94080,93010,91980,52.78,23.8,3.7600000000000002,5.57,6.16,6.640000000000001,6.97,7.25,7.46,7.66,7.930000000000001,160.82,158.38,158.07,158.71,159.76,160.8,161.1,161.25,160.34,27.03,26.94,26.94,26.96,26.95,26.93,26.88,26.82,26.63,N/A,N/A +2013,8,20,2,30,94090,93030,92000,41.15,0,1.16,2.16,2.66,3.18,3.64,4.0600000000000005,4.43,4.76,5.29,126.74000000000001,139.45000000000002,146.73,149.74,151.21,151.69,151.65,151.46,151.12,29.92,29.88,29.86,29.830000000000002,29.79,29.740000000000002,29.66,29.580000000000002,29.330000000000002,N/A,N/A +2013,8,20,3,30,94100,93030,92000,46.300000000000004,0,1.3,2.07,2.4,2.97,3.56,4.19,4.8100000000000005,5.43,6.5200000000000005,116.35000000000001,128.15,136.53,147.14000000000001,153.87,157.79,160.19,162.08,164.04,28.36,28.64,28.8,28.990000000000002,29.07,29.09,29.05,28.990000000000002,28.77,N/A,N/A +2013,8,20,4,30,94130,93060,92030,37.37,0,3.92,6.19,6.91,7.5600000000000005,8.13,8.66,9.15,9.61,10.43,161.83,163.94,165.03,165.85,166.38,166.73,166.89000000000001,166.99,167.02,29.21,29.3,29.25,29.150000000000002,29.03,28.89,28.73,28.580000000000002,28.23,N/A,N/A +2013,8,20,5,30,94130,93060,92030,37.71,0,5.13,7.71,8.59,9.370000000000001,10.06,10.69,11.28,11.83,12.8,167.72,168.72,169.36,169.95000000000002,170.41,170.78,171.01,171.18,171.21,28.42,28.47,28.42,28.330000000000002,28.23,28.12,27.98,27.85,27.560000000000002,N/A,N/A +2013,8,20,6,30,94150,93080,92050,38.85,0,5.53,8.21,9.11,9.9,10.59,11.21,11.8,12.35,13.34,169.06,170.04,170.62,171.13,171.55,171.91,172.20000000000002,172.45000000000002,172.85,27.69,27.73,27.68,27.6,27.5,27.41,27.29,27.18,26.92,N/A,N/A +2013,8,20,7,30,94220,93150,92110,40.910000000000004,0,4.71,7.08,7.87,8.56,9.17,9.72,10.26,10.76,11.84,172.58,173.43,173.98,174.51,174.92000000000002,175.28,175.45000000000002,175.59,175.44,26.89,26.94,26.88,26.79,26.69,26.59,26.47,26.35,26.1,N/A,N/A +2013,8,20,8,30,94240,93170,92120,42.4,0,4,6.34,7.17,7.930000000000001,8.59,9.200000000000001,9.790000000000001,10.33,11.34,162.07,164.93,166.70000000000002,168.09,169.19,170.12,170.8,171.38,172.01,26.07,26.16,26.13,26.060000000000002,25.990000000000002,25.91,25.82,25.740000000000002,25.54,N/A,N/A +2013,8,20,9,30,94300,93220,92170,45.79,0,1.97,2.82,2.84,3,3.37,3.88,4.53,5.23,6.68,62.59,80.09,93.06,110.57000000000001,123.74000000000001,135.19,142.66,149.15,156.15,24.7,24.96,24.91,24.84,24.78,24.73,24.68,24.64,24.52,N/A,N/A +2013,8,20,10,30,94310,93220,92180,44.18,0,2.43,3.2800000000000002,3.2,3.13,3.17,3.24,3.45,3.68,4.46,56.2,74.61,86.57000000000001,99.14,110.9,121.78,129.75,136.8,148.59,24.35,24.77,24.830000000000002,24.830000000000002,24.77,24.69,24.57,24.44,24.2,N/A,N/A +2013,8,20,11,30,94320,93230,92180,42.68,0,2.14,3.95,4.13,3.99,4.09,4.3100000000000005,4.53,4.74,5.2,84.33,105.93,118.34,128.16,134.98,140.45000000000002,146.03,151.12,158.55,24,24.55,24.47,24.23,24.05,23.92,23.8,23.71,23.53,N/A,N/A +2013,8,20,12,30,94330,93240,92180,41.72,0,1.96,4.17,5,5.75,6.44,7.1000000000000005,7.68,8.19,8.69,142.27,147.04,149.84,151.98,153.93,155.74,157.75,159.75,164.57,22.73,23.18,23.23,23.240000000000002,23.23,23.21,23.2,23.19,23.16,N/A,N/A +2013,8,20,13,30,94340,93250,92200,33.33,0,4.07,5.23,5.58,5.87,6.12,6.36,6.76,7.18,8.120000000000001,139.96,141.79,142.91,144.02,145.08,146.07,147.66,149.26,153.02,24.16,23.82,23.66,23.490000000000002,23.32,23.17,23.02,22.89,22.76,N/A,N/A +2013,8,20,14,30,94350,93260,92210,34.87,0,3.61,4.51,4.76,4.9,4.98,5.04,5.08,5.11,5.2,153.96,154.94,155.41,155.81,156.22,156.61,157.07,157.49,158.59,25.650000000000002,25.13,24.91,24.7,24.5,24.32,24.13,23.95,23.59,N/A,N/A +2013,8,20,15,30,94340,93260,92210,30.66,0,5.23,6.54,6.890000000000001,7.09,7.21,7.29,7.33,7.37,7.4,161.21,161.55,161.75,161.89000000000001,162.04,162.17000000000002,162.31,162.43,162.75,27.68,27.03,26.78,26.55,26.330000000000002,26.13,25.92,25.740000000000002,25.35,N/A,N/A +2013,8,20,16,30,94370,93300,92260,27.67,0,4.68,5.84,6.18,6.37,6.49,6.59,6.65,6.7,6.7700000000000005,172.81,172.67000000000002,172.57,172.49,172.42000000000002,172.37,172.33,172.28,172.21,29.34,28.63,28.36,28.1,27.87,27.650000000000002,27.43,27.23,26.82,N/A,N/A +2013,8,20,17,30,94320,93250,92220,26.72,0,4.36,5.39,5.68,5.84,5.95,6.03,6.08,6.13,6.19,171.85,171.4,171.19,170.99,170.8,170.63,170.46,170.3,170,30.45,29.71,29.42,29.16,28.91,28.69,28.47,28.26,27.84,N/A,N/A +2013,8,20,18,30,94260,93200,92170,29.16,0,4.62,5.69,5.98,6.140000000000001,6.25,6.32,6.38,6.42,6.47,162.12,162.09,162.04,161.95000000000002,161.87,161.78,161.69,161.61,161.43,31.28,30.51,30.21,29.94,29.69,29.46,29.240000000000002,29.03,28.6,N/A,N/A +2013,8,20,19,30,94220,93160,92130,28.900000000000002,0,4.14,5.08,5.32,5.45,5.54,5.6000000000000005,5.64,5.68,5.72,156.20000000000002,156.42000000000002,156.52,156.56,156.58,156.58,156.58,156.58,156.57,32,31.25,30.95,30.68,30.44,30.21,29.98,29.77,29.35,N/A,N/A +2013,8,20,20,30,94160,93110,92080,28.84,0,4.17,5.11,5.38,5.5200000000000005,5.62,5.7,5.75,5.79,5.8500000000000005,145.06,145.28,145.42000000000002,145.5,145.56,145.58,145.61,145.62,145.64000000000001,32.61,31.87,31.57,31.3,31.060000000000002,30.830000000000002,30.6,30.39,29.96,N/A,N/A +2013,8,20,21,30,94130,93070,92050,27.7,0,4.25,5.2,5.45,5.58,5.67,5.73,5.78,5.8100000000000005,5.8500000000000005,134.16,134.36,134.47,134.52,134.55,134.58,134.6,134.63,134.65,33.01,32.28,32,31.740000000000002,31.51,31.28,31.060000000000002,30.85,30.43,N/A,N/A +2013,8,20,22,30,94100,93040,92020,28.3,0,4.3500000000000005,5.38,5.65,5.79,5.88,5.95,5.99,6.0200000000000005,6.0600000000000005,134.91,134.84,134.71,134.54,134.38,134.22,134.06,133.92000000000002,133.63,33.04,32.36,32.1,31.85,31.62,31.41,31.19,30.98,30.57,N/A,N/A +2013,8,20,23,30,94070,93020,92000,27.37,0,4.67,5.83,6.140000000000001,6.3100000000000005,6.41,6.49,6.54,6.58,6.61,124.51,124.4,124.43,124.46000000000001,124.47,124.47,124.48,124.49000000000001,124.51,33.05,32.46,32.230000000000004,31.990000000000002,31.77,31.560000000000002,31.34,31.14,30.740000000000002,N/A,N/A +2013,8,21,0,30,94070,93020,92000,27.93,0,4.9,6.18,6.48,6.62,6.71,6.76,6.78,6.8,6.79,130.77,131.6,131.8,131.82,131.79,131.71,131.6,131.48,131.18,32.5,32.09,31.900000000000002,31.69,31.48,31.29,31.080000000000002,30.89,30.5,N/A,N/A +2013,8,21,1,30,94050,93000,91970,29.02,0,3.34,5.09,5.62,6,6.29,6.51,6.67,6.8,6.97,168.76,167.51,166.57,165.45000000000002,164.39000000000001,163.38,162.45000000000002,161.61,160.16,31.5,31.44,31.34,31.2,31.04,30.88,30.7,30.53,30.16,N/A,N/A +2013,8,21,2,30,94080,93020,91990,29.12,0,3.02,4.97,5.55,5.96,6.25,6.44,6.6000000000000005,6.74,7.03,159.14000000000001,159.29,159.65,160.46,161.33,162.21,162.67000000000002,162.97,162.32,30.55,30.71,30.7,30.64,30.54,30.42,30.26,30.1,29.75,N/A,N/A +2013,8,21,3,30,94160,93100,92070,28.41,0,5.67,8.28,9.200000000000001,10.03,10.78,11.47,12.07,12.59,13.36,163.23,163.37,163.45000000000002,163.43,163.34,163.21,162.98,162.72,161.97,29.580000000000002,29.54,29.47,29.36,29.240000000000002,29.12,28.98,28.84,28.47,N/A,N/A +2013,8,21,4,30,94200,93130,92090,42.07,0,4.94,7.01,7.67,8.21,8.69,9.13,9.53,9.91,10.620000000000001,150.83,151.11,151.25,151.3,151.39000000000001,151.49,151.73,151.97,152.91,27.53,27.38,27.25,27.1,26.92,26.75,26.54,26.34,25.87,N/A,N/A +2013,8,21,5,30,94220,93140,92100,59.26,0,4.44,6.34,6.98,7.53,8,8.4,8.8,9.16,9.85,150.51,152.18,153.20000000000002,154.14000000000001,155,155.79,156.57,157.3,158.70000000000002,26.05,25.85,25.71,25.55,25.37,25.21,25.03,24.86,24.490000000000002,N/A,N/A +2013,8,21,6,30,94270,93190,92140,64.22,0,4.3,6.19,6.82,7.3500000000000005,7.79,8.17,8.51,8.81,9.34,142.18,144.25,145.54,146.79,148.02,149.21,150.47,151.65,154.13,25.28,25.11,24.98,24.830000000000002,24.68,24.53,24.36,24.21,23.88,N/A,N/A +2013,8,21,7,30,94340,93260,92210,68.59,0,3.89,5.7700000000000005,6.44,7.03,7.5200000000000005,7.95,8.34,8.700000000000001,9.33,145.01,147.36,148.84,150.22,151.52,152.74,153.96,155.09,157.27,24.66,24.5,24.39,24.25,24.11,23.97,23.81,23.67,23.36,N/A,N/A +2013,8,21,8,30,94330,93250,92200,71.49,0,2.69,4.49,5.19,5.8100000000000005,6.36,6.84,7.29,7.71,8.44,139.62,142.35,144.02,145.46,146.94,148.42000000000002,150.11,151.74,155.29,23.75,23.63,23.52,23.400000000000002,23.26,23.13,22.97,22.830000000000002,22.52,N/A,N/A +2013,8,21,9,30,94380,93290,92240,77.24,0,3.38,5.26,5.98,6.61,7.17,7.66,8.120000000000001,8.540000000000001,9.28,139.72,142.27,143.82,145.06,146.24,147.35,148.48,149.54,151.72,23.19,23.05,22.94,22.81,22.67,22.54,22.38,22.240000000000002,21.93,N/A,N/A +2013,8,21,10,30,94370,93280,92230,84.3,0,2.08,3.92,4.7,5.39,5.99,6.5200000000000005,7,7.45,8.25,131.52,136.2,138.82,140.59,142.17000000000002,143.61,145.14000000000001,146.61,149.79,22.47,22.38,22.27,22.150000000000002,22.02,21.900000000000002,21.76,21.63,21.36,N/A,N/A +2013,8,21,11,30,94410,93320,92260,89.48,0,1.03,2.79,3.67,4.44,5.09,5.67,6.19,6.66,7.45,137.37,140.37,142.13,142.96,143.81,144.64000000000001,145.83,147.06,150.28,21.81,21.78,21.67,21.55,21.43,21.3,21.17,21.05,20.81,N/A,N/A +2013,8,21,12,30,94460,93370,92310,89.79,0,0.89,2.54,3.45,4.19,4.8,5.33,5.8100000000000005,6.25,7.0200000000000005,136.12,141.28,144.29,145.05,145.76,146.42000000000002,147.51,148.66,151.91,21.43,21.36,21.240000000000002,21.09,20.94,20.79,20.63,20.490000000000002,20.2,N/A,N/A +2013,8,21,13,30,94500,93410,92350,82.06,0,3.59,4.58,4.87,5.05,5.17,5.2700000000000005,5.3500000000000005,5.42,5.62,148.4,149.28,149.8,150.24,150.69,151.12,151.63,152.13,153.42000000000002,22.1,21.67,21.47,21.28,21.080000000000002,20.900000000000002,20.7,20.52,20.16,N/A,N/A +2013,8,21,14,30,94500,93410,92360,74.27,0,2.84,3.5500000000000003,3.77,3.88,3.96,4,4.03,4.0600000000000005,4.08,154.62,155.54,156.08,156.52,156.92000000000002,157.27,157.66,158.02,158.85,23.53,22.990000000000002,22.76,22.55,22.34,22.150000000000002,21.95,21.77,21.39,N/A,N/A +2013,8,21,15,30,94480,93400,92350,64.27,0,2.7800000000000002,3.45,3.63,3.73,3.8000000000000003,3.85,3.88,3.9,3.93,156.08,156.59,156.9,157.14000000000001,157.35,157.54,157.72,157.89000000000001,158.24,25.45,24.84,24.59,24.36,24.14,23.94,23.73,23.54,23.150000000000002,N/A,N/A +2013,8,21,16,30,94470,93400,92350,53.9,0,2.91,3.56,3.73,3.8200000000000003,3.88,3.92,3.95,3.98,4,145.23,145.82,146.16,146.36,146.53,146.66,146.76,146.85,146.99,27.32,26.66,26.38,26.13,25.91,25.69,25.48,25.28,24.88,N/A,N/A +2013,8,21,17,30,94460,93390,92350,42.35,0,3.04,3.7,3.87,3.97,4.04,4.09,4.12,4.15,4.19,138.69,138.94,139.14000000000001,139.23,139.28,139.31,139.32,139.32,139.26,28.98,28.29,28.01,27.75,27.51,27.29,27.07,26.87,26.45,N/A,N/A +2013,8,21,18,30,94370,93300,92270,32.15,0,3.16,3.85,4.04,4.15,4.22,4.28,4.32,4.36,4.41,122.24000000000001,122.85000000000001,123.19,123.42,123.60000000000001,123.75,123.89,124.01,124.22,30.3,29.6,29.310000000000002,29.05,28.8,28.580000000000002,28.36,28.150000000000002,27.73,N/A,N/A +2013,8,21,19,30,94320,93260,92230,35.89,0,2.7600000000000002,3.3200000000000003,3.45,3.52,3.56,3.59,3.61,3.63,3.65,111.61,112.97,113.65,114.17,114.61,114.99000000000001,115.35000000000001,115.68,116.28,30.86,30.17,29.87,29.61,29.37,29.150000000000002,28.92,28.72,28.3,N/A,N/A +2013,8,21,20,30,94250,93190,92160,37.85,0,2.73,3.39,3.58,3.72,3.81,3.89,3.96,4.01,4.1,167.06,164.14000000000001,162.76,161.65,160.72,159.92000000000002,159.18,158.52,157.36,31.310000000000002,30.63,30.34,30.07,29.830000000000002,29.6,29.38,29.17,28.75,N/A,N/A +2013,8,21,21,30,94210,93150,92130,34.910000000000004,0,1.84,2.25,2.36,2.44,2.5,2.5500000000000003,2.59,2.63,2.7,155.37,152.44,150.13,148.05,146.25,144.64000000000001,143.11,141.71,139.17000000000002,31.98,31.35,31.080000000000002,30.82,30.59,30.37,30.150000000000002,29.94,29.52,N/A,N/A +2013,8,21,22,30,94240,93180,92150,40.06,0,7.45,9.23,9.69,9.92,10.06,10.13,10.17,10.18,10.16,101.06,101.96000000000001,102.65,103.34,103.97,104.59,105.23,105.82000000000001,107.06,30.43,29.66,29.38,29.12,28.900000000000002,28.68,28.47,28.28,27.89,N/A,N/A +2013,8,21,23,30,94230,93160,92130,48.52,0,8.120000000000001,9.870000000000001,10.22,10.31,10.32,10.290000000000001,10.26,10.23,10.200000000000001,182.42000000000002,181.82,181.32,180.66,179.81,178.82,177.39000000000001,175.96,172.25,27.75,27.2,27.02,26.89,26.79,26.71,26.650000000000002,26.6,26.51,N/A,N/A +2013,8,22,0,30,94220,93150,92120,44.08,0,4.86,6.11,6.41,6.58,6.67,6.73,6.76,6.78,6.7700000000000005,157.02,156.71,156.5,156.3,156.13,155.96,155.8,155.65,155.38,28.43,27.98,27.77,27.560000000000002,27.36,27.16,26.96,26.77,26.38,N/A,N/A +2013,8,22,1,30,94270,93200,92160,50.56,0,6.41,8.23,8.700000000000001,8.99,9.19,9.34,9.450000000000001,9.540000000000001,9.67,158.07,158.31,158.45000000000002,158.56,158.65,158.74,158.83,158.92000000000002,159.09,27.7,27.37,27.2,26.990000000000002,26.8,26.6,26.400000000000002,26.21,25.82,N/A,N/A +2013,8,22,2,30,94290,93210,92160,59.660000000000004,0,5.91,8.290000000000001,9.05,9.51,9.92,10.290000000000001,10.89,11.49,12.23,157.1,158.16,158.64000000000001,158.91,159.09,159.23,159.21,159.16,158.31,25.41,25.150000000000002,25.01,24.830000000000002,24.67,24.53,24.54,24.59,24.61,N/A,N/A +2013,8,22,3,30,94290,93210,92170,55.480000000000004,0,4.49,6.13,6.62,7.04,7.390000000000001,7.7,7.99,8.26,8.790000000000001,160.98,161.44,161.73,161.89000000000001,161.98,162,161.97,161.92000000000002,161.70000000000002,26.43,26.240000000000002,26.13,26.02,25.92,25.84,25.76,25.69,25.580000000000002,N/A,N/A +2013,8,22,4,30,94360,93280,92240,58.08,0,5.4,7.34,7.930000000000001,8.39,8.76,9.09,9.39,9.67,10.200000000000001,148.29,148.66,148.87,149.01,149.15,149.31,149.5,149.67000000000002,150.12,25.87,25.61,25.45,25.27,25.09,24.92,24.73,24.55,24.18,N/A,N/A +2013,8,22,5,30,94350,93270,92220,65.85,0,5.5,7.45,8.05,8.51,8.9,9.24,9.55,9.83,10.36,143.43,144.02,144.42000000000002,144.76,145.12,145.47,145.89000000000001,146.29,147.33,25.01,24.740000000000002,24.57,24.39,24.2,24.02,23.82,23.63,23.25,N/A,N/A +2013,8,22,6,30,94420,93330,92290,67.69,0,5.32,7.25,7.86,8.34,8.74,9.07,9.39,9.68,10.22,153.84,154.85,155.47,156.03,156.54,157,157.47,157.91,158.71,24.580000000000002,24.34,24.19,24.03,23.85,23.69,23.52,23.36,23.03,N/A,N/A +2013,8,22,7,30,94420,93340,92280,70.9,0,3.84,5.5200000000000005,6.11,6.6000000000000005,7.01,7.37,7.7,8,8.55,146.97,148.84,149.89000000000001,150.72,151.41,152.01,152.52,152.97,153.73,24.02,23.8,23.650000000000002,23.5,23.34,23.18,23.02,22.87,22.56,N/A,N/A +2013,8,22,8,30,94470,93380,92330,75.85000000000001,0,1.3,2.73,3.34,3.87,4.3100000000000005,4.71,5.08,5.43,6.13,139.91,143.15,144.99,146.01,146.93,147.77,148.70000000000002,149.62,151.74,23.400000000000002,23.25,23.12,22.97,22.82,22.67,22.51,22.37,22.05,N/A,N/A +2013,8,22,9,30,94470,93380,92320,79.46000000000001,0,1.36,2.85,3.48,4.05,4.59,5.11,5.64,6.16,7.22,109.72,121.64,128.51,133.12,136.8,139.92000000000002,142.5,144.88,148.83,22.830000000000002,22.75,22.650000000000002,22.52,22.38,22.25,22.1,21.96,21.68,N/A,N/A +2013,8,22,10,30,94450,93360,92300,79.95,0,2.2,3.89,4.57,5.19,5.73,6.21,6.67,7.1000000000000005,7.930000000000001,128.37,132.25,134.48,136.27,138.02,139.68,141.49,143.23,146.9,22.39,22.25,22.14,22.01,21.87,21.740000000000002,21.6,21.47,21.23,N/A,N/A +2013,8,22,11,30,94480,93390,92330,82.38,0,3.5300000000000002,5.28,5.91,6.45,6.92,7.33,7.71,8.05,8.68,132.72,134.37,135.43,136.43,137.56,138.72,140.21,141.66,145.42000000000002,21.98,21.81,21.69,21.55,21.41,21.28,21.150000000000002,21.03,20.82,N/A,N/A +2013,8,22,12,30,94490,93400,92340,84.41,0,3.11,4.8,5.45,6,6.47,6.890000000000001,7.28,7.63,8.290000000000001,132.54,134.42000000000002,135.62,136.76,138.03,139.32,140.99,142.65,146.72,21.56,21.39,21.28,21.14,21.01,20.88,20.76,20.66,20.490000000000002,N/A,N/A +2013,8,22,13,30,94520,93420,92370,78.58,0,4.24,5.34,5.65,5.83,5.97,6.09,6.21,6.34,6.86,135.07,136.25,136.95000000000002,137.59,138.28,138.98,139.93,140.86,143.9,22.35,21.92,21.73,21.54,21.36,21.18,21.01,20.85,20.55,N/A,N/A +2013,8,22,14,30,94540,93460,92400,68.37,0,4.1,5.14,5.44,5.6000000000000005,5.71,5.79,5.84,5.88,5.93,149.8,150.54,150.98,151.32,151.62,151.89000000000001,152.15,152.41,152.95000000000002,24.12,23.54,23.31,23.09,22.87,22.68,22.48,22.29,21.900000000000002,N/A,N/A +2013,8,22,15,30,94540,93460,92410,59.72,0,4.5,5.62,5.95,6.13,6.25,6.33,6.390000000000001,6.43,6.48,148.75,149.24,149.47,149.65,149.81,149.96,150.11,150.24,150.54,25.86,25.18,24.92,24.67,24.45,24.240000000000002,24.03,23.830000000000002,23.43,N/A,N/A +2013,8,22,16,30,94500,93420,92380,52.21,0,4.38,5.46,5.7700000000000005,5.95,6.07,6.16,6.22,6.2700000000000005,6.34,154.19,154.49,154.65,154.75,154.84,154.9,154.96,155.02,155.13,27.57,26.85,26.560000000000002,26.3,26.07,25.85,25.63,25.43,25.02,N/A,N/A +2013,8,22,17,30,94460,93390,92350,45.39,0,4.76,5.92,6.24,6.43,6.55,6.640000000000001,6.71,6.76,6.83,156.25,156.37,156.41,156.42000000000002,156.42000000000002,156.42000000000002,156.42000000000002,156.42000000000002,156.42000000000002,29.17,28.400000000000002,28.1,27.830000000000002,27.59,27.37,27.14,26.93,26.52,N/A,N/A +2013,8,22,18,30,94410,93350,92320,40.86,0,4.75,5.8500000000000005,6.16,6.33,6.45,6.53,6.59,6.63,6.7,160.92000000000002,160.8,160.74,160.65,160.56,160.48,160.39000000000001,160.31,160.14000000000001,30.41,29.62,29.310000000000002,29.04,28.79,28.560000000000002,28.330000000000002,28.12,27.7,N/A,N/A +2013,8,22,19,30,94340,93280,92260,37.58,0,4.92,6.08,6.4,6.58,6.71,6.8,6.86,6.91,6.99,158.27,158.13,158,157.87,157.76,157.65,157.56,157.47,157.29,31.41,30.62,30.32,30.04,29.79,29.560000000000002,29.330000000000002,29.12,28.69,N/A,N/A +2013,8,22,20,30,94260,93200,92180,34.42,0,4.78,5.89,6.2,6.37,6.49,6.57,6.63,6.67,6.74,156.47,156.46,156.43,156.36,156.29,156.21,156.14000000000001,156.07,155.92000000000002,32.14,31.37,31.07,30.79,30.55,30.32,30.1,29.89,29.46,N/A,N/A +2013,8,22,21,30,94170,93120,92100,33.19,0,4.5200000000000005,5.6000000000000005,5.91,6.09,6.22,6.3100000000000005,6.38,6.43,6.51,154.65,154.64000000000001,154.62,154.55,154.48,154.41,154.34,154.26,154.12,32.63,31.89,31.61,31.34,31.1,30.87,30.650000000000002,30.44,30.02,N/A,N/A +2013,8,22,22,30,94110,93060,92040,32.31,0,4.93,6.11,6.43,6.6000000000000005,6.73,6.8100000000000005,6.87,6.92,6.99,161.05,160.6,160.32,160.05,159.82,159.6,159.39000000000001,159.20000000000002,158.83,32.81,32.11,31.85,31.59,31.36,31.14,30.92,30.72,30.3,N/A,N/A +2013,8,22,23,30,94080,93030,92010,32.980000000000004,0,4.94,6.21,6.55,6.74,6.87,6.96,7.03,7.09,7.16,153.85,153.79,153.77,153.75,153.73,153.71,153.70000000000002,153.69,153.69,32.58,32.01,31.78,31.55,31.34,31.13,30.92,30.72,30.310000000000002,N/A,N/A +2013,8,23,0,30,94090,93030,92010,34.19,0,4.79,6.17,6.54,6.79,6.98,7.12,7.22,7.32,7.46,145.98,146.58,146.85,147.07,147.24,147.39000000000001,147.53,147.64000000000001,147.86,32.24,31.86,31.68,31.470000000000002,31.27,31.07,30.86,30.68,30.28,N/A,N/A +2013,8,23,1,30,94100,93040,92020,37.53,0,4.83,6.7700000000000005,7.3500000000000005,7.8,8.16,8.46,8.700000000000001,8.91,9.22,141.09,141.49,141.74,141.96,142.19,142.41,142.63,142.83,143.22,31.32,31.12,30.98,30.8,30.63,30.45,30.26,30.080000000000002,29.7,N/A,N/A +2013,8,23,2,30,94140,93080,92060,38.12,0,3.81,5.71,6.32,6.83,7.25,7.61,7.930000000000001,8.22,8.72,147.5,147.48,147.53,147.70000000000002,147.97,148.3,148.69,149.08,149.83,30.62,30.5,30.39,30.25,30.1,29.94,29.77,29.61,29.26,N/A,N/A +2013,8,23,3,30,94240,93170,92130,52.09,0,8.4,11.05,11.82,12.42,12.91,13.34,13.64,13.88,14.290000000000001,132.77,133.1,133.35,133.6,133.92000000000002,134.24,134.54,134.81,135.49,27.310000000000002,27,26.82,26.63,26.44,26.25,26.05,25.87,25.48,N/A,N/A +2013,8,23,4,30,94290,93210,92170,66.69,0,6.79,8.81,9.38,9.81,10.17,10.5,10.870000000000001,11.21,12.05,148.98,149.67000000000002,150.01,150.3,150.59,150.86,151.18,151.48,152.19,24.96,24.63,24.46,24.27,24.09,23.92,23.740000000000002,23.580000000000002,23.25,N/A,N/A +2013,8,23,5,30,94290,93210,92160,67.02,0,5.15,6.8100000000000005,7.33,7.75,8.11,8.43,8.78,9.1,9.6,168.67000000000002,169.5,169.95000000000002,170.38,170.79,171.18,171.64000000000001,172.07,172.8,24.39,24.07,23.900000000000002,23.71,23.51,23.330000000000002,23.14,22.96,22.59,N/A,N/A +2013,8,23,6,30,94320,93230,92180,67.67,0,1.57,2.67,3.18,3.63,4.0200000000000005,4.37,4.71,5.04,5.71,178.64000000000001,178.47,178.44,178.71,178.88,178.98,179.16,179.35,179.70000000000002,24.25,23.990000000000002,23.84,23.67,23.52,23.37,23.22,23.080000000000002,22.84,N/A,N/A +2013,8,23,7,30,94350,93270,92220,70.15,0,1.22,2.24,2.69,3.12,3.5,3.85,4.21,4.5600000000000005,5.28,143,148.44,151.69,154.3,156.53,158.49,160.13,161.61,163.76,24.080000000000002,23.86,23.72,23.57,23.42,23.27,23.13,22.990000000000002,22.72,N/A,N/A +2013,8,23,8,30,94340,93260,92210,71.83,0,0.79,1.76,2.17,2.58,2.98,3.4,3.84,4.28,5.26,83.58,105.4,117.61,125.94,132.31,137.51,141.8,145.82,152.41,23.81,23.71,23.6,23.48,23.36,23.240000000000002,23.12,23.01,22.8,N/A,N/A +2013,8,23,9,30,94320,93230,92180,74.33,0,0.43,1.68,2.5500000000000003,3.24,3.8200000000000003,4.32,4.79,5.24,6.16,156.63,150.79,147.38,146.9,147.25,148.06,149.76,151.6,156.25,23.52,23.47,23.39,23.3,23.2,23.1,23,22.900000000000002,22.71,N/A,N/A +2013,8,23,10,30,94330,93240,92190,77.23,0,0.58,1.94,2.7800000000000002,3.44,3.99,4.46,4.86,5.23,5.98,111.92,120.91,126.28,128.92000000000002,131.44,133.82,136.72,139.62,146.24,23.03,23.02,22.93,22.830000000000002,22.740000000000002,22.650000000000002,22.55,22.47,22.29,N/A,N/A +2013,8,23,11,30,94360,93270,92210,79.64,0,0.45,1.7,2.57,3.24,3.8200000000000003,4.3100000000000005,4.73,5.12,5.86,110.05,120.79,127.93,130.25,132.63,134.95,138.13,141.34,148.52,22.61,22.62,22.56,22.5,22.43,22.37,22.29,22.21,22.06,N/A,N/A +2013,8,23,12,30,94340,93250,92200,79.22,0,1.18,2.77,3.46,4.07,4.6000000000000005,5.08,5.57,6.04,7.03,123.79,127.99000000000001,130.93,133.65,137.06,140.78,145.11,149.35,156.76,22.21,22.35,22.330000000000002,22.31,22.28,22.25,22.22,22.19,22.14,N/A,N/A +2013,8,23,13,30,94380,93290,92240,70.06,0,2.09,2.69,2.95,3.23,3.62,4.1,4.5600000000000005,5,5.71,134.69,138.04,140.01,141.91,143.72,145.53,147.51,149.47,153.75,23.57,23.26,23.1,22.92,22.76,22.61,22.490000000000002,22.39,22.25,N/A,N/A +2013,8,23,14,30,94400,93310,92260,65.32000000000001,0,3.0500000000000003,3.8200000000000003,4.0600000000000005,4.2,4.29,4.36,4.41,4.46,4.54,145.95000000000002,147.1,147.70000000000002,148.18,148.63,149.05,149.5,149.92000000000002,150.9,25.12,24.580000000000002,24.35,24.14,23.93,23.740000000000002,23.54,23.36,22.98,N/A,N/A +2013,8,23,15,30,94430,93350,92310,62.31,0,3.8000000000000003,4.76,5.04,5.21,5.33,5.42,5.49,5.55,5.65,163.04,162.27,161.78,161.36,161.01,160.70000000000002,160.41,160.14000000000001,159.65,26.43,25.78,25.53,25.3,25.080000000000002,24.87,24.67,24.48,24.09,N/A,N/A +2013,8,23,16,30,94420,93350,92310,51.370000000000005,0,4.03,4.98,5.25,5.39,5.49,5.5600000000000005,5.61,5.65,5.7,161.19,161.01,160.88,160.73,160.6,160.48,160.36,160.24,160,28.29,27.57,27.29,27.04,26.810000000000002,26.59,26.37,26.17,25.76,N/A,N/A +2013,8,23,17,30,94370,93300,92260,43.1,0,4.7,5.8,6.09,6.25,6.3500000000000005,6.42,6.47,6.51,6.55,165.05,164.78,164.56,164.36,164.16,163.98,163.8,163.64000000000001,163.3,29.69,28.92,28.62,28.35,28.11,27.89,27.66,27.45,27.04,N/A,N/A +2013,8,23,18,30,94330,93260,92230,42.44,0,5.66,6.96,7.28,7.46,7.57,7.640000000000001,7.69,7.72,7.75,182.41,180.95000000000002,180.07,179.29,178.58,177.93,177.29,176.70000000000002,175.56,30.07,29.26,28.95,28.68,28.43,28.2,27.98,27.77,27.35,N/A,N/A +2013,8,23,19,30,94300,93240,92210,41.52,0,5.07,6.22,6.5200000000000005,6.69,6.79,6.86,6.91,6.94,6.98,169.72,169.15,168.8,168.45000000000002,168.13,167.82,167.5,167.20000000000002,166.57,30.490000000000002,29.68,29.38,29.09,28.85,28.62,28.39,28.18,27.76,N/A,N/A +2013,8,23,20,30,94200,93130,92100,39.78,0,6.23,7.63,7.97,8.13,8.22,8.26,8.27,8.27,8.22,178.39000000000001,177.85,177.48,177.11,176.76,176.44,176.1,175.79,175.15,30.27,29.44,29.14,28.86,28.62,28.39,28.17,27.96,27.55,N/A,N/A +2013,8,23,21,30,94140,93080,92060,34.85,0,5.13,6.33,6.66,6.83,6.95,7.0200000000000005,7.07,7.1000000000000005,7.140000000000001,166.49,165.74,165.3,164.89000000000001,164.53,164.18,163.86,163.55,162.95000000000002,31.2,30.44,30.150000000000002,29.88,29.64,29.42,29.19,28.98,28.57,N/A,N/A +2013,8,23,22,30,94160,93100,92080,34.82,0,4.37,5.41,5.69,5.8500000000000005,5.96,6.03,6.09,6.13,6.19,161.47,160.92000000000002,160.54,160.16,159.81,159.49,159.17000000000002,158.87,158.27,31.52,30.84,30.580000000000002,30.330000000000002,30.1,29.88,29.66,29.46,29.05,N/A,N/A +2013,8,23,23,30,94300,93220,92180,57.63,0,9.700000000000001,12.51,13.23,13.700000000000001,14.02,14.26,14.41,14.540000000000001,14.65,83.39,87.03,88.18,89.10000000000001,89.85000000000001,90.48,91.05,91.55,92.45,26.560000000000002,25.900000000000002,25.63,25.37,25.13,24.92,24.7,24.51,24.14,N/A,N/A +2013,8,24,0,30,94230,93150,92100,59.54,0,7.17,9.53,10.22,10.620000000000001,11.03,11.43,11.66,11.85,11.99,112.87,114.52,115.29,115.79,117.79,120.23,122.79,125.06,127.86,23.92,23.79,23.75,23.66,23.81,24.03,24.23,24.38,24.25,N/A,N/A +2013,8,24,1,30,94140,93060,92030,45.69,0,2.57,3.5300000000000002,3.92,4.32,4.63,4.88,5.08,5.26,5.5200000000000005,114.52,113.15,113.05,114.72,117.14,119.88,122.57000000000001,125.05,129.03,26.51,26.26,26.23,26.310000000000002,26.35,26.37,26.330000000000002,26.27,26.060000000000002,N/A,N/A +2013,8,24,2,30,94160,93080,92040,53.65,0,2.54,3.69,4.15,4.57,4.94,5.28,5.62,5.93,6.55,170.33,170.71,170.93,171.16,171.47,171.8,172.33,172.87,174.07,26.05,25.8,25.66,25.5,25.36,25.22,25.1,24.98,24.79,N/A,N/A +2013,8,24,3,30,94250,93170,92120,55.68,0,2.17,3.31,3.71,4.0600000000000005,4.36,4.61,4.84,5.0600000000000005,5.49,129.45,133.74,136.72,139.53,141.93,144.04,146.03,147.85,151.07,25.73,25.51,25.36,25.18,25.01,24.84,24.66,24.5,24.18,N/A,N/A +2013,8,24,4,30,94270,93190,92140,58.9,0,3.5500000000000003,5.17,5.68,6.07,6.38,6.63,6.86,7.07,7.48,142.74,143.06,143.06,143.1,143.11,143.1,143.01,142.92000000000002,142.66,25.43,25.240000000000002,25.1,24.93,24.75,24.57,24.38,24.2,23.84,N/A,N/A +2013,8,24,5,30,94260,93180,92140,59.5,0,1.83,3.27,3.86,4.41,4.9,5.37,5.8,6.2,6.82,116.10000000000001,122.58,126.60000000000001,129.66,132.52,135.22,138.19,141.09,147.34,24.75,24.650000000000002,24.54,24.41,24.27,24.13,23.97,23.81,23.47,N/A,N/A +2013,8,24,6,30,94290,93200,92150,65.07000000000001,0,1.87,3.25,3.75,4.17,4.53,4.8500000000000005,5.16,5.44,6,132.25,136.09,138.66,141.18,143.9,146.68,149.69,152.58,158.31,23.990000000000002,23.87,23.75,23.61,23.47,23.330000000000002,23.19,23.05,22.79,N/A,N/A +2013,8,24,7,30,94320,93230,92180,73.78,0,1.67,2.95,3.37,3.67,3.9,4.09,4.26,4.44,5.1000000000000005,104.15,112.07000000000001,117.12,121.64,126.31,130.83,136.8,142.63,156.03,23.22,23.11,22.990000000000002,22.85,22.71,22.57,22.48,22.400000000000002,22.39,N/A,N/A +2013,8,24,8,30,94340,93250,92200,80.10000000000001,0,0.85,2.12,2.69,3.08,3.36,3.5700000000000003,3.88,4.19,4.73,104.07000000000001,117.13,124.73,128.29,132.64000000000001,137.29,144.04,150.92000000000002,158.21,22.650000000000002,22.64,22.55,22.43,22.330000000000002,22.23,22.22,22.22,22.23,N/A,N/A +2013,8,24,9,30,94360,93270,92220,81.24,0,1.07,2.52,3.14,3.66,4.07,4.41,4.7,4.95,5.49,130.96,129.32,128.97,130.05,132.37,135.28,138.62,141.83,147.59,22.43,22.43,22.37,22.31,22.26,22.23,22.240000000000002,22.25,22.330000000000002,N/A,N/A +2013,8,24,10,30,94370,93280,92230,82.85000000000001,0,0.98,2.49,3.21,3.85,4.39,4.87,5.23,5.55,5.98,146.67000000000002,140.33,136.73,135.02,134.89000000000001,135.65,137.81,140.11,145.67000000000002,22.06,22.17,22.16,22.16,22.17,22.18,22.2,22.21,22.21,N/A,N/A +2013,8,24,11,30,94410,93310,92260,83.08,0,0.4,1.6500000000000001,2.57,3.3000000000000003,3.89,4.38,4.78,5.14,5.53,148.82,138.1,130.86,130.55,132.09,134.66,138.56,142.49,148.19,21.75,21.88,21.89,21.93,21.98,22.04,22.11,22.18,22.23,N/A,N/A +2013,8,24,12,30,94440,93350,92290,84.75,0,1.3900000000000001,3.08,3.77,4.43,4.98,5.47,5.92,6.34,6.99,136.79,133.37,132.38,133.24,135.85,139.33,143.51,147.56,154.02,21.5,21.73,21.76,21.8,21.85,21.900000000000002,21.97,22.02,22.080000000000002,N/A,N/A +2013,8,24,13,30,94460,93370,92320,75.5,0,2.49,3.15,3.38,3.6,3.94,4.3500000000000005,4.94,5.55,6.2,144.5,144.93,145.23,145.59,146.29,147.15,148.98,150.96,154.35,22.86,22.51,22.34,22.18,22.03,21.900000000000002,21.84,21.81,21.85,N/A,N/A +2013,8,24,14,30,94510,93420,92370,67.36,0,3,3.74,3.94,4.05,4.12,4.16,4.2,4.22,4.28,134.72,136.3,137.12,137.82,138.48,139.1,139.78,140.41,141.94,24.78,24.25,24.03,23.82,23.63,23.44,23.25,23.080000000000002,22.71,N/A,N/A +2013,8,24,15,30,94520,93440,92400,57.6,0,3.68,4.59,4.86,5.01,5.11,5.19,5.24,5.29,5.3500000000000005,145.22,146.19,146.68,147.06,147.36,147.63,147.88,148.11,148.53,26.78,26.14,25.88,25.64,25.42,25.22,25.01,24.82,24.42,N/A,N/A +2013,8,24,16,30,94520,93440,92400,48.620000000000005,0,3.84,4.75,5.01,5.15,5.26,5.33,5.38,5.43,5.48,146.96,147.52,147.79,147.97,148.11,148.23,148.33,148.42000000000002,148.57,28.400000000000002,27.71,27.43,27.17,26.94,26.73,26.51,26.310000000000002,25.900000000000002,N/A,N/A +2013,8,24,17,30,94490,93420,92390,39.53,0,4.14,5.13,5.41,5.57,5.68,5.76,5.82,5.87,5.94,135.94,136.79,137.19,137.48,137.73,137.95000000000002,138.15,138.33,138.66,29.89,29.150000000000002,28.86,28.59,28.36,28.13,27.91,27.7,27.29,N/A,N/A +2013,8,24,18,30,94450,93390,92360,32.79,0,4.43,5.46,5.76,5.92,6.04,6.12,6.18,6.23,6.3100000000000005,135.59,136.3,136.70000000000002,136.98,137.21,137.4,137.57,137.73,138,31.150000000000002,30.39,30.09,29.810000000000002,29.57,29.34,29.12,28.91,28.490000000000002,N/A,N/A +2013,8,24,19,30,94410,93340,92320,28.35,0,4.5600000000000005,5.65,5.95,6.13,6.25,6.34,6.4,6.46,6.54,137,137.53,137.79,137.97,138.1,138.20000000000002,138.29,138.37,138.5,32.160000000000004,31.39,31.09,30.82,30.57,30.34,30.11,29.900000000000002,29.48,N/A,N/A +2013,8,24,20,30,94340,93290,92260,27.38,0,4.74,5.87,6.19,6.36,6.48,6.5600000000000005,6.63,6.68,6.76,143.88,143.92000000000002,143.9,143.83,143.74,143.65,143.56,143.47,143.28,32.78,32.01,31.71,31.44,31.2,30.970000000000002,30.740000000000002,30.54,30.11,N/A,N/A +2013,8,24,21,30,94280,93220,92200,26.84,0,5.07,6.3,6.66,6.86,7,7.1000000000000005,7.18,7.24,7.34,140.4,140.16,140,139.81,139.63,139.46,139.3,139.15,138.84,33.3,32.55,32.27,32,31.76,31.54,31.310000000000002,31.1,30.68,N/A,N/A +2013,8,24,22,30,94210,93150,92130,26.75,0,5.04,6.29,6.640000000000001,6.8500000000000005,7,7.11,7.19,7.26,7.3500000000000005,140.11,139.76,139.53,139.27,139.03,138.79,138.56,138.35,137.95000000000002,33.49,32.8,32.54,32.28,32.05,31.830000000000002,31.61,31.400000000000002,30.990000000000002,N/A,N/A +2013,8,24,23,30,94190,93130,92110,27.560000000000002,0,5.03,6.32,6.7,6.93,7.1000000000000005,7.23,7.32,7.4,7.5200000000000005,137.77,137.25,136.98,136.71,136.48,136.26,136.06,135.87,135.53,33.4,32.82,32.59,32.35,32.13,31.92,31.7,31.5,31.09,N/A,N/A +2013,8,25,0,30,94150,93100,92080,29.53,0,5.11,6.6000000000000005,6.99,7.24,7.43,7.5600000000000005,7.67,7.76,7.890000000000001,145.98,145.24,144.8,144.35,143.94,143.54,143.15,142.8,142.11,32.83,32.44,32.25,32.05,31.85,31.650000000000002,31.45,31.26,30.86,N/A,N/A +2013,8,25,1,30,94210,93150,92130,31.2,0,4.53,6.47,7.08,7.5,7.8100000000000005,8.03,8.19,8.31,8.44,109.29,110.7,111.56,112.42,113.23,114.04,114.86,115.65,117.28,31.76,31.64,31.53,31.37,31.220000000000002,31.05,30.87,30.7,30.330000000000002,N/A,N/A +2013,8,25,2,30,94240,93180,92160,36.37,0,2.87,4.75,5.41,5.97,6.42,6.8,7.1000000000000005,7.36,7.75,125.24000000000001,124.60000000000001,124.36,124.61,125.10000000000001,125.78,126.63000000000001,127.49000000000001,129.5,30.89,30.900000000000002,30.84,30.75,30.650000000000002,30.54,30.400000000000002,30.28,29.990000000000002,N/A,N/A +2013,8,25,3,30,94280,93210,92190,38.160000000000004,0,2.95,4.73,5.29,5.8,6.23,6.61,6.9,7.16,7.51,142.93,138.6,136.22,134.54,133.72,133.47,134.16,135.12,139.38,30.04,30.14,30.11,30.05,29.98,29.89,29.79,29.69,29.44,N/A,N/A +2013,8,25,4,30,94340,93280,92250,41.86,0,2.34,4.3,4.92,5.54,6.25,7.05,7.930000000000001,8.84,10.48,137.64000000000001,139.71,142.63,147.98,152.84,157.53,160.70000000000002,163.36,165.51,29.02,29.44,29.52,29.55,29.52,29.45,29.36,29.27,29.03,N/A,N/A +2013,8,25,5,30,94390,93310,92280,44.12,0,2.2800000000000002,4.25,4.93,5.73,6.63,7.640000000000001,8.74,9.85,11.6,140.07,144.74,147.95000000000002,151.62,154.55,157.09,158.6,159.82,160.95000000000002,27.900000000000002,28.3,28.400000000000002,28.48,28.55,28.6,28.63,28.650000000000002,28.61,N/A,N/A +2013,8,25,6,30,94430,93360,92320,41.21,0,3.35,5.88,6.92,7.97,8.94,9.88,10.700000000000001,11.450000000000001,12.55,151.42000000000002,154.84,156.93,158.79,160.41,161.88,163.07,164.14000000000001,165.68,27.54,27.900000000000002,28.01,28.1,28.14,28.150000000000002,28.11,28.05,27.830000000000002,N/A,N/A +2013,8,25,7,30,94470,93390,92350,42.56,0,3.65,6.22,7.22,8.18,9.08,9.94,10.72,11.44,12.43,153.97,156.49,158.12,159.73,161.39000000000001,163.06,164.68,166.21,168.45000000000002,26.98,27.25,27.330000000000002,27.38,27.41,27.42,27.39,27.36,27.19,N/A,N/A +2013,8,25,8,30,94510,93430,92390,46.77,0,2.86,5.19,6.09,6.96,7.8100000000000005,8.620000000000001,9.4,10.13,11.24,138.69,145,148.43,150.97,153.13,155.04,156.71,158.27,160.9,26.03,26.39,26.490000000000002,26.57,26.62,26.64,26.63,26.62,26.5,N/A,N/A +2013,8,25,9,30,94520,93430,92390,50.120000000000005,0,2.66,4.88,5.71,6.5600000000000005,7.390000000000001,8.2,8.98,9.700000000000001,10.78,137.84,143.79,147.36,150.37,152.91,155.17000000000002,157.02,158.69,161.15,25.32,25.71,25.82,25.91,25.98,26.03,26.05,26.07,26.01,N/A,N/A +2013,8,25,10,30,94540,93450,92410,52.22,0,2.75,4.79,5.51,6.25,7.01,7.78,8.6,9.4,10.68,132.69,137.63,140.71,143.58,146.47,149.35,151.96,154.41,157.70000000000002,24.71,25.03,25.11,25.17,25.23,25.27,25.32,25.36,25.35,N/A,N/A +2013,8,25,11,30,94560,93470,92430,56.21,0,2.38,4.47,5.22,5.97,6.69,7.390000000000001,8,8.56,9.19,136.44,141.67000000000002,144.99,148.27,151.5,154.63,157.61,160.39000000000001,164.31,24.07,24.39,24.47,24.53,24.57,24.6,24.6,24.6,24.54,N/A,N/A +2013,8,25,12,30,94600,93510,92460,61.44,0,2.08,4.0200000000000005,4.68,5.32,5.94,6.5200000000000005,7.0600000000000005,7.5600000000000005,8.1,134.98,138.56,141.27,144.45000000000002,148.11,151.92000000000002,155.71,159.22,163.91,23.29,23.57,23.61,23.63,23.67,23.7,23.75,23.79,23.830000000000002,N/A,N/A +2013,8,25,13,30,94630,93540,92490,59.2,0,2.5,3.12,3.34,3.5500000000000003,3.96,4.5,5.11,5.71,6.46,138.59,140.66,142.12,143.69,146.25,149.45000000000002,152.49,155.43,159.25,24.400000000000002,24.05,23.88,23.71,23.56,23.42,23.34,23.3,23.29,N/A,N/A +2013,8,25,14,30,94660,93570,92530,59.1,0,2.98,3.73,3.94,4.05,4.13,4.18,4.21,4.24,4.2700000000000005,154.22,155.09,155.59,155.97,156.3,156.59,156.88,157.14000000000001,157.69,26.23,25.69,25.47,25.26,25.05,24.86,24.66,24.48,24.1,N/A,N/A +2013,8,25,15,30,94670,93590,92550,52.730000000000004,0,2.99,3.7,3.9,4.0200000000000005,4.09,4.14,4.18,4.21,4.24,146.04,146.75,147.12,147.41,147.64000000000001,147.83,148,148.16,148.46,27.79,27.17,26.92,26.68,26.45,26.25,26.04,25.85,25.45,N/A,N/A +2013,8,25,16,30,94670,93600,92560,47.2,0,2.91,3.56,3.74,3.84,3.91,3.96,3.99,4.0200000000000005,4.05,137.86,138.61,139,139.26,139.47,139.65,139.79,139.93,140.15,29.150000000000002,28.48,28.21,27.96,27.73,27.51,27.3,27.1,26.69,N/A,N/A +2013,8,25,17,30,94640,93570,92540,41.980000000000004,0,3.38,4.15,4.3500000000000005,4.47,4.55,4.61,4.65,4.69,4.75,122.41,122.94,123.19,123.33,123.42,123.5,123.55,123.59,123.63000000000001,30.45,29.740000000000002,29.45,29.19,28.95,28.73,28.51,28.3,27.89,N/A,N/A +2013,8,25,18,30,94580,93520,92490,37,0,3.7,4.54,4.75,4.88,4.97,5.04,5.08,5.13,5.19,113.07000000000001,113.25,113.34,113.38,113.39,113.38,113.37,113.34,113.29,31.63,30.89,30.59,30.32,30.080000000000002,29.85,29.62,29.42,28.990000000000002,N/A,N/A +2013,8,25,19,30,94550,93490,92460,33.51,0,4.28,5.23,5.48,5.62,5.71,5.78,5.83,5.87,5.91,114.09,114.27,114.33,114.33,114.31,114.29,114.25,114.22,114.13,32.51,31.740000000000002,31.44,31.17,30.92,30.69,30.46,30.25,29.830000000000002,N/A,N/A +2013,8,25,20,30,94470,93420,92390,31.7,0,4.04,4.94,5.17,5.29,5.38,5.44,5.48,5.51,5.5600000000000005,131.81,130.86,130.3,129.77,129.3,128.84,128.41,128.02,127.22,33.09,32.34,32.05,31.78,31.54,31.310000000000002,31.09,30.88,30.46,N/A,N/A +2013,8,25,21,30,94430,93370,92350,27.01,0,4.71,5.74,5.98,6.09,6.16,6.2,6.23,6.25,6.26,103.66,104.27,104.65,104.93,105.17,105.4,105.61,105.8,106.15,33.78,33.03,32.75,32.49,32.26,32.03,31.810000000000002,31.6,31.19,N/A,N/A +2013,8,25,22,30,94410,93350,92320,31.25,0,4.1,5.33,5.65,5.83,5.96,6.05,6.12,6.17,6.24,112.17,112.69,112.71000000000001,112.61,112.49000000000001,112.37,112.22,112.06,111.73,32.52,32.13,31.94,31.73,31.53,31.34,31.14,30.95,30.57,N/A,N/A +2013,8,25,23,30,94370,93310,92290,26.54,0,3.85,4.68,4.9,5.01,5.09,5.15,5.2,5.24,5.3,108.60000000000001,107.93,107.55,107.19,106.88,106.60000000000001,106.33,106.10000000000001,105.68,33.63,33.06,32.84,32.61,32.39,32.19,31.98,31.78,31.38,N/A,N/A +2013,8,26,0,30,94330,93280,92260,24.85,0,5.19,6.640000000000001,6.99,7.17,7.3100000000000005,7.390000000000001,7.45,7.5,7.55,114.16,114.37,114.38,114.32000000000001,114.24000000000001,114.16,114.04,113.93,113.66,33.58,33.21,33.03,32.82,32.62,32.43,32.230000000000004,32.04,31.650000000000002,N/A,N/A +2013,8,26,1,30,94340,93280,92260,28.87,0,3.96,6.3,7.15,7.86,8.44,8.93,9.31,9.64,10.07,105.77,106.99000000000001,107.74000000000001,108.38,108.91,109.37,109.76,110.11,110.72,32.36,32.35,32.27,32.14,31.990000000000002,31.830000000000002,31.650000000000002,31.48,31.12,N/A,N/A +2013,8,26,2,30,94400,93340,92320,33.28,0,4.39,6.88,7.79,8.55,9.19,9.74,10.21,10.63,11.3,102.99000000000001,104.13,104.79,105.41,105.94,106.43,106.8,107.12,107.44,31.36,31.35,31.28,31.18,31.060000000000002,30.93,30.78,30.64,30.32,N/A,N/A +2013,8,26,3,30,94440,93370,92340,39.1,0,4.59,6.95,7.76,8.44,8.98,9.42,9.76,10.05,10.43,137.42000000000002,136.09,135.36,134.61,134.05,133.63,133.38,133.2,132.98,30.18,30.1,30,29.86,29.71,29.560000000000002,29.38,29.22,28.88,N/A,N/A +2013,8,26,4,30,94490,93420,92390,45.22,0,2.25,4.33,5.13,5.84,6.45,6.97,7.45,7.890000000000001,8.69,123.31,122.19,121.73,121.78,122.2,122.9,123.79,124.7,126.45,28.91,29.05,29.03,28.96,28.87,28.76,28.63,28.51,28.22,N/A,N/A +2013,8,26,5,30,94480,93410,92380,48.480000000000004,0,2.56,4.78,5.66,6.47,7.13,7.68,8.1,8.46,9.02,117.41,114.22,112.8,112.42,112.75,113.53,114.95,116.44,120.3,28.17,28.34,28.36,28.35,28.310000000000002,28.25,28.150000000000002,28.05,27.77,N/A,N/A +2013,8,26,6,30,94520,93440,92400,47.02,0,4.07,6.33,7.13,7.78,8.32,8.790000000000001,9.27,9.72,10.75,119.4,121.26,122.82000000000001,124.78,127.22,129.87,133.03,136.12,141.76,27.97,27.95,27.88,27.76,27.6,27.42,27.19,26.98,26.5,N/A,N/A +2013,8,26,7,30,94570,93490,92440,57.51,0,4.01,6.04,6.76,7.390000000000001,7.930000000000001,8.39,8.77,9.1,9.49,149.95000000000002,150.72,151.04,151.17000000000002,151.07,150.86,150.34,149.79,147.88,26.53,26.41,26.310000000000002,26.18,26.04,25.91,25.76,25.62,25.330000000000002,N/A,N/A +2013,8,26,8,30,94600,93520,92480,64.67,0,3.0500000000000003,4.7700000000000005,5.34,5.8100000000000005,6.18,6.49,6.7700000000000005,7.03,7.57,149.20000000000002,149.8,149.96,149.65,149.19,148.67000000000002,148.16,147.69,147.14000000000001,25.63,25.52,25.42,25.3,25.16,25.02,24.86,24.72,24.37,N/A,N/A +2013,8,26,9,30,94610,93520,92480,70.05,0,1.35,3.23,4.04,4.7700000000000005,5.41,5.99,6.51,6.99,7.79,134.14000000000001,138.20000000000002,140.11,140.70000000000002,141.26,141.78,142.38,142.97,144.15,24.76,24.79,24.71,24.59,24.45,24.3,24.13,23.97,23.61,N/A,N/A +2013,8,26,10,30,94610,93530,92480,71.81,0,2.11,3.48,4.16,4.73,5.22,5.66,6.0600000000000005,6.45,7.09,118.78,123.33,125.48,126.24000000000001,127.15,128.14000000000001,129.15,130.12,132.2,24.57,24.35,24.22,24.07,23.92,23.76,23.6,23.44,23.1,N/A,N/A +2013,8,26,11,30,94630,93550,92490,79.17,0,2.23,4.01,4.73,5.4,6.01,6.58,7.140000000000001,7.67,8.55,125.31,126.46000000000001,127.21000000000001,128.03,129.1,130.29,131.72,133.15,136.12,23.76,23.67,23.56,23.44,23.3,23.16,22.98,22.830000000000002,22.45,N/A,N/A +2013,8,26,12,30,94680,93590,92530,83.14,0,2.19,3.92,4.62,5.29,5.88,6.42,6.91,7.37,8.13,119.49000000000001,119.76,120.08,120.62,121.62,122.83,124.48,126.14,130.01,23.23,23.14,23.05,22.92,22.79,22.650000000000002,22.48,22.330000000000002,21.990000000000002,N/A,N/A +2013,8,26,13,30,94690,93600,92550,78.16,0,3.81,4.8500000000000005,5.15,5.32,5.45,5.55,5.64,5.72,5.93,134.85,135.14000000000001,135.28,135.33,135.38,135.42000000000002,135.49,135.56,135.88,23.94,23.5,23.31,23.11,22.92,22.740000000000002,22.55,22.37,22.01,N/A,N/A +2013,8,26,14,30,94690,93610,92560,70.15,0,3.23,4.04,4.2700000000000005,4.4,4.49,4.55,4.6000000000000005,4.64,4.69,122.89,123.24000000000001,123.41,123.52,123.61,123.67,123.73,123.79,123.91,25.38,24.82,24.580000000000002,24.36,24.150000000000002,23.95,23.740000000000002,23.56,23.16,N/A,N/A +2013,8,26,15,30,94710,93630,92580,62.51,0,3.5,4.33,4.5600000000000005,4.69,4.78,4.84,4.89,4.93,4.99,112.93,113.26,113.39,113.46000000000001,113.51,113.55,113.58,113.61,113.65,26.6,25.94,25.68,25.44,25.21,25,24.79,24.59,24.19,N/A,N/A +2013,8,26,16,30,94660,93590,92540,54.75,0,3.52,4.33,4.5600000000000005,4.69,4.78,4.8500000000000005,4.9,4.94,5,104.99000000000001,105.35000000000001,105.57000000000001,105.68,105.74000000000001,105.78,105.8,105.81,105.81,27.75,27.080000000000002,26.82,26.57,26.34,26.13,25.91,25.71,25.3,N/A,N/A +2013,8,26,17,30,94620,93540,92500,47.86,0,3.94,4.86,5.12,5.28,5.39,5.47,5.53,5.58,5.66,98.37,98.93,99.19,99.31,99.41,99.49000000000001,99.54,99.59,99.65,28.94,28.240000000000002,27.97,27.72,27.48,27.26,27.04,26.84,26.42,N/A,N/A +2013,8,26,18,30,94570,93500,92470,44.94,0,3.75,4.64,4.86,5,5.09,5.15,5.19,5.22,5.25,99.3,98.28,97.52,96.83,96.23,95.69,95.18,94.71000000000001,93.83,29.59,29.09,28.86,28.62,28.39,28.18,27.96,27.75,27.34,N/A,N/A +2013,8,26,19,30,94490,93430,92400,37.62,0,4.64,5.66,5.92,6.08,6.18,6.26,6.3100000000000005,6.36,6.43,108.94,107.72,107.11,106.53,106.04,105.60000000000001,105.18,104.78,104.05,31.1,30.32,30.03,29.75,29.5,29.27,29.05,28.84,28.42,N/A,N/A +2013,8,26,20,30,94440,93380,92350,35.07,0,5.91,7.24,7.57,7.73,7.83,7.890000000000001,7.930000000000001,7.96,7.97,101.53,101.45,101.23,100.99000000000001,100.77,100.55,100.33,100.13,99.74000000000001,31.66,30.85,30.54,30.27,30.03,29.8,29.57,29.36,28.95,N/A,N/A +2013,8,26,21,30,94370,93310,92290,32.89,0,5.64,6.95,7.29,7.5,7.640000000000001,7.73,7.8,7.86,7.930000000000001,94.78,95.45,95.61,95.65,95.67,95.67,95.65,95.63,95.60000000000001,32.230000000000004,31.46,31.17,30.900000000000002,30.66,30.43,30.21,30,29.580000000000002,N/A,N/A +2013,8,26,22,30,94300,93250,92220,33.56,0,5.43,6.8100000000000005,7.17,7.37,7.5,7.59,7.66,7.7,7.76,94.54,93.88,93.69,93.62,93.59,93.59,93.61,93.64,93.74,32.51,31.8,31.54,31.28,31.05,30.830000000000002,30.61,30.41,29.990000000000002,N/A,N/A +2013,8,26,23,30,94310,93250,92220,39.910000000000004,0,6.51,8.22,8.68,8.950000000000001,9.13,9.26,9.35,9.42,9.51,123.47,123.17,122.88,122.56,122.27,121.98,121.7,121.44,120.93,31.45,30.84,30.6,30.36,30.14,29.92,29.71,29.51,29.1,N/A,N/A +2013,8,27,0,30,94310,93250,92220,43.17,0,7.12,9.16,9.69,10.03,10.26,10.43,10.55,10.64,10.76,99.31,100.33,100.93,101.49000000000001,102,102.47,102.92,103.35000000000001,104.18,30.19,29.75,29.55,29.330000000000002,29.13,28.93,28.73,28.53,28.14,N/A,N/A +2013,8,27,1,30,94380,93300,92270,56.870000000000005,0,6,7.66,8.07,8.3,8.46,8.56,8.63,8.68,8.72,151.18,150.57,150.12,149.61,149.08,148.56,147.98,147.44,146.26,28.02,27.67,27.48,27.29,27.1,26.92,26.73,26.55,26.19,N/A,N/A +2013,8,27,2,30,94370,93290,92250,65.15,0,4.68,5.88,6.16,6.3100000000000005,6.390000000000001,6.43,6.44,6.45,6.55,192.27,191.89000000000001,191.64000000000001,191.35,191.01,190.64000000000001,190.14000000000001,189.65,188.04,26.55,26.150000000000002,25.96,25.76,25.560000000000002,25.37,25.18,25,24.62,N/A,N/A +2013,8,27,3,30,94390,93320,92280,62.45,0,2.77,3.95,4.45,4.95,5.38,5.7700000000000005,6.13,6.47,7.09,144.07,142.84,142.05,140.9,139.82,138.79,138.02,137.36,137.08,26.88,26.6,26.490000000000002,26.41,26.34,26.27,26.16,26.04,25.73,N/A,N/A +2013,8,27,4,30,94420,93340,92290,67.59,0,4.65,6.03,6.390000000000001,6.640000000000001,6.8100000000000005,6.94,7.04,7.12,7.24,157.1,156.70000000000002,156.51,156.34,156.19,156.05,155.94,155.85,155.69,26.14,25.810000000000002,25.63,25.44,25.240000000000002,25.05,24.85,24.67,24.28,N/A,N/A +2013,8,27,5,30,94430,93350,92300,68.86,0,4.39,5.79,6.19,6.47,6.69,6.87,7.03,7.16,7.4,156.94,157.1,157.19,157.25,157.31,157.37,157.44,157.51,157.66,25.42,25.11,24.94,24.75,24.55,24.36,24.17,23.98,23.59,N/A,N/A +2013,8,27,6,30,94440,93360,92310,69.51,0,3.49,4.74,5.13,5.44,5.69,5.9,6.09,6.26,6.5600000000000005,145.71,146.89000000000001,147.61,148.3,148.94,149.53,150.15,150.73,151.91,24.73,24.44,24.27,24.080000000000002,23.89,23.71,23.51,23.330000000000002,22.95,N/A,N/A +2013,8,27,7,30,94460,93370,92320,74.73,0,3.41,4.69,5.1000000000000005,5.42,5.68,5.89,6.07,6.23,6.47,147.38,148.1,148.55,149.01,149.5,150,150.57,151.12,152.39000000000001,24.21,23.93,23.77,23.59,23.400000000000002,23.22,23.03,22.85,22.47,N/A,N/A +2013,8,27,8,30,94470,93390,92330,78.35000000000001,0,3.43,4.72,5.14,5.46,5.71,5.93,6.12,6.29,6.57,152.53,152.73,152.79,152.8,152.78,152.74,152.67000000000002,152.59,152.31,23.71,23.44,23.27,23.09,22.91,22.73,22.53,22.35,21.97,N/A,N/A +2013,8,27,9,30,94460,93380,92320,81.15,0,3.06,4.37,4.82,5.18,5.48,5.76,6.0200000000000005,6.2700000000000005,6.8100000000000005,153.45000000000002,154.76,155.48,156.09,156.58,157,157.27,157.5,157.43,23.240000000000002,22.98,22.830000000000002,22.650000000000002,22.47,22.3,22.11,21.94,21.580000000000002,N/A,N/A +2013,8,27,10,30,94480,93390,92340,82.58,0,2.69,3.96,4.42,4.83,5.2,5.54,5.87,6.17,6.74,154.48,155.22,155.65,156.07,156.47,156.86,157.26,157.65,158.38,22.88,22.64,22.490000000000002,22.31,22.14,21.97,21.78,21.61,21.240000000000002,N/A,N/A +2013,8,27,11,30,94510,93420,92370,81.16,0,3.34,4.23,4.47,4.61,4.7,4.76,4.8,4.84,4.9,148.11,148.37,148.56,148.72,148.87,149.01,149.21,149.4,149.95000000000002,23.02,22.66,22.48,22.28,22.09,21.900000000000002,21.7,21.52,21.13,N/A,N/A +2013,8,27,12,30,94510,93420,92360,87.60000000000001,0,1.72,2.82,3.2,3.49,3.7,3.86,3.98,4.09,4.28,121.58,126.03,128.92000000000002,131.57,134.27,136.84,139.93,142.9,149.01,22.11,21.900000000000002,21.76,21.6,21.43,21.27,21.1,20.94,20.62,N/A,N/A +2013,8,27,13,30,94530,93440,92380,84.99,0,2.2600000000000002,2.8000000000000003,2.95,3.0300000000000002,3.08,3.12,3.15,3.17,3.2600000000000002,137.33,138.89000000000001,139.93,140.86,141.77,142.63,143.66,144.64000000000001,147.28,22.44,22.06,21.87,21.68,21.48,21.3,21.1,20.92,20.54,N/A,N/A +2013,8,27,14,30,94570,93480,92420,78.46000000000001,0,2.49,3.06,3.23,3.31,3.37,3.4,3.43,3.45,3.48,146.05,147.88,148.87,149.69,150.43,151.12,151.82,152.46,153.9,23.39,22.86,22.63,22.42,22.22,22.03,21.830000000000002,21.650000000000002,21.28,N/A,N/A +2013,8,27,15,30,94580,93490,92440,74.32000000000001,0,2.75,3.42,3.61,3.72,3.79,3.84,3.88,3.92,3.97,144.91,146.74,147.85,148.8,149.66,150.45000000000002,151.26,152.01,153.57,23.97,23.47,23.25,23.04,22.830000000000002,22.63,22.43,22.25,21.86,N/A,N/A +2013,8,27,16,30,94560,93470,92420,65.99,0,3.02,3.72,3.92,4.03,4.1,4.16,4.2,4.23,4.2700000000000005,149.78,151.02,151.63,152.1,152.52,152.9,153.26,153.59,154.29,25.72,25.060000000000002,24.79,24.55,24.32,24.11,23.900000000000002,23.7,23.3,N/A,N/A +2013,8,27,17,30,94550,93460,92420,64.95,0,2.37,3.0100000000000002,3.23,3.38,3.5,3.59,3.67,3.74,3.84,177.08,173.76,171.77,169.89000000000001,168.29,166.89000000000001,165.58,164.39000000000001,162.24,25.84,25.29,25.060000000000002,24.830000000000002,24.62,24.42,24.21,24.03,23.63,N/A,N/A +2013,8,27,18,30,94530,93450,92400,67.55,0,6.45,8.2,8.620000000000001,8.85,8.97,9.01,9,8.97,8.84,134.89000000000001,135.98,136.64000000000001,137.31,137.89000000000001,138.42000000000002,138.99,139.51,140.65,25.240000000000002,24.76,24.55,24.32,24.11,23.91,23.7,23.51,23.11,N/A,N/A +2013,8,27,19,30,94500,93420,92360,64.72,0,5.59,6.9,7.25,7.42,7.5200000000000005,7.58,7.62,7.640000000000001,7.67,132.76,134,134.77,135.43,136.08,136.70000000000002,137.43,138.11,139.77,25.09,24.28,23.98,23.740000000000002,23.53,23.35,23.17,23,22.69,N/A,N/A +2013,8,27,20,30,94430,93350,92310,60.61,0,4.83,5.89,6.18,6.3100000000000005,6.4,6.45,6.47,6.49,6.49,104.47,107.11,108.69,110.06,111.27,112.38,113.48,114.5,116.55,26.63,25.900000000000002,25.62,25.38,25.150000000000002,24.95,24.740000000000002,24.55,24.17,N/A,N/A +2013,8,27,21,30,94360,93290,92250,49.56,0,4.55,5.57,5.8500000000000005,5.99,6.08,6.140000000000001,6.18,6.21,6.25,114.16,115.8,116.88,117.78,118.57000000000001,119.29,120.01,120.68,122.01,28.560000000000002,27.82,27.54,27.28,27.04,26.830000000000002,26.61,26.41,26.01,N/A,N/A +2013,8,27,22,30,94280,93210,92180,47.43,0,5.09,6.3,6.63,6.8,6.92,7,7.0600000000000005,7.1000000000000005,7.16,124.83,125.8,126.39,126.87,127.3,127.7,128.09,128.45,129.15,29.53,28.830000000000002,28.560000000000002,28.310000000000002,28.09,27.87,27.650000000000002,27.45,27.05,N/A,N/A +2013,8,27,23,30,94240,93180,92150,34.9,0,5.8500000000000005,7.36,7.7700000000000005,8,8.16,8.28,8.36,8.43,8.52,132.04,132.71,133.22,133.69,134.11,134.51,134.9,135.26,135.97,30.400000000000002,29.830000000000002,29.6,29.37,29.16,28.95,28.740000000000002,28.55,28.14,N/A,N/A +2013,8,28,0,30,94230,93170,92130,25.05,0,5.92,7.69,8.16,8.47,8.69,8.86,8.99,9.1,9.25,154.28,154.21,154.09,153.93,153.8,153.66,153.52,153.4,153.15,30.39,30.080000000000002,29.91,29.71,29.51,29.32,29.12,28.94,28.54,N/A,N/A +2013,8,28,1,30,94260,93190,92160,32.04,0,2.68,4.87,5.6000000000000005,6.19,6.66,7.05,7.38,7.66,8.08,139.05,137.88,137.17000000000002,136.6,136.24,136.04,136.02,136.05,136.49,28.47,28.76,28.76,28.68,28.57,28.44,28.28,28.12,27.78,N/A,N/A +2013,8,28,2,30,94270,93200,92160,36.52,0,3.14,5.61,6.61,7.51,8.25,8.89,9.39,9.83,10.450000000000001,139.99,139.16,138.85,139.04,139.59,140.4,141.54,142.71,145.41,27.650000000000002,27.87,27.900000000000002,27.88,27.84,27.78,27.68,27.59,27.32,N/A,N/A +2013,8,28,3,30,94320,93240,92200,60.15,0,7.71,10.32,11.08,11.66,12.120000000000001,12.5,12.84,13.14,13.64,138.96,139.85,140.36,140.87,141.37,141.85,142.37,142.85,143.86,26.28,26.05,25.900000000000002,25.73,25.55,25.38,25.19,25.03,24.66,N/A,N/A +2013,8,28,4,30,94350,93270,92220,62.120000000000005,0,5.05,7.1000000000000005,7.78,8.32,8.78,9.17,9.540000000000001,9.870000000000001,10.46,144.35,144.93,145.35,145.75,146.16,146.57,147.01,147.43,148.35,25.330000000000002,25.14,25,24.84,24.67,24.5,24.32,24.16,23.79,N/A,N/A +2013,8,28,5,30,94380,93300,92250,65.22,0,4.37,6.23,6.87,7.4,7.84,8.23,8.58,8.9,9.49,141.91,142.74,143.27,143.8,144.37,144.93,145.57,146.18,147.51,24.79,24.59,24.45,24.29,24.13,23.96,23.79,23.63,23.28,N/A,N/A +2013,8,28,6,30,94410,93330,92280,68.05,0,4.3100000000000005,6.21,6.87,7.43,7.9,8.33,8.74,9.120000000000001,9.83,146.70000000000002,147.76,148.35,148.97,149.61,150.25,150.95000000000002,151.61,153.01,24.09,23.89,23.76,23.6,23.43,23.27,23.09,22.93,22.57,N/A,N/A +2013,8,28,7,30,94450,93360,92310,70.35000000000001,0,4.42,6.38,7.07,7.67,8.2,8.69,9.16,9.61,10.46,147.78,149.17000000000002,150.04,150.87,151.65,152.4,153.12,153.8,155.04,23.55,23.37,23.240000000000002,23.09,22.93,22.78,22.62,22.46,22.14,N/A,N/A +2013,8,28,8,30,94490,93400,92340,73.31,0,3.7,5.63,6.37,7.01,7.58,8.11,8.620000000000001,9.1,10.040000000000001,147.67000000000002,149.6,150.8,151.82,152.70000000000002,153.49,154.16,154.76,155.83,23.01,22.88,22.78,22.650000000000002,22.51,22.38,22.23,22.09,21.8,N/A,N/A +2013,8,28,9,30,94500,93410,92350,75.48,0,4.26,6.34,7.13,7.82,8.43,8.99,9.55,10.06,11.08,146.42000000000002,147.97,148.91,149.75,150.51,151.20000000000002,151.86,152.47,153.62,22.54,22.400000000000002,22.3,22.16,22.02,21.89,21.73,21.59,21.28,N/A,N/A +2013,8,28,10,30,94510,93410,92350,78.26,0,4.68,6.86,7.65,8.35,8.96,9.52,10.08,10.61,11.65,144.47,145.77,146.53,147.24,147.95000000000002,148.62,149.37,150.09,151.68,21.94,21.8,21.69,21.56,21.42,21.29,21.14,21.01,20.73,N/A,N/A +2013,8,28,11,30,94530,93440,92380,81.75,0,3.95,6.09,6.92,7.640000000000001,8.3,8.91,9.52,10.1,11.24,143.58,145.82,147.17000000000002,148.3,149.39000000000001,150.41,151.52,152.59,154.85,21.26,21.17,21.080000000000002,20.97,20.86,20.740000000000002,20.63,20.52,20.31,N/A,N/A +2013,8,28,12,30,94560,93460,92400,85.79,0,3.27,5.4,6.23,6.98,7.66,8.290000000000001,8.93,9.540000000000001,10.76,140.87,144.03,145.88,147.36,148.77,150.08,151.51,152.91,156.03,20.56,20.52,20.45,20.36,20.26,20.17,20.07,19.98,19.830000000000002,N/A,N/A +2013,8,28,13,30,94580,93480,92410,76.4,0,4.26,5.62,6.12,6.57,7.04,7.51,8.14,8.75,9.85,150.64000000000001,152.19,153.17000000000002,154.15,155.19,156.21,157.36,158.43,159.65,21.46,21.1,20.94,20.78,20.63,20.490000000000002,20.35,20.21,19.94,N/A,N/A +2013,8,28,14,30,94620,93530,92470,57.63,0,5.19,6.57,6.99,7.24,7.41,7.54,7.63,7.71,7.83,157.96,158.53,158.87,159.16,159.43,159.69,159.97,160.22,160.81,23.400000000000002,22.830000000000002,22.61,22.38,22.17,21.98,21.78,21.59,21.21,N/A,N/A +2013,8,28,15,30,94620,93530,92470,45.29,0,5.99,7.57,8,8.26,8.43,8.55,8.64,8.71,8.8,162.63,162.75,162.82,162.87,162.92000000000002,162.96,163.01,163.06,163.17000000000002,25.14,24.45,24.18,23.94,23.71,23.5,23.29,23.09,22.69,N/A,N/A +2013,8,28,16,30,94620,93540,92490,32.96,0,6.41,8.05,8.53,8.8,8.98,9.120000000000001,9.22,9.3,9.41,162.24,162.34,162.44,162.5,162.55,162.6,162.64000000000001,162.68,162.76,26.79,26.03,25.740000000000002,25.48,25.240000000000002,25.02,24.8,24.6,24.18,N/A,N/A +2013,8,28,17,30,94600,93520,92480,30.39,0,6.62,8.3,8.8,9.08,9.27,9.41,9.52,9.6,9.73,159.97,160.21,160.34,160.45000000000002,160.54,160.61,160.70000000000002,160.77,160.92000000000002,28.1,27.28,26.98,26.71,26.46,26.23,26.01,25.8,25.38,N/A,N/A +2013,8,28,18,30,94550,93470,92430,30.47,0,6.96,8.73,9.23,9.52,9.71,9.85,9.96,10.05,10.17,161.32,161.45000000000002,161.54,161.61,161.66,161.70000000000002,161.75,161.8,161.89000000000001,29.23,28.38,28.07,27.79,27.54,27.310000000000002,27.080000000000002,26.87,26.45,N/A,N/A +2013,8,28,19,30,94520,93450,92410,27.34,0,7.07,8.85,9.35,9.63,9.82,9.96,10.07,10.15,10.27,161.74,161.92000000000002,162,162.06,162.12,162.18,162.23,162.28,162.39000000000001,30.3,29.45,29.14,28.86,28.61,28.37,28.14,27.93,27.5,N/A,N/A +2013,8,28,20,30,94480,93410,92380,26.17,0,6.91,8.620000000000001,9.1,9.370000000000001,9.55,9.68,9.77,9.85,9.950000000000001,159.97,160.21,160.34,160.44,160.53,160.6,160.67000000000002,160.73,160.86,31.04,30.22,29.92,29.64,29.39,29.16,28.93,28.72,28.3,N/A,N/A +2013,8,28,21,30,94420,93350,92320,25.580000000000002,0,6.86,8.59,9.06,9.32,9.49,9.620000000000001,9.71,9.78,9.88,157.49,157.65,157.74,157.78,157.81,157.84,157.87,157.89000000000001,157.95000000000002,31.48,30.69,30.41,30.14,29.900000000000002,29.67,29.45,29.240000000000002,28.82,N/A,N/A +2013,8,28,22,30,94350,93290,92260,23.97,0,6.49,8.17,8.63,8.91,9.1,9.24,9.34,9.43,9.55,155.53,155.6,155.64000000000001,155.65,155.66,155.66,155.66,155.66,155.66,31.78,31.080000000000002,30.82,30.560000000000002,30.330000000000002,30.11,29.89,29.68,29.26,N/A,N/A +2013,8,28,23,30,94320,93260,92230,25.23,0,6.2,7.87,8.34,8.620000000000001,8.82,8.97,9.08,9.17,9.290000000000001,149.59,149.70000000000002,149.79,149.86,149.91,149.96,150.01,150.06,150.15,31.61,31.04,30.810000000000002,30.57,30.36,30.14,29.93,29.73,29.32,N/A,N/A +2013,8,29,0,30,94320,93250,92220,27.02,0,5.87,7.61,8.040000000000001,8.31,8.51,8.65,8.75,8.84,8.950000000000001,154.19,153.97,153.81,153.64000000000001,153.48,153.32,153.18,153.03,152.76,31.02,30.68,30.5,30.29,30.1,29.900000000000002,29.7,29.51,29.12,N/A,N/A +2013,8,29,1,30,94320,93260,92230,32.26,0,3.5700000000000003,5.79,6.58,7.25,7.79,8.24,8.6,8.91,9.33,141.1,140.98,140.91,140.91,140.95000000000002,141.04,141.11,141.18,141.27,29.63,29.650000000000002,29.580000000000002,29.47,29.34,29.21,29.05,28.89,28.54,N/A,N/A +2013,8,29,2,30,94350,93280,92240,37.89,0,3.12,5.18,5.91,6.57,7.15,7.68,8.17,8.61,9.370000000000001,138.11,139.06,139.83,140.76,141.74,142.76,143.77,144.72,146.39000000000001,28.7,28.77,28.740000000000002,28.67,28.580000000000002,28.48,28.36,28.240000000000002,27.96,N/A,N/A +2013,8,29,3,30,94370,93300,92270,41.18,0,2.79,5.0200000000000005,5.89,6.72,7.47,8.17,8.82,9.44,10.41,140.63,141.79,142.6,143.39000000000001,144.24,145.11,146,146.86,148.29,27.96,28.12,28.11,28.080000000000002,28.01,27.93,27.830000000000002,27.73,27.490000000000002,N/A,N/A +2013,8,29,4,30,94410,93340,92300,45.76,0,3.2,5.5200000000000005,6.44,7.29,8.09,8.85,9.59,10.28,11.49,146.37,146.75,147.05,147.36,147.85,148.42000000000002,149.07,149.70000000000002,150.72,27.39,27.490000000000002,27.47,27.43,27.36,27.28,27.18,27.09,26.82,N/A,N/A +2013,8,29,5,30,94440,93360,92320,56.33,0,3.98,6.12,6.890000000000001,7.59,8.23,8.82,9.39,9.93,10.93,156.98,157.88,158.49,159.16,159.84,160.52,161.21,161.88,163.08,26.96,26.92,26.84,26.740000000000002,26.63,26.51,26.38,26.25,25.96,N/A,N/A +2013,8,29,6,30,94490,93410,92370,61.14,0,3.02,5.13,5.94,6.72,7.47,8.2,8.93,9.63,10.94,150.02,152.95000000000002,154.73,156.32,157.83,159.3,160.65,161.9,163.71,26.03,26.150000000000002,26.150000000000002,26.13,26.080000000000002,26.03,25.96,25.89,25.73,N/A,N/A +2013,8,29,7,30,94510,93430,92390,63.480000000000004,0,2.81,5.15,6.140000000000001,7.13,8.05,8.93,9.74,10.5,11.67,154.62,158.43,160.59,162.26,163.65,164.86,165.84,166.73,167.88,25.44,25.63,25.67,25.69,25.69,25.66,25.59,25.52,25.3,N/A,N/A +2013,8,29,8,30,94530,93450,92410,64.7,0,3.33,5.61,6.51,7.36,8.11,8.81,9.450000000000001,10.03,11.08,156.6,159.82,161.69,163.14000000000001,164.43,165.6,166.78,167.89000000000001,169.92000000000002,25.330000000000002,25.43,25.44,25.41,25.37,25.310000000000002,25.22,25.14,24.89,N/A,N/A +2013,8,29,9,30,94560,93470,92430,68.22,0,3.4,5.59,6.48,7.36,8.16,8.91,9.6,10.25,11.290000000000001,146.76,151.36,154.14000000000001,156.53,158.63,160.54,162.33,164.01,167.18,24.740000000000002,24.79,24.77,24.740000000000002,24.68,24.62,24.53,24.44,24.2,N/A,N/A +2013,8,29,10,30,94540,93460,92410,70.81,0,3.7,5.86,6.7,7.5,8.23,8.9,9.53,10.11,11.13,148.05,152.25,154.77,156.93,158.75,160.34,161.64000000000001,162.81,164.41,24.45,24.45,24.41,24.36,24.3,24.23,24.14,24.07,23.86,N/A,N/A +2013,8,29,11,30,94550,93460,92410,73.52,0,3.96,6.17,7.03,7.82,8.540000000000001,9.19,9.84,10.44,11.53,147.69,151.28,153.45000000000002,155.44,157.27,158.97,160.63,162.18,164.91,24,23.990000000000002,23.96,23.900000000000002,23.84,23.77,23.68,23.61,23.41,N/A,N/A +2013,8,29,12,30,94570,93480,92430,77.7,0,2.72,4.8500000000000005,5.71,6.5200000000000005,7.2700000000000005,7.96,8.63,9.28,10.49,144.86,149.68,152.42000000000002,154.5,156.33,158,159.58,161.05,163.74,23.29,23.32,23.29,23.23,23.17,23.11,23.04,22.97,22.81,N/A,N/A +2013,8,29,13,30,94590,93510,92450,71.95,0,4.57,5.93,6.36,6.7,7.01,7.29,7.63,7.96,8.75,152.12,153.45000000000002,154.26,155.08,155.94,156.78,157.77,158.73,160.63,24.21,23.82,23.64,23.46,23.28,23.12,22.95,22.79,22.46,N/A,N/A +2013,8,29,14,30,94620,93540,92490,66.64,0,5.5200000000000005,6.99,7.390000000000001,7.63,7.79,7.9,7.98,8.05,8.14,164.29,164.56,164.68,164.76,164.84,164.9,164.98,165.04,165.19,25.64,25.05,24.810000000000002,24.580000000000002,24.37,24.17,23.96,23.77,23.38,N/A,N/A +2013,8,29,15,30,94620,93540,92490,61.31,0,5.12,6.41,6.7700000000000005,6.96,7.09,7.19,7.25,7.3,7.3500000000000005,165.14000000000001,165.32,165.42000000000002,165.48,165.53,165.56,165.6,165.63,165.68,26.900000000000002,26.2,25.93,25.69,25.46,25.25,25.04,24.84,24.43,N/A,N/A +2013,8,29,16,30,94620,93540,92500,55.04,0,4.9,6.08,6.41,6.59,6.71,6.8,6.86,6.9,6.96,167.68,167.66,167.63,167.61,167.57,167.55,167.51,167.48,167.43,28.3,27.54,27.26,26.990000000000002,26.76,26.54,26.310000000000002,26.11,25.7,N/A,N/A +2013,8,29,17,30,94580,93510,92470,49.69,0,4.68,5.7700000000000005,6.07,6.23,6.34,6.41,6.47,6.51,6.55,167.56,167.52,167.49,167.44,167.39000000000001,167.33,167.27,167.21,167.09,29.51,28.73,28.44,28.16,27.92,27.69,27.47,27.26,26.85,N/A,N/A +2013,8,29,18,30,94530,93460,92430,45.02,0,4.82,5.93,6.24,6.4,6.51,6.58,6.63,6.67,6.71,162.45000000000002,162.49,162.53,162.52,162.5,162.47,162.43,162.4,162.33,30.62,29.82,29.51,29.23,28.98,28.76,28.53,28.32,27.900000000000002,N/A,N/A +2013,8,29,19,30,94470,93410,92380,40.730000000000004,0,4.55,5.58,5.86,6.01,6.11,6.17,6.22,6.26,6.3,156.72,156.83,156.84,156.8,156.76,156.72,156.68,156.63,156.52,31.560000000000002,30.78,30.47,30.19,29.94,29.71,29.490000000000002,29.27,28.85,N/A,N/A +2013,8,29,20,30,94420,93360,92330,38.17,0,4.23,5.2,5.47,5.62,5.72,5.79,5.84,5.88,5.94,157.13,157.02,156.98,156.91,156.84,156.76,156.68,156.61,156.46,32.32,31.560000000000002,31.26,30.990000000000002,30.740000000000002,30.51,30.28,30.07,29.650000000000002,N/A,N/A +2013,8,29,21,30,94350,93300,92270,34.93,0,4.17,5.13,5.38,5.51,5.6000000000000005,5.67,5.71,5.74,5.79,148.71,149.11,149.29,149.4,149.48,149.53,149.58,149.62,149.68,32.79,32.06,31.78,31.51,31.28,31.05,30.830000000000002,30.62,30.2,N/A,N/A +2013,8,29,22,30,94300,93250,92230,32.96,0,3.95,4.86,5.1000000000000005,5.24,5.34,5.41,5.46,5.5,5.55,138.67000000000002,139.5,139.98,140.32,140.59,140.79,140.98,141.14000000000001,141.43,33.03,32.35,32.09,31.84,31.61,31.39,31.17,30.96,30.55,N/A,N/A +2013,8,29,23,30,94260,93210,92190,32.29,0,4.07,4.99,5.22,5.33,5.41,5.46,5.49,5.51,5.54,124.61,125.8,126.51,127.09,127.57000000000001,128,128.41,128.77,129.47,32.84,32.26,32.03,31.8,31.580000000000002,31.37,31.16,30.96,30.560000000000002,N/A,N/A +2013,8,30,0,30,94260,93200,92180,34.86,0,3.71,4.69,4.94,5.07,5.16,5.22,5.2700000000000005,5.3100000000000005,5.36,155.89000000000001,155.1,154.59,154.04,153.56,153.09,152.65,152.25,151.47,32.22,31.82,31.63,31.42,31.220000000000002,31.02,30.82,30.63,30.23,N/A,N/A +2013,8,30,1,30,94250,93190,92170,37.04,0,3.33,4.91,5.3500000000000005,5.7,5.97,6.18,6.36,6.51,6.73,146.36,146.31,146.16,146,145.89000000000001,145.79,145.71,145.62,145.44,31.27,31.12,31.01,30.85,30.68,30.52,30.330000000000002,30.16,29.78,N/A,N/A +2013,8,30,2,30,94290,93220,92200,38.74,0,2.81,4.73,5.39,5.96,6.42,6.82,7.13,7.38,7.67,149.83,147.41,146.12,145.12,144.63,144.46,144.53,144.66,144.9,30.35,30.38,30.330000000000002,30.240000000000002,30.14,30.03,29.89,29.75,29.43,N/A,N/A +2013,8,30,3,30,94320,93260,92230,39.53,0,3.46,5.59,6.34,6.96,7.45,7.84,8.14,8.38,8.69,153.28,153.20000000000002,153.23,153.34,153.69,154.20000000000002,154.94,155.70000000000002,157.21,29.67,29.79,29.78,29.73,29.650000000000002,29.54,29.41,29.27,28.95,N/A,N/A +2013,8,30,4,30,94370,93300,92270,41.06,0,3.67,6.04,6.95,7.82,8.56,9.21,9.69,10.08,10.42,156.37,157.20000000000002,157.47,157.35,157.11,156.79,156.53,156.31,156.24,28.84,29.05,29.09,29.12,29.11,29.07,28.990000000000002,28.900000000000002,28.63,N/A,N/A +2013,8,30,5,30,94360,93290,92260,41.53,0,4.18,6.68,7.65,8.57,9.38,10.120000000000001,10.64,11.09,11.36,156.5,157.33,157.77,158.07,158.37,158.68,158.98,159.27,159.84,28.13,28.330000000000002,28.39,28.42,28.44,28.44,28.39,28.35,28.13,N/A,N/A +2013,8,30,6,30,94400,93320,92290,43.39,0,4.55,7.3500000000000005,8.42,9.38,10.16,10.81,11.290000000000001,11.68,12.02,163.32,163.23,163.05,162.71,162.53,162.46,162.59,162.76,163.34,27.650000000000002,27.93,28,28.02,28,27.95,27.87,27.79,27.57,N/A,N/A +2013,8,30,7,30,94410,93340,92300,47.07,0,4.83,7.640000000000001,8.72,9.72,10.56,11.27,11.76,12.16,12.36,167.54,167.33,167.1,166.76,166.58,166.5,166.66,166.85,167.45000000000002,27.03,27.28,27.35,27.41,27.43,27.44,27.400000000000002,27.35,27.12,N/A,N/A +2013,8,30,8,30,94420,93340,92300,50.57,0,4.15,6.99,8.14,9.22,10.13,10.9,11.46,11.94,12.33,171.17000000000002,172.31,172.83,172.95000000000002,173.03,173.09,173.29,173.5,174.09,26.25,26.62,26.75,26.87,26.93,26.97,26.96,26.93,26.740000000000002,N/A,N/A +2013,8,30,9,30,94430,93350,92300,54.58,0,3.5300000000000002,6.07,7.05,8,8.84,9.6,10.22,10.790000000000001,11.47,158.28,163.79,166.76,168.8,170.32,171.52,172.5,173.36,174.97,25.44,25.79,25.89,25.990000000000002,26.07,26.13,26.16,26.18,26.13,N/A,N/A +2013,8,30,10,30,94390,93310,92260,57.620000000000005,0,3.69,6.2,7.12,8.01,8.84,9.6,10.3,10.93,11.75,164.17000000000002,168.04,170.24,172.06,173.57,174.9,176.03,177.04,178.54,24.88,25.22,25.310000000000002,25.38,25.42,25.44,25.43,25.41,25.3,N/A,N/A +2013,8,30,11,30,94430,93340,92300,66.69,0,2.31,4.84,5.79,6.8100000000000005,7.74,8.59,9.3,9.950000000000001,10.72,152.65,162.71,168.21,172.23,175.15,177.42000000000002,178.92000000000002,180.19,181.53,23.61,24.25,24.38,24.5,24.59,24.67,24.71,24.740000000000002,24.73,N/A,N/A +2013,8,30,12,30,94430,93340,92300,69.64,0,2.48,4.5600000000000005,5.29,6.23,7.09,7.9,8.540000000000001,9.11,9.74,142.37,155.13,162.11,167.87,172.07,175.38,177.76,179.82,182.33,23.04,23.7,23.86,24,24.11,24.21,24.29,24.36,24.41,N/A,N/A +2013,8,30,13,30,94460,93380,92330,61.730000000000004,0,1.62,2.46,2.98,3.61,4.21,4.7700000000000005,5.29,5.78,6.6000000000000005,127.79,152.84,164.67000000000002,170.16,174.11,177.15,179.48,181.58,184.59,24.02,23.900000000000002,23.86,23.79,23.740000000000002,23.7,23.68,23.67,23.67,N/A,N/A +2013,8,30,14,30,94470,93390,92350,54.08,0,2.58,3.29,3.52,3.68,3.81,3.91,4.03,4.13,4.46,169.22,170.91,171.85,172.70000000000002,173.52,174.31,175.17000000000002,175.98,177.53,26.400000000000002,25.900000000000002,25.69,25.490000000000002,25.3,25.13,24.95,24.79,24.48,N/A,N/A +2013,8,30,15,30,94450,93380,92340,45.56,0,3.61,4.48,4.73,4.87,4.97,5.03,5.07,5.1000000000000005,5.14,176.3,176.24,176.21,176.16,176.12,176.08,176.03,175.98,175.85,28.37,27.75,27.5,27.26,27.04,26.84,26.63,26.44,26.05,N/A,N/A +2013,8,30,16,30,94430,93360,92330,35.04,0,3.72,4.57,4.8100000000000005,4.94,5.0200000000000005,5.08,5.13,5.16,5.21,167.54,167.42000000000002,167.3,167.16,167.02,166.89000000000001,166.75,166.62,166.35,29.91,29.22,28.95,28.7,28.47,28.25,28.04,27.84,27.43,N/A,N/A +2013,8,30,17,30,94390,93330,92300,29.18,0,4.11,5.08,5.36,5.5200000000000005,5.63,5.71,5.7700000000000005,5.82,5.89,163.38,163.04,162.93,162.84,162.77,162.69,162.63,162.57,162.45000000000002,31.3,30.57,30.28,30.01,29.77,29.54,29.32,29.11,28.69,N/A,N/A +2013,8,30,18,30,94340,93280,92250,28.57,0,4.45,5.48,5.76,5.91,6.0200000000000005,6.09,6.140000000000001,6.18,6.24,166.39000000000001,166.17000000000002,166.04,165.9,165.78,165.67000000000002,165.56,165.45000000000002,165.26,32,31.240000000000002,30.94,30.67,30.43,30.2,29.97,29.76,29.34,N/A,N/A +2013,8,30,19,30,94280,93220,92200,26.78,0,3.93,4.8100000000000005,5.04,5.16,5.25,5.3,5.34,5.37,5.41,164.6,164.51,164.42000000000002,164.29,164.18,164.08,163.96,163.85,163.64000000000001,32.78,32.03,31.73,31.46,31.220000000000002,31,30.77,30.560000000000002,30.14,N/A,N/A +2013,8,30,20,30,94210,93150,92130,24.85,0,4.3100000000000005,5.25,5.48,5.6000000000000005,5.67,5.72,5.76,5.78,5.8100000000000005,172.5,171.52,170.88,170.27,169.72,169.21,168.71,168.24,167.35,33.44,32.69,32.4,32.13,31.89,31.66,31.44,31.23,30.810000000000002,N/A,N/A +2013,8,30,21,30,94150,93090,92070,23.36,0,4.6000000000000005,5.59,5.82,5.91,5.98,6.01,6.03,6.04,6.05,180.70000000000002,179.14000000000001,178.32,177.66,177.06,176.49,175.96,175.47,174.5,33.72,32.99,32.72,32.46,32.230000000000004,32.01,31.79,31.580000000000002,31.18,N/A,N/A +2013,8,30,22,30,94080,93030,92010,21.61,0,4.1,4.97,5.17,5.25,5.29,5.32,5.33,5.33,5.33,139,140.70000000000002,141.61,142.29,142.87,143.39000000000001,143.87,144.31,145.13,33.84,33.19,32.94,32.7,32.480000000000004,32.27,32.05,31.86,31.46,N/A,N/A +2013,8,30,23,30,94060,93010,91990,22.02,0,4.91,6.11,6.43,6.6000000000000005,6.72,6.8,6.8500000000000005,6.9,6.96,174.64000000000001,173.83,173.32,172.86,172.44,172.06,171.68,171.34,170.66,33.74,33.18,32.95,32.72,32.51,32.3,32.09,31.89,31.48,N/A,N/A +2013,8,31,0,30,94020,92970,91950,24.69,0,4.3,5.51,5.8100000000000005,5.98,6.09,6.16,6.21,6.25,6.28,139.26,140.21,140.68,141.07,141.4,141.71,141.99,142.24,142.72,33.07,32.730000000000004,32.55,32.34,32.15,31.95,31.75,31.560000000000002,31.17,N/A,N/A +2013,8,31,1,30,94020,92960,91950,30.47,0,3.52,5.46,5.96,6.23,6.41,6.54,6.66,6.7700000000000005,6.96,166.18,165.56,164.85,163.62,162.16,160.54,158.89000000000001,157.32,154.79,31.71,31.84,31.8,31.68,31.54,31.37,31.19,31.02,30.650000000000002,N/A,N/A +2013,8,31,2,30,94050,93000,91970,32.38,0,3.62,5.84,6.51,6.99,7.33,7.58,7.78,7.95,8.23,163,162.53,162.08,161.38,160.75,160.15,159.67000000000002,159.26,158.65,30.810000000000002,31.05,31.07,31.02,30.91,30.77,30.6,30.43,30.07,N/A,N/A +2013,8,31,3,30,94050,92990,91970,36.78,0,3.98,6.38,7.23,7.92,8.44,8.85,9.11,9.3,9.4,167.4,166.37,165.74,165.18,164.78,164.48,164.13,163.78,163.12,30,30.27,30.330000000000002,30.330000000000002,30.28,30.21,30.080000000000002,29.96,29.64,N/A,N/A +2013,8,31,4,30,94050,92990,91970,39.6,0,4.47,7.13,8.040000000000001,8.75,9.22,9.53,9.63,9.65,9.370000000000001,162.83,163.15,163.37,163.62,163.88,164.13,164.32,164.48,164.73,29.62,29.91,29.98,30.01,29.97,29.91,29.79,29.67,29.35,N/A,N/A +2013,8,31,5,30,94080,93020,91990,42.88,0,3.59,6.48,7.7,8.85,9.82,10.66,11.200000000000001,11.620000000000001,11.63,171.27,172.19,172.55,172.49,172.42000000000002,172.33,172.31,172.31,172.45000000000002,28.48,29,29.19,29.310000000000002,29.36,29.37,29.3,29.21,28.93,N/A,N/A +2013,8,31,6,30,94080,93010,91980,43.09,0,4.8100000000000005,7.67,8.77,9.81,10.64,11.34,11.790000000000001,12.14,12.22,177.31,177.72,177.76,177.47,177.25,177.08,177.1,177.17000000000002,177.43,28.13,28.47,28.59,28.69,28.740000000000002,28.77,28.740000000000002,28.7,28.5,N/A,N/A +2013,8,31,7,30,94110,93040,92010,45.78,0,4.43,7.32,8.51,9.67,10.61,11.4,11.86,12.200000000000001,12.08,175.36,178.32,179.65,180.01,180.01,179.8,179.55,179.31,179.12,27.42,27.830000000000002,28,28.16,28.26,28.330000000000002,28.330000000000002,28.32,28.19,N/A,N/A +2013,8,31,8,30,94120,93050,92010,50.7,0,3.31,5.98,7.140000000000001,8.4,9.53,10.55,11.33,12,12.540000000000001,156.15,168.34,174.21,176.96,178.26,178.69,178.69,178.6,178.65,26.060000000000002,26.580000000000002,26.78,26.97,27.1,27.2,27.240000000000002,27.27,27.22,N/A,N/A +2013,8,31,9,30,94100,93020,91990,52.25,0,3.88,6.5600000000000005,7.640000000000001,8.700000000000001,9.6,10.39,11,11.51,11.94,170.67000000000002,176.06,178.78,180.34,181.29,181.85,182.21,182.5,182.98,25.89,26.29,26.43,26.57,26.67,26.76,26.82,26.87,26.89,N/A,N/A +2013,8,31,10,30,94090,93010,91980,58.82,0,2.41,4.82,5.67,6.58,7.41,8.18,8.78,9.31,9.89,149.95000000000002,163.6,170.74,175.58,179.1,181.79,183.64000000000001,185.22,187.17000000000002,24.740000000000002,25.41,25.580000000000002,25.75,25.91,26.05,26.16,26.240000000000002,26.310000000000002,N/A,N/A +2013,8,31,11,30,94160,93070,92030,62.190000000000005,0,1.7,3.24,3.79,4.51,5.21,5.89,6.53,7.13,7.98,124.95,147.29,159.37,168.34,174.70000000000002,179.45000000000002,182.32,184.63,186.88,23.830000000000002,24.48,24.64,24.82,24.97,25.11,25.23,25.34,25.44,N/A,N/A +2013,8,31,12,30,94160,93080,92030,64,0,1.01,2.05,2.5300000000000002,3.2,3.79,4.32,4.8100000000000005,5.28,6.0600000000000005,109.02,139.38,156.28,168.02,174.98,179.07,181.67000000000002,183.82,186.04,23.23,23.96,24.17,24.42,24.59,24.71,24.810000000000002,24.89,24.98,N/A,N/A +2013,8,31,13,30,94180,93100,92050,57.53,0,1.22,0.92,0.92,1.2,1.59,2.09,2.59,3.1,4.01,49.68,91.64,114.45,146.31,164.1,174.69,179.56,183.16,186,23.73,23.81,23.96,24.17,24.32,24.43,24.53,24.61,24.72,N/A,N/A +2013,8,31,14,30,94180,93110,92070,42.92,0,1.86,2.48,2.73,2.92,3.0700000000000003,3.19,3.2800000000000002,3.36,3.67,160.98,164.56,166.6,168.22,169.56,170.73,171.73,172.62,174.67000000000002,27.52,27.07,26.87,26.67,26.490000000000002,26.310000000000002,26.13,25.97,25.63,N/A,N/A +2013,8,31,15,30,94170,93100,92070,37.74,0,4.04,5.05,5.34,5.51,5.62,5.7,5.76,5.8,5.87,169.13,169.91,170.32,170.67000000000002,170.99,171.27,171.56,171.84,172.4,29.5,28.86,28.61,28.38,28.16,27.96,27.76,27.57,27.2,N/A,N/A +2013,8,31,16,30,94160,93100,92070,33.79,0,4.66,5.76,6.0600000000000005,6.21,6.3100000000000005,6.38,6.43,6.46,6.51,175.79,175.33,175.05,174.79,174.56,174.34,174.13,173.94,173.56,31.02,30.3,30.02,29.76,29.53,29.310000000000002,29.1,28.900000000000002,28.490000000000002,N/A,N/A +2013,8,31,17,30,94100,93050,92020,29.23,0,4.8100000000000005,5.93,6.24,6.41,6.53,6.62,6.67,6.72,6.78,176.54,175.97,175.63,175.35,175.11,174.89000000000001,174.70000000000002,174.52,174.20000000000002,32.22,31.46,31.17,30.900000000000002,30.66,30.43,30.2,29.990000000000002,29.57,N/A,N/A +2013,8,31,18,30,94050,93000,91970,25.92,0,4.69,5.78,6.07,6.23,6.34,6.42,6.47,6.51,6.57,183.12,182.27,181.83,181.5,181.21,180.95000000000002,180.71,180.51,180.12,33.1,32.32,32.02,31.75,31.51,31.27,31.05,30.84,30.41,N/A,N/A +2013,8,31,19,30,94000,92950,91930,24.01,0,4.93,6.05,6.34,6.49,6.58,6.65,6.69,6.73,6.7700000000000005,182.15,181.13,180.59,180.20000000000002,179.88,179.59,179.31,179.07,178.61,33.730000000000004,32.95,32.65,32.38,32.13,31.91,31.68,31.470000000000002,31.05,N/A,N/A +2013,8,31,20,30,93930,92880,91870,22.490000000000002,0,4.54,5.58,5.88,6.0600000000000005,6.19,6.28,6.34,6.390000000000001,6.47,168.3,167.66,167.41,167.26,167.13,167.03,166.95000000000002,166.88,166.76,34.45,33.69,33.4,33.12,32.87,32.64,32.42,32.2,31.78,N/A,N/A +2013,8,31,21,30,93860,92820,91800,21.47,0,4.47,5.49,5.75,5.88,5.97,6.03,6.07,6.09,6.13,168.83,168.81,168.85,168.89000000000001,168.94,168.97,169.01,169.05,169.11,34.75,34.02,33.74,33.480000000000004,33.24,33.02,32.79,32.58,32.17,N/A,N/A +2013,8,31,22,30,93810,92770,91750,21.830000000000002,0,4.68,5.82,6.15,6.34,6.48,6.58,6.65,6.71,6.8100000000000005,168.79,168.14000000000001,167.86,167.63,167.46,167.3,167.17000000000002,167.05,166.84,34.910000000000004,34.230000000000004,33.97,33.72,33.49,33.27,33.05,32.84,32.42,N/A,N/A +2013,8,31,23,30,93780,92730,91720,21.77,0,4.15,5.16,5.42,5.55,5.64,5.7,5.74,5.78,5.83,166.75,166.48,166.15,165.78,165.43,165.08,164.75,164.43,163.81,34.51,33.96,33.74,33.51,33.3,33.09,32.88,32.68,32.28,N/A,N/A +2013,9,1,0,30,93760,92720,91700,23.75,0,4.89,6.34,6.7,6.91,7.07,7.18,7.2700000000000005,7.33,7.42,151.09,151.33,151.43,151.49,151.53,151.57,151.6,151.63,151.65,33.84,33.51,33.33,33.13,32.93,32.74,32.53,32.34,31.95,N/A,N/A +2013,9,1,1,30,93770,92720,91710,29.080000000000002,0,4.44,6.73,7.43,7.9,8.18,8.33,8.38,8.38,8.34,157.54,159.16,160.03,160.82,161.32,161.62,161.63,161.55,160.89000000000001,32.39,32.43,32.38,32.28,32.160000000000004,32.01,31.830000000000002,31.66,31.27,N/A,N/A +2013,9,1,2,30,93810,92760,91740,32.43,0,3.31,5.67,6.53,7.29,7.9,8.39,8.78,9.11,9.46,150.49,149.59,149.34,149.75,150.54,151.62,152.58,153.44,154.20000000000002,30.990000000000002,31.26,31.32,31.35,31.310000000000002,31.240000000000002,31.13,31.01,30.69,N/A,N/A +2013,9,1,3,30,93810,92760,91740,35.82,0,4.46,6.99,7.88,8.63,9.23,9.72,10.06,10.34,10.64,158.01,157.51,157.20000000000002,156.91,156.81,156.84,157,157.19,157.61,30.48,30.68,30.73,30.73,30.7,30.63,30.51,30.400000000000002,30.060000000000002,N/A,N/A +2013,9,1,4,30,93850,92790,91770,38.71,0,4.95,7.67,8.72,9.700000000000001,10.56,11.34,11.950000000000001,12.48,12.98,162,162.55,162.84,162.98,163.12,163.24,163.41,163.58,164.04,29.68,29.830000000000002,29.85,29.85,29.82,29.77,29.69,29.6,29.36,N/A,N/A +2013,9,1,5,30,93870,92810,91790,41.77,0,4.88,7.63,8.68,9.67,10.540000000000001,11.290000000000001,11.9,12.41,12.94,167.48,167.63,167.53,167.15,166.82,166.52,166.45000000000002,166.44,166.95000000000002,28.89,29.080000000000002,29.13,29.16,29.14,29.12,29.04,28.98,28.78,N/A,N/A +2013,9,1,6,30,93900,92840,91810,44.5,0,5.53,8.31,9.32,10.27,11.09,11.84,12.48,13.06,13.9,169.82,170.07,170.11,170.02,169.93,169.85,169.89000000000001,169.96,170.41,28.29,28.400000000000002,28.41,28.41,28.400000000000002,28.37,28.32,28.27,28.07,N/A,N/A +2013,9,1,7,30,93950,92880,91850,48.01,0,5.14,7.94,9.040000000000001,10.08,11,11.83,12.56,13.24,14.19,165.32,167.52,168.61,169.21,169.58,169.76,169.9,170.02,170.42000000000002,27.53,27.66,27.67,27.66,27.650000000000002,27.63,27.580000000000002,27.54,27.39,N/A,N/A +2013,9,1,8,30,93960,92890,91860,52.24,0,4.61,7.33,8.4,9.450000000000001,10.370000000000001,11.18,11.91,12.59,13.65,160.23,164.52,166.84,168.38,169.39000000000001,170.06,170.51,170.86,171.4,26.75,26.900000000000002,26.93,26.95,26.95,26.94,26.91,26.88,26.76,N/A,N/A +2013,9,1,9,30,93960,92880,91850,56.61,0,3.8200000000000003,6.45,7.54,8.67,9.69,10.66,11.5,12.280000000000001,13.42,151.03,159.06,163.27,166.08,168.01,169.41,170.39000000000001,171.23,172.57,25.76,25.990000000000002,26.05,26.1,26.14,26.17,26.17,26.17,26.11,N/A,N/A +2013,9,1,10,30,93970,92890,91850,60.6,0,3.27,5.7700000000000005,6.78,7.82,8.77,9.64,10.41,11.14,12.25,147.11,156.08,160.91,164.11,166.46,168.28,169.75,171.08,173.31,24.900000000000002,25.21,25.310000000000002,25.39,25.45,25.5,25.54,25.560000000000002,25.580000000000002,N/A,N/A +2013,9,1,11,30,94000,92920,91880,64.96000000000001,0,2.66,4.83,5.6000000000000005,6.42,7.21,7.99,8.73,9.44,10.59,143.56,151.13,155.41,158.87,161.73,164.22,166.45000000000002,168.55,172.13,24.12,24.5,24.580000000000002,24.650000000000002,24.7,24.75,24.79,24.830000000000002,24.900000000000002,N/A,N/A +2013,9,1,12,30,94010,92930,91890,69.86,0,2.12,4.0200000000000005,4.66,5.42,6.15,6.84,7.49,8.1,9.07,131.97,143.70000000000002,150.23,155.53,159.48,162.67000000000002,165.32,167.73,171.91,23.22,23.73,23.830000000000002,23.91,23.97,24.03,24.080000000000002,24.13,24.23,N/A,N/A +2013,9,1,13,30,94040,92960,91920,61.36,0,2.12,2.84,3.27,3.9,4.48,5.03,5.55,6.05,6.92,127.60000000000001,138.65,145.09,150.81,155.01,158.22,160.94,163.45000000000002,167.87,24.080000000000002,23.84,23.76,23.71,23.66,23.61,23.6,23.6,23.68,N/A,N/A +2013,9,1,14,30,94050,92980,91940,51.85,0,3.3000000000000003,4.12,4.36,4.49,4.58,4.63,4.68,4.72,4.83,164.20000000000002,164.83,165.18,165.51,165.83,166.14000000000001,166.51,166.88,167.82,26.37,25.85,25.64,25.43,25.240000000000002,25.05,24.86,24.69,24.330000000000002,N/A,N/A +2013,9,1,15,30,94070,93000,91960,44.87,0,3.56,4.4,4.64,4.75,4.82,4.87,4.9,4.92,4.93,167.24,167.64000000000001,167.86,168.03,168.20000000000002,168.36,168.5,168.64000000000001,168.96,28.3,27.67,27.42,27.19,26.97,26.77,26.560000000000002,26.38,26,N/A,N/A +2013,9,1,16,30,94050,92990,91960,38.9,0,3.48,4.2700000000000005,4.48,4.59,4.66,4.7,4.73,4.75,4.75,170.64000000000001,170.67000000000002,170.67000000000002,170.65,170.64000000000001,170.64000000000001,170.63,170.62,170.59,30.09,29.42,29.14,28.89,28.66,28.45,28.240000000000002,28.04,27.64,N/A,N/A +2013,9,1,17,30,94020,92960,91940,34.51,0,3.45,4.24,4.45,4.5600000000000005,4.63,4.68,4.71,4.74,4.76,163.73,163.67000000000002,163.62,163.53,163.44,163.35,163.26,163.15,162.96,31.560000000000002,30.86,30.57,30.310000000000002,30.07,29.85,29.63,29.43,29.02,N/A,N/A +2013,9,1,18,30,93990,92930,91910,30.43,0,3.95,4.8500000000000005,5.09,5.22,5.3100000000000005,5.37,5.42,5.45,5.5,153.70000000000002,153.65,153.59,153.47,153.34,153.22,153.07,152.94,152.66,32.8,32.05,31.76,31.490000000000002,31.25,31.02,30.79,30.59,30.17,N/A,N/A +2013,9,1,19,30,93940,92890,91880,28.35,0,3.85,4.73,4.97,5.1000000000000005,5.2,5.26,5.3100000000000005,5.3500000000000005,5.41,144.14000000000001,144.18,144.19,144.14000000000001,144.08,144.02,143.95000000000002,143.88,143.73,33.68,32.93,32.63,32.36,32.12,31.89,31.67,31.46,31.04,N/A,N/A +2013,9,1,20,30,93910,92860,91850,27.02,0,3.74,4.6000000000000005,4.83,4.97,5.05,5.12,5.17,5.21,5.2700000000000005,139,138.92000000000002,138.88,138.8,138.71,138.61,138.51,138.41,138.21,34.28,33.55,33.26,32.99,32.75,32.52,32.3,32.09,31.67,N/A,N/A +2013,9,1,21,30,93870,92820,91810,25.76,0,4.3500000000000005,5.34,5.6000000000000005,5.74,5.83,5.9,5.94,5.98,6.0200000000000005,132.61,133.12,133.4,133.58,133.72,133.83,133.93,134.01,134.14000000000001,34.65,33.92,33.64,33.38,33.14,32.910000000000004,32.69,32.480000000000004,32.06,N/A,N/A +2013,9,1,22,30,93840,92790,91780,26.12,0,4.33,5.34,5.6000000000000005,5.72,5.8100000000000005,5.87,5.9,5.94,5.97,139.23,139.67000000000002,139.84,139.93,140,140.06,140.1,140.12,140.15,34.54,33.87,33.61,33.37,33.14,32.92,32.71,32.51,32.1,N/A,N/A +2013,9,1,23,30,93820,92770,91760,26.85,0,4.3500000000000005,5.4,5.67,5.8100000000000005,5.91,5.97,6.0200000000000005,6.05,6.09,151.31,151.01,150.75,150.5,150.25,150.02,149.8,149.59,149.20000000000002,34.31,33.75,33.52,33.28,33.07,32.86,32.65,32.45,32.04,N/A,N/A +2013,9,2,0,30,93800,92750,91740,28.72,0,3.86,4.94,5.2,5.3500000000000005,5.45,5.5200000000000005,5.5600000000000005,5.59,5.63,153.82,153.99,154.04,154.07,154.08,154.09,154.09,154.09,154.09,33.71,33.34,33.160000000000004,32.95,32.75,32.56,32.36,32.17,31.78,N/A,N/A +2013,9,2,1,30,93820,92770,91760,30.53,0,3.95,5.8100000000000005,6.34,6.74,7.05,7.28,7.44,7.57,7.66,167.9,168.01,168.07,168.05,167.99,167.88,167.73,167.57,167.16,32.67,32.57,32.47,32.32,32.160000000000004,31.990000000000002,31.810000000000002,31.64,31.26,N/A,N/A +2013,9,2,2,30,93850,92800,91780,31.66,0,4.07,6.0600000000000005,6.69,7.18,7.5600000000000005,7.86,8.040000000000001,8.17,8.2,172.67000000000002,172.43,172.22,171.95000000000002,171.72,171.52,171.37,171.25,171.05,31.900000000000002,31.87,31.8,31.69,31.57,31.44,31.28,31.13,30.79,N/A,N/A +2013,9,2,3,30,93910,92860,91840,33.49,0,4.0600000000000005,6.19,6.93,7.59,8.18,8.74,9.22,9.65,10.14,179.37,179.59,179.45000000000002,178.87,178.1,177.16,176.41,175.76,175.22,31.12,31.18,31.150000000000002,31.09,31.01,30.900000000000002,30.78,30.650000000000002,30.35,N/A,N/A +2013,9,2,4,30,93940,92880,91860,34.97,0,4.05,6.48,7.4,8.28,9.040000000000001,9.73,10.28,10.77,11.39,178.31,178.85,178.95000000000002,178.70000000000002,178.27,177.70000000000002,177.19,176.72,176.25,30.330000000000002,30.39,30.37,30.32,30.240000000000002,30.150000000000002,30.02,29.900000000000002,29.59,N/A,N/A +2013,9,2,5,30,93960,92900,91880,37.4,0,3.93,6.24,7.140000000000001,7.99,8.700000000000001,9.31,9.78,10.17,10.57,169.95000000000002,173.51,175.46,176.66,177.4,177.82,178.01,178.12,178.25,29.580000000000002,29.67,29.650000000000002,29.62,29.57,29.51,29.42,29.330000000000002,29.09,N/A,N/A +2013,9,2,6,30,94000,92930,91900,40.36,0,3.31,5.73,6.7,7.640000000000001,8.47,9.22,9.84,10.41,11.14,166.74,171.8,174.37,175.91,176.85,177.42000000000002,177.69,177.87,178.07,28.740000000000002,28.91,28.92,28.92,28.89,28.85,28.78,28.72,28.53,N/A,N/A +2013,9,2,7,30,94030,92970,91940,44.18,0,2.8000000000000003,5.1000000000000005,6.0200000000000005,6.96,7.82,8.620000000000001,9.290000000000001,9.89,10.65,153.56,162.70000000000002,167.63,170.62,172.68,174.07,174.92000000000002,175.57,176.24,27.900000000000002,28.150000000000002,28.17,28.18,28.17,28.150000000000002,28.11,28.060000000000002,27.94,N/A,N/A +2013,9,2,8,30,94040,92970,91940,49.51,0,2,3.94,4.57,5.26,5.91,6.53,7.13,7.71,8.75,146.69,158.78,165.06,169.44,172.41,174.52,175.73,176.68,177.3,26.89,27.23,27.23,27.22,27.18,27.14,27.080000000000002,27.02,26.87,N/A,N/A +2013,9,2,9,30,94050,92970,91940,52.620000000000005,0,1.35,2.75,3.35,4.2,5.05,5.91,6.7,7.46,8.66,119.55,148.93,163.96,173.16,178.25,180.62,181.55,182.11,182.31,25.94,26.39,26.47,26.54,26.580000000000002,26.61,26.63,26.64,26.63,N/A,N/A +2013,9,2,10,30,94080,93000,91960,54.94,0,1.5,2.95,3.44,4.0200000000000005,4.58,5.13,5.66,6.16,6.92,127,142.24,151.31,159.15,164.33,167.88,170.35,172.47,175.19,25.39,25.830000000000002,25.91,26,26.07,26.12,26.16,26.21,26.22,N/A,N/A +2013,9,2,11,30,94090,93010,91970,57.64,0,0.9400000000000001,2.07,2.5,2.91,3.2800000000000002,3.62,3.91,4.17,4.58,125.38000000000001,133.49,139.29,145.13,149.94,154.07,157.35,160.29,165.39000000000001,24.68,25.080000000000002,25.14,25.2,25.25,25.29,25.330000000000002,25.36,25.42,N/A,N/A +2013,9,2,12,30,94130,93050,92010,58.94,0,1.19,2.07,2.34,2.77,3.23,3.72,4.1,4.43,4.84,108.55,122.57000000000001,132.28,143.82,152.6,159.89000000000001,164.02,167.35,171.52,24.03,24.3,24.29,24.29,24.36,24.46,24.580000000000002,24.69,24.97,N/A,N/A +2013,9,2,13,30,94170,93080,92040,52.74,0,1.02,1.09,1.18,1.4000000000000001,1.72,2.12,2.5,2.87,3.5100000000000002,110.27,115.14,123.5,139.27,150.38,159.64000000000001,164.18,167.84,171.81,24.78,24.47,24.36,24.27,24.240000000000002,24.25,24.25,24.25,24.330000000000002,N/A,N/A +2013,9,2,14,30,94210,93130,92090,46.910000000000004,0,0.44,0.35000000000000003,0.29,0.23,0.23,0.25,0.32,0.41000000000000003,0.62,26.76,39.550000000000004,53.19,72.56,94.55,119.74000000000001,135.11,149.81,160.22,26.650000000000002,26.22,26.02,25.830000000000002,25.650000000000002,25.47,25.29,25.12,24.75,N/A,N/A +2013,9,2,15,30,94230,93160,92120,41.5,0,0.39,0.56,0.64,0.71,0.76,0.81,0.86,0.9,0.99,109.89,116.46000000000001,120.61,124.07000000000001,127.18,130.04,132.89000000000001,135.58,140.76,28.78,28.28,28.05,27.830000000000002,27.62,27.43,27.23,27.05,26.67,N/A,N/A +2013,9,2,16,30,94200,93140,92110,36.410000000000004,0,1.1,1.32,1.3800000000000001,1.41,1.44,1.45,1.46,1.47,1.48,155.02,153.4,152.61,152.3,152.14000000000001,152.07,152.04,152.03,152.18,30.78,30.2,29.93,29.68,29.45,29.240000000000002,29.02,28.830000000000002,28.42,N/A,N/A +2013,9,2,17,30,94180,93120,92100,33.19,0,1.35,1.55,1.58,1.59,1.59,1.58,1.57,1.57,1.55,115.37,112.96000000000001,111.85000000000001,110.93,110.13,109.41,108.73,108.11,106.93,32.04,31.42,31.14,30.88,30.64,30.42,30.19,29.990000000000002,29.57,N/A,N/A +2013,9,2,18,30,94150,93090,92070,31.36,0,1.93,2.16,2.18,2.17,2.16,2.15,2.14,2.13,2.1,73.37,74,74.4,74.99,75.49,75.96000000000001,76.46000000000001,76.93,77.88,32.79,32.14,31.85,31.6,31.37,31.150000000000002,30.93,30.73,30.32,N/A,N/A +2013,9,2,19,30,94070,93020,92000,30.05,0,1.1400000000000001,1.3,1.32,1.33,1.33,1.33,1.33,1.32,1.31,128.94,129.87,130.05,129.73,129.33,128.88,128.31,127.73,126.28,33.58,32.95,32.67,32.410000000000004,32.18,31.96,31.75,31.55,31.14,N/A,N/A +2013,9,2,20,30,93960,92920,91900,28.37,0,1.68,1.86,1.85,1.83,1.82,1.79,1.77,1.75,1.71,86.49,87.49,88.2,88.82000000000001,89.32000000000001,89.77,90.16,90.5,91.04,34.43,33.79,33.5,33.230000000000004,33,32.77,32.55,32.34,31.93,N/A,N/A +2013,9,2,21,30,94090,93020,91990,50.02,0,5.83,7.2,7.51,7.640000000000001,7.71,7.74,7.73,7.72,7.63,353.95,355.34000000000003,355.88,356.38,356.8,357.18,357.51,357.81,358.48,28.69,28.13,27.900000000000002,27.68,27.47,27.27,27.07,26.89,26.51,N/A,N/A +2013,9,2,22,30,94120,93030,91990,65.48,0,5.11,6.140000000000001,6.33,6.390000000000001,6.41,6.42,6.2700000000000005,6.11,5.57,293.72,293.61,293.44,293.14,292.56,291.92,292.33,293.03000000000003,299.49,24.84,24.44,24.310000000000002,24.21,24.18,24.17,24.16,24.18,24.53,N/A,N/A +2013,9,2,23,30,94130,93050,92010,67.27,0,3.77,4.42,4.5,4.51,4.61,4.74,5.01,5.29,6.04,195.73000000000002,195.1,194.57,193.55,191.46,188.94,184.63,180.23,170.78,25.060000000000002,24.650000000000002,24.48,24.330000000000002,24.23,24.150000000000002,24.16,24.19,24.42,N/A,N/A +2013,9,3,0,30,94170,93090,92040,74.18,0,6.01,7.640000000000001,8.05,8.3,8.46,8.57,8.64,8.69,8.76,164.55,164.41,164.26,164.12,163.98,163.85,163.72,163.6,163.34,24.69,24.23,24.03,23.82,23.61,23.42,23.22,23.04,22.66,N/A,N/A +2013,9,3,1,30,94120,93040,92000,70.71000000000001,0,3.64,4.79,5.19,5.53,5.8500000000000005,6.15,6.55,6.95,7.82,179.38,178.22,177.44,176.73,176.02,175.35,174.1,172.78,169.45000000000002,24.51,24.21,24.07,23.91,23.740000000000002,23.56,23.5,23.47,23.68,N/A,N/A +2013,9,3,2,30,94130,93050,92000,76.06,0,3.29,4.33,4.66,4.94,5.15,5.3100000000000005,5.53,5.74,6.43,168.64000000000001,169.86,170.52,171.19,171.75,172.24,172.67000000000002,173.06,173.45000000000002,24.29,23.98,23.82,23.64,23.45,23.27,23.13,23,23.06,N/A,N/A +2013,9,3,3,30,94150,93070,92020,72.71000000000001,0,1.49,1.98,2.09,2.14,2.25,2.37,2.61,2.86,3.47,285.49,278.85,272.81,265.08,255.68,245.59,235.89000000000001,226.58,214.44,24.45,24.22,24.09,23.93,23.81,23.7,23.78,23.87,24.02,N/A,N/A +2013,9,3,4,30,94130,93050,92010,77.09,0,0.27,0.3,0.32,0.48,0.68,0.9,1.11,1.31,1.75,132.33,135.22,135.48,133.26,133.43,135.62,142.1,149.92000000000002,163.45000000000002,24.1,24.19,24.2,24.17,24.14,24.12,24.11,24.1,24.14,N/A,N/A +2013,9,3,5,30,94160,93080,92040,79.64,0,0.67,0.96,0.91,0.8200000000000001,0.76,0.72,0.63,0.54,0.29,325.90000000000003,317.02,316.22,320.43,329.72,340.52,349.74,355.71,301.63,23.87,23.94,23.91,23.86,23.830000000000002,23.81,23.84,23.87,24,N/A,N/A +2013,9,3,6,30,94190,93110,92070,81.63,0,0.75,1.41,1.61,1.8,1.94,2.05,2.14,2.23,2.46,124.98,107.28,99.74000000000001,97,96.46000000000001,97.11,99.08,101.19,107.56,23.56,23.86,23.94,23.98,24,24.01,24.03,24.060000000000002,24.150000000000002,N/A,N/A +2013,9,3,7,30,94220,93140,92100,83.78,0,0.21,0.4,0.5,0.71,0.92,1.12,1.35,1.59,2.1,334.43,64.99,101.01,109.64,119,128.71,133.74,137.73,138.17000000000002,23.240000000000002,23.84,23.990000000000002,24.01,24.05,24.09,24.14,24.19,24.32,N/A,N/A +2013,9,3,8,30,94240,93160,92110,86.84,0,0.23,0.4,0.41000000000000003,0.38,0.44,0.5700000000000001,0.8,1.09,1.68,308.03000000000003,349.63,17.73,44.51,70,100.23,113.12,123.74000000000001,133.44,22.75,23.31,23.490000000000002,23.6,23.73,23.87,24.03,24.18,24.51,N/A,N/A +2013,9,3,9,30,94260,93170,92130,88.34,0,0.14,0.31,0.37,0.41000000000000003,0.59,0.93,1.26,1.6300000000000001,2.25,182.18,194.11,187.99,163.20000000000002,148.97,136.36,134.2,134.85,139.14000000000001,22.42,22.91,23.06,23.17,23.29,23.400000000000002,23.53,23.64,23.82,N/A,N/A +2013,9,3,10,30,94280,93200,92150,88.78,0,0.13,0.59,0.97,1.32,1.6400000000000001,1.94,2.22,2.48,2.93,215.29,167.20000000000002,134.07,131.72,131.21,131.94,132.93,133.95,136.46,22.04,22.52,22.7,22.84,22.96,23.07,23.16,23.240000000000002,23.34,N/A,N/A +2013,9,3,11,30,94310,93220,92170,91.13,0,0.4,0.5,0.5,0.5700000000000001,0.67,0.81,1,1.22,1.69,342.89,23.580000000000002,46.4,73.51,94.83,114.24000000000001,126.02,136.8,148.29,21.71,22.400000000000002,22.57,22.57,22.59,22.6,22.63,22.650000000000002,22.71,N/A,N/A +2013,9,3,12,30,94350,93260,92210,92.18,0,0.26,0.35000000000000003,0.41000000000000003,0.58,0.66,0.67,0.77,0.89,1.34,206.44,119.82000000000001,94.02,92.49,101.44,114.91,128.2,141.38,153.38,21.46,22.18,22.35,22.330000000000002,22.31,22.29,22.3,22.32,22.41,N/A,N/A +2013,9,3,13,30,94370,93270,92220,82.75,0,0.29,0.35000000000000003,0.46,0.76,0.98,1.1300000000000001,1.25,1.3800000000000001,1.74,65.69,72.91,79.28,91.27,102.38,111.71000000000001,120.4,128.51,140.73,22.27,21.990000000000002,21.97,22.06,22.17,22.29,22.330000000000002,22.35,22.34,N/A,N/A +2013,9,3,14,30,94390,93310,92260,71.28,0,0.67,0.84,0.89,0.9400000000000001,0.98,1.02,1.07,1.12,1.36,105.44,109,111.15,113.55,116.41,119.39,123.26,127.05,137.93,24.44,24,23.81,23.62,23.44,23.27,23.09,22.93,22.62,N/A,N/A +2013,9,3,15,30,94400,93320,92280,59.44,0,0.6,0.81,0.89,0.96,1.01,1.06,1.1,1.1500000000000001,1.23,143.52,145.06,146.3,147.58,148.81,149.97,151.18,152.32,154.74,26.84,26.34,26.12,25.900000000000002,25.7,25.51,25.310000000000002,25.13,24.75,N/A,N/A +2013,9,3,16,30,94380,93310,92280,45.11,0,0.9,1.08,1.1300000000000001,1.16,1.18,1.2,1.22,1.23,1.25,169.59,164.37,161.88,160.34,159.14000000000001,158.15,157.32,156.61,155.4,28.98,28.41,28.16,27.92,27.7,27.490000000000002,27.28,27.080000000000002,26.68,N/A,N/A +2013,9,3,17,30,94360,93290,92260,39.09,0,1.67,2,2.08,2.14,2.18,2.21,2.23,2.2600000000000002,2.29,138.45000000000002,137.82,137.43,137.1,136.8,136.53,136.28,136.06,135.66,30.19,29.560000000000002,29.3,29.05,28.82,28.6,28.38,28.19,27.78,N/A,N/A +2013,9,3,18,30,94310,93250,92220,35.63,0,2.4,2.92,3.06,3.13,3.19,3.23,3.2600000000000002,3.29,3.33,151.15,150.37,149.97,149.61,149.29,148.99,148.70000000000002,148.45000000000002,147.95000000000002,31.19,30.53,30.25,29.990000000000002,29.76,29.54,29.32,29.12,28.71,N/A,N/A +2013,9,3,19,30,94280,93220,92200,33.51,0,2.58,3.09,3.2,3.25,3.29,3.31,3.3200000000000003,3.33,3.34,143.89000000000001,143.83,143.72,143.55,143.38,143.20000000000002,143.01,142.82,142.44,31.990000000000002,31.310000000000002,31.03,30.77,30.54,30.32,30.1,29.89,29.48,N/A,N/A +2013,9,3,20,30,94220,93170,92140,31.830000000000002,0,3.0300000000000002,3.67,3.83,3.91,3.97,4,4.03,4.05,4.07,155.07,154.47,154.12,153.79,153.49,153.21,152.95000000000002,152.71,152.23,32.64,31.95,31.67,31.42,31.18,30.96,30.740000000000002,30.54,30.12,N/A,N/A +2013,9,3,21,30,94140,93090,92070,30.92,0,3.69,4.5,4.71,4.8100000000000005,4.88,4.93,4.96,4.98,5,163.97,163.08,162.58,162.11,161.71,161.35,160.99,160.66,160.03,33.05,32.35,32.08,31.82,31.59,31.37,31.150000000000002,30.94,30.52,N/A,N/A +2013,9,3,22,30,94100,93040,92020,30.310000000000002,0,3.6,4.41,4.61,4.72,4.78,4.82,4.8500000000000005,4.87,4.89,154.11,154.3,154.42000000000002,154.54,154.65,154.74,154.83,154.92000000000002,155.08,33.11,32.46,32.21,31.970000000000002,31.740000000000002,31.53,31.310000000000002,31.11,30.7,N/A,N/A +2013,9,3,23,30,94170,93100,92060,53.79,0,8.950000000000001,11.450000000000001,12.05,12.450000000000001,12.73,12.93,13.09,13.23,13.51,40.01,40.54,40.79,41.050000000000004,41.300000000000004,41.550000000000004,41.83,42.08,42.68,27.3,26.86,26.66,26.47,26.28,26.11,25.93,25.77,25.46,N/A,N/A +2013,9,4,0,30,94110,93040,92010,52.82,0,5.17,6.28,6.61,6.95,7.32,7.71,7.74,7.69,6.9,29.580000000000002,28.48,27.5,26.13,26.080000000000002,26.740000000000002,29.830000000000002,33.22,39.68,27.8,27.45,27.34,27.25,27.37,27.580000000000002,28.2,28.86,28.990000000000002,N/A,N/A +2013,9,4,1,30,94080,93020,91990,47.28,0,2.5500000000000003,3.64,4,4.3500000000000005,4.64,4.89,5.14,5.37,5.78,113.44,112.27,111.28,110.09,108.84,107.57000000000001,106.07000000000001,104.58,101.35000000000001,28.98,28.73,28.59,28.41,28.21,28.01,27.78,27.57,27.19,N/A,N/A +2013,9,4,2,30,94090,93030,92000,52.050000000000004,0,0.29,0.55,0.6,0.63,0.78,1.02,1.34,1.72,2.5500000000000003,54.75,56.21,65.52,86.92,98.96000000000001,106.68,108.03,107.3,106.5,28.32,28.44,28.43,28.36,28.32,28.310000000000002,28.29,28.28,28.21,N/A,N/A +2013,9,4,3,30,94120,93050,92030,52.52,0,0.66,0.25,0.24,0.53,0.92,1.3900000000000001,1.85,2.33,3.23,340.37,29.13,48.910000000000004,103.97,136.86,138.17000000000002,138.34,138.11,137.33,28.21,28.44,28.47,28.46,28.48,28.490000000000002,28.52,28.560000000000002,28.63,N/A,N/A +2013,9,4,4,30,94190,93120,92090,53.88,0,1.25,3.4,4.4,5.15,5.73,6.15,6.4,6.59,6.63,145.56,150.33,152.41,151.92000000000002,151.41,150.89000000000001,150.79,150.81,152.15,28.04,28.63,28.79,28.900000000000002,28.95,28.97,28.94,28.91,28.8,N/A,N/A +2013,9,4,5,30,94190,93130,92100,39.87,0,3.64,5.9,6.32,6.38,6.41,6.43,6.49,6.5600000000000005,6.76,164.82,165.85,166.55,167.25,167.48,167.45000000000002,167.06,166.61,167.23,29.2,29.810000000000002,29.88,29.79,29.63,29.45,29.25,29.080000000000002,28.71,N/A,N/A +2013,9,4,6,30,94250,93180,92150,47.57,0,1.7,3.86,4.67,5.34,5.87,6.3100000000000005,6.65,6.94,7.44,161.84,167,170.26,173.02,175.57,177.93,179.73,181.26,182.75,27.36,28.150000000000002,28.330000000000002,28.46,28.51,28.51,28.44,28.36,28.11,N/A,N/A +2013,9,4,7,30,94310,93230,92200,48.2,0,1.16,3.1,4.1,5.05,5.89,6.67,7.3500000000000005,7.97,8.97,168.83,177.71,182.5,184.24,185.14000000000001,185.49,185.52,185.48,185.33,26.75,27.34,27.43,27.490000000000002,27.52,27.53,27.490000000000002,27.44,27.27,N/A,N/A +2013,9,4,8,30,94360,93280,92240,48.26,0,1.1400000000000001,2.99,3.96,4.83,5.62,6.33,6.93,7.48,8.32,150.89000000000001,166.89000000000001,176.3,180.82,184.05,186.32,187.72,188.86,189.88,26.07,26.62,26.67,26.71,26.73,26.73,26.69,26.64,26.5,N/A,N/A +2013,9,4,9,30,94370,93290,92240,51.93,0,0.9,2.05,2.65,3.44,4.21,4.97,5.62,6.24,7.15,118.38,148.39000000000001,164.55,174.38,180.66,184.68,186.97,188.81,190.58,25.12,25.64,25.73,25.82,25.88,25.94,25.96,25.98,25.95,N/A,N/A +2013,9,4,10,30,94370,93290,92240,53.08,0,0.91,1.85,2.24,2.73,3.21,3.68,4.1,4.5,5.14,115.53,146.72,161.28,169.6,175.15,179.21,181.64000000000001,183.67000000000002,185.62,24.61,25.32,25.44,25.490000000000002,25.51,25.51,25.51,25.490000000000002,25.42,N/A,N/A +2013,9,4,11,30,94410,93320,92280,54.620000000000005,0,0.88,1.49,1.6400000000000001,1.82,2.05,2.31,2.59,2.88,3.4,104.65,124.95,137.62,150.22,159.31,166.74,171.89000000000001,176.35,181.54,23.75,24.45,24.650000000000002,24.8,24.900000000000002,24.98,25.02,25.060000000000002,25.05,N/A,N/A +2013,9,4,12,30,94450,93360,92320,56.95,0,0.53,1.1400000000000001,1.3800000000000001,1.57,1.77,1.97,2.2,2.42,2.83,89.59,114.18,129.54,141.55,151.15,159.44,165.17000000000002,170.18,176.34,23,23.82,24.09,24.310000000000002,24.46,24.57,24.63,24.66,24.650000000000002,N/A,N/A +2013,9,4,13,30,94460,93370,92320,50.82,0,0.65,0.99,1.21,1.47,1.58,1.61,1.67,1.73,1.96,80.57000000000001,100.57000000000001,110.54,117.37,125.66,133.69,142.49,150.54,163.31,23.67,23.52,23.66,23.96,24.17,24.330000000000002,24.42,24.5,24.57,N/A,N/A +2013,9,4,14,30,94490,93410,92360,41.54,0,1.46,1.81,1.92,1.98,2.04,2.08,2.13,2.17,2.34,131.5,136.48,139.41,142.03,144.54,146.9,149.18,151.28,155.68,26.63,26.2,26.01,25.82,25.64,25.48,25.310000000000002,25.150000000000002,24.84,N/A,N/A +2013,9,4,15,30,94480,93410,92370,34.83,0,1.17,1.43,1.5,1.54,1.57,1.59,1.6,1.61,1.6300000000000001,151.06,154.27,156.07,157.58,159,160.31,161.63,162.83,165.38,28.88,28.37,28.14,27.92,27.72,27.52,27.32,27.14,26.76,N/A,N/A +2013,9,4,16,30,94490,93420,92390,30.900000000000002,0,1.96,2.33,2.41,2.44,2.45,2.45,2.45,2.44,2.42,147.18,148.64000000000001,149.4,150.07,150.66,151.19,151.73,152.21,153.20000000000002,30.64,30.04,29.78,29.54,29.32,29.12,28.91,28.71,28.32,N/A,N/A +2013,9,4,17,30,94450,93390,92360,30.05,0,2.08,2.48,2.57,2.61,2.64,2.66,2.67,2.68,2.69,126.04,126.69,127.03,127.25,127.4,127.51,127.59,127.65,127.71000000000001,31.8,31.16,30.89,30.64,30.41,30.19,29.97,29.77,29.36,N/A,N/A +2013,9,4,18,30,94420,93360,92330,28.41,0,2.35,2.86,2.98,3.06,3.12,3.16,3.19,3.22,3.2600000000000002,147.18,146.75,146.46,146.16,145.88,145.6,145.33,145.07,144.59,32.78,32.11,31.830000000000002,31.57,31.330000000000002,31.11,30.89,30.68,30.27,N/A,N/A +2013,9,4,19,30,94370,93320,92290,27,0,2.82,3.4,3.54,3.61,3.66,3.69,3.71,3.73,3.75,140.61,140.63,140.59,140.48,140.36,140.24,140.1,139.95000000000002,139.67000000000002,33.480000000000004,32.79,32.5,32.24,32.01,31.78,31.560000000000002,31.35,30.93,N/A,N/A +2013,9,4,20,30,94330,93280,92260,25.990000000000002,0,3.46,4.19,4.36,4.45,4.51,4.55,4.57,4.59,4.61,157.69,156.86,156.35,155.89000000000001,155.47,155.09,154.72,154.38,153.72,33.97,33.26,32.980000000000004,32.72,32.49,32.26,32.04,31.830000000000002,31.41,N/A,N/A +2013,9,4,21,30,94290,93240,92220,25.13,0,3.5300000000000002,4.29,4.48,4.59,4.66,4.71,4.74,4.76,4.79,148.45000000000002,148.69,148.76,148.76,148.74,148.69,148.64000000000001,148.58,148.45000000000002,34.33,33.64,33.37,33.11,32.88,32.65,32.43,32.22,31.8,N/A,N/A +2013,9,4,22,30,94230,93180,92170,24.64,0,3.45,4.2,4.38,4.46,4.51,4.54,4.5600000000000005,4.57,4.58,151.87,152.04,152.11,152.12,152.11,152.09,152.07,152.03,151.95000000000002,34.31,33.68,33.43,33.19,32.97,32.75,32.54,32.34,31.93,N/A,N/A +2013,9,4,23,30,94210,93160,92150,24.6,0,3.73,4.57,4.75,4.82,4.86,4.89,4.9,4.91,4.91,160.5,159.95000000000002,159.6,159.26,158.93,158.62,158.31,158.02,157.45000000000002,34.13,33.6,33.38,33.160000000000004,32.94,32.74,32.53,32.34,31.94,N/A,N/A +2013,9,5,0,30,94210,93150,92140,26.060000000000002,0,3.19,4.05,4.25,4.3500000000000005,4.42,4.46,4.49,4.5,4.5200000000000005,160.94,160.37,160.06,159.81,159.6,159.41,159.23,159.06,158.75,33.68,33.33,33.160000000000004,32.96,32.76,32.56,32.37,32.18,31.79,N/A,N/A +2013,9,5,1,30,94250,93200,92180,31.32,0,0.62,1.49,1.8900000000000001,2.29,2.65,2.95,3.21,3.44,3.81,167.33,168.63,169.74,169.73,169.63,169.47,169.24,168.99,168.27,32.230000000000004,32.35,32.29,32.2,32.09,31.96,31.82,31.67,31.35,N/A,N/A +2013,9,5,2,30,94280,93220,92200,27.91,0,1.49,2.33,2.48,2.56,2.5500000000000003,2.49,2.23,1.96,1.23,197.75,196.96,196.75,197.01,196.62,195.85,194.71,193.66,188.87,32.730000000000004,32.42,32.2,31.91,31.68,31.48,31.28,31.09,30.69,N/A,N/A +2013,9,5,3,30,94300,93240,92220,33.88,0,2.57,4.21,4.54,4.73,4.89,5.0200000000000005,5.21,5.41,5.94,157.75,155.09,153.62,152.75,152.18,151.8,151.51,151.28,150.84,30.990000000000002,31.13,31.080000000000002,30.98,30.86,30.72,30.55,30.39,30.02,N/A,N/A +2013,9,5,4,30,94330,93270,92240,35.84,0,3.65,5.92,6.7,7.37,7.9,8.33,8.620000000000001,8.86,9.01,152.71,153.25,153.39000000000001,153.24,153.38,153.66,154.3,154.98,156.82,29.82,30.05,30.11,30.13,30.12,30.09,30.02,29.94,29.650000000000002,N/A,N/A +2013,9,5,5,30,94370,93300,92270,38.26,0,3.27,5.57,6.38,7.11,7.75,8.31,8.82,9.27,10,145.22,146.28,146.83,147.25,147.79,148.37,149.14000000000001,149.91,151.96,28.810000000000002,29.060000000000002,29.12,29.16,29.16,29.14,29.09,29.04,28.84,N/A,N/A +2013,9,5,6,30,94410,93330,92300,37.36,0,3.77,6.1000000000000005,6.890000000000001,7.61,8.25,8.84,9.39,9.89,10.57,159.11,159.22,159.36,159.48,159.96,160.6,161.58,162.58,164.6,28.35,28.650000000000002,28.71,28.740000000000002,28.73,28.71,28.68,28.64,28.48,N/A,N/A +2013,9,5,7,30,94470,93390,92350,43.76,0,1.31,3.5,4.5600000000000005,5.5600000000000005,6.41,7.16,7.7700000000000005,8.33,9.17,173.09,173.35,173.57,173.62,173.72,173.84,174.07,174.32,175,26.84,27.35,27.45,27.55,27.62,27.66,27.66,27.650000000000002,27.53,N/A,N/A +2013,9,5,8,30,94490,93410,92370,46.67,0,0.92,2.41,3.23,4.17,5.08,5.95,6.72,7.45,8.58,115.7,146.68,162.98,169.43,173.18,175.19,175.93,176.35,176.03,25.8,26.32,26.46,26.62,26.740000000000002,26.85,26.900000000000002,26.94,26.88,N/A,N/A +2013,9,5,9,30,94520,93440,92400,47.94,0,1.41,3.17,3.91,4.67,5.33,5.91,6.41,6.88,7.48,128.84,153.8,166.42000000000002,172.51,176.01,178,178.4,178.43,176.62,25.44,26.16,26.37,26.560000000000002,26.68,26.76,26.77,26.77,26.59,N/A,N/A +2013,9,5,10,30,94510,93430,92380,49.4,0,2.7,4.83,5.59,6.43,7.21,7.95,8.52,9.02,9.43,135.11,143.65,148.24,151.85,154.84,157.43,160.16,162.76,168,24.97,25.34,25.39,25.36,25.28,25.18,25.060000000000002,24.95,24.79,N/A,N/A +2013,9,5,11,30,94560,93470,92420,58,0,1.59,3.45,4.22,5.0600000000000005,5.87,6.65,7.32,7.930000000000001,8.63,133.18,142.25,148.03,153.07,157.47,161.48,164.70000000000002,167.57,170.95000000000002,23.81,24.17,24.22,24.27,24.32,24.37,24.400000000000002,24.44,24.400000000000002,N/A,N/A +2013,9,5,12,30,94580,93490,92440,65.83,0,1.33,2.82,3.4,4,4.61,5.22,5.86,6.48,7.33,133.48,138.86,142.52,146.25,150.07,153.95000000000002,157.63,161.17000000000002,167.1,23.2,23.52,23.55,23.580000000000002,23.61,23.650000000000002,23.7,23.740000000000002,23.81,N/A,N/A +2013,9,5,13,30,94600,93520,92460,61.65,0,2.25,2.7600000000000002,3.13,3.79,4.3500000000000005,4.82,5.22,5.58,6.18,138.61,142.11,145.46,150.59,154.27,157.1,159.76,162.23,166.67000000000002,24.12,23.81,23.69,23.580000000000002,23.52,23.47,23.46,23.46,23.45,N/A,N/A +2013,9,5,14,30,94640,93560,92510,57.2,0,2.81,3.52,3.74,3.86,3.94,4,4.05,4.09,4.19,147.77,149.62,150.62,151.56,152.47,153.34,154.31,155.23,157.35,25.86,25.35,25.14,24.93,24.73,24.55,24.36,24.18,23.82,N/A,N/A +2013,9,5,15,30,94620,93540,92500,51.82,0,2.9,3.58,3.7600000000000002,3.85,3.91,3.94,3.96,3.98,3.99,158.94,159.47,159.70000000000002,159.87,160.03,160.16,160.31,160.44,160.71,27.45,26.85,26.6,26.37,26.16,25.96,25.75,25.560000000000002,25.17,N/A,N/A +2013,9,5,16,30,94640,93560,92530,46.54,0,2.57,3.13,3.2800000000000002,3.35,3.4,3.43,3.45,3.47,3.48,158.49,158.3,158.19,158,157.82,157.64000000000001,157.44,157.25,156.85,28.73,28.09,27.830000000000002,27.580000000000002,27.36,27.150000000000002,26.93,26.740000000000002,26.34,N/A,N/A +2013,9,5,17,30,94590,93520,92490,41.77,0,2.84,3.47,3.63,3.72,3.7800000000000002,3.83,3.86,3.89,3.92,139.24,139.65,139.87,140,140.08,140.14000000000001,140.19,140.23,140.29,30.03,29.35,29.07,28.82,28.580000000000002,28.37,28.150000000000002,27.94,27.54,N/A,N/A +2013,9,5,18,30,94560,93500,92470,38.44,0,2.8000000000000003,3.42,3.59,3.69,3.75,3.81,3.84,3.88,3.92,136.99,137.17000000000002,137.24,137.21,137.16,137.1,137.03,136.96,136.81,31.12,30.44,30.150000000000002,29.89,29.650000000000002,29.43,29.21,29,28.59,N/A,N/A +2013,9,5,19,30,94510,93440,92420,35.07,0,2.88,3.49,3.65,3.74,3.81,3.85,3.88,3.91,3.95,135.89000000000001,136.47,136.73,136.89000000000001,137.02,137.12,137.20000000000002,137.26,137.36,32.1,31.41,31.12,30.86,30.62,30.39,30.17,29.96,29.54,N/A,N/A +2013,9,5,20,30,94430,93380,92350,31.810000000000002,0,2.89,3.48,3.62,3.7,3.75,3.79,3.81,3.83,3.85,129.3,130.41,131.03,131.51,131.9,132.22,132.52,132.78,133.26,32.88,32.19,31.900000000000002,31.64,31.400000000000002,31.18,30.95,30.75,30.330000000000002,N/A,N/A +2013,9,5,21,30,94370,93320,92290,31.470000000000002,0,3.06,3.71,3.89,3.98,4.05,4.09,4.13,4.15,4.19,132.77,133.88,134.48,134.92000000000002,135.27,135.56,135.82,136.05,136.45,33.28,32.6,32.32,32.07,31.830000000000002,31.61,31.39,31.19,30.77,N/A,N/A +2013,9,5,22,30,94410,93350,92310,42.4,0,11.26,14.39,15.040000000000001,15.41,15.64,15.77,15.82,15.85,15.780000000000001,133.88,133.82,133.72,133.56,133.4,133.24,133.07,132.91,132.57,30.53,29.72,29.42,29.13,28.87,28.63,28.400000000000002,28.2,27.79,N/A,N/A +2013,9,5,23,30,94430,93370,92330,43.160000000000004,0,4.63,5.97,6.34,6.58,6.74,6.8500000000000005,6.93,6.99,7.0600000000000005,112.21000000000001,112.78,113.06,113.15,113.18,113.17,113.12,113.07000000000001,112.91,29.7,29.27,29.080000000000002,28.87,28.67,28.47,28.27,28.080000000000002,27.69,N/A,N/A +2013,9,6,0,30,94430,93370,92340,38.58,0,4.84,6.25,6.63,6.87,7.04,7.17,7.26,7.33,7.42,107.28,107.21000000000001,107.09,106.93,106.77,106.60000000000001,106.44,106.28,105.95,30.060000000000002,29.68,29.490000000000002,29.29,29.09,28.89,28.69,28.5,28.11,N/A,N/A +2013,9,6,1,30,94470,93400,92370,45.9,0,4.1,5.68,6.15,6.5200000000000005,6.8100000000000005,7.04,7.22,7.37,7.6000000000000005,108.9,108.94,109,108.95,108.87,108.78,108.7,108.61,108.51,28.990000000000002,28.740000000000002,28.580000000000002,28.39,28.19,28,27.79,27.61,27.2,N/A,N/A +2013,9,6,2,30,94470,93390,92360,47.5,0,3.4,5.07,5.63,6.1000000000000005,6.47,6.79,7.0600000000000005,7.3100000000000005,7.73,115.98,116.4,116.5,116.41,116.35000000000001,116.31,116.33,116.37,116.62,28.17,27.97,27.830000000000002,27.67,27.490000000000002,27.32,27.14,26.97,26.61,N/A,N/A +2013,9,6,3,30,94530,93450,92400,59.58,0,7.22,9.450000000000001,10.040000000000001,10.46,10.78,11.040000000000001,11.27,11.48,11.85,147.41,147.51,147.56,147.62,147.71,147.82,148,148.17000000000002,148.70000000000002,26.26,25.93,25.75,25.55,25.34,25.150000000000002,24.94,24.76,24.36,N/A,N/A +2013,9,6,4,30,94540,93450,92400,71.38,0,4.75,6.09,6.42,6.63,6.7700000000000005,6.86,6.93,6.98,7.0600000000000005,176.45000000000002,176.41,176.38,176.35,176.31,176.29,176.24,176.20000000000002,176.11,25.01,24.66,24.47,24.28,24.080000000000002,23.89,23.69,23.51,23.12,N/A,N/A +2013,9,6,5,30,94530,93440,92390,75.15,0,2.73,3.66,4,4.32,4.57,4.8,5.03,5.26,5.91,175.26,175.02,175.03,175.03,175.03,175.05,175.04,175.03,174.59,24.32,24,23.84,23.650000000000002,23.47,23.29,23.1,22.93,22.67,N/A,N/A +2013,9,6,6,30,94550,93460,92410,76.96000000000001,0,1.3,2.19,2.6,2.97,3.3200000000000003,3.65,3.93,4.19,4.71,171.96,171.83,171.8,172.07,172.43,172.84,173.17000000000002,173.45000000000002,173.88,24.07,23.8,23.64,23.46,23.28,23.12,22.94,22.78,22.48,N/A,N/A +2013,9,6,7,30,94550,93470,92420,79.18,0,0.28,0.85,1.18,1.5,1.81,2.11,2.46,2.81,3.56,131.96,156.72,171.55,177.13,179.96,180.97,181.09,181.01,179.81,23.81,23.64,23.5,23.34,23.18,23.02,22.88,22.76,22.56,N/A,N/A +2013,9,6,8,30,94560,93480,92420,81.83,0,0.37,1.17,1.57,1.82,2.14,2.52,2.93,3.35,4.3,113.73,125.77,137.81,152.52,160.02,163.42000000000002,164.87,165.81,165.49,23.42,23.32,23.23,23.13,23.05,22.97,22.900000000000002,22.830000000000002,22.72,N/A,N/A +2013,9,6,9,30,94570,93480,92430,84.21000000000001,0,0.17,0.9500000000000001,1.6300000000000001,2.08,2.54,3.02,3.56,4.14,5.34,97.48,113.15,128.74,136.69,143.15,148.75,152.34,155.52,158.64000000000001,23.14,23.150000000000002,23.09,22.990000000000002,22.900000000000002,22.830000000000002,22.76,22.7,22.55,N/A,N/A +2013,9,6,10,30,94570,93480,92430,84.8,0,0.75,1.56,1.87,2.24,2.67,3.13,3.66,4.19,5.21,81.66,96.18,108.69,125.37,135.55,142.09,146.16,149.70000000000002,154.64000000000001,22.88,22.95,22.92,22.87,22.8,22.7,22.6,22.5,22.28,N/A,N/A +2013,9,6,11,30,94580,93490,92430,84.5,0,1.09,1.8900000000000001,2.14,2.5500000000000003,2.91,3.23,3.58,3.93,4.6000000000000005,70.36,92.59,105.56,118.4,126.26,131.23,136.04,140.69,150.43,22.54,22.73,22.72,22.68,22.56,22.42,22.27,22.13,21.89,N/A,N/A +2013,9,6,12,30,94600,93510,92460,86.59,0,1.5,3.13,3.68,4.2,4.68,5.12,5.54,5.92,6.5,129.18,131.46,133.63,136.61,140.09,143.75,147.81,151.71,158.48,22.09,22.25,22.23,22.18,22.11,22.05,22,21.96,21.91,N/A,N/A +2013,9,6,13,30,94620,93530,92470,79.5,0,2.61,3.2600000000000002,3.5,3.73,4.17,4.73,5.24,5.71,6.26,141.89000000000001,143.33,144.35,145.49,147.08,148.97,151.06,153.12,156.98,22.82,22.48,22.32,22.17,22.04,21.93,21.88,21.84,21.81,N/A,N/A +2013,9,6,14,30,94640,93560,92500,70.71000000000001,0,3.2600000000000002,4.05,4.26,4.36,4.43,4.47,4.5,4.5200000000000005,4.55,148.99,150.03,150.58,151,151.36,151.67000000000002,152.01,152.32,153.12,24.490000000000002,23.96,23.740000000000002,23.53,23.330000000000002,23.150000000000002,22.95,22.78,22.41,N/A,N/A +2013,9,6,15,30,94660,93580,92530,61.480000000000004,0,2.79,3.43,3.62,3.72,3.7800000000000002,3.83,3.86,3.88,3.9,161.17000000000002,161.19,161.14000000000001,161.06,160.98,160.9,160.82,160.73,160.55,26.16,25.55,25.3,25.07,24.85,24.650000000000002,24.44,24.25,23.85,N/A,N/A +2013,9,6,16,30,94630,93550,92510,53.63,0,2.7600000000000002,3.38,3.56,3.65,3.72,3.7600000000000002,3.8000000000000003,3.8200000000000003,3.85,149.44,149.51,149.59,149.58,149.53,149.48,149.4,149.33,149.15,27.59,26.94,26.66,26.42,26.19,25.98,25.76,25.560000000000002,25.16,N/A,N/A +2013,9,6,17,30,94590,93520,92480,46.93,0,3.14,3.85,4.04,4.14,4.21,4.2700000000000005,4.3100000000000005,4.34,4.39,138.93,139.33,139.57,139.71,139.82,139.9,139.96,140,140.08,28.93,28.240000000000002,27.95,27.69,27.46,27.240000000000002,27.02,26.82,26.41,N/A,N/A +2013,9,6,18,30,94540,93470,92440,42.26,0,3.61,4.44,4.67,4.8,4.89,4.95,5,5.04,5.1000000000000005,134.34,134.58,134.67000000000002,134.69,134.69,134.67000000000002,134.64000000000001,134.61,134.53,30.04,29.310000000000002,29.02,28.75,28.51,28.28,28.060000000000002,27.85,27.43,N/A,N/A +2013,9,6,19,30,94480,93420,92380,38.96,0,3.81,4.66,4.89,5.0200000000000005,5.11,5.17,5.21,5.25,5.3,132.7,133.26,133.55,133.74,133.88,133.99,134.09,134.16,134.28,30.95,30.2,29.91,29.64,29.39,29.17,28.94,28.73,28.310000000000002,N/A,N/A +2013,9,6,20,30,94410,93350,92320,37.37,0,3.95,4.8500000000000005,5.09,5.23,5.33,5.39,5.44,5.48,5.54,135.04,135.6,135.89000000000001,136.06,136.19,136.28,136.35,136.41,136.5,31.580000000000002,30.84,30.55,30.28,30.04,29.810000000000002,29.59,29.38,28.96,N/A,N/A +2013,9,6,21,30,94340,93280,92250,36.980000000000004,0,3.99,4.9,5.15,5.28,5.38,5.44,5.49,5.53,5.58,144.08,143.85,143.65,143.43,143.21,143,142.78,142.58,142.18,31.96,31.240000000000002,30.96,30.7,30.46,30.240000000000002,30.02,29.810000000000002,29.39,N/A,N/A +2013,9,6,22,30,94260,93200,92180,35.67,0,4.5600000000000005,5.66,5.97,6.15,6.2700000000000005,6.36,6.42,6.48,6.5600000000000005,140.51,140.42000000000002,140.38,140.31,140.24,140.18,140.11,140.05,139.94,32.17,31.490000000000002,31.23,30.98,30.75,30.53,30.310000000000002,30.1,29.69,N/A,N/A +2013,9,6,23,30,94230,93170,92150,36.52,0,5.23,6.53,6.87,7.0600000000000005,7.18,7.2700000000000005,7.33,7.38,7.44,122.06,122.61,122.84,122.95,123.01,123.06,123.09,123.11,123.14,31.68,31.1,30.88,30.64,30.43,30.22,30.01,29.810000000000002,29.41,N/A,N/A +2013,9,7,0,30,94200,93140,92120,40.46,0,4.34,5.48,5.7700000000000005,5.92,6.03,6.09,6.140000000000001,6.17,6.2,118.61,119.57000000000001,120.17,120.77,121.33,121.85000000000001,122.37,122.86,123.81,30.87,30.48,30.3,30.09,29.89,29.7,29.5,29.310000000000002,28.92,N/A,N/A +2013,9,7,1,30,94210,93150,92120,43.800000000000004,0,4.04,5.61,6.07,6.43,6.7,6.9,7.07,7.21,7.4,114.4,114.29,114.23,114.13,114.05,113.98,113.93,113.89,113.85000000000001,30.150000000000002,29.900000000000002,29.75,29.560000000000002,29.37,29.18,28.990000000000002,28.8,28.41,N/A,N/A +2013,9,7,2,30,94260,93200,92170,48.56,0,3.96,5.53,6.0600000000000005,6.51,6.88,7.2,7.49,7.75,8.22,117.33,117.23,117.10000000000001,116.91,116.82000000000001,116.78,116.83,116.89,117.21000000000001,28.89,28.63,28.48,28.3,28.13,27.96,27.78,27.61,27.27,N/A,N/A +2013,9,7,3,30,94250,93180,92140,48.64,0,2.56,4.15,4.73,5.25,5.7,6.1000000000000005,6.48,6.83,7.51,130.04,128.14000000000001,126.98,126.02,125.43,125.09,125.11,125.22,126.14,28.44,28.3,28.19,28.04,27.88,27.72,27.54,27.38,27.05,N/A,N/A +2013,9,7,4,30,94280,93210,92170,49.74,0,3.2,4.99,5.63,6.2,6.71,7.18,7.62,8.040000000000001,8.76,140.26,141.14000000000001,141.55,141.70000000000002,141.89000000000001,142.12,142.61,143.15,145.35,27.76,27.68,27.6,27.490000000000002,27.37,27.26,27.150000000000002,27.05,26.88,N/A,N/A +2013,9,7,5,30,94280,93210,92170,51.29,0,2.7600000000000002,4.55,5.19,5.74,6.23,6.66,7.07,7.46,8.19,137.09,138.76,139.95000000000002,141.20000000000002,142.87,144.79,147.25,149.72,154.76,27.25,27.310000000000002,27.28,27.240000000000002,27.18,27.11,27.05,26.990000000000002,26.84,N/A,N/A +2013,9,7,6,30,94320,93240,92200,52.870000000000005,0,3.72,5.84,6.65,7.4,8.09,8.74,9.36,9.94,10.97,147.01,149.75,151.68,153.86,156.1,158.34,160.47,162.45000000000002,165.84,26.78,26.72,26.63,26.52,26.39,26.26,26.09,25.94,25.560000000000002,N/A,N/A +2013,9,7,7,30,94360,93280,92240,59.25,0,2.96,4.8100000000000005,5.5,6.16,6.76,7.3100000000000005,7.8100000000000005,8.27,9.07,152.18,157.14000000000001,160.13,162.70000000000002,164.93,166.93,168.69,170.29,172.79,25.89,25.85,25.78,25.68,25.560000000000002,25.43,25.28,25.13,24.78,N/A,N/A +2013,9,7,8,30,94380,93300,92260,64.86,0,2.08,3.66,4.21,4.87,5.49,6.07,6.61,7.11,7.95,132.24,145.42000000000002,153.07,159.08,163.51,166.94,169.69,172.14000000000001,175.89000000000001,25.03,25.11,25.060000000000002,24.990000000000002,24.91,24.82,24.7,24.59,24.32,N/A,N/A +2013,9,7,9,30,94380,93300,92250,68.73,0,2.16,3.5300000000000002,3.93,4.41,4.92,5.47,6.0200000000000005,6.5600000000000005,7.45,125.44,134.21,139.95000000000002,146.17000000000002,151.63,156.68,160.97,164.92000000000002,170.70000000000002,24.330000000000002,24.43,24.400000000000002,24.36,24.310000000000002,24.25,24.18,24.11,23.91,N/A,N/A +2013,9,7,10,30,94390,93310,92260,72.95,0,1.78,3.38,3.85,4.3,4.75,5.2,5.63,6.05,6.74,129.96,135.88,140.02,144.54,149.24,154.07,158.70000000000002,163.06,169.86,23.740000000000002,23.91,23.89,23.87,23.84,23.82,23.79,23.76,23.650000000000002,N/A,N/A +2013,9,7,11,30,94400,93310,92260,75.89,0,1.6500000000000001,3.23,3.7,4.13,4.54,4.93,5.29,5.64,6.21,126.7,132.8,136.94,141.35,146.16,151.13,156.07,160.74,168.34,23.31,23.5,23.490000000000002,23.47,23.46,23.46,23.45,23.45,23.400000000000002,N/A,N/A +2013,9,7,12,30,94420,93330,92280,77.95,0,1.27,2.83,3.44,3.97,4.43,4.83,5.16,5.46,5.82,138.36,141.54,143.8,146.06,149,152.27,155.93,159.44,165.36,22.97,23.19,23.18,23.16,23.150000000000002,23.150000000000002,23.13,23.12,23.06,N/A,N/A +2013,9,7,13,30,94430,93340,92290,72.2,0,2.09,2.63,2.93,3.38,3.87,4.39,4.78,5.12,5.47,138.27,140.49,142.3,144.91,147.47,150.02,152.8,155.48,160.8,23.6,23.3,23.16,23.02,22.93,22.87,22.87,22.88,22.88,N/A,N/A +2013,9,7,14,30,94440,93360,92320,62.620000000000005,0,2.5300000000000002,3.16,3.34,3.44,3.5,3.5500000000000003,3.58,3.6,3.64,164.43,165.01,165.35,165.64000000000001,165.92000000000002,166.17000000000002,166.46,166.73,167.33,25.54,25.03,24.82,24.61,24.400000000000002,24.21,24.02,23.84,23.46,N/A,N/A +2013,9,7,15,30,94450,93370,92330,56.13,0,2.68,3.29,3.47,3.56,3.62,3.66,3.68,3.7,3.72,159.39000000000001,159.64000000000001,159.75,159.81,159.85,159.88,159.91,159.93,159.97,27.02,26.42,26.17,25.94,25.72,25.51,25.310000000000002,25.12,24.72,N/A,N/A +2013,9,7,16,30,94410,93340,92300,50.86,0,2.68,3.2800000000000002,3.45,3.5300000000000002,3.59,3.63,3.65,3.67,3.69,151.73,152.12,152.31,152.43,152.52,152.58,152.63,152.67000000000002,152.72,28.41,27.76,27.490000000000002,27.240000000000002,27.01,26.8,26.59,26.39,25.98,N/A,N/A +2013,9,7,17,30,94380,93310,92280,46.1,0,2.92,3.56,3.73,3.8200000000000003,3.89,3.93,3.97,3.99,4.03,142.3,142.47,142.54,142.53,142.5,142.45000000000002,142.38,142.32,142.15,29.59,28.900000000000002,28.62,28.36,28.12,27.900000000000002,27.68,27.48,27.07,N/A,N/A +2013,9,7,18,30,94310,93250,92220,41.01,0,3.08,3.7600000000000002,3.94,4.03,4.1,4.16,4.19,4.23,4.2700000000000005,136.79,136.78,136.78,136.72,136.63,136.53,136.43,136.32,136.09,30.66,29.96,29.67,29.400000000000002,29.16,28.94,28.72,28.51,28.09,N/A,N/A +2013,9,7,19,30,94260,93200,92180,36.95,0,3.7800000000000002,4.61,4.83,4.94,5.0200000000000005,5.08,5.11,5.14,5.17,131.26,131.74,132.01,132.19,132.31,132.41,132.49,132.55,132.67000000000002,31.57,30.830000000000002,30.54,30.26,30.02,29.8,29.57,29.36,28.95,N/A,N/A +2013,9,7,20,30,94170,93120,92090,34.31,0,3.45,4.21,4.41,4.53,4.61,4.66,4.71,4.74,4.79,133.01,132.48,132.19,131.87,131.58,131.31,131.04,130.79,130.29,32.230000000000004,31.51,31.220000000000002,30.96,30.72,30.490000000000002,30.27,30.060000000000002,29.64,N/A,N/A +2013,9,7,21,30,94090,93040,92020,32.11,0,3.52,4.3,4.5,4.61,4.69,4.75,4.79,4.82,4.87,124.27,124.15,124.12,124.03,123.95,123.85000000000001,123.75,123.65,123.43,32.72,32.03,31.75,31.490000000000002,31.26,31.04,30.82,30.61,30.2,N/A,N/A +2013,9,7,22,30,94050,92990,91970,31.17,0,3.2,3.92,4.13,4.24,4.32,4.38,4.42,4.46,4.51,128.74,128.18,127.76,127.33,126.95,126.59,126.25,125.93,125.31,32.86,32.22,31.970000000000002,31.73,31.51,31.29,31.080000000000002,30.88,30.47,N/A,N/A +2013,9,7,23,30,94020,92970,91950,30.93,0,3.85,4.86,5.13,5.3,5.43,5.5200000000000005,5.59,5.65,5.73,116.56,117.27,117.65,117.86,118.01,118.13,118.22,118.29,118.41,33.03,32.49,32.26,32.03,31.82,31.61,31.400000000000002,31.2,30.79,N/A,N/A +2013,9,8,0,30,94050,92980,91950,46.57,0,7.2700000000000005,9.1,9.47,9.65,9.74,9.78,9.790000000000001,9.790000000000001,9.790000000000001,163.05,162.94,162.9,162.75,162.51,162.25,161.85,161.45000000000002,160.19,28.62,28.22,28.03,27.84,27.67,27.5,27.330000000000002,27.18,26.91,N/A,N/A +2013,9,8,1,30,94080,93010,91970,53.32,0,5.75,7.36,7.76,8.03,8.22,8.36,8.49,8.6,8.89,149.12,149.53,149.72,149.8,149.84,149.84,149.81,149.78,149.53,27.5,27.19,27.01,26.82,26.63,26.45,26.26,26.080000000000002,25.73,N/A,N/A +2013,9,8,2,30,94110,93040,92000,53.63,0,4.76,6.44,6.95,7.3500000000000005,7.71,8.03,8.34,8.63,9.200000000000001,134.9,136.36,137.14000000000001,137.79,138.44,139.09,139.61,140.06,140.82,27.18,26.96,26.84,26.7,26.560000000000002,26.44,26.310000000000002,26.2,25.96,N/A,N/A +2013,9,8,3,30,94130,93060,92020,54.71,0,3.93,5.72,6.29,6.76,7.15,7.49,7.8100000000000005,8.11,8.67,144.96,145.73,146,146.01,145.83,145.56,145.11,144.65,143.54,26.67,26.490000000000002,26.37,26.23,26.080000000000002,25.93,25.77,25.63,25.35,N/A,N/A +2013,9,8,4,30,94160,93090,92050,59.01,0,2.44,4.22,4.88,5.41,5.8500000000000005,6.23,6.59,6.92,7.63,149.08,150.41,150.73,150.28,149.46,148.45000000000002,147.38,146.36,144.79,26.04,25.990000000000002,25.900000000000002,25.78,25.650000000000002,25.51,25.37,25.240000000000002,24.97,N/A,N/A +2013,9,8,5,30,94160,93080,92040,64.68,0,0.59,1.9000000000000001,2.68,3.24,3.74,4.19,4.68,5.18,6.23,141.46,147.12,150.04,149.44,148.73,147.98,147.76,147.71,148.69,25.16,25.3,25.26,25.2,25.11,25.02,24.92,24.82,24.61,N/A,N/A +2013,9,8,6,30,94200,93120,92070,67.59,0,0.8300000000000001,2.17,2.83,3.4,4,4.64,5.38,6.140000000000001,7.54,117.57000000000001,127.05,132.39000000000001,134.14000000000001,135.58,136.83,137.6,138.25,138.28,24.53,24.75,24.73,24.650000000000002,24.52,24.37,24.18,23.990000000000002,23.580000000000002,N/A,N/A +2013,9,8,7,30,94240,93160,92110,69.63,0,2.67,4.62,5.43,6.15,6.76,7.29,7.78,8.22,9.05,137.49,140.92000000000002,142.78,143.97,144.89000000000001,145.63,146.35,147.02,148.55,23.92,23.830000000000002,23.72,23.59,23.44,23.29,23.12,22.97,22.63,N/A,N/A +2013,9,8,8,30,94260,93170,92120,74.14,0,3.24,5.0600000000000005,5.76,6.3500000000000005,6.8500000000000005,7.28,7.68,8.040000000000001,8.76,135.51,139.39000000000001,141.61,143.19,144.47,145.56,146.64000000000001,147.66,149.92000000000002,23.330000000000002,23.18,23.06,22.91,22.77,22.62,22.45,22.3,21.98,N/A,N/A +2013,9,8,9,30,94250,93160,92110,80.08,0,0.8200000000000001,2.24,3,3.68,4.28,4.82,5.33,5.83,6.75,97.46000000000001,118.83,131.36,135.4,138.5,140.94,143.17000000000002,145.29,149.01,22.54,22.490000000000002,22.36,22.22,22.080000000000002,21.93,21.77,21.62,21.3,N/A,N/A +2013,9,8,10,30,94210,93120,92070,83.14,0,0.39,0.88,1.21,1.81,2.41,2.99,3.61,4.24,5.53,320.21,78.41,128.07,131.05,135.26,140.21,144.27,148.19,153.28,22.07,21.98,21.85,21.71,21.57,21.44,21.29,21.150000000000002,20.86,N/A,N/A +2013,9,8,11,30,94240,93140,92090,85.38,0,0.45,1.28,1.77,2.27,2.73,3.13,3.62,4.12,5.29,7,67,99.53,109.71000000000001,117.93,124.89,130.32,135.39000000000001,142.68,21.61,21.59,21.48,21.37,21.25,21.13,21,20.87,20.6,N/A,N/A +2013,9,8,12,30,94210,93120,92070,88.43,0,0.42,1.47,2.24,3.0700000000000003,3.81,4.48,5.07,5.63,6.72,29.2,92.26,128.25,132.9,136.05,138.24,140.66,143.07,148.4,21.18,21.2,21.11,21.02,20.91,20.81,20.68,20.57,20.330000000000002,N/A,N/A +2013,9,8,13,30,94240,93150,92090,84.04,0,1.54,2.15,2.43,2.68,3.12,3.67,4.41,5.18,6.0600000000000005,111.58,117.43,120.13,121.66,125.02,129.53,134.91,140.39000000000001,145.88,21.66,21.31,21.14,20.97,20.82,20.69,20.61,20.55,20.38,N/A,N/A +2013,9,8,14,30,94250,93170,92120,73.62,0,3.43,4.34,4.61,4.7700000000000005,4.88,4.96,5.0200000000000005,5.0600000000000005,5.14,156.92000000000002,157.51,157.8,158.07,158.32,158.56,158.82,159.06,159.66,23.69,23.14,22.92,22.7,22.5,22.3,22.1,21.92,21.54,N/A,N/A +2013,9,8,15,30,94240,93160,92110,65.22,0,3.73,4.64,4.9,5.03,5.12,5.19,5.22,5.25,5.28,163.26,163.38,163.43,163.46,163.48,163.5,163.53,163.56,163.62,25.36,24.71,24.45,24.21,23.990000000000002,23.79,23.580000000000002,23.39,22.990000000000002,N/A,N/A +2013,9,8,16,30,94240,93160,92120,57.39,0,3.45,4.24,4.46,4.58,4.65,4.71,4.74,4.7700000000000005,4.79,160.45000000000002,160.59,160.74,160.81,160.86,160.87,160.89000000000001,160.9,160.88,26.96,26.27,26,25.75,25.51,25.3,25.080000000000002,24.89,24.48,N/A,N/A +2013,9,8,17,30,94170,93100,92060,52.21,0,3.49,4.2700000000000005,4.48,4.59,4.66,4.72,4.75,4.7700000000000005,4.8,150.58,150.72,150.8,150.81,150.79,150.76,150.73,150.70000000000002,150.61,28.21,27.5,27.21,26.94,26.71,26.490000000000002,26.26,26.060000000000002,25.650000000000002,N/A,N/A +2013,9,8,18,30,94130,93060,92030,46.64,0,3.65,4.46,4.68,4.8,4.88,4.93,4.97,5,5.04,137.82,138.12,138.26,138.31,138.34,138.36,138.35,138.34,138.31,29.310000000000002,28.580000000000002,28.28,28.01,27.78,27.55,27.32,27.12,26.7,N/A,N/A +2013,9,8,19,30,94060,93000,91970,42.82,0,3.85,4.72,4.96,5.09,5.18,5.24,5.29,5.33,5.38,134.71,135.15,135.36,135.48,135.58,135.64000000000001,135.7,135.74,135.81,30.240000000000002,29.490000000000002,29.19,28.92,28.68,28.45,28.23,28.02,27.6,N/A,N/A +2013,9,8,20,30,94000,92940,91910,41.63,0,4.72,5.7700000000000005,6.05,6.18,6.2700000000000005,6.34,6.38,6.41,6.44,151.73,151.20000000000002,150.74,150.35,150,149.68,149.39000000000001,149.12,148.6,30.67,29.900000000000002,29.6,29.34,29.1,28.88,28.650000000000002,28.45,28.03,N/A,N/A +2013,9,8,21,30,93930,92870,91850,38.37,0,5.33,6.57,6.890000000000001,7.05,7.15,7.23,7.2700000000000005,7.3100000000000005,7.3500000000000005,134.59,135.22,135.54,135.77,135.95,136.11,136.25,136.37,136.61,31.3,30.53,30.25,29.990000000000002,29.75,29.52,29.3,29.09,28.68,N/A,N/A +2013,9,8,22,30,93870,92820,91790,38.81,0,4.79,5.95,6.2700000000000005,6.45,6.5600000000000005,6.65,6.71,6.76,6.82,142.97,142.54,142.31,142.12,141.97,141.85,141.76,141.67000000000002,141.53,31.12,30.43,30.17,29.93,29.71,29.490000000000002,29.27,29.080000000000002,28.67,N/A,N/A +2013,9,8,23,30,93820,92770,91740,40.18,0,5.13,6.48,6.8500000000000005,7.07,7.23,7.3500000000000005,7.43,7.51,7.61,148.69,148.47,148.3,148.11,147.93,147.75,147.58,147.42000000000002,147.12,31.13,30.55,30.32,30.09,29.86,29.66,29.44,29.240000000000002,28.830000000000002,N/A,N/A +2013,9,9,0,30,93870,92810,91780,41.160000000000004,0,5.8100000000000005,7.58,8.05,8.370000000000001,8.61,8.78,8.9,9.01,9.15,138.71,137.72,137.51,137.31,137.15,137.04,136.98,136.95000000000002,136.98,30.42,30.05,29.86,29.650000000000002,29.44,29.240000000000002,29.03,28.84,28.44,N/A,N/A +2013,9,9,1,30,93960,92880,91840,64.37,0,8.040000000000001,10.17,10.65,10.97,11.17,11.32,11.41,11.49,11.64,159.75,158.28,157.36,156.48,155.66,154.92000000000002,154.15,153.43,151.58,25.51,25.07,24.86,24.650000000000002,24.45,24.26,24.07,23.89,23.53,N/A,N/A +2013,9,9,2,30,94070,92990,91940,76.78,0,4.07,5.23,5.58,5.83,6,6.140000000000001,6.24,6.33,6.49,179.13,176.96,175.76,174.66,173.58,172.58,171.55,170.59,168.56,24.07,23.67,23.490000000000002,23.29,23.1,22.92,22.73,22.55,22.18,N/A,N/A +2013,9,9,3,30,94060,92970,91930,65.53,0,2.98,3.54,3.6,3.56,3.42,3.2600000000000002,2.87,2.5,1.54,292.42,292.66,292.28000000000003,291.62,289.7,287.57,282.84000000000003,277.83,255.94,23.71,23.36,23.18,23,22.82,22.66,22.48,22.31,21.94,N/A,N/A +2013,9,9,4,30,94060,92980,91930,70.31,0,1.28,1.94,2.45,3.3000000000000003,3.96,4.47,4.93,5.37,6.05,130.65,131.35,132,133.33,133.88,133.87,134.41,135.06,135.94,23.81,23.57,23.53,23.59,23.580000000000002,23.53,23.44,23.34,23.09,N/A,N/A +2013,9,9,5,30,94050,92970,91930,67.81,0,3.68,5.41,6.03,6.53,6.95,7.3100000000000005,7.63,7.91,8.4,150.97,151.87,152.59,153.26,153.95000000000002,154.62,155.36,156.06,157.59,24.36,24.2,24.080000000000002,23.93,23.77,23.62,23.45,23.29,22.95,N/A,N/A +2013,9,9,6,30,94060,92980,91930,70.60000000000001,0,4.03,5.99,6.7,7.29,7.7700000000000005,8.19,8.53,8.84,9.27,154.98,154.89000000000001,154.77,154.69,154.58,154.46,154.19,153.91,152.81,23.92,23.77,23.64,23.490000000000002,23.330000000000002,23.16,22.98,22.82,22.46,N/A,N/A +2013,9,9,7,30,94080,93000,91950,78.23,0,4.9,6.8500000000000005,7.5,8.01,8.43,8.78,9.1,9.39,9.9,149.8,150.25,150.54,150.85,151.18,151.51,151.9,152.27,153.08,22.91,22.71,22.57,22.400000000000002,22.240000000000002,22.080000000000002,21.900000000000002,21.740000000000002,21.400000000000002,N/A,N/A +2013,9,9,8,30,94100,93020,91960,78.76,0,3.46,5.2,5.8500000000000005,6.41,6.890000000000001,7.32,7.71,8.07,8.75,142.99,144.32,145.17000000000002,145.86,146.47,147.03,147.57,148.08,149.15,22.43,22.25,22.12,21.97,21.81,21.650000000000002,21.48,21.330000000000002,20.990000000000002,N/A,N/A +2013,9,9,9,30,94100,93010,91960,81.85000000000001,0,2.71,4.3,4.94,5.49,5.96,6.37,6.76,7.11,7.8,140.19,142.04,143.16,144.06,144.92000000000002,145.74,146.61,147.44,149.21,21.88,21.7,21.57,21.42,21.26,21.1,20.93,20.77,20.43,N/A,N/A +2013,9,9,10,30,94100,93010,91950,79.76,0,4.51,5.98,6.43,6.76,7.03,7.25,7.47,7.67,8.08,142.82,143.34,143.66,143.93,144.21,144.48,144.82,145.15,145.96,22,21.68,21.5,21.32,21.12,20.94,20.75,20.56,20.19,N/A,N/A +2013,9,9,11,30,94120,93030,91970,80.21000000000001,0,4.03,5.34,5.74,6.05,6.29,6.49,6.68,6.8500000000000005,7.22,138.52,139.18,139.62,139.99,140.31,140.59,140.94,141.29,142.35,21.98,21.68,21.51,21.32,21.14,20.95,20.76,20.580000000000002,20.2,N/A,N/A +2013,9,9,12,30,94140,93050,91990,83.84,0,4.48,5.8500000000000005,6.25,6.53,6.75,6.92,7.08,7.22,7.5200000000000005,141.24,141.99,142.48,142.91,143.39000000000001,143.84,144.42000000000002,144.98,146.45000000000002,21.67,21.35,21.18,20.98,20.79,20.61,20.41,20.23,19.85,N/A,N/A +2013,9,9,13,30,94160,93070,92010,84.5,0,4.53,5.78,6.140000000000001,6.37,6.55,6.69,6.8100000000000005,6.93,7.2,140.33,140.84,141.18,141.5,141.84,142.16,142.58,143.01,144.09,21.55,21.18,20.990000000000002,20.8,20.6,20.42,20.22,20.04,19.67,N/A,N/A +2013,9,9,14,30,94200,93110,92060,80.88,0,5.28,6.67,7.0600000000000005,7.28,7.42,7.5200000000000005,7.59,7.640000000000001,7.73,141.93,142.74,143.15,143.49,143.8,144.1,144.43,144.75,145.53,21.88,21.39,21.18,20.97,20.77,20.59,20.39,20.2,19.830000000000002,N/A,N/A +2013,9,9,15,30,94210,93130,92070,72.8,0,4.93,6.22,6.59,6.8,6.95,7.05,7.12,7.17,7.26,148.51,149.18,149.47,149.69,149.87,150.04,150.20000000000002,150.35,150.67000000000002,23.16,22.51,22.26,22.03,21.81,21.61,21.400000000000002,21.22,20.830000000000002,N/A,N/A +2013,9,9,16,30,94220,93130,92080,66.28,0,4.83,6.140000000000001,6.53,6.76,6.93,7.05,7.140000000000001,7.21,7.3100000000000005,156.46,155.63,155.19,154.8,154.46,154.15,153.87,153.62,153.13,24.44,23.92,23.7,23.47,23.25,23.05,22.84,22.64,22.240000000000002,N/A,N/A +2013,9,9,17,30,94190,93120,92070,56.84,0,5.45,6.82,7.21,7.44,7.59,7.7,7.78,7.84,7.92,146.18,146.53,146.67000000000002,146.73,146.77,146.79,146.8,146.81,146.81,26.12,25.36,25.07,24.810000000000002,24.57,24.35,24.12,23.92,23.51,N/A,N/A +2013,9,9,18,30,94150,93080,92040,52.11,0,5.32,6.640000000000001,7.04,7.28,7.44,7.5600000000000005,7.65,7.72,7.83,149.47,149.51,149.53,149.53,149.52,149.51,149.49,149.47,149.45000000000002,27.34,26.57,26.27,26,25.76,25.53,25.3,25.1,24.68,N/A,N/A +2013,9,9,19,30,94100,93030,91990,46.12,0,5.51,6.84,7.22,7.44,7.59,7.69,7.7700000000000005,7.84,7.930000000000001,156.99,156.87,156.74,156.57,156.41,156.26,156.1,155.96,155.66,28.51,27.73,27.43,27.17,26.92,26.7,26.47,26.26,25.84,N/A,N/A +2013,9,9,20,30,94020,92960,91930,42.06,0,5.5,6.86,7.2700000000000005,7.5,7.67,7.79,7.88,7.95,8.06,150.66,150.73,150.8,150.82,150.85,150.85,150.86,150.86,150.86,29.490000000000002,28.72,28.43,28.16,27.92,27.69,27.47,27.26,26.84,N/A,N/A +2013,9,9,21,30,93950,92890,91860,39.22,0,6.55,8.18,8.620000000000001,8.86,9.02,9.120000000000001,9.19,9.24,9.290000000000001,141.98,142.37,142.6,142.78,142.95000000000002,143.1,143.23,143.35,143.61,30.04,29.28,29.01,28.740000000000002,28.51,28.29,28.060000000000002,27.86,27.44,N/A,N/A +2013,9,9,22,30,93890,92830,91800,37.53,0,6.37,8,8.45,8.700000000000001,8.88,9,9.09,9.16,9.26,156.64000000000001,156.43,156.24,156.03,155.85,155.66,155.49,155.33,155.02,30.19,29.52,29.26,29.02,28.78,28.57,28.35,28.150000000000002,27.73,N/A,N/A +2013,9,9,23,30,93870,92810,91790,40.74,0,6.42,8.19,8.71,9.01,9.24,9.4,9.53,9.63,9.78,147,147.07,147.06,147.03,147.02,147,146.99,146.98,146.97,30.05,29.51,29.29,29.060000000000002,28.85,28.64,28.43,28.23,27.830000000000002,N/A,N/A +2013,9,10,0,30,93890,92830,91800,46.88,0,6.2,8.08,8.6,8.94,9.21,9.41,9.57,9.700000000000001,9.91,144.3,143.85,143.68,143.52,143.4,143.29,143.21,143.13,143.03,29.07,28.740000000000002,28.560000000000002,28.36,28.17,27.97,27.77,27.59,27.19,N/A,N/A +2013,9,10,1,30,93930,92870,91830,48.43,0,5.73,7.92,8.620000000000001,9.18,9.63,10.01,10.34,10.64,11.14,137.72,138.13,138.31,138.49,138.65,138.8,138.95000000000002,139.1,139.34,28.080000000000002,27.86,27.71,27.53,27.34,27.16,26.96,26.78,26.39,N/A,N/A +2013,9,10,2,30,94000,92930,91890,53.59,0,6.36,8.57,9.24,9.75,10.16,10.49,10.790000000000001,11.040000000000001,11.5,141.83,141.98,142.04,142.07,142.09,142.1,142.11,142.12,142.12,26.55,26.3,26.14,25.96,25.77,25.59,25.39,25.21,24.810000000000002,N/A,N/A +2013,9,10,3,30,94050,92980,91940,62.440000000000005,0,6.13,8.33,9.01,9.540000000000001,9.96,10.33,10.65,10.94,11.47,144.68,144.64000000000001,144.59,144.5,144.41,144.34,144.28,144.22,144.11,25.490000000000002,25.240000000000002,25.09,24.900000000000002,24.72,24.53,24.34,24.16,23.77,N/A,N/A +2013,9,10,4,30,94060,92980,91940,65.41,0,5.3,7.24,7.86,8.36,8.76,9.09,9.39,9.67,10.16,143,143.39000000000001,143.65,143.85,144.04,144.20000000000002,144.39000000000001,144.56,144.94,24.830000000000002,24.59,24.44,24.26,24.080000000000002,23.900000000000002,23.71,23.53,23.150000000000002,N/A,N/A +2013,9,10,5,30,94100,93010,91970,71.11,0,5.76,7.78,8.4,8.870000000000001,9.24,9.56,9.84,10.09,10.53,144.99,145.37,145.58,145.75,145.92000000000002,146.09,146.27,146.44,146.8,24.03,23.77,23.62,23.43,23.25,23.07,22.88,22.71,22.330000000000002,N/A,N/A +2013,9,10,6,30,94130,93050,92000,72.73,0,5.92,7.72,8.25,8.6,8.88,9.1,9.28,9.450000000000001,9.74,142.42000000000002,142.75,142.91,143.05,143.19,143.33,143.49,143.65,144.03,23.6,23.25,23.07,22.87,22.68,22.490000000000002,22.29,22.11,21.72,N/A,N/A +2013,9,10,7,30,94170,93080,92030,78.26,0,5.2,7.03,7.6000000000000005,8.03,8.370000000000001,8.64,8.88,9.1,9.49,144.71,145.11,145.39000000000001,145.64000000000001,145.9,146.16,146.45000000000002,146.72,147.35,23.17,22.900000000000002,22.740000000000002,22.55,22.36,22.18,21.97,21.79,21.400000000000002,N/A,N/A +2013,9,10,8,30,94190,93110,92060,77.91,0,5.63,7.3,7.7700000000000005,8.08,8.31,8.49,8.63,8.76,8.97,147.05,147.29,147.44,147.57,147.72,147.86,148.02,148.19,148.59,23.25,22.91,22.73,22.53,22.330000000000002,22.14,21.94,21.76,21.37,N/A,N/A +2013,9,10,9,30,94180,93090,92040,81.7,0,4.34,5.99,6.51,6.890000000000001,7.17,7.390000000000001,7.57,7.72,7.95,137.44,138.22,138.64000000000001,139,139.36,139.71,140.11,140.48,141.32,22.82,22.580000000000002,22.41,22.23,22.04,21.85,21.650000000000002,21.47,21.080000000000002,N/A,N/A +2013,9,10,10,30,94190,93110,92050,81.98,0,5.2700000000000005,6.7700000000000005,7.19,7.46,7.67,7.82,7.94,8.05,8.23,139.33,139.38,139.48,139.56,139.67000000000002,139.78,139.94,140.09,140.5,22.73,22.39,22.21,22.01,21.82,21.64,21.44,21.25,20.87,N/A,N/A +2013,9,10,11,30,94210,93120,92060,84.53,0,4.23,5.5600000000000005,5.99,6.32,6.59,6.83,7.05,7.25,7.53,129.01,129.75,130.2,130.57,130.91,131.22,131.55,131.85,131.93,22.35,22.01,21.84,21.650000000000002,21.47,21.29,21.1,20.92,20.54,N/A,N/A +2013,9,10,12,30,94230,93140,92080,86.71000000000001,1.8,4.55,5.99,6.47,6.88,7.28,7.67,7.95,8.18,8.47,126.41,127.02,127.4,127.76,128.21,128.69,128.81,128.87,129.32,21.900000000000002,21.580000000000002,21.42,21.25,21.080000000000002,20.92,20.740000000000002,20.57,20.2,N/A,N/A +2013,9,10,13,30,94270,93170,92120,84.9,0,4.99,6.59,7.08,7.4,7.7,7.98,8.26,8.51,9,130.34,131.14000000000001,131.52,131.71,132.05,132.46,132.92000000000002,133.36,134.3,22.21,21.89,21.72,21.54,21.36,21.19,21,20.84,20.490000000000002,N/A,N/A +2013,9,10,14,30,94310,93220,92170,84.44,0,5.26,6.68,7.07,7.3100000000000005,7.49,7.62,7.74,7.8500000000000005,8.09,130.04,130.55,130.82,130.99,131.15,131.29,131.48,131.66,132.19,22.16,21.76,21.580000000000002,21.39,21.2,21.02,20.84,20.67,20.31,N/A,N/A +2013,9,10,15,30,94350,93260,92210,76.54,0,5.8100000000000005,7.28,7.69,7.92,8.07,8.18,8.25,8.3,8.38,136,135.89000000000001,135.8,135.66,135.54,135.43,135.33,135.25,135.14000000000001,23.490000000000002,22.86,22.61,22.38,22.17,21.97,21.77,21.580000000000002,21.2,N/A,N/A +2013,9,10,16,30,94370,93280,92230,75.52,0,5.88,7.45,7.9,8.15,8.31,8.43,8.5,8.56,8.620000000000001,138.29,138.3,138.20000000000002,138.1,138.01,137.92000000000002,137.84,137.77,137.65,23.94,23.45,23.23,23.01,22.8,22.59,22.39,22.2,21.8,N/A,N/A +2013,9,10,17,30,94380,93300,92250,67.68,0,7.1000000000000005,8.870000000000001,9.370000000000001,9.64,9.82,9.94,10.02,10.08,10.15,139.65,139.93,139.98,139.98,139.96,139.94,139.92000000000002,139.9,139.88,25.16,24.37,24.080000000000002,23.82,23.59,23.37,23.150000000000002,22.95,22.55,N/A,N/A +2013,9,10,18,30,94360,93280,92230,64.44,0,6.33,7.91,8.36,8.620000000000001,8.790000000000001,8.9,8.98,9.05,9.13,134.28,134.7,134.94,135.12,135.27,135.41,135.54,135.66,135.93,25.97,25.150000000000002,24.85,24.580000000000002,24.34,24.12,23.900000000000002,23.7,23.29,N/A,N/A +2013,9,10,19,30,94320,93250,92210,59.84,0,5.7700000000000005,7.15,7.55,7.8100000000000005,7.99,8.120000000000001,8.22,8.290000000000001,8.4,152.22,151.25,150.45000000000002,149.75,149.14000000000001,148.59,148.09,147.64000000000001,146.81,27.19,26.46,26.19,25.93,25.69,25.47,25.25,25.04,24.63,N/A,N/A +2013,9,10,20,30,94240,93170,92140,55.72,0,6.45,8.08,8.52,8.77,8.94,9.06,9.14,9.21,9.3,125.19,126.71000000000001,127.41,127.98,128.48,128.94,129.38,129.78,130.57,28.150000000000002,27.34,27.05,26.78,26.54,26.32,26.1,25.900000000000002,25.48,N/A,N/A +2013,9,10,21,30,94180,93110,92080,51.59,0,6.95,8.61,9.05,9.26,9.39,9.47,9.52,9.540000000000001,9.56,164.25,163.59,163.09,162.6,162.16,161.73,161.31,160.91,160.09,29.060000000000002,28.3,28.02,27.76,27.53,27.310000000000002,27.09,26.89,26.490000000000002,N/A,N/A +2013,9,10,22,30,94140,93080,92050,47.95,0,5.86,7.41,7.87,8.15,8.34,8.49,8.6,8.69,8.83,148.51,148.63,148.63,148.61,148.58,148.55,148.51,148.48,148.42000000000002,29.580000000000002,28.92,28.67,28.42,28.2,27.98,27.77,27.57,27.150000000000002,N/A,N/A +2013,9,10,23,30,94130,93060,92030,50.1,0,6.83,8.69,9.23,9.56,9.8,9.97,10.11,10.21,10.370000000000001,140.56,140.96,141.17000000000002,141.32,141.43,141.54,141.63,141.72,141.87,29.18,28.650000000000002,28.44,28.21,27.990000000000002,27.79,27.580000000000002,27.38,26.98,N/A,N/A +2013,9,11,0,30,94150,93080,92050,53.01,0,6.640000000000001,8.64,9.19,9.540000000000001,9.81,10.01,10.16,10.290000000000001,10.5,147.62,147.47,147.34,147.16,147,146.85,146.69,146.55,146.24,28.28,27.96,27.79,27.59,27.39,27.21,27.01,26.82,26.43,N/A,N/A +2013,9,11,1,30,94190,93120,92090,54.35,0,5.45,7.74,8.51,9.14,9.67,10.11,10.52,10.89,11.53,138.69,139.20000000000002,139.49,139.79,140.09,140.38,140.68,140.98,141.5,27.7,27.52,27.39,27.23,27.060000000000002,26.88,26.69,26.51,26.12,N/A,N/A +2013,9,11,2,30,94250,93180,92140,62.79,0,6.4,8.700000000000001,9.42,9.98,10.43,10.82,11.17,11.48,12.040000000000001,142.15,142.17000000000002,142.21,142.23,142.23,142.23,142.24,142.27,142.32,26.060000000000002,25.82,25.67,25.5,25.32,25.150000000000002,24.96,24.79,24.41,N/A,N/A +2013,9,11,3,30,94260,93180,92140,63.76,0,6.24,8.58,9.31,9.89,10.36,10.77,11.120000000000001,11.44,12,136.09,136.37,136.55,136.71,136.89000000000001,137.07,137.28,137.47,137.9,25.87,25.650000000000002,25.51,25.330000000000002,25.16,24.990000000000002,24.8,24.63,24.26,N/A,N/A +2013,9,11,4,30,94310,93230,92190,65.96000000000001,0,7.5,10.14,10.93,11.51,11.97,12.34,12.65,12.92,13.35,142.99,143.62,143.96,144.29,144.62,144.95000000000002,145.32,145.66,146.4,25.19,24.96,24.8,24.63,24.45,24.28,24.09,23.91,23.54,N/A,N/A +2013,9,11,5,30,94320,93240,92190,70.5,0,5.37,7.44,8.120000000000001,8.67,9.13,9.53,9.9,10.24,10.86,144.85,145.3,145.56,145.78,146.01,146.23,146.47,146.69,147.16,24.580000000000002,24.36,24.21,24.03,23.85,23.68,23.490000000000002,23.32,22.94,N/A,N/A +2013,9,11,6,30,94360,93280,92230,72.89,0,5.09,7.140000000000001,7.84,8.43,8.91,9.33,9.73,10.09,10.77,144.51,145.19,145.69,146.29,146.84,147.36,147.92000000000002,148.45000000000002,149.47,24.11,23.89,23.75,23.57,23.400000000000002,23.22,23.03,22.86,22.48,N/A,N/A +2013,9,11,7,30,94380,93300,92240,71.11,0,6.16,8.15,8.76,9.19,9.53,9.81,10.06,10.27,10.65,148.32,148.64000000000001,148.85,148.99,149.12,149.23,149.34,149.44,149.64000000000001,24.18,23.88,23.71,23.51,23.32,23.13,22.94,22.75,22.37,N/A,N/A +2013,9,11,8,30,94390,93300,92250,74.09,0,5.92,8.01,8.66,9.15,9.55,9.89,10.19,10.46,10.96,149.56,149.78,149.9,150,150.09,150.19,150.3,150.41,150.62,23.490000000000002,23.240000000000002,23.080000000000002,22.900000000000002,22.71,22.53,22.330000000000002,22.150000000000002,21.76,N/A,N/A +2013,9,11,9,30,94390,93310,92250,74.8,0,6.3,8.2,8.73,9.09,9.36,9.56,9.72,9.86,10.08,139.61,140.02,140.26,140.47,140.68,140.89000000000001,141.14000000000001,141.37,141.9,23.18,22.85,22.67,22.47,22.27,22.09,21.89,21.7,21.31,N/A,N/A +2013,9,11,10,30,94420,93320,92270,77.41,0,5.2700000000000005,6.8500000000000005,7.3100000000000005,7.63,7.87,8.07,8.24,8.4,8.69,144.21,144.58,144.83,145.04,145.26,145.47,145.73,145.96,146.53,22.82,22.5,22.32,22.13,21.93,21.75,21.55,21.37,20.990000000000002,N/A,N/A +2013,9,11,11,30,94430,93340,92280,79.88,0,5.12,6.65,7.09,7.38,7.6000000000000005,7.78,7.94,8.08,8.36,140.55,140.97,141.23,141.45000000000002,141.67000000000002,141.88,142.13,142.37,142.95000000000002,22.73,22.400000000000002,22.22,22.02,21.830000000000002,21.650000000000002,21.45,21.26,20.88,N/A,N/A +2013,9,11,12,30,94450,93360,92300,83.92,0,4.19,5.6000000000000005,6.08,6.45,6.7700000000000005,7.0600000000000005,7.34,7.6000000000000005,7.92,135.25,136.15,136.77,137.41,138.1,138.77,139.57,140.31,141.18,22.28,21.95,21.78,21.59,21.400000000000002,21.22,21.03,20.86,20.48,N/A,N/A +2013,9,11,13,30,94460,93370,92310,84.91,0,4.51,5.91,6.32,6.63,6.890000000000001,7.11,7.3500000000000005,7.57,8.11,133.43,134.04,134.4,134.7,135.01,135.32,135.68,136.04,136.89000000000001,22.22,21.88,21.7,21.51,21.32,21.14,20.95,20.77,20.41,N/A,N/A +2013,9,11,14,30,94510,93420,92360,78.86,0,5.8500000000000005,7.42,7.890000000000001,8.18,8.38,8.53,8.64,8.74,8.91,139.74,140.04,140.18,140.29,140.42000000000002,140.54,140.70000000000002,140.85,141.26,23.04,22.490000000000002,22.27,22.05,21.85,21.650000000000002,21.45,21.27,20.89,N/A,N/A +2013,9,11,15,30,94540,93450,92400,71.23,0,6.42,8.120000000000001,8.57,8.82,8.98,9.09,9.16,9.22,9.27,137.86,138.26,138.56,138.76,138.92000000000002,139.05,139.18,139.29,139.54,24.09,23.41,23.16,22.92,22.7,22.5,22.29,22.1,21.72,N/A,N/A +2013,9,11,16,30,94550,93460,92410,63.370000000000005,0,5.92,7.47,7.91,8.17,8.35,8.48,8.58,8.65,8.76,145.44,145.51,145.56,145.57,145.58,145.6,145.62,145.65,145.71,24.97,24.25,23.98,23.740000000000002,23.52,23.31,23.1,22.900000000000002,22.51,N/A,N/A +2013,9,11,17,30,94530,93440,92400,53.54,0,6.19,7.78,8.22,8.46,8.63,8.75,8.83,8.9,8.98,156.02,155.43,155.08,154.74,154.43,154.16,153.89000000000001,153.64000000000001,153.14000000000001,26.580000000000002,25.830000000000002,25.55,25.3,25.060000000000002,24.85,24.63,24.43,24.01,N/A,N/A +2013,9,11,18,30,94480,93410,92360,46.95,0,5.91,7.4,7.84,8.09,8.27,8.4,8.5,8.58,8.700000000000001,147.26,146.98,146.84,146.68,146.54,146.4,146.27,146.15,145.92000000000002,28.11,27.310000000000002,27.01,26.740000000000002,26.5,26.27,26.05,25.84,25.42,N/A,N/A +2013,9,11,19,30,94430,93360,92320,43.01,0,5.67,7.15,7.58,7.84,8.02,8.16,8.27,8.36,8.49,146.6,146.83,146.9,146.9,146.9,146.88,146.86,146.84,146.79,28.88,28.09,27.8,27.53,27.29,27.07,26.84,26.63,26.22,N/A,N/A +2013,9,11,20,30,94370,93300,92260,41.1,0,5.8500000000000005,7.3100000000000005,7.73,7.97,8.13,8.25,8.33,8.4,8.51,143.21,143.46,143.57,143.62,143.66,143.68,143.70000000000002,143.72,143.74,29.85,29.07,28.78,28.52,28.28,28.05,27.830000000000002,27.62,27.2,N/A,N/A +2013,9,11,21,30,94280,93220,92190,40.11,0,5.38,6.7,7.09,7.3100000000000005,7.46,7.57,7.66,7.73,7.83,145.12,144.94,144.88,144.8,144.73,144.66,144.6,144.54,144.44,30.3,29.57,29.29,29.03,28.8,28.57,28.35,28.150000000000002,27.73,N/A,N/A +2013,9,11,22,30,94220,93160,92130,40.99,0,5.3,6.72,7.13,7.37,7.54,7.67,7.76,7.8500000000000005,7.96,138.08,138.52,138.69,138.78,138.84,138.89000000000001,138.93,138.96,139.01,30.25,29.59,29.34,29.09,28.87,28.650000000000002,28.44,28.240000000000002,27.830000000000002,N/A,N/A +2013,9,11,23,30,94200,93140,92110,42.86,0,5.91,7.5,7.96,8.22,8.4,8.53,8.63,8.71,8.82,138.99,139.25,139.37,139.44,139.5,139.54,139.59,139.63,139.70000000000002,30.150000000000002,29.6,29.38,29.150000000000002,28.93,28.73,28.51,28.32,27.91,N/A,N/A +2013,9,12,0,30,94200,93140,92110,45.83,0,6,7.8100000000000005,8.290000000000001,8.6,8.82,8.99,9.11,9.22,9.370000000000001,136.55,136.58,136.61,136.62,136.64000000000001,136.66,136.69,136.72,136.77,29.52,29.19,29.01,28.810000000000002,28.61,28.42,28.22,28.03,27.64,N/A,N/A +2013,9,12,1,30,94240,93170,92130,54.47,0,5.95,7.98,8.57,9.02,9.370000000000001,9.65,9.88,10.08,10.41,126.59,126.39,126.42,126.46000000000001,126.5,126.54,126.64,126.73,127.03,27.82,27.560000000000002,27.400000000000002,27.21,27.03,26.85,26.650000000000002,26.47,26.080000000000002,N/A,N/A +2013,9,12,2,30,94310,93240,92200,59.35,0,5.33,7.19,7.75,8.15,8.48,8.74,8.98,9.18,9.53,119.79,120.74000000000001,121.27,121.78,122.29,122.77,123.28,123.76,124.84,26.75,26.48,26.32,26.13,25.95,25.77,25.57,25.39,25.01,N/A,N/A +2013,9,12,3,30,94360,93280,92230,65.07000000000001,0,6.32,8.45,9.07,9.53,9.9,10.200000000000001,10.46,10.700000000000001,11.11,135.11,135.26,135.36,135.38,135.39000000000001,135.41,135.41,135.41,135.42000000000002,25.580000000000002,25.3,25.13,24.94,24.75,24.560000000000002,24.36,24.18,23.78,N/A,N/A +2013,9,12,4,30,94350,93270,92220,69.42,0,5.22,7.07,7.63,8.06,8.41,8.72,8.99,9.23,9.700000000000001,139.70000000000002,139.8,139.78,139.73,139.68,139.63,139.57,139.53,139.43,24.73,24.45,24.29,24.1,23.91,23.73,23.53,23.35,22.96,N/A,N/A +2013,9,12,5,30,94380,93290,92240,74.13,0,4.41,5.96,6.43,6.8,7.09,7.34,7.57,7.78,8.19,137.6,138.28,138.61,138.85,139.05,139.23,139.41,139.57,139.92000000000002,23.97,23.68,23.51,23.32,23.13,22.94,22.740000000000002,22.55,22.150000000000002,N/A,N/A +2013,9,12,6,30,94400,93310,92260,78.09,0,4.86,6.5600000000000005,7.09,7.5,7.84,8.13,8.4,8.64,9.11,139.39000000000001,140.35,140.95000000000002,141.49,142.02,142.53,143.1,143.63,144.88,23.09,22.8,22.63,22.44,22.25,22.07,21.87,21.69,21.31,N/A,N/A +2013,9,12,7,30,94450,93360,92300,81.05,0,4.7,6.140000000000001,6.57,6.890000000000001,7.140000000000001,7.3500000000000005,7.55,7.73,8.120000000000001,148.99,149.92000000000002,150.58,151.17000000000002,151.71,152.23,152.79,153.32,154.58,22.81,22.490000000000002,22.32,22.12,21.93,21.75,21.55,21.36,20.98,N/A,N/A +2013,9,12,8,30,94430,93340,92280,83.22,0,3.93,5.48,6,6.43,6.79,7.1000000000000005,7.4,7.68,8.22,145.13,146.24,146.92000000000002,147.46,147.92000000000002,148.31,148.66,148.97,149.47,22.47,22.22,22.07,21.900000000000002,21.73,21.57,21.400000000000002,21.240000000000002,20.91,N/A,N/A +2013,9,12,9,30,94430,93340,92280,84.39,0,2.99,4.49,5.07,5.57,6.0200000000000005,6.42,6.8,7.16,7.88,137.05,138.89000000000001,140.04,140.98,141.85,142.65,143.47,144.24,146,22.14,21.92,21.78,21.61,21.44,21.28,21.11,20.95,20.61,N/A,N/A +2013,9,12,10,30,94420,93330,92270,86.77,0,3.0100000000000002,4.5,5.0600000000000005,5.54,5.95,6.32,6.67,6.98,7.6000000000000005,138.15,139.94,141.07,142.02,142.9,143.71,144.57,145.38,147.27,21.77,21.56,21.42,21.25,21.09,20.93,20.76,20.61,20.29,N/A,N/A +2013,9,12,11,30,94450,93350,92290,89.29,0,2.6,4.09,4.67,5.16,5.59,5.97,6.33,6.66,7.34,137.98,140.37,141.76,142.74,143.59,144.35,145.09,145.79,147.47,21.36,21.16,21.03,20.87,20.71,20.55,20.38,20.23,19.91,N/A,N/A +2013,9,12,12,30,94450,93360,92300,87.08,0,2.7,3.59,3.95,4.2700000000000005,4.59,4.9,5.25,5.58,6.15,139.31,140.14000000000001,140.68,141.12,142.02,143.12,143.88,144.56,146.34,21.46,21.14,20.97,20.8,20.62,20.46,20.28,20.12,19.79,N/A,N/A +2013,9,12,13,30,94460,93370,92300,86.43,0,2.88,3.71,3.97,4.17,4.36,4.54,4.8100000000000005,5.08,5.87,132.64000000000001,133.07,133.32,133.58,133.84,134.09,134.54,135.08,137.88,21.62,21.27,21.1,20.91,20.72,20.55,20.36,20.18,19.85,N/A,N/A +2013,9,12,14,30,94490,93390,92340,81.84,0,3.27,4.16,4.43,4.59,4.71,4.8,4.88,4.96,5.13,142.78,143.29,143.57,143.74,143.89000000000001,144.02,144.19,144.36,144.82,22.63,22.17,21.97,21.76,21.56,21.38,21.18,21,20.63,N/A,N/A +2013,9,12,15,30,94490,93400,92350,73.29,0,3.4,4.29,4.5600000000000005,4.72,4.84,4.93,5,5.05,5.14,127.02,128.29,129.01,129.59,130.1,130.56,131.01,131.42000000000002,132.25,24.01,23.45,23.21,22.990000000000002,22.77,22.57,22.37,22.18,21.78,N/A,N/A +2013,9,12,16,30,94490,93400,92350,74.05,0,5.39,6.58,6.82,6.91,6.95,6.96,6.95,6.95,6.94,114.8,116.44,117.55,118.62,119.67,120.66,121.72,122.68,124.62,23.91,23.41,23.21,23.02,22.84,22.67,22.5,22.35,22.02,N/A,N/A +2013,9,12,17,30,94440,93360,92310,60.1,0,3.5100000000000002,4.47,4.78,4.98,5.14,5.26,5.37,5.46,5.62,145.06,143.34,142.5,141.77,141.14000000000001,140.58,140.05,139.57,138.67000000000002,26.41,25.75,25.48,25.240000000000002,25.01,24.810000000000002,24.6,24.400000000000002,24,N/A,N/A +2013,9,12,18,30,94400,93320,92280,51.13,0,4.89,6.15,6.5,6.71,6.8500000000000005,6.95,7.03,7.09,7.17,129.26,129.11,129.1,129.08,129.07,129.05,129.03,129.02,128.99,27.86,27.11,26.830000000000002,26.57,26.330000000000002,26.11,25.88,25.68,25.26,N/A,N/A +2013,9,12,19,30,94340,93270,92230,45.32,0,4.12,5.12,5.41,5.57,5.69,5.78,5.84,5.9,5.97,122.9,123.34,123.58,123.75,123.89,124,124.10000000000001,124.19,124.35000000000001,28.98,28.26,27.98,27.72,27.490000000000002,27.27,27.04,26.84,26.42,N/A,N/A +2013,9,12,20,30,94250,93180,92150,43.29,0,3.5,4.39,4.64,4.8,4.91,4.99,5.0600000000000005,5.12,5.21,131.93,131.45,131.08,130.71,130.37,130.07,129.77,129.49,128.96,29.580000000000002,29,28.76,28.52,28.3,28.09,27.88,27.68,27.27,N/A,N/A +2013,9,12,21,30,94230,93170,92130,44.76,0,5.84,7.11,7.43,7.57,7.640000000000001,7.69,7.71,7.73,7.75,129.08,129.38,129.74,130.08,130.37,130.61,130.82,131.02,131.08,28.990000000000002,28.3,28.060000000000002,27.85,27.650000000000002,27.47,27.28,27.1,26.75,N/A,N/A +2013,9,12,22,30,94170,93110,92080,44.42,0,5.38,6.82,7.16,7.34,7.44,7.48,7.49,7.48,7.41,158.47,158.94,158.94,158.88,158.8,158.71,158.58,158.46,158.16,29.740000000000002,29.07,28.810000000000002,28.55,28.32,28.11,27.89,27.69,27.28,N/A,N/A +2013,9,12,23,30,94170,93100,92070,50.22,0,5.66,7.18,7.61,7.83,7.99,8.1,8.17,8.23,8.31,136.51,135.8,135.55,135.33,135.12,134.93,134.73,134.55,134.14000000000001,28.330000000000002,27.78,27.560000000000002,27.34,27.13,26.93,26.73,26.55,26.17,N/A,N/A +2013,9,13,0,30,94160,93090,92050,55.29,0,5.94,7.61,8.05,8.3,8.47,8.59,8.66,8.71,8.77,147.67000000000002,148.02,148.01,147.91,147.78,147.63,147.41,147.19,146.6,27.35,27.01,26.830000000000002,26.64,26.45,26.27,26.09,25.92,25.580000000000002,N/A,N/A +2013,9,13,1,30,94170,93090,92060,56.51,0,3.64,5.17,5.63,6,6.3100000000000005,6.57,6.8100000000000005,7.03,7.43,155.19,155.70000000000002,155.74,155.48,155.01,154.43,153.59,152.75,150.69,26.71,26.57,26.48,26.38,26.28,26.19,26.09,26.01,25.78,N/A,N/A +2013,9,13,2,30,94200,93120,92080,59.42,0,1.94,3.52,4.0600000000000005,4.54,4.95,5.3,5.63,5.93,6.41,152.20000000000002,156.53,158.51,159.28,159.51,159.39000000000001,158.89000000000001,158.33,156.4,26.21,26.17,26.09,25.990000000000002,25.88,25.77,25.66,25.55,25.32,N/A,N/A +2013,9,13,3,30,94230,93160,92110,61.86,0,3.0100000000000002,5.14,6.01,6.83,7.5600000000000005,8.23,8.76,9.24,9.86,149.45000000000002,151.84,152.73,152.92000000000002,152.55,151.82,150.46,149.04,145.44,25.69,25.52,25.37,25.17,24.97,24.78,24.62,24.48,24.34,N/A,N/A +2013,9,13,4,30,94260,93180,92130,67.87,0,2.91,4.59,5.2,5.74,6.2,6.6000000000000005,6.97,7.3,7.8100000000000005,161.15,164.64000000000001,166.5,167.85,168.79,169.47,169.84,170.11,170.09,24.77,24.63,24.5,24.35,24.19,24.02,23.84,23.67,23.31,N/A,N/A +2013,9,13,5,30,94260,93180,92130,74.39,0,2.48,4.08,4.66,5.2,5.68,6.11,6.5200000000000005,6.91,7.6000000000000005,151.86,156.69,159.36,161.51,163.16,164.51,165.39000000000001,166.13,166.55,23.96,23.830000000000002,23.71,23.57,23.42,23.27,23.11,22.96,22.66,N/A,N/A +2013,9,13,6,30,94280,93190,92140,78.88,0,1.67,3.14,3.67,4.2,4.69,5.16,5.6000000000000005,6.0200000000000005,6.74,134.22,144.04,149.47,153.44,156.46,158.91,160.84,162.58,165.1,23.2,23.150000000000002,23.05,22.93,22.79,22.66,22.51,22.37,22.080000000000002,N/A,N/A +2013,9,13,7,30,94310,93220,92170,81.06,0,2.14,3.52,4.01,4.54,5.05,5.55,6.01,6.45,7.15,125.91,135.17000000000002,140.86,146.12,150.36,154.02,156.98,159.6,162.87,22.580000000000002,22.580000000000002,22.52,22.44,22.36,22.28,22.19,22.11,21.96,N/A,N/A +2013,9,13,8,30,94310,93220,92160,86.26,0,1.55,3.06,3.54,4.01,4.47,4.92,5.34,5.74,6.38,138.44,143.79,147.23,150.64000000000001,154.12,157.6,160.88,163.94,168.81,21.93,22.04,22,21.94,21.89,21.830000000000002,21.75,21.68,21.53,N/A,N/A +2013,9,13,9,30,94310,93210,92160,91.79,0,1.23,2.43,2.82,3.21,3.62,4.03,4.43,4.79,5.15,116.84,127.58,134.5,141.12,147.05,152.58,157.99,163.01,169.1,21.18,21.36,21.34,21.31,21.26,21.21,21.17,21.13,20.990000000000002,N/A,N/A +2013,9,13,10,30,94290,93200,92140,95.35000000000001,0,1.48,2.71,3.0100000000000002,3.29,3.64,4.0200000000000005,4.3100000000000005,4.57,4.98,128.47,135.48,140.34,145.71,151.49,157.5,161.82,165.53,170.26,20.490000000000002,20.71,20.71,20.71,20.76,20.81,20.85,20.86,20.82,N/A,N/A +2013,9,13,11,30,94290,93190,92130,95.14,0,1.3800000000000001,2.44,2.66,2.87,3.13,3.42,3.62,3.79,4.07,110.83,119.57000000000001,126.09,133.5,140.76,147.83,152.28,155.89000000000001,159.04,20.080000000000002,20.31,20.31,20.330000000000002,20.400000000000002,20.490000000000002,20.56,20.61,20.61,N/A,N/A +2013,9,13,12,30,94300,93200,92140,95.38,0,1.05,2.0100000000000002,2.32,2.66,2.92,3.14,3.3000000000000003,3.45,3.63,113.7,124.73,132.55,140.94,147.22,152.21,156.01,159.27,162.83,19.62,19.88,19.91,19.96,20.02,20.09,20.14,20.17,20.150000000000002,N/A,N/A +2013,9,13,13,30,94310,93210,92150,88.48,0,0.75,0.97,1.2,1.6400000000000001,1.98,2.27,2.47,2.64,2.88,109.65,119.07000000000001,125.5,134.16,140.77,145.95000000000002,149.63,152.76,156.03,20.23,19.93,19.81,19.7,19.72,19.8,19.91,20,20.11,N/A,N/A +2013,9,13,14,30,94330,93240,92190,77.59,0,1.52,1.9100000000000001,2.04,2.12,2.18,2.23,2.2800000000000002,2.33,2.42,139.51,142.91,144.9,146.65,148.25,149.72,151.18,152.52,155.11,22.41,21.95,21.75,21.55,21.36,21.18,20.990000000000002,20.82,20.45,N/A,N/A +2013,9,13,15,30,94310,93220,92170,66.56,0,1.81,2.24,2.37,2.45,2.5100000000000002,2.5500000000000003,2.59,2.63,2.7,144.91,147.23,148.47,149.52,150.46,151.3,152.12,152.86,154.4,24.28,23.740000000000002,23.5,23.28,23.080000000000002,22.89,22.69,22.5,22.12,N/A,N/A +2013,9,13,16,30,94290,93210,92160,55.03,0,2.44,3.04,3.22,3.33,3.41,3.47,3.52,3.5700000000000003,3.64,156.68,156.32,156.06,155.79,155.52,155.26,155.01,154.77,154.26,26.05,25.42,25.16,24.92,24.69,24.490000000000002,24.27,24.080000000000002,23.68,N/A,N/A +2013,9,13,17,30,94230,93160,92120,39.43,0,3.5300000000000002,4.37,4.62,4.76,4.87,4.95,5.01,5.0600000000000005,5.14,139.49,139.24,139.08,138.89000000000001,138.71,138.51,138.33,138.15,137.79,27.86,27.17,26.89,26.63,26.400000000000002,26.18,25.96,25.76,25.34,N/A,N/A +2013,9,13,18,30,94170,93100,92060,31.05,0,4.15,5.11,5.37,5.51,5.62,5.69,5.75,5.8,5.86,133.72,133.74,133.72,133.65,133.57,133.49,133.39000000000001,133.3,133.1,28.990000000000002,28.26,27.97,27.71,27.47,27.25,27.03,26.82,26.400000000000002,N/A,N/A +2013,9,13,19,30,94100,93030,92000,29.310000000000002,0,3.99,4.93,5.19,5.33,5.44,5.51,5.57,5.62,5.69,134.05,133.77,133.61,133.41,133.22,133.04,132.86,132.69,132.34,29.71,28.98,28.69,28.43,28.19,27.97,27.740000000000002,27.54,27.11,N/A,N/A +2013,9,13,20,30,94040,92970,91940,23.63,0,4.72,5.8500000000000005,6.17,6.34,6.47,6.5600000000000005,6.62,6.67,6.75,135.8,136.06,136.15,136.18,136.19,136.18,136.16,136.15,136.1,30.39,29.650000000000002,29.37,29.11,28.87,28.650000000000002,28.42,28.22,27.8,N/A,N/A +2013,9,13,21,30,93950,92890,91860,29.64,0,4.2,5.22,5.51,5.69,5.82,5.92,5.99,6.0600000000000005,6.16,140.07,139.87,139.71,139.53,139.35,139.18,139.02,138.86,138.55,30.53,29.830000000000002,29.560000000000002,29.310000000000002,29.07,28.85,28.63,28.42,28.01,N/A,N/A +2013,9,13,22,30,93870,92810,91790,28.61,0,4.21,5.28,5.58,5.75,5.87,5.96,6.0200000000000005,6.08,6.15,141.89000000000001,141.59,141.39000000000001,141.18,140.99,140.8,140.61,140.43,140.07,30.72,30.09,29.84,29.6,29.38,29.17,28.95,28.75,28.34,N/A,N/A +2013,9,13,23,30,93830,92770,91750,28.14,0,3.79,4.87,5.2,5.42,5.59,5.72,5.82,5.91,6.0600000000000005,123.36,124.26,124.69,124.95,125.14,125.29,125.41,125.51,125.64,30.8,30.310000000000002,30.1,29.88,29.67,29.47,29.26,29.07,28.67,N/A,N/A +2013,9,14,0,30,93820,92760,91730,31.490000000000002,0,3.16,4.53,4.96,5.29,5.55,5.76,5.93,6.07,6.28,150,148.79,148.20000000000002,147.66,147.22,146.87,146.61,146.4,146.1,30.11,29.87,29.72,29.53,29.34,29.16,28.96,28.78,28.39,N/A,N/A +2013,9,14,1,30,93830,92770,91740,34.59,0,1.97,3.86,4.44,5.01,5.46,5.83,6.07,6.26,6.44,118.55,126.54,131.48,135.88,138.70000000000002,140.53,141.17000000000002,141.47,141.09,29.02,29.34,29.32,29.25,29.14,29.02,28.87,28.72,28.36,N/A,N/A +2013,9,14,2,30,93900,92830,91790,48.17,0,6.05,8.15,8.72,9.120000000000001,9.41,9.65,9.83,9.98,10.21,154.01,154.98,155.57,156.16,156.79,157.4,158.08,158.71,160.09,27.14,26.94,26.810000000000002,26.64,26.48,26.310000000000002,26.14,25.97,25.62,N/A,N/A +2013,9,14,3,30,93960,92890,91850,46.01,0,4.66,6.32,6.84,7.24,7.57,7.8500000000000005,8.1,8.33,8.76,158.26,158.73,158.93,159.03,159.08,159.1,159.05,159,158.77,27.03,26.76,26.61,26.44,26.27,26.1,25.93,25.77,25.43,N/A,N/A +2013,9,14,4,30,93970,92900,91860,47.01,0,3.59,4.9,5.3,5.62,5.88,6.12,6.34,6.54,6.96,158.37,159.65,160.38,161.05,161.67000000000002,162.27,162.82,163.32,164.12,26.990000000000002,26.73,26.57,26.400000000000002,26.22,26.05,25.87,25.69,25.34,N/A,N/A +2013,9,14,5,30,93960,92880,91850,49.24,0,2.61,3.7600000000000002,4.13,4.44,4.7,4.91,5.11,5.3,5.63,156.15,158.01,159.14000000000001,160.3,161.38,162.4,163.35,164.21,165.52,26.7,26.46,26.32,26.150000000000002,25.98,25.8,25.62,25.44,25.060000000000002,N/A,N/A +2013,9,14,6,30,94010,92930,91890,56.410000000000004,0,1.7,3.3000000000000003,3.73,4.1,4.43,4.71,4.97,5.2,5.6000000000000005,145.72,148.49,150.25,151.94,153.52,155.01,156.37,157.61,159.95000000000002,25.61,25.87,25.82,25.72,25.580000000000002,25.43,25.25,25.080000000000002,24.7,N/A,N/A +2013,9,14,7,30,94020,92940,91900,59.1,0,1.8800000000000001,3.4,3.74,4.0200000000000005,4.24,4.41,4.54,4.65,4.79,134.19,140.31,144.32,148.3,151.96,155.36,158.42000000000002,161.17000000000002,165.58,24.86,25.240000000000002,25.28,25.27,25.2,25.11,24.97,24.84,24.5,N/A,N/A +2013,9,14,8,30,94010,92930,91890,61.620000000000005,0,1.8900000000000001,3.0700000000000003,3.25,3.47,3.69,3.92,4.12,4.3100000000000005,4.7700000000000005,122.69,129.65,135.4,143.28,149.79,155.48,159.27,162.44,166.22,24.17,24.57,24.67,24.77,24.76,24.71,24.59,24.47,24.18,N/A,N/A +2013,9,14,9,30,94020,92940,91890,62.42,0,2.52,4.1,4.45,4.69,4.82,4.89,4.92,4.96,5.1000000000000005,121.83,125.04,127.12,129.23,131.85,134.53,137.23,139.65,143.69,23.84,24.11,24.18,24.21,24.2,24.18,24.080000000000002,23.98,23.71,N/A,N/A +2013,9,14,10,30,94030,92950,91910,64.4,0,2.44,4.51,5.26,5.94,6.51,7,7.36,7.66,7.97,136.94,136.83,137.09,137.89000000000001,138.92000000000002,140.07,141.07,141.96,143.24,23.61,23.94,24.01,24.05,24.060000000000002,24.05,23.990000000000002,23.93,23.69,N/A,N/A +2013,9,14,11,30,94040,92960,91910,65.8,0,2.72,4.62,5.2700000000000005,5.84,6.32,6.74,7.11,7.45,8.09,139.24,139.36,139.88,140.88,142.68,144.83,147.82,150.78,157.03,23.34,23.45,23.41,23.31,23.2,23.080000000000002,22.94,22.8,22.54,N/A,N/A +2013,9,14,12,30,94050,92960,91910,69.9,0,2.63,4.32,4.87,5.39,5.86,6.29,6.640000000000001,6.93,7.11,138.54,141.4,143.56,146.06,149.35,152.93,157.14000000000001,161.11,167.41,22.37,22.51,22.51,22.5,22.5,22.5,22.55,22.59,22.63,N/A,N/A +2013,9,14,13,30,94060,92980,91930,68.13,0,2.87,3.96,4.46,4.96,5.4,5.8100000000000005,6.09,6.32,6.49,137.3,142.91,146.39000000000001,149.70000000000002,152.99,156.18,159.46,162.49,167.69,22.66,22.45,22.35,22.25,22.22,22.23,22.26,22.29,22.32,N/A,N/A +2013,9,14,14,30,94120,93040,91990,63.21,0,2.71,3.34,3.5,3.58,3.63,3.67,3.7,3.72,3.81,141.45000000000002,143.32,144.4,145.34,146.28,147.20000000000002,148.28,149.29,151.89000000000001,24.43,23.94,23.73,23.53,23.34,23.16,22.97,22.8,22.46,N/A,N/A +2013,9,14,15,30,94120,93040,92000,58.75,0,3.45,4.32,4.59,4.75,4.86,4.95,5.0200000000000005,5.08,5.17,157.08,157.14000000000001,157.12,157.05,156.98,156.91,156.82,156.75,156.58,26.11,25.5,25.25,25.01,24.79,24.59,24.38,24.19,23.79,N/A,N/A +2013,9,14,16,30,94120,93050,92010,52.35,0,4.28,5.3100000000000005,5.61,5.7700000000000005,5.88,5.97,6.03,6.08,6.15,150.12,150.29,150.36,150.37,150.36,150.34,150.33,150.3,150.25,27.37,26.66,26.39,26.13,25.900000000000002,25.69,25.47,25.27,24.86,N/A,N/A +2013,9,14,17,30,94090,93020,91990,47.15,0,4.5,5.62,5.95,6.140000000000001,6.28,6.390000000000001,6.47,6.54,6.640000000000001,151.09,151.14000000000001,151.15,151.12,151.09,151.05,151.01,150.97,150.87,28.48,27.740000000000002,27.45,27.18,26.95,26.72,26.5,26.29,25.87,N/A,N/A +2013,9,14,18,30,94050,92990,91950,42.63,0,5.39,6.7,7.08,7.29,7.44,7.55,7.62,7.69,7.78,148.97,149.14000000000001,149.20000000000002,149.20000000000002,149.20000000000002,149.18,149.15,149.13,149.06,29.45,28.650000000000002,28.35,28.080000000000002,27.830000000000002,27.6,27.37,27.16,26.740000000000002,N/A,N/A +2013,9,14,19,30,94020,92960,91930,40.86,0,5.0600000000000005,6.3100000000000005,6.66,6.87,7.0200000000000005,7.13,7.22,7.29,7.41,148.13,148.27,148.37,148.39000000000001,148.39000000000001,148.37,148.35,148.33,148.28,29.88,29.12,28.84,28.57,28.330000000000002,28.11,27.89,27.68,27.26,N/A,N/A +2013,9,14,20,30,93940,92890,91860,38.33,0,5.33,6.61,6.98,7.21,7.36,7.48,7.5600000000000005,7.640000000000001,7.75,157.39000000000001,156.85,156.43,156.03,155.68,155.35,155.02,154.71,154.12,30.71,29.93,29.64,29.37,29.13,28.900000000000002,28.67,28.46,28.04,N/A,N/A +2013,9,14,21,30,93880,92830,91800,36.7,0,5.2700000000000005,6.59,6.96,7.18,7.34,7.45,7.54,7.62,7.74,158.98,157.89000000000001,157.33,156.84,156.41,156.02,155.64000000000001,155.31,154.66,31.03,30.3,30.02,29.77,29.53,29.310000000000002,29.09,28.88,28.47,N/A,N/A +2013,9,14,22,30,93860,92800,91780,33.24,0,6.09,7.72,8.18,8.44,8.620000000000001,8.76,8.86,8.94,9.07,141.73,141.83,141.89000000000001,141.9,141.9,141.9,141.89000000000001,141.89000000000001,141.88,31.1,30.580000000000002,30.36,30.14,29.92,29.71,29.5,29.310000000000002,28.900000000000002,N/A,N/A +2013,9,14,23,30,93830,92780,91760,32.39,0,6.5600000000000005,8.34,8.83,9.11,9.31,9.450000000000001,9.55,9.63,9.74,153.95000000000002,153.82,153.62,153.39000000000001,153.18,152.97,152.76,152.58,152.20000000000002,31.25,30.73,30.51,30.28,30.07,29.86,29.650000000000002,29.45,29.05,N/A,N/A +2013,9,15,0,30,93840,92780,91750,31.25,0,5.92,8.02,8.66,9.11,9.450000000000001,9.700000000000001,9.9,10.07,10.3,151.93,151.65,151.53,151.45000000000002,151.4,151.39000000000001,151.4,151.42000000000002,151.52,30.45,30.22,30.080000000000002,29.89,29.71,29.53,29.34,29.16,28.77,N/A,N/A +2013,9,15,1,30,93860,92800,91770,31.650000000000002,0,4.72,7.07,7.9,8.58,9.15,9.63,10.05,10.42,10.97,157.94,157.18,156.76,156.4,156.16,155.99,155.9,155.83,155.79,29.34,29.3,29.22,29.1,28.98,28.84,28.68,28.54,28.2,N/A,N/A +2013,9,15,2,30,93920,92850,91820,33.44,0,4.24,6.49,7.28,7.95,8.53,9.05,9.5,9.9,10.56,157.11,157.24,157.28,157.31,157.33,157.36,157.35,157.34,157.21,28.5,28.5,28.44,28.35,28.240000000000002,28.13,28,27.86,27.55,N/A,N/A +2013,9,15,3,30,93950,92880,91850,38.74,0,3.63,5.9,6.75,7.54,8.25,8.9,9.5,10.07,11.03,151.06,152.26,153.01,153.75,154.52,155.29,156.07,156.81,158.15,27.72,27.75,27.71,27.650000000000002,27.57,27.48,27.38,27.28,27.02,N/A,N/A +2013,9,15,4,30,93990,92910,91880,43.25,0,3.11,5.19,6.01,6.78,7.51,8.23,8.99,9.72,11.06,146.44,148.03,148.98,149.75,150.51,151.25,151.95000000000002,152.6,153.38,26.89,26.93,26.900000000000002,26.84,26.78,26.72,26.650000000000002,26.580000000000002,26.39,N/A,N/A +2013,9,15,5,30,94000,92930,91890,47.4,0,3.56,5.8500000000000005,6.7700000000000005,7.62,8.4,9.14,9.84,10.5,11.69,156.61,155.69,155.19,154.99,155.1,155.4,155.91,156.44,157.75,26.23,26.27,26.25,26.2,26.13,26.05,25.93,25.830000000000002,25.52,N/A,N/A +2013,9,15,6,30,94030,92960,91920,59.97,0,5.15,7.28,7.99,8.59,9.120000000000001,9.6,10.06,10.48,11.3,163.75,164.34,164.71,165.15,165.62,166.09,166.6,167.08,168.01,25.51,25.34,25.21,25.060000000000002,24.900000000000002,24.740000000000002,24.57,24.41,24.060000000000002,N/A,N/A +2013,9,15,7,30,94070,93000,91950,66.82000000000001,0,4.55,6.5600000000000005,7.28,7.9,8.44,8.93,9.39,9.81,10.58,172.1,172.47,172.72,173.02,173.35,173.69,174.04,174.37,174.92000000000002,24.79,24.650000000000002,24.54,24.41,24.28,24.14,23.990000000000002,23.86,23.55,N/A,N/A +2013,9,15,8,30,94100,93020,91970,71.52,0,3.73,5.72,6.45,7.11,7.69,8.21,8.700000000000001,9.15,9.950000000000001,158.93,160.93,162.23,163.45000000000002,164.6,165.71,166.77,167.76,169.49,24.12,24.05,23.97,23.87,23.76,23.650000000000002,23.53,23.41,23.13,N/A,N/A +2013,9,15,9,30,94090,93010,91970,73.81,0,3.59,5.65,6.44,7.17,7.82,8.42,8.98,9.49,10.38,158.24,160.1,161.32,162.53,163.68,164.78,165.81,166.76,168.34,23.740000000000002,23.71,23.64,23.56,23.45,23.35,23.22,23.1,22.82,N/A,N/A +2013,9,15,10,30,94120,93030,91980,74.95,0,3.7800000000000002,5.83,6.61,7.3,7.91,8.46,8.97,9.44,10.27,158.95000000000002,160.29,161.09,161.75,162.33,162.85,163.29,163.70000000000002,164.32,23.5,23.42,23.330000000000002,23.22,23.1,22.990000000000002,22.86,22.73,22.45,N/A,N/A +2013,9,15,11,30,94160,93070,92020,78.53,0,3.2,5.17,5.92,6.59,7.16,7.67,8.11,8.52,9.18,142.32,145.57,147.48,148.91,150.04,150.97,151.70000000000002,152.34,153.27,22.900000000000002,22.87,22.81,22.72,22.61,22.51,22.38,22.26,21.97,N/A,N/A +2013,9,15,12,30,94180,93090,92040,86.43,0,1.96,3.96,4.75,5.44,6.04,6.59,7.08,7.54,8.290000000000001,137.31,140.94,143.22,144.94,146.65,148.31,150.20000000000002,152.03,156.02,21.990000000000002,22.11,22.07,22.01,21.94,21.87,21.79,21.7,21.51,N/A,N/A +2013,9,15,13,30,94190,93100,92050,81.33,0,3.83,5.18,5.69,6.16,6.61,7.0600000000000005,7.54,8.01,8.91,148.4,150.19,151.18,151.98,152.76,153.53,154.46,155.36,156.91,22.72,22.41,22.25,22.080000000000002,21.91,21.75,21.59,21.45,21.18,N/A,N/A +2013,9,15,14,30,94240,93160,92110,76.82000000000001,0,5.01,6.34,6.72,6.94,7.09,7.19,7.26,7.32,7.390000000000001,154.18,154.56,154.76,154.9,155.01,155.1,155.20000000000002,155.3,155.51,23.87,23.34,23.12,22.89,22.68,22.48,22.28,22.09,21.7,N/A,N/A +2013,9,15,15,30,94270,93190,92150,67.31,0,5.22,6.54,6.93,7.16,7.3100000000000005,7.41,7.48,7.54,7.62,156.98,157.13,157.19,157.23,157.26,157.29,157.31,157.33,157.38,25.2,24.52,24.26,24.02,23.79,23.580000000000002,23.37,23.17,22.77,N/A,N/A +2013,9,15,16,30,94300,93220,92180,62.65,0,5.0600000000000005,6.3500000000000005,6.72,6.93,7.07,7.17,7.24,7.3,7.36,153.19,153.56,153.8,153.96,154.09,154.20000000000002,154.3,154.39000000000001,154.56,26.04,25.37,25.1,24.86,24.63,24.42,24.2,24,23.59,N/A,N/A +2013,9,15,17,30,94290,93210,92170,54.97,0,4.82,5.95,6.28,6.47,6.6000000000000005,6.69,6.75,6.8100000000000005,6.88,164.27,163.4,162.92000000000002,162.48,162.09,161.74,161.4,161.09,160.49,27.41,26.64,26.35,26.080000000000002,25.84,25.62,25.39,25.19,24.77,N/A,N/A +2013,9,15,18,30,94250,93180,92150,50.28,0,4.23,5.26,5.5600000000000005,5.73,5.8500000000000005,5.95,6.0200000000000005,6.07,6.16,147.49,147.3,147.17000000000002,147.02,146.88,146.73,146.58,146.44,146.16,28.6,27.85,27.55,27.28,27.04,26.810000000000002,26.59,26.38,25.97,N/A,N/A +2013,9,15,19,30,94220,93160,92120,43.99,0,4.48,5.55,5.86,6.0200000000000005,6.15,6.23,6.3100000000000005,6.36,6.45,127.63000000000001,128.93,129.59,130.05,130.45,130.79,131.1,131.37,131.89000000000001,29.45,28.69,28.400000000000002,28.14,27.900000000000002,27.68,27.46,27.26,26.85,N/A,N/A +2013,9,15,20,30,94150,93080,92060,38.77,0,4.7,5.8,6.13,6.3100000000000005,6.44,6.53,6.6000000000000005,6.66,6.75,134.67000000000002,134.99,135.11,135.12,135.11,135.09,135.05,135.02,134.92000000000002,30.740000000000002,29.98,29.69,29.42,29.19,28.96,28.740000000000002,28.53,28.11,N/A,N/A +2013,9,15,21,30,94070,93010,91990,35.19,0,5.07,6.34,6.72,6.93,7.09,7.21,7.3,7.38,7.49,128.73,129.29,129.56,129.71,129.83,129.92000000000002,129.99,130.05,130.15,31.36,30.63,30.36,30.1,29.86,29.64,29.42,29.22,28.8,N/A,N/A +2013,9,15,22,30,94040,92980,91960,33.36,0,5.4,6.84,7.28,7.54,7.73,7.88,7.99,8.09,8.25,142.46,141.88,141.56,141.26,141,140.76,140.55,140.35,139.98,31.64,30.990000000000002,30.75,30.5,30.28,30.060000000000002,29.85,29.650000000000002,29.240000000000002,N/A,N/A +2013,9,15,23,30,94120,93050,92000,64.56,0,10.63,13.11,13.780000000000001,14.1,14.34,14.51,14.68,14.84,15.27,178.45000000000002,178.31,178.28,178.24,178.20000000000002,178.13,178.03,177.92000000000002,177.54,25.52,25.080000000000002,24.900000000000002,24.71,24.55,24.400000000000002,24.26,24.14,23.95,N/A,N/A +2013,9,16,0,30,94120,93050,92010,60.22,0,5.66,7.17,7.53,7.75,7.91,8.02,8.13,8.22,8.540000000000001,163.16,163.73,164.11,164.35,164.5,164.61,164.66,164.71,164.77,26.22,25.830000000000002,25.63,25.44,25.240000000000002,25.060000000000002,24.87,24.7,24.36,N/A,N/A +2013,9,16,1,30,94190,93110,92070,59.980000000000004,0,6.17,7.79,8.16,8.36,8.46,8.52,8.53,8.53,8.47,183.24,182.70000000000002,182.52,182.33,182.12,181.91,181.65,181.41,180.75,25.560000000000002,25.17,24.98,24.77,24.57,24.38,24.18,23.990000000000002,23.61,N/A,N/A +2013,9,16,2,30,94240,93160,92120,65.67,0,4.87,6.18,6.5200000000000005,6.73,6.87,6.96,7.03,7.08,7.2,175.24,174.88,174.63,174.37,174.13,173.89000000000001,173.62,173.36,172.72,24.900000000000002,24.53,24.35,24.14,23.95,23.76,23.56,23.38,23.01,N/A,N/A +2013,9,16,3,30,94290,93210,92160,67.03,0,1.6600000000000001,2.13,2.29,2.41,2.52,2.63,2.84,3.0500000000000003,3.68,184.52,182.3,181.13,179.98,178.82,177.67000000000002,176,174.24,170.43,24.76,24.43,24.25,24.060000000000002,23.88,23.69,23.51,23.34,23.01,N/A,N/A +2013,9,16,4,30,94300,93220,92180,67.05,0,1.6400000000000001,2.2600000000000002,2.58,2.97,3.46,4.05,4.5,4.9,5.62,149.34,151.54,152.76,153.74,154.08,153.98,154.31,154.72,154.71,24.91,24.61,24.46,24.28,24.150000000000002,24.04,23.91,23.79,23.51,N/A,N/A +2013,9,16,5,30,94340,93260,92220,70.7,0,1.48,2.93,3.42,3.86,4.24,4.58,4.9,5.2,5.8100000000000005,143.04,145.46,146.84,147.59,147.88,147.85,147.44,146.94,145.61,24.71,24.62,24.490000000000002,24.330000000000002,24.17,24.01,23.830000000000002,23.67,23.330000000000002,N/A,N/A +2013,9,16,6,30,94360,93280,92230,74.51,0,1,2.67,3.47,4.13,4.73,5.2700000000000005,5.8500000000000005,6.41,7.58,157.42000000000002,155.16,153.46,152.01,151.01,150.28,150.06,149.98,150.37,23.990000000000002,23.990000000000002,23.900000000000002,23.78,23.63,23.490000000000002,23.31,23.16,22.830000000000002,N/A,N/A +2013,9,16,7,30,94420,93340,92290,77.91,0,0.55,1.92,2.79,3.36,3.85,4.28,4.8,5.32,6.53,138.53,145.77,150.31,150.43,150.13,149.57,149.19,148.87,148.6,23.38,23.43,23.36,23.26,23.14,23,22.84,22.69,22.38,N/A,N/A +2013,9,16,8,30,94440,93350,92300,80.43,0,0.26,1.37,2.33,2.97,3.52,4,4.4,4.78,5.63,115.82000000000001,129.35,141,143.06,144.36,145.14000000000001,145.41,145.57,146.18,22.89,23.01,22.98,22.900000000000002,22.8,22.69,22.56,22.44,22.16,N/A,N/A +2013,9,16,9,30,94450,93360,92300,83.38,0,1.26,2.13,2.2800000000000002,2.43,2.72,3.11,3.68,4.3,5.73,68.19,82.03,91.99,103.57000000000001,114,124.3,131.45,138.05,144.54,22.580000000000002,22.66,22.61,22.52,22.400000000000002,22.29,22.17,22.06,21.830000000000002,N/A,N/A +2013,9,16,10,30,94450,93350,92300,85.82000000000001,0,0.51,1.59,2.2600000000000002,2.88,3.49,4.09,4.69,5.29,6.47,126.60000000000001,130.19,132.25,132.66,133.81,135.45,137.88,140.46,145.45000000000002,22.01,22.150000000000002,22.13,22.080000000000002,22.01,21.93,21.830000000000002,21.73,21.45,N/A,N/A +2013,9,16,11,30,94490,93400,92340,88.21000000000001,0,0.65,2.19,3.21,4.14,4.98,5.76,6.42,7.0200000000000005,8.06,134.85,132.78,131.83,132.22,133.59,135.59,138.18,140.81,146.06,21.53,21.66,21.650000000000002,21.61,21.55,21.490000000000002,21.38,21.28,21,N/A,N/A +2013,9,16,12,30,94490,93390,92340,91.07000000000001,0,1.18,2.68,3.34,3.99,4.64,5.28,5.94,6.59,7.73,143.91,140.17000000000002,138.63,138.85,140.26,142.35,145.18,148.09,153.46,20.990000000000002,21.17,21.14,21.09,21.03,20.96,20.900000000000002,20.85,20.78,N/A,N/A +2013,9,16,13,30,94500,93410,92350,84.93,0,1.95,3.0300000000000002,3.64,4.25,4.79,5.26,5.7,6.11,6.73,137.48,138.85,139.57,139.81,140.56,141.59,142.78,143.98,146.74,21.32,21.1,21.01,20.93,20.85,20.77,20.71,20.67,20.7,N/A,N/A +2013,9,16,14,30,94530,93440,92380,70.52,0,2.25,2.8000000000000003,2.97,3.0500000000000003,3.12,3.17,3.23,3.2800000000000002,3.46,133.97,135.03,135.58,135.99,136.35,136.67000000000002,137.01,137.33,137.99,23.26,22.79,22.59,22.400000000000002,22.21,22.04,21.86,21.7,21.39,N/A,N/A +2013,9,16,15,30,94540,93460,92410,52.36,0,3.83,4.8,5.1000000000000005,5.2700000000000005,5.39,5.48,5.55,5.6000000000000005,5.69,134.21,134.44,134.56,134.61,134.65,134.66,134.67000000000002,134.67000000000002,134.66,25.36,24.740000000000002,24.5,24.26,24.05,23.85,23.64,23.45,23.06,N/A,N/A +2013,9,16,16,30,94530,93450,92400,50.35,0,3.75,4.68,4.96,5.12,5.24,5.33,5.4,5.46,5.55,132.1,132.16,132.15,132.07,131.97,131.87,131.75,131.64000000000001,131.38,26.62,25.95,25.67,25.42,25.19,24.98,24.77,24.57,24.16,N/A,N/A +2013,9,16,17,30,94490,93420,92380,45.550000000000004,0,4.05,5.03,5.33,5.5,5.63,5.72,5.8,5.86,5.95,126.39,126.18,126.01,125.8,125.61,125.41,125.22,125.04,124.68,28.01,27.29,27,26.740000000000002,26.5,26.28,26.060000000000002,25.85,25.44,N/A,N/A +2013,9,16,18,30,94450,93380,92340,34.81,0,4.5600000000000005,5.65,5.98,6.16,6.3,6.390000000000001,6.47,6.53,6.61,130.49,130.24,130.08,129.88,129.69,129.51,129.32,129.14000000000001,128.77,29.48,28.73,28.42,28.16,27.92,27.69,27.46,27.26,26.84,N/A,N/A +2013,9,16,19,30,94380,93310,92280,33.55,0,4.62,5.72,6.05,6.23,6.36,6.46,6.53,6.6000000000000005,6.69,129.2,129.07,128.96,128.81,128.66,128.52,128.38,128.24,127.96000000000001,30.3,29.54,29.240000000000002,28.98,28.73,28.51,28.28,28.07,27.650000000000002,N/A,N/A +2013,9,16,20,30,94300,93240,92210,32.4,0,4.67,5.78,6.11,6.29,6.43,6.5200000000000005,6.6000000000000005,6.66,6.75,129.66,129.71,129.74,129.71,129.66,129.61,129.55,129.49,129.38,30.96,30.21,29.92,29.66,29.42,29.19,28.97,28.76,28.34,N/A,N/A +2013,9,16,21,30,94230,93170,92140,33.12,0,4.33,5.36,5.66,5.83,5.95,6.04,6.11,6.17,6.26,128.6,129.2,129.48,129.65,129.78,129.87,129.96,130.03,130.14000000000001,31.36,30.650000000000002,30.37,30.12,29.88,29.66,29.44,29.240000000000002,28.82,N/A,N/A +2013,9,16,22,30,94190,93130,92100,33.77,0,4.57,5.68,5.99,6.16,6.2700000000000005,6.3500000000000005,6.41,6.46,6.5200000000000005,142.15,141.83,141.64000000000001,141.43,141.23,141.05,140.88,140.72,140.39000000000001,31.490000000000002,30.86,30.61,30.37,30.14,29.93,29.71,29.51,29.11,N/A,N/A +2013,9,16,23,30,94160,93100,92080,36.02,0,4.57,5.68,5.98,6.140000000000001,6.24,6.3100000000000005,6.36,6.390000000000001,6.43,152.54,151.53,150.88,150.22,149.62,149.04,148.48,147.96,146.91,31.19,30.68,30.46,30.240000000000002,30.03,29.830000000000002,29.62,29.43,29.03,N/A,N/A +2013,9,17,0,30,94180,93120,92090,37.300000000000004,0,4.64,6.3,6.7700000000000005,7.13,7.4,7.62,7.79,7.94,8.16,143.55,143.11,142.91,142.69,142.49,142.29,142.12,141.98,141.71,30.8,30.5,30.330000000000002,30.13,29.93,29.740000000000002,29.53,29.34,28.94,N/A,N/A +2013,9,17,1,30,94230,93160,92130,45.29,0,5.2700000000000005,7.19,7.8100000000000005,8.27,8.64,8.93,9.17,9.38,9.700000000000001,104.32000000000001,105.16,105.72,106.2,106.63,107.03,107.42,107.8,108.54,29.01,28.75,28.59,28.39,28.2,28.01,27.82,27.63,27.240000000000002,N/A,N/A +2013,9,17,2,30,94300,93230,92200,49.07,0,6.36,8.51,9.200000000000001,9.72,10.120000000000001,10.450000000000001,10.72,10.96,11.290000000000001,120.17,119.87,119.66,119.31,118.95,118.57000000000001,118.17,117.78,117.08,27.97,27.71,27.560000000000002,27.37,27.2,27.03,26.85,26.69,26.35,N/A,N/A +2013,9,17,3,30,94320,93250,92220,49.65,0,3.96,5.91,6.61,7.2,7.66,8.040000000000001,8.39,8.69,9.19,119.04,118.84,118.8,118.86,119.08,119.4,120.10000000000001,120.85000000000001,123,27.63,27.5,27.400000000000002,27.27,27.150000000000002,27.02,26.900000000000002,26.78,26.560000000000002,N/A,N/A +2013,9,17,4,30,94390,93310,92270,61.99,0,5.8500000000000005,7.8,8.4,8.85,9.200000000000001,9.5,9.77,10.01,10.450000000000001,156.03,155.94,155.86,155.74,155.63,155.51,155.38,155.26,154.98,26,25.740000000000002,25.59,25.41,25.23,25.05,24.86,24.68,24.310000000000002,N/A,N/A +2013,9,17,5,30,94440,93360,92320,64.46000000000001,0,3.59,5.18,5.72,6.17,6.5600000000000005,6.91,7.24,7.54,8.11,163.85,162.96,162.42000000000002,161.82,161.21,160.58,159.85,159.15,157.35,25.57,25.37,25.23,25.060000000000002,24.900000000000002,24.73,24.55,24.39,24.03,N/A,N/A +2013,9,17,6,30,94460,93380,92330,67.24,0,2.41,3.91,4.48,4.98,5.41,5.79,6.140000000000001,6.45,7.03,133.7,133.93,134.31,134.92000000000002,135.73,136.65,137.77,138.88,141.4,25.03,24.86,24.73,24.57,24.400000000000002,24.240000000000002,24.05,23.88,23.5,N/A,N/A +2013,9,17,7,30,94480,93400,92350,69.65,0,3.0500000000000003,4.8,5.46,6.01,6.46,6.8500000000000005,7.19,7.5,7.99,141.38,143.6,145,146.28,147.41,148.45000000000002,149.36,150.19,151.57,24.61,24.47,24.36,24.21,24.05,23.89,23.71,23.53,23.16,N/A,N/A +2013,9,17,8,30,94490,93400,92350,72.77,0,2.13,3.62,4.18,4.67,5.09,5.48,5.83,6.15,6.69,141.27,143.22,144.6,146.16,147.75,149.35,150.96,152.47,155.4,23.94,23.830000000000002,23.73,23.59,23.45,23.3,23.13,22.97,22.62,N/A,N/A +2013,9,17,9,30,94460,93380,92330,74.71000000000001,0,1.46,2.63,3.06,3.44,3.79,4.11,4.45,4.78,5.44,163.14000000000001,165.1,166.35,167.49,168.37,169.09,169.31,169.39000000000001,168.1,23.71,23.53,23.39,23.23,23.06,22.900000000000002,22.71,22.54,22.150000000000002,N/A,N/A +2013,9,17,10,30,94480,93390,92330,77.2,0,1.49,2.49,2.82,3.11,3.37,3.59,3.8000000000000003,3.99,4.43,114.83,121.68,125.9,129.37,132.21,134.61,136.57,138.31,141.77,23.150000000000002,22.97,22.84,22.68,22.52,22.36,22.2,22.04,21.71,N/A,N/A +2013,9,17,11,30,94470,93380,92330,77.94,0,2.14,3.35,3.79,4.15,4.46,4.74,5,5.25,5.75,134.59,136.07,136.87,137.29,137.56,137.74,137.89000000000001,138.03,138.4,22.8,22.59,22.46,22.31,22.150000000000002,22,21.84,21.69,21.38,N/A,N/A +2013,9,17,12,30,94460,93370,92320,80.81,0,0.77,1.98,2.57,3.0500000000000003,3.49,3.88,4.26,4.63,5.42,100.35000000000001,109.69,115.01,117.16,119.04,120.73,122.56,124.35000000000001,128.48,22.43,22.34,22.240000000000002,22.11,21.97,21.830000000000002,21.67,21.53,21.23,N/A,N/A +2013,9,17,13,30,94470,93380,92320,78.04,0,1.61,2.15,2.48,3,3.63,4.38,4.8500000000000005,5.23,5.94,121.17,121.94,122.53,123.39,125.02,127.3,128.82,130.09,133.49,22.68,22.37,22.22,22.05,21.900000000000002,21.77,21.61,21.46,21.150000000000002,N/A,N/A +2013,9,17,14,30,94470,93390,92330,75.83,0,3.25,4.11,4.39,4.54,4.66,4.74,4.8100000000000005,4.86,4.96,136.63,137.15,137.47,137.69,137.89000000000001,138.07,138.27,138.45000000000002,138.92000000000002,23.54,23.07,22.87,22.66,22.46,22.27,22.07,21.89,21.5,N/A,N/A +2013,9,17,15,30,94480,93390,92340,67.82000000000001,0,3.6,4.5,4.7700000000000005,4.92,5.03,5.1000000000000005,5.15,5.2,5.26,134.31,134.73,135,135.18,135.32,135.45,135.56,135.65,135.86,24.77,24.17,23.92,23.69,23.48,23.27,23.07,22.88,22.48,N/A,N/A +2013,9,17,16,30,94450,93370,92320,57.78,0,3.89,4.82,5.1000000000000005,5.26,5.37,5.45,5.51,5.5600000000000005,5.64,126.56,126.97,127.21000000000001,127.35000000000001,127.44,127.51,127.58,127.63000000000001,127.72,26.150000000000002,25.46,25.19,24.94,24.72,24.5,24.29,24.09,23.69,N/A,N/A +2013,9,17,17,30,94400,93330,92280,50.800000000000004,0,4,4.97,5.26,5.44,5.5600000000000005,5.66,5.73,5.79,5.89,121.34,122.08,122.5,122.76,122.97,123.14,123.29,123.42,123.65,27.310000000000002,26.61,26.330000000000002,26.080000000000002,25.85,25.63,25.41,25.21,24.8,N/A,N/A +2013,9,17,18,30,94340,93270,92240,43.78,0,4.8,5.96,6.3100000000000005,6.51,6.640000000000001,6.74,6.8100000000000005,6.87,6.96,130.4,130.79,130.97,131.07,131.13,131.17000000000002,131.2,131.23,131.27,28.830000000000002,28.080000000000002,27.79,27.52,27.28,27.060000000000002,26.830000000000002,26.63,26.21,N/A,N/A +2013,9,17,19,30,94280,93220,92180,42.29,0,4.37,5.42,5.73,5.89,6.0200000000000005,6.1000000000000005,6.17,6.23,6.3,134.06,134.34,134.49,134.56,134.62,134.66,134.7,134.73,134.78,29.330000000000002,28.61,28.330000000000002,28.07,27.84,27.62,27.400000000000002,27.19,26.78,N/A,N/A +2013,9,17,20,30,94190,93130,92100,41.6,0,3.87,4.86,5.16,5.33,5.46,5.55,5.61,5.67,5.74,137.64000000000001,137.72,137.76,137.76,137.74,137.71,137.68,137.65,137.57,29.67,29.1,28.87,28.63,28.41,28.2,27.990000000000002,27.79,27.38,N/A,N/A +2013,9,17,21,30,94180,93110,92070,56.800000000000004,0,1.9100000000000001,2.5500000000000003,2.82,3.0300000000000002,3.24,3.45,3.7,3.97,4.46,137.63,137.61,137.12,135.88,134.2,132.21,129.92000000000002,127.62,124.34,27.01,26.64,26.48,26.330000000000002,26.18,26.05,25.92,25.8,25.5,N/A,N/A +2013,9,17,22,30,94120,93050,92020,47.06,0,2.58,3.16,3.3200000000000003,3.4,3.46,3.49,3.52,3.5500000000000003,3.58,193.6,190.45000000000002,188.66,187.05,185.58,184.19,182.82,181.54,178.97,28.95,28.42,28.2,27.97,27.76,27.560000000000002,27.36,27.17,26.77,N/A,N/A +2013,9,17,23,30,94340,93250,92190,85.34,9.200000000000001,6.8100000000000005,8.700000000000001,9.25,9.65,10,10.32,10.74,11.15,11.950000000000001,145.63,144.97,144.45000000000002,143.88,143.26,142.63,141.76,140.95000000000002,139.87,21.37,20.98,20.81,20.650000000000002,20.490000000000002,20.35,20.22,20.1,19.89,N/A,N/A +2013,9,18,0,30,94270,93180,92120,80.3,0,2.67,3.34,3.56,3.67,3.7600000000000002,3.8200000000000003,3.9,3.97,4.3500000000000005,125.13000000000001,125.95,126.46000000000001,126.71000000000001,126.86,126.97,127.18,127.4,128.49,22.45,22.07,21.88,21.69,21.5,21.32,21.14,20.96,20.64,N/A,N/A +2013,9,18,1,30,94240,93150,92100,78.54,0,2.45,3.0100000000000002,3.15,3.22,3.27,3.29,3.31,3.3200000000000003,3.38,78.64,79,78.91,78.91,78.96000000000001,79.04,79.02,78.98,78.99,23.07,22.72,22.54,22.34,22.150000000000002,21.96,21.76,21.580000000000002,21.2,N/A,N/A +2013,9,18,2,30,94250,93160,92110,78.02,0,2.65,3.3000000000000003,3.48,3.62,3.8200000000000003,4.07,4.59,5.18,6.37,98.69,98.95,99.07000000000001,99.3,99.66,100.09,101.49000000000001,103.13,105.83,23.23,22.89,22.72,22.54,22.36,22.19,22.05,21.94,21.91,N/A,N/A +2013,9,18,3,30,94280,93190,92140,76.02,0,2.81,3.85,4.3100000000000005,4.83,5.33,5.8,6.2700000000000005,6.72,7.55,119.44,119.77,119.38,118.22,117.60000000000001,117.28,117.10000000000001,116.97,117.24000000000001,23.52,23.23,23.07,22.89,22.73,22.57,22.43,22.3,22.06,N/A,N/A +2013,9,18,4,30,94310,93230,92180,80.03,0,4.1,5.58,6.13,6.6000000000000005,6.87,7.0200000000000005,7.390000000000001,7.78,8.620000000000001,140.91,140.91,140.88,141.07,141.11,141.08,141.45000000000002,141.89000000000001,143.04,23.34,23.080000000000002,22.92,22.73,22.56,22.400000000000002,22.25,22.1,21.78,N/A,N/A +2013,9,18,5,30,94330,93250,92190,83.05,0,2.07,2.5500000000000003,2.7,2.84,3.0300000000000002,3.27,3.6,3.94,4.5600000000000005,193.79,190.73,188.6,186.18,183.37,180.24,176.75,173.26,168.82,22.64,22.330000000000002,22.17,21.990000000000002,21.82,21.650000000000002,21.51,21.39,21.13,N/A,N/A +2013,9,18,6,30,94320,93230,92180,84.16,0,2.23,3.04,3.41,3.81,4.19,4.54,4.8,5.03,5.38,146.02,147.5,148.36,148.69,148.13,146.98,144.77,142.45000000000002,138.20000000000002,22.71,22.42,22.27,22.1,21.98,21.900000000000002,21.81,21.72,21.47,N/A,N/A +2013,9,18,7,30,94320,93230,92180,83.3,0,2.52,3.7800000000000002,4.26,4.67,5.03,5.34,5.64,5.92,6.46,133.69,135.22,136.07,136.71,137.29,137.83,138.36,138.85,139.95000000000002,22.81,22.59,22.44,22.28,22.11,21.94,21.77,21.61,21.28,N/A,N/A +2013,9,18,8,30,94300,93210,92160,81.31,0,2.5500000000000003,3.85,4.36,4.79,5.15,5.48,5.76,6.03,6.5200000000000005,136.78,137.95000000000002,138.73,139.41,140.1,140.78,141.53,142.25,144,22.76,22.55,22.41,22.26,22.1,21.94,21.77,21.62,21.29,N/A,N/A +2013,9,18,9,30,94260,93170,92120,83.04,0,2.16,3.56,4.14,4.64,5.08,5.48,5.86,6.21,6.9,141.02,142.69,143.74,144.75,145.78,146.79,147.84,148.85,151,22.53,22.38,22.27,22.14,22,21.86,21.71,21.57,21.29,N/A,N/A +2013,9,18,10,30,94240,93150,92100,85.17,0,1.53,3.0300000000000002,3.69,4.25,4.74,5.19,5.61,6.01,6.7700000000000005,133.58,137.56,139.98,141.46,142.72,143.83,144.82,145.73,147.38,22.21,22.150000000000002,22.07,21.95,21.830000000000002,21.71,21.580000000000002,21.46,21.21,N/A,N/A +2013,9,18,11,30,94240,93150,92090,84.72,0,1.74,3.35,4.1,4.72,5.26,5.76,6.2,6.62,7.38,137.18,142.25,144.96,145.87,146.61,147.22,147.9,148.55,150.26,22.17,22.06,21.98,21.88,21.77,21.67,21.54,21.43,21.17,N/A,N/A +2013,9,18,12,30,94240,93150,92100,88.29,0,2.16,4,4.7,5.3,5.8100000000000005,6.26,6.65,7.0200000000000005,7.66,127.09,130.58,132.73,134.45,136.15,137.79,139.58,141.29,144.91,21.75,21.79,21.73,21.64,21.54,21.43,21.32,21.21,20.94,N/A,N/A +2013,9,18,13,30,94240,93150,92090,84.59,0,2.88,4.72,5.62,6.22,6.75,7.23,7.67,8.06,8.72,137.49,142.17000000000002,144.74,145.77,146.74,147.66,148.63,149.57,151.53,22.22,21.98,21.86,21.72,21.57,21.43,21.28,21.13,20.79,N/A,N/A +2013,9,18,14,30,94260,93170,92120,77.62,0,5.79,7.36,7.8100000000000005,8.08,8.27,8.4,8.49,8.57,8.68,148.63,149.07,149.32,149.52,149.69,149.85,150.01,150.15,150.47,23.17,22.67,22.45,22.23,22.03,21.830000000000002,21.63,21.44,21.05,N/A,N/A +2013,9,18,15,30,94270,93190,92130,76.06,0,5.26,6.72,7.140000000000001,7.4,7.57,7.7,7.79,7.86,7.94,144.71,145.66,146.18,146.63,147.01,147.35,147.69,148,148.64000000000001,23.53,23.09,22.89,22.67,22.47,22.27,22.07,21.88,21.48,N/A,N/A +2013,9,18,16,30,94250,93170,92130,64.84,0,5.4,6.82,7.25,7.51,7.69,7.82,7.92,8.01,8.120000000000001,151.20000000000002,151.65,151.9,152.08,152.23,152.35,152.47,152.58,152.78,25.25,24.580000000000002,24.32,24.07,23.84,23.63,23.41,23.21,22.8,N/A,N/A +2013,9,18,17,30,94220,93140,92100,62.34,0,4.97,6.2,6.5600000000000005,6.7700000000000005,6.92,7.0200000000000005,7.09,7.15,7.23,144.81,146.29,147.02,147.59,148.1,148.55,148.97,149.35,150.09,26.04,25.32,25.05,24.8,24.57,24.36,24.14,23.94,23.54,N/A,N/A +2013,9,18,18,30,94160,93090,92050,56.36,0,4.79,5.99,6.36,6.58,6.74,6.86,6.96,7.03,7.15,154.52,154.51,154.52,154.55,154.59,154.64000000000001,154.69,154.74,154.86,27.22,26.52,26.26,26.01,25.78,25.560000000000002,25.34,25.150000000000002,24.740000000000002,N/A,N/A +2013,9,18,19,30,94140,93070,92030,53.02,0,4.65,5.8500000000000005,6.23,6.44,6.59,6.7,6.79,6.86,6.97,147.72,148.55,148.99,149.29,149.53,149.73,149.91,150.07,150.37,28.07,27.44,27.19,26.94,26.72,26.5,26.29,26.09,25.68,N/A,N/A +2013,9,18,20,30,94050,92980,91950,53.6,0,3.6,4.58,4.92,5.14,5.32,5.45,5.57,5.68,5.86,167.69,166.39000000000001,165.63,164.99,164.43,163.9,163.42000000000002,162.98,162.12,28.25,27.6,27.34,27.1,26.87,26.66,26.45,26.25,25.85,N/A,N/A +2013,9,18,21,30,93960,92900,91870,50.120000000000005,0,5.19,6.5,6.890000000000001,7.12,7.29,7.41,7.51,7.59,7.73,161.26,161.43,161.55,161.64000000000001,161.70000000000002,161.75,161.81,161.85,161.94,28.98,28.3,28.05,27.8,27.580000000000002,27.37,27.150000000000002,26.96,26.55,N/A,N/A +2013,9,18,22,30,93900,92840,91820,47.050000000000004,0,5.04,6.32,6.71,6.94,7.11,7.22,7.32,7.390000000000001,7.5,153.52,154.23,154.54,154.74,154.88,155,155.08,155.15,155.27,29.69,29.060000000000002,28.82,28.580000000000002,28.35,28.14,27.92,27.72,27.310000000000002,N/A,N/A +2013,9,18,23,30,93880,92820,91790,46.58,0,5.45,6.91,7.33,7.57,7.74,7.86,7.94,8.01,8.1,143.8,144.48,144.93,145.29,145.61,145.89000000000001,146.16,146.41,146.91,29.19,28.7,28.490000000000002,28.27,28.060000000000002,27.86,27.650000000000002,27.46,27.060000000000002,N/A,N/A +2013,9,19,0,30,93860,92790,91760,52.97,0,6.34,8.11,8.540000000000001,8.8,9,9.14,9.24,9.33,9.450000000000001,164.09,163.86,163.73,163.6,163.48,163.36,163.23,163.11,162.81,28.11,27.810000000000002,27.64,27.45,27.26,27.080000000000002,26.89,26.71,26.34,N/A,N/A +2013,9,19,1,30,93900,92830,91800,54.1,0,4.69,6.58,7.19,7.68,8.07,8.4,8.700000000000001,8.97,9.43,164.02,163.23,162.83,162.4,162.02,161.67000000000002,161.35,161.05,160.49,27.39,27.25,27.13,26.96,26.8,26.63,26.44,26.27,25.89,N/A,N/A +2013,9,19,2,30,93950,92880,91840,62.83,0,5.33,7.28,7.890000000000001,8.36,8.73,9.05,9.33,9.58,10.03,155.29,155.69,155.94,156.19,156.45000000000002,156.71,157,157.28,157.91,26.080000000000002,25.88,25.740000000000002,25.580000000000002,25.41,25.240000000000002,25.060000000000002,24.89,24.54,N/A,N/A +2013,9,19,3,30,93980,92900,91870,65.63,0,3.66,5.38,6.01,6.53,6.98,7.38,7.7700000000000005,8.14,8.870000000000001,159.20000000000002,159.47,159.63,159.72,159.76,159.76,159.67000000000002,159.57,159.19,25.810000000000002,25.68,25.57,25.43,25.3,25.150000000000002,25,24.86,24.57,N/A,N/A +2013,9,19,4,30,93990,92910,91870,67.47,0,5.82,7.930000000000001,8.57,9.09,9.5,9.85,10.16,10.43,10.9,151.42000000000002,151.07,151.01,150.96,150.96,150.98,151.04,151.1,151.29,25.490000000000002,25.26,25.11,24.92,24.73,24.54,24.34,24.150000000000002,23.73,N/A,N/A +2013,9,19,5,30,94040,92960,91910,76.09,0,6,8.03,8.67,9.16,9.55,9.89,10.200000000000001,10.48,11.01,154.74,155.1,155.28,155.42000000000002,155.56,155.69,155.83,155.97,156.18,23.71,23.46,23.31,23.13,22.95,22.78,22.6,22.44,22.080000000000002,N/A,N/A +2013,9,19,6,30,94040,92960,91910,79.74,0,5.23,7.08,7.66,8.11,8.48,8.8,9.1,9.370000000000001,9.88,155.8,155.96,156.03,156.1,156.16,156.23,156.31,156.39000000000001,156.56,23.59,23.34,23.18,23,22.82,22.650000000000002,22.46,22.29,21.92,N/A,N/A +2013,9,19,7,30,94070,92980,91940,81.11,0,4.73,6.42,6.99,7.43,7.8,8.13,8.42,8.69,9.17,152.67000000000002,153.05,153.32,153.64000000000001,153.97,154.3,154.63,154.95000000000002,155.52,23.46,23.21,23.06,22.88,22.7,22.53,22.35,22.18,21.82,N/A,N/A +2013,9,19,8,30,94060,92980,91930,79.35000000000001,0,4.62,6.09,6.58,6.96,7.29,7.58,7.87,8.14,8.75,154.13,154.85,155.28,155.70000000000002,156.13,156.55,157.04,157.5,158.58,23.67,23.37,23.2,23.01,22.82,22.64,22.44,22.27,21.900000000000002,N/A,N/A +2013,9,19,9,30,94040,92960,91910,79.72,0,5.03,6.73,7.3100000000000005,7.7700000000000005,8.14,8.46,8.77,9.05,9.620000000000001,153.4,154.05,154.38,154.73,155.13,155.58,155.92000000000002,156.21,156.49,23.53,23.22,23.06,22.87,22.68,22.490000000000002,22.3,22.12,21.740000000000002,N/A,N/A +2013,9,19,10,30,94040,92960,91910,81.3,0,4.59,6.17,6.71,7.1000000000000005,7.41,7.67,7.9,8.11,8.5,151.41,151.86,152.18,152.35,152.5,152.63,152.75,152.87,153.15,22.990000000000002,22.7,22.54,22.35,22.16,21.98,21.79,21.62,21.25,N/A,N/A +2013,9,19,11,30,94040,92960,91910,84.83,0,3.97,5.41,5.91,6.3100000000000005,6.65,6.93,7.21,7.46,7.91,151.91,152.07,152.23,152.42000000000002,152.62,152.81,153.04,153.26,153.72,22.78,22.5,22.34,22.150000000000002,21.96,21.78,21.59,21.42,21.05,N/A,N/A +2013,9,19,12,30,94050,92960,91910,87.93,0,2.96,4.48,5.16,5.55,5.91,6.2700000000000005,6.63,6.97,7.640000000000001,143.77,145.84,147.41,148.85,149.73,150.26,150.86,151.46,152.92000000000002,22.330000000000002,22.05,21.900000000000002,21.71,21.53,21.37,21.2,21.04,20.72,N/A,N/A +2013,9,19,13,30,94040,92950,91900,90.5,1.8,2.62,3.61,4.07,4.53,4.8100000000000005,4.98,5.33,5.71,6.5200000000000005,139.97,142.23,143.73,145.26,146.36,147.17000000000002,148.63,150.19,153.41,22.05,21.77,21.62,21.44,21.26,21.09,20.94,20.81,20.580000000000002,N/A,N/A +2013,9,19,14,30,94090,93000,91950,87.47,0,2.68,3.42,3.66,3.81,3.92,4.01,4.1,4.19,4.55,123.7,125.44,126.52,127.52,128.52,129.51,130.74,131.92000000000002,136.03,22.56,22.22,22.04,21.84,21.650000000000002,21.47,21.28,21.1,20.740000000000002,N/A,N/A +2013,9,19,15,30,94100,93020,91970,81.13,0,4.04,5.09,5.42,5.6000000000000005,5.73,5.8100000000000005,5.87,5.91,5.97,130.14000000000001,131.12,131.68,132.09,132.46,132.78,133.11,133.42000000000002,134.08,23.59,23.09,22.87,22.650000000000002,22.45,22.26,22.06,21.87,21.5,N/A,N/A +2013,9,19,16,30,94130,93050,92000,83.42,3.7,5.46,6.9,7.3500000000000005,7.61,7.79,7.930000000000001,8.03,8.11,8.25,141.92000000000002,142.45000000000002,142.70000000000002,142.91,143.11,143.29,143.5,143.71,144.21,23.25,22.8,22.6,22.400000000000002,22.21,22.02,21.830000000000002,21.66,21.29,N/A,N/A +2013,9,19,17,30,94140,93050,91990,85.44,20.1,3.14,3.97,4.23,4.43,4.65,4.86,5.15,5.43,6.19,135.48,134.19,134.73,134.6,134.26,133.83,133.41,133.02,132.58,22.41,21.97,21.79,21.62,21.45,21.3,21.14,21,20.740000000000002,N/A,N/A +2013,9,19,18,30,94080,92990,91940,81.89,0,2.68,3.21,3.42,3.7,4.08,4.54,4.96,5.37,6.24,126.24000000000001,126.35000000000001,126.81,127.61,130.41,134.52,137.36,139.79,142.57,21.55,21.25,21.13,21,20.94,20.92,21,21.080000000000002,21.18,N/A,N/A +2013,9,19,19,30,94010,92930,91890,80.35000000000001,0,1.12,1.41,1.52,1.6,1.67,1.73,1.79,1.84,1.93,44.910000000000004,46.18,46.99,47.79,48.54,49.28,50.160000000000004,51.02,53.51,23.95,23.490000000000002,23.29,23.080000000000002,22.88,22.69,22.5,22.32,21.95,N/A,N/A +2013,9,19,20,30,93960,92880,91840,76.44,0,3.18,3.98,4.22,4.3500000000000005,4.44,4.5,4.54,4.5600000000000005,4.58,112.94,112.71000000000001,112.61,112.69,112.78,112.88,113.05,113.22,113.82000000000001,24.03,23.5,23.28,23.06,22.85,22.66,22.46,22.28,21.900000000000002,N/A,N/A +2013,9,19,21,30,93950,92870,91830,74.66,0,4.19,5.11,5.33,5.41,5.45,5.46,5.47,5.47,5.55,168.49,168.43,168.16,167.89000000000001,167.62,167.36,167.07,166.79,166,24.2,23.68,23.47,23.27,23.09,22.91,22.73,22.57,22.25,N/A,N/A +2013,9,19,22,30,93890,92810,91770,73.5,0,2.59,3.42,3.64,3.8000000000000003,3.92,4.0200000000000005,4.09,4.14,4.26,176.27,174.74,173.92000000000002,173.39000000000001,173.03,172.77,172.54,172.34,172.03,24.84,24.39,24.18,23.96,23.76,23.56,23.35,23.16,22.76,N/A,N/A +2013,9,19,23,30,93900,92810,91760,85.16,1.8,1.51,1.58,1.51,1.42,1.43,1.49,1.6500000000000001,1.82,2.13,44.88,46.56,49.980000000000004,56.44,67.21000000000001,80.48,89.34,97.08,106.78,21.47,21.150000000000002,21,20.87,20.8,20.77,20.85,20.95,21.18,N/A,N/A +2013,9,20,0,30,93870,92780,91730,84.94,0,1.5,1.74,1.9100000000000001,2.31,2.69,3.04,3.38,3.72,4.28,157.25,158.83,155.87,145.35,137.92000000000002,132.72,130.25,128.55,129.12,22.13,21.82,21.67,21.54,21.45,21.39,21.330000000000002,21.29,21.11,N/A,N/A +2013,9,20,1,30,93880,92800,91750,90.09,0,1.79,2.2,2.33,2.47,2.79,3.2600000000000002,3.6,3.89,4.46,135.92000000000002,136.09,136.36,136.51,136.32,135.89000000000001,134.43,132.8,131.1,22.37,22.06,21.91,21.740000000000002,21.6,21.48,21.34,21.19,20.91,N/A,N/A +2013,9,20,2,30,93880,92790,91750,87.82000000000001,0,1.97,2.75,3.06,3.34,3.62,3.89,4.15,4.38,4.8100000000000005,110.36,110.93,111.28,111.73,112.13,112.5,113.01,113.54,115.25,22.7,22.45,22.31,22.14,21.98,21.830000000000002,21.67,21.52,21.23,N/A,N/A +2013,9,20,3,30,93900,92820,91770,88.16,0,2.29,3.25,3.63,3.97,4.2700000000000005,4.53,4.79,5.03,5.5200000000000005,116.02,117.55,118.32000000000001,118.73,119.05,119.32000000000001,119.35000000000001,119.32000000000001,119.84,22.69,22.43,22.28,22.1,21.92,21.75,21.56,21.39,21.03,N/A,N/A +2013,9,20,4,30,93930,92840,91790,91.83,3.7,1.37,1.62,1.71,1.83,2.0100000000000002,2.25,2.43,2.58,2.89,157.1,153.83,151.28,147.76,142.02,134.51,128.91,124.07000000000001,117.66,22.07,21.77,21.62,21.45,21.32,21.21,21.09,20.98,20.71,N/A,N/A +2013,9,20,5,30,93880,92790,91740,94.61,1.8,1,1.1500000000000001,1.17,1.17,1.17,1.2,1.43,1.72,2.47,40.6,46.59,50.71,55.21,61.34,68.3,77.99,88.51,90.83,21.88,21.57,21.41,21.23,21.05,20.89,20.73,20.6,20.45,N/A,N/A +2013,9,20,6,30,93900,92810,91760,94.23,3.7,1.3900000000000001,1.6,1.6400000000000001,1.72,1.75,1.76,1.75,1.73,1.82,343.38,346.29,350.29,357.53000000000003,4.8500000000000005,12,20.34,28.080000000000002,45.07,21.900000000000002,21.61,21.47,21.32,21.18,21.04,20.900000000000002,20.76,20.490000000000002,N/A,N/A +2013,9,20,7,30,93880,92800,91750,92.84,1.8,1.81,2.6,2.91,3.19,3.41,3.6,3.72,3.81,3.7800000000000002,31.66,32.95,34.12,35.84,37.67,39.54,42.660000000000004,45.84,54.29,22.14,21.89,21.75,21.580000000000002,21.43,21.29,21.16,21.04,20.84,N/A,N/A +2013,9,20,8,30,93900,92810,91760,91.94,0,1.6600000000000001,2.13,2.3000000000000003,2.49,2.62,2.74,2.84,2.93,3.15,28.51,32.87,35.89,39.15,43.43,48.29,52.6,56.480000000000004,64.02,22.02,21.75,21.61,21.44,21.3,21.18,21.02,20.88,20.57,N/A,N/A +2013,9,20,9,30,93860,92780,91730,92,0,1.29,1.62,1.78,1.98,2.12,2.22,2.33,2.43,2.73,325.19,335.63,343.94,354.43,2.48,8.83,14.35,19.31,26.830000000000002,21.96,21.7,21.57,21.45,21.31,21.18,21.04,20.91,20.62,N/A,N/A +2013,9,20,10,30,93870,92790,91740,93.08,0,1.41,1.74,1.87,2.02,2.21,2.44,2.66,2.87,3.33,41.34,44.4,46.56,49.31,52.480000000000004,56.03,59.230000000000004,62.2,66.8,21.85,21.55,21.400000000000002,21.23,21.080000000000002,20.93,20.76,20.61,20.240000000000002,N/A,N/A +2013,9,20,11,30,93880,92800,91740,92.56,0,1.49,1.81,1.93,2.09,2.32,2.59,2.87,3.15,3.74,35.33,38.480000000000004,40.69,43.550000000000004,49.29,57.03,61.59,65.21000000000001,70.39,21.75,21.46,21.31,21.14,21,20.89,20.72,20.56,20.21,N/A,N/A +2013,9,20,12,30,93890,92800,91750,91.56,0,1.9000000000000001,2.59,2.84,2.99,3.15,3.3000000000000003,3.38,3.45,3.5500000000000003,343.95,346.23,347.65000000000003,349.07,351.5,354.5,358.5,2.41,10.92,21.76,21.5,21.35,21.17,21,20.84,20.68,20.53,20.2,N/A,N/A +2013,9,20,13,30,93920,92830,91780,90.55,1.8,2.43,3.33,3.7,4.05,4.39,4.73,5.04,5.33,5.87,8.06,7.24,6.58,6.08,5.54,4.98,4.47,3.99,2.79,21.72,21.43,21.27,21.09,20.91,20.73,20.54,20.37,20.080000000000002,N/A,N/A +2013,9,20,14,30,93940,92850,91790,91.26,3.7,1.68,2.0300000000000002,2.24,2.61,3.0100000000000002,3.41,3.72,3.98,4.18,335.14,339.7,342.94,347.94,353.24,358.71,2.65,6.04,10.01,20.7,20.39,20.26,20.12,20.04,19.990000000000002,19.98,19.97,19.95,N/A,N/A +2013,9,20,15,30,93960,92870,91820,89.84,1.8,5.2700000000000005,6.71,7.13,7.41,7.61,7.78,7.88,7.96,7.8100000000000005,19.18,18.76,18.6,18.55,18.64,18.79,19.06,19.34,20.64,21.47,21.11,20.94,20.77,20.6,20.45,20.31,20.17,19.92,N/A,N/A +2013,9,20,16,30,93990,92900,91840,91.35000000000001,1.8,4.03,5.73,6.47,7.1000000000000005,7.57,7.94,8.41,8.870000000000001,9.85,26.830000000000002,29.11,30.38,31.13,32.1,33.17,33.910000000000004,34.56,36.17,20.77,20.52,20.38,20.21,20.05,19.89,19.75,19.63,19.38,N/A,N/A +2013,9,20,17,30,94000,92910,91850,83.92,0,8.33,10.56,11.15,11.5,11.74,11.93,12.07,12.19,12.4,33.83,33.94,34.03,34.15,34.31,34.480000000000004,34.68,34.89,35.42,21.86,21.38,21.17,20.96,20.77,20.59,20.400000000000002,20.22,19.87,N/A,N/A +2013,9,20,18,30,94010,92920,91870,80.83,0,10.33,13.36,14.18,14.71,15.1,15.4,15.64,15.85,16.19,39,38.7,38.57,38.45,38.33,38.22,38.1,38,37.78,21.73,21.3,21.080000000000002,20.86,20.66,20.46,20.26,20.080000000000002,19.71,N/A,N/A +2013,9,20,19,30,94050,92960,91900,81.79,1.8,9.9,12.73,13.49,13.99,14.36,14.65,14.89,15.11,15.51,47.39,47.39,47.35,47.300000000000004,47.24,47.18,47.13,47.07,46.97,21.42,21.02,20.82,20.61,20.42,20.23,20.04,19.86,19.5,N/A,N/A +2013,9,20,20,30,94090,93000,91930,83.79,1.8,7.38,9.57,10.22,10.700000000000001,11.08,11.4,11.700000000000001,11.99,12.64,45.64,46.21,46.550000000000004,46.89,47.2,47.5,47.81,48.11,48.83,20.71,20.36,20.18,19.990000000000002,19.81,19.64,19.46,19.3,18.97,N/A,N/A +2013,9,20,21,30,94060,92970,91900,85.88,0,5.46,7.28,7.930000000000001,8.47,8.96,9.4,9.9,10.370000000000001,11.13,52.84,52.49,52.35,52.36,52.46,52.59,52.88,53.18,53.620000000000005,20.3,20.01,19.84,19.66,19.48,19.31,19.12,18.96,18.61,N/A,N/A +2013,9,20,22,30,94060,92970,91900,85.51,0,2.84,4.09,4.72,5.41,6.01,6.5600000000000005,7.09,7.6000000000000005,8.540000000000001,63.64,62.59,62.27,62.72,62.95,63.06,63.1,63.17,64.12,20.39,20.1,19.95,19.77,19.59,19.41,19.23,19.06,18.69,N/A,N/A +2013,9,20,23,30,94080,92990,91930,84.18,0,2.79,3.7600000000000002,4.13,4.43,4.69,4.93,5.15,5.37,5.8100000000000005,45.75,46.02,46.31,46.74,47.22,47.69,48.27,48.82,50.09,20.32,20.03,19.87,19.69,19.5,19.32,19.13,18.95,18.580000000000002,N/A,N/A +2013,9,21,0,30,94100,93010,91950,84.88,0,1.86,3.09,3.7,4.13,4.51,4.86,5.21,5.53,6.15,34.37,35.86,36.87,37.6,38.27,38.89,39.43,39.910000000000004,40.7,20.580000000000002,20.31,20.16,19.98,19.8,19.63,19.44,19.27,18.91,N/A,N/A +2013,9,21,1,30,94110,93010,91950,87.98,0,1.05,2.33,2.99,3.52,3.96,4.34,4.67,4.98,5.55,28.48,29.43,30.48,31.76,33.09,34.43,35.82,37.13,39.410000000000004,20.39,20.26,20.13,19.97,19.8,19.63,19.45,19.28,18.92,N/A,N/A +2013,9,21,2,30,94150,93050,91990,89.32000000000001,0,0.38,1.61,2.5300000000000002,3.16,3.68,4.12,4.54,4.96,5.82,353.66,9.51,21.52,25.900000000000002,29.740000000000002,33.13,36.01,38.61,42.01,20.07,19.98,19.86,19.72,19.55,19.39,19.21,19.05,18.7,N/A,N/A +2013,9,21,3,30,94190,93100,92030,84.61,0,2.08,3.3200000000000003,3.94,4.44,4.92,5.37,5.83,6.2700000000000005,7.140000000000001,37.09,37.38,37.81,38.52,39.19,39.82,40.62,41.410000000000004,43.160000000000004,20.29,20.05,19.900000000000002,19.740000000000002,19.57,19.41,19.240000000000002,19.080000000000002,18.75,N/A,N/A +2013,9,21,4,30,94220,93130,92060,80.89,0,2.11,3.23,3.74,4.19,4.59,4.94,5.26,5.5600000000000005,6.13,28.96,31.240000000000002,32.94,34.82,36.56,38.18,39.78,41.28,44.13,20.03,19.8,19.67,19.51,19.34,19.18,19.01,18.84,18.490000000000002,N/A,N/A +2013,9,21,5,30,94240,93140,92070,89.9,0,0.9,2.84,3.99,4.7,5.26,5.71,6.1000000000000005,6.46,7.23,8.45,16.28,21.92,25.34,28.3,30.88,33.34,35.65,40.51,19.03,19.25,19.2,19.09,18.96,18.8,18.63,18.48,18.2,N/A,N/A +2013,9,21,6,30,94270,93170,92100,92.64,0,0.6,2.5,3.85,4.64,5.37,6.05,6.71,7.34,8.31,341.19,356.43,8.59,13.72,18.44,22.84,26.85,30.6,36.74,18.45,18.81,18.86,18.84,18.78,18.7,18.61,18.53,18.39,N/A,N/A +2013,9,21,7,30,94290,93190,92120,93.11,0,1.1400000000000001,2.43,3.02,3.73,4.24,4.64,5.16,5.69,6.78,284.96,331.68,356.40000000000003,7.8500000000000005,15.610000000000001,21.22,24.330000000000002,26.86,29.44,18.2,18.52,18.51,18.46,18.330000000000002,18.18,18.03,17.900000000000002,17.75,N/A,N/A +2013,9,21,8,30,94290,93190,92120,95.03,0,1.32,2.09,2.43,3.21,3.8200000000000003,4.33,4.78,5.23,6.49,306.57,342.94,359.46,10.14,15.67,18.57,20.36,21.91,24.310000000000002,17.89,18.25,18.23,18.13,17.98,17.830000000000002,17.63,17.45,17.19,N/A,N/A +2013,9,21,9,30,94290,93180,92110,91.25,0,1.37,1.95,2.2600000000000002,2.6,2.95,3.31,3.71,4.1,4.87,318.83,338.19,348.49,355.64,0.63,4.53,7.34,9.83,12.94,18.21,18.13,18.07,17.95,17.830000000000002,17.71,17.61,17.53,17.43,N/A,N/A +2013,9,21,10,30,94290,93180,92110,95.09,0,1.5,4.3100000000000005,5.62,6.34,6.76,7.03,7.15,7.24,7.32,3.54,7.930000000000001,10.88,12.67,14.05,15.15,16.21,17.19,19.53,17.79,18.18,18.2,18.150000000000002,18.04,17.92,17.76,17.62,17.34,N/A,N/A +2013,9,21,11,30,94320,93210,92140,94.45,0,1.41,3.33,4.19,4.93,5.6000000000000005,6.21,6.76,7.2700000000000005,7.94,4.3500000000000005,2.05,1.23,1.55,2.3000000000000003,3.22,4.8500000000000005,6.55,10.84,17.59,18.01,18.05,18.07,18.01,17.93,17.78,17.64,17.330000000000002,N/A,N/A +2013,9,21,12,30,94340,93230,92150,96.28,0,0.5,1.84,2.84,3.79,4.7,5.57,6.34,7.07,8.21,19.3,16.580000000000002,14.450000000000001,13.72,13.51,13.57,14.41,15.38,17.82,17.04,17.29,17.3,17.31,17.3,17.28,17.240000000000002,17.18,16.98,N/A,N/A +2013,9,21,13,30,94360,93250,92180,93.32000000000001,0,0.88,2.2800000000000002,3.2600000000000002,3.89,4.45,4.98,5.46,5.91,6.71,53.18,31.650000000000002,19.54,18.66,18.3,18.18,18.490000000000002,18.88,20.2,17.11,17.18,17.22,17.240000000000002,17.21,17.18,17.12,17.05,16.85,N/A,N/A +2013,9,21,14,30,94390,93280,92210,85.98,0,2.66,3.2800000000000002,3.43,3.5300000000000002,3.62,3.7,3.75,3.7800000000000002,3.66,55.36,54.31,53.46,52.39,50.79,49.08,46.230000000000004,43.22,34.96,18.21,17.89,17.72,17.55,17.38,17.22,17.06,16.92,16.72,N/A,N/A +2013,9,21,15,30,94390,93290,92220,81.79,0,1.98,2.5,2.66,2.77,2.86,2.94,3.0500000000000003,3.19,3.92,336.61,339.48,341.19,342.72,344.25,345.67,347.54,349.51,357.87,19.12,18.75,18.57,18.38,18.19,18.02,17.830000000000002,17.66,17.39,N/A,N/A +2013,9,21,16,30,94410,93300,92230,75.35000000000001,0,2.96,3.7,3.92,4.05,4.14,4.21,4.26,4.3100000000000005,4.38,18.31,18.900000000000002,19.28,19.64,20.01,20.36,20.75,21.11,21.91,20.02,19.57,19.36,19.150000000000002,18.95,18.75,18.55,18.36,17.97,N/A,N/A +2013,9,21,17,30,94370,93270,92200,70.88,0,3.27,4.01,4.21,4.33,4.4,4.46,4.51,4.55,4.6000000000000005,14.56,14.950000000000001,15.16,15.41,15.66,15.9,16.18,16.45,17.04,21.01,20.38,20.12,19.88,19.66,19.46,19.25,19.05,18.66,N/A,N/A +2013,9,21,18,30,94330,93230,92170,71.19,0,3.2,3.94,4.15,4.26,4.34,4.4,4.44,4.47,4.53,30.85,28.85,27.8,26.93,26.16,25.47,24.76,24.12,22.830000000000002,21.18,20.7,20.490000000000002,20.28,20.080000000000002,19.89,19.69,19.51,19.13,N/A,N/A +2013,9,21,19,30,94270,93180,92130,62.74,0,2.95,3.54,3.7,3.79,3.85,3.9,3.94,3.97,4.03,38.6,36.19,34.68,33.43,32.34,31.38,30.44,29.59,27.96,22.990000000000002,22.37,22.12,21.88,21.67,21.47,21.26,21.07,20.68,N/A,N/A +2013,9,21,20,30,94200,93110,92060,60.57,0,2.91,3.46,3.6,3.66,3.7,3.72,3.73,3.74,3.74,30.69,29.21,28.34,27.64,27.04,26.52,26.02,25.57,24.7,23.86,23.25,22.990000000000002,22.76,22.53,22.330000000000002,22.12,21.93,21.53,N/A,N/A +2013,9,21,21,30,94120,93030,91990,56.13,0,2.23,2.73,2.89,2.98,3.0500000000000003,3.1,3.15,3.19,3.2600000000000002,43.79,42.36,41.52,40.87,40.28,39.730000000000004,39.230000000000004,38.78,37.87,25.02,24.44,24.19,23.96,23.740000000000002,23.53,23.32,23.13,22.73,N/A,N/A +2013,9,21,22,30,94050,92970,91930,56.56,0,2.05,2.46,2.5500000000000003,2.59,2.62,2.63,2.63,2.63,2.63,9.48,10.83,11.89,12.950000000000001,13.950000000000001,14.9,15.85,16.72,18.53,25.23,24.810000000000002,24.61,24.39,24.19,23.990000000000002,23.78,23.6,23.2,N/A,N/A +2013,9,21,23,30,94010,92930,91890,54.18,0,1.45,1.83,1.97,2.07,2.16,2.23,2.3000000000000003,2.37,2.48,23.73,29.01,31.740000000000002,33.92,35.72,37.27,38.64,39.87,41.93,25.57,25.150000000000002,24.95,24.740000000000002,24.54,24.35,24.14,23.96,23.56,N/A,N/A +2013,9,22,0,30,93980,92900,91850,57.45,0,2.04,3.31,3.5700000000000003,3.72,3.8200000000000003,3.88,3.91,3.93,3.92,76.97,75.92,75.29,74.81,74.47,74.24,74.06,73.91,73.7,25.13,25.11,24.98,24.810000000000002,24.63,24.45,24.26,24.080000000000002,23.69,N/A,N/A +2013,9,22,1,30,93960,92880,91830,54.08,0,2.71,3.85,4.3,4.8100000000000005,5.23,5.57,5.7700000000000005,5.92,5.97,81.60000000000001,85.64,87.51,88.35000000000001,88.59,88.46000000000001,88.27,88.09,88.17,24.46,24.42,24.37,24.29,24.19,24.080000000000002,23.92,23.78,23.42,N/A,N/A +2013,9,22,2,30,93980,92890,91840,57.370000000000005,0,2.17,4.5600000000000005,5.51,6.37,6.9,7.22,7.22,7.140000000000001,6.5200000000000005,107.38,98.97,94.76,93.58,93.52,94.07000000000001,94.91,95.72,97.4,22.400000000000002,22.97,23.14,23.32,23.41,23.45,23.39,23.31,23.02,N/A,N/A +2013,9,22,3,30,94000,92910,91850,54.75,0,2.38,4.28,5,5.8500000000000005,6.55,7.140000000000001,7.43,7.640000000000001,7.62,136.64000000000001,119.89,111.36,106.34,103.74000000000001,102.43,102,101.73,101.21000000000001,21.41,21.93,22.12,22.31,22.47,22.61,22.64,22.66,22.48,N/A,N/A +2013,9,22,4,30,94020,92920,91870,57.620000000000005,0,1.81,3.27,3.7800000000000002,4.49,5.17,5.8100000000000005,6.25,6.6000000000000005,6.7700000000000005,147.20000000000002,128.77,119.35000000000001,113.33,110.10000000000001,108.35000000000001,107.42,106.67,105.59,20.92,21.36,21.400000000000002,21.47,21.580000000000002,21.71,21.84,21.94,21.97,N/A,N/A +2013,9,22,5,30,94020,92920,91870,51.52,0,2.05,3,3.25,3.87,4.39,4.82,5.19,5.51,5.84,138.61,128.62,123.05,117.29,114.27,112.66,111.42,110.28,108.09,21.3,21.740000000000002,21.64,21.54,21.43,21.330000000000002,21.32,21.32,21.32,N/A,N/A +2013,9,22,6,30,94040,92940,91880,53.230000000000004,0,2.0100000000000002,2.45,2.3000000000000003,2.31,2.48,2.71,3.0300000000000002,3.36,3.99,129.58,113.89,108.75,107.21000000000001,109.93,114.46000000000001,117.15,119.31,119.85000000000001,20.28,20.81,20.76,20.67,20.6,20.53,20.5,20.48,20.5,N/A,N/A +2013,9,22,7,30,94070,92970,91900,55.54,0,1.62,1.73,1.59,1.6300000000000001,1.81,2.04,2.39,2.74,3.47,118.51,97.22,92.3,92.71000000000001,98.11,105.71000000000001,110.46000000000001,114.71000000000001,119.03,19.68,20.04,19.95,19.91,19.86,19.81,19.78,19.76,19.81,N/A,N/A +2013,9,22,8,30,94050,92950,91880,63.2,0,0.49,0.77,0.72,0.61,0.76,1.05,1.43,1.85,2.75,51.24,34.85,39.24,55.52,76.39,104.54,112.46000000000001,119.41,124.7,17.75,18.45,18.63,18.830000000000002,18.92,18.98,18.92,18.89,18.97,N/A,N/A +2013,9,22,9,30,94030,92920,91850,69.55,0,0.14,0.47000000000000003,0.67,0.85,1.04,1.24,1.51,1.81,2.48,77.83,63.690000000000005,63.870000000000005,78.74,92.22,105.27,111.75,117.27,121.56,16.35,17.26,17.62,17.98,18.150000000000002,18.25,18.27,18.3,18.46,N/A,N/A +2013,9,22,10,30,94030,92920,91850,72.83,0,0.26,0.2,0.23,0.42,0.65,0.9,1.17,1.46,2.09,290.96,345.37,14.25,70.75,97.21000000000001,108.53,114.79,120.79,127.87,15.56,16.34,16.59,16.8,17.06,17.3,17.51,17.68,17.86,N/A,N/A +2013,9,22,11,30,94030,92910,91840,75.46000000000001,0,0.13,0.16,0.24,0.54,0.88,1.24,1.57,1.92,2.56,305.40000000000003,81.3,122.21000000000001,128.01,132.6,136.27,138.15,139.83,141.07,15,15.89,16.16,16.330000000000002,16.51,16.66,16.79,16.9,17.05,N/A,N/A +2013,9,22,12,30,94020,92900,91830,77.76,0,0.28,0.76,0.99,1.1500000000000001,1.36,1.58,1.8800000000000001,2.19,2.84,66.13,87.26,100.95,110.5,120.37,130.31,135.3,139.44,142.15,14.3,15.16,15.46,15.69,15.91,16.1,16.29,16.46,16.77,N/A,N/A +2013,9,22,13,30,94040,92920,91840,72.16,0,0.13,0.63,1.05,1.22,1.43,1.6600000000000001,1.99,2.33,3.0700000000000003,121.18,113.13,108.45,110.5,116.84,124.63000000000001,129.73,134.25,138.76,14.25,14.870000000000001,15.19,15.44,15.68,15.9,16.12,16.32,16.66,N/A,N/A +2013,9,22,14,30,94050,92940,91860,61.19,0,0.72,0.88,0.9500000000000001,1.03,1.43,2.11,2.58,3.0300000000000002,3.83,81.2,92.83,100.86,109.38,117.82000000000001,128.5,132.3,135.32,136.89000000000001,16.84,16.52,16.39,16.27,16.34,16.45,16.6,16.73,16.9,N/A,N/A +2013,9,22,15,30,94050,92950,91880,48.7,0,1.83,2.29,2.44,2.5300000000000002,2.59,2.65,2.71,2.7600000000000002,2.91,126.85000000000001,130.09,131.99,133.55,134.99,136.28,137.67000000000002,138.93,141.33,19.97,19.5,19.29,19.1,18.91,18.740000000000002,18.56,18.39,18.06,N/A,N/A +2013,9,22,16,30,94020,92930,91870,41.6,0,2.61,3.21,3.39,3.48,3.54,3.59,3.61,3.64,3.66,147.95000000000002,148.98,149.51,149.92000000000002,150.29,150.61,150.94,151.24,151.86,22.34,21.78,21.54,21.31,21.1,20.91,20.7,20.52,20.13,N/A,N/A +2013,9,22,17,30,93990,92910,91850,37.09,0,2.88,3.5100000000000002,3.69,3.7800000000000002,3.83,3.87,3.89,3.9,3.91,164.28,164.63,164.81,164.94,165.05,165.14000000000001,165.24,165.34,165.51,23.87,23.27,23.01,22.77,22.54,22.330000000000002,22.12,21.92,21.52,N/A,N/A +2013,9,22,18,30,93950,92860,91810,34.45,0,2.84,3.44,3.6,3.69,3.74,3.77,3.79,3.81,3.81,167.18,167.39000000000001,167.48,167.52,167.55,167.57,167.58,167.59,167.57,24.86,24.240000000000002,23.97,23.73,23.5,23.29,23.07,22.87,22.46,N/A,N/A +2013,9,22,19,30,93900,92820,91770,31.990000000000002,0,2.72,3.2800000000000002,3.43,3.52,3.58,3.62,3.65,3.67,3.7,157.99,159,159.66,160.19,160.64000000000001,161.02,161.36,161.65,162.19,25.71,25.09,24.82,24.57,24.34,24.12,23.900000000000002,23.7,23.29,N/A,N/A +2013,9,22,20,30,93820,92750,91700,30.61,0,2.7600000000000002,3.36,3.54,3.66,3.74,3.81,3.85,3.89,3.95,173.22,172.53,172.02,171.61,171.25,170.93,170.63,170.37,169.87,26.310000000000002,25.7,25.44,25.18,24.95,24.740000000000002,24.52,24.32,23.900000000000002,N/A,N/A +2013,9,22,21,30,93750,92680,91640,27.96,0,2.86,3.45,3.61,3.7,3.7600000000000002,3.81,3.84,3.86,3.89,189.49,187.57,186.43,185.44,184.61,183.87,183.15,182.49,181.25,26.62,26.03,25.78,25.54,25.32,25.1,24.89,24.69,24.28,N/A,N/A +2013,9,22,22,30,93680,92600,91560,26.66,0,2.99,3.64,3.83,3.94,4.0200000000000005,4.07,4.12,4.15,4.21,185.51,183.48,182.26,181.21,180.31,179.52,178.76,178.08,176.79,26.77,26.240000000000002,26.01,25.78,25.560000000000002,25.36,25.14,24.95,24.54,N/A,N/A +2013,9,22,23,30,93670,92590,91550,27.42,0,3.08,3.8200000000000003,4.03,4.17,4.26,4.33,4.38,4.42,4.48,155.32,155.4,155.53,155.73,155.91,156.07,156.22,156.37,156.68,26.55,26.150000000000002,25.95,25.740000000000002,25.54,25.34,25.13,24.94,24.54,N/A,N/A +2013,9,23,0,30,93640,92560,91520,31.68,0,3.91,5.58,5.75,5.53,5.38,5.2700000000000005,5.24,5.22,5.21,169.74,169.96,170.08,170.26,170.49,170.74,170.88,170.98,170.67000000000002,25.240000000000002,25.47,25.42,25.240000000000002,25.05,24.86,24.650000000000002,24.46,24.05,N/A,N/A +2013,9,23,1,30,93650,92570,91530,37.53,0,3.44,5.5600000000000005,6.16,6.58,6.92,7.21,7.42,7.59,7.72,174.26,171.17000000000002,168.83,166.23,164.17000000000002,162.47,161.5,160.77,160.28,23.92,24.46,24.55,24.53,24.45,24.36,24.22,24.09,23.76,N/A,N/A +2013,9,23,2,30,93660,92580,91530,39.7,0,3.83,6.09,6.73,7.140000000000001,7.390000000000001,7.55,7.65,7.72,7.67,161.3,161.78,161.85,161.41,160.78,160.08,159.08,158.1,156.01,22.94,23.53,23.69,23.77,23.75,23.7,23.61,23.52,23.29,N/A,N/A +2013,9,23,3,30,93680,92600,91550,38.46,0,4.3,6.8500000000000005,7.640000000000001,8.14,8.5,8.77,8.96,9.11,9.08,163.78,162.72,161.34,158.97,156.67000000000002,154.47,152.96,151.76,151.51,22.3,22.92,23.09,23.13,23.13,23.12,23.080000000000002,23.05,22.91,N/A,N/A +2013,9,23,4,30,93670,92580,91540,37.95,0,3.84,6.48,7.23,7.72,8.040000000000001,8.26,8.36,8.43,8.540000000000001,152.41,151,150.22,149.69,149.41,149.28,148.92000000000002,148.57,147.92000000000002,21.81,22.73,23,23.2,23.330000000000002,23.42,23.400000000000002,23.35,23.03,N/A,N/A +2013,9,23,5,30,93680,92590,91540,38.54,0,3.85,6.68,7.63,8.33,8.8,9.13,9.28,9.39,9.42,159.12,159.28,159.28,159.16,159.08,159.02,159.06,159.14000000000001,159.56,21.2,22.1,22.39,22.63,22.8,22.92,22.95,22.96,22.8,N/A,N/A +2013,9,23,6,30,93690,92600,91550,42.58,0,3.61,6.46,7.47,8.34,9.03,9.61,10.040000000000001,10.4,10.78,158.23,160.3,161.49,162.28,163.06,163.81,164.53,165.17000000000002,166,20.6,21.5,21.78,22,22.150000000000002,22.25,22.3,22.330000000000002,22.3,N/A,N/A +2013,9,23,7,30,93690,92600,91540,44.51,0,4.47,7.32,8.45,9.49,10.35,11.08,11.63,12.09,12.52,164.06,166.37,167.72,168.63,169.23,169.67000000000002,169.9,170.08,170.05,20.13,20.69,20.900000000000002,21.1,21.28,21.43,21.56,21.67,21.78,N/A,N/A +2013,9,23,8,30,93710,92610,91560,54.11,0,2.37,4.64,5.49,6.41,7.24,8.02,8.74,9.41,10.55,137.71,148.16,154.17000000000002,158,160.58,162.45000000000002,163.73,164.83,166.20000000000002,18.39,19.29,19.51,19.72,19.900000000000002,20.06,20.21,20.36,20.62,N/A,N/A +2013,9,23,9,30,93670,92580,91520,50.89,0,3.3200000000000003,5.66,6.45,7.22,7.95,8.64,9.36,10.05,11.3,146.03,149.77,152.29,154.68,156.9,158.98,160.8,162.41,164.49,18.580000000000002,19.18,19.32,19.46,19.61,19.740000000000002,19.89,20.02,20.26,N/A,N/A +2013,9,23,10,30,93680,92570,91510,58.13,0,2.36,4.61,5.48,6.49,7.38,8.2,8.96,9.67,10.88,137.98,147.86,153.87,158.24,161.28,163.56,165.12,166.43,167.89000000000001,17.53,18.25,18.36,18.46,18.57,18.68,18.830000000000002,18.97,19.27,N/A,N/A +2013,9,23,11,30,93730,92620,91550,63.17,0,1.6,3.11,3.69,4.38,5.03,5.66,6.33,7,8.47,102.60000000000001,117.93,127.42,134.97,140.67000000000002,145.36,149.15,152.78,159.65,16.07,16.64,16.740000000000002,16.830000000000002,16.94,17.04,17.150000000000002,17.27,17.68,N/A,N/A +2013,9,23,12,30,93710,92610,91540,62.56,0,1.84,4.12,5.17,6.16,7.04,7.86,8.61,9.31,10.61,134.21,144.1,149.89000000000001,153.01,155.43,157.47,159.36,161.14000000000001,164.35,16.22,16.93,17.06,17.18,17.31,17.42,17.55,17.67,17.92,N/A,N/A +2013,9,23,13,30,93740,92630,91560,56.94,0,2.02,4.22,5.22,6.140000000000001,6.95,7.68,8.370000000000001,9.02,10.21,145.86,152.94,157.14000000000001,159.38,161.04,162.38,163.54,164.64000000000001,166.66,17.27,17.55,17.59,17.62,17.650000000000002,17.67,17.71,17.75,17.87,N/A,N/A +2013,9,23,14,30,93760,92660,91590,46.58,0,3.88,5.0600000000000005,5.51,5.87,6.09,6.23,6.5600000000000005,6.93,8.2,164.09,165.11,165.72,166.25,166.62,166.9,167.41,167.96,169.33,19.64,19.26,19.09,18.93,18.75,18.580000000000002,18.43,18.3,18.17,N/A,N/A +2013,9,23,15,30,93770,92670,91610,43.52,0,4.78,5.95,6.32,6.54,6.68,6.79,6.890000000000001,7,7.44,172.81,172.85,172.87,172.89000000000001,172.9,172.92000000000002,172.96,173,173.25,21.32,20.78,20.56,20.35,20.16,19.98,19.8,19.650000000000002,19.35,N/A,N/A +2013,9,23,16,30,93750,92670,91610,39.52,0,5.9,7.3,7.69,7.88,7.98,8.03,8.03,8.03,7.99,171.9,171.75,171.71,171.69,171.68,171.69,171.72,171.75,171.89000000000001,23.16,22.51,22.26,22.03,21.81,21.62,21.42,21.240000000000002,20.88,N/A,N/A +2013,9,23,17,30,93730,92650,91600,37.56,0,5.1000000000000005,6.2700000000000005,6.6000000000000005,6.76,6.8500000000000005,6.9,6.91,6.92,6.88,173.8,173.89000000000001,173.94,174.02,174.11,174.22,174.35,174.48,174.84,25.080000000000002,24.39,24.13,23.88,23.66,23.45,23.25,23.06,22.67,N/A,N/A +2013,9,23,18,30,93700,92620,91580,37,0,4.5200000000000005,5.51,5.79,5.91,5.98,6.0200000000000005,6.04,6.04,6.0200000000000005,179.52,179.74,179.86,180,180.16,180.32,180.52,180.69,181.14000000000001,26.66,25.97,25.69,25.44,25.21,25,24.79,24.59,24.19,N/A,N/A +2013,9,23,19,30,93650,92590,91550,35.6,0,3.97,4.84,5.09,5.22,5.3,5.34,5.37,5.38,5.37,183.04,183.49,183.8,184.13,184.47,184.82,185.19,185.54,186.31,28.03,27.35,27.080000000000002,26.82,26.6,26.38,26.17,25.97,25.57,N/A,N/A +2013,9,23,20,30,93600,92540,91510,34.58,0,4.0200000000000005,4.92,5.19,5.33,5.42,5.47,5.5,5.51,5.51,178.58,179.37,179.83,180.27,180.68,181.06,181.45000000000002,181.81,182.59,29.1,28.44,28.17,27.92,27.69,27.47,27.26,27.060000000000002,26.650000000000002,N/A,N/A +2013,9,23,21,30,93570,92510,91480,34.6,0,3.46,4.22,4.45,4.58,4.67,4.72,4.75,4.78,4.79,186.17000000000002,185.91,185.79,185.75,185.76,185.81,185.91,186.01,186.3,29.86,29.240000000000002,29,28.75,28.52,28.310000000000002,28.1,27.900000000000002,27.5,N/A,N/A +2013,9,23,22,30,93560,92500,91480,34.76,0,3.44,4.17,4.39,4.5,4.57,4.62,4.64,4.65,4.66,182.11,181.96,181.87,181.8,181.77,181.78,181.83,181.91,182.17000000000002,30.03,29.490000000000002,29.27,29.03,28.810000000000002,28.6,28.400000000000002,28.2,27.8,N/A,N/A +2013,9,23,23,30,93540,92490,91460,36.47,0,4.13,5.12,5.39,5.55,5.67,5.74,5.79,5.82,5.8500000000000005,166.44,167.52,168.19,168.73,169.19,169.62,170.02,170.4,171.13,29.71,29.29,29.09,28.88,28.68,28.48,28.27,28.080000000000002,27.69,N/A,N/A +2013,9,24,0,30,93550,92490,91460,42.82,0,2.95,4.7,5.21,5.55,5.79,5.95,6.05,6.13,6.19,151.69,153.78,155.12,156.17000000000002,156.98,157.6,158.05,158.41,158.87,28.36,28.490000000000002,28.44,28.32,28.18,28.01,27.830000000000002,27.650000000000002,27.27,N/A,N/A +2013,9,24,1,30,93560,92500,91470,45.03,0,3.99,6.23,6.96,7.5200000000000005,7.890000000000001,8.13,8.22,8.25,8.1,160.5,161.96,162.82,163.38,163.73,163.92000000000002,163.92000000000002,163.86,163.61,27.310000000000002,27.53,27.560000000000002,27.53,27.46,27.35,27.2,27.060000000000002,26.71,N/A,N/A +2013,9,24,2,30,93650,92580,91550,50.2,0,2.98,5.15,5.98,6.76,7.41,7.97,8.41,8.8,9.19,151.87,155.70000000000002,158.1,159.57,160.64000000000001,161.39000000000001,161.99,162.5,163.25,26.16,26.39,26.39,26.36,26.310000000000002,26.23,26.12,26,25.72,N/A,N/A +2013,9,24,3,30,93710,92640,91600,54.03,0,2.74,5,5.89,6.72,7.44,8.09,8.65,9.15,9.6,153.37,156.19,157.88,158.99,160,160.94,161.91,162.84,164.59,25.12,25.37,25.39,25.37,25.32,25.26,25.19,25.12,24.97,N/A,N/A +2013,9,24,4,30,93760,92690,91650,51.92,0,3.06,5.54,6.53,7.47,8.26,8.93,9.450000000000001,9.9,10.26,159.08,162.20000000000002,164.01,165.09,165.96,166.68,167.45000000000002,168.19,169.77,24.78,25.05,25.060000000000002,25.060000000000002,25.04,25.01,24.97,24.94,24.85,N/A,N/A +2013,9,24,5,30,93820,92740,91700,55.74,0,1.77,3.89,4.82,5.7700000000000005,6.61,7.36,7.97,8.52,9.08,139.45000000000002,154.54,163.12,166.67000000000002,169.04,170.56,171.57,172.4,173.61,23.94,24.43,24.45,24.46,24.46,24.46,24.45,24.43,24.400000000000002,N/A,N/A +2013,9,24,6,30,93900,92810,91770,59.33,0,0.59,2.1,3.17,3.87,4.5,5.07,5.64,6.19,7.17,137.5,151.71,161.92000000000002,163.79,165.17000000000002,166.22,166.98,167.65,168.83,22.93,23.650000000000002,23.77,23.84,23.86,23.85,23.81,23.77,23.67,N/A,N/A +2013,9,24,7,30,93960,92880,91830,61.29,0,0.38,0.81,1.1,1.69,2.3000000000000003,2.91,3.5100000000000002,4.13,5.24,39.89,115.9,152.34,159.81,164.88,167.79,169.27,170.43,171.38,22.22,23.07,23.2,23.18,23.17,23.16,23.13,23.09,23,N/A,N/A +2013,9,24,8,30,94000,92910,91860,63.39,0,0.38,0.99,1.37,1.81,2.24,2.69,3.12,3.54,4.38,111.31,151.93,175.46,178.93,180.46,180.52,179.99,179.31,177.85,21.45,22.56,22.79,22.76,22.73,22.73,22.68,22.64,22.52,N/A,N/A +2013,9,24,9,30,94010,92910,91860,68.25,0,0.72,1.2,1.31,1.47,1.7,1.99,2.3000000000000003,2.62,3.27,196.96,195.95000000000002,195.28,194.65,193.39000000000001,191.72,189.39000000000001,186.96,183.13,20.39,21.26,21.53,21.8,21.990000000000002,22.13,22.17,22.19,22.12,N/A,N/A +2013,9,24,10,30,94030,92940,91880,71.92,0,0.26,0.5,0.61,0.78,1.02,1.32,1.6500000000000001,2.0100000000000002,2.7,184.14000000000001,203.53,212.70000000000002,214.65,210.6,202.25,196.12,190.32,183.76,19.45,20.23,20.47,20.76,21.03,21.29,21.46,21.580000000000002,21.66,N/A,N/A +2013,9,24,11,30,94080,92980,91920,77.79,0,0.47000000000000003,1.01,1.21,1.36,1.3800000000000001,1.34,1.16,1.01,0.86,318.36,319.35,318.61,315.62,313.04,310.93,303.92,296.24,262.33,18.2,19.14,19.46,19.73,19.97,20.19,20.39,20.55,20.740000000000002,N/A,N/A +2013,9,24,12,30,94110,93010,91950,80.63,0,0.42,0.46,0.52,0.81,1.12,1.43,1.52,1.57,1.36,175.59,241.53,268.3,295.02,304.48,303,300.25,298.04,296.69,17.6,18.46,18.7,18.87,19.080000000000002,19.29,19.55,19.8,20.31,N/A,N/A +2013,9,24,13,30,94140,93040,91970,79.06,0,0.27,0.92,1.36,1.68,1.94,2.16,2.35,2.5300000000000002,2.9,3.8000000000000003,359.3,354.18,349.5,344.05,338.47,333.25,328.34000000000003,319.25,17.21,17.89,18.22,18.46,18.63,18.77,18.87,18.96,19.23,N/A,N/A +2013,9,24,14,30,94200,93090,92030,68.3,0,0.98,1.11,1.16,1.23,1.61,2.2600000000000002,2.69,3.04,3.31,274.17,277.14,280.23,284.85,292.51,303.7,307.87,310.7,312.88,19.27,18.94,18.81,18.71,18.89,19.17,19.53,19.84,19.97,N/A,N/A +2013,9,24,15,30,94200,93110,92050,47.52,0,2.13,2.5100000000000002,2.58,2.59,2.58,2.56,2.5300000000000002,2.5,2.45,304.03000000000003,306.63,308.25,309.7,311.08,312.37,313.83,315.2,319.05,22.73,22.240000000000002,22.03,21.830000000000002,21.64,21.46,21.28,21.1,20.75,N/A,N/A +2013,9,24,16,30,94220,93140,92080,37.64,0,2.08,2.45,2.52,2.5300000000000002,2.5300000000000002,2.5100000000000002,2.49,2.47,2.4,295.96,297.91,299.07,300.09000000000003,301.06,301.95,302.93,303.84000000000003,306.06,24.72,24.19,23.96,23.75,23.56,23.37,23.18,23,22.63,N/A,N/A +2013,9,24,17,30,94190,93120,92070,35.660000000000004,0,2.82,3.37,3.5,3.5500000000000003,3.5700000000000003,3.58,3.58,3.5700000000000003,3.54,314.61,315.6,316.17,316.69,317.16,317.61,318.07,318.5,319.44,26.73,26.13,25.87,25.64,25.43,25.23,25.03,24.84,24.45,N/A,N/A +2013,9,24,18,30,94160,93090,92050,36.09,0,3.12,3.74,3.89,3.96,4,4.01,4.0200000000000005,4.01,3.99,318.12,319.15000000000003,319.77,320.3,320.78000000000003,321.23,321.68,322.09000000000003,322.94,28.36,27.72,27.46,27.21,26.990000000000002,26.78,26.580000000000002,26.38,25.990000000000002,N/A,N/A +2013,9,24,19,30,94120,93060,92020,30.35,0,2.66,3.19,3.33,3.39,3.44,3.46,3.48,3.49,3.49,325.18,326.22,326.84000000000003,327.39,327.90000000000003,328.36,328.82,329.24,330.11,29.78,29.16,28.900000000000002,28.66,28.44,28.22,28.01,27.82,27.42,N/A,N/A +2013,9,24,20,30,94070,93010,91980,20.56,0,2.68,3.22,3.36,3.43,3.49,3.52,3.54,3.56,3.59,316.92,318.28000000000003,319.06,319.69,320.23,320.72,321.17,321.56,322.31,31.2,30.6,30.34,30.1,29.88,29.67,29.45,29.25,28.84,N/A,N/A +2013,9,24,21,30,94030,92970,91940,18.06,0,2.58,3.1,3.23,3.3000000000000003,3.34,3.37,3.39,3.4,3.42,324.22,324.64,324.88,325.1,325.29,325.47,325.63,325.79,326.07,31.54,30.96,30.72,30.490000000000002,30.27,30.060000000000002,29.85,29.650000000000002,29.240000000000002,N/A,N/A +2013,9,24,22,30,93980,92920,91890,18.150000000000002,0,2.02,2.38,2.46,2.49,2.5100000000000002,2.5100000000000002,2.5100000000000002,2.5100000000000002,2.5,310.97,312.14,312.86,313.5,314.09000000000003,314.65000000000003,315.2,315.71,316.77,31.54,31.04,30.82,30.6,30.39,30.18,29.98,29.78,29.38,N/A,N/A +2013,9,24,23,30,93950,92890,91870,17.42,0,2.1,2.39,2.4,2.36,2.32,2.27,2.23,2.19,2.12,335.67,339.42,341.81,344.12,346.17,348.04,349.83,351.44,354.48,31.41,31.03,30.85,30.64,30.44,30.25,30.04,29.85,29.46,N/A,N/A +2013,9,25,0,30,93940,92880,91860,24.560000000000002,0,1.3800000000000001,2.35,2.44,2.4,2.33,2.24,2.15,2.07,1.94,338.23,338.11,337.99,337.96,338.26,338.77,339.91,341.14,344.41,29.85,30.62,30.62,30.5,30.35,30.18,29.990000000000002,29.810000000000002,29.43,N/A,N/A +2013,9,25,1,30,93930,92870,91840,26.28,0,1.73,3.44,3.94,4.36,4.68,4.93,5.1000000000000005,5.25,5.32,48.86,51.31,52.84,54.04,55.21,56.35,57.54,58.65,60.29,28.150000000000002,29.13,29.240000000000002,29.3,29.29,29.240000000000002,29.150000000000002,29.04,28.77,N/A,N/A +2013,9,25,2,30,93950,92880,91850,32.24,0,1.17,2.58,3.21,3.87,4.42,4.88,5.22,5.5200000000000005,5.86,53.9,61.120000000000005,64.19,64.01,63.71,63.32,63.190000000000005,63.120000000000005,63.49,26.61,27.42,27.490000000000002,27.560000000000002,27.62,27.66,27.68,27.69,27.61,N/A,N/A +2013,9,25,3,30,93990,92910,91870,35,0,1.04,1.7,1.95,2.56,3.17,3.7800000000000002,4.3100000000000005,4.82,5.6000000000000005,358.47,37.71,55.46,65.83,71.85000000000001,74.85000000000001,76.59,77.98,79.93,25.55,26.490000000000002,26.61,26.69,26.75,26.8,26.84,26.87,26.88,N/A,N/A +2013,9,25,4,30,93980,92900,91860,36.93,0,1.5,1.49,1.43,1.83,2.35,3,3.68,4.39,5.66,356.19,35.96,54.86,78.61,91.78,97.71000000000001,99.4,99.97,99.23,24.990000000000002,25.92,25.95,25.89,25.86,25.85,25.88,25.93,26.14,N/A,N/A +2013,9,25,5,30,93990,92910,91870,38.13,0,1.68,1.35,1.1400000000000001,1.27,1.72,2.49,3.23,4,5.38,349.49,17.03,40.050000000000004,81.26,99.24000000000001,106.21000000000001,107.8,107.98,106.87,24.38,25.37,25.44,25.46,25.52,25.61,25.67,25.73,25.87,N/A,N/A +2013,9,25,6,30,94020,92930,91890,40.4,0,1.69,2.1,2,2.06,2.34,2.7600000000000002,3.3000000000000003,3.86,5.12,26.91,53.56,69.01,86.26,97.51,106.48,109.16,110.61,110.64,23.22,24.37,24.490000000000002,24.46,24.490000000000002,24.55,24.560000000000002,24.560000000000002,24.59,N/A,N/A +2013,9,25,7,30,94010,92930,91880,43.03,0,0.9,1.37,1.6500000000000001,2.33,3.0700000000000003,3.84,4.61,5.39,6.8500000000000005,30.53,82.82000000000001,104.04,115.93,122.4,125.53,126.25,126.57000000000001,126.7,22.28,23.42,23.66,23.89,24.04,24.16,24.26,24.36,24.580000000000002,N/A,N/A +2013,9,25,8,30,94020,92930,91880,45.5,0,0.15,0.76,1.43,2.25,3.0700000000000003,3.85,4.59,5.34,6.640000000000001,45.89,89.29,121.60000000000001,125.60000000000001,127.24000000000001,127.13000000000001,126.69,126.23,126.31,21.66,22.6,22.77,22.96,23.16,23.37,23.56,23.73,24.080000000000002,N/A,N/A +2013,9,25,9,30,93990,92900,91850,46.97,0,0.6900000000000001,0.55,0.58,1.03,1.59,2.24,2.85,3.47,4.5600000000000005,346.85,36.1,56.14,88.04,106.11,113.16,116.55,119.4,123.39,21.18,22.080000000000002,22.22,22.37,22.48,22.57,22.66,22.740000000000002,22.91,N/A,N/A +2013,9,25,10,30,93970,92870,91820,52.160000000000004,0,0.56,0.39,0.44,0.92,1.31,1.56,1.86,2.17,2.84,279.2,40.51,67.94,81.42,94.77,105.48,114.74000000000001,123.57000000000001,134.98,19.51,21.31,21.76,21.86,21.84,21.77,21.81,21.87,22.12,N/A,N/A +2013,9,25,11,30,93980,92880,91820,56.95,0,0.32,0.8,1.09,1.49,1.83,2.12,2.43,2.75,3.44,118.09,121.11,120.68,117.18,120.65,127.35000000000001,134.58,141.41,151.18,18.25,19.61,20,20.23,20.400000000000002,20.55,20.63,20.7,20.92,N/A,N/A +2013,9,25,12,30,93980,92870,91810,59.18,0,0.06,0.33,0.58,0.8300000000000001,1.03,1.19,1.52,1.9000000000000001,2.89,305.62,199.83,128.75,126.43,133.44,144.5,156.4,167.72,176.27,18.29,18.94,19,19.03,19.22,19.46,19.92,20.35,21.18,N/A,N/A +2013,9,25,13,30,93990,92890,91830,60.02,0,0.32,1.03,1.52,2.02,2.43,2.79,3.09,3.38,3.95,214.94,173.9,151.28,145.61,143.07,142.06,143.85,145.83,150.28,17.900000000000002,18.75,19.16,19.52,19.78,19.98,20.150000000000002,20.29,20.55,N/A,N/A +2013,9,25,14,30,93980,92880,91820,52,0,0.12,0.37,0.63,1.11,1.59,2.05,2.5500000000000003,3.08,4.15,160.70000000000002,149.94,142.1,138.06,140.5,147.35,151.86,156.05,159.75,20.330000000000002,20.05,19.98,19.94,20.05,20.22,20.23,20.240000000000002,20.42,N/A,N/A +2013,9,25,15,30,93980,92900,91850,48.69,0,1.26,1.72,1.93,2.1,2.25,2.39,2.5,2.61,2.7600000000000002,174.98,170.24,167.66,166.19,165.19,164.47,164,163.61,162.98,23.87,23.42,23.22,23.03,22.84,22.67,22.490000000000002,22.32,21.97,N/A,N/A +2013,9,25,16,30,93940,92870,91830,43.22,0,3.0500000000000003,3.79,4.01,4.14,4.22,4.28,4.3100000000000005,4.34,4.38,165.93,166.44,166.73,166.95000000000002,167.12,167.27,167.41,167.54,167.8,26.38,25.79,25.54,25.310000000000002,25.1,24.900000000000002,24.7,24.51,24.13,N/A,N/A +2013,9,25,17,30,93890,92820,91790,40.02,0,3.68,4.58,4.8500000000000005,5.01,5.11,5.18,5.23,5.28,5.34,177.34,176.71,176.31,175.95000000000002,175.63,175.34,175.05,174.78,174.25,27.79,27.13,26.87,26.63,26.41,26.2,25.990000000000002,25.8,25.41,N/A,N/A +2013,9,25,18,30,93850,92780,91750,36.89,0,5.04,6.24,6.59,6.78,6.91,6.99,7.05,7.1000000000000005,7.15,181.64000000000001,180.99,180.62,180.35,180.12,179.94,179.79,179.66,179.46,29.21,28.48,28.2,27.94,27.71,27.490000000000002,27.28,27.07,26.67,N/A,N/A +2013,9,25,19,30,93800,92740,91710,33.81,0,4.66,5.76,6.09,6.26,6.390000000000001,6.48,6.54,6.6000000000000005,6.67,184.77,185.17000000000002,185.37,185.55,185.72,185.88,186.04,186.19,186.47,30.34,29.63,29.35,29.09,28.86,28.64,28.42,28.21,27.8,N/A,N/A +2013,9,25,20,30,93720,92660,91640,31.150000000000002,0,4.21,5.15,5.43,5.6000000000000005,5.72,5.8,5.87,5.92,6,185.94,185.77,185.70000000000002,185.62,185.58,185.55,185.54,185.54,185.58,31.03,30.36,30.09,29.830000000000002,29.6,29.38,29.16,28.95,28.54,N/A,N/A +2013,9,25,21,30,93660,92610,91590,31.01,0,4.64,5.71,6.0200000000000005,6.21,6.34,6.43,6.5,6.5600000000000005,6.63,181.93,181.47,181.28,181.21,181.21,181.24,181.3,181.37,181.57,31.330000000000002,30.69,30.44,30.19,29.96,29.740000000000002,29.52,29.32,28.91,N/A,N/A +2013,9,25,22,30,93620,92560,91540,30.7,0,5.84,7.17,7.51,7.68,7.78,7.8500000000000005,7.9,7.930000000000001,7.99,162.23,164.38,165.83,167.36,168.67000000000002,169.85,170.93,171.91,173.64000000000001,31.240000000000002,30.67,30.44,30.21,30,29.79,29.580000000000002,29.38,28.98,N/A,N/A +2013,9,25,23,30,93570,92520,91500,32.4,0,5.12,6.3100000000000005,6.6000000000000005,6.8,6.95,7.05,7.13,7.2,7.3,180.03,178.34,177.75,177.8,177.9,178.04,178.18,178.31,178.54,31.1,30.71,30.53,30.32,30.13,29.93,29.73,29.54,29.150000000000002,N/A,N/A +2013,9,26,0,30,93580,92520,91500,36.35,0,4.73,7.0200000000000005,7.7700000000000005,8.33,8.76,9.120000000000001,9.41,9.64,9.98,159.11,159.5,159.77,160.05,160.32,160.6,160.87,161.12,161.61,29.55,29.650000000000002,29.62,29.52,29.400000000000002,29.26,29.09,28.93,28.560000000000002,N/A,N/A +2013,9,26,1,30,93580,92520,91490,39.38,0,4.72,7.4,8.4,9.290000000000001,10.07,10.790000000000001,11.370000000000001,11.88,12.41,158.59,158.39000000000001,158.29,158.28,158.38,158.56,158.81,159.06,159.56,28.29,28.560000000000002,28.61,28.61,28.57,28.51,28.41,28.310000000000002,28.02,N/A,N/A +2013,9,26,2,30,93610,92540,91520,39.96,0,5.16,7.88,8.88,9.75,10.51,11.19,11.78,12.3,13.08,157.39000000000001,157.82,158.1,158.32,158.61,158.95000000000002,159.35,159.74,160.31,27.36,27.66,27.75,27.810000000000002,27.84,27.86,27.84,27.810000000000002,27.650000000000002,N/A,N/A +2013,9,26,3,30,93620,92550,91520,43.230000000000004,0,5.29,8.26,9.42,10.5,11.43,12.27,12.96,13.58,14.47,154.34,154.69,154.97,155.31,155.8,156.39000000000001,157.13,157.86,159.5,26.560000000000002,26.87,26.97,27.04,27.080000000000002,27.11,27.1,27.09,26.97,N/A,N/A +2013,9,26,4,30,93620,92550,91520,42.550000000000004,0,6.22,9.31,10.5,11.59,12.55,13.43,14.200000000000001,14.91,16.01,159,159.67000000000002,160.06,160.34,160.67000000000002,161.03,161.53,162.04,163.36,26.09,26.36,26.45,26.53,26.580000000000002,26.62,26.64,26.650000000000002,26.6,N/A,N/A +2013,9,26,5,30,93630,92560,91520,42.550000000000004,0,5.95,9.01,10.17,11.24,12.200000000000001,13.09,13.9,14.64,15.85,161.57,162.08,162.33,162.48,162.69,162.95000000000002,163.42000000000002,163.9,165.29,25.46,25.77,25.87,25.95,26.02,26.080000000000002,26.12,26.14,26.150000000000002,N/A,N/A +2013,9,26,6,30,93640,92570,91530,44.22,0,6.23,9.22,10.3,11.290000000000001,12.18,13,13.780000000000001,14.51,15.76,159.71,160.51,160.98,161.39000000000001,161.85,162.33,163.01,163.68,165.42000000000002,24.8,25.03,25.1,25.16,25.2,25.23,25.26,25.28,25.310000000000002,N/A,N/A +2013,9,26,7,30,93660,92580,91540,46.53,0,6.94,10.1,11.25,12.3,13.24,14.09,14.9,15.65,16.95,159.88,160.88,161.49,162.08,162.67000000000002,163.26,163.94,164.6,166.07,24.18,24.39,24.45,24.51,24.57,24.62,24.66,24.7,24.75,N/A,N/A +2013,9,26,8,30,93650,92570,91530,48.34,0,6.96,10.14,11.3,12.35,13.31,14.19,15.030000000000001,15.790000000000001,17.150000000000002,158.96,160.38,161.26,162.09,162.94,163.78,164.69,165.56,167.37,23.62,23.81,23.87,23.92,23.98,24.03,24.09,24.14,24.21,N/A,N/A +2013,9,26,9,30,93660,92580,91540,49.86,0,6.86,10,11.18,12.25,13.21,14.09,14.91,15.67,17,158.1,159.8,160.89000000000001,161.95000000000002,163.01,164.04,165.15,166.21,168.27,23.150000000000002,23.35,23.42,23.490000000000002,23.57,23.63,23.71,23.78,23.88,N/A,N/A +2013,9,26,10,30,93660,92570,91530,50.96,0,6.58,9.74,10.93,12.030000000000001,13.030000000000001,13.93,14.8,15.59,16.990000000000002,156.49,158.76,160.14000000000001,161.41,162.62,163.76,164.92000000000002,166.01,168,22.66,22.91,22.990000000000002,23.080000000000002,23.17,23.25,23.34,23.42,23.55,N/A,N/A +2013,9,26,11,30,93700,92610,91560,56.81,0,5.21,7.98,9.07,10.07,11.01,11.9,12.76,13.57,15.02,143.38,146.91,149.06,150.92000000000002,152.61,154.17000000000002,155.66,157.05,159.79,21.240000000000002,21.47,21.54,21.59,21.650000000000002,21.7,21.75,21.8,21.89,N/A,N/A +2013,9,26,12,30,93700,92610,91560,62.22,0,4.79,7.67,8.85,10,11,11.89,12.74,13.530000000000001,14.91,144.11,148.84,151.63,153.81,155.58,157.1,158.59,159.98,162.73,20.84,21.07,21.12,21.17,21.21,21.23,21.28,21.32,21.44,N/A,N/A +2013,9,26,13,30,93750,92660,91600,68.41,0,4.0200000000000005,6.5,7.57,8.6,9.52,10.35,11.18,11.96,13.4,143.21,148.58,151.65,153.87,155.68,157.21,158.63,159.94,162.24,20.63,20.68,20.67,20.650000000000002,20.64,20.63,20.64,20.650000000000002,20.71,N/A,N/A +2013,9,26,14,30,93770,92680,91630,62.08,0,6.51,8.44,9.07,9.57,10.05,10.5,10.82,11.1,11.93,153.23,154.42000000000002,155.15,155.81,156.53,157.26,157.77,158.20000000000002,159.56,22.68,22.26,22.080000000000002,21.89,21.72,21.57,21.400000000000002,21.25,20.97,N/A,N/A +2013,9,26,15,30,93800,92720,91670,59.84,0,6.84,8.66,9.19,9.52,9.74,9.89,10,10.1,10.28,157.13,157.54,157.76,157.93,158.09,158.22,158.38,158.52,158.92000000000002,24.36,23.77,23.53,23.31,23.09,22.900000000000002,22.7,22.53,22.16,N/A,N/A +2013,9,26,16,30,93800,92720,91680,52.99,0,7.1000000000000005,8.96,9.5,9.81,10.01,10.15,10.24,10.31,10.39,160.83,161.08,161.19,161.27,161.34,161.41,161.48,161.54,161.68,26.03,25.330000000000002,25.07,24.82,24.6,24.39,24.18,23.98,23.59,N/A,N/A +2013,9,26,17,30,93780,92710,91680,45.480000000000004,0,7,8.790000000000001,9.31,9.61,9.81,9.94,10.03,10.1,10.17,164.43,164.51,164.56,164.6,164.64000000000001,164.67000000000002,164.70000000000002,164.73,164.79,27.650000000000002,26.89,26.61,26.35,26.12,25.900000000000002,25.68,25.48,25.080000000000002,N/A,N/A +2013,9,26,18,30,93750,92690,91660,39.5,0,6.9,8.65,9.15,9.43,9.620000000000001,9.74,9.83,9.9,9.97,162.78,162.98,163.1,163.19,163.26,163.33,163.39000000000001,163.44,163.55,28.91,28.13,27.84,27.57,27.330000000000002,27.11,26.89,26.69,26.27,N/A,N/A +2013,9,26,19,30,93740,92680,91650,35.2,0,6.79,8.48,8.97,9.24,9.42,9.540000000000001,9.63,9.69,9.76,163.34,163.49,163.56,163.61,163.65,163.68,163.71,163.74,163.79,29.830000000000002,29.060000000000002,28.77,28.51,28.27,28.04,27.82,27.61,27.2,N/A,N/A +2013,9,26,20,30,93690,92630,91610,33.64,0,6.42,8.02,8.48,8.73,8.91,9.02,9.1,9.16,9.23,162.82,162.94,163.01,163.06,163.1,163.14000000000001,163.16,163.18,163.23,30.330000000000002,29.59,29.310000000000002,29.05,28.810000000000002,28.59,28.37,28.17,27.75,N/A,N/A +2013,9,26,21,30,93650,92600,91570,32.43,0,6.63,8.3,8.77,9.03,9.21,9.33,9.41,9.47,9.540000000000001,161.65,161.75,161.8,161.83,161.84,161.86,161.88,161.89000000000001,161.92000000000002,30.71,30.01,29.75,29.5,29.27,29.05,28.84,28.63,28.22,N/A,N/A +2013,9,26,22,30,93620,92560,91540,32.18,0,6.49,8.18,8.65,8.91,9.09,9.21,9.3,9.36,9.44,160.19,160.19,160.19,160.15,160.12,160.08,160.05,160.02,159.95000000000002,30.67,30.080000000000002,29.85,29.61,29.400000000000002,29.19,28.97,28.77,28.37,N/A,N/A +2013,9,26,23,30,93590,92540,91510,35.75,0,6.67,8.55,9.06,9.38,9.6,9.77,9.89,9.99,10.13,156.9,156.83,156.81,156.77,156.74,156.71,156.68,156.66,156.61,30.1,29.69,29.5,29.29,29.080000000000002,28.88,28.68,28.490000000000002,28.09,N/A,N/A +2013,9,27,0,30,93600,92540,91510,40.04,0,5.92,8.56,9.44,10.11,10.63,11.05,11.39,11.67,12.02,151.46,151.76,151.91,152.03,152.13,152.22,152.26,152.29,152.23,28.62,28.6,28.53,28.400000000000002,28.27,28.12,27.95,27.79,27.42,N/A,N/A +2013,9,27,1,30,93610,92550,91520,44.47,0,5.17,7.96,9.02,9.96,10.790000000000001,11.540000000000001,12.19,12.780000000000001,13.61,145.47,145.46,145.49,145.63,145.91,146.29,146.78,147.28,148.31,27.23,27.35,27.34,27.3,27.240000000000002,27.17,27.080000000000002,26.98,26.72,N/A,N/A +2013,9,27,2,30,93640,92570,91540,47.9,0,4.7700000000000005,7.51,8.6,9.6,10.51,11.38,12.19,12.94,14.15,143.49,144.20000000000002,144.77,145.49,146.33,147.24,148.11,148.92000000000002,150.12,26.3,26.47,26.490000000000002,26.490000000000002,26.47,26.44,26.38,26.330000000000002,26.16,N/A,N/A +2013,9,27,3,30,93670,92600,91560,49.43,0,5.12,7.97,9.120000000000001,10.16,11.120000000000001,12.030000000000001,12.88,13.69,15.09,147.52,148.1,148.48,148.88,149.35,149.87,150.41,150.94,151.87,25.61,25.77,25.79,25.8,25.79,25.77,25.73,25.7,25.57,N/A,N/A +2013,9,27,4,30,93680,92610,91570,51.44,0,5.89,8.73,9.790000000000001,10.74,11.6,12.39,13.17,13.9,15.26,147.82,148.41,148.76,149.07,149.4,149.76,150.21,150.65,151.70000000000002,25.03,25.080000000000002,25.05,25.01,24.95,24.900000000000002,24.84,24.79,24.67,N/A,N/A +2013,9,27,5,30,93690,92620,91580,54.47,0,5.45,8.26,9.33,10.3,11.19,12.02,12.82,13.58,15.030000000000001,145.66,146.84,147.55,148.19,148.83,149.46,150.13,150.78,152.1,24.27,24.34,24.330000000000002,24.3,24.26,24.22,24.18,24.14,24.060000000000002,N/A,N/A +2013,9,27,6,30,93720,92640,91600,55.67,0,5.49,8.32,9.42,10.39,11.290000000000001,12.120000000000001,12.93,13.69,15.200000000000001,142,143.91,145.08,146.11,147.11,148.07,149.06,149.98,151.86,23.63,23.71,23.7,23.67,23.63,23.6,23.57,23.55,23.5,N/A,N/A +2013,9,27,7,30,93740,92660,91620,55.410000000000004,0,5.5200000000000005,8.42,9.52,10.52,11.41,12.21,13,13.74,15.16,147.84,149.75,150.87,151.8,152.63,153.38,154.12,154.8,156.21,23.34,23.42,23.41,23.37,23.34,23.3,23.26,23.22,23.14,N/A,N/A +2013,9,27,8,30,93750,92670,91630,58.38,0,5.82,8.73,9.85,10.83,11.72,12.52,13.32,14.07,15.5,147.3,149.05,150.14000000000001,151.11,152.07,152.99,154,154.97,156.99,22.91,22.98,22.97,22.94,22.91,22.88,22.85,22.82,22.77,N/A,N/A +2013,9,27,9,30,93760,92680,91630,67,0,6,8.76,9.8,10.69,11.47,12.18,12.85,13.48,14.700000000000001,144.5,146.1,147.09,147.96,148.82,149.64000000000001,150.53,151.37,153.17000000000002,22.16,22.13,22.07,21.98,21.89,21.8,21.71,21.62,21.46,N/A,N/A +2013,9,27,10,30,93770,92680,91630,79.84,0,5.0200000000000005,7.62,8.65,9.540000000000001,10.32,11.040000000000001,11.72,12.36,13.63,141.16,143.5,144.98,146.24,147.43,148.55,149.66,150.71,152.76,21.32,21.28,21.21,21.11,21.01,20.91,20.81,20.72,20.53,N/A,N/A +2013,9,27,11,30,93750,92660,91610,85.89,0,5.66,8.290000000000001,9.3,10.17,10.93,11.620000000000001,12.3,12.93,14.19,143.47,145.29,146.47,147.59,148.67000000000002,149.70000000000002,150.78,151.8,153.91,21.02,20.95,20.88,20.78,20.68,20.59,20.490000000000002,20.400000000000002,20.240000000000002,N/A,N/A +2013,9,27,12,30,93770,92680,91620,84.66,0,5.19,7.76,8.75,9.620000000000001,10.370000000000001,11.05,11.73,12.36,13.57,142.87,144.83,146.1,147.29,148.44,149.53,150.67000000000002,151.74,153.85,20.67,20.62,20.55,20.45,20.36,20.27,20.17,20.080000000000002,19.91,N/A,N/A +2013,9,27,13,30,93780,92690,91640,82.13,0,6.03,8.4,9.26,9.98,10.59,11.14,11.65,12.13,13.08,146.65,148.12,149.05,149.95000000000002,150.82,151.65,152.52,153.33,155.04,20.78,20.6,20.48,20.35,20.21,20.09,19.97,19.85,19.64,N/A,N/A +2013,9,27,14,30,93820,92730,91680,72.31,0,6.61,8.46,9.02,9.41,9.69,9.92,10.13,10.32,10.77,152.93,153.55,153.93,154.3,154.68,155.04,155.48,155.89000000000001,156.93,22.11,21.64,21.43,21.23,21.03,20.85,20.67,20.490000000000002,20.150000000000002,N/A,N/A +2013,9,27,15,30,93820,92730,91680,63.46,0,7.48,9.5,10.08,10.43,10.66,10.82,10.94,11.040000000000001,11.19,161.11,161.15,161.16,161.19,161.22,161.25,161.3,161.35,161.49,23.650000000000002,23.02,22.78,22.55,22.330000000000002,22.13,21.92,21.73,21.35,N/A,N/A +2013,9,27,16,30,93820,92740,91690,56.31,0,7.82,9.86,10.46,10.81,11.040000000000001,11.200000000000001,11.31,11.4,11.51,160.89000000000001,160.97,161.04,161.09,161.15,161.20000000000002,161.25,161.31,161.42000000000002,25.21,24.48,24.21,23.96,23.73,23.52,23.31,23.11,22.71,N/A,N/A +2013,9,27,17,30,93780,92700,91670,48.7,0,8.24,10.38,11,11.34,11.58,11.74,11.86,11.950000000000001,12.06,159.31,159.42000000000002,159.48,159.53,159.58,159.61,159.65,159.69,159.76,26.79,26.01,25.72,25.46,25.22,25,24.78,24.580000000000002,24.18,N/A,N/A +2013,9,27,18,30,93740,92680,91640,44.76,0,8.290000000000001,10.44,11.07,11.42,11.66,11.83,11.950000000000001,12.05,12.17,157.25,157.42000000000002,157.5,157.57,157.63,157.68,157.72,157.76,157.86,27.990000000000002,27.18,26.89,26.62,26.38,26.16,25.93,25.73,25.310000000000002,N/A,N/A +2013,9,27,19,30,93720,92660,91630,40.4,0,7.82,9.84,10.46,10.81,11.05,11.22,11.35,11.450000000000001,11.58,156.54,156.64000000000001,156.70000000000002,156.74,156.77,156.79,156.82,156.85,156.9,29.03,28.23,27.94,27.67,27.43,27.2,26.98,26.77,26.35,N/A,N/A +2013,9,27,20,30,93670,92610,91580,39.47,0,7.79,9.83,10.43,10.78,11.03,11.200000000000001,11.32,11.42,11.55,157.65,157.79,157.87,157.92000000000002,157.96,158,158.03,158.06,158.11,29.63,28.86,28.580000000000002,28.310000000000002,28.07,27.84,27.62,27.41,26.990000000000002,N/A,N/A +2013,9,27,21,30,93630,92570,91550,39.54,0,8.11,10.24,10.86,11.23,11.49,11.67,11.81,11.92,12.07,157.04,157.21,157.3,157.37,157.43,157.48,157.53,157.57,157.65,29.96,29.25,28.990000000000002,28.73,28.490000000000002,28.27,28.05,27.85,27.43,N/A,N/A +2013,9,27,22,30,93590,92530,91510,40.75,0,8.120000000000001,10.34,10.99,11.39,11.67,11.870000000000001,12.030000000000001,12.15,12.32,154.75,154.88,154.96,155.02,155.08,155.13,155.18,155.24,155.33,30.01,29.41,29.17,28.92,28.7,28.490000000000002,28.27,28.07,27.66,N/A,N/A +2013,9,27,23,30,93560,92500,91480,41.76,0,8.5,10.9,11.56,11.98,12.27,12.49,12.65,12.780000000000001,12.98,158.09,157.93,157.87,157.79,157.72,157.65,157.59,157.53,157.42000000000002,29.62,29.2,29.01,28.79,28.59,28.39,28.18,27.990000000000002,27.59,N/A,N/A +2013,9,28,0,30,93550,92490,91460,47.44,0,8.33,11.32,12.25,12.950000000000001,13.5,13.950000000000001,14.33,14.65,15.17,152.63,152.95000000000002,153.09,153.21,153.32,153.43,153.53,153.63,153.78,28.400000000000002,28.26,28.14,27.98,27.82,27.650000000000002,27.48,27.310000000000002,26.95,N/A,N/A +2013,9,28,1,30,93570,92510,91480,51.29,0,5.09,7.53,8.42,9.17,9.8,10.35,10.86,11.32,12.200000000000001,146.65,147.52,148.08,148.52,148.92000000000002,149.29,149.68,150.05,150.85,27.53,27.5,27.42,27.32,27.2,27.080000000000002,26.94,26.810000000000002,26.53,N/A,N/A +2013,9,28,2,30,93610,92540,91510,53.18,0,5.2700000000000005,7.86,8.84,9.69,10.42,11.06,11.66,12.22,13.22,152.57,153.43,153.96,154.44,154.86,155.25,155.61,155.94,156.55,27,26.990000000000002,26.92,26.830000000000002,26.73,26.62,26.5,26.38,26.13,N/A,N/A +2013,9,28,3,30,93630,92570,91530,57.02,0,5.08,7.6000000000000005,8.53,9.35,10.08,10.75,11.370000000000001,11.94,13.05,150.62,151.93,152.8,153.74,154.66,155.55,156.37,157.13,158.47,26.45,26.46,26.42,26.34,26.26,26.17,26.07,25.97,25.75,N/A,N/A +2013,9,28,4,30,93650,92580,91550,60.85,0,4.79,7.25,8.15,8.94,9.65,10.290000000000001,10.93,11.52,12.71,147.21,148.6,149.61,150.74,151.93,153.15,154.41,155.62,157.88,25.75,25.78,25.740000000000002,25.69,25.63,25.560000000000002,25.48,25.400000000000002,25.22,N/A,N/A +2013,9,28,5,30,93690,92610,91580,64.95,0,4.2,6.65,7.61,8.46,9.23,9.94,10.63,11.290000000000001,12.59,146.73,148.71,149.98,151.19,152.33,153.43,154.49,155.48,157.26,25.3,25.34,25.3,25.240000000000002,25.18,25.11,25.04,24.97,24.8,N/A,N/A +2013,9,28,6,30,93720,92650,91610,70.93,0,3.38,5.7700000000000005,6.78,7.66,8.46,9.19,9.9,10.57,11.89,144.95000000000002,147.3,148.84,150.18,151.46,152.70000000000002,153.93,155.11,157.35,24.76,24.84,24.810000000000002,24.75,24.69,24.62,24.55,24.48,24.330000000000002,N/A,N/A +2013,9,28,7,30,93770,92690,91650,75.10000000000001,0,5.66,8.23,9.19,10.03,10.77,11.44,12.1,12.71,13.870000000000001,151.70000000000002,151.98,152.14000000000001,152.29,152.47,152.67000000000002,152.94,153.22,153.97,24.46,24.37,24.28,24.16,24.03,23.91,23.77,23.64,23.34,N/A,N/A +2013,9,28,8,30,93780,92710,91670,84.81,0,6.88,9.56,10.52,11.33,12.02,12.620000000000001,13.17,13.69,14.67,156.79,157.55,158.04,158.42000000000002,158.75,159.04,159.34,159.63,160.26,23.97,23.82,23.71,23.56,23.42,23.27,23.13,22.990000000000002,22.71,N/A,N/A +2013,9,28,9,30,93810,92740,91700,86.11,0,7.04,9.620000000000001,10.47,11.15,11.700000000000001,12.16,12.56,12.93,13.59,159.47,160.12,160.48,160.8,161.08,161.33,161.56,161.78,162.23,24.23,24.07,23.94,23.79,23.63,23.47,23.3,23.14,22.81,N/A,N/A +2013,9,28,10,30,93880,92800,91760,84.01,0,6.74,9.02,9.75,10.32,10.77,11.15,11.5,11.81,12.39,156.66,157.43,157.93,158.39000000000001,158.8,159.16,159.53,159.87,160.54,24.39,24.12,23.97,23.79,23.61,23.44,23.26,23.09,22.740000000000002,N/A,N/A +2013,9,28,11,30,93930,92860,91810,88.63,0,4.5200000000000005,6.640000000000001,7.43,8.09,8.65,9.14,9.58,9.98,10.72,154.18,155.78,156.81,157.76,158.63,159.44,160.24,160.99,162.5,23.63,23.5,23.38,23.23,23.07,22.91,22.740000000000002,22.59,22.26,N/A,N/A +2013,9,28,12,30,94010,92930,91880,85.53,0,4.74,6.33,6.87,7.32,7.7,8.040000000000001,8.370000000000001,8.68,9.31,173.29,172.67000000000002,172.28,172.04,171.89000000000001,171.79,171.73,171.69,171.75,23.66,23.37,23.21,23.02,22.84,22.66,22.47,22.29,21.93,N/A,N/A +2013,9,28,13,30,94030,92950,91900,87.45,0,5.2700000000000005,7.1000000000000005,7.7,8.17,8.56,8.91,9.21,9.49,10,174.15,174.14000000000001,174.19,174.28,174.4,174.55,174.75,174.95000000000002,175.46,23.28,23.03,22.87,22.7,22.53,22.37,22.2,22.04,21.72,N/A,N/A +2013,9,28,14,30,94070,92990,91950,83.54,0,6.51,8.33,8.8,9.1,9.3,9.44,9.53,9.620000000000001,9.74,182.37,182.54,182.64000000000001,182.77,182.91,183.05,183.21,183.37,183.76,23.740000000000002,23.38,23.19,22.98,22.79,22.6,22.41,22.23,21.87,N/A,N/A +2013,9,28,15,30,94150,93070,92020,75.62,0,4.71,5.86,6.19,6.34,6.44,6.49,6.5,6.5,6.46,196.09,195.73000000000002,195.51,195.45000000000002,195.43,195.45000000000002,195.5,195.56,195.74,24.89,24.39,24.17,23.95,23.740000000000002,23.54,23.34,23.150000000000002,22.77,N/A,N/A +2013,9,28,16,30,94200,93110,92060,60.050000000000004,0,3.42,4.42,4.72,4.93,5.08,5.19,5.28,5.36,5.49,321.2,319.67,318.76,318.01,317.31,316.67,315.95,315.29,313.82,23.330000000000002,22.990000000000002,22.82,22.62,22.42,22.240000000000002,22.04,21.86,21.48,N/A,N/A +2013,9,28,17,30,94260,93160,92110,70.19,0,4.86,6.12,6.44,6.6000000000000005,6.68,6.73,6.74,6.75,6.72,15.32,13.68,12.74,11.84,10.94,10.1,9.17,8.31,6.36,22.150000000000002,21.7,21.5,21.3,21.11,20.93,20.740000000000002,20.580000000000002,20.23,N/A,N/A +2013,9,28,18,30,94280,93190,92140,64.33,0,4.1,5.0600000000000005,5.32,5.45,5.53,5.58,5.61,5.63,5.65,18.78,16.52,15.02,13.57,12.21,10.92,9.57,8.32,5.7,23.650000000000002,23.2,23,22.79,22.6,22.41,22.22,22.04,21.67,N/A,N/A +2013,9,28,19,30,94270,93180,92140,53.96,0,4.53,5.62,5.94,6.11,6.22,6.29,6.34,6.38,6.43,8.88,9.25,9.38,9.42,9.42,9.38,9.28,9.18,8.82,25.55,24.93,24.69,24.47,24.26,24.060000000000002,23.85,23.67,23.28,N/A,N/A +2013,9,28,20,30,94230,93160,92120,49.25,0,4.2700000000000005,5.28,5.58,5.75,5.86,5.94,6,6.04,6.1000000000000005,357.35,358.21,358.73,359.18,359.57,359.92,0.25,0.55,1.1,27.13,26.490000000000002,26.23,25.98,25.75,25.54,25.32,25.12,24.71,N/A,N/A +2013,9,28,21,30,94200,93130,92090,51.5,0,3.43,4.32,4.6000000000000005,4.78,4.9,5,5.07,5.13,5.22,357.49,359.77,1.03,1.92,2.68,3.35,3.97,4.54,5.58,27.04,26.62,26.43,26.21,26.01,25.810000000000002,25.61,25.41,25.02,N/A,N/A +2013,9,28,22,30,94170,93100,92060,53.13,0,3.86,4.79,5.03,5.16,5.25,5.3,5.33,5.36,5.37,38.9,38.410000000000004,37.910000000000004,37.4,36.9,36.4,35.88,35.39,34.37,27.3,26.810000000000002,26.61,26.39,26.18,25.98,25.78,25.59,25.19,N/A,N/A +2013,9,28,23,30,94180,93100,92060,55.21,0,4.76,6.17,6.5200000000000005,6.7,6.83,6.93,6.98,7.0200000000000005,7.03,46.35,45.72,45.46,45.25,45.06,44.88,44.69,44.52,44.12,26.46,26.17,26.01,25.810000000000002,25.62,25.44,25.240000000000002,25.05,24.67,N/A,N/A +2013,9,29,0,30,94220,93150,92100,57,0,4.71,6.2,6.62,6.88,7.08,7.22,7.32,7.4,7.49,46.36,45.96,45.75,45.56,45.37,45.18,45,44.84,44.47,26.080000000000002,25.810000000000002,25.650000000000002,25.46,25.27,25.09,24.89,24.71,24.32,N/A,N/A +2013,9,29,1,30,94270,93190,92150,59.800000000000004,0,6.1000000000000005,8.09,8.66,9.05,9.35,9.57,9.74,9.870000000000001,10.03,35.480000000000004,35.61,35.65,35.660000000000004,35.660000000000004,35.660000000000004,35.64,35.62,35.57,25.35,25.02,24.84,24.62,24.41,24.21,23.990000000000002,23.8,23.38,N/A,N/A +2013,9,29,2,30,94350,93270,92210,67.27,0,4.93,6.4,6.84,7.140000000000001,7.36,7.53,7.66,7.76,7.92,48.56,48.980000000000004,49.25,49.57,49.88,50.2,50.52,50.82,51.46,23.97,23.66,23.490000000000002,23.29,23.09,22.91,22.71,22.53,22.14,N/A,N/A +2013,9,29,3,30,94390,93300,92250,67.31,0,4.8100000000000005,6.23,6.62,6.87,7.04,7.17,7.26,7.34,7.44,48.52,48.33,48.2,48.1,48.01,47.93,47.85,47.77,47.59,23.740000000000002,23.43,23.25,23.06,22.86,22.67,22.47,22.29,21.900000000000002,N/A,N/A +2013,9,29,4,30,94440,93350,92290,68.89,0,5.05,6.48,6.8500000000000005,7.1000000000000005,7.28,7.41,7.5,7.58,7.67,32.230000000000004,32.56,32.97,33.44,33.94,34.44,35.02,35.57,36.85,23.09,22.75,22.57,22.37,22.17,21.97,21.77,21.59,21.2,N/A,N/A +2013,9,29,5,30,94480,93380,92320,74.24,0,4.54,5.88,6.29,6.57,6.76,6.9,7,7.08,7.17,31.6,31.5,31.6,31.740000000000002,31.89,32.04,32.21,32.37,32.76,21.64,21.28,21.1,20.89,20.69,20.5,20.3,20.11,19.71,N/A,N/A +2013,9,29,6,30,94560,93460,92390,77.92,0,3.86,4.91,5.19,5.37,5.48,5.57,5.62,5.67,5.73,50.980000000000004,50.25,49.81,49.46,49.15,48.86,48.58,48.32,47.77,20.38,20.02,19.84,19.650000000000002,19.46,19.28,19.080000000000002,18.900000000000002,18.54,N/A,N/A +2013,9,29,7,30,94590,93480,92410,76.32000000000001,0,3.64,4.66,4.96,5.15,5.28,5.37,5.45,5.51,5.66,32.33,33.01,33.730000000000004,34.5,35.31,36.09,37.050000000000004,37.99,40.37,19.48,19.11,18.93,18.740000000000002,18.55,18.37,18.18,18.01,17.66,N/A,N/A +2013,9,29,8,30,94610,93500,92420,84.36,0,3.4,4.28,4.55,4.72,4.84,4.93,5.0200000000000005,5.12,5.45,47.39,48.1,48.71,49.410000000000004,50.17,50.92,51.85,52.74,54.94,18.63,18.27,18.09,17.91,17.72,17.55,17.37,17.2,16.88,N/A,N/A +2013,9,29,9,30,94610,93500,92420,82.77,0,3.06,3.86,4.08,4.21,4.3,4.37,4.43,4.47,4.5600000000000005,45.14,44.97,44.980000000000004,45.06,45.17,45.29,45.43,45.56,45.92,18.490000000000002,18.12,17.93,17.73,17.53,17.35,17.14,16.96,16.57,N/A,N/A +2013,9,29,10,30,94610,93500,92420,81.96000000000001,0,2.74,3.43,3.63,3.75,3.84,3.91,3.96,4.0200000000000005,4.15,38.84,38.71,38.65,38.64,38.660000000000004,38.7,38.79,38.9,39.18,18.18,17.830000000000002,17.64,17.45,17.26,17.07,16.88,16.69,16.31,N/A,N/A +2013,9,29,11,30,94600,93490,92410,80.96000000000001,0,2.71,3.39,3.58,3.67,3.73,3.77,3.7800000000000002,3.8000000000000003,3.8000000000000003,16.78,17.85,18.52,19.16,19.8,20.400000000000002,21.1,21.78,23.42,18.12,17.77,17.59,17.39,17.2,17.02,16.82,16.63,16.25,N/A,N/A +2013,9,29,12,30,94620,93510,92430,82.15,0,2.16,2.64,2.75,2.79,2.8000000000000003,2.79,2.7600000000000002,2.73,2.66,6.42,7.78,8.700000000000001,9.53,10.35,11.1,12.02,12.92,15.290000000000001,17.95,17.61,17.42,17.23,17.04,16.85,16.66,16.47,16.09,N/A,N/A +2013,9,29,13,30,94610,93500,92420,83.37,0,1.57,2.19,2.37,2.5100000000000002,2.6,2.69,2.75,2.82,2.95,28.36,27.03,26.27,25.810000000000002,25.53,25.34,25.32,25.42,26.47,17.88,17.6,17.43,17.25,17.080000000000002,16.92,16.73,16.55,16.16,N/A,N/A +2013,9,29,14,30,94630,93520,92440,76.75,0,2.08,2.54,2.66,2.72,2.75,2.77,2.7800000000000002,2.79,2.8000000000000003,13.76,14.21,14.370000000000001,14.51,14.620000000000001,14.71,14.790000000000001,14.86,15.040000000000001,18.14,17.77,17.580000000000002,17.38,17.19,17,16.8,16.61,16.22,N/A,N/A +2013,9,29,15,30,94630,93520,92440,72.08,0,2.44,2.96,3.08,3.13,3.15,3.15,3.15,3.14,3.1,16.47,17.37,17.95,18.57,19.2,19.8,20.52,21.22,22.91,18.740000000000002,18.31,18.1,17.900000000000002,17.7,17.51,17.31,17.13,16.740000000000002,N/A,N/A +2013,9,29,16,30,94600,93490,92420,65.7,0,3.1,3.72,3.86,3.9,3.9,3.89,3.85,3.81,3.7,10.48,11.700000000000001,12.49,13.290000000000001,14.120000000000001,14.91,15.83,16.69,18.95,19.7,19.25,19.04,18.830000000000002,18.63,18.44,18.240000000000002,18.05,17.67,N/A,N/A +2013,9,29,17,30,94550,93460,92390,55.160000000000004,0,2.52,2.95,3.0500000000000003,3.0700000000000003,3.08,3.0700000000000003,3.0500000000000003,3.02,2.97,12.16,14.11,15.43,16.71,17.95,19.13,20.46,21.69,24.52,21.76,21.16,20.900000000000002,20.66,20.45,20.25,20.05,19.87,19.490000000000002,N/A,N/A +2013,9,29,18,30,94490,93400,92340,45.68,0,2.23,2.58,2.65,2.66,2.66,2.65,2.63,2.62,2.58,12.02,13.530000000000001,14.55,15.6,16.62,17.61,18.69,19.69,21.98,23.69,23.09,22.82,22.580000000000002,22.36,22.16,21.95,21.76,21.37,N/A,N/A +2013,9,29,19,30,94420,93330,92280,38.19,0,1.84,2.15,2.21,2.23,2.25,2.2600000000000002,2.27,2.27,2.27,13.16,13.72,14.13,14.6,15.06,15.5,15.98,16.43,17.42,25.25,24.650000000000002,24.38,24.14,23.91,23.7,23.490000000000002,23.29,22.89,N/A,N/A +2013,9,29,20,30,94350,93270,92220,34,0,1.75,2,2.04,2.04,2.04,2.0300000000000002,2.0100000000000002,2,1.97,16.36,15.77,15.52,15.41,15.35,15.33,15.32,15.31,15.43,26.14,25.55,25.28,25.04,24.810000000000002,24.6,24.38,24.18,23.78,N/A,N/A +2013,9,29,21,30,94260,93180,92140,34.550000000000004,0,1.48,1.6400000000000001,1.6500000000000001,1.6300000000000001,1.6,1.58,1.55,1.53,1.47,41.62,40.53,39.76,39.050000000000004,38.38,37.72,37.07,36.480000000000004,35.11,26.490000000000002,25.92,25.67,25.44,25.22,25.01,24.79,24.6,24.2,N/A,N/A +2013,9,29,22,30,94210,93130,92090,35.68,0,1.45,1.6,1.6,1.57,1.54,1.51,1.48,1.44,1.3800000000000001,82.43,80.64,79.55,78.59,77.71000000000001,76.87,76.02,75.25,73.56,26.7,26.19,25.95,25.73,25.52,25.310000000000002,25.11,24.91,24.52,N/A,N/A +2013,9,29,23,30,94180,93100,92060,36.52,0,0.98,1.08,1.08,1.08,1.08,1.08,1.08,1.09,1.1,144.19,138.96,135.54,132.36,129.65,127.18,124.86,122.75,118.8,26.76,26.34,26.14,25.93,25.73,25.53,25.330000000000002,25.14,24.740000000000002,N/A,N/A +2013,9,30,0,30,94140,93060,92020,43.04,0,0.96,1.8,2.0100000000000002,2.09,2.13,2.13,2.11,2.09,2.04,101.71000000000001,100.84,100.81,101.56,102.63,103.97,105.58,107.16,110.84,26.02,26.16,26.03,25.86,25.69,25.5,25.310000000000002,25.12,24.740000000000002,N/A,N/A +2013,9,30,1,30,94130,93050,92010,45.85,0,1.19,2.16,2.39,2.6,2.7600000000000002,2.88,2.94,2.98,2.92,150.82,145.07,141.49,138.57,136.67000000000002,135.53,135.53,135.91,138.5,24.87,25.44,25.490000000000002,25.44,25.37,25.26,25.12,24.98,24.66,N/A,N/A +2013,9,30,2,30,94140,93050,92010,48.04,0,2.25,4.14,4.57,4.8500000000000005,5.04,5.15,5.14,5.09,4.74,150.14000000000001,145.77,143.34,141.99,141.6,141.84,142.63,143.5,145.42000000000002,24.23,24.88,24.93,24.92,24.87,24.82,24.72,24.63,24.37,N/A,N/A +2013,9,30,3,30,94150,93060,92020,48.79,0,2.39,4.46,4.98,5.3500000000000005,5.65,5.9,6.08,6.23,6.3100000000000005,147.96,146.91,145.88,144.44,143.71,143.41,144.05,144.89000000000001,147.96,23.56,24.22,24.25,24.22,24.18,24.12,24.060000000000002,24.01,23.86,N/A,N/A +2013,9,30,4,30,94150,93060,92010,52.02,0,1.9100000000000001,3.68,4.22,4.71,5.17,5.6000000000000005,5.96,6.28,6.45,148.1,143.24,140.22,137.71,136.26,135.48,135.91,136.58,140.12,22.61,23.11,23.080000000000002,23.03,22.98,22.94,22.900000000000002,22.87,22.84,N/A,N/A +2013,9,30,5,30,94140,93040,91990,55.46,0,0.99,2.65,3.59,4.38,4.95,5.3500000000000005,5.61,5.8100000000000005,5.96,107.94,127.73,140.43,143.24,144.83,145.47,146.19,146.89000000000001,149.88,21.51,22.26,22.38,22.48,22.54,22.580000000000002,22.580000000000002,22.580000000000002,22.53,N/A,N/A +2013,9,30,6,30,94150,93050,92000,56.92,0,0.51,1.59,2.31,2.86,3.3000000000000003,3.65,3.94,4.2,4.59,128.37,141.11,150.27,152.33,153.84,154.87,156.03,157.18,160.47,21,21.78,21.900000000000002,22.02,22.09,22.14,22.150000000000002,22.150000000000002,22.080000000000002,N/A,N/A +2013,9,30,7,30,94150,93050,92000,60.47,0,0.43,1.18,1.6,1.93,2.2600000000000002,2.56,2.86,3.15,3.7,134.69,142.49,149.04,154.34,158.20000000000002,161.20000000000002,163.81,166.26,170.79,19.96,20.85,21.07,21.27,21.37,21.43,21.43,21.43,21.39,N/A,N/A +2013,9,30,8,30,94140,93040,91980,63.26,0,0.58,1.32,1.6400000000000001,1.94,2.24,2.54,2.85,3.16,3.8000000000000003,133.77,143.19,149.87,155.85,160.98,165.61,169.38,172.85,178.12,19.23,19.95,20.1,20.22,20.31,20.38,20.43,20.48,20.55,N/A,N/A +2013,9,30,9,30,94130,93020,91960,66.61,0,0.52,1.1500000000000001,1.42,1.6400000000000001,1.9000000000000001,2.19,2.49,2.79,3.4,112.57000000000001,133.94,148.45000000000002,160.56,169.05,175.8,179.93,183.49,187.82,18.31,19.16,19.400000000000002,19.6,19.75,19.87,19.94,20.01,20.07,N/A,N/A +2013,9,30,10,30,94080,92970,91910,69.08,0,0.74,1.55,1.85,2.1,2.36,2.63,2.93,3.22,3.8000000000000003,136.66,149.88,158.89000000000001,166.85,172.64000000000001,177.35,180.18,182.56,185.58,17.7,18.650000000000002,18.93,19.14,19.28,19.37,19.43,19.47,19.47,N/A,N/A +2013,9,30,11,30,94090,92980,91920,72.68,0,0.66,1.5,1.85,2.14,2.45,2.79,3.15,3.52,4.25,111.15,130.98,143.3,152.73,160.17000000000002,166.63,170.77,174.41,179.13,17,18.1,18.490000000000002,18.81,19.01,19.16,19.240000000000002,19.3,19.330000000000002,N/A,N/A +2013,9,30,12,30,94070,92960,91900,75.72,0,0.65,1.46,1.8,100,2.45,2.79,3.15,3.5100000000000002,4.24,141.54,158.96,169.57,177.54,183.09,187.47,190.31,192.79,195.71,16.66,17.75,18.09,18.330000000000002,18.490000000000002,18.59,18.66,18.71,18.77,N/A,N/A +2013,9,30,13,30,94050,92940,91880,75.98,0,0.74,1.34,1.51,1.68,1.93,2.22,2.57,2.93,3.68,113.43,143.68,160.97,175,184.27,191.6,194.68,197.07,198.07,16.66,17.51,17.84,18.080000000000002,18.23,18.330000000000002,18.38,18.41,18.44,N/A,N/A +2013,9,30,14,30,94030,92920,91860,65.96000000000001,0,0.59,0.76,0.87,100,1.29,1.6,2.22,2.95,4.03,122.68,143.72,156.9,169.54,180.46,191.21,194.37,196.55,196.33,19.48,19.150000000000002,19,18.84,18.71,18.59,18.66,18.740000000000002,18.830000000000002,N/A,N/A +2013,9,30,15,30,94000,92910,91860,64.49,0,0.68,1.01,1.17,1.32,1.46,1.59,1.72,1.85,2.1,201.12,196.42000000000002,193.5,191.75,190.54,189.64000000000001,189.1,188.64000000000001,187.97,22.330000000000002,21.88,21.68,21.48,21.29,21.12,20.93,20.76,20.39,N/A,N/A +2013,9,30,16,30,93970,92890,91840,55.95,0,2.4,2.91,3.0500000000000003,3.13,3.18,3.2,3.22,3.23,3.24,187.34,188.5,189.19,189.88,190.55,191.20000000000002,191.89000000000001,192.54,193.9,25.060000000000002,24.48,24.240000000000002,24,23.79,23.6,23.39,23.21,22.82,N/A,N/A +2013,9,30,17,30,93920,92850,91810,50.61,0,2.87,3.48,3.64,3.73,3.7800000000000002,3.81,3.8200000000000003,3.84,3.84,195.58,196.85,197.58,198.31,199.02,199.69,200.39000000000001,201.04,202.44,26.740000000000002,26.1,25.84,25.6,25.38,25.17,24.96,24.77,24.37,N/A,N/A +2013,9,30,18,30,93870,92800,91770,38.07,0,2.33,2.82,2.96,3.04,3.1,3.15,3.19,3.22,3.27,210.61,212.66,213.85,214.91,215.85,216.73000000000002,217.58,218.37,219.89000000000001,28.66,28.04,27.77,27.52,27.3,27.09,26.87,26.67,26.27,N/A,N/A +2013,9,30,19,30,93820,92760,91730,28.87,0,2.37,2.83,2.95,3.02,3.06,3.09,3.12,3.14,3.17,214.53,216.1,217.11,218.1,218.99,219.83,220.66,221.43,223.01,30.07,29.46,29.19,28.94,28.72,28.5,28.29,28.09,27.68,N/A,N/A +2013,9,30,20,30,93760,92700,91680,17.34,0,2.19,2.63,2.74,2.8000000000000003,2.84,2.87,2.9,2.92,2.94,237.27,237.34,237.4,237.53,237.66,237.8,237.96,238.11,238.43,31.55,30.96,30.7,30.45,30.23,30.01,29.79,29.59,29.18,N/A,N/A +2013,9,30,21,30,93690,92640,91620,13.55,0,2.27,2.79,2.95,3.04,3.11,3.16,3.2,3.24,3.29,230.02,230.87,231.31,231.70000000000002,232.07,232.41,232.75,233.06,233.66,32.32,31.76,31.52,31.28,31.060000000000002,30.85,30.64,30.44,30.03,N/A,N/A +2013,9,30,22,30,93650,92600,91580,12.41,0,2.42,2.87,2.98,3.0300000000000002,3.06,3.08,3.09,3.1,3.11,202.44,204.64000000000001,206.01,207.25,208.35,209.37,210.37,211.3,213.1,32.49,32,31.79,31.57,31.37,31.16,30.96,30.77,30.37,N/A,N/A +2013,9,30,23,30,93630,92580,91560,19.3,0,3.47,4.24,4.38,4.43,4.45,4.45,4.44,4.42,4.36,171.23,173.06,174.28,175.57,176.79,178,179.24,180.4,182.86,31.92,31.580000000000002,31.41,31.220000000000002,31.04,30.86,30.68,30.5,30.14,N/A,N/A +2013,10,1,0,30,93610,92550,91530,30.44,0,4.11,6.55,7.25,7.8,8.2,8.51,8.69,8.81,8.8,156.16,158.39000000000001,159.68,160.75,161.39000000000001,161.74,161.85,161.89000000000001,161.99,29.71,30.13,30.12,29.96,29.75,29.51,29.26,29.02,28.59,N/A,N/A +2013,10,1,1,30,93620,92560,91530,39.94,0,4.41,6.88,7.68,8.35,8.88,9.290000000000001,9.540000000000001,9.75,9.91,145.98,148.08,149.4,150.54,151.68,152.81,154,155.15,157.42000000000002,27.69,28.17,28.34,28.46,28.53,28.55,28.51,28.46,28.22,N/A,N/A +2013,10,1,2,30,93640,92580,91550,37.88,0,4.8500000000000005,7.5200000000000005,8.41,9.16,9.74,10.22,10.58,10.89,11.27,147.97,149.97,151.25,152.44,153.69,154.99,156.47,157.91,160.87,27.19,27.68,27.85,28.01,28.12,28.2,28.240000000000002,28.26,28.16,N/A,N/A +2013,10,1,3,30,93660,92590,91560,35.45,0,5.79,8.9,10.02,11,11.76,12.39,12.84,13.22,13.6,157.37,159.11,160.05,160.69,161.31,161.92000000000002,162.69,163.45000000000002,165.33,27.080000000000002,27.45,27.560000000000002,27.650000000000002,27.72,27.77,27.77,27.78,27.67,N/A,N/A +2013,10,1,4,30,93690,92620,91590,43.13,0,6.38,9.52,10.67,11.74,12.66,13.48,14.200000000000001,14.85,15.860000000000001,161.1,162.85,163.84,164.58,165.18,165.70000000000002,166.28,166.84,168.21,25.95,26.18,26.22,26.27,26.29,26.3,26.29,26.29,26.21,N/A,N/A +2013,10,1,5,30,93700,92630,91590,48.49,0,5.21,8.24,9.450000000000001,10.61,11.65,12.6,13.47,14.26,15.610000000000001,157.04,160.53,162.4,163.68,164.58,165.27,165.8,166.26,167.18,24.77,24.96,25,25.02,25.03,25.04,25.04,25.03,25,N/A,N/A +2013,10,1,6,30,93720,92640,91600,51.36,0,5.19,8.33,9.620000000000001,10.84,11.93,12.92,13.82,14.64,16.02,158.99,162.88,164.97,166.35,167.31,168.01,168.54,168.99,169.83,24.17,24.37,24.41,24.43,24.44,24.45,24.46,24.45,24.43,N/A,N/A +2013,10,1,7,30,93750,92670,91620,57.54,0,4.7700000000000005,7.54,8.69,9.83,10.9,11.89,12.84,13.73,15.290000000000001,144.38,150.89000000000001,154.59,157.37,159.46,161.14000000000001,162.48,163.67000000000002,165.63,22.98,23.2,23.26,23.32,23.35,23.38,23.41,23.42,23.45,N/A,N/A +2013,10,1,8,30,93740,92660,91620,60.69,0,5.17,8.040000000000001,9.19,10.31,11.34,12.280000000000001,13.15,13.97,15.370000000000001,148.73,153.93,156.88,159.16,160.95000000000002,162.43,163.71,164.86,166.98,22.650000000000002,22.88,22.93,22.97,23.01,23.04,23.07,23.080000000000002,23.12,N/A,N/A +2013,10,1,9,30,93770,92690,91640,65.88,0,4.25,6.9,7.97,9.01,9.93,10.77,11.58,12.33,13.68,140.88,147.86,151.87,154.77,156.98,158.76,160.28,161.66,164.17000000000002,21.73,22,22.06,22.1,22.11,22.13,22.12,22.12,22.12,N/A,N/A +2013,10,1,10,30,93790,92700,91650,72.78,0,3.3200000000000003,5.7,6.59,7.5200000000000005,8.38,9.200000000000001,9.97,10.700000000000001,11.96,134.49,144.72,150.54,154.67000000000002,157.72,160.13,161.96,163.59,166.16,20.69,21.14,21.23,21.29,21.32,21.34,21.35,21.36,21.37,N/A,N/A +2013,10,1,11,30,93820,92730,91670,81.38,0,2.49,4.65,5.43,6.2700000000000005,7.07,7.84,8.620000000000001,9.38,10.78,131.8,142.78,149.13,153.66,156.91,159.41,161.24,162.86,165.29,19.52,20.17,20.29,20.37,20.41,20.44,20.46,20.46,20.46,N/A,N/A +2013,10,1,12,30,93830,92730,91680,87.41,0,2.5500000000000003,4.73,5.44,6.23,7.04,7.8500000000000005,8.69,9.49,10.84,134.71,143.8,149.29,153.94,157.59,160.71,163.03,165.12,168.15,18.75,19.41,19.53,19.63,19.71,19.78,19.85,19.900000000000002,20.04,N/A,N/A +2013,10,1,13,30,93860,92760,91700,85.89,0,2.91,4.98,5.79,6.6000000000000005,7.38,8.16,8.97,9.74,11.01,144.3,149.94,153.45000000000002,156.54,159.12,161.43,163.27,164.95000000000002,167.58,18.82,19.02,19.06,19.1,19.13,19.16,19.19,19.22,19.330000000000002,N/A,N/A +2013,10,1,14,30,93870,92780,91720,75.18,0,4.99,6.32,6.7700000000000005,7.12,7.47,7.8100000000000005,8.2,8.58,9.38,159.35,160.31,160.99,161.72,162.54,163.39000000000001,164.24,165.06,167.66,21.07,20.66,20.490000000000002,20.31,20.150000000000002,20,19.87,19.75,19.82,N/A,N/A +2013,10,1,15,30,93890,92800,91750,64.42,0,5.17,6.37,6.67,6.82,6.88,6.91,6.91,6.91,6.890000000000001,164.86,165.16,165.37,165.57,165.78,166,166.3,166.58,167.45000000000002,23.3,22.72,22.490000000000002,22.28,22.080000000000002,21.900000000000002,21.71,21.54,21.2,N/A,N/A +2013,10,1,16,30,93880,92800,91760,50.02,0,4.91,6.05,6.37,6.5200000000000005,6.6000000000000005,6.65,6.66,6.66,6.62,171.1,171.46,171.67000000000002,171.88,172.1,172.31,172.56,172.78,173.36,25.87,25.21,24.96,24.72,24.51,24.310000000000002,24.11,23.93,23.56,N/A,N/A +2013,10,1,17,30,93840,92770,91730,43.31,0,5.19,6.41,6.76,6.91,7.01,7.0600000000000005,7.07,7.08,7.05,174.8,175.17000000000002,175.41,175.66,175.91,176.16,176.44,176.71,177.35,27.62,26.900000000000002,26.63,26.38,26.150000000000002,25.95,25.740000000000002,25.55,25.16,N/A,N/A +2013,10,1,18,30,93830,92760,91730,38.11,0,5.67,7,7.36,7.54,7.65,7.71,7.73,7.75,7.73,175.45000000000002,175.98,176.28,176.57,176.83,177.09,177.36,177.61,178.14000000000001,29.19,28.44,28.16,27.900000000000002,27.67,27.45,27.23,27.03,26.63,N/A,N/A +2013,10,1,19,30,93800,92740,91710,35.050000000000004,0,5.78,7.11,7.47,7.63,7.72,7.78,7.8,7.8100000000000005,7.78,171.70000000000002,172.17000000000002,172.45000000000002,172.69,172.9,173.11,173.32,173.51,173.93,30.38,29.61,29.330000000000002,29.07,28.84,28.62,28.41,28.21,27.810000000000002,N/A,N/A +2013,10,1,20,30,93760,92710,91680,33.32,0,5.66,6.95,7.32,7.47,7.57,7.63,7.66,7.67,7.66,175.76,176.07,176.24,176.42000000000002,176.59,176.76,176.93,177.1,177.46,31.11,30.37,30.09,29.830000000000002,29.61,29.39,29.18,28.98,28.57,N/A,N/A +2013,10,1,21,30,93730,92680,91660,29.22,0,4.7700000000000005,5.8500000000000005,6.15,6.28,6.37,6.41,6.43,6.44,6.43,171.03,171.29,171.41,171.53,171.63,171.74,171.85,171.96,172.20000000000002,31.79,31.12,30.86,30.62,30.39,30.18,29.97,29.77,29.37,N/A,N/A +2013,10,1,22,30,93690,92640,91620,29.82,0,5.25,6.55,6.92,7.12,7.25,7.33,7.390000000000001,7.43,7.48,165.26,165.62,165.83,165.98,166.1,166.21,166.3,166.38,166.55,31.84,31.25,31.02,30.79,30.57,30.36,30.150000000000002,29.95,29.55,N/A,N/A +2013,10,1,23,30,93680,92630,91610,33.68,0,5.78,7.3500000000000005,7.7700000000000005,8.01,8.17,8.28,8.36,8.42,8.48,164.24,164.51,164.67000000000002,164.8,164.91,165.01,165.1,165.18,165.33,31.35,30.95,30.75,30.54,30.34,30.14,29.94,29.75,29.36,N/A,N/A +2013,10,2,0,30,93690,92640,91620,42.21,0,4.3500000000000005,6.72,7.53,8.15,8.620000000000001,9,9.28,9.52,9.83,155.49,156.77,157.61,158.35,158.95000000000002,159.45000000000002,159.84,160.16,160.52,29.48,29.62,29.6,29.51,29.39,29.25,29.09,28.92,28.55,N/A,N/A +2013,10,2,1,30,93720,92650,91630,52.4,0,3.64,6.12,7.1000000000000005,8,8.8,9.540000000000001,10.23,10.86,11.870000000000001,139.72,142.86,144.8,146.4,147.81,149.09,150.21,151.22,152.8,27.78,27.95,27.95,27.92,27.86,27.78,27.67,27.560000000000002,27.28,N/A,N/A +2013,10,2,2,30,93770,92700,91670,53.93,0,4.59,6.97,7.83,8.58,9.21,9.77,10.28,10.75,11.58,134.83,137.3,138.85,139.98,140.82,141.46,141.99,142.46,143.42000000000002,26.97,27.03,26.990000000000002,26.92,26.830000000000002,26.740000000000002,26.63,26.52,26.26,N/A,N/A +2013,10,2,3,30,93800,92730,91690,62.89,0,4.1,6.53,7.5200000000000005,8.43,9.22,9.93,10.61,11.25,12.42,134.44,138.16,140.43,142.17000000000002,143.63,144.89000000000001,146.08,147.20000000000002,149.34,25.85,25.900000000000002,25.86,25.79,25.7,25.61,25.51,25.42,25.2,N/A,N/A +2013,10,2,4,30,93830,92750,91710,64.97,0,3.67,6.05,7.05,7.96,8.76,9.51,10.24,10.93,12.280000000000001,128.03,133.18,136.39000000000001,138.75,140.68,142.33,143.8,145.17000000000002,147.65,24.830000000000002,24.93,24.92,24.88,24.82,24.76,24.68,24.61,24.47,N/A,N/A +2013,10,2,5,30,93840,92770,91730,64.19,0,4.07,6.5600000000000005,7.57,8.49,9.3,10.02,10.72,11.370000000000001,12.6,132.81,137.62,140.46,142.42000000000002,143.95000000000002,145.19,146.27,147.25,149.14000000000001,24.26,24.34,24.32,24.27,24.21,24.14,24.07,24,23.86,N/A,N/A +2013,10,2,6,30,93860,92780,91730,64.93,0,5.39,8.11,9.15,10.08,10.89,11.620000000000001,12.31,12.96,14.15,136.99,140.05,141.79,143.12,144.26,145.27,146.25,147.18,149.11,23.88,23.89,23.85,23.8,23.740000000000002,23.69,23.63,23.59,23.490000000000002,N/A,N/A +2013,10,2,7,30,93880,92800,91750,65.65,0,6.13,9.02,10.09,11.01,11.82,12.540000000000001,13.22,13.85,15.01,139.34,141.91,143.35,144.45000000000002,145.43,146.33,147.26,148.14000000000001,150.13,23.52,23.53,23.490000000000002,23.43,23.38,23.32,23.27,23.23,23.150000000000002,N/A,N/A +2013,10,2,8,30,93860,92780,91730,66.18,0,6.07,8.96,10.06,11.03,11.86,12.61,13.290000000000001,13.92,15.08,138.47,141.63,143.49,144.94,146.21,147.35,148.51,149.6,151.98,23.19,23.23,23.2,23.16,23.13,23.09,23.07,23.04,23.03,N/A,N/A +2013,10,2,9,30,93890,92810,91760,72.10000000000001,0,3.49,6.28,7.46,8.55,9.48,10.32,11.07,11.76,13.05,131.27,137.77,141.41,143.53,145.1,146.33,147.39000000000001,148.35,150.36,22.19,22.39,22.39,22.36,22.330000000000002,22.28,22.240000000000002,22.2,22.13,N/A,N/A +2013,10,2,10,30,93910,92820,91770,78.67,0,2.82,5.54,6.66,7.67,8.56,9.36,10.13,10.85,12.25,131.79,138.66,142.66,145.19,147.16,148.75,150.22,151.59,154.34,21.21,21.59,21.63,21.64,21.63,21.61,21.6,21.580000000000002,21.580000000000002,N/A,N/A +2013,10,2,11,30,93930,92840,91790,82.99,0,2.97,5.66,6.75,7.71,8.540000000000001,9.290000000000001,10,10.68,11.97,139.19,143.42000000000002,145.81,147.14000000000001,148.26,149.24,150.42000000000002,151.62,154.52,20.66,21,21.04,21.04,21.03,21.01,20.990000000000002,20.98,20.990000000000002,N/A,N/A +2013,10,2,12,30,93960,92870,91810,92.65,0,1.9100000000000001,4.47,5.62,6.640000000000001,7.51,8.28,9.02,9.73,11.09,139.02,143.99,146.8,147.93,148.99,149.98,151.39000000000001,152.85,156.44,19.7,20.16,20.17,20.16,20.14,20.12,20.11,20.11,20.150000000000002,N/A,N/A +2013,10,2,13,30,93970,92870,91810,95.37,0,1.09,3.22,4.44,5.4,6.23,6.96,7.68,8.370000000000001,9.75,145.77,148.81,150.54,150.9,151.56,152.39000000000001,153.74,155.16,158.5,19.32,19.56,19.580000000000002,19.580000000000002,19.580000000000002,19.57,19.56,19.56,19.580000000000002,N/A,N/A +2013,10,2,14,30,94020,92920,91870,80.72,0,4.28,5.45,5.83,6.07,6.26,6.4,6.54,6.67,7.07,153.97,154.54,154.9,155.28,155.69,156.11,156.63,157.13,158.49,21.55,21.09,20.89,20.68,20.490000000000002,20.31,20.12,19.95,19.6,N/A,N/A +2013,10,2,15,30,94020,92930,91880,72.42,0,4.48,5.58,5.91,6.08,6.19,6.26,6.3,6.34,6.390000000000001,167.18,167.23,167.21,167.22,167.26,167.29,167.35,167.4,167.59,23.28,22.68,22.44,22.21,22.01,21.81,21.61,21.43,21.05,N/A,N/A +2013,10,2,16,30,94010,92930,91890,63.36,0,5.04,6.2700000000000005,6.65,6.8500000000000005,6.98,7.0600000000000005,7.11,7.15,7.19,167.74,167.69,167.66,167.64000000000001,167.62,167.61,167.61,167.61,167.63,25.37,24.67,24.400000000000002,24.16,23.93,23.72,23.52,23.32,22.93,N/A,N/A +2013,10,2,17,30,93970,92900,91860,54.050000000000004,0,5.69,7.07,7.49,7.71,7.8500000000000005,7.94,8,8.040000000000001,8.08,171.38,171.33,171.33,171.32,171.32,171.31,171.3,171.3,171.29,27.310000000000002,26.55,26.27,26.01,25.77,25.560000000000002,25.34,25.150000000000002,24.75,N/A,N/A +2013,10,2,18,30,93940,92870,91840,46.31,0,6.28,7.79,8.23,8.45,8.6,8.700000000000001,8.76,8.8,8.84,170.08,170.11,170.14000000000001,170.16,170.18,170.19,170.22,170.23,170.27,28.92,28.13,27.830000000000002,27.560000000000002,27.32,27.1,26.88,26.68,26.27,N/A,N/A +2013,10,2,19,30,93880,92820,91800,39.84,0,6.48,8.03,8.48,8.72,8.870000000000001,8.97,9.03,9.07,9.120000000000001,170.33,170.48,170.55,170.6,170.63,170.67000000000002,170.71,170.74,170.81,30.1,29.3,29.01,28.740000000000002,28.5,28.27,28.05,27.85,27.43,N/A,N/A +2013,10,2,20,30,93830,92780,91750,35.18,0,6.53,8.1,8.55,8.77,8.92,9.01,9.06,9.1,9.13,172.59,172.62,172.62,172.61,172.59,172.57,172.56,172.54,172.52,31,30.23,29.95,29.68,29.45,29.22,29.01,28.8,28.400000000000002,N/A,N/A +2013,10,2,21,30,93780,92730,91700,34.12,0,6.98,8.69,9.17,9.43,9.6,9.700000000000001,9.77,9.82,9.86,168.41,168.63,168.75,168.83,168.9,168.96,169.01,169.06,169.15,31.28,30.57,30.3,30.04,29.810000000000002,29.59,29.38,29.17,28.76,N/A,N/A +2013,10,2,22,30,93750,92690,91670,33.1,0,6.65,8.33,8.82,9.09,9.27,9.38,9.46,9.52,9.58,170.8,170.9,170.95000000000002,170.99,171.01,171.05,171.07,171.1,171.14000000000001,31.310000000000002,30.71,30.47,30.23,30.01,29.8,29.59,29.39,28.990000000000002,N/A,N/A +2013,10,2,23,30,93730,92680,91660,36.12,0,6.6000000000000005,8.38,8.870000000000001,9.16,9.35,9.49,9.58,9.65,9.74,169.32,169.47,169.56,169.62,169.67000000000002,169.72,169.76,169.8,169.86,30.71,30.29,30.1,29.89,29.68,29.48,29.28,29.09,28.69,N/A,N/A +2013,10,3,0,30,93740,92680,91660,42.89,0,4.2,6.36,7.13,7.75,8.26,8.67,9.03,9.34,9.85,159.68,160.72,161.42000000000002,162.04,162.57,163.04,163.43,163.78,164.33,29.09,29.13,29.060000000000002,28.95,28.830000000000002,28.68,28.52,28.36,28.01,N/A,N/A +2013,10,3,1,30,93770,92700,91670,47,0,5.0200000000000005,7.54,8.51,9.35,10.07,10.700000000000001,11.25,11.75,12.59,152.01,153.11,153.84,154.47,155.01,155.48,155.87,156.22,156.75,27.84,27.85,27.8,27.71,27.61,27.5,27.38,27.26,26.97,N/A,N/A +2013,10,3,2,30,93780,92710,91680,48.730000000000004,0,4.98,7.54,8.56,9.47,10.27,10.99,11.66,12.3,13.46,145.97,148.27,149.72,150.89000000000001,151.87,152.72,153.47,154.16,155.32,26.86,26.900000000000002,26.86,26.8,26.72,26.64,26.55,26.45,26.240000000000002,N/A,N/A +2013,10,3,3,30,93810,92730,91700,50.74,0,5.42,8.08,9.15,10.09,10.91,11.64,12.31,12.92,14.07,146.57,149.16,150.74,151.91,152.86,153.66,154.35,154.97,156.14000000000001,26.11,26.11,26.05,25.97,25.89,25.8,25.7,25.6,25.400000000000002,N/A,N/A +2013,10,3,4,30,93800,92730,91690,49.96,0,5.9,8.620000000000001,9.66,10.57,11.370000000000001,12.09,12.77,13.39,14.61,149.37,151.36,152.57,153.52,154.33,155.04,155.69,156.29,157.48,25.560000000000002,25.53,25.47,25.37,25.28,25.19,25.080000000000002,24.990000000000002,24.79,N/A,N/A +2013,10,3,5,30,93810,92730,91690,51.49,0,6.04,8.9,9.99,10.97,11.81,12.56,13.290000000000001,13.97,15.25,148.78,151.26,152.69,153.82,154.76,155.57,156.32,157.03,158.36,24.82,24.8,24.740000000000002,24.66,24.580000000000002,24.5,24.41,24.330000000000002,24.16,N/A,N/A +2013,10,3,6,30,93810,92730,91690,53.76,0,5.97,8.91,10.06,11.1,12.01,12.83,13.61,14.32,15.67,147.98,151.24,153.13,154.6,155.8,156.84,157.77,158.62,160.17000000000002,24.25,24.25,24.2,24.14,24.07,24.01,23.94,23.87,23.740000000000002,N/A,N/A +2013,10,3,7,30,93850,92760,91720,57.34,0,4.62,7.44,8.66,9.8,10.790000000000001,11.68,12.49,13.25,14.61,140.63,146.47,149.97,152.37,154.23,155.71,156.95000000000002,158.07,159.96,23.580000000000002,23.64,23.6,23.55,23.48,23.42,23.34,23.28,23.14,N/A,N/A +2013,10,3,8,30,93860,92770,91730,60.17,0,4.2,6.93,8.13,9.290000000000001,10.31,11.22,12.07,12.86,14.280000000000001,139.57,146.84,151.28,154.20000000000002,156.4,158.1,159.45000000000002,160.66,162.58,22.93,23.06,23.04,23.01,22.96,22.91,22.85,22.79,22.66,N/A,N/A +2013,10,3,9,30,93870,92790,91740,64.47,0,3.56,5.99,7.0200000000000005,8.08,9.05,9.99,10.9,11.77,13.4,129.36,138.48,144.22,148.34,151.54,154.12,156.13,157.92000000000002,160.52,21.96,22.19,22.22,22.21,22.19,22.16,22.12,22.09,21.990000000000002,N/A,N/A +2013,10,3,10,30,93870,92780,91730,69.41,0,2.88,4.97,5.74,6.63,7.53,8.47,9.44,10.4,12.26,116.86,128.88,136.8,143.34,148.31,152.25,155.1,157.58,160.8,21,21.38,21.43,21.44,21.45,21.45,21.45,21.45,21.43,N/A,N/A +2013,10,3,11,30,93890,92800,91740,73.99,0,2.41,4.8100000000000005,5.73,6.67,7.6000000000000005,8.52,9.49,10.43,12.21,119.36,129.49,136.25,141.59,145.67000000000002,148.98,151.45000000000002,153.64000000000001,156.56,20.09,20.76,20.86,20.93,20.97,21,21.02,21.04,21.03,N/A,N/A +2013,10,3,12,30,93900,92800,91750,71.08,0,3.18,5.58,6.5200000000000005,7.42,8.25,9.03,9.81,10.56,12.030000000000001,130.83,138.4,143.19,147.07,150.04,152.46,154.38,156.13,159.19,19.64,20.06,20.14,20.17,20.17,20.16,20.13,20.1,20.080000000000002,N/A,N/A +2013,10,3,13,30,93890,92790,91730,72.89,0,5.29,7.63,8.51,9.3,10.03,10.700000000000001,11.4,12.06,13.35,146.63,148.53,149.84,151.21,152.64000000000001,154.04,155.6,157.11,160.25,19.82,19.79,19.75,19.71,19.68,19.67,19.69,19.72,19.88,N/A,N/A +2013,10,3,14,30,93910,92820,91760,66.47,0,5.8,7.29,7.73,8.040000000000001,8.3,8.55,8.99,9.450000000000001,10.68,156.5,157,157.37,157.8,158.33,158.91,159.84,160.77,162.69,21.53,21.09,20.900000000000002,20.72,20.55,20.400000000000002,20.26,20.13,19.94,N/A,N/A +2013,10,3,15,30,93910,92830,91780,58.83,0,6.55,8.14,8.57,8.8,8.950000000000001,9.05,9.120000000000001,9.18,9.370000000000001,164.9,164.95000000000002,164.99,165.06,165.14000000000001,165.23,165.35,165.48,165.84,23.490000000000002,22.87,22.64,22.42,22.22,22.04,21.85,21.68,21.34,N/A,N/A +2013,10,3,16,30,93910,92840,91790,50.33,0,6.58,8.19,8.66,8.9,9.05,9.15,9.21,9.26,9.31,164.89000000000001,164.9,164.9,164.92000000000002,164.94,164.96,165,165.04,165.12,25.55,24.830000000000002,24.57,24.32,24.1,23.89,23.68,23.490000000000002,23.1,N/A,N/A +2013,10,3,17,30,93870,92800,91760,44.15,0,6.34,7.9,8.35,8.6,8.76,8.86,8.93,8.99,9.040000000000001,168.76,168.73,168.71,168.69,168.68,168.67000000000002,168.66,168.65,168.63,27.2,26.44,26.150000000000002,25.89,25.66,25.44,25.22,25.03,24.62,N/A,N/A +2013,10,3,18,30,93830,92770,91740,37.43,0,6.45,8.02,8.48,8.73,8.89,9,9.08,9.13,9.19,169.26,169.32,169.34,169.35,169.35,169.36,169.36,169.36,169.38,28.79,28,27.71,27.44,27.2,26.98,26.76,26.560000000000002,26.150000000000002,N/A,N/A +2013,10,3,19,30,93790,92730,91710,33.03,0,6.59,8.2,8.68,8.94,9.13,9.25,9.33,9.4,9.47,166.4,166.52,166.61,166.68,166.73,166.78,166.83,166.88,166.96,29.93,29.14,28.85,28.580000000000002,28.330000000000002,28.11,27.89,27.68,27.26,N/A,N/A +2013,10,3,20,30,93740,92680,91660,29.36,0,6.87,8.58,9.09,9.370000000000001,9.56,9.69,9.78,9.85,9.93,165.57,165.73,165.83,165.9,165.96,166.01,166.06,166.1,166.18,30.67,29.900000000000002,29.62,29.35,29.11,28.88,28.66,28.45,28.04,N/A,N/A +2013,10,3,21,30,93700,92640,91620,27.71,0,6.99,8.77,9.3,9.59,9.790000000000001,9.93,10.02,10.09,10.17,163.23,163.47,163.62,163.71,163.79,163.84,163.89000000000001,163.94,164.01,30.96,30.25,29.990000000000002,29.73,29.5,29.28,29.060000000000002,28.85,28.44,N/A,N/A +2013,10,3,22,30,93660,92600,91580,28.650000000000002,0,7.33,9.27,9.83,10.16,10.38,10.52,10.620000000000001,10.700000000000001,10.790000000000001,159.16,159.47,159.64000000000001,159.76,159.86,159.94,160.02,160.08,160.21,30.810000000000002,30.21,29.98,29.73,29.51,29.3,29.09,28.89,28.48,N/A,N/A +2013,10,3,23,30,93640,92580,91550,30.36,0,7.62,9.75,10.35,10.72,10.97,11.15,11.290000000000001,11.39,11.52,156.6,156.82,156.93,157.01,157.07,157.13,157.18,157.22,157.3,30.060000000000002,29.66,29.47,29.25,29.05,28.85,28.650000000000002,28.46,28.060000000000002,N/A,N/A +2013,10,4,0,30,93620,92550,91520,34.47,0,6.03,8.71,9.63,10.38,10.98,11.49,11.92,12.290000000000001,12.9,151.61,152.32,152.74,153.05,153.31,153.52,153.72,153.9,154.23,28.29,28.26,28.18,28.060000000000002,27.93,27.79,27.63,27.47,27.12,N/A,N/A +2013,10,4,1,30,93640,92570,91540,36.67,0,6.92,9.93,11,11.93,12.73,13.43,14.08,14.66,15.65,150.8,151.52,151.91,152.21,152.46,152.68,152.87,153.06,153.47,27.1,27.080000000000002,27.02,26.92,26.82,26.72,26.6,26.48,26.2,N/A,N/A +2013,10,4,2,30,93680,92610,91570,37.31,0,7.03,10.06,11.17,12.120000000000001,12.96,13.700000000000001,14.4,15.05,16.2,152.19,153.1,153.59,153.91,154.16,154.36,154.55,154.74,155.18,26.22,26.21,26.16,26.080000000000002,25.990000000000002,25.91,25.810000000000002,25.72,25.5,N/A,N/A +2013,10,4,3,30,93670,92600,91560,40.050000000000004,0,7.21,10.36,11.48,12.46,13.31,14.08,14.81,15.49,16.73,154.74,155.94,156.6,157.13,157.56,157.93,158.3,158.63,159.36,25.59,25.59,25.54,25.48,25.400000000000002,25.330000000000002,25.25,25.17,24.990000000000002,N/A,N/A +2013,10,4,4,30,93700,92620,91580,43.04,0,7.43,10.700000000000001,11.9,12.97,13.9,14.73,15.52,16.25,17.59,154.44,155.85,156.64000000000001,157.3,157.84,158.31,158.76,159.16,159.95000000000002,24.89,24.89,24.85,24.78,24.72,24.650000000000002,24.580000000000002,24.52,24.37,N/A,N/A +2013,10,4,5,30,93710,92630,91590,45.85,0,7.5600000000000005,10.83,12.02,13.06,13.950000000000001,14.74,15.48,16.16,17.42,156.58,158.05,158.89000000000001,159.61,160.22,160.78,161.29,161.76,162.59,24.38,24.37,24.32,24.25,24.18,24.12,24.05,23.98,23.830000000000002,N/A,N/A +2013,10,4,6,30,93760,92670,91630,49.2,0,5.75,8.67,9.86,10.92,11.85,12.67,13.46,14.19,15.57,151.43,154.05,155.68,156.99,158.1,159.06,159.92000000000002,160.71,162.1,23.53,23.56,23.52,23.45,23.39,23.330000000000002,23.27,23.21,23.080000000000002,N/A,N/A +2013,10,4,7,30,93800,92710,91660,51.83,0,5.07,8.01,9.27,10.43,11.450000000000001,12.36,13.22,14.02,15.530000000000001,146.51,150.45000000000002,152.91,154.75,156.24,157.5,158.59,159.58,161.25,22.85,22.95,22.94,22.91,22.87,22.830000000000002,22.79,22.740000000000002,22.650000000000002,N/A,N/A +2013,10,4,8,30,93800,92720,91670,56.4,0,3.5700000000000003,6.22,7.41,8.52,9.52,10.44,11.32,12.15,13.700000000000001,132,139.96,145.05,148.37,151.01,153.15,154.92000000000002,156.51,158.92000000000002,21.92,22.150000000000002,22.17,22.16,22.13,22.1,22.05,22.01,21.91,N/A,N/A +2013,10,4,9,30,93800,92710,91660,61.4,0,3.04,5.5,6.59,7.59,8.52,9.39,10.26,11.11,12.76,126.04,133.73,139.14000000000001,143.03,146.24,148.97,151.26,153.35,156.42000000000002,21.21,21.5,21.52,21.5,21.48,21.44,21.400000000000002,21.36,21.27,N/A,N/A +2013,10,4,10,30,93810,92720,91660,74.14,0,4.5,7.07,8.16,9.120000000000001,9.97,10.74,11.49,12.200000000000001,13.61,138.5,141.72,143.89000000000001,145.85,147.58,149.15,150.58,151.89000000000001,154.15,20.62,20.68,20.63,20.56,20.47,20.38,20.27,20.18,19.97,N/A,N/A +2013,10,4,11,30,93810,92720,91660,89.87,0,4.3100000000000005,6.67,7.67,8.55,9.34,10.07,10.78,11.46,12.83,137.64000000000001,141.03,143.39000000000001,145.52,147.43,149.20000000000002,150.8,152.28,154.82,20.01,20.02,19.96,19.88,19.78,19.69,19.580000000000002,19.48,19.27,N/A,N/A +2013,10,4,12,30,93830,92730,91680,93.92,0,4.61,6.86,7.7700000000000005,8.55,9.26,9.89,10.540000000000001,11.16,12.46,144.94,146.68,147.95000000000002,149.33,150.70000000000002,152.06,153.41,154.68,157.05,19.77,19.71,19.62,19.52,19.41,19.31,19.2,19.1,18.92,N/A,N/A +2013,10,4,13,30,93860,92760,91700,91.59,0,5.36,7.61,8.47,9.200000000000001,9.83,10.4,10.94,11.450000000000001,12.49,151.93,152.92000000000002,153.64000000000001,154.34,155.04,155.74,156.48,157.19,158.70000000000002,19.900000000000002,19.740000000000002,19.62,19.48,19.35,19.22,19.09,18.97,18.75,N/A,N/A +2013,10,4,14,30,93890,92800,91740,85.2,0,6.43,8.24,8.82,9.200000000000001,9.49,9.72,9.94,10.14,10.64,150.81,151.51,151.97,152.41,152.88,153.37,153.93,154.46,155.85,20.87,20.42,20.21,20.01,19.81,19.63,19.44,19.27,18.92,N/A,N/A +2013,10,4,15,30,93910,92820,91760,81.96000000000001,0,6.3,8.05,8.6,8.950000000000001,9.200000000000001,9.4,9.55,9.68,9.9,151.81,152.28,152.64000000000001,153.02,153.4,153.79,154.22,154.63,155.59,21.5,21.11,20.92,20.72,20.52,20.34,20.14,19.96,19.59,N/A,N/A +2013,10,4,16,30,93900,92820,91760,73.9,0,4.62,6.25,6.83,7.25,7.58,7.87,8.120000000000001,8.34,8.71,161.27,160.94,160.84,161.04,161.15,161.20000000000002,161.33,161.48,161.92000000000002,22.67,22.41,22.26,22.080000000000002,21.900000000000002,21.72,21.53,21.36,20.98,N/A,N/A +2013,10,4,17,30,93870,92790,91750,52.84,0,6.08,7.5,7.930000000000001,8.14,8.27,8.35,8.4,8.43,8.44,173.16,172.45000000000002,172.02,171.67000000000002,171.38,171.12,170.87,170.64000000000001,170.22,25.77,25.03,24.76,24.51,24.28,24.080000000000002,23.87,23.68,23.3,N/A,N/A +2013,10,4,18,30,93860,92790,91750,44.44,0,5.59,6.86,7.26,7.46,7.58,7.65,7.69,7.72,7.72,165.75,166,166.26,166.52,166.76,166.98,167.21,167.42000000000002,167.85,27.38,26.62,26.32,26.05,25.82,25.6,25.38,25.18,24.78,N/A,N/A +2013,10,4,19,30,93810,92740,91710,35.82,0,5.49,6.75,7.140000000000001,7.33,7.46,7.54,7.6000000000000005,7.640000000000001,7.67,169.13,169.75,170.07,170.3,170.5,170.66,170.82,170.96,171.22,29.150000000000002,28.400000000000002,28.1,27.84,27.61,27.39,27.17,26.97,26.57,N/A,N/A +2013,10,4,20,30,93760,92700,91680,32.22,0,5.22,6.41,6.7700000000000005,6.95,7.07,7.140000000000001,7.18,7.22,7.24,171.09,171.23,171.35,171.45000000000002,171.54,171.62,171.71,171.79,171.96,30.400000000000002,29.67,29.39,29.13,28.900000000000002,28.67,28.46,28.26,27.85,N/A,N/A +2013,10,4,21,30,93710,92660,91630,29.92,0,5.29,6.54,6.91,7.1000000000000005,7.22,7.3,7.34,7.38,7.4,170.04,170.15,170.20000000000002,170.23,170.25,170.27,170.28,170.28,170.3,30.95,30.27,30.01,29.75,29.53,29.310000000000002,29.1,28.900000000000002,28.490000000000002,N/A,N/A +2013,10,4,22,30,93690,92640,91620,30.830000000000002,0,5.58,6.94,7.34,7.5600000000000005,7.7,7.79,7.86,7.9,7.95,160.73,161.08,161.3,161.47,161.61,161.73,161.86,161.97,162.18,31.01,30.41,30.18,29.94,29.72,29.51,29.3,29.1,28.7,N/A,N/A +2013,10,4,23,30,93670,92610,91590,32.59,0,6.3100000000000005,7.97,8.42,8.67,8.84,8.94,9.02,9.07,9.11,156,156.43,156.70000000000002,156.94,157.15,157.35,157.54,157.73,158.1,30.55,30.14,29.95,29.740000000000002,29.53,29.34,29.13,28.94,28.55,N/A,N/A +2013,10,5,0,30,93680,92620,91590,35.59,0,5.44,7.83,8.67,9.290000000000001,9.76,10.13,10.4,10.620000000000001,10.88,155.3,155.71,156.01,156.3,156.52,156.71,156.83,156.92000000000002,156.94,29.1,29.150000000000002,29.11,29.01,28.900000000000002,28.76,28.61,28.45,28.09,N/A,N/A +2013,10,5,1,30,93700,92640,91610,37.480000000000004,0,4.57,7.12,8.16,9.07,9.85,10.53,11.120000000000001,11.65,12.44,149.01,151.35,152.87,153.98,154.86,155.57,156.09,156.53,157.03,27.89,28.02,28.01,27.97,27.91,27.84,27.740000000000002,27.650000000000002,27.39,N/A,N/A +2013,10,5,2,30,93730,92670,91630,48.93,0,3.8000000000000003,6.32,7.36,8.28,9.07,9.790000000000001,10.46,11.08,12.18,144.07,145.29,146.13,146.88,147.64000000000001,148.42000000000002,149.28,150.12,151.74,26.400000000000002,26.54,26.54,26.5,26.44,26.37,26.28,26.2,25.98,N/A,N/A +2013,10,5,3,30,93770,92700,91660,51.5,0,3.25,5.5,6.390000000000001,7.2,7.930000000000001,8.61,9.290000000000001,9.94,11.23,117.35000000000001,124.18,128.71,132.3,135.36,138.05,140.37,142.49,145.84,25.48,25.63,25.61,25.55,25.48,25.400000000000002,25.310000000000002,25.23,25.04,N/A,N/A +2013,10,5,4,30,93800,92720,91680,58.45,0,1.28,3.34,4.48,5.41,6.24,7,7.78,8.540000000000001,10.19,108.41,117.89,124.68,128.49,131.94,135.09,138.01,140.8,145.42000000000002,24.11,24.5,24.5,24.46,24.42,24.37,24.32,24.28,24.21,N/A,N/A +2013,10,5,5,30,93810,92730,91690,62.88,0,0.92,1.95,2.5500000000000003,3.79,4.9,5.76,6.55,7.28,8.71,333.07,64.71000000000001,116.60000000000001,123.03,128.38,132.05,135.32,138.37,143.85,23.400000000000002,23.77,23.76,23.740000000000002,23.7,23.66,23.6,23.56,23.47,N/A,N/A +2013,10,5,6,30,93850,92770,91730,64.69,0,1.29,2.5500000000000003,2.75,2.56,2.8000000000000003,3.38,4,4.65,6.17,11.93,59.4,90.3,112.86,124.60000000000001,131.37,137.36,143.21,150.56,23.45,23.740000000000002,23.62,23.45,23.32,23.2,23.11,23.04,22.95,N/A,N/A +2013,10,5,7,30,93900,92810,91770,68.03,0,2.13,3.83,3.92,3.46,3.34,3.42,3.89,4.48,6.0200000000000005,60.76,82.2,94.32000000000001,101.19,111.12,123.34,134.1,144.84,155.35,22.82,23.23,23.14,22.95,22.8,22.68,22.64,22.62,22.63,N/A,N/A +2013,10,5,8,30,93910,92830,91780,73.18,0,2.24,3.95,4.3100000000000005,4.61,4.99,5.44,5.98,6.51,7.7700000000000005,112.96000000000001,123.65,130.66,137.36,143.32,148.97,153.46,157.5,162.38,21.830000000000002,22.35,22.44,22.53,22.61,22.67,22.69,22.7,22.650000000000002,N/A,N/A +2013,10,5,9,30,93910,92820,91770,76.22,0,1.44,3.3200000000000003,4.15,4.76,5.3,5.79,6.3500000000000005,6.92,8.25,104.78,115.49000000000001,122.93,128.47,133.48,138.14000000000001,142.39000000000001,146.4,152.45000000000002,21.580000000000002,22.150000000000002,22.2,22.2,22.19,22.16,22.13,22.12,22.06,N/A,N/A +2013,10,5,10,30,93930,92840,91790,81.21000000000001,0,0.28,1.76,3.38,4.42,5.33,6.1000000000000005,6.74,7.32,8.19,135,131.42000000000002,127.95,128.46,129.35,130.54,132.33,134.2,138.99,20.95,21.5,21.57,21.580000000000002,21.57,21.54,21.48,21.43,21.28,N/A,N/A +2013,10,5,11,30,94010,92910,91860,87.68,0,0.41000000000000003,0.96,1.37,2.17,2.97,3.71,4.41,5.09,6.36,319.64,216.36,160.66,156.53,154.02,153.15,152.98,153.01,153.96,20.78,21.07,20.990000000000002,20.89,20.79,20.7,20.59,20.490000000000002,20.26,N/A,N/A +2013,10,5,12,30,94080,92990,91930,91.99,0,0.28,0.38,0.43,0.7000000000000001,1.03,1.43,1.85,2.2800000000000002,3.16,321.41,214.73000000000002,174.62,177.17000000000002,178.78,179.34,179.18,178.75,177.74,20.48,21.03,21.02,20.82,20.650000000000002,20.490000000000002,20.34,20.2,19.91,N/A,N/A +2013,10,5,13,30,94120,93020,91970,84.10000000000001,0,0.16,0.49,0.81,1.19,1.58,1.97,2.37,2.7800000000000002,3.59,345.81,281.07,232.03,224.03,217.33,211.94,207.97,204.32,199.4,20.830000000000002,20.77,20.75,20.73,20.66,20.57,20.47,20.37,20.13,N/A,N/A +2013,10,5,14,30,94200,93100,92030,44.88,0,3.48,4.21,4.44,4.67,4.86,5.04,5.15,5.22,4.83,305.75,308.02,310,312.55,315.2,317.90000000000003,322.12,326.24,332.23,21.02,20.71,20.56,20.42,20.28,20.150000000000002,20.11,20.080000000000002,19.98,N/A,N/A +2013,10,5,15,30,94260,93160,92090,47.25,0,3.8000000000000003,4.89,5.23,5.54,5.84,6.13,6.42,6.68,7.140000000000001,335.74,340.3,342.52,344.64,346.57,348.38,350.21,351.91,355.28000000000003,21.32,20.95,20.740000000000002,20.52,20.29,20.080000000000002,19.85,19.64,19.21,N/A,N/A +2013,10,5,16,30,94390,93270,92190,41.76,0,7.3,9.3,10,10.48,10.81,11.06,11.22,11.36,11.55,16.46,17.37,18.05,18.5,18.86,19.150000000000002,19.41,19.66,20.2,17.27,16.77,16.54,16.31,16.09,15.89,15.67,15.47,15.06,N/A,N/A +2013,10,5,17,30,94510,93380,92290,35.79,0,6.05,7.7,8.22,8.53,8.75,8.91,9.02,9.120000000000001,9.24,3.0300000000000002,3.41,3.71,4,4.28,4.54,4.8,5.04,5.53,16.69,16.25,16.04,15.83,15.610000000000001,15.42,15.21,15.01,14.6,N/A,N/A +2013,10,5,18,30,94520,93400,92310,32.83,0,5.5200000000000005,6.98,7.44,7.72,7.91,8.06,8.16,8.25,8.370000000000001,15.33,14.44,13.99,13.63,13.32,13.040000000000001,12.77,12.51,12.030000000000001,17,16.53,16.32,16.11,15.9,15.700000000000001,15.49,15.3,14.9,N/A,N/A +2013,10,5,19,30,94530,93420,92330,32.660000000000004,0,5.8500000000000005,7.32,7.79,8.07,8.25,8.38,8.47,8.55,8.65,13.620000000000001,13.69,13.73,13.74,13.73,13.72,13.67,13.63,13.5,17.66,17.05,16.8,16.57,16.35,16.15,15.93,15.74,15.34,N/A,N/A +2013,10,5,20,30,94480,93370,92290,28.51,0,4.86,6.01,6.38,6.59,6.74,6.8500000000000005,6.92,6.99,7.08,18.51,17.86,17.41,17.05,16.69,16.37,16.04,15.74,15.120000000000001,19.84,19.14,18.86,18.6,18.37,18.16,17.94,17.740000000000002,17.34,N/A,N/A +2013,10,5,21,30,94440,93340,92260,28.38,0,5.17,6.34,6.7,6.890000000000001,7.01,7.1000000000000005,7.15,7.19,7.24,24.11,22.93,22.17,21.5,20.89,20.330000000000002,19.75,19.23,18.16,20.72,20.04,19.77,19.52,19.3,19.09,18.87,18.68,18.27,N/A,N/A +2013,10,5,22,30,94440,93340,92260,28,0,5.0600000000000005,6.26,6.640000000000001,6.8500000000000005,6.99,7.09,7.16,7.22,7.29,32.28,31.05,30.26,29.580000000000002,28.96,28.39,27.810000000000002,27.28,26.2,21.06,20.47,20.23,19.990000000000002,19.77,19.57,19.36,19.17,18.77,N/A,N/A +2013,10,5,23,30,94460,93350,92280,29.43,0,5.23,6.5600000000000005,6.98,7.21,7.36,7.47,7.54,7.59,7.63,20.18,20.150000000000002,20.07,19.97,19.87,19.78,19.66,19.55,19.3,20.39,19.94,19.73,19.51,19.3,19.1,18.89,18.7,18.29,N/A,N/A +2013,10,6,0,30,94490,93380,92310,33.2,0,3.06,5.21,6.04,6.65,7.08,7.41,7.63,7.8100000000000005,8.01,25.32,25.46,25.55,25.6,25.53,25.41,25.19,24.97,24.41,18.88,18.91,18.81,18.650000000000002,18.46,18.28,18.080000000000002,17.89,17.490000000000002,N/A,N/A +2013,10,6,1,30,94550,93430,92350,36.53,0,2.62,5.01,6.05,6.8100000000000005,7.390000000000001,7.86,8.21,8.51,8.88,8.72,11.26,13.200000000000001,14.93,16.6,18.16,19.77,21.26,24.060000000000002,17.45,17.6,17.53,17.41,17.26,17.1,16.92,16.75,16.4,N/A,N/A +2013,10,6,2,30,94600,93480,92390,40.81,0,0.7000000000000001,2.46,3.73,4.48,5.16,5.78,6.5200000000000005,7.25,8.57,6.13,12.59,18.81,22.830000000000002,26.150000000000002,29.05,30.990000000000002,32.69,35.03,16.1,16.52,16.490000000000002,16.4,16.27,16.15,16.01,15.9,15.65,N/A,N/A +2013,10,6,3,30,94650,93520,92430,41.33,0,1.72,1.74,1.58,1.8,2.34,3.15,3.92,4.75,6.58,246.78,265.16,292.96,353.49,17.05,23.51,27.41,30.990000000000002,35.76,15.51,15.950000000000001,15.83,15.58,15.34,15.13,14.97,14.86,14.790000000000001,N/A,N/A +2013,10,6,4,30,94670,93550,92450,41.24,0,1.6300000000000001,2.84,3,2.96,3.27,3.72,4.38,5.0600000000000005,6.53,298.57,338.47,2.63,19.7,29.77,37.37,40.06,42.19,43.78,14.69,15.27,15.200000000000001,15,14.85,14.71,14.65,14.6,14.620000000000001,N/A,N/A +2013,10,6,5,30,94680,93550,92460,43.300000000000004,0,1.56,2.16,2.23,2.48,2.74,3.02,3.5,4.0200000000000005,5.23,287.61,321.33,345.91,15.77,27.080000000000002,31.52,34.49,37.24,41.15,13.86,14.63,14.66,14.55,14.39,14.23,14.15,14.1,14.14,N/A,N/A +2013,10,6,6,30,94710,93580,92480,41.31,0,2.17,3.06,3.09,3.27,3.5100000000000002,3.7600000000000002,4.37,4.98,6.17,293.98,326.22,346.18,5.98,17.990000000000002,26.72,30.25,33.1,35.13,13.32,13.99,14.01,13.99,13.88,13.75,13.66,13.64,13.89,N/A,N/A +2013,10,6,7,30,94740,93600,92500,42.730000000000004,0,2.45,3.67,3.86,4.17,4.33,4.44,4.87,5.32,6.29,305.46,337.95,353.64,4.2,10.33,14.57,18.59,21.87,25.36,12.72,13.63,13.67,13.55,13.290000000000001,13.030000000000001,13.13,13.27,13.68,N/A,N/A +2013,10,6,8,30,94790,93650,92550,44.04,0,1.3800000000000001,1.72,1.77,2.16,2.5,2.81,3.2,3.61,4.51,319.5,347.61,0.35000000000000003,9.51,12.82,13.66,14.290000000000001,15.01,17.03,12.23,13.01,13.01,12.93,12.780000000000001,12.620000000000001,12.51,12.46,12.64,N/A,N/A +2013,10,6,9,30,94810,93670,92560,47.2,0,1.02,1.36,1.42,1.68,2.05,2.48,3,3.52,4.5600000000000005,297.01,316.55,328.74,342.12,349.54,354.58,357.58,0.48,5.55,11.34,12.3,12.39,12.370000000000001,12.27,12.16,12.14,12.19,12.65,N/A,N/A +2013,10,6,10,30,94840,93700,92590,50.44,0,0.45,0.71,0.81,1,1.31,1.69,2.13,2.58,3.52,267.35,295.68,313.05,328.90000000000003,338.36,345.79,349.41,352.92,358.68,10.3,11.18,11.28,11.35,11.38,11.4,11.42,11.51,11.97,N/A,N/A +2013,10,6,11,30,94860,93710,92600,55.120000000000005,0,0.1,0.37,0.67,1.11,1.55,1.99,2.39,2.7800000000000002,3.54,184.19,276.1,329.74,331.8,333.38,335.01,338.81,342.75,351.01,8.98,10.13,10.53,10.94,11.28,11.55,11.68,11.8,12.1,N/A,N/A +2013,10,6,12,30,94890,93730,92620,60.45,0,0.47000000000000003,0.25,0.28,0.55,0.9500000000000001,1.44,1.83,2.23,3.0500000000000003,143.76,140.56,102.31,353.68,326.54,325.91,328.42,332.08,341.88,7.69,8.75,9.040000000000001,9.25,9.58,9.93,10.450000000000001,10.91,11.57,N/A,N/A +2013,10,6,13,30,94930,93780,92660,60.72,0,0.13,0.34,0.52,0.81,1.21,1.68,2.17,2.66,3.54,284.25,293.09000000000003,303.87,320.37,326.88,329.95,332.15000000000003,334.66,340.91,7.5600000000000005,8.47,8.72,8.85,9,9.16,9.53,9.97,11.07,N/A,N/A +2013,10,6,14,30,94950,93800,92690,48.31,0,0.9,1.1500000000000001,1.27,1.3800000000000001,1.9000000000000001,2.61,3.11,3.5300000000000002,4,273.18,276.46,282.21,291.02,304.28000000000003,319.83,324.04,328.16,336.15000000000003,9.96,9.63,9.48,9.34,9.42,9.58,10.23,10.8,11.73,N/A,N/A +2013,10,6,15,30,94940,93800,92700,36.07,0,1.8800000000000001,2.2600000000000002,2.35,2.39,2.38,2.36,2.37,2.39,2.48,294.19,297.04,298.85,300.47,301.89,303.13,305.5,308.25,317.13,14.27,13.82,13.61,13.42,13.23,13.06,12.870000000000001,12.68,12.21,N/A,N/A +2013,10,6,16,30,94920,93790,92700,27.53,0,2.22,2.58,2.66,2.67,2.66,2.65,2.62,2.6,2.54,294.78000000000003,298.61,300.98,303.17,305.32,307.27,309.45,311.42,315.27,17.740000000000002,17.22,16.98,16.77,16.57,16.39,16.19,16.01,15.64,N/A,N/A +2013,10,6,17,30,94880,93760,92680,23.12,0,0.71,0.85,0.89,0.93,0.96,0.99,1.03,1.06,1.1400000000000001,318.54,325.02,328.71,331.92,334.78000000000003,337.33,339.69,341.8,345.55,20.35,19.84,19.580000000000002,19.34,19.12,18.92,18.71,18.51,18.12,N/A,N/A +2013,10,6,18,30,94830,93720,92650,17.32,0,1.6600000000000001,2.08,2.23,2.33,2.41,2.48,2.5500000000000003,2.61,2.71,18.97,19.28,19.51,19.69,19.830000000000002,19.95,20.05,20.14,20.29,22.150000000000002,21.580000000000002,21.31,21.06,20.830000000000002,20.62,20.400000000000002,20.2,19.79,N/A,N/A +2013,10,6,19,30,94780,93680,92610,14.42,0,1.77,2.15,2.27,2.35,2.41,2.46,2.5100000000000002,2.5500000000000003,2.63,20.91,22.25,22.96,23.580000000000002,24.13,24.62,25.09,25.53,26.34,23.34,22.76,22.490000000000002,22.240000000000002,22.01,21.8,21.580000000000002,21.38,20.97,N/A,N/A +2013,10,6,20,30,94720,93620,92560,11.89,0,2.22,2.67,2.8000000000000003,2.87,2.93,2.98,3.0100000000000002,3.04,3.09,22.150000000000002,22.56,22.76,22.95,23.13,23.3,23.43,23.56,23.78,24.12,23.53,23.27,23.03,22.8,22.59,22.37,22.18,21.77,N/A,N/A +2013,10,6,21,30,94680,93580,92520,11.25,0,1.98,2.36,2.46,2.5100000000000002,2.5500000000000003,2.58,2.6,2.62,2.65,36.86,36.65,36.550000000000004,36.46,36.38,36.29,36.18,36.09,35.88,24.62,24.060000000000002,23.81,23.57,23.35,23.150000000000002,22.93,22.73,22.32,N/A,N/A +2013,10,6,22,30,94640,93540,92480,10.86,0,1.96,2.38,2.5,2.57,2.62,2.66,2.69,2.72,2.75,43.25,42.980000000000004,42.88,42.83,42.78,42.730000000000004,42.660000000000004,42.58,42.38,24.73,24.23,24,23.79,23.580000000000002,23.38,23.17,22.97,22.57,N/A,N/A +2013,10,6,23,30,94620,93520,92460,12.18,0,1.51,1.86,1.95,2.0100000000000002,2.04,2.07,2.09,2.1,2.13,64.83,63.04,61.92,60.95,60.07,59.29,58.51,57.800000000000004,56.39,24.64,24.27,24.080000000000002,23.88,23.68,23.490000000000002,23.28,23.09,22.69,N/A,N/A +2013,10,7,0,30,94630,93540,92480,17.14,0,0.97,1.6400000000000001,1.76,1.8900000000000001,2,2.09,2.16,2.23,2.32,120.75,102.38,93.06,86.88,82.22,78.47,75.76,73.5,71,22.7,23.75,23.78,23.68,23.53,23.37,23.18,23,22.62,N/A,N/A +2013,10,7,1,30,94660,93560,92500,19.01,0,2.05,3.2600000000000002,3.36,3.43,3.44,3.42,3.35,3.27,3.08,125.02,122.36,120.73,119.15,117.98,117.07000000000001,115.84,114.66,111.38,21.2,22.38,22.54,22.61,22.59,22.53,22.41,22.3,22.03,N/A,N/A +2013,10,7,2,30,94700,93590,92520,21.3,0,2.16,3.0700000000000003,2.98,2.89,2.83,2.7800000000000002,2.77,2.7800000000000002,2.8000000000000003,84.71000000000001,91.04,95.45,100.26,104.74000000000001,108.74000000000001,112.22,115.12,118.57000000000001,20.1,21.2,21.31,21.37,21.37,21.36,21.330000000000002,21.3,21.21,N/A,N/A +2013,10,7,3,30,94740,93630,92560,23.26,0,1.43,2.34,2.5,2.69,2.9,3.1,3.3200000000000003,3.5300000000000002,3.91,109.78,115.91,119.51,122.73,125,126.81,127.86,128.71,129.51,18.98,20.01,20.12,20.23,20.330000000000002,20.42,20.490000000000002,20.55,20.6,N/A,N/A +2013,10,7,4,30,94760,93640,92570,24.97,0,0.74,1.27,1.3900000000000001,1.49,1.59,1.7,1.85,2.0100000000000002,2.4,138.99,135.26,134.4,135.39000000000001,137.97,140.91,143.71,146.1,148.64000000000001,17.94,19.04,19.18,19.28,19.35,19.39,19.43,19.47,19.52,N/A,N/A +2013,10,7,5,30,94780,93660,92580,28.42,0,0.65,0.87,0.84,0.8300000000000001,0.96,1.1500000000000001,1.45,1.76,2.4,238.58,242.20000000000002,239.68,233.59,225.61,216.6,209.77,202.98000000000002,192.12,15.530000000000001,17.080000000000002,17.48,17.740000000000002,17.990000000000002,18.21,18.48,18.72,19.07,N/A,N/A +2013,10,7,6,30,94800,93670,92590,30.44,0,0.22,0.64,0.85,0.98,1.17,1.37,1.68,2.02,2.74,182.35,232.11,249.83,244.72,233.42000000000002,220.6,212.95000000000002,206.38,200.27,14.39,15.85,16.29,16.66,17.05,17.400000000000002,17.71,17.97,18.35,N/A,N/A +2013,10,7,7,30,94830,93700,92610,32.96,0,0.09,0.38,0.6,0.8,1.07,1.3900000000000001,1.72,2.06,2.7600000000000002,281.05,235.11,210.61,209.29,212.16,216.54,220.8,224.54,228.21,13.15,14.68,15.23,15.74,16.19,16.580000000000002,16.91,17.21,17.69,N/A,N/A +2013,10,7,8,30,94830,93700,92610,36.18,0,0.09,0.63,1.06,1.27,1.56,1.8900000000000001,2.31,2.7600000000000002,3.7,201.28,226.25,247.23000000000002,254.8,258.27,260.42,258.91,257.07,252.15,11.8,13.4,14,14.530000000000001,15.02,15.44,15.85,16.25,17.06,N/A,N/A +2013,10,7,9,30,94810,93670,92580,38.94,0,0.1,0.22,0.35000000000000003,0.65,1.07,1.6,2.11,2.66,3.77,86.43,194.46,239.36,266.4,272.98,272.19,268.56,264.86,258.32,10.73,12.46,13.120000000000001,13.65,14.34,14.99,15.63,16.18,17.02,N/A,N/A +2013,10,7,10,30,94820,93670,92580,40.87,0,0.05,0.34,0.4,0.28,0.56,1.21,1.74,2.32,3.42,57.27,89.04,41.84,318.62,298.96,281.85,275.68,269.54,260.83,9.98,11.85,12.55,13.07,13.73,14.38,15.22,15.92,16.94,N/A,N/A +2013,10,7,11,30,94810,93670,92580,43.27,0,0.06,0.3,0.44,0.5,0.86,1.45,1.9000000000000001,2.39,3.34,69.9,93.41,56.300000000000004,333.03000000000003,311.34000000000003,297.77,290.72,283.55,271.26,9.25,11.21,11.950000000000001,12.5,13.22,13.91,14.81,15.59,16.77,N/A,N/A +2013,10,7,12,30,94840,93700,92600,46.160000000000004,0,0.02,0.1,0.27,0.8,1.42,2.1,2.5100000000000002,2.8000000000000003,3.18,358.71,250.95000000000002,214.22,284.6,301.22,298.44,294.2,289.54,278.96,8.47,10.46,11.34,12.09,12.85,13.55,14.43,15.11,16.12,N/A,N/A +2013,10,7,13,30,94870,93720,92620,47.26,0,0.34,1.03,1.51,2.06,2.66,3.2800000000000002,3.83,4.28,4.67,286,292.15000000000003,298.46,306.7,309.03000000000003,309.66,307.2,304.13,297.3,8.36,9.98,10.67,11.25,11.93,12.6,13.49,14.27,15.38,N/A,N/A +2013,10,7,14,30,94890,93740,92640,36.07,0,0.87,0.97,1.25,1.8800000000000001,2.49,3.11,3.7,4.17,4.51,244.76,247.44,264.54,301.62,312.8,316.82,315.28000000000003,312.67,305.18,11.18,10.93,11.05,11.31,11.870000000000001,12.47,13.34,14.09,15.18,N/A,N/A +2013,10,7,15,30,94890,93760,92660,29.82,0,0.44,0.67,0.8,0.92,1.1300000000000001,1.3800000000000001,1.95,2.62,3.7800000000000002,303.41,301.62,300.90000000000003,300.48,304.37,309.73,315.84000000000003,320.18,316.79,15.05,14.67,14.5,14.34,14.18,14.040000000000001,13.89,14.1,15.72,N/A,N/A +2013,10,7,16,30,94820,93710,92630,20.36,0,1.9000000000000001,2.33,2.45,2.5100000000000002,2.5500000000000003,2.57,2.58,2.59,2.66,300.56,303.27,304.94,306.42,307.81,309.05,310.72,312.5,318.05,20.490000000000002,20,19.79,19.59,19.400000000000002,19.23,19.05,18.88,18.54,N/A,N/A +2013,10,7,17,30,94790,93690,92620,15.89,0,1.99,2.27,2.3000000000000003,2.29,2.2600000000000002,2.22,2.18,2.14,2.05,285.96,288.29,289.7,290.95,292.18,293.3,294.51,295.61,298.07,23.240000000000002,22.69,22.45,22.23,22.02,21.84,21.64,21.46,21.1,N/A,N/A +2013,10,7,18,30,94750,93650,92590,13.16,0,1.25,1.43,1.46,1.47,1.47,1.47,1.47,1.46,1.45,281.89,282.24,282.37,282.37,282.35,282.32,282.24,282.16,281.98,24.87,24.32,24.07,23.830000000000002,23.61,23.400000000000002,23.19,23,22.6,N/A,N/A +2013,10,7,19,30,94700,93610,92560,12.290000000000001,0,0.51,0.53,0.51,0.49,0.47000000000000003,0.45,0.42,0.41000000000000003,0.36,302.74,301.35,300.39,299.35,298.25,297.19,296.01,294.95,292.25,25.95,25.400000000000002,25.14,24.900000000000002,24.68,24.47,24.25,24.05,23.64,N/A,N/A +2013,10,7,20,30,94630,93540,92480,12.13,0,0.44,0.44,0.42,0.39,0.37,0.35000000000000003,0.33,0.31,0.27,336.83,331.59000000000003,328.97,326.94,325.14,323.56,321.95,320.55,317.64,26.740000000000002,26.2,25.94,25.69,25.47,25.26,25.04,24.830000000000002,24.42,N/A,N/A +2013,10,7,21,30,94570,93490,92430,11.92,0,1.09,1.24,1.26,1.25,1.25,1.24,1.22,1.21,1.18,119.77,120.66,121.31,121.94,122.54,123.11,123.72,124.29,125.42,27.17,26.63,26.39,26.150000000000002,25.93,25.72,25.5,25.3,24.89,N/A,N/A +2013,10,7,22,30,94500,93420,92370,12.11,0,1.9100000000000001,2.18,2.21,2.21,2.19,2.18,2.15,2.13,2.08,120.18,122.66,123.86,124.75,125.47,126.09,126.66,127.16,128.09,27.19,26.69,26.47,26.240000000000002,26.03,25.830000000000002,25.62,25.43,25.02,N/A,N/A +2013,10,7,23,30,94490,93400,92350,13.32,0,2.62,3.19,3.31,3.36,3.38,3.39,3.38,3.37,3.3200000000000003,138.16,139.3,140.03,140.74,141.37,141.93,142.48,142.96,143.86,26.93,26.57,26.39,26.19,25.990000000000002,25.8,25.59,25.400000000000002,25.01,N/A,N/A +2013,10,8,0,30,94470,93380,92330,17.26,0,2.7600000000000002,4.3,4.33,4.28,4.26,4.26,4.23,4.2,4.11,174.46,175.19,175.01,174.01,173.68,173.69,173.46,173.20000000000002,172.54,25.14,26.25,26.21,25.93,25.72,25.55,25.36,25.17,24.79,N/A,N/A +2013,10,8,1,30,94460,93370,92320,17.23,0,4.14,6.67,7.04,6.88,6.73,6.58,6.41,6.24,5.94,175.33,174.32,173.95000000000002,173.96,174.06,174.19,174.38,174.58,175.52,24.38,25.69,25.84,25.5,25.28,25.13,24.97,24.830000000000002,24.52,N/A,N/A +2013,10,8,2,30,94460,93370,92320,19.11,0,3.88,6.18,6.51,6.53,6.45,6.3100000000000005,6.0600000000000005,5.83,5.54,177.84,178.64000000000001,178.36,177.08,175.89000000000001,174.81,174.24,173.84,173.58,23.330000000000002,25.080000000000002,25.5,25.490000000000002,25.39,25.25,25.04,24.85,24.46,N/A,N/A +2013,10,8,3,30,94450,93360,92310,22.03,0,3.2600000000000002,6.28,7.0200000000000005,7.390000000000001,7.5,7.46,7.25,7.04,6.55,178.69,183.04,185.26,186.37,186.96,187.27,187.18,186.99,185.59,21.75,23.490000000000002,23.89,24.14,24.26,24.32,24.3,24.26,24.07,N/A,N/A +2013,10,8,4,30,94460,93360,92300,24.490000000000002,0,2.24,4.57,5.34,6,6.46,6.8100000000000005,6.98,7.1000000000000005,7.1000000000000005,168.56,175.25,178.81,180.86,182.13,183,183.43,183.73,183.73,20.18,21.91,22.36,22.71,22.95,23.11,23.19,23.240000000000002,23.2,N/A,N/A +2013,10,8,5,30,94470,93370,92300,26.810000000000002,0,1.55,3.39,4.17,4.91,5.51,6.04,6.390000000000001,6.69,7.01,146.26,162.09,170.68,175.20000000000002,178.19,180.36,181.55,182.48,183.05,19.1,20.56,20.900000000000002,21.22,21.48,21.69,21.86,22.01,22.17,N/A,N/A +2013,10,8,6,30,94470,93360,92300,29.13,0,1.43,2.85,3.43,4.1,4.68,5.21,5.66,6.07,6.67,124.61,149.38,163.08,172.25,177.71,181.31,183.11,184.54,185.5,18.18,19.56,19.89,20.23,20.490000000000002,20.71,20.88,21.01,21.2,N/A,N/A +2013,10,8,7,30,94480,93360,92290,31.92,0,1.51,2.94,3.52,4.25,4.87,5.42,5.9,6.34,7.03,126.09,152.1,166.16,175.66,180.99,184.4,185.94,187.11,187.85,17.18,18.54,18.88,19.23,19.490000000000002,19.7,19.87,20.02,20.21,N/A,N/A +2013,10,8,8,30,94480,93370,92290,34.99,0,1.55,2.58,2.91,3.39,3.93,4.48,5.0200000000000005,5.53,6.43,115.02,141.25,155.62,167.34,174.19,178.98,181.31,183.20000000000002,184.84,16.1,17.56,17.900000000000002,18.21,18.47,18.69,18.88,19.04,19.28,N/A,N/A +2013,10,8,9,30,94460,93340,92270,37.14,0,1.35,2.31,2.5500000000000003,2.81,3.17,3.56,4.0200000000000005,4.48,5.38,118.52,132.37,142.04,152.18,159.78,166.38,170.5,174.09,178.49,15.19,16.6,16.94,17.27,17.54,17.78,17.990000000000002,18.18,18.490000000000002,N/A,N/A +2013,10,8,10,30,94450,93330,92240,38.34,0,2.07,3.29,3.44,3.59,3.79,4,4.3100000000000005,4.63,5.3500000000000005,133.36,133.82,135.75,139.24,144.48,149.91,154.94,159.44,166.23,14.790000000000001,15.89,16.04,16.22,16.46,16.68,16.96,17.21,17.71,N/A,N/A +2013,10,8,11,30,94440,93310,92230,40.730000000000004,0,1.58,2.71,2.99,3.27,3.59,3.91,4.3100000000000005,4.71,5.59,125.67,132.35,137.75,143.91,149.6,154.85,159.17000000000002,163,168.45000000000002,13.82,14.91,15.11,15.35,15.63,15.9,16.25,16.580000000000002,17.25,N/A,N/A +2013,10,8,12,30,94470,93340,92250,44.160000000000004,0,1.78,3.56,4.21,4.79,5.28,5.7,6.05,6.37,6.96,132.57,137.76,141.02,143.61,146.13,148.47,150.87,153.13,157.47,12.65,13.75,13.99,14.27,14.57,14.86,15.19,15.49,16.12,N/A,N/A +2013,10,8,13,30,94460,93330,92240,45.81,0,1.57,2.7,3,3.31,3.66,4.01,4.44,4.87,5.78,123.63000000000001,133.16,140.6,149.01,154.76,159.4,162.22,164.56,167.29,12.450000000000001,13.290000000000001,13.44,13.64,13.9,14.16,14.51,14.85,15.56,N/A,N/A +2013,10,8,14,30,94480,93350,92260,35.01,0,2.29,2.74,2.98,3.3000000000000003,3.83,4.44,4.98,5.5,6.46,127.74000000000001,134.23,140.11,147.83,152.75,156.74,159.03,161.1,164.28,14.870000000000001,14.57,14.450000000000001,14.35,14.39,14.48,14.66,14.84,15.27,N/A,N/A +2013,10,8,15,30,94470,93350,92270,27.580000000000002,0,2.9,3.61,3.84,3.98,4.07,4.15,4.25,4.36,4.78,155.36,157.61,158.97,160.19,161.39000000000001,162.49,163.83,165.09,167.62,18.19,17.71,17.5,17.31,17.13,16.96,16.79,16.65,16.41,N/A,N/A +2013,10,8,16,30,94420,93310,92240,24.560000000000002,0,3.79,4.72,5,5.16,5.26,5.33,5.39,5.44,5.58,161.12,162.04,162.59,163.05,163.48,163.87,164.28,164.68,165.61,20.63,20.04,19.8,19.580000000000002,19.37,19.19,19,18.830000000000002,18.490000000000002,N/A,N/A +2013,10,8,17,30,94380,93280,92220,21.23,0,5.25,6.58,6.98,7.21,7.37,7.49,7.57,7.640000000000001,7.75,166.59,166.78,166.89000000000001,166.99,167.07,167.16,167.24,167.33,167.52,22.92,22.22,21.95,21.71,21.48,21.28,21.07,20.88,20.5,N/A,N/A +2013,10,8,18,30,94340,93250,92190,17.53,0,6.26,7.8100000000000005,8.26,8.51,8.68,8.8,8.870000000000001,8.94,9.01,170.57,170.53,170.53,170.51,170.5,170.49,170.47,170.46,170.44,24.51,23.76,23.48,23.21,22.98,22.76,22.54,22.34,21.93,N/A,N/A +2013,10,8,19,30,94290,93210,92150,15.43,0,6.55,8.15,8.61,8.870000000000001,9.03,9.15,9.22,9.28,9.34,170.43,170.42000000000002,170.43,170.43,170.43,170.41,170.4,170.39000000000001,170.38,25.5,24.740000000000002,24.45,24.19,23.95,23.73,23.5,23.3,22.88,N/A,N/A +2013,10,8,20,30,94230,93140,92090,14.46,0,6.15,7.640000000000001,8.08,8.32,8.48,8.58,8.66,8.72,8.78,169.94,169.96,169.98,169.99,170,170.01,170.02,170.02,170.05,26.19,25.46,25.19,24.93,24.69,24.47,24.25,24.04,23.63,N/A,N/A +2013,10,8,21,30,94170,93090,92040,13.73,0,6.13,7.63,8.08,8.32,8.48,8.59,8.67,8.73,8.8,167.15,167.28,167.37,167.43,167.48,167.53,167.57,167.62,167.68,26.63,25.96,25.7,25.45,25.22,25.01,24.79,24.59,24.17,N/A,N/A +2013,10,8,22,30,94120,93040,91990,15.4,0,6.140000000000001,7.69,8.14,8.38,8.55,8.66,8.74,8.8,8.86,166.65,166.83,166.93,167.01,167.07,167.11,167.16,167.21,167.29,26.42,25.86,25.63,25.400000000000002,25.18,24.97,24.76,24.560000000000002,24.150000000000002,N/A,N/A +2013,10,8,23,30,94090,93010,91960,18.25,0,5.95,7.62,8.09,8.38,8.59,8.74,8.86,8.96,9.09,159.45000000000002,159.81,159.97,160.1,160.21,160.31,160.41,160.5,160.65,25.740000000000002,25.42,25.240000000000002,25.04,24.84,24.650000000000002,24.45,24.26,23.87,N/A,N/A +2013,10,9,0,30,94070,92990,91930,22.580000000000002,0,4.44,7.12,8.11,8.91,9.540000000000001,10.07,10.46,10.8,11.27,147.62,148.31,148.87,149.52,150.23,150.95000000000002,151.67000000000002,152.34,153.49,23.6,23.89,23.92,23.89,23.81,23.71,23.56,23.42,23.06,N/A,N/A +2013,10,9,1,30,94080,92990,91940,25.82,0,4.2700000000000005,6.88,7.930000000000001,8.86,9.72,10.52,11.3,12.02,13.23,143.43,144.47,145.14000000000001,145.64000000000001,146.21,146.8,147.46,148.1,149.3,21.92,22.21,22.27,22.3,22.3,22.29,22.23,22.18,21.97,N/A,N/A +2013,10,9,2,30,94100,93000,91940,26.36,0,5.46,8.34,9.52,10.56,11.49,12.32,13.07,13.75,14.85,146.52,147.45000000000002,147.97,148.27,148.52,148.75,149.01,149.25,149.81,21.38,21.55,21.57,21.580000000000002,21.57,21.56,21.51,21.46,21.31,N/A,N/A +2013,10,9,3,30,94090,92990,91930,28.01,0,5.61,8.58,9.78,10.83,11.74,12.540000000000001,13.31,14.02,15.24,146.65,147.95000000000002,148.70000000000002,149.19,149.63,150.02,150.56,151.12,152.54,20.51,20.72,20.75,20.76,20.75,20.73,20.7,20.67,20.57,N/A,N/A +2013,10,9,4,30,94070,92970,91910,32.24,0,5.0600000000000005,8.13,9.4,10.52,11.51,12.4,13.3,14.14,15.73,143.07,145.35,146.72,147.75,148.83,149.89000000000001,151.13,152.32,154.65,19.1,19.43,19.51,19.59,19.64,19.68,19.72,19.76,19.830000000000002,N/A,N/A +2013,10,9,5,30,94070,92960,91900,35.980000000000004,0,3.86,6.91,8.23,9.450000000000001,10.57,11.6,12.65,13.64,15.540000000000001,136.89000000000001,143.51,147.41,150.06,152.21,154.07,155.68,157.16,159.6,18.150000000000002,18.6,18.71,18.8,18.88,18.94,19.01,19.07,19.16,N/A,N/A +2013,10,9,6,30,94090,92980,91910,37.67,0,3.95,6.93,8.23,9.44,10.51,11.49,12.44,13.34,15.05,137.45000000000002,143.91,147.72,150.22,152.15,153.76,155.18,156.49,158.8,17.740000000000002,18.13,18.21,18.28,18.32,18.35,18.39,18.42,18.490000000000002,N/A,N/A +2013,10,9,7,30,94100,92990,91920,37.88,0,4.75,7.86,9.24,10.5,11.61,12.6,13.540000000000001,14.4,15.98,141.44,146.92000000000002,150.13,152.34,154.07,155.51,156.75,157.88,159.82,17.7,17.98,18.04,18.080000000000002,18.12,18.150000000000002,18.2,18.240000000000002,18.330000000000002,N/A,N/A +2013,10,9,8,30,94110,93000,91920,39.45,0,4.62,7.63,8.94,10.13,11.15,12.06,12.91,13.72,15.27,137.98,143.57,146.88,149.13,150.92000000000002,152.45000000000002,153.85,155.15,157.59,17.23,17.46,17.490000000000002,17.5,17.51,17.51,17.53,17.56,17.64,N/A,N/A +2013,10,9,9,30,94110,93000,91920,44.39,0,3.11,6.11,7.46,8.67,9.74,10.69,11.6,12.450000000000001,14.13,130.19,139.72,145.36,148.42000000000002,150.73,152.62,154.21,155.69,158.28,16.12,16.6,16.68,16.740000000000002,16.78,16.82,16.86,16.9,16.990000000000002,N/A,N/A +2013,10,9,10,30,94110,92990,91910,49.34,0,2.66,5.63,6.95,8.18,9.28,10.290000000000001,11.3,12.280000000000001,14.200000000000001,131.64000000000001,140.16,145.33,148.31,150.68,152.68,154.45000000000002,156.08,158.83,15.44,16.03,16.09,16.13,16.18,16.22,16.27,16.32,16.44,N/A,N/A +2013,10,9,11,30,94130,93010,91930,49.550000000000004,0,3.3000000000000003,6.28,7.67,8.92,10.03,11.02,11.98,12.9,14.69,136.11,142.38,146.18,148.48,150.3,151.84,153.27,154.61,157.17000000000002,15.18,15.55,15.6,15.63,15.65,15.67,15.700000000000001,15.73,15.84,N/A,N/A +2013,10,9,12,30,94160,93040,91950,57.47,0,2.52,5.55,6.890000000000001,8.11,9.15,10.08,10.98,11.84,13.55,129.59,138.1,143.19,146.03,148.26,150.15,151.96,153.68,156.93,14.280000000000001,14.86,14.88,14.88,14.870000000000001,14.870000000000001,14.870000000000001,14.88,14.93,N/A,N/A +2013,10,9,13,30,94180,93060,91970,62.68,0,2.44,5.43,6.78,7.98,9.02,9.950000000000001,10.83,11.67,13.33,130.61,139.03,143.96,146.57,148.57,150.25,151.8,153.26,156.02,13.88,14.450000000000001,14.48,14.49,14.48,14.48,14.48,14.48,14.52,N/A,N/A +2013,10,9,14,30,94200,93080,92000,63.82,0,5.45,7.12,7.7700000000000005,8.3,8.84,9.34,9.870000000000001,10.370000000000001,11.46,146.09,147.5,148.45000000000002,149.4,150.47,151.55,152.48,153.29,154.69,16.11,15.700000000000001,15.51,15.32,15.15,15,14.83,14.68,14.41,N/A,N/A +2013,10,9,15,30,94220,93110,92030,56.09,0,5.1000000000000005,6.48,6.95,7.25,7.45,7.61,7.73,7.84,8.09,150.25,150.97,151.42000000000002,151.82,152.20000000000002,152.56,152.97,153.36,154.32,18.57,17.990000000000002,17.75,17.53,17.32,17.13,16.94,16.76,16.4,N/A,N/A +2013,10,9,16,30,94200,93100,92030,44.58,0,6.46,8.14,8.67,8.99,9.19,9.34,9.44,9.52,9.63,155.91,156.24,156.43,156.6,156.75,156.88,157.04,157.18,157.49,20.78,20.080000000000002,19.81,19.57,19.34,19.13,18.92,18.73,18.330000000000002,N/A,N/A +2013,10,9,17,30,94170,93080,92020,38.09,0,7.17,8.99,9.56,9.88,10.09,10.24,10.33,10.41,10.49,159.19,159.31,159.38,159.44,159.48,159.51,159.55,159.6,159.68,22.62,21.86,21.57,21.31,21.07,20.85,20.63,20.44,20.03,N/A,N/A +2013,10,9,18,30,94120,93030,91970,35.480000000000004,0,6.92,8.65,9.17,9.46,9.65,9.78,9.86,9.92,9.99,162.23,162.34,162.39000000000001,162.43,162.46,162.48,162.5,162.53,162.58,24.14,23.35,23.06,22.79,22.55,22.330000000000002,22.11,21.900000000000002,21.5,N/A,N/A +2013,10,9,19,30,94100,93020,91970,34.59,0,7.05,8.8,9.33,9.620000000000001,9.81,9.94,10.02,10.09,10.16,160.48,160.54,160.59,160.6,160.61,160.62,160.63,160.64000000000001,160.65,25.27,24.48,24.18,23.91,23.67,23.45,23.22,23.02,22.6,N/A,N/A +2013,10,9,20,30,94070,92990,91940,33.8,0,6.95,8.65,9.17,9.450000000000001,9.64,9.77,9.85,9.91,9.97,161.47,161.46,161.45000000000002,161.43,161.41,161.38,161.36,161.34,161.31,26.01,25.25,24.96,24.69,24.46,24.23,24.01,23.81,23.400000000000002,N/A,N/A +2013,10,9,21,30,94030,92950,91910,33.62,0,6.98,8.73,9.26,9.540000000000001,9.73,9.86,9.94,10.01,10.08,159.5,159.45000000000002,159.44,159.42000000000002,159.39000000000001,159.37,159.36,159.34,159.31,26.5,25.79,25.52,25.27,25.04,24.82,24.6,24.400000000000002,23.990000000000002,N/A,N/A +2013,10,9,22,30,93990,92910,91870,35.22,0,6.84,8.6,9.14,9.44,9.64,9.790000000000001,9.88,9.96,10.05,157.04,157.05,157.05,157.04,157.03,157.02,157.01,157,156.99,26.490000000000002,25.91,25.67,25.43,25.2,24.990000000000002,24.78,24.580000000000002,24.18,N/A,N/A +2013,10,9,23,30,93990,92910,91870,40.03,0,7.12,9.07,9.68,10.05,10.31,10.49,10.620000000000001,10.73,10.870000000000001,151.67000000000002,151.85,151.97,152.06,152.14000000000001,152.22,152.3,152.37,152.53,25.7,25.330000000000002,25.13,24.92,24.72,24.52,24.32,24.13,23.73,N/A,N/A +2013,10,10,0,30,93970,92890,91840,42.83,0,5.42,7.87,8.78,9.5,10.09,10.59,11.01,11.38,11.98,154,154.03,154.03,154.04,154.04,154.05,154.05,154.04,153.99,24.32,24.28,24.2,24.07,23.93,23.78,23.61,23.45,23.09,N/A,N/A +2013,10,10,1,30,94000,92910,91860,46.550000000000004,0,6.43,9.13,10.11,10.9,11.56,12.13,12.63,13.08,13.82,152.88,152.6,152.39000000000001,152.15,151.95000000000002,151.76,151.62,151.49,151.39000000000001,23.400000000000002,23.38,23.31,23.2,23.080000000000002,22.96,22.82,22.69,22.38,N/A,N/A +2013,10,10,2,30,94030,92950,91890,50.94,0,5.49,7.91,8.85,9.63,10.31,10.92,11.51,12.07,13.120000000000001,144.95000000000002,144.91,144.96,145.05,145.21,145.42000000000002,145.75,146.08,146.96,22.41,22.38,22.32,22.22,22.12,22.02,21.91,21.81,21.57,N/A,N/A +2013,10,10,3,30,94080,92990,91930,57.620000000000005,0,4.53,6.99,8.06,8.96,9.78,10.53,11.25,11.91,13.18,142.06,142.85,143.5,144.19,144.94,145.73,146.58,147.39000000000001,149.06,21.45,21.47,21.43,21.35,21.26,21.18,21.080000000000002,20.990000000000002,20.79,N/A,N/A +2013,10,10,4,30,94090,93000,91940,62.39,0,3.08,5.48,6.5600000000000005,7.49,8.31,9.06,9.81,10.51,11.93,130.54,134.22,136.78,138.83,140.72,142.5,144.19,145.79,148.57,20.53,20.7,20.69,20.64,20.580000000000002,20.51,20.43,20.36,20.19,N/A,N/A +2013,10,10,5,30,94110,93010,91950,62.78,0,2.9,5.29,6.44,7.5,8.46,9.34,10.21,11.02,12.55,130.24,135.59,139.3,141.95000000000002,144.22,146.21,147.92000000000002,149.48,151.9,20.06,20.27,20.29,20.27,20.240000000000002,20.2,20.150000000000002,20.1,19.98,N/A,N/A +2013,10,10,6,30,94130,93030,91970,56.75,0,4.65,7.41,8.64,9.700000000000001,10.59,11.370000000000001,12.1,12.76,13.950000000000001,144.69,146.72,148.08,149.11,150.04,150.91,151.78,152.6,154.18,20.5,20.6,20.57,20.51,20.43,20.35,20.26,20.18,20,N/A,N/A +2013,10,10,7,30,94130,93030,91970,57.94,0,4.5200000000000005,7.42,8.790000000000001,10,11.040000000000001,11.950000000000001,12.790000000000001,13.56,14.99,142.56,146.01,148.24,149.63,150.79,151.79,152.73,153.6,155.3,19.88,19.98,19.95,19.91,19.85,19.8,19.740000000000002,19.68,19.580000000000002,N/A,N/A +2013,10,10,8,30,94140,93040,91970,61.480000000000004,0,3.92,6.95,8.42,9.700000000000001,10.77,11.69,12.51,13.26,14.63,135.93,141.36,144.83,146.58,147.96,149.03,150.05,151,152.87,19.18,19.36,19.330000000000002,19.27,19.2,19.13,19.05,18.97,18.830000000000002,N/A,N/A +2013,10,10,9,30,94100,93000,91930,68.96000000000001,0,3.29,6.390000000000001,7.890000000000001,9.24,10.39,11.39,12.26,13.06,14.46,129.85,140.02,146.38,149.35,151.46,152.95000000000002,154.07,155.05,156.66,18.650000000000002,18.91,18.87,18.81,18.740000000000002,18.66,18.57,18.490000000000002,18.32,N/A,N/A +2013,10,10,10,30,94120,93010,91940,80.72,0,4.8100000000000005,7.61,8.88,10,10.94,11.76,12.51,13.19,14.44,144.36,147.88,150.08,151.51,152.65,153.59,154.41,155.15,156.39000000000001,18.18,18.21,18.150000000000002,18.06,17.96,17.85,17.740000000000002,17.63,17.39,N/A,N/A +2013,10,10,11,30,94110,93010,91940,91.94,0,3.9,6.5600000000000005,7.8100000000000005,8.91,9.82,10.61,11.31,11.950000000000001,13.14,139.12,144.17000000000002,147.25,149.05,150.43,151.55,152.52,153.4,154.98,17.52,17.51,17.43,17.32,17.2,17.080000000000002,16.95,16.82,16.57,N/A,N/A +2013,10,10,12,30,94130,93020,91950,92.37,0,3.5100000000000002,6.09,7.32,8.38,9.290000000000001,10.1,10.82,11.5,12.75,145.63,148.69,150.64000000000001,151.75,152.74,153.62,154.46,155.24,156.68,17.150000000000002,17.21,17.150000000000002,17.05,16.95,16.84,16.71,16.59,16.35,N/A,N/A +2013,10,10,13,30,94130,93020,91950,93.34,0,4.19,6.66,7.82,8.84,9.69,10.43,11.08,11.69,12.8,146.6,149.4,151.16,152.23,153.12,153.89000000000001,154.6,155.26,156.52,16.97,16.91,16.82,16.7,16.57,16.45,16.31,16.18,15.92,N/A,N/A +2013,10,10,14,30,94130,93030,91960,82.61,0,6.46,8.41,9.13,9.64,10.040000000000001,10.370000000000001,10.66,10.92,11.46,148.16,149.26,149.97,150.56,151.07,151.52,152,152.45000000000002,153.42000000000002,18.25,17.79,17.59,17.38,17.17,16.98,16.79,16.61,16.25,N/A,N/A +2013,10,10,15,30,94120,93020,91950,71.22,0,7.3500000000000005,9.32,9.96,10.34,10.6,10.78,10.9,11.01,11.16,155.9,156.20000000000002,156.4,156.53,156.65,156.75,156.85,156.94,157.16,19.990000000000002,19.37,19.12,18.88,18.66,18.46,18.25,18.06,17.67,N/A,N/A +2013,10,10,16,30,94090,92990,91930,64.1,0,7.18,9.06,9.68,10.03,10.27,10.43,10.540000000000001,10.63,10.73,155.21,155.71,156.01,156.24,156.43,156.61,156.79,156.94,157.28,21.43,20.7,20.42,20.17,19.94,19.73,19.51,19.32,18.92,N/A,N/A +2013,10,10,17,30,94050,92970,91910,55.120000000000005,0,7.42,9.28,9.92,10.27,10.51,10.67,10.790000000000001,10.88,10.99,156.49,156.6,156.68,156.74,156.79,156.84,156.9,156.94,157.05,23.16,22.37,22.080000000000002,21.8,21.56,21.34,21.12,20.92,20.51,N/A,N/A +2013,10,10,18,30,93990,92910,91860,47.36,0,7.58,9.46,10.09,10.42,10.65,10.8,10.9,10.98,11.07,159.35,159.48,159.58,159.65,159.70000000000002,159.74,159.78,159.83,159.92000000000002,24.68,23.87,23.57,23.29,23.05,22.82,22.6,22.39,21.98,N/A,N/A +2013,10,10,19,30,93930,92850,91810,40.81,0,7.73,9.67,10.290000000000001,10.64,10.870000000000001,11.03,11.14,11.22,11.33,161.44,161.63,161.75,161.83,161.89000000000001,161.94,161.99,162.04,162.12,26.1,25.29,24.990000000000002,24.71,24.46,24.240000000000002,24.01,23.81,23.39,N/A,N/A +2013,10,10,20,30,93870,92800,91760,39.51,0,8.11,10.11,10.75,11.08,11.290000000000001,11.44,11.53,11.6,11.67,161.9,161.92000000000002,161.95000000000002,161.97,161.98,161.98,161.99,162,162.02,26.580000000000002,25.79,25.490000000000002,25.22,24.98,24.76,24.54,24.330000000000002,23.92,N/A,N/A +2013,10,10,21,30,93800,92730,91700,37.9,0,7.84,9.82,10.450000000000001,10.790000000000001,11.03,11.19,11.3,11.39,11.49,161.42000000000002,161.47,161.51,161.54,161.55,161.56,161.58,161.59,161.61,27.310000000000002,26.59,26.32,26.060000000000002,25.82,25.6,25.38,25.18,24.76,N/A,N/A +2013,10,10,22,30,93730,92670,91630,38.09,0,8.290000000000001,10.51,11.200000000000001,11.59,11.870000000000001,12.06,12.19,12.3,12.42,157.06,157.32,157.46,157.54,157.6,157.65,157.69,157.72,157.78,27.38,26.78,26.55,26.3,26.080000000000002,25.87,25.650000000000002,25.45,25.04,N/A,N/A +2013,10,10,23,30,93720,92640,91610,42.99,0,7.62,9.8,10.49,10.93,11.25,11.47,11.65,11.790000000000001,11.99,150.70000000000002,151.15,151.45000000000002,151.68,151.86,152.03,152.19,152.35,152.64000000000001,26.69,26.29,26.1,25.88,25.68,25.48,25.27,25.080000000000002,24.68,N/A,N/A +2013,10,11,0,30,93690,92620,91580,46.26,0,5.84,8.45,9.450000000000001,10.28,10.950000000000001,11.52,12.02,12.46,13.23,145.84,146.9,147.57,148.09,148.56,148.97,149.38,149.75,150.5,25.04,24.95,24.84,24.7,24.55,24.400000000000002,24.23,24.07,23.72,N/A,N/A +2013,10,11,1,30,93680,92600,91560,45.9,0,7.28,10.19,11.26,12.16,12.93,13.61,14.25,14.83,15.950000000000001,149.07,149.44,149.67000000000002,149.88,150.12,150.36,150.67000000000002,150.96,151.68,24.29,24.2,24.1,23.97,23.84,23.71,23.56,23.42,23.1,N/A,N/A +2013,10,11,2,30,93670,92590,91540,51.03,0,8.16,11.19,12.23,13.1,13.84,14.49,15.11,15.69,16.77,152.43,152.81,153.07,153.32,153.58,153.85,154.18,154.49,155.23,23.580000000000002,23.47,23.37,23.25,23.12,22.990000000000002,22.85,22.73,22.44,N/A,N/A +2013,10,11,3,30,93650,92570,91520,61.47,0,8.8,11.99,13.040000000000001,13.91,14.65,15.3,15.92,16.5,17.63,154.14000000000001,154.81,155.23,155.62,155.99,156.36,156.74,157.1,157.87,23.13,23,22.900000000000002,22.77,22.64,22.51,22.37,22.240000000000002,21.96,N/A,N/A +2013,10,11,4,30,93630,92550,91500,67.85,0,10.32,13.85,14.93,15.780000000000001,16.51,17.150000000000002,17.75,18.3,19.36,158.52,158.86,159.08,159.3,159.54,159.79,160.06,160.32,160.86,22.81,22.67,22.56,22.42,22.29,22.150000000000002,22,21.86,21.57,N/A,N/A +2013,10,11,5,30,93620,92530,91480,72.49,0,10.47,14.11,15.21,16.09,16.82,17.45,18.06,18.61,19.68,161.65,161.88,162.02,162.17000000000002,162.34,162.51,162.71,162.9,163.32,22.31,22.150000000000002,22.03,21.900000000000002,21.75,21.61,21.46,21.32,21.02,N/A,N/A +2013,10,11,6,30,93620,92540,91490,79.82000000000001,0,11.56,15.33,16.46,17.32,18.03,18.650000000000002,19.23,19.76,20.78,159.02,159.35,159.54,159.72,159.93,160.14000000000001,160.38,160.6,161.12,21.79,21.62,21.5,21.36,21.21,21.07,20.92,20.77,20.47,N/A,N/A +2013,10,11,7,30,93580,92500,91450,83.44,0,12.09,16,17.11,17.97,18.7,19.32,19.92,20.47,21.56,160.97,161.20000000000002,161.34,161.51,161.70000000000002,161.89000000000001,162.12,162.35,162.88,21.580000000000002,21.41,21.28,21.14,20.990000000000002,20.85,20.69,20.55,20.26,N/A,N/A +2013,10,11,8,30,93840,92760,91710,83.75,0,2.2600000000000002,4.25,5.4,6.28,7.04,7.7,8.290000000000001,8.83,9.81,175.13,174.69,174.96,175.78,176.31,176.63,176.8,176.92000000000002,176.95000000000002,21.85,21.650000000000002,21.53,21.38,21.21,21.05,20.86,20.69,20.330000000000002,N/A,N/A +2013,10,11,9,30,93810,92720,91670,83.17,0,6.48,8.75,9.540000000000001,10.16,10.68,11.120000000000001,11.52,11.9,12.61,172.28,172.15,172.07,172.06,172.07,172.1,172.15,172.20000000000002,172.33,22.06,21.78,21.62,21.44,21.25,21.07,20.89,20.71,20.34,N/A,N/A +2013,10,11,10,30,93860,92770,91720,85.66,0,4.48,6.21,6.92,7.5200000000000005,8.02,8.47,8.870000000000001,9.25,9.950000000000001,184.68,184.13,183.78,183.5,183.27,183.05,182.86,182.68,182.39000000000001,21.72,21.46,21.3,21.12,20.94,20.76,20.57,20.400000000000002,20.02,N/A,N/A +2013,10,11,11,30,93910,92830,91770,86.42,0,4.21,5.75,6.3500000000000005,6.8500000000000005,7.28,7.68,8.040000000000001,8.370000000000001,9,190.22,189.47,189.03,188.72,188.44,188.19,187.99,187.82,187.59,21.66,21.38,21.22,21.03,20.85,20.67,20.48,20.31,19.95,N/A,N/A +2013,10,11,12,30,93940,92850,91800,91.85000000000001,0,3.49,5.49,6.25,6.88,7.37,7.76,8.07,8.33,8.71,181.35,181.57,181.78,182.05,182.3,182.52,182.71,182.88,183.18,20.990000000000002,21.04,20.98,20.88,20.76,20.63,20.490000000000002,20.35,20.03,N/A,N/A +2013,10,11,13,30,93970,92880,91820,95.95,0,1.87,4.11,5.11,5.91,6.5600000000000005,7.09,7.5,7.84,8.23,184.3,181.33,179.53,178.97,178.58,178.35,178.32,178.36,178.98,20.27,20.54,20.490000000000002,20.41,20.330000000000002,20.23,20.12,20.01,19.76,N/A,N/A +2013,10,11,14,30,94000,92910,91850,84.57000000000001,0,2.22,2.81,3.02,3.15,3.22,3.27,3.29,3.3000000000000003,3.29,204.8,203.07,202.24,201.86,201.67000000000002,201.62,201.69,201.79,202.28,21.75,21.330000000000002,21.14,20.93,20.740000000000002,20.55,20.36,20.18,19.81,N/A,N/A +2013,10,11,15,30,94010,92920,91870,76.73,0,2.52,3,3.13,3.16,3.18,3.17,3.14,3.11,3.0300000000000002,188.06,189.18,189.85,190.55,191.24,191.93,192.69,193.39000000000001,195.05,22.740000000000002,22.19,21.95,21.72,21.51,21.31,21.1,20.92,20.53,N/A,N/A +2013,10,11,16,30,94000,92920,91870,64.88,0,1.1500000000000001,1.32,1.35,1.35,1.35,1.34,1.33,1.31,1.28,204.94,205.12,205.28,205.54,205.8,206.06,206.38,206.70000000000002,207.59,24.03,23.490000000000002,23.240000000000002,23.01,22.8,22.59,22.39,22.2,21.82,N/A,N/A +2013,10,11,17,30,93980,92900,91860,47.550000000000004,0,0.6900000000000001,0.76,0.76,0.76,0.76,0.76,0.76,0.77,0.78,273.25,275.69,277.25,278.79,280.17,281.5,282.85,284.12,286.49,25.92,25.39,25.12,24.87,24.650000000000002,24.44,24.23,24.04,23.64,N/A,N/A +2013,10,11,18,30,93940,92870,91830,27.61,0,2.18,2.5300000000000002,2.6,2.62,2.62,2.62,2.62,2.61,2.59,298.79,299.36,299.75,300.19,300.57,300.92,301.24,301.53000000000003,302.11,27.79,27.18,26.91,26.66,26.44,26.23,26.02,25.82,25.42,N/A,N/A +2013,10,11,19,30,93910,92840,91800,24.66,0,1.94,2.23,2.29,2.3000000000000003,2.31,2.3000000000000003,2.29,2.2800000000000002,2.2600000000000002,311.93,311.16,310.71,310.33,309.99,309.66,309.32,309,308.34000000000003,28.69,28.09,27.82,27.57,27.34,27.12,26.91,26.71,26.3,N/A,N/A +2013,10,11,20,30,93860,92790,91760,20.97,0,0.5700000000000001,0.72,0.79,0.85,0.9,0.9500000000000001,0.99,1.03,1.11,290.21,290.59000000000003,290.88,291.14,291.33,291.49,291.61,291.71,291.79,29.57,29.02,28.76,28.51,28.29,28.07,27.86,27.650000000000002,27.25,N/A,N/A +2013,10,11,21,30,93800,92740,91710,17.81,0,0.26,0.24,0.22,0.19,0.17,0.15,0.13,0.11,0.09,132.64000000000001,134.99,136.65,138.96,142.29,146.06,152.70000000000002,158.96,183.37,30.27,29.740000000000002,29.5,29.26,29.04,28.830000000000002,28.62,28.42,28.01,N/A,N/A +2013,10,11,22,30,93770,92710,91690,17.04,0,1.34,1.45,1.44,1.4000000000000001,1.36,1.32,1.29,1.25,1.18,188.17000000000002,189.26,190,190.83,191.57,192.3,193.06,193.77,195.28,30.5,30.01,29.79,29.560000000000002,29.34,29.14,28.93,28.73,28.330000000000002,N/A,N/A +2013,10,11,23,30,93770,92710,91680,17.09,0,1.62,1.8,1.81,1.79,1.78,1.76,1.73,1.71,1.67,136.97,142.03,145.05,147.14000000000001,148.87,150.43,151.8,153.02,155.27,30.19,29.85,29.67,29.47,29.28,29.09,28.900000000000002,28.71,28.330000000000002,N/A,N/A +2013,10,12,0,30,93780,92720,91690,20.23,0,0.79,1.1,1.02,0.9400000000000001,0.89,0.86,0.85,0.86,0.93,113.73,123.59,130.23,138.51,144.84,150.33,154.3,157.37,160.28,28.62,29.38,29.490000000000002,29.47,29.41,29.27,29.1,28.92,28.54,N/A,N/A +2013,10,12,1,30,93790,92720,91690,34.300000000000004,0,2.33,3.89,4.19,4.43,4.59,4.7,4.7700000000000005,4.82,4.87,127.45,128.05,128.59,128.99,129.65,130.61,132.05,133.63,137.64000000000001,27.37,27.87,27.93,27.900000000000002,27.82,27.7,27.55,27.39,27.05,N/A,N/A +2013,10,12,2,30,93830,92760,91720,47.67,0,3.48,5.6000000000000005,6.5200000000000005,7.3500000000000005,8.03,8.61,9.06,9.43,9.75,145.18,144.71,144.35,143.76,143.49,143.57,143.93,144.43,145.94,26.42,26.54,26.54,26.490000000000002,26.41,26.310000000000002,26.2,26.07,25.79,N/A,N/A +2013,10,12,3,30,93860,92790,91750,55.300000000000004,0,4.62,6.86,7.7700000000000005,8.55,9.19,9.74,10.17,10.53,10.950000000000001,150.86,152.07,152.69,152.8,152.78,152.63,152.51,152.41,152.51,25.75,25.69,25.61,25.5,25.38,25.25,25.12,24.990000000000002,24.740000000000002,N/A,N/A +2013,10,12,4,30,93890,92810,91770,61.58,0,4.54,6.76,7.72,8.540000000000001,9.21,9.78,10.26,10.67,11.200000000000001,152.03,153.6,154.55,154.96,155.18,155.22,155.24,155.25,155.44,25.29,25.22,25.150000000000002,25.04,24.94,24.830000000000002,24.71,24.59,24.35,N/A,N/A +2013,10,12,5,30,93910,92830,91790,64.87,0,3.45,5.65,6.62,7.49,8.23,8.88,9.44,9.92,10.56,143.91,147.76,150.25,151.76,152.92000000000002,153.8,154.55,155.24,156.67000000000002,24.54,24.6,24.57,24.53,24.48,24.43,24.37,24.32,24.2,N/A,N/A +2013,10,12,6,30,93960,92880,91840,71.56,0,1.84,4.1,5.17,6.21,7.140000000000001,7.96,8.69,9.35,10.35,133.74,143.09,149.53,152.58,154.94,156.64000000000001,158.06,159.32,161.3,23.42,23.740000000000002,23.75,23.75,23.75,23.75,23.75,23.740000000000002,23.72,N/A,N/A +2013,10,12,7,30,94010,92930,91880,73.27,0,1.77,3.73,4.55,5.38,6.140000000000001,6.86,7.55,8.22,9.370000000000001,128.33,137.95000000000002,144.37,148.01,151.08,153.74,156.20000000000002,158.54,162.25,22.84,23.150000000000002,23.150000000000002,23.13,23.12,23.11,23.1,23.09,23.06,N/A,N/A +2013,10,12,8,30,94030,92940,91890,77.32000000000001,0,1.62,3.2800000000000002,3.93,4.6000000000000005,5.22,5.83,6.43,7.01,8.01,133.89000000000001,139.35,143.19,145.69,148.20000000000002,150.81,153.53,156.23,160.5,22.22,22.55,22.56,22.56,22.56,22.580000000000002,22.61,22.650000000000002,22.7,N/A,N/A +2013,10,12,9,30,94050,92960,91910,80.35000000000001,0,1.1,2.5500000000000003,3.27,3.96,4.62,5.25,5.84,6.4,7.2700000000000005,107.88,120,127.96000000000001,131.43,134.53,137.34,140.38,143.4,149.12,21.45,21.78,21.8,21.79,21.79,21.77,21.78,21.79,21.830000000000002,N/A,N/A +2013,10,12,10,30,94070,92980,91930,83.25,0,0.37,1.28,2.05,2.95,3.8200000000000003,4.63,5.43,6.21,7.140000000000001,65.2,100.59,127.87,133.3,137.57,140.56,143.71,146.91,150.78,20.86,21.14,21.14,21.18,21.25,21.32,21.44,21.57,21.71,N/A,N/A +2013,10,12,11,30,94110,93020,91970,87.61,0,0.52,1.3800000000000001,1.93,2.49,3.0500000000000003,3.59,4.11,4.62,5.55,100.97,117.15,128.81,133.33,137.36,140.99,144.32,147.52,152.82,20.35,20.830000000000002,20.900000000000002,21.01,21.12,21.23,21.34,21.44,21.64,N/A,N/A +2013,10,12,12,30,94160,93070,92010,91.88,0,0.63,1.62,2.23,2.98,3.74,4.5200000000000005,5.23,5.91,7.04,64.3,89.68,107.47,116.10000000000001,122.39,126.7,130.44,133.99,139.83,19.82,20.42,20.490000000000002,20.45,20.400000000000002,20.34,20.3,20.26,20.22,N/A,N/A +2013,10,12,13,30,94200,93100,92040,95.31,0,1.21,1.6300000000000001,1.72,2.2,2.74,3.34,3.97,4.61,5.76,32.76,64.05,81.02,97.67,109.24000000000001,117.14,123.41,129.31,139.03,19.48,19.73,19.71,19.650000000000002,19.59,19.55,19.56,19.580000000000002,19.7,N/A,N/A +2013,10,12,14,30,94250,93160,92100,86.25,0,1.1300000000000001,1.46,1.6,1.71,1.81,1.93,2.11,2.3000000000000003,3.38,100.36,103.38,105.39,107.41,109.32000000000001,111.22,113.9,116.74000000000001,131.5,21.21,20.82,20.64,20.46,20.29,20.13,19.97,19.82,19.66,N/A,N/A +2013,10,12,15,30,94280,93190,92130,85.33,0,3.0700000000000003,3.63,3.75,3.77,3.7600000000000002,3.73,3.68,3.63,3.5,113.43,113.85000000000001,114.10000000000001,114.25,114.39,114.51,114.66,114.81,115.35000000000001,21.8,21.240000000000002,21,20.79,20.6,20.41,20.22,20.04,19.68,N/A,N/A +2013,10,12,16,30,94290,93200,92150,78.55,0,2.57,3.13,3.31,3.41,3.47,3.5100000000000002,3.54,3.56,3.59,109.38,110.81,111.68,112.31,112.82000000000001,113.26,113.67,114.04,114.8,23.06,22.5,22.26,22.04,21.830000000000002,21.63,21.43,21.25,20.87,N/A,N/A +2013,10,12,17,30,94250,93170,92120,66.27,0,2.69,3.29,3.49,3.59,3.66,3.7,3.74,3.7600000000000002,3.8000000000000003,131.64000000000001,132.46,132.93,133.28,133.56,133.82,134.05,134.27,134.7,25.32,24.68,24.400000000000002,24.150000000000002,23.92,23.71,23.5,23.31,22.91,N/A,N/A +2013,10,12,18,30,94230,93150,92110,59.74,0,3.84,4.65,4.9,5.01,5.08,5.11,5.14,5.15,5.15,134.83,135.38,135.7,135.91,136.07,136.21,136.35,136.47,136.70000000000002,26.490000000000002,25.77,25.48,25.22,24.990000000000002,24.77,24.55,24.35,23.95,N/A,N/A +2013,10,12,19,30,94190,93120,92080,53.22,0,3.66,4.46,4.71,4.82,4.91,4.96,4.99,5.0200000000000005,5.04,134.81,135.16,135.38,135.53,135.63,135.72,135.8,135.88,135.99,27.72,27.02,26.73,26.47,26.240000000000002,26.01,25.8,25.59,25.19,N/A,N/A +2013,10,12,20,30,94140,93080,92040,47.21,0,3.79,4.63,4.9,5.03,5.13,5.19,5.25,5.28,5.34,130.91,131.85,132.37,132.72,133,133.24,133.44,133.63,133.96,28.76,28.07,27.78,27.52,27.29,27.07,26.85,26.650000000000002,26.240000000000002,N/A,N/A +2013,10,12,21,30,94090,93030,92000,44.08,0,3.88,4.7700000000000005,5.07,5.22,5.33,5.41,5.47,5.51,5.58,131.54,132.32,132.83,133.18,133.47,133.71,133.92000000000002,134.1,134.43,29.490000000000002,28.82,28.55,28.3,28.07,27.85,27.64,27.43,27.02,N/A,N/A +2013,10,12,22,30,94030,92960,91940,43.33,0,4.2700000000000005,5.37,5.71,5.91,6.04,6.140000000000001,6.22,6.28,6.37,140.9,141.38,141.6,141.73,141.82,141.89000000000001,141.94,141.98,142.05,29.54,29.03,28.810000000000002,28.580000000000002,28.37,28.16,27.95,27.75,27.35,N/A,N/A +2013,10,12,23,30,94050,92990,91960,46.230000000000004,0,3.89,5.0200000000000005,5.3500000000000005,5.54,5.68,5.78,5.86,5.92,6,151.65,151.63,151.47,151.28,151.11,150.95000000000002,150.79,150.64000000000001,150.36,29.150000000000002,28.82,28.64,28.44,28.240000000000002,28.05,27.85,27.66,27.27,N/A,N/A +2013,10,13,0,30,94140,93080,92050,46.69,0,3.08,4.23,4.68,5.03,5.32,5.57,5.7700000000000005,5.94,6.18,149.23,148.46,148.23,147.85,147.48,147.11,146.77,146.45000000000002,145.95000000000002,28.77,28.51,28.35,28.150000000000002,27.96,27.75,27.54,27.34,26.92,N/A,N/A +2013,10,13,1,30,94370,93290,92230,89.62,34.800000000000004,4.66,5.3,5.12,3.77,2.96,2.2800000000000002,2.2,2.31,2.9,35.57,29.5,25.66,20.77,19.09,27.19,34.83,42.53,45.25,20.240000000000002,21.32,22.02,22.82,23.37,23.19,22.98,22.78,22.66,N/A,N/A +2013,10,13,2,30,94250,93160,92100,80.52,0,1.46,1.98,2.31,2.8000000000000003,3.25,3.69,4.03,4.32,4.68,35.45,42.79,48.76,54.11,58.870000000000005,63.21,67.06,70.60000000000001,77.39,22.3,21.990000000000002,21.830000000000002,21.68,21.57,21.5,21.47,21.46,21.47,N/A,N/A +2013,10,13,3,30,94350,93260,92200,81.43,0,3.09,3.84,4.0600000000000005,4.2,4.32,4.43,4.5600000000000005,4.69,5.09,60.28,61.53,62.39,63.120000000000005,63.78,64.39,64.99,65.55,67.07000000000001,21.02,20.69,20.52,20.32,20.13,19.95,19.75,19.57,19.19,N/A,N/A +2013,10,13,4,30,94320,93230,92160,78.27,0,2.47,3.21,3.5,3.8200000000000003,4.17,4.5600000000000005,5.1000000000000005,5.66,6.94,96.13,94,92.47,90.79,89.07000000000001,87.29,85.77,84.39,84.33,21.62,21.32,21.150000000000002,20.96,20.77,20.580000000000002,20.38,20.19,19.98,N/A,N/A +2013,10,13,5,30,94380,93280,92220,80.36,0,1.71,2.38,2.73,3.11,3.54,4.03,4.67,5.37,6.63,113.62,110.38,108.02,105.29,102.68,100.02,98.14,96.46000000000001,96.62,21.28,20.95,20.77,20.56,20.36,20.16,19.95,19.76,19.52,N/A,N/A +2013,10,13,6,30,94370,93280,92220,81.69,0,1.71,2.73,3.2800000000000002,3.69,4.1,4.5200000000000005,4.98,5.45,6.51,135.34,127.10000000000001,121.83,118.21000000000001,114.65,111.09,108.53,106.33,104.81,21.240000000000002,21.03,20.93,20.84,20.75,20.66,20.580000000000002,20.51,20.490000000000002,N/A,N/A +2013,10,13,7,30,94340,93250,92190,80.3,0,4.55,6.46,7.15,7.74,8.26,8.73,9.19,9.61,10.38,123.38000000000001,122.97,122.46000000000001,121.56,120.72,119.92,119.33,118.84,118.57000000000001,21.41,21.240000000000002,21.11,20.96,20.79,20.64,20.48,20.330000000000002,20.04,N/A,N/A +2013,10,13,8,30,94380,93280,92220,78.41,0,5.8100000000000005,8.13,8.98,9.67,10.26,10.78,11.26,11.700000000000001,12.49,117.15,117.31,117.37,117.37,117.42,117.51,117.74000000000001,117.99000000000001,118.83,21.29,21.11,20.97,20.82,20.66,20.51,20.35,20.21,19.95,N/A,N/A +2013,10,13,9,30,94390,93300,92240,81.35000000000001,0,4.11,6.03,6.73,7.3100000000000005,7.79,8.19,8.53,8.83,9.34,118.02,118.04,118.05,117.97,118.01,118.10000000000001,118.47,118.88,120.46000000000001,21.47,21.3,21.17,21.01,20.85,20.68,20.51,20.35,20.02,N/A,N/A +2013,10,13,10,30,94400,93310,92250,82.72,0,4.05,5.99,6.7700000000000005,7.46,8.06,8.61,9.11,9.57,10.39,124.81,122.79,121.38,119.94,118.89,118.10000000000001,117.88,117.83,119.21000000000001,21.06,20.94,20.85,20.740000000000002,20.63,20.53,20.42,20.330000000000002,20.18,N/A,N/A +2013,10,13,11,30,94470,93370,92310,86.44,0,2.16,3.69,4.4,5.0600000000000005,5.66,6.21,6.73,7.22,8.120000000000001,126.24000000000001,122.74000000000001,120.4,118.56,117.24000000000001,116.26,115.84,115.58,116.34,20.69,20.54,20.41,20.26,20.11,19.96,19.8,19.66,19.36,N/A,N/A +2013,10,13,12,30,94510,93420,92350,86.96000000000001,0,0.6,1.86,3.02,3.67,4.2700000000000005,4.84,5.39,5.91,6.88,64.19,89.47,110.19,111.46000000000001,112.4,113.11,113.83,114.54,116.18,20.6,20.39,20.27,20.1,19.94,19.77,19.6,19.44,19.1,N/A,N/A +2013,10,13,13,30,94520,93420,92360,89.58,0,0.41000000000000003,1.36,2.13,3,3.7800000000000002,4.47,5.08,5.67,6.68,30.52,73.75,103.63,105.94,107.2,107.55,108.04,108.56,110.67,20.54,20.29,20.150000000000002,20,19.85,19.7,19.54,19.39,19.07,N/A,N/A +2013,10,13,14,30,94530,93440,92370,86.05,0,3.34,4.33,4.7,4.97,5.22,5.44,5.71,5.98,6.84,113.17,114.52,115.45,116.22,117.05,117.93,118.97,120,123.33,21.25,20.900000000000002,20.72,20.53,20.34,20.16,19.98,19.8,19.45,N/A,N/A +2013,10,13,15,30,94550,93460,92400,82.05,0,4.13,5.21,5.57,5.7700000000000005,5.91,6.01,6.08,6.140000000000001,6.22,118.53,119.74000000000001,120.51,121.10000000000001,121.59,122.03,122.48,122.9,123.87,22.29,21.85,21.650000000000002,21.43,21.23,21.04,20.84,20.650000000000002,20.27,N/A,N/A +2013,10,13,16,30,94530,93440,92390,77.37,0,4.51,5.7,6.07,6.28,6.43,6.53,6.6000000000000005,6.66,6.74,121.73,122.78,123.36,123.8,124.18,124.51,124.83,125.13000000000001,125.76,23.38,22.88,22.67,22.45,22.240000000000002,22.04,21.84,21.650000000000002,21.26,N/A,N/A +2013,10,13,17,30,94510,93420,92370,72.47,0,5.08,6.4,6.84,7.09,7.26,7.390000000000001,7.48,7.5600000000000005,7.67,130.75,131.42000000000002,131.87,132.17000000000002,132.41,132.61,132.81,132.99,133.34,24.38,23.8,23.56,23.330000000000002,23.12,22.91,22.71,22.51,22.12,N/A,N/A +2013,10,13,18,30,94440,93360,92310,56.84,0,6.63,8.38,8.93,9.23,9.450000000000001,9.61,9.73,9.82,9.96,143.55,143.83,143.99,144.07,144.14000000000001,144.20000000000002,144.25,144.29,144.39000000000001,26.34,25.66,25.400000000000002,25.150000000000002,24.93,24.71,24.490000000000002,24.29,23.89,N/A,N/A +2013,10,13,19,30,94370,93300,92250,50.08,0,7.09,8.94,9.52,9.85,10.08,10.25,10.38,10.48,10.63,144.5,144.86,145.06,145.20000000000002,145.31,145.4,145.49,145.57,145.72,27.29,26.6,26.34,26.080000000000002,25.85,25.63,25.41,25.21,24.8,N/A,N/A +2013,10,13,20,30,94290,93220,92180,45.050000000000004,0,7.54,9.540000000000001,10.16,10.51,10.77,10.950000000000001,11.09,11.200000000000001,11.370000000000001,145.59,145.95000000000002,146.14000000000001,146.29,146.41,146.52,146.62,146.72,146.9,28.03,27.36,27.1,26.85,26.62,26.400000000000002,26.18,25.98,25.57,N/A,N/A +2013,10,13,21,30,94250,93180,92140,44.33,0,7.61,9.67,10.290000000000001,10.67,10.94,11.14,11.3,11.42,11.61,147.59,147.65,147.68,147.69,147.72,147.74,147.77,147.79,147.85,28.18,27.57,27.34,27.1,26.87,26.66,26.44,26.240000000000002,25.830000000000002,N/A,N/A +2013,10,13,22,30,94270,93200,92160,45.87,0,7.26,9.25,9.84,10.18,10.43,10.61,10.74,10.85,11,149.43,149.47,149.44,149.36,149.29,149.20000000000002,149.12,149.04,148.87,27.93,27.42,27.21,26.98,26.77,26.560000000000002,26.35,26.16,25.76,N/A,N/A +2013,10,13,23,30,94250,93180,92140,49.96,0,7.08,9.200000000000001,9.81,10.21,10.51,10.74,10.92,11.07,11.290000000000001,139.5,139.86,140.1,140.31,140.51,140.70000000000002,140.88,141.06,141.41,27.51,27.17,26.990000000000002,26.78,26.59,26.39,26.19,26,25.61,N/A,N/A +2013,10,14,0,30,94330,93260,92220,55.02,0,1.21,2.63,3.17,3.67,4.11,4.5,4.86,5.19,5.7700000000000005,184.21,175.03,169.24,166.42000000000002,164.68,163.66,163.1,162.68,162.23,26.66,26.62,26.51,26.37,26.21,26.05,25.87,25.71,25.34,N/A,N/A +2013,10,14,1,30,94450,93350,92290,87.67,12.8,6.3,8.19,8.91,9.56,10.120000000000001,10.63,11.01,11.33,11.52,336.17,335.79,335.58,335.38,335.1,334.75,334.44,334.16,333.37,20.5,20.19,20.05,19.89,19.740000000000002,19.61,19.44,19.28,19.080000000000002,N/A,N/A +2013,10,14,2,30,94530,93430,92370,89.91,7.300000000000001,4.09,5.22,5.68,6.13,6.53,6.88,6.99,7.03,6.76,2.12,2.41,2.7,3.16,3.47,3.69,4.53,5.45,8.88,20.45,20.150000000000002,20.01,19.87,19.71,19.56,19.44,19.32,19.22,N/A,N/A +2013,10,14,3,30,94540,93440,92370,95.01,16.5,4.33,5.29,5.58,5.86,5.95,5.9,5.58,5.26,5,37.9,38.99,40.06,42.02,43.64,45.01,46.94,48.620000000000005,47.34,19.81,19.54,19.43,19.32,19.19,19.03,18.97,18.93,18.580000000000002,N/A,N/A +2013,10,14,4,30,94490,93390,92330,94.48,27.5,3.89,4.9,5.25,5.62,5.96,6.2700000000000005,6.51,6.7,6.83,37.29,40.7,43.75,47.730000000000004,52.76,58.02,62.83,67.11,73.7,19.900000000000002,19.64,19.51,19.37,19.31,19.27,19.25,19.240000000000002,19.14,N/A,N/A +2013,10,14,5,30,94500,93400,92330,92.87,5.5,2.3000000000000003,2.9,3.18,3.56,3.96,4.36,4.75,5.11,5.53,101.72,100.28,98.68,96.53,95.4,94.84,95.55,96.55,100.71000000000001,20.240000000000002,19.95,19.81,19.67,19.53,19.400000000000002,19.31,19.240000000000002,19.12,N/A,N/A +2013,10,14,6,30,94490,93390,92330,92.37,1.8,2.38,3.09,3.38,3.71,4.24,4.94,5.38,5.74,6.48,87.09,86.9,86.88,87.18,88.35000000000001,90.18,92.31,94.36,98.09,20.51,20.23,20.07,19.91,19.76,19.63,19.48,19.34,19.1,N/A,N/A +2013,10,14,7,30,94470,93370,92300,87.02,0,4.2700000000000005,6.38,7.32,7.88,8.39,8.870000000000001,9.38,9.86,10.49,78.66,79.22,79.8,80.12,80.34,80.5,80.88,81.33,84.21000000000001,19.85,19.6,19.44,19.26,19.080000000000002,18.93,18.830000000000002,18.76,18.89,N/A,N/A +2013,10,14,8,30,94480,93380,92310,88.53,1.8,2.69,3.36,3.58,3.71,3.79,3.84,3.74,3.63,3.67,19.85,20.900000000000002,22.06,23.7,26.34,29.490000000000002,36.15,42.72,56.300000000000004,19.29,19,18.84,18.67,18.5,18.35,18.240000000000002,18.14,17.95,N/A,N/A +2013,10,14,9,30,94450,93340,92270,89.79,0,2.45,2.89,2.97,3.02,3.02,2.98,2.84,2.7,2.36,323.17,324.82,326.56,329,332.23,335.63,339.45,342.97,351.06,19.29,18.98,18.82,18.650000000000002,18.5,18.37,18.23,18.1,17.85,N/A,N/A +2013,10,14,10,30,94400,93300,92230,92.68,0,0.81,1.16,1.43,1.86,2.16,2.35,2.31,2.21,1.78,89.4,74.64,65.59,55.52,49.58,46.42,46.68,47.69,54.04,19.39,19.11,18.98,18.86,18.78,18.72,18.68,18.63,18.48,N/A,N/A +2013,10,14,11,30,94370,93270,92200,91.87,0,1.74,2.44,2.7800000000000002,3.15,3.42,3.64,3.65,3.61,3.4,146.92000000000002,138.15,132.31,127.12,124.42,123.19,125.94,129.27,141.42000000000002,19.72,19.52,19.48,19.51,19.48,19.44,19.37,19.32,19.34,N/A,N/A +2013,10,14,12,30,94360,93270,92200,90.54,0,2.25,3.23,3.65,3.99,4.22,4.39,4.51,4.61,4.86,146.46,146.84,146.78,146.31,147.99,151.07,156.33,161.64000000000001,170.16,20.13,19.94,19.87,19.81,19.8,19.81,19.830000000000002,19.84,19.72,N/A,N/A +2013,10,14,13,30,94340,93240,92180,95,0,1.03,2.17,2.64,3.0500000000000003,3.43,3.8200000000000003,4.24,4.66,5.78,150.92000000000002,155.38,158.74,161.89000000000001,165.09,168.39000000000001,171.55,174.6,182.03,19.91,19.92,19.86,19.78,19.72,19.66,19.61,19.57,19.59,N/A,N/A +2013,10,14,14,30,94310,93220,92150,89.34,0,2.67,3.37,3.62,3.84,4.09,4.38,4.91,5.51,6.63,159.42000000000002,162.36,164.45000000000002,166.73,168.99,171.23,173.96,176.78,181.91,20.97,20.63,20.47,20.3,20.14,20,19.88,19.77,19.66,N/A,N/A +2013,10,14,15,30,94310,93220,92170,82.67,0,6.09,7.8,8.3,8.620000000000001,8.84,9,9.13,9.23,9.42,183.44,183.33,183.28,183.27,183.29,183.31,183.36,183.42000000000002,183.61,22.23,21.830000000000002,21.62,21.41,21.21,21.02,20.82,20.650000000000002,20.28,N/A,N/A +2013,10,14,16,30,94290,93210,92150,74.57000000000001,0,4.83,6.12,6.53,6.78,6.96,7.09,7.18,7.26,7.37,196.62,196.56,196.52,196.54,196.58,196.63,196.69,196.75,196.88,23.7,23.12,22.89,22.66,22.45,22.25,22.04,21.86,21.46,N/A,N/A +2013,10,14,17,30,94260,93180,92130,77.22,0,5.71,7,7.36,7.51,7.59,7.62,7.62,7.61,7.54,171.55,172.18,172.71,173.22,173.70000000000002,174.17000000000002,174.65,175.12,176.12,24.12,23.46,23.21,22.96,22.75,22.54,22.330000000000002,22.150000000000002,21.76,N/A,N/A +2013,10,14,18,30,94220,93140,92090,68.99,0,5.53,6.82,7.22,7.41,7.54,7.61,7.66,7.69,7.7,171.09,171.92000000000002,172.44,172.88,173.27,173.63,173.98,174.31,174.96,25.01,24.330000000000002,24.07,23.82,23.6,23.38,23.17,22.97,22.580000000000002,N/A,N/A +2013,10,14,19,30,94170,93100,92060,66.49,0,5.22,6.46,6.87,7.07,7.21,7.3,7.36,7.41,7.46,173.41,174.03,174.41,174.74,175.03,175.31,175.58,175.84,176.35,25.92,25.25,24.98,24.73,24.5,24.29,24.080000000000002,23.88,23.48,N/A,N/A +2013,10,14,20,30,94070,93000,91960,61.35,0,5.84,7.24,7.67,7.890000000000001,8.040000000000001,8.13,8.2,8.24,8.290000000000001,172.27,172.33,172.37,172.43,172.49,172.55,172.61,172.67000000000002,172.79,26.560000000000002,25.900000000000002,25.64,25.39,25.16,24.95,24.73,24.53,24.13,N/A,N/A +2013,10,14,21,30,94020,92950,91910,59.45,0,5.42,6.72,7.13,7.33,7.46,7.55,7.61,7.640000000000001,7.68,166.24,166.48,166.66,166.81,166.92000000000002,167.02,167.11,167.20000000000002,167.38,26.62,26.04,25.810000000000002,25.57,25.35,25.14,24.93,24.73,24.330000000000002,N/A,N/A +2013,10,14,22,30,93910,92840,91800,61.300000000000004,0,7.12,8.96,9.47,9.75,9.94,10.07,10.15,10.21,10.28,162.05,162.37,162.56,162.70000000000002,162.8,162.88,162.95000000000002,163.01,163.12,26.47,25.98,25.77,25.54,25.330000000000002,25.13,24.93,24.73,24.330000000000002,N/A,N/A +2013,10,14,23,30,94110,93020,91960,89.42,3.7,6.15,7.71,8.09,8.39,8.53,8.620000000000001,8.89,9.11,9.39,288.79,287.72,287.24,286.23,285.35,284.58,282.7,281.13,279.3,22.05,21.8,21.72,21.67,21.53,21.39,21.47,21.5,21.36,N/A,N/A +2013,10,15,0,30,94220,93130,92060,89.61,14.600000000000001,4.22,5.28,5.62,5.87,6.11,6.33,6.61,6.9,7.28,191.79,192.76,193.3,193.95000000000002,194.78,195.78,197.17000000000002,198.62,201.39000000000001,20.18,19.92,19.79,19.63,19.48,19.330000000000002,19.28,19.26,19.2,N/A,N/A +2013,10,15,1,30,94080,92990,91940,87.53,1.8,2.33,2.91,3.13,3.4,3.66,3.9,4.11,4.3100000000000005,4.68,143.28,154.46,162.88,173.23,181.01,187.19,192.16,196.49,201.33,21.17,21.03,21.03,21.12,21.22,21.32,21.37,21.39,21.36,N/A,N/A +2013,10,15,2,30,94100,93010,91950,87.01,0,2.2600000000000002,3.24,3.72,4.16,4.48,4.7,4.86,4.98,5.19,145.64000000000001,152.28,157.13,161.75,165.89000000000001,169.67000000000002,173.31,176.65,182.77,21.02,20.97,21,21.07,21.150000000000002,21.25,21.35,21.43,21.55,N/A,N/A +2013,10,15,3,30,94130,93050,91990,82.19,0,2.74,4.16,4.8,5.39,5.88,6.32,6.74,7.12,7.82,155.9,159.26,161.49,162.99,164.19,165.14000000000001,165.99,166.77,168.12,22.01,21.84,21.73,21.59,21.46,21.330000000000002,21.21,21.09,20.85,N/A,N/A +2013,10,15,4,30,94160,93070,92010,84.79,0,1.28,2.2600000000000002,2.83,3.42,3.96,4.47,4.95,5.4,6.23,129.96,143.67000000000002,153.54,158.70000000000002,162.61,165.38,167.56,169.46,172.43,21.94,21.77,21.650000000000002,21.52,21.39,21.27,21.150000000000002,21.03,20.82,N/A,N/A +2013,10,15,5,30,94190,93100,92050,87.58,0,1.1,1.85,2.2800000000000002,2.69,3.0700000000000003,3.42,3.7600000000000002,4.08,4.71,177.76,180.83,182.85,184.09,185.19,186.19,187.14000000000001,188.04,189.70000000000002,21.62,21.41,21.28,21.14,20.990000000000002,20.85,20.71,20.57,20.3,N/A,N/A +2013,10,15,6,30,94210,93120,92060,91.08,0,1.97,2.73,3.06,3.38,3.67,3.97,4.28,4.6000000000000005,5.2700000000000005,137.04,143.75,148.51,153.32,157.62,161.66,165.23,168.53,173.57,21.240000000000002,21.01,20.89,20.740000000000002,20.6,20.47,20.34,20.22,19.98,N/A,N/A +2013,10,15,7,30,94230,93140,92080,89.92,0,2.95,4.19,4.73,5.17,5.55,5.88,6.18,6.46,6.98,180.33,181.03,181.56,182.19,182.8,183.43,184.07,184.68,185.87,21.46,21.26,21.14,21,20.87,20.740000000000002,20.61,20.5,20.26,N/A,N/A +2013,10,15,8,30,94220,93130,92070,89.04,1.8,5.37,7.15,7.74,8.2,8.57,8.89,9.19,9.450000000000001,9.99,172.66,172.79,172.9,173.14000000000001,173.45000000000002,173.81,174.29,174.78,176.07,21.3,21.1,20.97,20.81,20.66,20.51,20.36,20.22,19.95,N/A,N/A +2013,10,15,9,30,94170,93080,92020,89.34,0,5.66,7.47,8.040000000000001,8.43,8.73,8.950000000000001,9.08,9.19,8.99,167.93,168.55,169.05,169.65,170.4,171.25,172.49,173.71,178.3,20.91,20.73,20.61,20.490000000000002,20.39,20.32,20.29,20.27,20.45,N/A,N/A +2013,10,15,10,30,94170,93080,92020,89.5,0,4.97,6.68,7.2700000000000005,7.73,8.1,8.41,8.67,8.89,9.14,175.64000000000001,175.88,176.07,176.36,176.69,177.07,177.51,177.93,178.87,20.77,20.6,20.490000000000002,20.37,20.27,20.17,20.12,20.07,20.09,N/A,N/A +2013,10,15,11,30,94160,93070,92010,88.81,0,3.9,5.44,5.99,6.47,6.8500000000000005,7.17,7.43,7.66,7.97,169.95000000000002,171.70000000000002,172.91,174.16,175.39000000000001,176.61,177.96,179.24,181.98,20.75,20.59,20.5,20.400000000000002,20.32,20.26,20.23,20.2,20.240000000000002,N/A,N/A +2013,10,15,12,30,94170,93080,92010,90.26,0,3.0300000000000002,4.34,4.8500000000000005,5.2700000000000005,5.62,5.9,6.12,6.3100000000000005,6.45,171.29,173.32,174.68,175.95000000000002,177.20000000000002,178.42000000000002,179.88,181.3,185.24,20.43,20.240000000000002,20.11,19.97,19.85,19.73,19.63,19.55,19.46,N/A,N/A +2013,10,15,13,30,94160,93070,92010,91.67,0,1.73,2.8000000000000003,3.27,3.69,4.04,4.3500000000000005,4.61,4.86,5.3,183.41,186.12,188.06,189.84,191.5,193.04,194.71,196.32,199.96,20.34,20.150000000000002,20.02,19.87,19.73,19.59,19.45,19.330000000000002,19.13,N/A,N/A +2013,10,15,14,30,94160,93070,92010,90.55,0,2.68,3.6,3.98,4.26,4.5,4.69,4.98,5.29,5.98,189.8,191.28,192.24,193.12,193.96,194.79,195.64000000000001,196.46,198.61,20.61,20.32,20.16,19.98,19.8,19.61,19.44,19.28,19.04,N/A,N/A +2013,10,15,15,30,94190,93090,92030,84.71000000000001,0,3.15,3.97,4.26,4.44,4.57,4.67,4.75,4.82,4.98,203.54,203.39000000000001,203.21,203.25,203.35,203.5,203.70000000000002,203.9,204.41,21.25,20.87,20.68,20.48,20.29,20.1,19.91,19.740000000000002,19.37,N/A,N/A +2013,10,15,16,30,94260,93170,92100,87.49,1.8,3.89,4.93,5.2700000000000005,5.48,5.65,5.7700000000000005,5.88,5.98,6.17,231.25,230.34,229.70000000000002,229.15,228.68,228.25,227.8,227.38,226.45000000000002,20.740000000000002,20.42,20.25,20.05,19.87,19.68,19.490000000000002,19.31,18.94,N/A,N/A +2013,10,15,17,30,94180,93090,92030,75.95,0,1.95,2.42,2.59,2.69,2.7600000000000002,2.81,2.86,2.89,2.95,215.32,213.59,212.87,212.34,211.91,211.53,211.19,210.89000000000001,210.35,21.66,21.18,20.96,20.740000000000002,20.53,20.34,20.14,19.95,19.56,N/A,N/A +2013,10,15,18,30,94140,93050,91990,68.64,0,2.07,2.47,2.58,2.63,2.66,2.68,2.69,2.69,2.7,209.23000000000002,209.91,210.39000000000001,210.9,211.4,211.89000000000001,212.42000000000002,212.93,214.02,22.8,22.25,22.01,21.77,21.56,21.36,21.16,20.97,20.580000000000002,N/A,N/A +2013,10,15,19,30,94110,93030,91980,63.660000000000004,0,1.6,1.9000000000000001,1.99,2.0300000000000002,2.06,2.08,2.09,2.1,2.11,201.05,202.47,203.44,204.3,205.09,205.86,206.6,207.29,208.71,24.05,23.5,23.25,23.02,22.8,22.59,22.38,22.19,21.79,N/A,N/A +2013,10,15,20,30,94140,93040,91980,88.29,1.8,3.41,4.07,4.22,4.2700000000000005,4.2700000000000005,4.24,4.18,4.12,3.99,179.11,179.71,179.96,180.44,181.07,181.77,182.77,183.75,187.11,21.13,20.78,20.6,20.41,20.23,20.06,19.88,19.72,19.400000000000002,N/A,N/A +2013,10,15,21,30,94220,93110,92020,87.36,1.8,6.57,8.28,8.77,9.07,9.290000000000001,9.46,9.6,9.74,10.07,27.810000000000002,27.7,27.86,28.01,28.1,28.16,28.17,28.18,28.11,16.66,16.28,16.09,15.9,15.72,15.540000000000001,15.370000000000001,15.21,14.89,N/A,N/A +2013,10,15,22,30,94280,93160,92080,88.23,1.8,4.8100000000000005,6.2,6.63,6.890000000000001,7.07,7.21,7.3100000000000005,7.390000000000001,7.54,28.87,28.93,28.86,28.88,28.88,28.89,28.86,28.810000000000002,28.64,15.5,15.11,14.92,14.72,14.530000000000001,14.35,14.16,13.98,13.620000000000001,N/A,N/A +2013,10,15,23,30,94280,93160,92070,83.85000000000001,0,5.14,6.58,7.0200000000000005,7.28,7.45,7.58,7.66,7.72,7.8,29.61,29.29,29.080000000000002,29.05,29.1,29.19,29.37,29.54,30.02,15.22,14.85,14.66,14.450000000000001,14.26,14.07,13.870000000000001,13.68,13.290000000000001,N/A,N/A +2013,10,16,0,30,94340,93210,92120,81.95,0,4.28,5.5200000000000005,5.93,6.19,6.37,6.5200000000000005,6.63,6.72,6.86,19.98,20.740000000000002,21.29,21.73,22.11,22.42,22.73,23.01,23.55,14.5,14.120000000000001,13.93,13.73,13.52,13.33,13.13,12.94,12.55,N/A,N/A +2013,10,16,1,30,94320,93190,92090,81.53,0,4.63,5.87,6.2700000000000005,6.53,6.7,6.84,6.92,6.99,7.1000000000000005,29.810000000000002,29.7,30.310000000000002,30.810000000000002,31.25,31.64,32.04,32.43,33.25,13.77,13.38,13.19,12.99,12.790000000000001,12.61,12.4,12.21,11.83,N/A,N/A +2013,10,16,2,30,94400,93270,92180,82.95,0,4.0600000000000005,5.19,5.5600000000000005,5.8,5.97,6.11,6.23,6.3500000000000005,6.59,28.86,28.64,28.490000000000002,28.37,28.23,28.09,27.92,27.740000000000002,27.32,13.44,13.09,12.9,12.71,12.51,12.33,12.13,11.950000000000001,11.58,N/A,N/A +2013,10,16,3,30,94430,93300,92200,82.63,0,4.25,5.5,5.92,6.19,6.38,6.54,6.66,6.7700000000000005,6.96,25.29,25.2,25.150000000000002,25.14,25.13,25.12,25.12,25.11,25.13,13.01,12.67,12.49,12.290000000000001,12.09,11.91,11.71,11.53,11.14,N/A,N/A +2013,10,16,4,30,94460,93330,92230,84.44,0,2.7600000000000002,3.56,3.85,4.0200000000000005,4.15,4.25,4.33,4.4,4.51,16.42,17.12,17.63,18.05,18.43,18.77,19.11,19.42,20.05,12.85,12.5,12.31,12.120000000000001,11.92,11.74,11.55,11.36,10.98,N/A,N/A +2013,10,16,5,30,94450,93320,92220,85.78,1.8,3.83,4.9,5.2700000000000005,5.51,5.68,5.8100000000000005,5.9,5.98,6.13,19.22,19.740000000000002,20.27,20.7,21.09,21.43,21.81,22.18,23.03,12.47,12.14,11.96,11.77,11.58,11.41,11.22,11.040000000000001,10.68,N/A,N/A +2013,10,16,6,30,94500,93360,92260,85.14,0,3.17,3.97,4.18,4.28,4.33,4.37,4.37,4.36,4.32,0.46,1.6400000000000001,2.31,2.96,3.63,4.24,4.96,5.65,7.19,12.370000000000001,12.02,11.83,11.64,11.44,11.26,11.07,10.88,10.51,N/A,N/A +2013,10,16,7,30,94510,93380,92270,84.06,0,3.29,4.2,4.48,4.66,4.79,4.88,4.96,5.03,5.15,17.79,17.64,17.57,17.56,17.57,17.59,17.62,17.66,17.76,12.200000000000001,11.85,11.67,11.48,11.28,11.1,10.9,10.71,10.33,N/A,N/A +2013,10,16,8,30,94520,93380,92280,83.52,0,4.01,5.14,5.48,5.69,5.8500000000000005,5.98,6.08,6.17,6.34,17.92,18.47,18.81,19.17,19.53,19.87,20.25,20.62,21.43,12.07,11.74,11.56,11.370000000000001,11.17,10.99,10.790000000000001,10.61,10.23,N/A,N/A +2013,10,16,9,30,94510,93380,92270,84,0,3.16,4.07,4.37,4.5600000000000005,4.69,4.8,4.89,4.97,5.1000000000000005,23.66,24.12,24.41,24.67,24.91,25.12,25.35,25.55,25.990000000000002,12.15,11.82,11.64,11.44,11.25,11.07,10.870000000000001,10.68,10.3,N/A,N/A +2013,10,16,10,30,94520,93380,92280,84.19,0,3.23,4.14,4.44,4.62,4.75,4.86,4.94,5.01,5.12,18.830000000000002,19.31,19.61,19.900000000000002,20.16,20.400000000000002,20.650000000000002,20.900000000000002,21.44,12.18,11.85,11.67,11.48,11.28,11.1,10.9,10.71,10.33,N/A,N/A +2013,10,16,11,30,94550,93410,92300,83.74,0,3.42,4.44,4.78,5,5.16,5.29,5.39,5.48,5.62,17.01,18.29,19.14,19.900000000000002,20.580000000000002,21.18,21.81,22.400000000000002,23.6,11.950000000000001,11.63,11.450000000000001,11.26,11.06,10.88,10.68,10.5,10.120000000000001,N/A,N/A +2013,10,16,12,30,94560,93420,92320,82.89,0,2.91,3.73,3.98,4.15,4.25,4.33,4.39,4.44,4.5,17.580000000000002,17.27,17.25,17.31,17.41,17.51,17.66,17.81,18.18,12.05,11.72,11.540000000000001,11.35,11.15,10.97,10.76,10.57,10.19,N/A,N/A +2013,10,16,13,30,94590,93450,92340,81,0,3.21,4.12,4.41,4.6000000000000005,4.73,4.84,4.93,5,5.11,24.42,23.57,23.150000000000002,22.76,22.36,21.97,21.57,21.18,20.400000000000002,11.86,11.540000000000001,11.36,11.17,10.97,10.790000000000001,10.59,10.4,10.01,N/A,N/A +2013,10,16,14,30,94610,93470,92370,79.7,0,3.34,4.21,4.46,4.62,4.72,4.79,4.83,4.87,4.93,36.96,35.35,34.36,33.480000000000004,32.58,31.76,30.84,29.96,28.09,11.69,11.370000000000001,11.19,11,10.8,10.63,10.43,10.24,9.870000000000001,N/A,N/A +2013,10,16,15,30,94630,93490,92390,79.63,0,2.86,3.63,3.88,4.03,4.13,4.2,4.26,4.3,4.37,29.900000000000002,29.240000000000002,28.82,28.47,28.11,27.79,27.400000000000002,27.03,26.240000000000002,11.64,11.3,11.11,10.91,10.72,10.53,10.33,10.14,9.76,N/A,N/A +2013,10,16,16,30,94630,93490,92380,77.65,0,3.72,4.6000000000000005,4.83,4.94,5,5.03,5.03,5.0200000000000005,4.97,21.12,21.68,22.03,22.35,22.64,22.91,23.2,23.490000000000002,24.09,11.69,11.31,11.120000000000001,10.92,10.72,10.53,10.33,10.14,9.76,N/A,N/A +2013,10,16,17,30,94630,93490,92380,74.35000000000001,0,2.92,3.65,3.87,3.99,4.08,4.14,4.18,4.22,4.28,23.52,23.81,23.990000000000002,24.150000000000002,24.29,24.42,24.54,24.650000000000002,24.87,11.73,11.35,11.15,10.950000000000001,10.75,10.56,10.36,10.17,9.790000000000001,N/A,N/A +2013,10,16,18,30,94610,93470,92370,74.04,0,2.29,2.8000000000000003,2.95,3.04,3.09,3.13,3.16,3.19,3.23,24.1,22.95,22.25,21.67,21.12,20.62,20.080000000000002,19.580000000000002,18.52,12.16,11.74,11.540000000000001,11.34,11.14,10.96,10.75,10.57,10.18,N/A,N/A +2013,10,16,19,30,94590,93460,92350,74.66,0,2.57,3.17,3.34,3.44,3.5,3.5500000000000003,3.5700000000000003,3.6,3.63,17.92,17.05,16.55,16.19,15.870000000000001,15.6,15.33,15.08,14.61,12.61,12.21,12.01,11.81,11.61,11.42,11.22,11.03,10.64,N/A,N/A +2013,10,16,20,30,94570,93430,92330,70.79,0,2.2600000000000002,2.8000000000000003,2.98,3.09,3.16,3.22,3.27,3.31,3.37,13.35,13.01,12.790000000000001,12.63,12.49,12.35,12.200000000000001,12.06,11.78,13.08,12.68,12.49,12.290000000000001,12.08,11.9,11.69,11.5,11.120000000000001,N/A,N/A +2013,10,16,21,30,94540,93410,92310,68.49,0,2.43,3.0500000000000003,3.2600000000000002,3.39,3.48,3.5500000000000003,3.6,3.65,3.72,20.16,19.35,18.87,18.5,18.150000000000002,17.84,17.51,17.21,16.580000000000002,13.450000000000001,13.09,12.9,12.71,12.51,12.32,12.120000000000001,11.93,11.540000000000001,N/A,N/A +2013,10,16,22,30,94520,93380,92280,68.75,0,2.61,3.29,3.5,3.63,3.72,3.79,3.84,3.88,3.93,18.61,17.67,17.14,16.69,16.28,15.91,15.51,15.14,14.39,13.59,13.26,13.08,12.88,12.68,12.5,12.290000000000001,12.1,11.71,N/A,N/A +2013,10,16,23,30,94520,93390,92290,71.9,0,2.94,3.7800000000000002,4.04,4.21,4.33,4.42,4.48,4.53,4.6000000000000005,15.120000000000001,15.14,15.1,15.06,14.99,14.91,14.790000000000001,14.68,14.41,13.49,13.200000000000001,13.02,12.83,12.63,12.450000000000001,12.25,12.06,11.67,N/A,N/A +2013,10,17,0,30,94530,93400,92300,67.99,0,3.23,4.14,4.4,4.55,4.65,4.73,4.7700000000000005,4.8,4.83,18.95,18.85,18.8,18.77,18.71,18.66,18.57,18.490000000000002,18.28,13.16,12.870000000000001,12.700000000000001,12.51,12.31,12.13,11.93,11.74,11.35,N/A,N/A +2013,10,17,1,30,94560,93420,92320,66.49,0,2.7,3.5,3.7600000000000002,3.92,4.03,4.12,4.17,4.22,4.28,24.35,24.1,23.97,23.87,23.75,23.64,23.490000000000002,23.35,23,12.99,12.69,12.52,12.33,12.13,11.950000000000001,11.74,11.56,11.17,N/A,N/A +2013,10,17,2,30,94590,93450,92350,63.11,0,2.12,2.7,2.88,2.99,3.06,3.11,3.15,3.19,3.24,18.57,18.39,18.31,18.23,18.13,18.03,17.87,17.72,17.38,12.870000000000001,12.58,12.41,12.21,12.02,11.84,11.64,11.450000000000001,11.07,N/A,N/A +2013,10,17,3,30,94580,93440,92340,63.58,0,1.67,2.15,2.32,2.4,2.47,2.5100000000000002,2.5500000000000003,2.58,2.72,23.69,22.54,21.73,21.03,20.23,19.46,18.56,17.66,15.69,12.67,12.370000000000001,12.200000000000001,12.01,11.82,11.64,11.450000000000001,11.27,10.89,N/A,N/A +2013,10,17,4,30,94590,93450,92350,74.84,0,0.24,0.86,1.25,1.44,1.56,1.6500000000000001,1.73,1.81,2.0100000000000002,356.1,5.7700000000000005,12.76,14.84,15.89,16.5,16.82,17.44,20.5,11.81,12.06,12.01,11.9,11.74,11.58,11.38,11.200000000000001,10.84,N/A,N/A +2013,10,17,5,30,94580,93440,92340,78.38,0,0.03,0.22,0.47000000000000003,0.67,0.86,1.03,1.16,1.27,1.4000000000000001,221.71,282.71,340.06,341.72,341.33,340.04,340.24,341.65000000000003,351.23,11.22,11.67,11.78,11.82,11.77,11.69,11.51,11.35,11.02,N/A,N/A +2013,10,17,6,30,94590,93450,92350,81.36,0,0.14,0.44,0.62,0.73,0.85,0.98,1.07,1.1400000000000001,1.11,226.62,254.54,277.26,291.32,304.23,316.54,324.05,330.47,341.1,10.76,11.290000000000001,11.42,11.44,11.46,11.47,11.42,11.35,11.120000000000001,N/A,N/A +2013,10,17,7,30,94600,93460,92350,84.51,0,0.21,0.29,0.28,0.3,0.45,0.7000000000000001,0.87,1.03,1.1300000000000001,127.84,187.97,233.71,289.43,311.98,326.21,328.7,331.71,341.27,10.25,10.92,11.120000000000001,11.19,11.23,11.26,11.25,11.22,11.1,N/A,N/A +2013,10,17,8,30,94600,93450,92350,86.02,0,0.13,0.4,0.51,0.45,0.29,0.18,0.04,0.03,0.3,136.54,159.73,173,169.73,160.18,153.37,297.89,334.51,121.39,9.94,10.67,10.9,10.99,11.1,11.200000000000001,11.3,11.35,11.39,N/A,N/A +2013,10,17,9,30,94600,93460,92350,89.01,0,0.19,0.34,0.32,0.25,0.25,0.28,0.31,0.34,0.45,64.09,80.67,109.64,149.76,165.46,174.86,177.81,179.82,173.06,9.51,10.34,10.6,10.66,10.74,10.81,10.86,10.89,10.88,N/A,N/A +2013,10,17,10,30,94600,93450,92340,91.33,0,0.4,0.9,1.05,1.04,0.9,0.76,0.53,0.42,0.51,43.78,50.6,56.38,61.9,65.06,67,71.98,80.92,109.03,9.11,9.73,9.97,10.13,10.27,10.38,10.56,10.69,10.83,N/A,N/A +2013,10,17,11,30,94610,93470,92360,92.22,0,0.38,0.91,1.08,1.03,0.97,0.92,0.9400000000000001,0.99,1.3,38.62,46.45,55.410000000000004,65.22,79.76,93.68,107.02,116.57000000000001,122.18,8.85,9.57,9.790000000000001,9.88,9.99,10.1,10.28,10.43,10.66,N/A,N/A +2013,10,17,12,30,94600,93450,92350,85.35000000000001,0,0.55,0.76,0.89,1.03,1.23,1.45,1.7,1.93,2.32,59.300000000000004,68.91,80.01,96.2,106.44,114.73,119.39,123.57000000000001,129.94,9.25,9.49,9.700000000000001,9.91,10.05,10.15,10.27,10.36,10.47,N/A,N/A +2013,10,17,13,30,94600,93460,92350,77.63,0,0.78,1.02,1.24,1.6300000000000001,1.93,2.19,2.42,2.62,2.89,55.49,70.85000000000001,82.34,95.76,104.21000000000001,110.4,115.56,120.56,130.1,10.31,10.1,10.120000000000001,10.26,10.39,10.5,10.61,10.700000000000001,10.89,N/A,N/A +2013,10,17,14,30,94600,93460,92350,73.97,0,0.85,0.84,0.87,1.03,1.23,1.44,1.6400000000000001,1.85,2.2800000000000002,20.28,24.84,42.44,81.38,103.49000000000001,119.19,130.51,140.52,153.91,11,10.74,10.73,10.84,10.99,11.13,11.22,11.3,11.42,N/A,N/A +2013,10,17,15,30,94590,93460,92350,68.35000000000001,0,0.79,0.84,0.81,0.77,0.84,0.9500000000000001,1.31,1.67,2.1,48.17,54.14,60.160000000000004,68.2,85.25,106,122,136.65,147.62,12.19,11.870000000000001,11.71,11.56,11.44,11.35,11.47,11.57,11.67,N/A,N/A +2013,10,17,16,30,94550,93420,92330,56.660000000000004,0,1.24,1.54,1.6400000000000001,1.72,1.79,1.84,1.9000000000000001,1.95,2.06,129.78,135.06,138.38,141.19,143.8,146.19,148.56,150.76,155.22,15.030000000000001,14.56,14.34,14.13,13.94,13.76,13.56,13.38,13.01,N/A,N/A +2013,10,17,17,30,94500,93380,92290,55.26,0,2.5500000000000003,3.09,3.2600000000000002,3.34,3.39,3.42,3.43,3.44,3.44,148.86,150.65,151.76,152.67000000000002,153.48,154.21,154.97,155.66,157.08,17.07,16.51,16.26,16.04,15.82,15.620000000000001,15.42,15.23,14.84,N/A,N/A +2013,10,17,18,30,94430,93320,92240,54.57,0,3.27,3.96,4.16,4.26,4.3100000000000005,4.34,4.3500000000000005,4.3500000000000005,4.33,158,158.69,159.14000000000001,159.51,159.84,160.13,160.42000000000002,160.70000000000002,161.27,18.51,17.900000000000002,17.64,17.400000000000002,17.17,16.97,16.76,16.56,16.16,N/A,N/A +2013,10,17,19,30,94370,93270,92190,55.03,0,3.1,3.79,4,4.11,4.18,4.23,4.26,4.28,4.3,158.82,159.25,159.5,159.67000000000002,159.81,159.93,160.04,160.15,160.36,19.63,19.02,18.76,18.52,18.29,18.09,17.88,17.68,17.28,N/A,N/A +2013,10,17,20,30,94290,93190,92120,56.52,0,3.5500000000000003,4.3500000000000005,4.6000000000000005,4.72,4.8,4.86,4.89,4.92,4.94,162.19,162.27,162.32,162.34,162.34,162.34,162.34,162.33,162.33,20.61,19.990000000000002,19.73,19.490000000000002,19.27,19.06,18.85,18.650000000000002,18.25,N/A,N/A +2013,10,17,21,30,94220,93130,92060,54.78,0,4.17,5.13,5.43,5.58,5.68,5.74,5.78,5.8,5.82,162.36,162.38,162.37,162.34,162.3,162.26,162.21,162.16,162.07,21.32,20.72,20.47,20.240000000000002,20.01,19.81,19.59,19.400000000000002,18.990000000000002,N/A,N/A +2013,10,17,22,30,94170,93070,92010,57.36,0,4.49,5.5600000000000005,5.88,6.04,6.15,6.21,6.25,6.28,6.3,164.31,164.14000000000001,164.03,163.9,163.77,163.66,163.53,163.42000000000002,163.17000000000002,21.34,20.82,20.6,20.37,20.16,19.96,19.75,19.56,19.16,N/A,N/A +2013,10,17,23,30,94140,93040,91980,56.88,0,4.95,6.25,6.62,6.82,6.96,7.04,7.1000000000000005,7.13,7.16,162.94,162.72,162.56,162.39000000000001,162.23,162.07,161.91,161.76,161.45000000000002,21.12,20.78,20.6,20.400000000000002,20.2,20,19.8,19.61,19.22,N/A,N/A +2013,10,18,0,30,94120,93020,91950,62.5,0,3.22,5.08,5.75,6.24,6.640000000000001,6.97,7.25,7.49,7.82,164.02,162.95000000000002,162.27,161.66,161.15,160.70000000000002,160.34,160.04,159.66,19.91,20.04,20,19.89,19.75,19.6,19.42,19.25,18.86,N/A,N/A +2013,10,18,1,30,94110,93010,91940,65.83,0,4.11,6.18,6.95,7.57,8.07,8.48,8.8,9.07,9.44,168.39000000000001,167.77,167.35,166.95000000000002,166.54,166.15,165.65,165.17000000000002,164,19.400000000000002,19.48,19.45,19.38,19.3,19.2,19.07,18.95,18.64,N/A,N/A +2013,10,18,2,30,94110,93010,91940,69.53,0,3.36,5.38,6.15,6.78,7.32,7.78,8.19,8.55,9.120000000000001,161.71,162.25,162.59,162.83,162.97,163.03,162.9,162.75,162.16,18.68,18.81,18.79,18.73,18.66,18.57,18.46,18.36,18.09,N/A,N/A +2013,10,18,3,30,94120,93010,91950,68.38,0,4,6.13,6.93,7.5600000000000005,8.08,8.51,8.9,9.24,9.83,164.61,164.58,164.55,164.49,164.37,164.22,163.97,163.71,162.9,18.400000000000002,18.47,18.43,18.34,18.240000000000002,18.14,18.01,17.89,17.63,N/A,N/A +2013,10,18,4,30,94090,92990,91920,64.48,0,4.13,5.73,6.32,6.7700000000000005,7.140000000000001,7.46,7.74,7.99,8.47,165.22,165.20000000000002,165.21,165.29,165.4,165.53,165.62,165.69,165.67000000000002,18.6,18.45,18.34,18.21,18.07,17.93,17.77,17.63,17.31,N/A,N/A +2013,10,18,5,30,94090,92980,91910,60.800000000000004,0,4.15,5.8100000000000005,6.45,6.97,7.4,7.78,8.13,8.45,9.08,157.20000000000002,157.53,157.8,158.06,158.3,158.53,158.72,158.89000000000001,159.14000000000001,18.57,18.37,18.23,18.07,17.900000000000002,17.73,17.56,17.39,17.04,N/A,N/A +2013,10,18,6,30,94080,92980,91900,61.04,0,4.18,5.84,6.47,6.99,7.43,7.82,8.18,8.51,9.17,155.21,155.98,156.51,157,157.47,157.91,158.31,158.69,159.36,18.32,18.11,17.96,17.8,17.62,17.45,17.27,17.1,16.740000000000002,N/A,N/A +2013,10,18,7,30,94080,92970,91900,62.71,0,4.09,5.74,6.390000000000001,6.92,7.37,7.7700000000000005,8.14,8.49,9.16,154.20000000000002,154.8,155.24,155.65,156.05,156.43,156.81,157.16,157.84,18.01,17.8,17.66,17.490000000000002,17.32,17.150000000000002,16.97,16.8,16.44,N/A,N/A +2013,10,18,8,30,94080,92970,91890,65.51,0,3.0500000000000003,4.78,5.55,6.2,6.76,7.26,7.72,8.15,8.97,151.5,151.94,152.39000000000001,153.02,153.68,154.34,154.97,155.54,156.51,17.27,17.2,17.12,17,16.88,16.740000000000002,16.59,16.44,16.12,N/A,N/A +2013,10,18,9,30,94040,92930,91860,64.98,0,3.5,5.08,5.73,6.28,6.74,7.16,7.55,7.92,8.65,155.91,156.12,156.32,156.64000000000001,157.02,157.41,157.85,158.27,159.1,17.54,17.35,17.21,17.05,16.88,16.72,16.54,16.38,16.03,N/A,N/A +2013,10,18,10,30,94040,92930,91850,69.35000000000001,0,3.0700000000000003,5.15,5.97,6.66,7.25,7.75,8.23,8.69,9.540000000000001,154.4,154.43,154.6,154.99,155.46,155.94,156.43,156.87,157.63,16.92,16.990000000000002,16.92,16.8,16.66,16.51,16.330000000000002,16.17,15.82,N/A,N/A +2013,10,18,11,30,94060,92940,91870,71.8,0,3.88,6.09,6.97,7.68,8.26,8.76,9.22,9.63,10.43,154.46,154.63,154.86,155.31,155.88,156.48,157.16,157.81,159.16,16.28,16.34,16.28,16.17,16.03,15.9,15.73,15.58,15.26,N/A,N/A +2013,10,18,12,30,94040,92930,91850,73.77,0,4.04,6.25,7.15,7.9,8.51,9.040000000000001,9.540000000000001,9.99,10.83,157.52,158.55,159.24,159.87,160.45000000000002,160.99,161.59,162.16,163.4,15.89,15.89,15.81,15.69,15.56,15.43,15.290000000000001,15.15,14.88,N/A,N/A +2013,10,18,13,30,94040,92930,91850,79.33,0,3.83,6.07,6.99,7.79,8.46,9.040000000000001,9.57,10.07,10.98,161.88,162.67000000000002,163.18,163.56,163.88,164.16,164.46,164.76,165.57,15.71,15.700000000000001,15.610000000000001,15.51,15.39,15.280000000000001,15.15,15.030000000000001,14.790000000000001,N/A,N/A +2013,10,18,14,30,94040,92930,91860,77.14,0,5.73,7.46,8.08,8.58,9.040000000000001,9.47,9.84,10.13,10.5,165.37,165.68,165.88,166.05,166.24,166.43,166.54,166.61,166.59,16.82,16.43,16.25,16.06,15.88,15.71,15.530000000000001,15.370000000000001,15.02,N/A,N/A +2013,10,18,15,30,94050,92940,91870,76.2,0,6.390000000000001,8.02,8.52,8.82,9.01,9.14,9.22,9.290000000000001,9.43,166.67000000000002,166.86,166.9,166.95000000000002,167.01,167.06,167.12,167.18,167.36,17.68,17.13,16.9,16.67,16.46,16.27,16.07,15.88,15.51,N/A,N/A +2013,10,18,16,30,94030,92930,91860,73.54,0,5.7,7.07,7.47,7.68,7.78,7.84,7.8500000000000005,7.84,7.78,168.01,168.41,168.66,168.89000000000001,169.1,169.29,169.51,169.72,170.21,18.63,17.990000000000002,17.73,17.490000000000002,17.28,17.080000000000002,16.87,16.68,16.3,N/A,N/A +2013,10,18,17,30,94020,92920,91860,68.88,0,4.88,5.93,6.29,6.46,6.57,6.63,6.67,6.69,6.69,170.56,170.95000000000002,171.32,171.66,171.96,172.25,172.55,172.83,173.42000000000002,20.18,19.53,19.27,19.02,18.8,18.59,18.38,18.19,17.79,N/A,N/A +2013,10,18,18,30,93940,92850,91790,64.24,0,4.67,5.72,6.05,6.22,6.32,6.390000000000001,6.42,6.44,6.44,173.46,173.72,173.75,173.85,173.96,174.08,174.23,174.37,174.71,21.61,20.94,20.67,20.42,20.19,19.98,19.76,19.57,19.16,N/A,N/A +2013,10,18,19,30,93930,92850,91790,60.13,0,3.7,4.49,4.74,4.84,4.9,4.93,4.94,4.94,4.9,184.33,184.64000000000001,184.61,184.73,184.88,185.08,185.31,185.54,186.1,22.76,22.13,21.86,21.62,21.39,21.18,20.97,20.78,20.38,N/A,N/A +2013,10,18,20,30,93890,92810,91760,57.34,0,3.56,4.29,4.51,4.58,4.62,4.64,4.64,4.63,4.58,184.16,184.3,184.5,184.74,184.98,185.23,185.52,185.8,186.42000000000002,23.67,23.05,22.79,22.55,22.330000000000002,22.12,21.91,21.72,21.32,N/A,N/A +2013,10,18,21,30,93870,92790,91740,56.18,0,2.7,3.21,3.34,3.39,3.41,3.41,3.39,3.38,3.3200000000000003,188.25,188.35,188.42000000000002,188.47,188.53,188.61,188.71,188.81,189.06,24.1,23.56,23.330000000000002,23.1,22.89,22.68,22.48,22.28,21.88,N/A,N/A +2013,10,18,22,30,93870,92790,91750,56.980000000000004,0,2.86,3.42,3.58,3.62,3.63,3.62,3.6,3.58,3.5,160.22,161.02,161.77,162.27,162.69,163.06,163.42000000000002,163.74,164.45000000000002,24.19,23.7,23.48,23.25,23.05,22.84,22.64,22.45,22.06,N/A,N/A +2013,10,18,23,30,93930,92840,91800,59.49,0,2.7600000000000002,3.44,3.6,3.65,3.68,3.69,3.68,3.67,3.62,155.75,157.6,158.71,159.75,160.68,161.56,162.44,163.25,164.88,23.7,23.400000000000002,23.22,23.02,22.830000000000002,22.63,22.43,22.25,21.86,N/A,N/A +2013,10,19,0,30,93950,92860,91810,66.53,0,3.85,4.96,5.2,5.3,5.03,4.67,4.1,3.6,2.63,32.03,31.48,30.29,28.47,24.82,21.080000000000002,16.63,12.66,0.7000000000000001,21.54,21.25,21.1,20.95,20.900000000000002,20.900000000000002,20.89,20.88,20.82,N/A,N/A +2013,10,19,1,30,94030,92930,91870,63.64,0,3.5700000000000003,4.9,5.3100000000000005,5.59,5.41,5.0200000000000005,4.26,3.63,2.7600000000000002,40.5,44.34,46.410000000000004,47.870000000000005,49.85,51.86,57.53,62.38,70.36,20.68,20.57,20.490000000000002,20.38,20.43,20.55,20.8,21.02,20.89,N/A,N/A +2013,10,19,2,30,94220,93110,92030,61.46,0,7.03,9.83,10.96,11.97,12.91,13.8,14.67,15.48,16.97,23.63,22.650000000000002,22.2,21.89,21.85,21.95,22.48,23.080000000000002,24.84,18.5,18.150000000000002,17.87,17.53,17.18,16.85,16.490000000000002,16.18,15.59,N/A,N/A +2013,10,19,3,30,94390,93270,92180,71.38,0,9.64,12.47,13.48,14.18,14.73,15.17,15.55,15.88,16.47,32.54,32.32,32.25,32.26,32.3,32.37,32.51,32.660000000000004,33.15,15.07,14.8,14.63,14.42,14.22,14.030000000000001,13.82,13.620000000000001,13.21,N/A,N/A +2013,10,19,4,30,94480,93350,92250,66.28,0,7.88,10.700000000000001,11.78,12.57,13.14,13.6,14.030000000000001,14.42,15.1,31.41,31.59,31.650000000000002,31.490000000000002,31.21,30.91,30.78,30.66,30.3,12.6,12.32,12.14,11.950000000000001,11.75,11.57,11.36,11.17,10.77,N/A,N/A +2013,10,19,5,30,94650,93510,92400,65.13,0,2.41,4.16,5.3500000000000005,6.41,7.3500000000000005,8.2,8.96,9.67,10.89,359.26,9.42,15.97,19.080000000000002,21.2,22.830000000000002,23.87,24.77,25.8,11.09,10.77,10.58,10.370000000000001,10.17,9.98,9.77,9.58,9.18,N/A,N/A +2013,10,19,6,30,94750,93610,92490,65.87,0,3.5300000000000002,5.0600000000000005,5.76,6.33,6.83,7.26,7.66,8.02,8.69,3.08,6.69,9.03,10.98,12.61,14.02,15.24,16.34,18.240000000000002,10.38,10.08,9.88,9.68,9.47,9.28,9.07,8.88,8.48,N/A,N/A +2013,10,19,7,30,94850,93700,92580,66.86,0,4.45,5.82,6.3500000000000005,6.72,7.0200000000000005,7.2700000000000005,7.5,7.71,8.1,11.23,11.96,12.56,13.16,13.74,14.27,14.8,15.3,16.3,9.94,9.540000000000001,9.34,9.13,8.92,8.73,8.52,8.32,7.92,N/A,N/A +2013,10,19,8,30,94900,93740,92620,69.94,0,4.1,5.5,6.01,6.390000000000001,6.71,6.99,7.25,7.49,7.95,356.12,358.09000000000003,359.47,0.77,2.05,3.23,4.42,5.54,7.8100000000000005,9.16,8.88,8.700000000000001,8.51,8.3,8.11,7.91,7.71,7.3100000000000005,N/A,N/A +2013,10,19,9,30,94910,93750,92630,70.26,0,4.07,5.49,5.94,6.28,6.55,6.7700000000000005,6.96,7.12,7.38,342.75,344.62,345.95,347.28000000000003,348.69,350,351.38,352.72,355.5,8.56,8.31,8.13,7.95,7.75,7.5600000000000005,7.36,7.16,6.76,N/A,N/A +2013,10,19,10,30,94940,93780,92660,70.72,0,3.35,4.86,5.47,5.97,6.41,6.8100000000000005,7.21,7.59,8.31,341.08,341.7,342.32,343.06,344.05,345.06,346.35,347.68,350.71,7.9,7.7,7.53,7.3500000000000005,7.140000000000001,6.94,6.72,6.5,6.05,N/A,N/A +2013,10,19,11,30,94990,93830,92700,71.05,0,3.27,4.9,5.58,6.17,6.69,7.15,7.55,7.87,8.290000000000001,344.21,347.49,349.57,351.38,352.96,354.36,355.56,356.65000000000003,358.62,7.11,6.91,6.75,6.58,6.390000000000001,6.22,6.03,5.84,5.46,N/A,N/A +2013,10,19,12,30,95010,93840,92710,75.58,0,3.5100000000000002,5.17,5.8100000000000005,6.3500000000000005,6.8100000000000005,7.21,7.54,7.8100000000000005,8.08,329.85,333.35,335.68,337.89,340.14,342.23,344.32,346.26,349.86,6.72,6.53,6.37,6.2,6.0200000000000005,5.8500000000000005,5.67,5.51,5.22,N/A,N/A +2013,10,19,13,30,95020,93860,92720,75.36,0,3.25,4.9,5.5,5.95,6.28,6.55,6.7700000000000005,6.99,7.48,316.99,320.56,323.05,325.29,327.73,330.04,332.69,335.44,341.75,6.3500000000000005,6.23,6.11,5.96,5.8,5.65,5.49,5.32,4.98,N/A,N/A +2013,10,19,14,30,95040,93880,92750,67.95,0,3.95,4.93,5.24,5.42,5.54,5.63,5.7,5.76,5.87,344.37,344.83,345.16,345.45,345.77,346.06,346.41,346.77,347.62,7.17,6.75,6.54,6.3500000000000005,6.140000000000001,5.96,5.7700000000000005,5.58,5.2,N/A,N/A +2013,10,19,15,30,95030,93870,92740,63.050000000000004,0,3.49,4.25,4.46,4.5600000000000005,4.62,4.65,4.67,4.67,4.67,332.19,333.1,333.69,334.2,334.7,335.16,335.67,336.17,337.22,8.540000000000001,8.01,7.78,7.5600000000000005,7.3500000000000005,7.16,6.96,6.7700000000000005,6.390000000000001,N/A,N/A +2013,10,19,16,30,95000,93850,92730,56.300000000000004,0,2.66,3.22,3.39,3.49,3.5500000000000003,3.6,3.63,3.66,3.69,337.44,338.78000000000003,339.58,340.24,340.87,341.42,341.97,342.49,343.53000000000003,10.4,9.85,9.61,9.38,9.17,8.97,8.77,8.57,8.19,N/A,N/A +2013,10,19,17,30,94940,93790,92680,50.36,0,2.07,2.48,2.61,2.68,2.72,2.7600000000000002,2.7800000000000002,2.8000000000000003,2.83,330.35,332.44,333.74,334.83,335.83,336.71,337.64,338.5,340.16,12.290000000000001,11.74,11.48,11.25,11.03,10.84,10.620000000000001,10.43,10.040000000000001,N/A,N/A +2013,10,19,18,30,94860,93730,92620,45.410000000000004,0,1.44,1.7,1.77,1.81,1.83,1.85,1.86,1.87,1.8800000000000001,331.2,333.42,334.81,336.07,337.27,338.36,339.46,340.48,342.54,14.030000000000001,13.5,13.24,13.01,12.790000000000001,12.59,12.370000000000001,12.18,11.78,N/A,N/A +2013,10,19,19,30,94800,93670,92580,40.230000000000004,0,0.42,0.48,0.5,0.51,0.51,0.52,0.52,0.53,0.53,19.88,19.44,19.03,18.830000000000002,18.66,18.52,18.400000000000002,18.29,17.990000000000002,15.58,15.08,14.82,14.59,14.36,14.16,13.950000000000001,13.75,13.36,N/A,N/A +2013,10,19,20,30,94710,93580,92490,34.78,0,0.54,0.58,0.5700000000000001,0.56,0.56,0.55,0.54,0.53,0.52,117.02,119.26,120.51,121.59,122.61,123.51,124.36,125.12,126.59,16.78,16.28,16.03,15.8,15.58,15.38,15.16,14.97,14.57,N/A,N/A +2013,10,19,21,30,94630,93510,92420,29.28,0,1.34,1.54,1.57,1.59,1.6,1.6,1.6,1.6,1.6,137.93,137.81,137.77,137.73,137.62,137.49,137.23,136.97,136.22,17.68,17.18,16.94,16.72,16.5,16.3,16.09,15.9,15.5,N/A,N/A +2013,10,19,22,30,94560,93440,92360,33.51,0,1.62,2,2.12,2.19,2.24,2.2800000000000002,2.31,2.34,2.38,151.64000000000001,151.3,151.03,150.76,150.51,150.29,150.04,149.82,149.39000000000001,18.05,17.59,17.37,17.16,16.95,16.76,16.55,16.36,15.96,N/A,N/A +2013,10,19,23,30,94510,93390,92310,34.11,0,2.7800000000000002,3.5100000000000002,3.72,3.83,3.89,3.94,3.95,3.96,3.95,146.72,146.66,146.74,146.85,147,147.13,147.29,147.45000000000002,147.8,18.13,17.81,17.62,17.42,17.22,17.03,16.830000000000002,16.63,16.240000000000002,N/A,N/A +2013,10,20,0,30,94480,93360,92280,44.75,0,2.19,3.92,4.29,4.46,4.54,4.5600000000000005,4.55,4.54,4.5,159.1,159.06,158.85,158.45000000000002,158.04,157.66,157.20000000000002,156.77,155.9,16.38,17.04,17.07,16.98,16.84,16.68,16.48,16.3,15.92,N/A,N/A +2013,10,20,1,30,94470,93350,92260,41.7,0,3.08,5.08,5.57,5.88,6.11,6.29,6.36,6.41,6.3,155.87,154.13,152.9,151.69,150.73,149.95000000000002,149.47,149.16,149.27,15.99,16.56,16.61,16.53,16.41,16.27,16.1,15.94,15.57,N/A,N/A +2013,10,20,2,30,94460,93330,92250,45.18,0,2.96,5.12,5.79,6.3100000000000005,6.67,6.96,7.08,7.140000000000001,6.96,155.43,154.42000000000002,153.38,152,151.19,150.67000000000002,150.86,151.34,154.59,15.040000000000001,15.72,15.860000000000001,15.9,15.870000000000001,15.82,15.700000000000001,15.58,15.26,N/A,N/A +2013,10,20,3,30,94440,93310,92220,47.63,0,2.98,5.2700000000000005,6,6.51,6.78,6.94,6.99,7.0200000000000005,7.0600000000000005,155.05,157.68,159.38,160.73,162.02,163.18,164.44,165.56,167.49,14.450000000000001,15.24,15.48,15.65,15.68,15.65,15.52,15.38,15.02,N/A,N/A +2013,10,20,4,30,94420,93290,92210,52.14,0,2.64,4.93,5.67,6.29,6.72,7.05,7.21,7.32,7.42,163.3,165.03,166.20000000000002,167.32,168.62,169.9,171.20000000000002,172.35,174,13.780000000000001,14.71,14.96,15.18,15.290000000000001,15.34,15.26,15.15,14.81,N/A,N/A +2013,10,20,5,30,94400,93270,92190,54.160000000000004,0,2.35,4.65,5.47,6.19,6.72,7.15,7.41,7.63,7.930000000000001,171.36,174.82,176.70000000000002,177.68,178.24,178.59,178.91,179.22,179.92000000000002,13.4,14.370000000000001,14.61,14.82,14.94,15.01,14.97,14.92,14.67,N/A,N/A +2013,10,20,6,30,94380,93260,92160,58.04,0,1.9000000000000001,3.98,4.86,5.67,6.33,6.9,7.2700000000000005,7.59,8.06,160.95000000000002,168.69,173.24,175.78,177.26,178.26,178.52,178.66,178.28,12.6,13.52,13.77,13.98,14.14,14.25,14.280000000000001,14.290000000000001,14.17,N/A,N/A +2013,10,20,7,30,94390,93260,92160,61.54,0,2.11,4.21,5.0200000000000005,5.79,6.44,7,7.42,7.79,8.32,156.46,164.92000000000002,169.67000000000002,172.29,173.85,174.94,175.75,176.51,178.1,12.1,13.01,13.25,13.46,13.59,13.68,13.700000000000001,13.700000000000001,13.58,N/A,N/A +2013,10,20,8,30,94350,93220,92120,66.05,0,1.6400000000000001,3.3200000000000003,4.04,4.8,5.5,6.140000000000001,6.640000000000001,7.09,7.7700000000000005,147.68,164.41,173.03,177.09,178.84,179.66,179.64000000000001,179.59,179.39000000000001,11.34,12.38,12.69,12.96,13.17,13.34,13.4,13.43,13.4,N/A,N/A +2013,10,20,9,30,94330,93190,92100,68.28,0,1.73,3.3000000000000003,3.94,4.69,5.37,5.99,6.5600000000000005,7.07,7.88,137.39000000000001,157.66,167.22,171.78,173.02,173.18,172.53,172.02,171.64000000000001,11.01,11.91,12.16,12.38,12.540000000000001,12.66,12.76,12.82,12.84,N/A,N/A +2013,10,20,10,30,94310,93170,92070,71.73,0,1.1,2.11,2.62,3.35,4.11,4.89,5.64,6.38,7.73,103.71000000000001,132.4,147.54,156.27,161.24,164.78,166.29,167.56,168.96,10.120000000000001,11.07,11.36,11.6,11.790000000000001,11.950000000000001,12.05,12.13,12.23,N/A,N/A +2013,10,20,11,30,94280,93140,92040,74.19,0,1.1300000000000001,2.32,2.83,3.35,3.94,4.53,5.22,5.92,7.3100000000000005,128.14000000000001,130.15,134.19,141.3,147.62,153.49,157.6,161.16,166.07,9.700000000000001,10.63,10.9,11.09,11.19,11.24,11.28,11.32,11.39,N/A,N/A +2013,10,20,12,30,94280,93140,92030,75.51,0,2.05,3.81,4.08,4.0200000000000005,4.32,4.72,5.43,6.15,7.5200000000000005,134.24,135,136.94,140.05,145.93,152.20000000000002,157.11,161.39000000000001,166.97,9.69,10.3,10.32,10.26,10.23,10.23,10.31,10.39,10.48,N/A,N/A +2013,10,20,13,30,94260,93120,92010,77.41,0,2.56,4.64,5.33,5.97,6.6000000000000005,7.19,7.72,8.120000000000001,8.39,148.28,152.86,155.92000000000002,158.72,161.38,163.86,166.16,168.4,173.29,9.34,9.76,9.77,9.78,9.790000000000001,9.8,9.83,9.9,10.21,N/A,N/A +2013,10,20,14,30,94250,93110,92010,66.58,0,3.73,4.89,5.34,5.66,6.04,6.41,6.63,6.78,6.7700000000000005,159.78,161.5,162.49,163.17000000000002,164.24,165.4,167.6,170.11,177.21,11.33,11.040000000000001,10.88,10.71,10.6,10.53,10.620000000000001,10.77,11.31,N/A,N/A +2013,10,20,15,30,94240,93110,92020,63.08,0,4.64,5.65,5.91,6.03,6.08,6.09,6.140000000000001,6.2,6.47,159.64000000000001,160.34,160.81,161.27,161.8,162.3,163.14000000000001,164.01,166.88,13.450000000000001,12.950000000000001,12.74,12.55,12.36,12.200000000000001,12.02,11.86,11.63,N/A,N/A +2013,10,20,16,30,94190,93070,91980,58.53,0,4.9,6.01,6.3100000000000005,6.45,6.51,6.53,6.51,6.49,6.41,161.99,162.63,163.06,163.45000000000002,163.84,164.19,164.65,165.09,166.29,15.68,15.09,14.85,14.63,14.42,14.24,14.040000000000001,13.86,13.5,N/A,N/A +2013,10,20,17,30,94120,93010,91930,54.49,0,5.0600000000000005,6.21,6.5600000000000005,6.72,6.8,6.84,6.84,6.83,6.7700000000000005,168.78,169.35,169.72,170.06,170.4,170.72,171.1,171.46,172.31,17.87,17.22,16.96,16.73,16.51,16.32,16.11,15.93,15.540000000000001,N/A,N/A +2013,10,20,18,30,94050,92950,91880,51.410000000000004,0,5.39,6.65,7.0200000000000005,7.2,7.3,7.36,7.37,7.38,7.34,173.98,174.11,174.20000000000002,174.3,174.41,174.53,174.68,174.83,175.20000000000002,19.52,18.84,18.57,18.330000000000002,18.1,17.900000000000002,17.69,17.490000000000002,17.1,N/A,N/A +2013,10,20,19,30,94010,92910,91840,49.39,0,5.8100000000000005,7.17,7.55,7.73,7.83,7.890000000000001,7.91,7.92,7.88,176.34,176.37,176.43,176.52,176.63,176.74,176.88,177.02,177.35,20.580000000000002,19.88,19.61,19.36,19.14,18.93,18.72,18.52,18.12,N/A,N/A +2013,10,20,20,30,93940,92850,91790,48.2,0,5.78,7.140000000000001,7.53,7.72,7.83,7.9,7.92,7.94,7.92,175.42000000000002,175.84,176.1,176.36,176.62,176.87,177.13,177.38,177.92000000000002,21.47,20.8,20.54,20.3,20.07,19.86,19.650000000000002,19.46,19.06,N/A,N/A +2013,10,20,21,30,93880,92790,91730,47.800000000000004,0,5.93,7.3500000000000005,7.75,7.95,8.06,8.13,8.16,8.18,8.15,172.95000000000002,173.13,173.27,173.41,173.55,173.69,173.84,173.99,174.31,21.78,21.17,20.92,20.68,20.46,20.26,20.05,19.85,19.45,N/A,N/A +2013,10,20,22,30,93840,92750,91690,48.08,0,5.41,6.75,7.140000000000001,7.34,7.46,7.54,7.58,7.61,7.61,169.34,169.45000000000002,169.54,169.64000000000001,169.74,169.85,169.96,170.08,170.34,21.73,21.22,21,20.78,20.57,20.37,20.16,19.97,19.580000000000002,N/A,N/A +2013,10,20,23,30,93810,92720,91660,53.1,0,4.92,6.34,6.73,6.97,7.15,7.28,7.38,7.47,7.6000000000000005,163.19,163.48,163.75,164.03,164.33,164.61,164.93,165.23,165.87,21.47,21.17,21,20.8,20.61,20.42,20.22,20.04,19.650000000000002,N/A,N/A +2013,10,21,0,30,93860,92760,91700,62.1,0,2.66,4.97,5.83,6.55,7.13,7.61,7.99,8.33,8.790000000000001,161.49,161.65,161.84,162.38,163.03,163.73,164.44,165.1,166.22,19.72,20.13,20.14,20.09,20,19.89,19.740000000000002,19.59,19.240000000000002,N/A,N/A +2013,10,21,1,30,93850,92760,91690,58.2,0,5.4,7.83,8.790000000000001,9.59,10.25,10.81,11.28,11.700000000000001,12.32,156.08,157.81,159.03,160.04,160.87,161.56,162.12,162.61,163.25,19.54,19.64,19.62,19.56,19.48,19.39,19.27,19.150000000000002,18.84,N/A,N/A +2013,10,21,2,30,93880,92780,91720,60.4,0,5.01,7.45,8.44,9.36,10.25,11.08,11.91,12.67,13.93,151.23,153.9,155.67000000000002,157.39000000000001,158.88,160.20000000000002,161.23,162.15,163.57,18.740000000000002,18.73,18.68,18.61,18.53,18.46,18.36,18.28,18.080000000000002,N/A,N/A +2013,10,21,3,30,93870,92770,91700,61.49,0,3.85,6.07,7.01,7.890000000000001,8.73,9.51,10.28,11,12.38,137.20000000000002,142.19,145.39000000000001,148.5,151.12,153.45000000000002,155.24,156.83,159.24,17.87,17.88,17.830000000000002,17.76,17.69,17.62,17.53,17.45,17.29,N/A,N/A +2013,10,21,4,30,93870,92760,91690,68.31,0,2.95,5.48,6.58,7.5600000000000005,8.45,9.28,10.120000000000001,10.94,12.55,139.6,144.1,147.07,149.11,150.81,152.3,153.66,154.93,157.22,16.93,17.27,17.29,17.28,17.240000000000002,17.19,17.13,17.07,16.95,N/A,N/A +2013,10,21,5,30,93870,92760,91690,68.36,0,3.8000000000000003,6.21,7.22,8.1,8.91,9.66,10.47,11.26,12.9,143.1,145.9,147.57,148.85,150.1,151.29,152.70000000000002,154.1,157.35,16.75,16.93,16.94,16.91,16.87,16.82,16.77,16.72,16.66,N/A,N/A +2013,10,21,6,30,93910,92800,91730,66.44,0,5.3100000000000005,7.96,9.08,10.1,11.02,11.870000000000001,12.72,13.51,14.85,147.75,151.08,153.25,155.1,156.72,158.19,159.63,160.98,163.61,16.65,16.7,16.67,16.63,16.59,16.56,16.53,16.51,16.5,N/A,N/A +2013,10,21,7,30,93950,92840,91760,73.03,0,3.86,6.34,7.44,8.540000000000001,9.540000000000001,10.48,11.41,12.280000000000001,13.780000000000001,139.71,146.28,150.52,153.64000000000001,156.13,158.23,160.20000000000002,162.06,165.68,15.540000000000001,15.85,15.93,15.98,16.01,16.02,16.02,16.03,16.05,N/A,N/A +2013,10,21,8,30,93960,92850,91770,83.3,0,2.59,5.3,6.45,7.58,8.620000000000001,9.61,10.57,11.47,13.1,143.35,151.78,156.73,159.8,162.03,163.83,165.18,166.4,168.31,14.84,15.450000000000001,15.55,15.620000000000001,15.67,15.71,15.76,15.790000000000001,15.860000000000001,N/A,N/A +2013,10,21,9,30,93980,92860,91790,87.18,0,2.2800000000000002,4.95,6.140000000000001,7.29,8.34,9.31,10.19,10.98,12.01,157.72,163.47,166.83,168.62,169.79,170.65,171.29,171.92000000000002,173.57,14.73,15.39,15.47,15.530000000000001,15.57,15.610000000000001,15.65,15.68,15.790000000000001,N/A,N/A +2013,10,21,10,30,93990,92870,91790,90.57000000000001,0,1.4000000000000001,3.62,4.87,6.08,7.140000000000001,8.09,8.76,9.31,9.52,147.75,160.02,167.18,170.15,172.18,173.73,175.15,176.51,179.69,13.65,14.39,14.59,14.780000000000001,14.93,15.05,15.16,15.26,15.47,N/A,N/A +2013,10,21,11,30,94010,92890,91810,90.66,0,2.24,4.42,5.23,6.03,6.72,7.33,7.7,7.930000000000001,7.640000000000001,150.46,157.13,161.37,164.83,167.69,170.17000000000002,172.06,173.85,177.71,13.85,14.49,14.6,14.71,14.84,14.97,15.14,15.3,15.64,N/A,N/A +2013,10,21,12,30,94040,92920,91840,93.18,0,1.43,2.86,3.42,4.04,4.46,4.79,4.97,5.11,5.23,140.6,161.27,171.77,177.78,181.63,184.41,186.53,188.46,192.09,12.96,13.74,13.96,14.17,14.38,14.56,14.71,14.85,15.05,N/A,N/A +2013,10,21,13,30,94080,92960,91870,94.51,0,0.65,1.36,1.6,1.78,2,2.22,2.57,2.93,3.74,321.86,295.37,277.90000000000003,264.03000000000003,252.3,241.65,233.16,225.87,219.51,12.43,13.01,13.07,13.09,13.09,13.09,13.19,13.32,13.89,N/A,N/A +2013,10,21,14,30,94170,93040,91950,87.69,0,1.03,1.29,1.47,1.74,2.11,2.54,2.7800000000000002,3.0300000000000002,3.75,267.64,275.38,281.06,287.90000000000003,288.61,286.67,283.16,279.93,275.35,13.55,13.26,13.13,13.02,12.98,12.97,13.01,13.05,13.23,N/A,N/A +2013,10,21,15,30,94220,93100,92010,67.15,0,2.99,3.73,3.96,4.1,4.19,4.26,4.32,4.36,4.45,318.27,319.68,320.42,321,321.51,321.96,322.45,322.91,323.86,16.05,15.57,15.36,15.15,14.950000000000001,14.76,14.56,14.38,14.01,N/A,N/A +2013,10,21,16,30,94250,93130,92050,63,0,5.45,6.71,7.0600000000000005,7.22,7.3,7.3500000000000005,7.36,7.37,7.34,321.14,321.1,321.05,320.96,320.85,320.74,320.59000000000003,320.43,320.06,17.44,16.82,16.580000000000002,16.36,16.15,15.97,15.77,15.59,15.22,N/A,N/A +2013,10,21,17,30,94280,93170,92090,48.34,0,5.5,6.7700000000000005,7.140000000000001,7.32,7.43,7.5,7.53,7.54,7.54,322.6,323.33,323.8,324.22,324.61,324.98,325.37,325.74,326.55,18.580000000000002,17.92,17.66,17.42,17.2,17,16.79,16.6,16.21,N/A,N/A +2013,10,21,18,30,94270,93160,92090,47.61,0,5.37,6.640000000000001,7.0200000000000005,7.24,7.38,7.48,7.55,7.6000000000000005,7.67,345.59000000000003,346.06,346.34000000000003,346.56,346.76,346.93,347.1,347.25,347.55,20.25,19.56,19.3,19.04,18.81,18.61,18.39,18.19,17.78,N/A,N/A +2013,10,21,19,30,94300,93200,92130,41.95,0,4.87,5.97,6.3100000000000005,6.5200000000000005,6.66,6.76,6.84,6.9,6.99,357.35,356.93,356.64,356.43,356.28000000000003,356.14,356.02,355.92,355.74,21.1,20.43,20.16,19.900000000000002,19.67,19.45,19.23,19.03,18.62,N/A,N/A +2013,10,21,20,30,94300,93200,92130,40.87,0,4.78,5.8500000000000005,6.18,6.38,6.5200000000000005,6.62,6.69,6.75,6.84,5.39,4.42,3.83,3.37,3.0100000000000002,2.7,2.44,2.21,1.81,21.43,20.79,20.53,20.28,20.05,19.830000000000002,19.61,19.41,19,N/A,N/A +2013,10,21,21,30,94280,93180,92110,40.71,0,5.04,6.28,6.65,6.86,7,7.1000000000000005,7.18,7.24,7.32,4.04,3.85,3.77,3.75,3.73,3.72,3.71,3.71,3.71,21.48,20.88,20.63,20.400000000000002,20.17,19.97,19.75,19.55,19.150000000000002,N/A,N/A +2013,10,21,22,30,94300,93200,92130,43.5,0,5,6.28,6.69,6.93,7.1000000000000005,7.22,7.32,7.390000000000001,7.5,11.540000000000001,11.950000000000001,12.11,12.200000000000001,12.24,12.27,12.27,12.26,12.22,21.18,20.67,20.44,20.22,20,19.8,19.59,19.39,18.990000000000002,N/A,N/A +2013,10,21,23,30,94330,93230,92160,47.61,0,5.62,7.25,7.68,7.94,8.120000000000001,8.25,8.33,8.39,8.45,26.68,26.35,26.16,26.01,25.85,25.71,25.580000000000002,25.46,25.2,20.04,19.71,19.53,19.330000000000002,19.13,18.94,18.740000000000002,18.55,18.150000000000002,N/A,N/A +2013,10,22,0,30,94410,93300,92220,57.15,0,3.25,5.68,6.68,7.42,7.96,8.370000000000001,8.63,8.84,9.07,25.64,25.69,25.88,26.32,26.77,27.2,27.51,27.77,27.96,18.150000000000002,18.34,18.32,18.240000000000002,18.11,17.97,17.79,17.62,17.240000000000002,N/A,N/A +2013,10,22,1,30,94470,93350,92270,65.68,0,1.57,3.8000000000000003,4.93,5.99,6.94,7.82,8.540000000000001,9.16,9.86,38.22,39.97,41.06,41.95,42.58,43.07,43.26,43.37,43.1,16.86,17.27,17.29,17.27,17.23,17.18,17.09,16.990000000000002,16.72,N/A,N/A +2013,10,22,2,30,94520,93400,92320,70.03,0,1.22,2.94,3.79,4.58,5.36,6.13,6.94,7.74,9.3,22.7,27.72,31.02,33.36,34.980000000000004,36.26,36.980000000000004,37.69,39.37,15.91,16.31,16.31,16.29,16.26,16.23,16.18,16.12,15.91,N/A,N/A +2013,10,22,3,30,94580,93460,92370,74.47,0,0.97,2.58,3.37,3.86,4.45,5.07,5.91,6.76,8.4,15.39,21.18,26.44,31.91,36.18,39.97,42.77,45.26,48.25,14.98,15.38,15.35,15.26,15.16,15.06,14.98,14.92,14.790000000000001,N/A,N/A +2013,10,22,4,30,94640,93520,92420,78.52,0,0.73,2.15,2.8000000000000003,2.98,3.35,3.79,4.61,5.48,7.4,314.61,348.65000000000003,11.44,21.89,29.79,36.76,40.63,44.230000000000004,48.88,14.13,14.530000000000001,14.48,14.35,14.21,14.08,14.01,13.96,13.950000000000001,N/A,N/A +2013,10,22,5,30,94690,93560,92470,77.92,0,1.9000000000000001,2.38,2.31,2.43,2.74,3.12,3.74,4.43,6.09,273.56,299.6,324.35,1.07,18.27,27.91,34.39,40.24,47.12,13.6,14,13.97,13.93,13.8,13.66,13.540000000000001,13.46,13.39,N/A,N/A +2013,10,22,6,30,94750,93620,92520,81.89,0,1.31,2.14,2.29,2.42,2.66,2.94,3.45,4.01,5.46,290.47,341.02,4.95,16.68,26.150000000000002,34.65,39.34,43.58,49.42,12.96,13.59,13.530000000000001,13.290000000000001,13.11,12.950000000000001,12.86,12.780000000000001,12.76,N/A,N/A +2013,10,22,7,30,94790,93660,92560,84.25,0,1.31,1.92,2,2.17,2.35,2.54,2.95,3.38,4.46,305.61,343.25,1.8800000000000001,15.36,22.12,26.44,31.720000000000002,36.86,45.75,12.33,12.94,12.9,12.72,12.530000000000001,12.36,12.32,12.280000000000001,12.19,N/A,N/A +2013,10,22,8,30,94820,93680,92580,87.22,0,1.7,2.75,2.83,2.8000000000000003,2.83,2.88,3.25,3.65,4.68,312.63,340.14,357.68,13.18,19.41,22.61,28.1,33.37,42.51,11.53,12.47,12.540000000000001,12.36,12.16,11.97,11.91,11.86,11.82,N/A,N/A +2013,10,22,9,30,94840,93700,92600,88.8,0,1.18,1.75,1.9000000000000001,2.2,2.41,2.58,2.87,3.19,3.95,333.01,1.51,14.72,23.43,26.38,27.38,29.55,32.09,38.88,10.99,11.78,11.84,11.76,11.59,11.4,11.24,11.13,11.06,N/A,N/A +2013,10,22,10,30,94870,93720,92620,88.85000000000001,0,0.81,1.08,1.16,1.4000000000000001,1.74,2.11,2.39,2.64,3.06,346.6,0.73,4.99,5.61,6.55,7.66,9.74,13.18,24.53,10.370000000000001,10.790000000000001,10.77,10.76,10.78,10.81,10.83,10.85,10.9,N/A,N/A +2013,10,22,11,30,94890,93740,92630,88.39,0,1.48,1.92,1.94,2.08,2.2600000000000002,2.44,2.66,2.87,3.29,335.22,358.23,8.9,17.06,18.7,18.580000000000002,17.6,17.89,23.150000000000002,10.09,10.78,10.78,10.67,10.5,10.34,10.3,10.3,10.46,N/A,N/A +2013,10,22,12,30,94920,93770,92660,89.17,0,0.8300000000000001,1.31,1.42,1.55,1.76,1.98,2.2600000000000002,2.52,3.06,324.47,350.56,1.85,8.040000000000001,9.86,10.67,13.52,17.1,25.86,9.51,10.19,10.200000000000001,10.11,9.950000000000001,9.81,9.84,9.91,10.16,N/A,N/A +2013,10,22,13,30,94930,93780,92660,91.42,0,0.65,0.9,1.03,1.32,1.69,2.09,2.46,2.81,3.3200000000000003,293.87,325.69,340.78000000000003,354.01,358.49,0.65,1.06,1.77,4.8500000000000005,8.5,9.17,9.32,9.44,9.47,9.47,9.41,9.43,9.72,N/A,N/A +2013,10,22,14,30,94950,93800,92690,79.62,0,0.68,0.8200000000000001,0.91,1.03,1.35,1.75,2.11,2.49,3.19,311.26,311.69,313.99,317.86,325.49,334.41,339.33,343.21,346.13,9.870000000000001,9.57,9.42,9.28,9.27,9.290000000000001,9.38,9.5,9.81,N/A,N/A +2013,10,22,15,30,94970,93830,92720,69.41,0,1.12,1.42,1.52,1.59,1.6400000000000001,1.68,1.7,1.75,1.93,307.7,309.55,310.79,311.94,313.03000000000003,314.01,315.03000000000003,316.54,322.23,12.33,11.91,11.71,11.52,11.33,11.16,10.96,10.78,10.4,N/A,N/A +2013,10,22,16,30,94960,93830,92730,58.410000000000004,0,1.2,1.41,1.46,1.49,1.51,1.52,1.53,1.54,1.57,306.64,311.31,314.16,316.7,319.21,321.46,323.90000000000003,326.16,330.7,14.89,14.41,14.18,13.98,13.77,13.59,13.39,13.21,12.83,N/A,N/A +2013,10,22,17,30,94910,93780,92690,48.2,0,1.06,1.21,1.23,1.24,1.25,1.25,1.25,1.25,1.26,304.26,309.16,312.13,314.86,317.45,319.75,322.25,324.54,329.07,16.93,16.42,16.18,15.96,15.74,15.55,15.35,15.16,14.77,N/A,N/A +2013,10,22,18,30,94860,93740,92660,36.050000000000004,0,0.6900000000000001,0.79,0.81,0.8200000000000001,0.8300000000000001,0.84,0.85,0.86,0.88,332.07,336.8,339.59000000000003,342.07,344.33,346.34000000000003,348.32,350.1,353.45,18.650000000000002,18.13,17.88,17.650000000000002,17.43,17.23,17.02,16.830000000000002,16.43,N/A,N/A +2013,10,22,19,30,94820,93710,92630,23.17,0,0.97,1.09,1.1,1.1,1.1,1.1,1.1,1.1,1.1,28.35,30.36,31.52,32.51,33.36,34.1,34.82,35.45,36.54,20.07,19.54,19.29,19.06,18.84,18.64,18.42,18.22,17.82,N/A,N/A +2013,10,22,20,30,94760,93650,92570,20.89,0,0.85,0.97,1,1.01,1.02,1.03,1.04,1.04,1.06,8.17,9.63,10.49,11.26,12,12.69,13.41,14.08,15.450000000000001,20.82,20.3,20.06,19.84,19.62,19.42,19.21,19.02,18.62,N/A,N/A +2013,10,22,21,30,94700,93600,92520,20.76,0,1.01,1.19,1.23,1.24,1.25,1.26,1.26,1.27,1.27,7.1000000000000005,8.83,9.83,10.73,11.620000000000001,12.44,13.33,14.14,15.82,21.38,20.89,20.66,20.44,20.23,20.04,19.830000000000002,19.63,19.23,N/A,N/A +2013,10,22,22,30,94670,93560,92490,21.18,0,1.12,1.21,1.21,1.19,1.17,1.1500000000000001,1.1300000000000001,1.11,1.08,6.79,10.540000000000001,12.68,14.55,16.31,17.87,19.54,21.06,24.23,21.63,21.2,20.990000000000002,20.78,20.580000000000002,20.39,20.18,19.990000000000002,19.59,N/A,N/A +2013,10,22,23,30,94650,93540,92470,25.66,0,0.4,0.51,0.54,0.56,0.5700000000000001,0.58,0.59,0.59,0.6,144.94,148.04,149.64000000000001,151,152.15,153.13,154.03,154.81,155.85,21.43,21.150000000000002,20.97,20.78,20.59,20.400000000000002,20.2,20.01,19.62,N/A,N/A +2013,10,23,0,30,94650,93540,92470,29.29,0,0.51,0.76,0.76,0.77,0.77,0.77,0.76,0.75,0.74,159.05,171.66,175.72,175.67000000000002,174.92000000000002,173.94,171.01,167.67000000000002,154.66,20.07,20.900000000000002,20.81,20.6,20.39,20.2,19.98,19.79,19.400000000000002,N/A,N/A +2013,10,23,1,30,94670,93560,92490,36.34,0,0.78,0.86,0.78,0.78,0.87,1,1.16,1.31,1.53,160.14000000000001,165.32,171.34,180.37,186.61,192.01,193.32,193.85,189.61,18.39,19.240000000000002,19.3,19.34,19.36,19.37,19.330000000000002,19.29,19.07,N/A,N/A +2013,10,23,2,30,94690,93570,92500,35.97,0,1.21,1.74,1.75,1.8,1.86,1.93,1.99,2.04,2.12,165.66,169.55,172.15,174.94,177.05,178.79,179.87,180.70000000000002,181.03,17.67,18.68,18.76,18.78,18.73,18.67,18.56,18.45,18.19,N/A,N/A +2013,10,23,3,30,94710,93590,92510,40.63,0,0.41000000000000003,0.37,0.36,0.47000000000000003,0.65,0.89,1.1400000000000001,1.41,1.8800000000000001,101.4,130.48,151.17000000000002,184.1,197.3,203.04,202.24,201.23000000000002,199.45000000000002,16.04,17.04,17.22,17.37,17.48,17.56,17.61,17.650000000000002,17.66,N/A,N/A +2013,10,23,4,30,94730,93610,92520,43.24,0,0.8300000000000001,1.32,1.42,1.54,1.67,1.79,1.94,2.1,2.45,132.85,145.94,154.32,162.66,169.65,175.83,179.84,183.11,186.17000000000002,15.35,16.46,16.68,16.86,16.98,17.06,17.09,17.11,17.07,N/A,N/A +2013,10,23,5,30,94740,93610,92520,48.15,0,0.5700000000000001,1.11,1.24,1.29,1.37,1.44,1.6400000000000001,1.85,2.37,113.27,124.88000000000001,134.67000000000002,145.28,157.46,169.25,178.15,185.56,192.39000000000001,14.09,15.21,15.49,15.76,15.98,16.17,16.32,16.44,16.56,N/A,N/A +2013,10,23,6,30,94760,93630,92540,53.45,0,0.16,0.71,0.98,0.99,1.1300000000000001,1.3,1.6,1.9100000000000001,2.52,65.74,96.08,124.08,143.82,162.64000000000001,180.96,187.97,193.39000000000001,195.21,12.59,13.950000000000001,14.450000000000001,14.92,15.3,15.610000000000001,15.81,15.96,16.13,N/A,N/A +2013,10,23,7,30,94790,93660,92560,58.300000000000004,0,0.18,0.3,0.37,0.5,0.7000000000000001,0.9400000000000001,1.23,1.55,2.23,293.82,66.69,124.81,159.59,180.28,197.23000000000002,199,199.89000000000001,197.27,11.26,13.07,13.67,14.06,14.32,14.52,14.700000000000001,14.88,15.23,N/A,N/A +2013,10,23,8,30,94790,93650,92550,61.56,0,0.05,0.28,0.43,0.46,0.5,0.54,0.8200000000000001,1.17,1.98,199.8,266.68,311.1,306.68,282.49,256.21,236.24,218.32,205.35,10.46,12.06,12.52,12.790000000000001,13.030000000000001,13.25,13.67,14.05,14.700000000000001,N/A,N/A +2013,10,23,9,30,94780,93630,92530,65.84,0,0.05,0.38,0.67,0.78,0.72,0.67,0.8,1.01,1.81,193.52,243.51,285.73,293.73,285.57,274.39,245.96,223.84,202.64000000000001,9.38,10.790000000000001,11.25,11.58,11.92,12.26,12.780000000000001,13.24,14.02,N/A,N/A +2013,10,23,10,30,94780,93640,92530,69.66,0,0.04,0.25,0.49,0.74,0.8,0.81,0.9,1.08,1.86,154.04,220.67000000000002,272.44,288.11,280.25,266.54,238.28,218.17000000000002,198.88,8.51,9.86,10.31,10.63,11.08,11.53,12.21,12.77,13.59,N/A,N/A +2013,10,23,11,30,94800,93640,92540,73.38,0,0.01,0.18,0.54,0.85,0.9400000000000001,0.96,0.98,1.12,1.86,99.34,184.41,286.81,295.16,286.07,272.29,245.78,226.35,203.93,7.73,9.13,9.58,9.870000000000001,10.35,10.86,11.620000000000001,12.23,13.120000000000001,N/A,N/A +2013,10,23,12,30,94810,93650,92550,76.84,0,0.09,0.23,0.36,0.6,0.66,0.6900000000000001,0.8300000000000001,1.07,1.9100000000000001,345.62,328.41,317.8,306.33,287.04,267.49,235.59,213.70000000000002,197.8,7.01,8.51,8.98,9.26,9.85,10.44,11.24,11.85,12.73,N/A,N/A +2013,10,23,13,30,94810,93650,92540,80.2,0,0.05,0.08,0.16,0.44,0.59,0.6900000000000001,0.88,1.1400000000000001,1.93,49.2,294.73,267.6,293.76,284.53000000000003,265.19,238.09,218.20000000000002,201.6,6.36,7.91,8.42,8.700000000000001,9.34,10,10.89,11.6,12.57,N/A,N/A +2013,10,23,14,30,94820,93670,92560,67.2,0,0.05,0.09,0.13,0.2,0.34,0.5700000000000001,0.92,1.35,2.23,100.84,117.29,162.6,253,252.74,224.25,209.77,198.11,191.26,7.99,7.76,8.07,8.620000000000001,9.46,10.27,11.11,11.78,12.71,N/A,N/A +2013,10,23,15,30,94820,93680,92580,55.22,0,0.35000000000000003,0.38,0.3,0.2,0.44,1.06,1.52,2.04,3.06,358.95,3.91,23.75,46.81,86.18,169,173.55,177.18,179.03,11.200000000000001,10.9,10.8,10.72,11.18,11.700000000000001,12.27,12.75,13.48,N/A,N/A +2013,10,23,16,30,94790,93660,92570,43.84,0,0.7000000000000001,0.92,1.01,1.1,1.21,1.31,1.47,1.69,2.47,88.49,105.7,115.7,124.24000000000001,131.69,138.43,144.97,151.51,165.99,15.44,15.040000000000001,14.86,14.71,14.56,14.42,14.290000000000001,14.16,14.040000000000001,N/A,N/A +2013,10,23,17,30,94760,93640,92560,30.45,0,3.11,3.85,4.07,4.19,4.2700000000000005,4.33,4.37,4.41,4.47,171.14000000000001,171.75,172.17000000000002,172.56,172.92000000000002,173.25,173.61,173.93,174.61,19.36,18.79,18.55,18.330000000000002,18.11,17.92,17.72,17.53,17.150000000000002,N/A,N/A +2013,10,23,18,30,94720,93610,92540,27.57,0,3.92,4.87,5.15,5.32,5.42,5.49,5.54,5.57,5.62,173.84,174.04,174.12,174.15,174.17000000000002,174.18,174.18,174.17000000000002,174.14000000000001,20.59,19.97,19.72,19.48,19.26,19.06,18.85,18.650000000000002,18.26,N/A,N/A +2013,10,23,19,30,94690,93580,92510,23.400000000000002,0,4.68,5.82,6.15,6.33,6.45,6.53,6.58,6.62,6.66,175.02,174.62,174.41,174.24,174.09,173.95000000000002,173.82,173.69,173.46,21.82,21.18,20.92,20.67,20.45,20.240000000000002,20.03,19.830000000000002,19.43,N/A,N/A +2013,10,23,20,30,94640,93540,92470,22.19,0,5.08,6.3100000000000005,6.68,6.87,6.99,7.08,7.140000000000001,7.18,7.23,170.48,170.52,170.55,170.56,170.58,170.6,170.62,170.63,170.67000000000002,22.41,21.78,21.53,21.29,21.07,20.86,20.64,20.45,20.04,N/A,N/A +2013,10,23,21,30,94600,93500,92430,23.79,0,4.8100000000000005,6.0200000000000005,6.38,6.58,6.71,6.8100000000000005,6.87,6.92,6.99,169.15,169.26,169.32,169.38,169.42000000000002,169.46,169.51,169.55,169.64000000000001,22.72,22.150000000000002,21.92,21.69,21.47,21.27,21.05,20.86,20.45,N/A,N/A +2013,10,23,22,30,94560,93460,92390,22.650000000000002,0,4.97,6.26,6.640000000000001,6.8500000000000005,6.99,7.1000000000000005,7.17,7.22,7.29,165.22,165.37,165.46,165.55,165.61,165.67000000000002,165.74,165.8,165.92000000000002,22.740000000000002,22.3,22.09,21.88,21.67,21.48,21.27,21.080000000000002,20.68,N/A,N/A +2013,10,23,23,30,94540,93430,92370,27.060000000000002,0,3.67,5.44,6.03,6.46,6.79,7.0600000000000005,7.2700000000000005,7.44,7.7,163.65,163.79,163.92000000000002,164.08,164.26,164.44,164.59,164.72,164.92000000000002,21.82,21.78,21.69,21.56,21.400000000000002,21.25,21.06,20.89,20.51,N/A,N/A +2013,10,24,0,30,94550,93440,92370,35.7,0,3.49,6.3500000000000005,7.28,8.040000000000001,8.58,8.98,9.17,9.31,9.34,161.05,162.25,162.95000000000002,163.49,163.83,164.05,164.05,164.02,163.70000000000002,19.57,20.67,20.89,20.96,20.900000000000002,20.79,20.61,20.44,20.06,N/A,N/A +2013,10,24,1,30,94560,93450,92380,42.45,0,3.13,6.03,6.96,7.74,8.370000000000001,8.91,9.28,9.6,9.93,150.27,150.70000000000002,151.25,152.08,153.07,154.08,155.07,155.98,157.54,18.51,19.88,20.21,20.42,20.48,20.490000000000002,20.39,20.27,19.92,N/A,N/A +2013,10,24,2,30,94570,93460,92390,47.18,0,2.95,5.8500000000000005,6.86,7.82,8.700000000000001,9.53,10.21,10.8,11.51,142.76,145.14000000000001,146.84,148.56,150.63,152.76,154.81,156.67000000000002,159.39000000000001,17.56,18.88,19.21,19.5,19.72,19.900000000000002,19.98,20.03,19.92,N/A,N/A +2013,10,24,3,30,94580,93470,92390,40.6,0,4.03,7.24,8.51,9.68,10.700000000000001,11.620000000000001,12.280000000000001,12.81,13.16,148.52,151.29,152.95000000000002,154.24,155.48,156.64000000000001,157.69,158.66,160.43,17.5,18.44,18.75,19.01,19.23,19.41,19.52,19.6,19.580000000000002,N/A,N/A +2013,10,24,4,30,94580,93460,92390,37.03,0,4.43,7.88,9.31,10.57,11.66,12.61,13.39,14.06,14.89,155.03,158.05,159.65,160.6,161.45000000000002,162.24,163.22,164.17000000000002,166.13,17.27,18.12,18.400000000000002,18.63,18.8,18.93,19.03,19.1,19.13,N/A,N/A +2013,10,24,5,30,94590,93470,92390,45.660000000000004,0,2.67,5.86,7.2700000000000005,8.65,9.86,10.97,11.97,12.870000000000001,14.290000000000001,138.86,148.42000000000002,153.84,156.81,159.11,161.06,162.94,164.71,167.86,15.6,16.82,17.07,17.3,17.490000000000002,17.650000000000002,17.8,17.93,18.14,N/A,N/A +2013,10,24,6,30,94600,93480,92400,49.230000000000004,0,2.58,5.37,6.55,7.79,8.96,10.06,11,11.84,13.11,146.18,152.1,155.65,158.37,160.8,163.02,165.11,167.04,170.15,14.82,16.07,16.34,16.59,16.84,17.06,17.31,17.52,17.88,N/A,N/A +2013,10,24,7,30,94620,93500,92410,51.11,0,2.88,5.47,6.44,7.5200000000000005,8.64,9.75,10.77,11.700000000000001,13.23,140.97,147.38,151.58,155.47,158.76,161.74,163.95000000000002,165.92000000000002,168.6,14.21,15.42,15.66,15.870000000000001,16.11,16.34,16.61,16.86,17.31,N/A,N/A +2013,10,24,8,30,94650,93520,92430,53.44,0,2.98,5.69,6.62,7.53,8.56,9.6,10.58,11.49,13.06,133.4,142.47,147.78,151.79,155.41,158.8,161.42000000000002,163.77,167.29,13.370000000000001,14.57,14.85,15.14,15.370000000000001,15.57,15.84,16.09,16.6,N/A,N/A +2013,10,24,9,30,94660,93530,92440,57.31,0,2.27,4.38,5.25,6.2700000000000005,7.24,8.16,9.07,9.950000000000001,11.58,121.73,134.07,141.71,148.05,152.75,156.71,159.86,162.72,167.18,12.14,13.3,13.58,13.86,14.16,14.44,14.77,15.07,15.68,N/A,N/A +2013,10,24,10,30,94690,93560,92460,59.27,0,1.32,2.95,3.7600000000000002,4.61,5.41,6.18,7.03,7.83,9.27,112.09,130.07,140.71,147.06,151.64000000000001,155.47,158.79,161.71,165.65,11.51,12.58,12.81,13.040000000000001,13.24,13.43,13.72,13.97,14.36,N/A,N/A +2013,10,24,11,30,94720,93590,92490,59.44,0,1.19,2.58,3.29,4.1,4.8100000000000005,5.46,6.13,6.7700000000000005,8.05,115.29,131.01,140.84,148.13,152.64000000000001,155.97,158.21,160.20000000000002,163.05,11.05,12.01,12.290000000000001,12.61,12.870000000000001,13.09,13.27,13.43,13.72,N/A,N/A +2013,10,24,12,30,94760,93620,92520,59.870000000000005,0,1.16,2.39,2.94,3.52,4.11,4.71,5.33,5.93,7.17,120.94,135.19,143.97,150.68,155.19,158.77,160.81,162.56,164.93,10.73,11.77,12.05,12.290000000000001,12.5,12.68,12.84,12.98,13.22,N/A,N/A +2013,10,24,13,30,94790,93650,92550,62.67,0,1.46,2.52,2.84,3.23,3.73,4.2700000000000005,4.87,5.48,6.7700000000000005,125.07000000000001,131.79,137.56,144.56,150.22,155.27,158.15,160.68,164.24,10.23,11.17,11.32,11.48,11.71,11.93,12.11,12.280000000000001,12.620000000000001,N/A,N/A +2013,10,24,14,30,94820,93680,92580,51.57,0,1.49,2.14,2.6,3.18,3.75,4.32,4.92,5.5200000000000005,6.73,103.27,123.63000000000001,135.21,143.77,149.9,155.02,158.21,160.93,164.37,11.74,11.65,11.700000000000001,11.78,11.88,11.97,12.09,12.200000000000001,12.46,N/A,N/A +2013,10,24,15,30,94850,93720,92620,44.04,0,2.5,3.19,3.43,3.59,3.72,3.84,4.04,4.3500000000000005,5.62,149.89000000000001,152.6,154.31,155.71,157.07,158.31,159.81,161.33,164.48,14.870000000000001,14.44,14.25,14.07,13.89,13.73,13.56,13.41,13.17,N/A,N/A +2013,10,24,16,30,94840,93710,92620,40.11,0,3.39,4.26,4.5600000000000005,4.75,4.88,4.99,5.1000000000000005,5.2,5.46,156.9,157.59,158.03,158.43,158.82,159.17000000000002,159.6,160.01,160.96,17.21,16.68,16.45,16.240000000000002,16.04,15.860000000000001,15.68,15.5,15.16,N/A,N/A +2013,10,24,17,30,94810,93690,92610,36.22,0,4.64,5.84,6.22,6.44,6.59,6.7,6.78,6.8500000000000005,6.97,163.58,163.61,163.62,163.63,163.65,163.66,163.69,163.72,163.83,19.51,18.89,18.64,18.41,18.2,18,17.8,17.61,17.23,N/A,N/A +2013,10,24,18,30,94780,93670,92600,33.14,0,5.61,7,7.44,7.67,7.82,7.930000000000001,7.99,8.040000000000001,8.09,165.33,165.35,165.37,165.37,165.37,165.37,165.38,165.38,165.4,21.11,20.45,20.18,19.94,19.71,19.51,19.29,19.09,18.69,N/A,N/A +2013,10,24,19,30,94760,93650,92580,32.32,0,5.75,7.16,7.59,7.82,7.98,8.08,8.15,8.2,8.26,161.58,161.72,161.8,161.83,161.87,161.88,161.9,161.92000000000002,161.95000000000002,22.14,21.47,21.21,20.96,20.73,20.52,20.3,20.11,19.7,N/A,N/A +2013,10,24,20,30,94730,93630,92570,31.85,0,5.51,6.87,7.28,7.5,7.65,7.75,7.82,7.88,7.94,160.83,160.97,161.04,161.07,161.09,161.1,161.11,161.12,161.14000000000001,22.78,22.14,21.88,21.64,21.42,21.21,20.990000000000002,20.79,20.38,N/A,N/A +2013,10,24,21,30,94700,93600,92530,31.91,0,5.41,6.7700000000000005,7.18,7.41,7.5600000000000005,7.66,7.73,7.79,7.86,154.94,155.13,155.23,155.29,155.32,155.36,155.38,155.41,155.44,23,22.42,22.19,21.95,21.73,21.52,21.31,21.11,20.71,N/A,N/A +2013,10,24,22,30,94690,93590,92520,34.480000000000004,0,5.36,6.78,7.23,7.49,7.66,7.79,7.890000000000001,7.96,8.06,149.86,149.91,149.95000000000002,149.96,149.96,149.97,149.97,149.98,149.99,22.8,22.34,22.14,21.92,21.71,21.51,21.3,21.1,20.7,N/A,N/A +2013,10,24,23,30,94680,93580,92510,36.33,0,3.88,5.6000000000000005,6.22,6.69,7.05,7.3500000000000005,7.57,7.7700000000000005,8.040000000000001,141.84,141.84,141.91,142.02,142.22,142.44,142.72,142.99,143.55,21.95,21.81,21.68,21.52,21.35,21.18,21,20.81,20.43,N/A,N/A +2013,10,25,0,30,94710,93600,92530,46.54,0,2.71,5.51,6.57,7.57,8.370000000000001,9.02,9.44,9.78,10.08,128.75,131.88,134.09,136.08,137.74,139.18,140.16,140.96,141.83,19.19,20.3,20.53,20.69,20.73,20.71,20.59,20.46,20.11,N/A,N/A +2013,10,25,1,30,94750,93640,92560,50.97,0,2.7,5.01,5.74,6.48,7.19,7.87,8.45,8.96,9.63,123,127.04,129.71,132.14000000000001,134.34,136.38,138.05,139.51,141.45000000000002,17.72,18.71,18.94,19.16,19.35,19.51,19.61,19.68,19.6,N/A,N/A +2013,10,25,2,30,94780,93660,92590,50.77,0,3.0300000000000002,5.96,7.2,8.51,9.75,10.92,11.73,12.38,12.82,141,139.79,139.62,140.5,141.70000000000002,143.02,143.79,144.35,144.45000000000002,17.240000000000002,18.3,18.63,18.95,19.22,19.46,19.580000000000002,19.650000000000002,19.51,N/A,N/A +2013,10,25,3,30,94800,93680,92600,47.99,0,3.6,6.59,7.8500000000000005,9.07,10.23,11.34,12.25,13.01,13.72,141.06,140.41,140.12,140.03,140.55,141.33,142.20000000000002,142.97,143.75,16.81,17.64,17.92,18.17,18.41,18.62,18.79,18.91,18.93,N/A,N/A +2013,10,25,4,30,94820,93700,92620,55.93,0,2.79,5.86,7.12,8.36,9.540000000000001,10.66,11.66,12.540000000000001,13.63,136.81,135.91,135.55,135.64000000000001,136.68,138.09,139.78,141.34,143.66,15.64,16.69,16.95,17.18,17.42,17.650000000000002,17.89,18.09,18.35,N/A,N/A +2013,10,25,5,30,94840,93720,92630,54.84,0,3.2800000000000002,6.32,7.58,8.790000000000001,9.93,11,12,12.89,14.06,137.54,135.54,134.52,134.08,134.7,135.71,137.47,139.16,142.19,15.540000000000001,16.42,16.67,16.87,17.080000000000002,17.27,17.5,17.71,18.02,N/A,N/A +2013,10,25,6,30,94870,93740,92660,59.64,0,2.72,5.65,6.84,7.99,9.09,10.120000000000001,11.08,11.950000000000001,13.3,137.48,134.02,132.19,131.3,131.66,132.51,134.22,135.93,139.55,15.030000000000001,16.01,16.22,16.39,16.55,16.7,16.9,17.080000000000002,17.42,N/A,N/A +2013,10,25,7,30,94910,93780,92700,57.34,0,2.88,5.54,6.69,7.7700000000000005,8.8,9.8,10.76,11.67,13.32,141.4,137.82,135.47,133.44,132.76,132.63,133.65,134.78,137.83,15.27,15.81,15.94,16.02,16.080000000000002,16.14,16.22,16.3,16.51,N/A,N/A +2013,10,25,8,30,94920,93800,92710,57.02,0,2.77,5.37,6.49,7.51,8.52,9.51,10.51,11.47,13.290000000000001,135.65,134.52,133.48,132.22,132.22,132.69,134.2,135.8,139.72,15.05,15.55,15.65,15.68,15.71,15.74,15.82,15.9,16.12,N/A,N/A +2013,10,25,9,30,94920,93790,92700,57.980000000000004,0,3.83,6.5600000000000005,7.69,8.67,9.56,10.38,11.200000000000001,11.98,13.55,138.17000000000002,137.9,137.66,137.39000000000001,137.46,137.65,138.27,138.96,140.99,15.49,15.74,15.75,15.72,15.69,15.65,15.620000000000001,15.59,15.58,N/A,N/A +2013,10,25,10,30,94970,93840,92740,71.26,0,2.5100000000000002,5.33,6.49,7.5600000000000005,8.540000000000001,9.450000000000001,10.4,11.31,13.09,134.92000000000002,134.86,134.78,134.65,135.05,135.62,136.9,138.29,141.98,14.21,14.85,14.89,14.89,14.86,14.84,14.82,14.8,14.780000000000001,N/A,N/A +2013,10,25,11,30,95010,93880,92790,76.56,0,2.41,5.04,6.140000000000001,7.16,8.14,9.07,10,10.89,12.530000000000001,136.4,135.89000000000001,135.45,134.97,135.22,135.75,137.36,139.12,143.91,13.88,14.33,14.35,14.34,14.3,14.26,14.21,14.17,14.120000000000001,N/A,N/A +2013,10,25,12,30,95040,93910,92810,79.81,0,3.0700000000000003,5.49,6.46,7.2700000000000005,7.99,8.65,9.28,9.89,11.040000000000001,137.56,138.36,138.77,139,139.70000000000002,140.53,142.07,143.68,147.72,13.59,13.84,13.85,13.82,13.77,13.72,13.68,13.64,13.61,N/A,N/A +2013,10,25,13,30,95090,93950,92850,90.73,0,2.14,4.54,5.48,6.3100000000000005,7.1000000000000005,7.8500000000000005,8.57,9.23,10.35,132.24,134.03,134.84,135.08,136.2,137.59,139.95000000000002,142.32,147.65,12.67,13.3,13.36,13.36,13.34,13.32,13.3,13.290000000000001,13.290000000000001,N/A,N/A +2013,10,25,14,30,95120,93990,92890,86.01,0,3.58,5,5.59,6.12,6.5600000000000005,6.92,7.38,7.8100000000000005,8.66,137.68,138.93,139.72,140.42000000000002,140.94,141.37,142.13,142.88,144.53,14.63,14.370000000000001,14.22,14.06,13.89,13.74,13.59,13.46,13.24,N/A,N/A +2013,10,25,15,30,95160,94020,92930,89.66,0,4.8500000000000005,6.2,6.640000000000001,6.95,7.21,7.44,7.73,8.040000000000001,9.05,136.26,137.54,138.36,139.11,139.92000000000002,140.70000000000002,141.71,142.74,145.62,14.98,14.61,14.43,14.23,14.030000000000001,13.85,13.64,13.46,13.13,N/A,N/A +2013,10,25,16,30,95130,94000,92910,80.01,0,5.42,6.87,7.3500000000000005,7.63,7.82,7.97,8.09,8.19,8.35,140.29,140.81,141.17000000000002,141.45000000000002,141.70000000000002,141.91,142.16,142.38,142.9,16.6,15.97,15.72,15.49,15.27,15.07,14.870000000000001,14.68,14.31,N/A,N/A +2013,10,25,17,30,95090,93970,92890,69.92,0,5.28,6.75,7.25,7.5600000000000005,7.78,7.95,8.08,8.18,8.35,145.23,146.16,146.63,146.99,147.3,147.57,147.83,148.05,148.5,18.47,17.98,17.75,17.53,17.31,17.11,16.9,16.7,16.3,N/A,N/A +2013,10,25,18,30,95040,93920,92840,64.17,0,4.23,5.22,5.55,5.72,5.84,5.93,5.99,6.05,6.13,151.39000000000001,150.91,150.61,150.3,150.03,149.78,149.55,149.35,149.01,19.240000000000002,18.580000000000002,18.32,18.080000000000002,17.86,17.66,17.45,17.26,16.88,N/A,N/A +2013,10,25,19,30,95020,93910,92830,69.96000000000001,0,3.11,4.12,4.5,4.75,4.95,5.11,5.25,5.37,5.59,159.95000000000002,159.87,159.96,160.07,160.20000000000002,160.33,160.49,160.66,161.06,18.79,18.47,18.3,18.1,17.92,17.740000000000002,17.54,17.36,16.990000000000002,N/A,N/A +2013,10,25,20,30,94960,93850,92780,56.39,0,4.49,5.55,5.91,6.11,6.25,6.3500000000000005,6.44,6.5,6.6000000000000005,159.17000000000002,159.4,159.5,159.6,159.67000000000002,159.74,159.81,159.87,160,20.900000000000002,20.240000000000002,19.98,19.73,19.5,19.29,19.07,18.87,18.46,N/A,N/A +2013,10,25,21,30,94900,93790,92720,58.49,0,4.09,5.33,5.66,5.88,6.04,6.16,6.26,6.34,6.48,173.41,173.4,173.19,172.96,172.69,172.44,172.16,171.89000000000001,171.33,20.57,20.21,20.02,19.82,19.62,19.43,19.22,19.04,18.64,N/A,N/A +2013,10,25,22,30,94850,93740,92670,56.230000000000004,0,4.1,5.17,5.51,5.71,5.86,5.97,6.0600000000000005,6.13,6.26,154.68,154.59,154.6,154.6,154.62,154.64000000000001,154.68,154.72,154.82,21.17,20.67,20.45,20.240000000000002,20.02,19.830000000000002,19.62,19.43,19.03,N/A,N/A +2013,10,25,23,30,94790,93690,92620,58.14,0,6.2700000000000005,8.22,8.8,9.120000000000001,9.41,9.69,9.92,10.11,10.39,144.76,145.85,146.3,146.43,146.72,147.09,147.4,147.67000000000002,148.01,20.62,20.34,20.16,19.97,19.78,19.6,19.400000000000002,19.23,18.86,N/A,N/A +2013,10,26,0,30,94730,93620,92550,64,0,4.66,7.29,8.370000000000001,9.27,10,10.63,11.15,11.6,12.27,151.76,151.9,151.9,151.84,151.76,151.69,151.59,151.5,151.21,19.55,19.59,19.54,19.45,19.35,19.25,19.12,19,18.72,N/A,N/A +2013,10,26,1,30,94750,93640,92570,61.71,0,4.68,6.94,7.930000000000001,8.77,9.48,10.09,10.65,11.16,12.040000000000001,149.23,149.27,149.25,149.13,149.03,148.94,148.88,148.85,148.9,19.71,19.61,19.52,19.400000000000002,19.29,19.17,19.04,18.93,18.67,N/A,N/A +2013,10,26,2,30,94750,93640,92570,76.08,0,1.29,3.1,4.15,5.41,6.5200000000000005,7.5200000000000005,8.370000000000001,9.15,10.38,91.7,119.63,136.74,142.27,145.54,147.23,148.29,149.19,150.74,17.68,18.330000000000002,18.48,18.61,18.69,18.740000000000002,18.73,18.72,18.61,N/A,N/A +2013,10,26,3,30,94730,93620,92540,73.98,0,3.13,5.8,6.99,8.06,9.03,9.93,10.74,11.48,12.55,143.4,145.8,147.44,148.69,150.01,151.35,152.69,153.96,156.51,17.6,18.16,18.36,18.53,18.68,18.81,18.900000000000002,18.97,18.98,N/A,N/A +2013,10,26,4,30,94680,93570,92490,70.86,0,4.74,7.36,8.43,9.38,10.26,11.08,11.89,12.64,13.88,151.24,151.36,151.49,151.79,152.4,153.14000000000001,154.05,154.93,156.38,17.84,18.07,18.14,18.23,18.330000000000002,18.43,18.53,18.61,18.68,N/A,N/A +2013,10,26,5,30,94690,93570,92490,79.66,0,4.0200000000000005,6.62,7.71,8.65,9.5,10.290000000000001,11.07,11.81,13.25,151.42000000000002,152.25,152.71,152.93,153.09,153.20000000000002,153.27,153.35,153.62,17.25,17.43,17.42,17.37,17.29,17.21,17.12,17.04,16.87,N/A,N/A +2013,10,26,6,30,94680,93560,92480,88.76,0,4.65,7.29,8.45,9.49,10.46,11.35,12.24,13.07,14.66,152.06,153.02,153.49,153.65,153.69,153.68,153.66,153.65,153.82,16.48,16.55,16.52,16.47,16.4,16.34,16.26,16.18,16.01,N/A,N/A +2013,10,26,7,30,94680,93560,92480,93.36,0,4.89,7.4,8.44,9.34,10.120000000000001,10.82,11.5,12.13,13.41,150.98,152.15,152.86,153.4,153.87,154.29,154.75,155.18,156.15,16.37,16.35,16.28,16.18,16.07,15.96,15.84,15.73,15.530000000000001,N/A,N/A +2013,10,26,8,30,94650,93530,92450,92.36,0,7.63,10.5,11.5,12.290000000000001,12.94,13.49,14,14.46,15.34,160.25,160.66,160.92000000000002,161.15,161.39000000000001,161.61,161.86,162.1,162.64000000000001,17.13,17.05,16.95,16.81,16.67,16.54,16.39,16.25,15.97,N/A,N/A +2013,10,26,9,30,94640,93520,92450,90.53,0,7.84,10.53,11.42,12.1,12.65,13.1,13.52,13.89,14.58,164.69,164.95000000000002,165.15,165.34,165.53,165.71,165.9,166.09,166.48,17.5,17.31,17.18,17.02,16.85,16.69,16.51,16.35,16.01,N/A,N/A +2013,10,26,10,30,94630,93520,92440,90.85000000000001,0,7.390000000000001,9.85,10.68,11.3,11.8,12.23,12.61,12.96,13.61,160.87,161.39000000000001,161.71,162.02,162.33,162.62,162.94,163.24,163.88,17.63,17.400000000000002,17.25,17.080000000000002,16.91,16.740000000000002,16.57,16.4,16.06,N/A,N/A +2013,10,26,11,30,94650,93530,92450,91.72,0,6.65,8.98,9.790000000000001,10.43,10.950000000000001,11.4,11.8,12.16,12.82,167.65,167.99,168.19,168.37,168.5,168.6,168.66,168.71,168.72,17.38,17.11,16.95,16.76,16.57,16.39,16.2,16.03,15.69,N/A,N/A +2013,10,26,12,30,94660,93540,92460,91.42,0,6.63,9.1,9.950000000000001,10.61,11.15,11.620000000000001,12.040000000000001,12.42,13.13,162.85,163.25,163.49,163.75,164.01,164.27,164.56,164.83,165.37,17.150000000000002,17.01,16.89,16.740000000000002,16.580000000000002,16.42,16.240000000000002,16.080000000000002,15.74,N/A,N/A +2013,10,26,13,30,94660,93540,92460,90.3,0,6.0600000000000005,8.25,9.07,9.73,10.28,10.75,11.19,11.6,12.32,164.35,164.61,164.79,165,165.24,165.49,165.79,166.07,166.67000000000002,17.34,17.09,16.94,16.77,16.59,16.42,16.25,16.080000000000002,15.75,N/A,N/A +2013,10,26,14,30,94690,93580,92500,86.34,0,5.93,7.76,8.44,9,9.52,10.01,10.57,11.08,11.8,166.08,166.17000000000002,166.27,166.41,166.56,166.71,166.86,166.99,167.13,17.77,17.41,17.23,17.04,16.86,16.69,16.52,16.36,16.01,N/A,N/A +2013,10,26,15,30,94710,93600,92520,86.08,0,5.33,6.96,7.6000000000000005,8.11,8.540000000000001,8.91,9.27,9.620000000000001,10.450000000000001,173.99,173.87,173.81,173.74,173.66,173.57,173.5,173.44,173.35,18.28,17.89,17.7,17.5,17.31,17.13,16.95,16.78,16.44,N/A,N/A +2013,10,26,16,30,94720,93610,92530,82.03,0,4.95,6.390000000000001,6.9,7.25,7.5200000000000005,7.72,7.9,8.05,8.34,177.01,177.12,177.17000000000002,177.24,177.31,177.39000000000001,177.47,177.55,177.73,19.04,18.52,18.29,18.07,17.86,17.67,17.46,17.28,16.9,N/A,N/A +2013,10,26,17,30,94710,93610,92540,75.06,0,4.53,5.65,6.05,6.28,6.45,6.5600000000000005,6.63,6.7,6.78,181.9,181.96,181.85,181.82,181.82,181.84,181.87,181.91,181.99,20.04,19.490000000000002,19.26,19.02,18.81,18.6,18.39,18.2,17.81,N/A,N/A +2013,10,26,18,30,94680,93580,92520,67.38,0,3.35,4.08,4.33,4.47,4.57,4.63,4.68,4.72,4.78,188.31,186.84,185.86,185.32,184.95000000000002,184.70000000000002,184.53,184.41,184.29,21.490000000000002,20.87,20.6,20.36,20.13,19.93,19.72,19.52,19.13,N/A,N/A +2013,10,26,19,30,94650,93560,92490,63.13,0,3.37,4.07,4.3,4.42,4.49,4.53,4.55,4.57,4.5600000000000005,175.70000000000002,176.12,176.4,176.68,176.95000000000002,177.21,177.48,177.75,178.3,22.66,22.02,21.75,21.490000000000002,21.26,21.05,20.830000000000002,20.63,20.23,N/A,N/A +2013,10,26,20,30,94590,93500,92440,57.21,0,3.22,3.93,4.16,4.2700000000000005,4.34,4.38,4.4,4.42,4.41,184.34,183.75,183.35,183.06,182.82,182.63,182.45000000000002,182.3,182.01,23.54,22.96,22.71,22.46,22.240000000000002,22.03,21.82,21.62,21.22,N/A,N/A +2013,10,26,21,30,94530,93440,92390,55.410000000000004,0,3.2600000000000002,3.96,4.17,4.26,4.32,4.3500000000000005,4.37,4.39,4.39,180.29,179.58,179.66,179.64000000000001,179.62,179.57,179.51,179.45000000000002,179.29,23.85,23.34,23.12,22.89,22.69,22.48,22.28,22.09,21.7,N/A,N/A +2013,10,26,22,30,94480,93400,92340,55.06,0,3.9,4.8100000000000005,5.04,5.16,5.22,5.26,5.26,5.26,5.22,173.94,174.81,175.24,175.57,175.84,176.09,176.33,176.54,176.97,24.310000000000002,23.8,23.57,23.34,23.13,22.93,22.72,22.53,22.13,N/A,N/A +2013,10,26,23,30,94490,93410,92350,57.72,0,2.99,3.74,3.98,4.08,4.15,4.19,4.22,4.24,4.26,178.21,179.07,179.64000000000001,180.02,180.3,180.5,180.66,180.81,181.05,23.62,23.3,23.13,22.92,22.73,22.54,22.34,22.150000000000002,21.77,N/A,N/A +2013,10,27,0,30,94510,93420,92360,66.4,0,1.59,2.91,3.2,3.31,3.4,3.49,3.5700000000000003,3.65,3.79,140.14000000000001,144.86,147.59,148.59,149.64000000000001,150.74,151.65,152.46,153.8,22.51,23.01,22.990000000000002,22.81,22.63,22.45,22.26,22.080000000000002,21.7,N/A,N/A +2013,10,27,1,30,94540,93440,92390,72.9,0,1.8800000000000001,3.41,3.83,4.2700000000000005,4.58,4.8,4.88,4.91,4.9,112.75,127.51,136.77,143.06,147.58,150.67000000000002,152.3,153.36,154.70000000000002,21.32,21.990000000000002,22.17,22.29,22.32,22.27,22.13,21.98,21.61,N/A,N/A +2013,10,27,2,30,94550,93450,92390,75.35000000000001,0,2.2,3.5700000000000003,3.7800000000000002,3.98,4.14,4.2700000000000005,4.37,4.46,4.58,134.34,138.70000000000002,141.89000000000001,145.67000000000002,148.95000000000002,151.92000000000002,154.41,156.59,159.81,20.76,21.43,21.6,21.75,21.79,21.78,21.69,21.59,21.28,N/A,N/A +2013,10,27,3,30,94540,93450,92380,75.61,0,2.39,3.84,4.0600000000000005,4.22,4.32,4.4,4.46,4.5,4.64,135.31,138.77,141.55,145.12,148.09,150.68,152.57,154.14000000000001,156.54,20.27,20.93,21.12,21.29,21.37,21.39,21.330000000000002,21.25,21.01,N/A,N/A +2013,10,27,4,30,94550,93450,92390,78.11,0,1.71,3.0500000000000003,3.4,3.71,3.95,4.14,4.28,4.39,4.5600000000000005,146.94,147.51,148.41,150.12,152.24,154.65,157.4,160.03,165.18,19.86,20.55,20.67,20.76,20.82,20.85,20.84,20.830000000000002,20.69,N/A,N/A +2013,10,27,5,30,94550,93440,92380,82.36,0,0.63,1.31,1.6,1.8900000000000001,2.19,2.48,2.7600000000000002,3.0300000000000002,3.49,113.96000000000001,131.07,142.25,149.94,155.81,160.52,163.71,166.46,169.96,19.22,19.87,19.98,20.080000000000002,20.14,20.18,20.18,20.18,20.12,N/A,N/A +2013,10,27,6,30,94580,93480,92410,89.34,0,2.06,2.88,2.68,2.33,2.0100000000000002,1.73,1.43,1.21,1.09,30.39,36.410000000000004,41.24,47.46,54.51,61.26,74.59,86.96000000000001,125.95,18.05,18.57,18.650000000000002,18.66,18.67,18.66,18.66,18.66,18.63,N/A,N/A +2013,10,27,7,30,94590,93480,92410,87.67,0,0.77,2.19,3.0500000000000003,3.89,4.6000000000000005,5.22,5.68,6.09,6.54,349.61,356.22,0.14,1.29,1.83,2.06,1.97,1.79,0.88,17.92,18.48,18.54,18.57,18.580000000000002,18.57,18.55,18.52,18.37,N/A,N/A +2013,10,27,8,30,94620,93520,92440,75.52,0,2.5,3.8000000000000003,4.44,5.01,5.51,5.96,6.390000000000001,6.8,7.57,10.17,14.55,17.990000000000002,20.330000000000002,22.29,23.990000000000002,25.2,26.19,27.04,18.22,18.150000000000002,18.1,18.03,17.98,17.92,17.86,17.8,17.650000000000002,N/A,N/A +2013,10,27,9,30,94600,93480,92400,75.65,0,0.44,2.13,3.7600000000000002,5.24,6.43,7.390000000000001,8.040000000000001,8.58,9.08,125.51,73.79,29.2,27.04,26.68,27.310000000000002,28.72,30.240000000000002,34.2,16.29,16.48,16.37,16.26,16.18,16.1,16.03,15.96,15.88,N/A,N/A +2013,10,27,10,30,94620,93500,92410,75.72,0,2.68,3.23,3.21,3.5,3.71,3.89,4.05,4.2700000000000005,5.3100000000000005,311.19,328.84000000000003,343.23,3.52,13.8,19.240000000000002,22.75,25.66,29.46,15.36,15.780000000000001,15.790000000000001,15.65,15.49,15.32,15.1,14.9,14.55,N/A,N/A +2013,10,27,11,30,94650,93530,92430,83.54,0,1.86,2.94,3.25,3.9,4.4,4.8100000000000005,5.01,5.23,6.15,298.7,314.72,327.16,343.51,354.58,2.69,9.16,14.72,23.26,14.200000000000001,14.58,14.530000000000001,14.42,14.32,14.23,14.08,13.93,13.67,N/A,N/A +2013,10,27,12,30,94670,93540,92450,87.42,0,2,3.12,3.46,4.15,4.68,5.1000000000000005,5.28,5.5,6.390000000000001,307.52,328.58,341.64,354.43,2.86,8.83,13.450000000000001,17.38,23.53,13.540000000000001,13.93,13.88,13.77,13.68,13.6,13.44,13.290000000000001,12.93,N/A,N/A +2013,10,27,13,30,94700,93570,92470,84.98,0,1.84,2.63,3.0700000000000003,3.63,4.09,4.47,4.8100000000000005,5.11,5.65,332.08,350.97,2.13,9.76,14.620000000000001,17.98,20.48,22.68,26.080000000000002,13.540000000000001,13.26,13.08,12.88,12.71,12.56,12.41,12.26,11.89,N/A,N/A +2013,10,27,14,30,94700,93570,92470,85.92,0,1.8900000000000001,2.58,2.92,3.2800000000000002,3.63,3.97,4.2,4.4,4.75,11.85,11.86,12.040000000000001,12.540000000000001,13.370000000000001,14.32,14.93,15.42,16.1,14.290000000000001,13.98,13.82,13.66,13.48,13.31,13.120000000000001,12.93,12.5,N/A,N/A +2013,10,27,15,30,94730,93600,92510,85.71000000000001,0,3.98,4.89,5.11,5.2,5.23,5.23,5.2,5.17,5.04,3.68,5.71,6.96,8.09,9.18,10.21,11.41,12.57,15.47,14.68,14.290000000000001,14.1,13.91,13.71,13.530000000000001,13.33,13.15,12.77,N/A,N/A +2013,10,27,16,30,94700,93580,92490,81.46000000000001,0,1.3800000000000001,1.72,1.83,1.9000000000000001,1.95,2,2.04,2.07,2.13,10.74,11.33,11.66,11.96,12.22,12.450000000000001,12.68,12.9,13.32,15.620000000000001,15.21,15.01,14.81,14.61,14.42,14.21,14.030000000000001,13.63,N/A,N/A +2013,10,27,17,30,94660,93540,92450,74.99,0,2.22,2.68,2.81,2.87,2.9,2.93,2.94,2.95,2.95,26.2,25.75,25.35,25.05,24.77,24.52,24.25,24.01,23.45,16.8,16.25,16,15.77,15.56,15.370000000000001,15.17,14.98,14.6,N/A,N/A +2013,10,27,18,30,94580,93470,92390,66.96000000000001,0,1.33,1.56,1.62,1.6500000000000001,1.68,1.69,1.71,1.72,1.74,16.19,18.44,19.86,21.16,22.39,23.52,24.69,25.76,27.92,18.64,18.1,17.84,17.6,17.39,17.19,16.990000000000002,16.8,16.41,N/A,N/A +2013,10,27,19,30,94510,93410,92340,61.31,0,0.64,0.65,0.62,0.6,0.58,0.56,0.55,0.54,0.54,10.290000000000001,15.98,19.830000000000002,24.17,28.560000000000002,32.86,37.71,42.21,51.68,20.26,19.740000000000002,19.490000000000002,19.25,19.03,18.830000000000002,18.62,18.43,18.03,N/A,N/A +2013,10,27,20,30,94430,93330,92260,56.42,0,0.66,0.78,0.81,0.8300000000000001,0.86,0.88,0.9,0.92,0.96,146.28,144.54,143.36,142.16,141.07,140.05,139.1,138.24,136.46,21.63,21.11,20.86,20.62,20.400000000000002,20.19,19.98,19.78,19.38,N/A,N/A +2013,10,27,21,30,94360,93270,92200,55.74,0,1.83,2.23,2.37,2.44,2.49,2.5300000000000002,2.56,2.59,2.63,156.55,156.83,156.95000000000002,157.01,157.04,157.07,157.1,157.14000000000001,157.18,22.35,21.81,21.57,21.34,21.12,20.92,20.71,20.52,20.12,N/A,N/A +2013,10,27,22,30,94270,93180,92120,55.84,0,2,2.47,2.63,2.72,2.79,2.84,2.88,2.91,2.97,146.51,146.81,147.01,147.11,147.18,147.24,147.28,147.3,147.34,22.73,22.26,22.04,21.82,21.61,21.41,21.2,21.01,20.61,N/A,N/A +2013,10,27,23,30,94240,93140,92090,56,0,3.22,4.01,4.23,4.33,4.39,4.43,4.44,4.45,4.44,147.20000000000002,147.75,148.07,148.25,148.39000000000001,148.49,148.57,148.63,148.75,22.56,22.23,22.05,21.84,21.650000000000002,21.45,21.25,21.07,20.67,N/A,N/A +2013,10,28,0,30,94230,93140,92080,63.36,0,2.85,4.7700000000000005,5.4,5.76,5.98,6.1000000000000005,6.140000000000001,6.17,6.17,152.06,150.9,150.08,149.33,148.66,148.06,147.46,146.92000000000002,145.93,21.46,21.650000000000002,21.62,21.490000000000002,21.34,21.17,20.98,20.8,20.42,N/A,N/A +2013,10,28,1,30,94220,93120,92060,72.36,0,2.04,4.03,4.7700000000000005,5.47,6.04,6.5,6.8,7.03,7.2700000000000005,137.11,137.46,137.62,137.64000000000001,137.68,137.75,137.95000000000002,138.18,139.33,20.330000000000002,20.7,20.740000000000002,20.76,20.75,20.72,20.63,20.54,20.240000000000002,N/A,N/A +2013,10,28,2,30,94200,93110,92050,73.48,0,2.16,4.1,4.82,5.45,6,6.49,6.890000000000001,7.26,7.73,137.65,137.97,138.1,138.05,138.36,138.89000000000001,140,141.19,144.67000000000002,20.04,20.35,20.39,20.400000000000002,20.39,20.38,20.35,20.32,20.17,N/A,N/A +2013,10,28,3,30,94190,93090,92030,74.2,0,2.64,4.65,5.46,6.15,6.74,7.26,7.73,8.16,8.84,141.8,141.5,141.33,141.32,142.02,143.22,145.25,147.39000000000001,152.16,19.88,20.150000000000002,20.22,20.26,20.29,20.31,20.330000000000002,20.34,20.26,N/A,N/A +2013,10,28,4,30,94150,93050,91990,76.89,0,2.62,4.72,5.58,6.34,7,7.61,8.18,8.71,9.540000000000001,139.46,143.75,146.72,149.15,151.52,153.84,155.83,157.61,159.49,19.52,19.84,19.95,20.06,20.16,20.26,20.34,20.41,20.39,N/A,N/A +2013,10,28,5,30,94120,93020,91960,75.94,0,3.23,5.38,6.24,6.97,7.6000000000000005,8.17,8.74,9.28,10.33,135.58,138.86,140.81,141.96,143.16,144.35,145.96,147.57,151.18,19.51,19.69,19.72,19.73,19.73,19.73,19.75,19.77,19.82,N/A,N/A +2013,10,28,6,30,94130,93030,91970,80.68,0,3.46,5.93,6.97,7.88,8.68,9.42,10.15,10.85,12.280000000000001,136.59,138.45000000000002,139.55,140.32,141.22,142.18,143.5,144.83,147.98,18.86,19.02,19.02,18.990000000000002,18.95,18.900000000000002,18.86,18.82,18.72,N/A,N/A +2013,10,28,7,30,94130,93020,91960,84.67,0,5.08,7.49,8.44,9.28,10.01,10.67,11.31,11.91,13.11,146.16,148.53,150.03,151.32,152.45000000000002,153.47,154.45000000000002,155.36,157.09,19.04,18.97,18.900000000000002,18.79,18.69,18.580000000000002,18.47,18.37,18.18,N/A,N/A +2013,10,28,8,30,94130,93030,91960,90.66,0,5.42,7.8,8.73,9.540000000000001,10.24,10.870000000000001,11.49,12.07,13.23,146.1,147.9,149.09,150.09,151,151.81,152.63,153.4,154.94,18.67,18.57,18.47,18.36,18.25,18.14,18.02,17.92,17.72,N/A,N/A +2013,10,28,9,30,94130,93030,91960,93.43,0,4.8100000000000005,7.07,8,8.8,9.49,10.11,10.71,11.26,12.36,145.47,147.78,149.29,150.58,151.70000000000002,152.71,153.66,154.54,156.19,18.38,18.31,18.22,18.11,18,17.89,17.77,17.66,17.43,N/A,N/A +2013,10,28,10,30,94120,93020,91950,91.79,0,6.54,9.08,10.01,10.77,11.4,11.950000000000001,12.450000000000001,12.9,13.75,154.61,155.58,156.21,156.77,157.3,157.8,158.3,158.77,159.72,18.63,18.5,18.39,18.25,18.11,17.97,17.82,17.68,17.39,N/A,N/A +2013,10,28,11,30,94130,93030,91960,91.9,0,5.53,7.890000000000001,8.78,9.53,10.15,10.69,11.200000000000001,11.66,12.52,151.11,152.56,153.52,154.38,155.16,155.88,156.58,157.23,158.43,18.59,18.47,18.36,18.22,18.07,17.93,17.78,17.63,17.34,N/A,N/A +2013,10,28,12,30,94160,93060,91990,91.58,0,5.41,7.63,8.51,9.22,9.81,10.32,10.790000000000001,11.21,12.030000000000001,150.99,152.13,153.01,153.91,154.76,155.59,156.42000000000002,157.19,158.67000000000002,18.53,18.43,18.32,18.18,18.03,17.89,17.73,17.580000000000002,17.28,N/A,N/A +2013,10,28,13,30,94180,93070,92000,90.11,0,5.54,7.47,8.19,8.76,9.21,9.6,9.94,10.26,10.870000000000001,150.13,150.93,151.53,152.14000000000001,152.74,153.32,153.92000000000002,154.49,155.69,18.63,18.41,18.26,18.09,17.92,17.75,17.580000000000002,17.41,17.080000000000002,N/A,N/A +2013,10,28,14,30,94190,93090,92020,89.22,0,5.23,6.96,7.69,8.4,9,9.53,10.1,10.66,11.13,148.59,149.52,150.25,151.19,152.14000000000001,153.12,154.14000000000001,155.14000000000001,155.97,18.56,18.27,18.1,17.91,17.73,17.56,17.37,17.2,16.830000000000002,N/A,N/A +2013,10,28,15,30,94210,93110,92040,81.46000000000001,0,6.25,7.88,8.45,8.790000000000001,9.040000000000001,9.23,9.38,9.52,9.81,152.84,153.11,153.3,153.46,153.59,153.71,153.86,153.99,154.36,19.67,19.13,18.91,18.69,18.490000000000002,18.3,18.1,17.93,17.57,N/A,N/A +2013,10,28,16,30,94180,93090,92030,70.95,0,7.23,9.08,9.73,10.09,10.35,10.52,10.64,10.74,10.88,158.95000000000002,159.22,159.37,159.49,159.58,159.65,159.72,159.79,159.94,21.63,20.990000000000002,20.740000000000002,20.490000000000002,20.27,20.06,19.86,19.66,19.27,N/A,N/A +2013,10,28,17,30,94150,93060,92010,64.33,0,7.75,9.69,10.370000000000001,10.73,10.98,11.15,11.26,11.34,11.44,162.08,162.19,162.26,162.31,162.34,162.37,162.4,162.43,162.5,22.84,22.14,21.86,21.6,21.37,21.150000000000002,20.94,20.740000000000002,20.330000000000002,N/A,N/A +2013,10,28,18,30,94130,93040,91990,60.19,0,7.11,8.85,9.49,9.82,10.07,10.23,10.34,10.43,10.55,162.35,162.62,162.81,162.94,163.06,163.17000000000002,163.27,163.37,163.55,23.96,23.23,22.95,22.68,22.44,22.22,22,21.8,21.39,N/A,N/A +2013,10,28,19,30,94080,93000,91950,54.4,0,7.3,9.16,9.76,10.1,10.34,10.5,10.620000000000001,10.71,10.83,166.65,166.77,166.84,166.89000000000001,166.93,166.96,166.99,167.01,167.06,25.080000000000002,24.36,24.080000000000002,23.81,23.580000000000002,23.36,23.13,22.93,22.52,N/A,N/A +2013,10,28,20,30,94050,92970,91930,51.94,0,7.19,8.97,9.56,9.88,10.11,10.26,10.36,10.44,10.540000000000001,167.15,167.11,167.09,167.05,167.02,166.98,166.94,166.91,166.84,25.78,25.09,24.830000000000002,24.57,24.330000000000002,24.11,23.89,23.69,23.28,N/A,N/A +2013,10,28,21,30,94010,92930,91890,50.07,0,7.3100000000000005,9.19,9.77,10.09,10.32,10.47,10.58,10.66,10.76,162.48,162.59,162.67000000000002,162.72,162.75,162.78,162.81,162.83,162.87,26.11,25.5,25.25,25.01,24.78,24.57,24.36,24.150000000000002,23.75,N/A,N/A +2013,10,28,22,30,93990,92920,91870,50.27,0,7.8,9.9,10.51,10.870000000000001,11.120000000000001,11.290000000000001,11.41,11.51,11.63,160.45000000000002,160.52,160.58,160.61,160.65,160.67000000000002,160.70000000000002,160.73,160.79,26.23,25.75,25.54,25.32,25.11,24.900000000000002,24.69,24.5,24.1,N/A,N/A +2013,10,28,23,30,93990,92920,91880,53.94,0,6.67,8.85,9.57,10.09,10.5,10.83,11.120000000000001,11.370000000000001,11.78,154.55,154.69,154.79,154.87,154.96,155.05,155.14000000000001,155.23,155.43,25.560000000000002,25.330000000000002,25.19,25.01,24.830000000000002,24.650000000000002,24.46,24.28,23.91,N/A,N/A +2013,10,29,0,30,94030,92950,91910,56.32,0,5.15,7.47,8.42,9.21,9.88,10.48,11.040000000000001,11.58,12.52,146.03,146.34,146.59,146.91,147.27,147.68,148.18,148.68,149.76,24.39,24.38,24.32,24.21,24.1,23.97,23.84,23.71,23.42,N/A,N/A +2013,10,29,1,30,94050,92960,91920,59.39,0,4.86,7.3,8.290000000000001,9.14,9.9,10.61,11.290000000000001,11.92,13.24,143.88,144.69,145.28,145.86,146.5,147.18,147.95000000000002,148.71,150.3,23.66,23.650000000000002,23.6,23.51,23.41,23.31,23.2,23.09,22.85,N/A,N/A +2013,10,29,2,30,94080,92990,91940,58.15,0,5.51,8.03,9.03,9.9,10.67,11.38,12.09,12.75,14.08,146.39000000000001,147.08,147.58,148.08,148.61,149.16,149.79,150.41,151.76,23.29,23.25,23.19,23.09,22.990000000000002,22.89,22.78,22.68,22.46,N/A,N/A +2013,10,29,3,30,94090,93000,91950,53.99,0,6.28,9.1,10.21,11.18,12.030000000000001,12.81,13.55,14.25,15.58,148.70000000000002,149.53,150.08,150.56,151.06,151.56,152.14000000000001,152.71,154.03,22.89,22.88,22.830000000000002,22.76,22.68,22.6,22.51,22.43,22.240000000000002,N/A,N/A +2013,10,29,4,30,94110,93020,91960,49.52,0,6.68,9.53,10.63,11.58,12.41,13.14,13.870000000000001,14.55,15.88,152.91,153.62,154.08,154.48,154.9,155.32,155.85,156.37,157.6,22.53,22.52,22.47,22.39,22.31,22.23,22.150000000000002,22.080000000000002,21.900000000000002,N/A,N/A +2013,10,29,5,30,94110,93020,91960,47.2,0,7.49,10.55,11.68,12.66,13.51,14.27,15.01,15.700000000000001,17.04,155.76,156.76,157.37,157.89000000000001,158.38,158.82,159.29,159.74,160.70000000000002,22.26,22.22,22.150000000000002,22.07,21.98,21.900000000000002,21.81,21.72,21.55,N/A,N/A +2013,10,29,6,30,94120,93030,91970,46.69,0,7.82,11.07,12.26,13.31,14.21,15,15.780000000000001,16.5,17.91,156.74,157.96,158.66,159.26,159.76,160.21,160.65,161.04,161.82,21.96,21.91,21.84,21.75,21.66,21.57,21.47,21.39,21.21,N/A,N/A +2013,10,29,7,30,94150,93050,91990,45.36,0,7.37,10.5,11.700000000000001,12.76,13.67,14.48,15.27,16.01,17.45,152.71,154.3,155.24,155.99,156.65,157.24,157.82,158.36,159.45000000000002,21.34,21.27,21.19,21.09,20.990000000000002,20.89,20.78,20.69,20.5,N/A,N/A +2013,10,29,8,30,94160,93060,92000,48.44,0,8.08,11.31,12.52,13.57,14.47,15.27,16.02,16.72,18.05,152.45000000000002,154.33,155.43,156.33,157.09,157.75,158.37,158.94,160.04,20.61,20.51,20.41,20.3,20.18,20.07,19.96,19.86,19.66,N/A,N/A +2013,10,29,9,30,94150,93050,91990,56.300000000000004,0,8.76,12.030000000000001,13.24,14.26,15.14,15.91,16.63,17.3,18.56,156.49,157.85,158.69,159.36,159.93,160.43,160.91,161.34,162.20000000000002,20.31,20.19,20.09,19.97,19.86,19.740000000000002,19.63,19.53,19.330000000000002,N/A,N/A +2013,10,29,10,30,94190,93090,92030,65.06,0,7.18,9.98,11.1,12.08,12.9,13.620000000000001,14.3,14.94,16.14,150.16,152.28,153.68,154.81,155.74,156.54,157.25,157.91,159.05,19.79,19.66,19.56,19.43,19.3,19.17,19.05,18.93,18.71,N/A,N/A +2013,10,29,11,30,94230,93130,92060,73.58,0,5.07,7.46,8.51,9.450000000000001,10.26,10.98,11.66,12.3,13.5,143.71,146.65,148.63,150.19,151.49,152.6,153.56,154.43,155.86,19.17,19.05,18.95,18.82,18.68,18.55,18.41,18.29,18.03,N/A,N/A +2013,10,29,12,30,94250,93150,92080,80.08,0,3.77,5.97,6.98,7.890000000000001,8.71,9.450000000000001,10.16,10.82,12.14,143.66,146.32,148.13,149.58,150.87,152.07,153.13,154.1,155.79,18.63,18.54,18.44,18.32,18.19,18.07,17.93,17.81,17.56,N/A,N/A +2013,10,29,13,30,94240,93140,92070,82.26,0,4.22,6.49,7.5,8.4,9.19,9.89,10.57,11.200000000000001,12.46,146.33,148.27,149.55,150.61,151.55,152.42000000000002,153.26,154.04,155.49,18.39,18.28,18.18,18.06,17.93,17.81,17.68,17.56,17.330000000000002,N/A,N/A +2013,10,29,14,30,94250,93150,92070,81.78,0,4.05,6.13,7.21,8.120000000000001,8.85,9.46,10.07,10.64,11.76,143.38,146.79,148.98,150.38,151.73,153.02,153.85,154.53,155.65,18.69,18.41,18.26,18.09,17.92,17.740000000000002,17.580000000000002,17.45,17.18,N/A,N/A +2013,10,29,15,30,94260,93160,92090,77.13,0,5.96,7.58,8.120000000000001,8.45,8.68,8.85,8.98,9.09,9.3,154.09,154.34,154.47,154.59,154.70000000000002,154.82,154.96,155.1,155.47,20.02,19.53,19.32,19.1,18.89,18.7,18.5,18.32,17.94,N/A,N/A +2013,10,29,16,30,94230,93140,92070,70.97,0,6.0600000000000005,7.65,8.15,8.44,8.63,8.76,8.85,8.92,9.01,158.8,159,159.11,159.19,159.26,159.32,159.39000000000001,159.47,159.63,21.5,20.89,20.64,20.41,20.19,19.990000000000002,19.78,19.59,19.2,N/A,N/A +2013,10,29,17,30,94220,93130,92070,64.64,0,5.69,7.11,7.58,7.83,8,8.11,8.19,8.24,8.3,163.14000000000001,163.09,163.05,163.01,162.97,162.94,162.91,162.88,162.83,23.06,22.39,22.13,21.89,21.66,21.45,21.240000000000002,21.05,20.650000000000002,N/A,N/A +2013,10,29,18,30,94190,93110,92060,59.81,0,5.38,6.67,7.11,7.34,7.49,7.6000000000000005,7.67,7.72,7.79,164.16,164.1,164.07,164.05,164.03,164.01,164.01,164,164,24.27,23.580000000000002,23.31,23.06,22.830000000000002,22.62,22.400000000000002,22.21,21.81,N/A,N/A +2013,10,29,19,30,94140,93060,92010,55.07,0,5.45,6.79,7.2,7.41,7.5600000000000005,7.65,7.72,7.7700000000000005,7.82,165.42000000000002,165.34,165.31,165.26,165.22,165.18,165.15,165.12,165.06,25.28,24.6,24.330000000000002,24.09,23.86,23.650000000000002,23.43,23.23,22.830000000000002,N/A,N/A +2013,10,29,20,30,94110,93040,91990,52.76,0,5.51,6.84,7.28,7.5,7.640000000000001,7.75,7.8100000000000005,7.86,7.930000000000001,164.58,164.5,164.44,164.39000000000001,164.36,164.32,164.29,164.27,164.23,25.84,25.2,24.94,24.7,24.47,24.26,24.05,23.85,23.45,N/A,N/A +2013,10,29,21,30,94080,93010,91960,51.300000000000004,0,5.5600000000000005,6.94,7.390000000000001,7.62,7.79,7.9,7.98,8.040000000000001,8.11,160.65,160.6,160.55,160.5,160.45000000000002,160.41,160.37,160.33,160.27,26.150000000000002,25.59,25.36,25.12,24.91,24.7,24.490000000000002,24.3,23.89,N/A,N/A +2013,10,29,22,30,94060,92980,91940,53.2,0,5.74,7.29,7.75,8.02,8.21,8.33,8.43,8.5,8.59,158.67000000000002,158.61,158.59,158.55,158.52,158.48,158.45000000000002,158.42000000000002,158.36,25.79,25.41,25.22,25.01,24.810000000000002,24.61,24.41,24.22,23.82,N/A,N/A +2013,10,29,23,30,94040,92970,91920,55.95,0,4.17,5.84,6.44,6.9,7.28,7.59,7.87,8.11,8.52,152.68,152.65,152.65,152.73,152.85,153.01,153.19,153.36,153.69,25.240000000000002,25.05,24.92,24.75,24.580000000000002,24.41,24.23,24.05,23.68,N/A,N/A +2013,10,30,0,30,94050,92970,91930,57.43,0,3.47,5.23,5.92,6.5,6.99,7.42,7.82,8.18,8.85,147.57,147.61,147.74,148.08,148.48,148.93,149.39000000000001,149.83,150.67000000000002,24.560000000000002,24.48,24.39,24.25,24.12,23.97,23.81,23.66,23.330000000000002,N/A,N/A +2013,10,30,1,30,94070,92990,91940,58.89,0,3.85,5.87,6.74,7.5,8.15,8.74,9.28,9.78,10.66,145.49,146.69,147.55,148.46,149.3,150.12,150.86,151.56,152.72,24.080000000000002,24,23.92,23.79,23.67,23.54,23.400000000000002,23.26,22.96,N/A,N/A +2013,10,30,2,30,94060,92980,91930,63.440000000000005,0,2.5,4.8100000000000005,5.86,6.78,7.61,8.38,9.120000000000001,9.82,11.15,130.54,134.91,137.88,139.92000000000002,141.59,142.99,144.18,145.27,147.17000000000002,23.12,23.29,23.27,23.21,23.13,23.05,22.95,22.85,22.64,N/A,N/A +2013,10,30,3,30,94060,92980,91930,62.13,0,2.64,4.91,6.01,7.05,7.99,8.870000000000001,9.71,10.52,12.05,130.54,136.71,140.75,143.17000000000002,145.13,146.77,148.16,149.43,151.56,22.94,23.02,22.990000000000002,22.92,22.84,22.76,22.67,22.59,22.400000000000002,N/A,N/A +2013,10,30,4,30,94000,92920,91870,59.21,0,5.29,8.01,9.15,10.18,11.08,11.88,12.65,13.370000000000001,14.75,147.48,150.26,151.89000000000001,153.1,154.11,154.98,155.82,156.6,158.16,23.12,23.11,23.05,22.98,22.900000000000002,22.82,22.740000000000002,22.66,22.51,N/A,N/A +2013,10,30,5,30,93950,92870,91820,50.08,0,8.24,11.790000000000001,13.05,14.14,15.1,15.96,16.79,17.55,19,157.73,158.51,158.95000000000002,159.35,159.75,160.14000000000001,160.58,160.99,161.9,22.95,22.98,22.95,22.900000000000002,22.85,22.8,22.75,22.7,22.6,N/A,N/A +2013,10,30,6,30,93980,92890,91840,55.26,0,11.13,14.99,16.21,17.18,18.03,18.78,19.51,20.18,21.44,164.04,164,163.98,163.95000000000002,163.96,163.98,164.05,164.14000000000001,164.44,22.66,22.63,22.57,22.48,22.400000000000002,22.31,22.22,22.14,21.95,N/A,N/A +2013,10,30,7,30,94010,92920,91870,68.27,0,10.5,14.040000000000001,15.18,16.1,16.88,17.56,18.240000000000002,18.87,20.09,166.46,166.26,166.14000000000001,166.01,165.92000000000002,165.84,165.79,165.77,165.86,21.86,21.76,21.68,21.57,21.46,21.35,21.23,21.12,20.88,N/A,N/A +2013,10,30,8,30,94100,93010,91950,82.59,0,0.13,1.46,3.65,4.89,5.96,6.8500000000000005,7.72,8.57,9.86,139.16,153.19,169.24,169.5,169.24,168.56,167.88,167.21,165.68,20.52,20.68,20.53,20.38,20.22,20.07,19.91,19.76,19.45,N/A,N/A +2013,10,30,9,30,94080,92990,91930,87.23,0,4.59,6.5600000000000005,7.43,8.19,8.86,9.450000000000001,10.03,10.57,11.6,155.21,156.07,156.58,156.96,157.3,157.63,157.98,158.32,159.01,20.67,20.42,20.28,20.12,19.96,19.8,19.63,19.47,19.13,N/A,N/A +2013,10,30,10,30,94060,92970,91910,87.66,0,6.1000000000000005,8.25,9.05,9.68,10.19,10.63,11.02,11.370000000000001,12.040000000000001,157.51,158.22,158.69,159.08,159.41,159.70000000000002,159.99,160.26,160.86,20.62,20.38,20.23,20.05,19.87,19.7,19.51,19.34,18.97,N/A,N/A +2013,10,30,11,30,94020,92930,91870,88.06,0,6.76,9.11,9.950000000000001,10.6,11.13,11.57,11.950000000000001,12.290000000000001,12.89,156.38,157.29,157.84,158.27,158.66,159.01,159.33,159.61,160.20000000000002,20.44,20.21,20.06,19.88,19.71,19.54,19.35,19.19,18.830000000000002,N/A,N/A +2013,10,30,12,30,94050,92960,91900,88.15,0,5.01,6.93,7.71,8.35,8.870000000000001,9.31,9.69,10.040000000000001,10.67,162.05,162.42000000000002,162.66,162.88,163.08,163.25,163.41,163.56,163.87,20.37,20.14,19.990000000000002,19.82,19.650000000000002,19.48,19.3,19.13,18.77,N/A,N/A +2013,10,30,13,30,94060,92970,91910,88.75,0,4.03,5.67,6.36,6.95,7.45,7.9,8.31,8.69,9.41,167.76,168.3,168.8,169.21,169.5,169.70000000000002,169.82,169.9,169.92000000000002,20.35,20.13,19.990000000000002,19.830000000000002,19.67,19.51,19.35,19.2,18.900000000000002,N/A,N/A +2013,10,30,14,30,94060,92970,91900,88.06,0,4.6000000000000005,6.11,6.7,7.23,7.69,8.11,8.5,8.870000000000001,9.31,161.74,162.72,163.35,163.95000000000002,164.58,165.22,165.81,166.35,166.98,20.51,20.19,20.02,19.830000000000002,19.650000000000002,19.47,19.29,19.12,18.73,N/A,N/A +2013,10,30,15,30,94090,93000,91940,83.15,0,4.07,5.2,5.63,5.9,6.1000000000000005,6.25,6.37,6.47,6.65,163.31,163.34,163.32,163.34,163.37,163.4,163.45000000000002,163.5,163.66,21.34,20.88,20.67,20.46,20.26,20.06,19.87,19.69,19.31,N/A,N/A +2013,10,30,16,30,94050,92970,91910,79.78,0,5.11,6.34,6.74,6.95,7.08,7.18,7.25,7.3,7.38,166.23,166.73,167.03,167.3,167.54,167.77,167.99,168.21,168.66,21.93,21.43,21.21,20.990000000000002,20.78,20.580000000000002,20.38,20.2,19.81,N/A,N/A +2013,10,30,17,30,94000,92920,91870,70.01,0,5.29,6.61,7.0600000000000005,7.3100000000000005,7.47,7.58,7.65,7.7,7.74,163.09,163.89000000000001,164.42000000000002,164.79,165.1,165.36,165.59,165.79,166.18,23.82,23.150000000000002,22.89,22.64,22.42,22.2,21.990000000000002,21.8,21.400000000000002,N/A,N/A +2013,10,30,18,30,93950,92870,91830,64.45,0,6.49,8.06,8.540000000000001,8.76,8.9,8.950000000000001,8.97,8.96,8.88,174.86,174.97,175.02,175.06,175.1,175.14000000000001,175.18,175.23,175.38,24.98,24.330000000000002,24.080000000000002,23.830000000000002,23.62,23.41,23.21,23.02,22.650000000000002,N/A,N/A +2013,10,30,19,30,93930,92860,91820,58.24,0,4.39,5.32,5.6000000000000005,5.73,5.8,5.84,5.86,5.87,5.87,195.55,196.06,196.43,196.95000000000002,197.49,198.06,198.72,199.37,200.82,26.19,25.57,25.330000000000002,25.09,24.88,24.68,24.47,24.29,23.91,N/A,N/A +2013,10,30,20,30,93880,92810,91770,58.26,0,2.92,3.73,4.12,4.36,4.55,4.7,4.82,4.92,5.08,231.69,230.36,229.35,228.98000000000002,228.74,228.67000000000002,228.67000000000002,228.73000000000002,228.96,26.330000000000002,25.84,25.64,25.41,25.21,25.01,24.810000000000002,24.61,24.23,N/A,N/A +2013,10,30,21,30,93820,92750,91710,51.26,0,4.95,6.38,6.92,7.28,7.55,7.76,7.94,8.1,8.35,237.58,238.81,239.26,239.70000000000002,240.07,240.41,240.72,241,241.51,26.23,25.75,25.55,25.330000000000002,25.13,24.93,24.73,24.54,24.150000000000002,N/A,N/A +2013,10,30,22,30,93790,92710,91670,48.38,0,7.48,9.52,10.21,10.66,11.02,11.31,11.57,11.790000000000001,12.21,240.94,240.24,239.76,239.28,238.84,238.37,237.87,237.38,236.24,25.560000000000002,25.22,25.04,24.84,24.650000000000002,24.46,24.28,24.1,23.73,N/A,N/A +2013,10,30,23,30,93680,92600,91560,45.51,0,9.27,12.41,13.55,14.43,15.16,15.81,16.39,16.92,17.87,208.68,209.98000000000002,210.87,211.67000000000002,212.38,213.05,213.70000000000002,214.3,215.51,25.02,24.94,24.85,24.73,24.61,24.490000000000002,24.36,24.240000000000002,24,N/A,N/A +2013,10,31,0,30,93560,92490,91450,41.64,0,10.22,13.790000000000001,15.040000000000001,16.02,16.82,17.51,18.1,18.63,19.5,205.29,205.13,205.15,205.31,205.53,205.78,206.09,206.4,207.11,25.43,25.38,25.310000000000002,25.22,25.13,25.04,24.96,24.88,24.73,N/A,N/A +2013,10,31,1,30,93580,92510,91470,45.37,0,8.35,11.35,12.35,13.14,13.77,14.3,14.77,15.200000000000001,16,185.08,185.07,185.19,185.55,186.08,186.69,187.44,188.17000000000002,189.89000000000001,24.89,24.830000000000002,24.76,24.66,24.57,24.47,24.37,24.28,24.080000000000002,N/A,N/A +2013,10,31,2,30,93750,92670,91620,51,0,0.98,1.68,1.83,2.02,2.29,2.63,3.0300000000000002,3.46,4.13,115.5,139.01,151.9,159.44,165.16,169.89000000000001,173.83,177.54,186.6,23.88,23.93,23.740000000000002,23.490000000000002,23.240000000000002,22.98,22.73,22.51,22.2,N/A,N/A +2013,10,31,3,30,93770,92690,91640,62.78,0,5.33,7.45,8.18,8.700000000000001,9.11,9.450000000000001,9.73,9.98,10.31,184.09,183.63,183.54,184.03,184.56,185.15,185.94,186.76,189.05,23.27,23.12,23,22.86,22.75,22.66,22.6,22.55,22.51,N/A,N/A +2013,10,31,4,30,93740,92660,91620,70.02,0,6.54,8.69,9.370000000000001,9.82,10.18,10.47,10.72,10.93,11.33,175.76,176.9,177.8,178.99,180.35,181.89000000000001,183.82,185.74,190.81,22.79,22.7,22.64,22.57,22.51,22.45,22.400000000000002,22.37,22.31,N/A,N/A +2013,10,31,5,30,93750,92670,91620,78.96000000000001,0,5.2700000000000005,7.26,7.94,8.44,8.84,9.18,9.450000000000001,9.69,10.07,184.02,184.79,185.39000000000001,186.19,187.08,188.05,189.18,190.28,193.13,22.39,22.27,22.18,22.06,21.95,21.84,21.740000000000002,21.650000000000002,21.490000000000002,N/A,N/A +2013,10,31,6,30,93800,92720,91670,81.49,0,1.4000000000000001,2.93,3.67,4.33,4.88,5.34,5.73,6.07,6.66,242.07,231.74,225.64000000000001,224.61,224.63,225.58,227.09,228.74,232.27,21.79,21.86,21.86,21.87,21.86,21.85,21.830000000000002,21.8,21.71,N/A,N/A +2013,10,31,7,30,93820,92740,91690,54.51,0,3.14,5.47,6.5,7.390000000000001,8.08,8.59,8.94,9.21,9.53,262.57,258.46,255.19,253,251.38,250.24,249.72,249.42000000000002,250.34,22.330000000000002,22.7,22.84,22.92,22.95,22.94,22.86,22.77,22.5,N/A,N/A +2013,10,31,8,30,93810,92720,91670,58.51,0,1.94,3.83,4.43,4.92,5.24,5.47,5.7,5.92,6.44,234.46,250.55,262.15,273.81,282.87,290.09000000000003,294.55,297.96,299.83,21.87,22.39,22.35,22.080000000000002,21.830000000000002,21.62,21.43,21.25,20.89,N/A,N/A +2013,10,31,9,30,93850,92760,91700,64.7,0,0.61,1.84,2.88,3.87,4.8100000000000005,5.65,6.390000000000001,7.0600000000000005,8.21,244.45000000000002,255.21,266.42,269.1,271.5,273.49,274.98,276.24,277.58,20.68,20.89,20.81,20.68,20.57,20.48,20.39,20.31,20.18,N/A,N/A +2013,10,31,10,30,93860,92760,91700,73.21000000000001,0,0.44,1.6500000000000001,2.82,4.29,5.7,6.97,8.09,9.15,11.11,194.71,234.87,267.56,273.66,278.42,281.71,284.31,286.65000000000003,289.51,19.45,19.91,19.85,19.81,19.8,19.8,19.79,19.76,19.650000000000002,N/A,N/A +2013,10,31,11,30,93940,92840,91780,69.18,0,2.46,5.03,6.12,7.18,8.22,9.27,10.34,11.39,13.35,300.88,298.19,296.84000000000003,297.41,298.17,299.09000000000003,299.52,299.8,299.64,17.88,18.85,19.05,19.14,19.17,19.17,19.150000000000002,19.12,19.02,N/A,N/A +2013,10,31,12,30,94060,92960,91880,59.620000000000005,0,2.11,3.74,4.46,5.96,7.2700000000000005,8.370000000000001,9.14,9.8,10.77,291.28000000000003,309.91,320.66,322.24,322.5,321.61,320.63,319.7,317.94,17.01,17.82,17.87,17.900000000000002,17.89,17.87,17.78,17.68,17.38,N/A,N/A +2013,10,31,13,30,94120,93000,91930,63.84,0,0.87,1.87,2.39,3.04,3.65,4.21,5.04,5.95,8.09,25.490000000000002,27.03,19.3,353.09000000000003,338.81,331.91,328.53000000000003,325.91,325.16,15.58,16.38,16.44,16.43,16.3,16.13,15.96,15.8,15.540000000000001,N/A,N/A +2013,10,31,14,30,94180,93060,91980,51.6,0,2.5500000000000003,3.46,4.01,4.79,5.43,5.99,6.55,7.08,8.15,329.69,328.07,325.78000000000003,320.92,318.65000000000003,317.92,317.47,317.11,317.11,15.98,15.72,15.620000000000001,15.56,15.49,15.41,15.32,15.23,15,N/A,N/A +2013,10,31,15,30,94230,93120,92040,32.62,0,5.34,6.65,7.1000000000000005,7.36,7.55,7.7,7.82,7.930000000000001,8.11,319.43,319.77,319.98,320.11,320.22,320.33,320.44,320.54,320.76,17.41,16.93,16.72,16.5,16.29,16.1,15.89,15.700000000000001,15.31,N/A,N/A +2013,10,31,16,30,94230,93120,92040,27.88,0,6.98,8.63,9.200000000000001,9.49,9.700000000000001,9.86,9.97,10.06,10.200000000000001,318.48,318.67,318.79,318.84000000000003,318.86,318.87,318.87,318.87,318.84000000000003,18.07,17.47,17.22,16.98,16.76,16.56,16.35,16.15,15.76,N/A,N/A +2013,10,31,17,30,94220,93110,92030,22.39,0,7.04,8.71,9.34,9.69,9.950000000000001,10.13,10.28,10.4,10.58,311,311.22,311.41,311.53000000000003,311.63,311.72,311.8,311.87,312.02,19.490000000000002,18.84,18.580000000000002,18.32,18.1,17.89,17.67,17.48,17.07,N/A,N/A +2013,10,31,18,30,94190,93090,92010,20.23,0,7.7700000000000005,9.55,10.22,10.58,10.84,11.02,11.15,11.26,11.42,308.96,309.13,309.24,309.27,309.28000000000003,309.28000000000003,309.27,309.25,309.2,20.39,19.7,19.43,19.16,18.93,18.71,18.490000000000002,18.29,17.88,N/A,N/A +2013,10,31,19,30,94160,93060,91990,17.79,0,6.76,8.35,8.94,9.26,9.49,9.65,9.78,9.88,10.03,305.19,305.46,305.62,305.69,305.75,305.79,305.81,305.83,305.85,21.04,20.36,20.09,19.830000000000002,19.6,19.38,19.16,18.96,18.54,N/A,N/A +2013,10,31,20,30,94110,93020,91950,16.3,0,6.42,7.92,8.46,8.75,8.96,9.11,9.22,9.31,9.450000000000001,301.67,301.81,301.90000000000003,301.91,301.91,301.89,301.85,301.81,301.73,21.68,21.04,20.78,20.53,20.3,20.080000000000002,19.87,19.67,19.25,N/A,N/A +2013,10,31,21,30,94060,92960,91900,15.23,0,5.09,6.3,6.7,6.92,7.07,7.19,7.2700000000000005,7.34,7.44,301.14,301.29,301.35,301.34000000000003,301.3,301.25,301.18,301.11,300.95,22.05,21.48,21.25,21.01,20.79,20.59,20.37,20.17,19.77,N/A,N/A +2013,10,31,22,30,93990,92890,91830,16.19,0,4.1,5.23,5.58,5.8,5.96,6.09,6.18,6.26,6.38,301.88,301.49,301.24,301,300.77,300.56,300.34000000000003,300.15000000000003,299.76,22.09,21.650000000000002,21.44,21.23,21.02,20.82,20.61,20.42,20.02,N/A,N/A +2013,10,31,23,30,93990,92890,91830,22.830000000000002,0,1.97,3.52,4.07,4.46,4.75,4.98,5.14,5.28,5.47,319.82,316.8,314.74,313.48,312.45,311.58,310.75,309.98,308.3,21.25,21.3,21.2,21.03,20.85,20.67,20.48,20.3,19.91,N/A,N/A +2013,11,1,0,30,94010,92910,91850,27.25,0,0.33,0.74,1.05,1.6400000000000001,2.25,2.82,3.31,3.77,4.3500000000000005,102.71000000000001,33.97,332.96,324.56,325.55,321.85,318.89,316.22,311.26,18.82,19.830000000000002,19.85,19.81,19.79,19.78,19.77,19.75,19.66,N/A,N/A +2013,11,1,1,30,94030,92920,91850,30.92,0,0.53,0.79,0.78,0.77,0.65,0.49,0.2,0.1,0.88,139.13,132,126.8,121.26,116.18,134.76,32.31,330.09000000000003,300.3,17.17,18.62,18.95,19.14,19.18,19.11,18.97,18.82,18.56,N/A,N/A +2013,11,1,2,30,94000,92890,91820,31.1,0,0.74,1.3800000000000001,1.44,1.22,0.86,0.5700000000000001,0.6900000000000001,0.91,1.96,111.01,110.08,113.46000000000001,122.84,146.78,167.72,239.28,278.2,290.3,16.36,17.740000000000002,18.04,18.29,18.41,18.45,18.45,18.43,18.39,N/A,N/A +2013,11,1,3,30,94000,92880,91810,33.55,0,0.35000000000000003,0.96,1.27,1.3900000000000001,1.1,0.8200000000000001,0.38,0.26,0.9500000000000001,101.8,114.37,122.42,125.10000000000001,122.4,119.49000000000001,71.68,52.730000000000004,307.23,15.02,16.73,17.25,17.68,17.97,18.21,18.19,18.14,17.97,N/A,N/A +2013,11,1,4,30,94030,92920,91850,33.7,0,0.65,1.33,1.4000000000000001,1.23,1.01,0.8200000000000001,1.1400000000000001,1.58,2.85,156.39000000000001,164.37,168.23,169.9,196.33,223.70000000000002,249.04,272.4,280.97,14.65,16.7,17.31,17.73,18.01,18.240000000000002,18.29,18.32,18.26,N/A,N/A +2013,11,1,5,30,94040,92930,91850,32.29,0,1.46,1.9000000000000001,1.95,2.2,2.58,3.04,3.62,4.24,5.59,206.08,228.88,243.63,256.68,264.77,270.8,274.40000000000003,277.51,280.34000000000003,14.65,15.96,16.11,16.25,16.35,16.43,16.490000000000002,16.56,16.69,N/A,N/A +2013,11,1,6,30,94060,92940,91860,34.01,0,0.41000000000000003,0.79,1.1400000000000001,1.86,2.64,3.44,4.21,4.99,6.5200000000000005,163.08,227.21,264.25,272.81,278.16,280.85,281.88,282.67,283.19,13.71,15.08,15.23,15.3,15.450000000000001,15.63,15.8,15.96,16.26,N/A,N/A +2013,11,1,7,30,94080,92950,91870,34.730000000000004,0,0.3,0.75,1.1400000000000001,1.87,2.64,3.44,4.22,5.01,6.5200000000000005,87.34,342.81,275.24,277.88,279.92,281.34000000000003,282.47,283.54,285.12,13.4,14.71,14.81,14.870000000000001,15.040000000000001,15.25,15.530000000000001,15.790000000000001,16.34,N/A,N/A +2013,11,1,8,30,94070,92940,91860,37.85,0,0.21,0.75,1.24,1.82,2.4,2.99,3.65,4.3500000000000005,5.79,104.39,186.53,247.95000000000002,255.29,262.2,268.91,272.79,276.17,279.75,12.11,14.09,14.65,15.05,15.31,15.48,15.67,15.85,16.22,N/A,N/A +2013,11,1,9,30,94070,92940,91860,40.88,0,0.33,0.53,0.79,1.5,2.24,3,3.73,4.49,5.93,19.77,321.19,294.78000000000003,293.59000000000003,293.16,293.12,293.14,293.06,292.38,10.85,13.16,13.88,14.3,14.61,14.86,15.08,15.26,15.57,N/A,N/A +2013,11,1,10,30,94070,92940,91850,42.28,0,0.47000000000000003,1.02,1.36,1.8800000000000001,2.48,3.15,3.81,4.49,5.78,250.1,276.53000000000003,292.3,300.07,303.81,305.59000000000003,305.88,305.96,304.69,10.68,12.8,13.27,13.35,13.540000000000001,13.75,14.02,14.280000000000001,14.86,N/A,N/A +2013,11,1,11,30,94080,92950,91860,43.14,0,1.33,2.32,2.79,3.64,4.45,5.24,5.94,6.61,7.82,237.55,264.24,281.11,293.54,299.39,301.63,301.46,301,299.17,10.07,11.48,11.88,12.450000000000001,13.040000000000001,13.6,14.09,14.52,15.24,N/A,N/A +2013,11,1,12,30,94110,92980,91890,42.13,0,1.17,2.38,3.11,4.21,5.22,6.15,6.87,7.53,8.73,249.46,270.07,283.95,294.51,299.76,302.45,303.04,303.33,302.63,9.77,11.07,11.44,12.040000000000001,12.65,13.200000000000001,13.64,14.02,14.63,N/A,N/A +2013,11,1,13,30,94170,93030,91940,44.22,0,1.11,1.92,2.47,3.72,4.73,5.57,6.42,7.23,8.69,230.63,279.46,303.58,312.8,315.90000000000003,315.84000000000003,314.64,313.41,311.08,8.86,9.89,10.23,10.89,11.36,11.73,12.09,12.42,13.030000000000001,N/A,N/A +2013,11,1,14,30,94220,93080,91980,33.61,0,1.79,3.7,4.93,6.0200000000000005,6.87,7.59,8.2,8.8,10.07,305.62,313.92,318.85,320.53000000000003,321.04,321.08,320.29,319.38,316.81,11.09,11.36,11.57,11.8,12,12.17,12.31,12.44,12.67,N/A,N/A +2013,11,1,15,30,94230,93100,92010,27.37,0,1.05,1.34,1.55,2.05,2.7800000000000002,3.7800000000000002,4.53,5.3100000000000005,6.96,179.45000000000002,135.18,112.48,325.54,316.83,318.13,318.68,318.66,315.74,14.44,14.120000000000001,13.99,13.89,13.83,13.8,13.72,13.67,13.67,N/A,N/A +2013,11,1,16,30,94220,93100,92020,22.68,0,6.45,8.120000000000001,8.71,9.06,9.31,9.5,9.64,9.76,9.950000000000001,310.49,310.94,311.21,311.39,311.55,311.67,311.8,311.92,312.14,18.34,17.77,17.53,17.3,17.080000000000002,16.88,16.67,16.48,16.09,N/A,N/A +2013,11,1,17,30,94210,93100,92020,21.54,0,6.83,8.57,9.16,9.51,9.75,9.94,10.08,10.200000000000001,10.39,308.84000000000003,308.92,308.96,308.91,308.86,308.79,308.69,308.61,308.42,19.42,18.77,18.51,18.27,18.05,17.84,17.63,17.44,17.04,N/A,N/A +2013,11,1,18,30,94190,93090,92020,18.66,0,7.2700000000000005,9.11,9.72,10.07,10.32,10.51,10.64,10.76,10.92,310.6,310.86,310.99,311.06,311.12,311.16,311.21,311.24,311.32,21.01,20.32,20.04,19.79,19.56,19.35,19.13,18.93,18.52,N/A,N/A +2013,11,1,19,30,94210,93110,92040,17.2,0,6.32,7.84,8.34,8.620000000000001,8.81,8.96,9.07,9.16,9.290000000000001,319.90000000000003,319.99,320.04,320.04,320.05,320.05,320.05,320.05,320.04,21.96,21.27,21,20.75,20.52,20.3,20.09,19.88,19.47,N/A,N/A +2013,11,1,20,30,94210,93110,92050,16.6,0,6.2700000000000005,7.79,8.28,8.56,8.75,8.9,9,9.09,9.22,318.99,319.27,319.44,319.58,319.7,319.81,319.91,320,320.2,22.56,21.91,21.650000000000002,21.400000000000002,21.17,20.96,20.740000000000002,20.54,20.13,N/A,N/A +2013,11,1,21,30,94200,93100,92040,16.68,0,6.140000000000001,7.69,8.16,8.43,8.620000000000001,8.77,8.870000000000001,8.96,9.08,319.46,320.12,320.51,320.82,321.08,321.31,321.55,321.76,322.16,22.95,22.36,22.12,21.89,21.67,21.46,21.25,21.05,20.64,N/A,N/A +2013,11,1,22,30,94210,93110,92050,17.06,0,5.51,7.01,7.47,7.74,7.95,8.1,8.23,8.33,8.48,325.96,326.39,326.69,326.93,327.15000000000003,327.35,327.55,327.72,328.09000000000003,22.96,22.52,22.31,22.1,21.89,21.69,21.490000000000002,21.29,20.89,N/A,N/A +2013,11,1,23,30,94260,93160,92100,20.09,0,3.5700000000000003,5.68,6.45,7.01,7.43,7.75,8.01,8.22,8.55,341.76,343.26,344.17,344.83,345.35,345.78000000000003,346.12,346.42,346.85,22.03,22.11,22.06,21.94,21.78,21.62,21.43,21.25,20.87,N/A,N/A +2013,11,2,0,30,94350,93250,92180,22.59,0,4.11,7.8500000000000005,8.99,9.01,8.94,8.84,8.950000000000001,9.09,9.450000000000001,352.58,354.08,355.2,356.15000000000003,357.48,358.90000000000003,359.72,0.31,0.25,19.91,21.3,21.64,21.6,21.45,21.27,21.07,20.88,20.5,N/A,N/A +2013,11,2,1,30,94440,93330,92260,27.48,0,2.92,5.92,7.03,8,8.64,9.09,9.3,9.450000000000001,9.66,28.38,17.26,11.53,9.55,9.040000000000001,9.22,10.5,11.88,15.96,17.82,19.26,19.61,19.86,19.96,20,19.91,19.81,19.55,N/A,N/A +2013,11,2,2,30,94540,93430,92350,26.79,0,3.93,6.63,7.33,7.640000000000001,8.28,9.02,10.21,11.34,12.96,25.76,23.080000000000002,23.73,27.2,32.05,37.26,40.660000000000004,43.480000000000004,45.68,16.96,17.830000000000002,17.94,17.830000000000002,17.76,17.7,17.82,17.92,18.06,N/A,N/A +2013,11,2,3,30,94630,93510,92430,30.970000000000002,0,3.38,5.68,6.37,7.09,8.24,9.61,10.96,12.21,13.82,23.44,29.76,35.87,44.14,48.97,52.46,53.01,53.25,52.52,15.72,16.43,16.490000000000002,16.490000000000002,16.61,16.76,16.98,17.16,17.400000000000002,N/A,N/A +2013,11,2,4,30,94710,93580,92490,37.82,0,1.7,3.67,4.63,5.72,6.94,8.22,9.48,10.66,12.4,30.36,40.230000000000004,46.5,51.59,54.1,55.67,55.93,56.09,55.85,14.23,15,15.05,15.14,15.33,15.540000000000001,15.860000000000001,16.14,16.61,N/A,N/A +2013,11,2,5,30,94780,93650,92560,40.34,0,1.28,2.7600000000000002,3.54,4.54,5.75,7.07,8.35,9.55,11.34,6.73,30.11,42.14,48.480000000000004,51.04,52.300000000000004,53.33,54.33,55.92,13.67,14.46,14.530000000000001,14.65,14.88,15.13,15.52,15.870000000000001,16.47,N/A,N/A +2013,11,2,6,30,94860,93720,92630,41.44,0,1.98,3.87,4.8100000000000005,6.140000000000001,7.46,8.76,9.870000000000001,10.86,12.21,13.09,36.730000000000004,48.36,55.07,58.49,60.68,61.660000000000004,62.49,63.35,13.42,14.43,14.58,14.77,15.030000000000001,15.280000000000001,15.56,15.8,16.14,N/A,N/A +2013,11,2,7,30,94940,93810,92710,45.04,0,1.32,2.84,3.7600000000000002,5.0600000000000005,6.45,7.88,9.17,10.38,12.120000000000001,10.38,38.82,53.410000000000004,60.95,64.65,66.98,67.97,68.82000000000001,69.82000000000001,12.4,13.4,13.56,13.75,13.99,14.22,14.48,14.69,15.01,N/A,N/A +2013,11,2,8,30,95000,93860,92760,49.25,0,1.3900000000000001,3.0300000000000002,3.94,5.13,6.34,7.55,8.67,9.700000000000001,11.24,18.8,45.89,59.22,65.84,69.05,71.17,71.87,72.36,72.3,12.030000000000001,13.14,13.31,13.48,13.64,13.780000000000001,13.93,14.06,14.24,N/A,N/A +2013,11,2,9,30,95030,93890,92790,50.53,0,1.54,1,1.05,1.81,2.74,3.84,4.86,5.9,7.79,293.18,346.05,7.88,43.56,58.53,64.99,67.08,68.91,70.8,12.5,13.74,13.76,13.65,13.57,13.5,13.44,13.41,13.4,N/A,N/A +2013,11,2,10,30,95060,93920,92810,52.74,0,1.31,2.18,2.48,2.91,3.5100000000000002,4.17,4.91,5.65,7.09,356.92,28.6,45.17,58.33,66.01,71.97,74.43,76.39,77.99,11.78,13.120000000000001,13.18,13.09,13.06,13.030000000000001,13.01,13.01,13.030000000000001,N/A,N/A +2013,11,2,11,30,95100,93960,92850,54.75,0,1.59,1.92,2.02,2.42,3.02,3.7,4.37,5.05,6.4,1.41,34.85,49.870000000000005,62.940000000000005,71.03,77.63,79.42,80.81,81.81,11,12.32,12.370000000000001,12.27,12.25,12.25,12.26,12.31,12.46,N/A,N/A +2013,11,2,12,30,95150,94000,92890,58.2,0,1.71,2.07,2.05,2.2,2.54,2.93,3.45,3.98,5.13,2.35,22.28,40.63,64.86,76.2,83.83,85.91,87.33,87.65,9.92,10.97,11.11,11.27,11.450000000000001,11.620000000000001,11.71,11.8,11.97,N/A,N/A +2013,11,2,13,30,95210,94060,92940,62.160000000000004,0,1.29,1.82,1.83,1.8800000000000001,1.59,1.22,0.59,0.54,1.53,247.83,251.74,251.72,249.63,247.36,240.82,217.57,190.24,105.48,8.55,9.5,9.52,9.46,9.43,9.42,9.55,9.76,10.34,N/A,N/A +2013,11,2,14,30,95250,94090,92980,52.65,0,0.89,1.28,1.46,1.59,1.45,1.25,0.9,0.71,0.8,265.94,279.71,285.47,287.54,284.75,278.90000000000003,260.13,231.42000000000002,168.1,9.01,9.08,9.27,9.53,9.89,10.23,10.6,10.84,10.97,N/A,N/A +2013,11,2,15,30,95260,94110,92990,44.95,0,0.62,0.74,0.76,0.78,0.78,0.74,0.47000000000000003,0.38,0.62,283.38,279.76,278.33,277.73,278.71,279.14,275,233.27,114.62,11.69,11.32,11.15,10.99,10.84,10.74,10.84,11,11.24,N/A,N/A +2013,11,2,16,30,95240,94100,93000,37.4,0,0.28,0.24,0.2,0.15,0.12,0.11,0.16,0.23,0.41000000000000003,260.45,251.63,241.93,230.99,197.65,166.98,145.19,125.82000000000001,115.51,14.22,13.790000000000001,13.57,13.370000000000001,13.17,13,12.8,12.620000000000001,12.26,N/A,N/A +2013,11,2,17,30,95200,94070,92970,32.63,0,0.54,0.76,0.87,0.97,1.07,1.16,1.25,1.33,1.51,130.71,125.59,122.63,120.52,118.87,117.45,116.24000000000001,115.12,113.17,16.48,15.98,15.74,15.52,15.31,15.120000000000001,14.91,14.72,14.35,N/A,N/A +2013,11,2,18,30,95140,94020,92930,26.77,0,2.44,2.93,3.06,3.13,3.17,3.2,3.22,3.24,3.25,134.6,133.94,133.38,132.85,132.32,131.82,131.3,130.81,129.81,18.42,17.830000000000002,17.57,17.330000000000002,17.11,16.9,16.69,16.490000000000002,16.080000000000002,N/A,N/A +2013,11,2,19,30,95090,93970,92880,25.6,0,2.25,2.75,2.91,3,3.06,3.11,3.15,3.18,3.23,150.86,149.91,149.38,148.93,148.53,148.17000000000002,147.83,147.51,146.88,19.43,18.85,18.580000000000002,18.34,18.12,17.91,17.69,17.490000000000002,17.09,N/A,N/A +2013,11,2,20,30,95010,93900,92810,24.7,0,2.82,3.41,3.58,3.66,3.7,3.74,3.7600000000000002,3.77,3.7800000000000002,157.52,157.18,156.91,156.65,156.41,156.18,155.95000000000002,155.74,155.3,20.06,19.47,19.21,18.97,18.740000000000002,18.54,18.32,18.12,17.71,N/A,N/A +2013,11,2,21,30,94940,93820,92740,24.01,0,2.98,3.63,3.8200000000000003,3.91,3.97,4.01,4.03,4.05,4.07,153.5,153.71,153.71,153.64000000000001,153.54,153.43,153.3,153.18,152.92000000000002,20.42,19.86,19.62,19.38,19.16,18.96,18.740000000000002,18.54,18.14,N/A,N/A +2013,11,2,22,30,94880,93760,92680,22.31,0,3.22,3.95,4.15,4.25,4.3,4.34,4.3500000000000005,4.36,4.37,149.06,149.47,149.70000000000002,149.85,149.98,150.09,150.20000000000002,150.3,150.47,20.37,19.89,19.68,19.46,19.25,19.06,18.85,18.650000000000002,18.26,N/A,N/A +2013,11,2,23,30,94840,93730,92650,24.88,0,3.2800000000000002,4.78,5.19,5.36,5.42,5.44,5.4,5.37,5.28,151.77,151.27,150.9,150.52,150.17000000000002,149.85,149.54,149.26,148.74,19.740000000000002,19.59,19.45,19.28,19.09,18.900000000000002,18.7,18.52,18.13,N/A,N/A +2013,11,3,0,30,94820,93710,92630,30.03,0,3.16,5.63,6.1000000000000005,6.11,6.09,6.07,6.0600000000000005,6.0600000000000005,6.04,146.55,141.05,138.4,137.53,137.36,137.49,137.86,138.23,139.34,17.8,18.990000000000002,19.150000000000002,19.04,18.88,18.71,18.51,18.330000000000002,17.94,N/A,N/A +2013,11,3,1,30,94820,93700,92620,33.5,0,3.48,5.95,6.48,6.65,6.76,6.83,6.8500000000000005,6.8500000000000005,6.83,163.57,159.27,156.93,155.5,154.92000000000002,154.72,156.21,157.64000000000001,160.23,17.18,18.32,18.53,18.5,18.43,18.34,18.18,18.03,17.650000000000002,N/A,N/A +2013,11,3,2,30,94810,93690,92610,40.08,0,3.33,5.8,6.6000000000000005,7.36,8.01,8.58,8.93,9.19,9.15,163.95000000000002,169.72,173.24,176.02,177.75,178.96,179.18,179.22,178.43,15.67,16.9,17.25,17.48,17.580000000000002,17.63,17.57,17.5,17.21,N/A,N/A +2013,11,3,3,30,94780,93660,92570,42.33,0,3.11,6.140000000000001,7.24,8.290000000000001,9.11,9.81,10.13,10.36,10.32,165.99,172.51,175.71,177.09,177.4,177.3,176.69,176.11,174.83,14.63,16.14,16.59,16.96,17.19,17.37,17.38,17.36,17.12,N/A,N/A +2013,11,3,4,30,94760,93630,92540,36.18,0,3.77,6.75,7.86,8.85,9.67,10.39,10.92,11.35,11.65,168.11,171.77,173.66,174.65,175.11,175.34,175.32,175.27,174.98,14.71,15.73,16.04,16.31,16.51,16.68,16.77,16.830000000000002,16.76,N/A,N/A +2013,11,3,5,30,94720,93600,92510,38.96,0,3.6,6.5200000000000005,7.58,8.58,9.46,10.26,10.96,11.57,12.43,160.53,165.14000000000001,167.74,169.43,170.43,171.13,171.39000000000001,171.6,171.78,13.88,15.02,15.38,15.71,15.99,16.22,16.39,16.52,16.580000000000002,N/A,N/A +2013,11,3,6,30,94700,93570,92480,39.480000000000004,0,4.09,6.8500000000000005,7.83,8.72,9.56,10.33,11.120000000000001,11.86,13.16,154.49,158.9,161.46,163.44,165.23,166.85,168.34,169.63,171.42000000000002,13.290000000000001,14.09,14.35,14.57,14.780000000000001,14.96,15.16,15.34,15.65,N/A,N/A +2013,11,3,7,30,94700,93560,92460,47.67,0,3.7,6.5,7.57,8.46,9.28,10.03,10.76,11.42,12.56,145.03,147.13,148.11,148.39000000000001,149.14000000000001,150.01,151.74,153.6,158.6,11.38,12.19,12.43,12.61,12.77,12.92,13.11,13.290000000000001,13.66,N/A,N/A +2013,11,3,8,30,94650,93520,92420,41.230000000000004,0,5.22,8.370000000000001,9.63,10.71,11.620000000000001,12.41,13.14,13.76,14.73,153.74,155.32,156.04,156.31,156.45000000000002,156.56,156.94,157.42000000000002,158.8,12.290000000000001,12.780000000000001,12.93,13.05,13.16,13.25,13.36,13.450000000000001,13.620000000000001,N/A,N/A +2013,11,3,9,30,94610,93470,92370,44.86,0,4.28,7.3100000000000005,8.52,9.61,10.61,11.540000000000001,12.48,13.38,15.06,146.54,151.71,154.29,155.88,156.98,157.91,158.78,159.65,161.52,10.76,11.33,11.49,11.63,11.73,11.81,11.88,11.950000000000001,12.1,N/A,N/A +2013,11,3,10,30,94570,93430,92330,39.72,0,6.2700000000000005,9.370000000000001,10.59,11.65,12.63,13.530000000000001,14.36,15.120000000000001,16.38,155.37,156.03,156.43,156.75,157.26,157.81,158.70000000000002,159.66,162.08,11.25,11.55,11.65,11.73,11.83,11.91,12.01,12.11,12.31,N/A,N/A +2013,11,3,11,30,94550,93400,92290,46.94,0,3.85,6.91,8.18,9.31,10.4,11.42,12.450000000000001,13.44,15.32,139.4,142.96,145.13,146.8,148.42000000000002,149.96,151.65,153.34,156.83,9.48,10.22,10.42,10.55,10.64,10.700000000000001,10.78,10.85,11.05,N/A,N/A +2013,11,3,12,30,94530,93380,92270,45.42,0,4.61,7.8,9.25,10.55,11.700000000000001,12.74,13.73,14.65,16.29,141.1,146.93,150.3,152.53,154.19,155.59,156.81,157.94,160.12,9.21,9.78,9.98,10.14,10.290000000000001,10.41,10.540000000000001,10.66,10.91,N/A,N/A +2013,11,3,13,30,94490,93350,92240,42.480000000000004,0,6.19,9.31,10.61,11.73,12.72,13.61,14.47,15.27,16.77,146.12,147.91,149.06,150,150.95000000000002,151.87,153.01,154.19,156.92000000000002,9.74,9.99,10.040000000000001,10.09,10.14,10.19,10.27,10.35,10.57,N/A,N/A +2013,11,3,14,30,94500,93360,92250,36.89,0,7.58,10.25,11.26,12.07,12.74,13.33,13.89,14.4,15.4,149.86,151.4,152.35,153.15,153.91,154.59,155.31,156,157.41,11.47,11.290000000000001,11.19,11.08,10.97,10.870000000000001,10.77,10.68,10.53,N/A,N/A +2013,11,3,15,30,94520,93380,92270,36.53,0,7.0600000000000005,8.92,9.56,10,10.34,10.620000000000001,10.91,11.22,12.040000000000001,153.65,154.4,154.91,155.4,155.92000000000002,156.41,157.05,157.71,159.37,12.57,12.08,11.86,11.66,11.46,11.290000000000001,11.11,10.950000000000001,10.64,N/A,N/A +2013,11,3,16,30,94480,93350,92250,31.37,0,8.620000000000001,10.91,11.6,12.030000000000001,12.33,12.56,12.74,12.9,13.23,159.09,159.48,159.73,159.94,160.17000000000002,160.37,160.61,160.84,161.41,14.47,13.870000000000001,13.620000000000001,13.39,13.18,12.98,12.780000000000001,12.6,12.23,N/A,N/A +2013,11,3,17,30,94450,93320,92220,31.51,0,8.89,11.19,11.86,12.26,12.530000000000001,12.73,12.86,12.97,13.17,166.29,166.51,166.63,166.76,166.9,167.05,167.22,167.39000000000001,167.78,14.85,14.32,14.09,13.870000000000001,13.66,13.47,13.26,13.07,12.69,N/A,N/A +2013,11,3,18,30,94440,93310,92220,31.03,0,7.930000000000001,9.98,10.58,10.93,11.16,11.33,11.44,11.540000000000001,11.69,167.9,167.94,168,168.08,168.18,168.27,168.39000000000001,168.51,168.79,15.32,14.8,14.57,14.35,14.13,13.94,13.72,13.530000000000001,13.13,N/A,N/A +2013,11,3,19,30,94400,93270,92180,34.28,0,8,10,10.55,10.85,11.03,11.15,11.200000000000001,11.23,11.24,166.35,166.33,166.35,166.39000000000001,166.43,166.48,166.54,166.61,166.77,15.3,14.74,14.5,14.27,14.040000000000001,13.84,13.620000000000001,13.42,13.01,N/A,N/A +2013,11,3,20,30,94340,93220,92120,36.54,0,6.2,7.78,8.25,8.52,8.69,8.8,8.870000000000001,8.92,8.96,161.55,161.83,161.98,162.12,162.25,162.37,162.5,162.63,162.9,15.3,14.790000000000001,14.56,14.33,14.120000000000001,13.92,13.700000000000001,13.51,13.11,N/A,N/A +2013,11,3,21,30,94240,93120,92030,33.56,0,6.96,8.77,9.34,9.66,9.870000000000001,10.02,10.13,10.21,10.31,150.74,151.98,152.76,153.47,154.15,154.77,155.43,156.04,157.3,16.4,15.81,15.57,15.36,15.14,14.96,14.75,14.56,14.19,N/A,N/A +2013,11,3,22,30,94170,93050,91970,29.98,0,8.56,10.81,11.47,11.84,12.09,12.26,12.36,12.43,12.51,162.58,162.56,162.52,162.48,162.43,162.39000000000001,162.35,162.31,162.24,17.3,16.85,16.63,16.41,16.19,16,15.790000000000001,15.59,15.19,N/A,N/A +2013,11,3,23,30,94130,93020,91930,35.87,0,6.74,8.950000000000001,9.700000000000001,10.27,10.74,11.15,11.51,11.83,12.42,156.47,156.86,157.14000000000001,157.41,157.72,158.02,158.35,158.66,159.32,15.77,15.530000000000001,15.38,15.200000000000001,15.02,14.86,14.67,14.5,14.14,N/A,N/A +2013,11,4,0,30,94130,93010,91920,35.28,0,6.5,8.73,9.51,10.09,10.56,10.96,11.31,11.63,12.22,152.56,153.13,153.54,153.95000000000002,154.37,154.77,155.22,155.64000000000001,156.51,15.66,15.450000000000001,15.31,15.14,14.96,14.790000000000001,14.61,14.43,14.07,N/A,N/A +2013,11,4,1,30,94130,93010,91930,33.39,0,6.68,9.05,9.91,10.59,11.17,11.66,12.13,12.57,13.41,153.3,154.02,154.52,155,155.46,155.9,156.36,156.8,157.69,15.68,15.51,15.38,15.24,15.09,14.950000000000001,14.8,14.65,14.36,N/A,N/A +2013,11,4,2,30,94120,93000,91910,31.990000000000002,0,6.01,8.26,9.13,9.82,10.4,10.92,11.4,11.86,12.74,152.32,152.64000000000001,152.88,153.15,153.45000000000002,153.75,154.11,154.46,155.23,15.83,15.66,15.52,15.370000000000001,15.200000000000001,15.05,14.870000000000001,14.71,14.370000000000001,N/A,N/A +2013,11,4,3,30,94150,93030,91940,30.42,0,7.38,9.870000000000001,10.8,11.51,12.1,12.6,13.06,13.49,14.280000000000001,167.5,167.76,167.95000000000002,168.17000000000002,168.4,168.62,168.85,169.07,169.48,15.75,15.58,15.44,15.280000000000001,15.11,14.950000000000001,14.76,14.6,14.24,N/A,N/A +2013,11,4,4,30,94110,92980,91890,41.89,0,7.38,10,11.02,11.83,12.51,13.09,13.65,14.16,15.18,165.43,165.76,166.02,166.26,166.48,166.69,166.91,167.13,167.61,14.72,14.6,14.49,14.35,14.21,14.07,13.92,13.77,13.48,N/A,N/A +2013,11,4,5,30,94110,92990,91900,31.220000000000002,0,7.32,9.83,10.81,11.61,12.280000000000001,12.870000000000001,13.43,13.950000000000001,14.94,165.12,165.49,165.75,166.02,166.29,166.55,166.81,167.06,167.51,15.14,14.97,14.85,14.700000000000001,14.540000000000001,14.4,14.24,14.09,13.77,N/A,N/A +2013,11,4,6,30,94100,92970,91880,44.39,0,7.7,10.27,11.17,11.86,12.42,12.9,13.33,13.72,14.44,163.92000000000002,164.3,164.58,164.81,165.01,165.20000000000002,165.39000000000001,165.57,165.97,14.23,13.98,13.82,13.64,13.46,13.280000000000001,13.09,12.91,12.540000000000001,N/A,N/A +2013,11,4,7,30,94110,92990,91900,54.870000000000005,0,8.43,11.21,12.17,12.92,13.530000000000001,14.040000000000001,14.51,14.94,15.75,166.78,167.49,167.95000000000002,168.33,168.67000000000002,168.97,169.26,169.51,169.99,13.89,13.65,13.49,13.32,13.14,12.98,12.790000000000001,12.620000000000001,12.26,N/A,N/A +2013,11,4,8,30,94120,92990,91900,59.47,0,7.640000000000001,10.05,10.870000000000001,11.48,11.97,12.39,12.77,13.120000000000001,13.77,162.01,162.58,162.93,163.25,163.56,163.84,164.15,164.44,165.01,13.38,13.11,12.94,12.76,12.56,12.39,12.18,12,11.620000000000001,N/A,N/A +2013,11,4,9,30,94130,93000,91910,67.5,0,7.78,10.21,11.05,11.71,12.23,12.67,13.06,13.4,14.05,163,163.82,164.38,164.88,165.34,165.76,166.16,166.54,167.31,13.08,12.82,12.65,12.47,12.290000000000001,12.120000000000001,11.93,11.76,11.42,N/A,N/A +2013,11,4,10,30,94080,92960,91860,72.65,0,6.87,9.450000000000001,10.4,11.06,11.66,12.200000000000001,12.68,13.14,14.13,160.84,162.42000000000002,163.36,164,164.63,165.22,165.77,166.29,167.44,12.71,12.43,12.26,12.07,11.89,11.72,11.540000000000001,11.370000000000001,11.06,N/A,N/A +2013,11,4,11,30,94120,92990,91900,76.55,0,5.79,8.14,9.06,9.71,10.21,10.64,11.17,11.66,12.65,166.21,167.52,168.29,168.83,169.26,169.63,170.08,170.49,171.21,12.530000000000001,12.25,12.08,11.9,11.71,11.55,11.370000000000001,11.22,10.94,N/A,N/A +2013,11,4,12,30,94120,92990,91900,73.12,0,5.89,7.9,8.64,9.23,9.71,10.120000000000001,10.51,10.870000000000001,11.540000000000001,160.55,161.51,162.20000000000002,162.83,163.42000000000002,163.95000000000002,164.48,164.98,165.9,12.89,12.64,12.48,12.31,12.13,11.97,11.790000000000001,11.63,11.290000000000001,N/A,N/A +2013,11,4,13,30,94110,92980,91880,75.37,0,5.75,7.65,8.33,8.870000000000001,9.28,9.63,9.950000000000001,10.24,10.790000000000001,161.28,161.72,162.07,162.47,162.87,163.23,163.67000000000002,164.08,164.96,12.73,12.47,12.31,12.13,11.950000000000001,11.78,11.6,11.43,11.08,N/A,N/A +2013,11,4,14,30,94140,93010,91910,75.63,0,5.29,6.9,7.51,8.01,8.51,8.98,9.33,9.620000000000001,10.13,159.87,160.6,161.20000000000002,161.86,162.70000000000002,163.56,164.24,164.82,165.92000000000002,12.64,12.32,12.14,11.96,11.78,11.61,11.42,11.24,10.88,N/A,N/A +2013,11,4,15,30,94170,93040,91940,69.60000000000001,0,5.13,6.46,6.890000000000001,7.17,7.37,7.54,7.72,7.9,8.42,157.84,158.54,159.04,159.53,160.07,160.59,161.28,161.98,163.79,13.42,12.99,12.790000000000001,12.6,12.4,12.23,12.040000000000001,11.870000000000001,11.53,N/A,N/A +2013,11,4,16,30,94160,93040,91950,58.76,0,5.49,6.92,7.4,7.69,7.9,8.040000000000001,8.16,8.27,8.49,157.99,158.54,158.91,159.22,159.52,159.78,160.1,160.4,161.12,15.06,14.540000000000001,14.31,14.09,13.89,13.700000000000001,13.5,13.32,12.950000000000001,N/A,N/A +2013,11,4,17,30,94120,93010,91920,53.53,0,6.97,8.72,9.28,9.6,9.8,9.93,10.02,10.09,10.17,162.58,162.9,163.09,163.24,163.37,163.47,163.59,163.69,163.91,16.67,15.98,15.71,15.46,15.23,15.030000000000001,14.82,14.620000000000001,14.23,N/A,N/A +2013,11,4,18,30,94090,92980,91900,51.53,0,8.03,10,10.58,10.9,11.08,11.21,11.26,11.31,11.32,163.74,164.01,164.17000000000002,164.3,164.4,164.5,164.59,164.67000000000002,164.83,17.75,16.98,16.69,16.43,16.19,15.97,15.76,15.55,15.15,N/A,N/A +2013,11,4,19,30,94090,92980,91900,54.35,0,7.8,9.66,10.22,10.52,10.69,10.8,10.85,10.88,10.88,166.4,166.52,166.62,166.71,166.79,166.87,166.95000000000002,167.04,167.21,17.740000000000002,16.98,16.69,16.43,16.2,15.98,15.77,15.57,15.18,N/A,N/A +2013,11,4,20,30,94070,92950,91870,60.03,0,7.1000000000000005,8.91,9.4,9.66,9.82,9.92,9.96,9.99,10.01,163.92000000000002,163.95000000000002,163.96,163.98,164,164.03,164.07,164.12,164.29,16.77,16.32,16.11,15.89,15.68,15.49,15.280000000000001,15.09,14.71,N/A,N/A +2013,11,4,21,30,94030,92920,91840,60.65,0,5.95,7.36,7.8100000000000005,8.040000000000001,8.18,8.27,8.32,8.36,8.39,153.47,153.99,154.35,154.65,154.94,155.21,155.5,155.78,156.38,17.47,16.82,16.56,16.32,16.09,15.89,15.68,15.49,15.1,N/A,N/A +2013,11,4,22,30,94010,92900,91820,65.25,0,5.09,6.41,6.82,7.05,7.19,7.29,7.3500000000000005,7.4,7.45,145.01,145.65,146.06,146.42000000000002,146.77,147.09,147.45000000000002,147.79,148.56,17.14,16.73,16.52,16.31,16.1,15.9,15.700000000000001,15.51,15.11,N/A,N/A +2013,11,4,23,30,93970,92860,91790,66.34,0,3.5300000000000002,4.59,4.95,5.19,5.39,5.55,5.7,5.84,6.09,135.29,135.96,136.42000000000002,136.83,137.27,137.70000000000002,138.28,138.83,140.08,17.2,16.88,16.7,16.51,16.31,16.13,15.93,15.74,15.35,N/A,N/A +2013,11,5,0,30,93970,92860,91780,74.69,0,2.5500000000000003,4.73,5.59,6.23,6.74,7.17,7.53,7.86,8.5,120.17,121.32000000000001,122.32000000000001,123.48,124.77,126.07000000000001,127.92,129.8,134.32,16.1,16.25,16.2,16.09,15.96,15.84,15.700000000000001,15.57,15.34,N/A,N/A +2013,11,5,1,30,93980,92870,91790,74.92,0,2.92,5.07,5.89,6.63,7.28,7.86,8.4,8.91,9.84,140.12,136.08,133.7,132.05,131.29,130.91,131.47,132.25,135.64000000000001,15.93,16.17,16.17,16.13,16.05,15.97,15.85,15.72,15.44,N/A,N/A +2013,11,5,2,30,93990,92880,91810,74.62,0,4.13,6.51,7.46,8.24,8.91,9.51,10.08,10.63,11.74,141.84,141.35,140.82,140.13,139.74,139.5,139.67000000000002,139.92000000000002,140.99,15.92,16.06,16.080000000000002,16.080000000000002,16.09,16.09,16.11,16.12,16.16,N/A,N/A +2013,11,5,3,30,93990,92880,91800,83.33,0,4.09,6.59,7.68,8.63,9.5,10.32,11.14,11.92,13.370000000000001,140.13,140.63,140.94,141.20000000000002,141.72,142.34,143.29,144.24,146.4,15.72,15.860000000000001,15.870000000000001,15.860000000000001,15.85,15.83,15.82,15.81,15.8,N/A,N/A +2013,11,5,4,30,93990,92880,91810,85.06,0,4.72,7.36,8.44,9.370000000000001,10.17,10.89,11.55,12.17,13.25,144.88,146.21,147.04,147.69,148.28,148.83,149.42000000000002,150.01,151.4,16.28,16.42,16.41,16.37,16.32,16.27,16.21,16.15,16.04,N/A,N/A +2013,11,5,5,30,94010,92900,91820,88.38,0,4.95,7.69,8.9,9.950000000000001,10.870000000000001,11.700000000000001,12.48,13.200000000000001,14.42,143,143.43,143.69,143.84,144.09,144.39000000000001,144.88,145.39000000000001,146.74,16.01,16.12,16.1,16.06,16.01,15.97,15.92,15.88,15.8,N/A,N/A +2013,11,5,6,30,93990,92870,91800,91.88,0,5.66,8.42,9.52,10.450000000000001,11.28,12.030000000000001,12.74,13.4,14.59,145.65,146.36,146.71,146.91,147.13,147.35,147.75,148.18,149.47,15.76,15.780000000000001,15.74,15.68,15.63,15.58,15.530000000000001,15.49,15.42,N/A,N/A +2013,11,5,7,30,94010,92890,91820,93.5,0,4.71,7.2700000000000005,8.33,9.22,9.99,10.66,11.290000000000001,11.870000000000001,12.93,141.07,142.72,143.79,144.64000000000001,145.55,146.43,147.55,148.64000000000001,151.13,15.540000000000001,15.56,15.52,15.47,15.43,15.38,15.35,15.33,15.31,N/A,N/A +2013,11,5,8,30,93990,92880,91800,95.65,0,2.47,5.17,6.26,7.21,8.040000000000001,8.77,9.5,10.19,11.51,135.15,139.71,142.68,144.75,146.66,148.41,150.14000000000001,151.75,154.55,14.85,15.35,15.35,15.32,15.290000000000001,15.24,15.21,15.17,15.120000000000001,N/A,N/A +2013,11,5,9,30,93970,92860,91780,94.52,0,2.38,5.14,6.2700000000000005,7.2700000000000005,8.09,8.82,9.48,10.1,11.24,131.22,139.68,144.33,146.70000000000002,148.32,149.56,150.54,151.44,152.99,14.68,15.16,15.14,15.1,15.040000000000001,14.97,14.89,14.82,14.67,N/A,N/A +2013,11,5,10,30,94000,92880,91800,94.27,0,3.95,6.3500000000000005,7.43,8.38,9.16,9.83,10.43,10.98,11.98,142.58,145.69,147.67000000000002,148.83,149.73,150.43,151.13,151.8,153.29,15.02,15.09,15.05,14.98,14.91,14.83,14.76,14.700000000000001,14.56,N/A,N/A +2013,11,5,11,30,94010,92900,91820,96.49000000000001,0,2.23,4.66,5.66,6.5200000000000005,7.21,7.8100000000000005,8.38,8.91,9.91,135.29,140.74,144.23,146.01,147.44,148.63,149.73,150.75,152.66,14.34,14.790000000000001,14.75,14.67,14.58,14.47,14.35,14.24,14.02,N/A,N/A +2013,11,5,12,30,94020,92910,91830,96.53,0,1.1400000000000001,3.16,4.45,5.48,6.36,7.140000000000001,7.84,8.49,9.69,148.49,149.75,151.06,152.56,154.05,155.52,156.79,157.96,159.94,14.25,14.65,14.57,14.49,14.4,14.31,14.23,14.15,14.02,N/A,N/A +2013,11,5,13,30,94020,92910,91830,93.66,0,2.11,4.72,6.18,7.24,8.08,8.78,9.39,9.96,10.96,146.53,153.82,157.87,158.55,159.06,159.47,159.99,160.5,161.65,15.36,15.31,15.24,15.15,15.05,14.96,14.85,14.74,14.530000000000001,N/A,N/A +2013,11,5,14,30,94040,92930,91850,90.52,0,3.77,5.73,6.640000000000001,7.43,8.11,8.72,9.26,9.75,10.64,156.58,158.17000000000002,158.91,159.37,159.74,160.03,160.28,160.52,160.97,16.32,16.11,15.97,15.82,15.67,15.530000000000001,15.38,15.24,14.96,N/A,N/A +2013,11,5,15,30,94050,92950,91870,86.89,0,4.3100000000000005,5.7,6.25,6.68,7.03,7.33,7.61,7.87,8.41,152.11,153.88,154.99,155.94,156.8,157.58,158.36,159.1,160.71,17.27,16.9,16.72,16.52,16.330000000000002,16.15,15.96,15.780000000000001,15.43,N/A,N/A +2013,11,5,16,30,94060,92960,91890,82.47,0,4.1,5.29,5.69,5.94,6.12,6.25,6.3500000000000005,6.44,6.57,155.53,156.29,156.77,157.14000000000001,157.48,157.77,158.08,158.38,159.02,18.330000000000002,17.91,17.7,17.490000000000002,17.29,17.1,16.89,16.71,16.32,N/A,N/A +2013,11,5,17,30,94030,92930,91870,67.79,0,5.61,7.07,7.54,7.8100000000000005,7.99,8.120000000000001,8.21,8.290000000000001,8.38,168.71,168.79,168.83,168.84,168.84,168.82,168.8,168.79,168.74,20.98,20.28,20.01,19.76,19.53,19.32,19.1,18.900000000000002,18.5,N/A,N/A +2013,11,5,18,30,93970,92880,91830,61.58,0,5.58,6.99,7.390000000000001,7.61,7.75,7.84,7.9,7.94,7.98,169.78,169.9,169.97,170.02,170.05,170.08,170.11,170.13,170.18,22.38,21.66,21.38,21.13,20.89,20.68,20.46,20.26,19.86,N/A,N/A +2013,11,5,19,30,93950,92870,91820,57.730000000000004,0,6.44,7.96,8.45,8.700000000000001,8.870000000000001,8.97,9.02,9.06,9.09,169.77,170.26,170.56,170.81,171.02,171.22,171.4,171.58,171.95000000000002,23.37,22.63,22.35,22.080000000000002,21.85,21.63,21.41,21.21,20.81,N/A,N/A +2013,11,5,20,30,93920,92840,91790,55.07,0,6.44,7.91,8.370000000000001,8.6,8.74,8.83,8.870000000000001,8.91,8.93,174.74,175.14000000000001,175.41,175.68,175.92000000000002,176.17000000000002,176.41,176.65,177.20000000000002,24,23.3,23.03,22.77,22.54,22.330000000000002,22.12,21.92,21.52,N/A,N/A +2013,11,5,21,30,93920,92840,91790,49.21,0,6.08,7.47,7.96,8.2,8.370000000000001,8.47,8.55,8.6,8.66,195.49,195.58,195.64000000000001,195.75,195.86,195.97,196.1,196.22,196.49,24.69,24.080000000000002,23.82,23.57,23.35,23.14,22.92,22.73,22.32,N/A,N/A +2013,11,5,22,30,93900,92820,91770,49,0,5.83,7.23,7.69,7.92,8.08,8.19,8.26,8.31,8.370000000000001,187.65,187.9,188.09,188.32,188.52,188.73,188.93,189.12,189.54,24.650000000000002,24.16,23.94,23.71,23.5,23.3,23.09,22.900000000000002,22.5,N/A,N/A +2013,11,5,23,30,93880,92800,91750,54.43,0,5.48,7.36,7.99,8.44,8.77,9.02,9.21,9.370000000000001,9.59,176.79,177.4,177.81,178.13,178.38,178.58,178.74,178.88,179.13,23.78,23.580000000000002,23.44,23.26,23.09,22.91,22.72,22.54,22.150000000000002,N/A,N/A +2013,11,6,0,30,93910,92830,91780,69.43,0,5.0200000000000005,7.45,8.43,9.22,9.85,10.34,10.71,11.02,11.35,170.49,171.65,172.43,172.83,173.09,173.24,173.35,173.45000000000002,173.84,22.04,22.13,22.09,22.01,21.900000000000002,21.79,21.650000000000002,21.51,21.19,N/A,N/A +2013,11,6,1,30,93940,92850,91800,77.9,0,4.23,6.4,7.26,8.15,8.93,9.65,10.3,10.9,11.72,141.56,148.54,153.20000000000002,157.01,159.84,161.98,163.47,164.66,166.09,20.51,20.64,20.63,20.61,20.580000000000002,20.54,20.48,20.43,20.27,N/A,N/A +2013,11,6,2,30,94020,92930,91870,83.59,0,1.71,2.45,2.24,1.8,1.6,1.52,1.67,1.9000000000000001,2.37,24.92,321.25,291.75,287.03000000000003,281.47,274.91,266.56,257.31,242.23000000000002,20.490000000000002,21.51,21.55,21.16,20.91,20.75,20.62,20.5,20.13,N/A,N/A +2013,11,6,3,30,94070,92970,91920,89.17,0,1.27,1.81,1.76,1.72,1.76,1.85,1.98,2.12,2.2600000000000002,28.55,16.06,7.08,356.13,346.91,338.47,332.6,327.51,319.03000000000003,19.35,20.19,20.37,20.47,20.54,20.6,20.64,20.68,20.72,N/A,N/A +2013,11,6,4,30,94130,93030,91960,91.58,0,0.34,0.98,1.44,1.9000000000000001,2.32,2.71,2.96,3.15,3.24,273.71,275.17,277.49,280.23,281.59000000000003,281.68,280.21,278.35,269.32,18.23,18.8,18.91,19.080000000000002,19.26,19.45,19.61,19.75,19.93,N/A,N/A +2013,11,6,5,30,94140,93040,91980,91.60000000000001,0,0.1,0.68,1.3900000000000001,1.92,2.37,2.74,3.02,3.2600000000000002,3.54,53.79,14.73,319.7,318.56,317.36,316.16,315.03000000000003,313.93,311.57,17.990000000000002,18.89,19.13,19.3,19.41,19.490000000000002,19.56,19.61,19.7,N/A,N/A +2013,11,6,6,30,94250,93160,92100,60.46,0,6.5,8.2,9.01,9.55,9.97,10.26,10.47,10.61,10.71,322.8,323.07,324.36,325.49,326.45,327.42,328.42,329.46,331.87,20.09,20.11,20.12,20.150000000000002,20.18,20.21,20.240000000000002,20.27,20.32,N/A,N/A +2013,11,6,7,30,94340,93240,92170,69.83,1.8,2.21,3.27,3.77,4.24,4.57,4.8,4.83,4.8100000000000005,4.76,215.38,228.36,239.23000000000002,247.93,255.52,262.2,270.09000000000003,277.37,286.78000000000003,18.04,18.09,18.14,18.25,18.37,18.52,18.61,18.67,18.37,N/A,N/A +2013,11,6,8,30,94350,93240,92160,82.19,0,1.46,2.17,2.35,2.27,2.08,1.8800000000000001,1.8,1.77,2.08,85.98,96.10000000000001,96.78,91.22,82.08,73.22,60.03,48.14,24.38,16.580000000000002,16.47,16.65,17.080000000000002,17.46,17.81,18.03,18.22,18.53,N/A,N/A +2013,11,6,9,30,94430,93310,92240,77.77,0,3.46,5.29,5.79,6.16,6.57,7.0200000000000005,7.72,8.46,9.9,303.90000000000003,304.57,305.03000000000003,305.45,307.46,310.37,313.97,317.51,321.48,16.37,17.17,17.46,17.650000000000002,17.76,17.82,17.86,17.88,17.93,N/A,N/A +2013,11,6,10,30,94460,93340,92250,76.16,0,2.33,5.29,6.640000000000001,7.92,8.94,9.82,10.53,11.200000000000001,12.49,303.02,313.41,319.6,323.13,325.6,327.54,329.51,331.52,336.66,14.89,15.74,15.91,16.06,16.12,16.15,16.1,16.02,15.75,N/A,N/A +2013,11,6,11,30,94590,93460,92360,74.95,0,3.56,5.95,7.07,8.18,9.17,10.08,10.950000000000001,11.76,13.24,356.17,3.48,8.290000000000001,11.56,13.870000000000001,15.75,17.26,18.63,20.98,13.18,13.16,13.05,12.92,12.76,12.620000000000001,12.43,12.26,11.870000000000001,N/A,N/A +2013,11,6,12,30,94760,93620,92510,74.10000000000001,0,2.7600000000000002,4.03,4.54,5.36,6.23,7.1000000000000005,7.92,8.69,10.040000000000001,296.61,319.59000000000003,333.84000000000003,346.07,354.07,0.17,3.68,6.62,10.11,11.34,11.33,11.19,11.02,10.84,10.66,10.48,10.31,9.97,N/A,N/A +2013,11,6,13,30,94860,93720,92600,70.25,0,2.73,4.8,5.73,6.61,7.42,8.16,8.81,9.4,10.370000000000001,333.65000000000003,344.68,351.44,356.28000000000003,359.6,2.25,4.05,5.6000000000000005,8,10.47,10.48,10.35,10.19,10,9.83,9.65,9.47,9.11,N/A,N/A +2013,11,6,14,30,94950,93800,92680,57.300000000000004,0,4.7700000000000005,6.2700000000000005,6.82,7.21,7.53,7.79,8.040000000000001,8.26,8.67,355.06,357.31,358.75,359.96,1.04,2,2.91,3.7600000000000002,5.37,10.52,10.18,9.99,9.790000000000001,9.6,9.41,9.21,9.02,8.64,N/A,N/A +2013,11,6,15,30,95020,93870,92760,56.52,0,4.93,6.15,6.5600000000000005,6.8,6.96,7.09,7.17,7.24,7.3500000000000005,1.83,1.32,1.02,0.76,0.52,0.3,0.07,359.85,359.40000000000003,11.31,10.8,10.57,10.35,10.14,9.950000000000001,9.74,9.540000000000001,9.15,N/A,N/A +2013,11,6,16,30,95050,93910,92800,45.12,0,5.44,6.79,7.24,7.5,7.67,7.8,7.9,7.98,8.1,357.09000000000003,357.22,357.33,357.41,357.46,357.49,357.52,357.54,357.56,12.84,12.24,11.99,11.76,11.53,11.34,11.13,10.93,10.540000000000001,N/A,N/A +2013,11,6,17,30,95070,93930,92830,41.04,0,5.41,6.72,7.15,7.41,7.58,7.72,7.8100000000000005,7.890000000000001,8.01,356.29,356.24,356.2,356.15000000000003,356.12,356.08,356.04,356.01,355.93,14.57,13.91,13.65,13.41,13.17,12.97,12.75,12.55,12.14,N/A,N/A +2013,11,6,18,30,95050,93920,92820,35.2,0,5.14,6.38,6.7700000000000005,7,7.16,7.28,7.38,7.45,7.5600000000000005,359.6,359.31,359.14,359,358.87,358.75,358.63,358.53000000000003,358.31,15.93,15.26,14.99,14.74,14.51,14.3,14.08,13.88,13.47,N/A,N/A +2013,11,6,19,30,95060,93930,92840,32.77,0,4.95,6.0600000000000005,6.41,6.63,6.7700000000000005,6.88,6.96,7.0200000000000005,7.11,0.42,0.25,0.16,0.08,0.02,359.96,359.90000000000003,359.85,359.73,17.14,16.48,16.21,15.96,15.72,15.51,15.290000000000001,15.08,14.67,N/A,N/A +2013,11,6,20,30,95050,93930,92830,29.19,0,5.17,6.3100000000000005,6.65,6.86,7.01,7.11,7.18,7.24,7.32,1.79,1.51,1.31,1.1500000000000001,1.01,0.89,0.79,0.6900000000000001,0.52,17.92,17.29,17.03,16.78,16.55,16.34,16.12,15.92,15.5,N/A,N/A +2013,11,6,21,30,95050,93930,92840,27.01,0,4.94,6.01,6.34,6.55,6.69,6.79,6.86,6.92,7.01,6.21,5.18,4.59,4.14,3.8000000000000003,3.5,3.27,3.06,2.72,18.330000000000002,17.76,17.52,17.27,17.05,16.84,16.63,16.43,16.02,N/A,N/A +2013,11,6,22,30,95040,93920,92830,24.48,0,4.46,5.54,5.89,6.09,6.23,6.34,6.41,6.47,6.5600000000000005,9.88,9.19,8.77,8.47,8.24,8.06,7.92,7.8,7.62,18.28,17.81,17.59,17.38,17.16,16.96,16.75,16.56,16.15,N/A,N/A +2013,11,6,23,30,95050,93930,92840,25.2,0,3.81,5.62,6.2700000000000005,6.69,6.95,7.140000000000001,7.22,7.2700000000000005,7.29,4.26,5.2700000000000005,5.93,6.5,6.99,7.42,7.8100000000000005,8.14,8.73,17.52,17.37,17.240000000000002,17.07,16.89,16.71,16.51,16.330000000000002,15.94,N/A,N/A +2013,11,7,0,30,95110,93980,92880,31.720000000000002,0,2.12,3.95,4.46,4.83,5.21,5.5600000000000005,5.93,6.26,6.79,19.830000000000002,22.78,25.23,28.01,30.17,31.990000000000002,32.93,33.64,34,15.790000000000001,16.28,16.26,16.17,16.05,15.92,15.76,15.610000000000001,15.27,N/A,N/A +2013,11,7,1,30,95160,94020,92920,34.44,0,1.9100000000000001,3.44,3.91,4.42,5.04,5.72,6.41,7.03,7.890000000000001,20.02,29.84,35.9,40.74,43.21,44.71,45.01,45.12,44.58,14.790000000000001,15.15,15.09,15,14.92,14.86,14.790000000000001,14.72,14.52,N/A,N/A +2013,11,7,2,30,95210,94070,92970,36.980000000000004,0,1.99,3.59,4.1,4.66,5.32,6,6.69,7.33,8.31,30.64,38.44,43.74,48.870000000000005,52.17,54.74,56.050000000000004,57.14,58.06,13.72,14.07,14,13.89,13.780000000000001,13.69,13.61,13.52,13.34,N/A,N/A +2013,11,7,3,30,95250,94110,93000,39.64,0,1.97,3.36,3.85,4.6000000000000005,5.53,6.55,7.47,8.290000000000001,9.290000000000001,20.71,35.58,44.95,53.660000000000004,58.01,60.71,61.22,61.51,61.07,12.72,13.11,13.040000000000001,12.950000000000001,12.9,12.88,12.9,12.9,12.84,N/A,N/A +2013,11,7,4,30,95300,94150,93040,42.29,0,1.34,1.92,2.14,2.65,3.43,4.38,5.43,6.46,8.08,11.77,34.52,46.58,57.36,62.11,64.95,66.62,68.1,69.78,11.65,12,11.92,11.8,11.74,11.700000000000001,11.71,11.73,11.76,N/A,N/A +2013,11,7,5,30,95350,94200,93080,43.410000000000004,0,0.5,0.8200000000000001,1.07,1.6300000000000001,2.2800000000000002,2.98,3.68,4.39,5.72,333.44,33.17,59.27,71,75.91,77.97,78.51,78.92,78.9,11.13,11.540000000000001,11.47,11.33,11.200000000000001,11.07,10.950000000000001,10.84,10.65,N/A,N/A +2013,11,7,6,30,95410,94260,93140,44.11,0,0.81,1.24,1.47,2,2.6,3.25,3.89,4.54,5.75,345.6,29.89,50.02,62.050000000000004,68.68,73.25,75.05,76.54,77.87,11.01,11.34,11.24,11.09,10.96,10.85,10.75,10.66,10.52,N/A,N/A +2013,11,7,7,30,95460,94300,93180,46.18,0,1.08,1.43,1.57,1.97,2.48,3.0500000000000003,3.67,4.28,5.42,352.61,29.38,46.800000000000004,61.31,68.60000000000001,73.63,75.64,77.21000000000001,78.4,10.42,10.78,10.700000000000001,10.56,10.44,10.32,10.21,10.11,9.94,N/A,N/A +2013,11,7,8,30,95490,94330,93210,46.910000000000004,0,0.9,1.16,1.29,1.69,2.2,2.7800000000000002,3.39,4.01,5.18,353.79,29.97,45.61,57.69,64.95,70.72,73.13,75.06,76.64,9.950000000000001,10.35,10.26,10.11,9.98,9.870000000000001,9.77,9.700000000000001,9.65,N/A,N/A +2013,11,7,9,30,95530,94370,93250,48.65,0,0.46,0.62,0.73,1.05,1.45,1.92,2.43,2.98,4.16,27.14,67.03,77.07000000000001,72.71000000000001,73.08,75.04,76.2,77.2,78.29,9.27,9.69,9.64,9.51,9.39,9.290000000000001,9.200000000000001,9.11,9.03,N/A,N/A +2013,11,7,10,30,95540,94380,93250,50.81,0,0.24,0.22,0.28,0.53,0.8200000000000001,1.16,1.59,2.08,3.14,38.34,21.38,22.68,37.5,52.2,66.97,72.07000000000001,75.92,78.19,8.67,9.14,9.16,9.09,8.97,8.870000000000001,8.8,8.75,8.68,N/A,N/A +2013,11,7,11,30,95580,94410,93290,52.160000000000004,0,0.38,0.38,0.43,0.67,0.99,1.3800000000000001,1.82,2.31,3.38,33.27,24.92,27.55,39.31,51.47,64.16,68.96000000000001,72.76,75.73,8.21,8.49,8.53,8.59,8.540000000000001,8.48,8.42,8.38,8.35,N/A,N/A +2013,11,7,12,30,95630,94460,93340,53.28,0,0.31,0.58,0.68,0.78,1.05,1.41,1.86,2.35,3.42,12.51,6.86,13.02,29.09,43.36,57.88,64.78,70.23,74.62,7.87,8.14,8.15,8.16,8.17,8.19,8.18,8.2,8.27,N/A,N/A +2013,11,7,13,30,95670,94500,93370,53.870000000000005,0,0.25,0.7000000000000001,0.85,0.88,1.1400000000000001,1.49,1.92,2.39,3.39,16.73,13.99,22.63,38.980000000000004,52,64.62,70.7,75.28,78.86,7.66,7.99,8,7.98,7.98,7.98,7.99,8.02,8.08,N/A,N/A +2013,11,7,14,30,95690,94520,93390,49,0,0.49,0.63,0.76,0.96,1.26,1.6,1.98,2.37,3.2,10.040000000000001,15.42,26.060000000000002,43.81,56.300000000000004,67.39,73.23,77.52,81.16,8.05,7.83,7.7700000000000005,7.7700000000000005,7.7700000000000005,7.78,7.74,7.71,7.67,N/A,N/A +2013,11,7,15,30,95720,94550,93420,43.56,0,0.37,0.36,0.34,0.32,0.33,0.35000000000000003,0.42,0.58,1.51,312.42,327.40000000000003,338.98,351.32,8.040000000000001,24.32,42.83,58.410000000000004,79.31,9.39,9.02,8.83,8.66,8.48,8.31,8.14,7.99,7.84,N/A,N/A +2013,11,7,16,30,95710,94550,93430,36.18,0,0.53,0.73,0.8200000000000001,0.91,1,1.08,1.17,1.27,1.48,121.60000000000001,113.78,109.62,106.71000000000001,104.39,102.39,100.68,99.13,96.47,11.120000000000001,10.69,10.47,10.28,10.08,9.9,9.72,9.540000000000001,9.18,N/A,N/A +2013,11,7,17,30,95670,94520,93400,17.830000000000002,0,2.21,2.68,2.81,2.88,2.92,2.95,2.97,2.99,3.02,95.2,94.95,94.74,94.53,94.27,94.02,93.75,93.49,92.86,13.620000000000001,13.09,12.85,12.63,12.42,12.23,12.02,11.83,11.44,N/A,N/A +2013,11,7,18,30,95650,94510,93390,15.74,0,2.64,3.21,3.38,3.46,3.52,3.56,3.59,3.61,3.64,111.09,111.07000000000001,111,110.88,110.72,110.57000000000001,110.38,110.19,109.78,14.790000000000001,14.24,13.99,13.76,13.540000000000001,13.34,13.13,12.94,12.540000000000001,N/A,N/A +2013,11,7,19,30,95600,94460,93360,15.93,0,2.5500000000000003,3.11,3.2800000000000002,3.38,3.44,3.49,3.52,3.5500000000000003,3.59,125.31,124.87,124.51,124.12,123.72,123.36,122.95,122.58,121.84,15.63,15.08,14.83,14.6,14.38,14.18,13.96,13.77,13.370000000000001,N/A,N/A +2013,11,7,20,30,95540,94400,93300,14.540000000000001,0,2.91,3.58,3.7800000000000002,3.9,3.97,4.03,4.07,4.1,4.14,126.25,125.79,125.46000000000001,125.13000000000001,124.8,124.49000000000001,124.17,123.87,123.25,16.36,15.81,15.57,15.34,15.120000000000001,14.92,14.71,14.51,14.11,N/A,N/A +2013,11,7,21,30,95480,94350,93250,15.06,0,3.12,3.86,4.07,4.2,4.2700000000000005,4.33,4.37,4.4,4.44,129.43,129.44,129.4,129.3,129.17000000000002,129.05,128.91,128.78,128.48,16.56,16.06,15.83,15.610000000000001,15.4,15.200000000000001,14.99,14.790000000000001,14.39,N/A,N/A +2013,11,7,22,30,95430,94300,93200,17.16,0,3.6,4.5,4.75,4.9,4.98,5.04,5.07,5.09,5.11,139.74,139.16,138.75,138.32,137.89000000000001,137.5,137.09,136.71,135.91,16.29,15.88,15.67,15.47,15.26,15.07,14.86,14.67,14.27,N/A,N/A +2013,11,7,23,30,95410,94270,93170,20.32,0,2.63,3.98,4.45,4.75,4.96,5.12,5.21,5.28,5.3500000000000005,143.21,142.57,142.11,141.68,141.31,140.99,140.67000000000002,140.35,139.65,15.65,15.48,15.33,15.16,14.97,14.790000000000001,14.59,14.4,14.01,N/A,N/A +2013,11,8,0,30,95410,94270,93160,23.03,0,2.06,3.77,4.34,4.76,5.05,5.29,5.44,5.58,5.76,147.3,146.61,146.22,146.05,145.88,145.74,145.46,145.18,144.57,14.92,15.05,14.98,14.86,14.700000000000001,14.540000000000001,14.35,14.16,13.780000000000001,N/A,N/A +2013,11,8,1,30,95400,94260,93150,24.400000000000002,0,2.1,3.75,4.29,4.7,5.0200000000000005,5.29,5.5,5.69,5.98,152.76,152.33,152.31,152.6,153.13,153.68,153.92000000000002,153.97,153.03,14.5,14.64,14.59,14.48,14.34,14.19,14.01,13.84,13.48,N/A,N/A +2013,11,8,2,30,95390,94250,93140,26.38,0,1.83,3.5500000000000003,4.2,4.7700000000000005,5.24,5.64,5.92,6.140000000000001,6.38,148.33,150.12,150.97,151.25,151.25,151.15,150.82,150.46,149.47,14.06,14.200000000000001,14.17,14.120000000000001,14.040000000000001,13.96,13.83,13.71,13.39,N/A,N/A +2013,11,8,3,30,95380,94240,93130,28.04,0,1.72,3.31,3.85,4.25,4.51,4.72,4.88,5.03,5.29,141.89000000000001,146.4,149.48,152.18,155.15,157.96,161.05,163.72,167.57,13.63,13.76,13.71,13.63,13.5,13.370000000000001,13.19,13.02,12.66,N/A,N/A +2013,11,8,4,30,95360,94220,93110,30.310000000000002,0,1.72,3.1,3.54,3.91,4.24,4.55,4.86,5.14,5.63,142.71,146.4,149.26,152.32,155.89000000000001,159.42000000000002,163.4,166.99,172.39000000000001,13.14,13.200000000000001,13.120000000000001,13.01,12.88,12.76,12.6,12.450000000000001,12.13,N/A,N/A +2013,11,8,5,30,95350,94200,93090,31.580000000000002,0,1.84,3.38,3.93,4.41,4.84,5.22,5.54,5.8100000000000005,6.11,160.12,164.71,167.5,169.67000000000002,171.55,173.19,174.17000000000002,174.63,172.63,12.76,12.82,12.74,12.64,12.530000000000001,12.43,12.31,12.200000000000001,11.97,N/A,N/A +2013,11,8,6,30,95340,94190,93080,29.21,0,2.92,4.5,5.12,5.66,6.13,6.5600000000000005,6.93,7.25,7.66,161.11,162.39000000000001,163.26,164.05,164.65,165.15,165.39000000000001,165.53,165.37,12.81,12.73,12.65,12.55,12.44,12.34,12.22,12.11,11.85,N/A,N/A +2013,11,8,7,30,95330,94190,93070,28.05,0,2.79,4.38,5.01,5.55,6.01,6.41,6.76,7.0600000000000005,7.48,156.47,158.84,160.39000000000001,161.75,162.96,164.04,165.04,165.94,167.49,12.47,12.39,12.3,12.200000000000001,12.09,11.99,11.870000000000001,11.75,11.51,N/A,N/A +2013,11,8,8,30,95300,94150,93040,30.38,0,2.94,4.57,5.23,5.79,6.26,6.67,7.04,7.3500000000000005,7.8100000000000005,152.64000000000001,154.51,155.8,156.99,158.25,159.46,160.8,162.01,164.06,12.120000000000001,12.030000000000001,11.950000000000001,11.85,11.74,11.65,11.55,11.46,11.26,N/A,N/A +2013,11,8,9,30,95280,94130,93010,33.67,0,3.27,4.89,5.53,6.08,6.53,6.94,7.32,7.66,8.23,155.32,157.1,158.31,159.44,160.54,161.55,162.54,163.39000000000001,164.66,11.88,11.74,11.63,11.52,11.39,11.27,11.15,11.040000000000001,10.81,N/A,N/A +2013,11,8,10,30,95240,94090,92980,33.46,0,3.56,5.23,5.89,6.46,6.93,7.33,7.71,8.040000000000001,8.64,156.45000000000002,157.82,158.69,159.42000000000002,160.03,160.55,160.98,161.33,161.79,11.78,11.61,11.49,11.36,11.22,11.09,10.96,10.83,10.57,N/A,N/A +2013,11,8,11,30,95210,94060,92950,34.160000000000004,0,3.31,4.88,5.51,6.05,6.49,6.88,7.23,7.5600000000000005,8.15,159.15,160.47,161.26,161.9,162.47,162.95000000000002,163.38,163.75,164.28,11.75,11.56,11.42,11.27,11.11,10.96,10.8,10.64,10.33,N/A,N/A +2013,11,8,12,30,95200,94050,92940,37.33,0,3.98,5.58,6.18,6.66,7.0600000000000005,7.4,7.71,8,8.540000000000001,159.6,160.34,160.84,161.28,161.75,162.19,162.67000000000002,163.14000000000001,164.13,11.55,11.34,11.200000000000001,11.040000000000001,10.88,10.73,10.56,10.41,10.11,N/A,N/A +2013,11,8,13,30,95200,94050,92930,33.58,0,4.3500000000000005,5.95,6.5200000000000005,6.96,7.33,7.65,7.95,8.22,8.75,171.78,171.85,171.89000000000001,171.98,172.12,172.27,172.44,172.62,173,11.48,11.25,11.1,10.94,10.77,10.61,10.44,10.28,9.97,N/A,N/A +2013,11,8,14,30,95220,94070,92950,40.800000000000004,0,4.04,5.36,5.82,6.19,6.5200000000000005,6.82,7.09,7.390000000000001,7.94,178.14000000000001,177.44,177.07,176.76,176.53,176.32,176.15,176.02,175.79,10.53,10.23,10.05,9.86,9.67,9.49,9.290000000000001,9.11,8.73,N/A,N/A +2013,11,8,15,30,95230,94070,92950,54.53,0,3.93,4.98,5.3,5.51,5.66,5.78,5.9,6.03,6.43,161.56,162.07,162.45000000000002,162.79,163.20000000000002,163.59,164.05,164.54,165.78,9.39,9,8.81,8.620000000000001,8.42,8.24,8.06,7.87,7.5200000000000005,N/A,N/A +2013,11,8,16,30,95200,94050,92930,52.910000000000004,0,4.1,5.15,5.48,5.67,5.8100000000000005,5.91,6.01,6.11,6.38,166.11,166.49,166.75,167,167.27,167.53,167.84,168.17000000000002,168.97,10.040000000000001,9.59,9.39,9.19,8.99,8.81,8.620000000000001,8.44,8.08,N/A,N/A +2013,11,8,17,30,95160,94000,92880,49.42,0,4.71,5.91,6.26,6.45,6.57,6.65,6.7,6.74,6.79,170.95000000000002,170.75,170.65,170.57,170.5,170.45000000000002,170.4,170.36,170.31,10.48,9.98,9.75,9.540000000000001,9.32,9.13,8.93,8.73,8.34,N/A,N/A +2013,11,8,18,30,95100,93950,92830,47.56,0,4.5,5.64,5.98,6.19,6.3100000000000005,6.4,6.46,6.51,6.57,173.99,173.55,173.29,173.08,172.89000000000001,172.72,172.55,172.39000000000001,172.08,11.27,10.71,10.46,10.24,10.02,9.82,9.61,9.41,9.01,N/A,N/A +2013,11,8,19,30,95040,93890,92780,50.51,0,4.54,5.65,5.98,6.16,6.2700000000000005,6.3500000000000005,6.4,6.43,6.48,173.19,172.79,172.54,172.33,172.13,171.95000000000002,171.77,171.6,171.27,11.55,10.96,10.71,10.49,10.27,10.07,9.86,9.66,9.27,N/A,N/A +2013,11,8,20,30,94970,93820,92710,45.86,0,5.23,6.5600000000000005,6.94,7.16,7.29,7.390000000000001,7.45,7.5,7.5600000000000005,172.78,172.46,172.27,172.12,171.98,171.86,171.74,171.63,171.44,12.38,11.82,11.57,11.35,11.13,10.92,10.71,10.51,10.11,N/A,N/A +2013,11,8,21,30,94910,93760,92650,43.87,0,5.2700000000000005,6.6000000000000005,6.97,7.17,7.3,7.38,7.43,7.46,7.5,173.08,173.02,172.99,173,173.02,173.04,173.08,173.13,173.25,11.9,11.44,11.23,11.01,10.8,10.6,10.39,10.19,9.790000000000001,N/A,N/A +2013,11,8,22,30,94850,93700,92590,46.64,0,4.86,6.1000000000000005,6.45,6.65,6.7700000000000005,6.8500000000000005,6.91,6.95,7,176.45000000000002,176.25,176.15,176.11,176.09,176.08,176.08,176.08,176.11,11.52,11.09,10.88,10.67,10.46,10.27,10.06,9.86,9.47,N/A,N/A +2013,11,8,23,30,94790,93640,92530,50.120000000000005,0,3.99,5.09,5.42,5.62,5.7700000000000005,5.88,5.98,6.07,6.24,177.96,177.81,177.73,177.67000000000002,177.64000000000001,177.62,177.64000000000001,177.67000000000002,177.8,11.44,11.11,10.92,10.73,10.53,10.35,10.15,9.96,9.58,N/A,N/A +2013,11,9,0,30,94740,93600,92490,46.59,0,2.71,3.7800000000000002,4.17,4.48,4.7700000000000005,5.03,5.26,5.46,5.88,181.91,181.26,180.89000000000001,180.6,180.44,180.34,180.29,180.24,180.16,11.96,11.71,11.55,11.370000000000001,11.18,11.01,10.82,10.64,10.26,N/A,N/A +2013,11,9,1,30,94700,93560,92450,51.93,0,1.36,2.97,3.62,4.1,4.47,4.78,4.99,5.18,5.46,207.38,202.52,200.23000000000002,199.63,199.38,199.25,199.05,198.70000000000002,197.02,11.69,11.75,11.67,11.55,11.41,11.27,11.11,10.950000000000001,10.63,N/A,N/A +2013,11,9,2,30,94680,93540,92430,54.51,0,1.58,3.3200000000000003,4.05,4.73,5.37,5.96,6.51,7,7.82,189.28,191.03,192.32,193.41,194.21,194.87,195.22,195.47,195.58,11.38,11.71,11.65,11.56,11.46,11.370000000000001,11.25,11.14,10.88,N/A,N/A +2013,11,9,3,30,94670,93520,92410,52.74,0,3.24,5.5,6.45,7.28,7.930000000000001,8.47,8.98,9.43,10.200000000000001,183.08,185.58,186.84,187.5,187.69,187.74,187.82,187.8,187.26,11.01,11.06,10.99,10.88,10.74,10.61,10.46,10.32,10.02,N/A,N/A +2013,11,9,4,30,94640,93490,92380,59.56,0,2.95,4.93,5.76,6.66,7.46,8.19,8.82,9.38,10.26,177.63,185.01,187.83,187.85,187.6,187.27,186.77,186.21,184.77,10.33,10.44,10.38,10.28,10.17,10.06,9.96,9.85,9.63,N/A,N/A +2013,11,9,5,30,94620,93470,92360,59.76,0,2.97,4.72,5.39,6.16,6.94,7.69,8.41,9.07,10.24,167.12,176.53,180.84,182.63,183.58,184.21,184.49,184.69,184.82,10.17,10.370000000000001,10.33,10.26,10.17,10.1,10.01,9.94,9.76,N/A,N/A +2013,11,9,6,30,94590,93450,92340,58.92,0,3.68,5.8,6.66,7.51,8.36,9.16,9.98,10.76,12.21,169.5,175.22,178.1,179.78,180.73,181.42000000000002,181.81,182.14000000000001,182.61,10.15,10.32,10.31,10.290000000000001,10.25,10.22,10.19,10.15,10.05,N/A,N/A +2013,11,9,7,30,94580,93440,92330,61.08,0,3.98,6.09,6.94,7.76,8.55,9.26,9.9,10.43,11.08,169.68,175.89000000000001,179.19,181.33,183.02,184.47,185.65,186.64000000000001,187.84,9.97,10.05,10.01,9.96,9.9,9.84,9.8,9.76,9.700000000000001,N/A,N/A +2013,11,9,8,30,94560,93410,92310,67.63,0,4.33,6.390000000000001,7.2,7.97,8.61,9.16,9.57,9.88,10.21,164.03,172.14000000000001,176.34,179.02,180.51,181.6,182.53,183.36,184.89000000000001,10.040000000000001,10.15,10.14,10.1,10.06,10.02,9.98,9.94,9.82,N/A,N/A +2013,11,9,9,30,94540,93400,92290,71.56,0,4.83,6.8500000000000005,7.55,8.18,8.73,9.21,9.6,9.93,10.39,157.03,164.94,169.71,173.66,175.91,177.58,179.06,180.6,184.29,9.92,10.040000000000001,10.040000000000001,10.01,9.96,9.9,9.82,9.74,9.59,N/A,N/A +2013,11,9,10,30,94540,93390,92280,79.15,0,3.64,5.74,6.58,7.37,8.07,8.68,9.18,9.58,10.1,150.15,157.57,161.99,165.62,168.4,170.75,172.72,174.68,179.20000000000002,9.38,9.620000000000001,9.68,9.73,9.74,9.74,9.71,9.66,9.52,N/A,N/A +2013,11,9,11,30,94530,93390,92280,76.93,0,3.6,5.83,6.67,7.4,7.99,8.5,8.91,9.26,9.76,158.09,162.19,164.72,166.87,168.96,170.93,173.19,175.54,181.12,9.67,9.870000000000001,9.870000000000001,9.86,9.81,9.76,9.69,9.620000000000001,9.43,N/A,N/A +2013,11,9,12,30,94550,93400,92290,77.03,0,2.87,5.08,5.8500000000000005,6.53,7.13,7.65,8.1,8.48,9.02,154.32,161.33,165.23,168.02,170.28,172.29,174.46,176.83,183.12,8.96,9.31,9.32,9.31,9.27,9.22,9.16,9.09,8.93,N/A,N/A +2013,11,9,13,30,94560,93410,92300,87.66,0,2.42,4.68,5.46,6.19,6.8100000000000005,7.36,7.7700000000000005,8.11,8.34,154.19,162.53,167.07,170.18,172.62,174.8,177.38,180.26,189.13,8.39,8.96,8.99,8.99,8.96,8.93,8.870000000000001,8.8,8.75,N/A,N/A +2013,11,9,14,30,94580,93430,92320,78.02,0,2.69,3.81,4.33,4.78,5.16,5.49,5.7700000000000005,6,6.28,158.5,166.16,169.99,172.23,174.76,177.31,180.96,184.83,193.76,9.68,9.43,9.290000000000001,9.13,8.96,8.81,8.68,8.6,8.58,N/A,N/A +2013,11,9,15,30,94590,93450,92340,70.87,0,3.2800000000000002,3.98,4.16,4.25,4.26,4.2700000000000005,4.2700000000000005,4.3,4.43,179.4,180.3,180.92000000000002,181.55,182.41,183.26,184.58,186.08,190.66,11.64,11.17,10.96,10.76,10.56,10.39,10.200000000000001,10.03,9.71,N/A,N/A +2013,11,9,16,30,94570,93440,92340,64.77,0,2.67,3.2600000000000002,3.42,3.5,3.54,3.56,3.56,3.56,3.56,176.47,177.92000000000002,178.89000000000001,179.79,180.73,181.59,182.64000000000001,183.67000000000002,186.15,14.14,13.620000000000001,13.39,13.18,12.97,12.790000000000001,12.6,12.42,12.05,N/A,N/A +2013,11,9,17,30,94540,93420,92330,56.980000000000004,0,2.66,3.22,3.38,3.45,3.48,3.49,3.48,3.47,3.42,175.64000000000001,176.65,177.33,177.97,178.59,179.16,179.8,180.4,181.79,16.75,16.19,15.94,15.72,15.5,15.31,15.11,14.92,14.540000000000001,N/A,N/A +2013,11,9,18,30,94510,93390,92320,51.26,0,3.46,4.18,4.38,4.46,4.5,4.5200000000000005,4.5,4.49,4.43,173.57,175.09,176.06,176.92000000000002,177.75,178.51,179.34,180.1,181.77,18.73,18.11,17.86,17.62,17.41,17.21,17,16.81,16.43,N/A,N/A +2013,11,9,19,30,94480,93380,92310,45.92,0,3.63,4.39,4.6000000000000005,4.69,4.74,4.76,4.75,4.74,4.68,177.78,178.83,179.52,180.17000000000002,180.8,181.39000000000001,182.03,182.61,183.91,20.44,19.82,19.56,19.32,19.1,18.900000000000002,18.68,18.5,18.1,N/A,N/A +2013,11,9,20,30,94450,93350,92280,44.88,0,4.26,5.2,5.46,5.59,5.66,5.69,5.7,5.7,5.66,172.21,173.65,174.55,175.37,176.14000000000001,176.87,177.64000000000001,178.35,179.82,21.52,20.89,20.64,20.400000000000002,20.18,19.98,19.77,19.580000000000002,19.18,N/A,N/A +2013,11,9,21,30,94440,93340,92270,44.12,0,4.7700000000000005,5.83,6.11,6.23,6.29,6.3100000000000005,6.3,6.29,6.21,176.26,177.64000000000001,178.52,179.35,180.14000000000001,180.9,181.69,182.42000000000002,184.03,21.98,21.39,21.16,20.92,20.71,20.51,20.3,20.11,19.72,N/A,N/A +2013,11,9,22,30,94450,93350,92280,45.7,0,5.1000000000000005,6.3100000000000005,6.640000000000001,6.8,6.88,6.93,6.93,6.92,6.8500000000000005,169.77,170.38,170.77,171.13,171.46,171.76,172.08,172.39000000000001,173.06,21.22,20.75,20.54,20.32,20.11,19.91,19.71,19.52,19.13,N/A,N/A +2013,11,9,23,30,94470,93360,92290,49.45,0,3.92,5.58,6.11,6.49,6.7700000000000005,6.98,7.12,7.24,7.3500000000000005,161.03,161.71,162.21,162.72,163.21,163.68,164.14000000000001,164.56,165.33,19.94,19.78,19.650000000000002,19.48,19.31,19.14,18.95,18.77,18.38,N/A,N/A +2013,11,10,0,30,94510,93400,92320,54.28,0,3.84,6.13,6.93,7.61,8.13,8.56,8.83,9.040000000000001,9.14,151.48,155.02,157.15,158.8,160.09,161.16,161.99,162.73,164.17000000000002,17.77,18.01,18.01,17.98,17.92,17.85,17.72,17.61,17.34,N/A,N/A +2013,11,10,1,30,94560,93440,92360,57.47,0,3.65,6.05,6.96,7.79,8.45,9.01,9.4,9.71,9.9,146.86,152.88,156.37,158.74,160.34,161.55,162.34,163.04,164.43,16.7,16.98,17.01,17.01,16.98,16.94,16.87,16.8,16.65,N/A,N/A +2013,11,10,2,30,94590,93470,92390,59.620000000000005,0,3.36,5.8100000000000005,6.76,7.640000000000001,8.39,9.06,9.6,10.07,10.63,142.06,149.07,153.08,155.72,157.59,159.03,159.97,160.76,161.91,15.73,16.1,16.15,16.17,16.16,16.15,16.11,16.06,15.94,N/A,N/A +2013,11,10,3,30,94630,93500,92420,63.88,0,2.56,5.03,5.94,6.8500000000000005,7.67,8.4,9.05,9.61,10.4,136.75,146.98,152.66,156.19,158.59,160.44,161.91,163.26,165.68,14.58,15.31,15.41,15.48,15.530000000000001,15.57,15.610000000000001,15.63,15.66,N/A,N/A +2013,11,10,4,30,94660,93530,92440,64.29,0,2.3000000000000003,4.73,5.7,6.640000000000001,7.46,8.2,8.870000000000001,9.47,10.39,142.15,151.48,156.64000000000001,159.56,161.42000000000002,162.79,163.79,164.72,166.42000000000002,13.950000000000001,14.790000000000001,14.93,15.040000000000001,15.13,15.19,15.26,15.32,15.42,N/A,N/A +2013,11,10,5,30,94670,93540,92450,65.84,0,2.39,4.67,5.55,6.48,7.34,8.14,8.85,9.5,10.49,135.52,148.41,155.37,159.63,162.23,164.11,165.17000000000002,166.09,167.5,13.31,14.25,14.450000000000001,14.620000000000001,14.77,14.89,14.99,15.08,15.23,N/A,N/A +2013,11,10,6,30,94710,93570,92480,68.35000000000001,0,2.08,4.24,5.15,6.12,7.01,7.8500000000000005,8.620000000000001,9.33,10.52,135.86,149.22,156.49,160.79,163.33,165.13,166.02,166.79,167.81,12.83,13.82,14.02,14.200000000000001,14.35,14.48,14.59,14.69,14.86,N/A,N/A +2013,11,10,7,30,94750,93610,92520,73.25,0,1.58,3.3000000000000003,4.07,4.88,5.72,6.55,7.45,8.290000000000001,9.71,132.28,143.18,149.9,154.98,158.59,161.6,163.55,165.15,166.88,11.98,12.93,13.13,13.31,13.48,13.620000000000001,13.81,13.97,14.23,N/A,N/A +2013,11,10,8,30,94780,93640,92550,80.73,0,1.41,2.84,3.5,4.25,5.22,6.28,7.08,7.84,9.18,116.74000000000001,135.14000000000001,145.75,153.34,158.47,162.78,164.3,165.57,167.04,11.1,12.120000000000001,12.36,12.57,12.91,13.25,13.44,13.59,13.8,N/A,N/A +2013,11,10,9,30,94810,93670,92570,85.14,0,1.44,2.8000000000000003,3.35,3.99,4.8,5.67,6.38,7.05,8.28,130.06,141.11,147.74,152.96,156.94,160.48,162.05,163.43,165.29,10.89,11.8,11.96,12.1,12.36,12.61,12.790000000000001,12.92,13.13,N/A,N/A +2013,11,10,10,30,94850,93700,92600,87.68,0,1.46,2.58,3.06,3.74,4.37,4.98,5.59,6.18,7.3100000000000005,127.52,140.82,148.92000000000002,156.27,160.17000000000002,162.78,164.31,165.62,167.31,10.450000000000001,11.35,11.6,11.91,12.1,12.23,12.36,12.48,12.72,N/A,N/A +2013,11,10,11,30,94880,93740,92640,88.10000000000001,0,1.53,2.86,3.3200000000000003,3.8000000000000003,4.39,5,5.55,6.09,7.140000000000001,131.26,142.43,148.97,153.97,157.93,161.43,163,164.31,165.87,10.34,11.27,11.42,11.53,11.68,11.84,11.94,12.040000000000001,12.25,N/A,N/A +2013,11,10,12,30,94930,93780,92680,91.49,0,1.03,2.02,2.45,2.94,3.46,3.99,4.58,5.16,6.26,126.88000000000001,132.82,138.23,144.96,149.95000000000002,154.25,157.14000000000001,159.6,162.63,9.43,10.33,10.56,10.77,10.94,11.07,11.22,11.36,11.66,N/A,N/A +2013,11,10,13,30,94960,93810,92700,94.18,0,0.9500000000000001,2.13,2.68,3.17,3.73,4.28,4.84,5.37,6.38,129.58,132.85,136.28,140.74,145.18,149.45000000000002,152.37,154.89000000000001,158.36,8.77,9.74,10.01,10.23,10.43,10.6,10.77,10.93,11.23,N/A,N/A +2013,11,10,14,30,95000,93850,92740,90.24,0,0.78,1.71,2.39,2.95,3.5500000000000003,4.14,4.74,5.32,6.42,83.49,116.48,136.25,144.74,150.02,154.13,156.47,158.44,160.85,9.85,10.08,10.28,10.48,10.64,10.77,10.92,11.05,11.34,N/A,N/A +2013,11,10,15,30,95030,93890,92790,75.58,0,2.44,3.12,3.37,3.5500000000000003,3.66,3.75,3.86,4.04,4.89,154.55,155.93,156.87,157.75,158.47,159.08,159.72,160.37,162.01,13.780000000000001,13.35,13.15,12.97,12.780000000000001,12.620000000000001,12.44,12.280000000000001,11.98,N/A,N/A +2013,11,10,16,30,95040,93910,92820,71.01,0,3.0700000000000003,3.8000000000000003,4.03,4.15,4.22,4.28,4.3100000000000005,4.33,4.36,151.37,151.86,152.17000000000002,152.42000000000002,152.66,152.87,153.13,153.37,153.96,15.610000000000001,15.06,14.82,14.61,14.4,14.21,14.01,13.82,13.44,N/A,N/A +2013,11,10,17,30,95040,93910,92810,76.81,0,4.3100000000000005,5.19,5.4,5.48,5.49,5.48,5.43,5.39,5.2700000000000005,131.57,134.4,136.18,137.77,139.33,140.74,142.41,143.99,147.49,15.290000000000001,14.66,14.4,14.19,13.99,13.81,13.63,13.46,13.13,N/A,N/A +2013,11,10,18,30,95030,93900,92810,71.59,0,3.96,4.86,5.11,5.25,5.32,5.37,5.39,5.4,5.4,143.91,145.88,147.03,147.99,148.87,149.67000000000002,150.54,151.34,153.08,16.64,15.99,15.73,15.49,15.280000000000001,15.08,14.88,14.700000000000001,14.32,N/A,N/A +2013,11,10,19,30,95000,93880,92790,66.21000000000001,0,4.29,5.28,5.57,5.72,5.8100000000000005,5.87,5.89,5.91,5.91,151.39000000000001,152.27,152.79,153.20000000000002,153.58,153.91,154.26,154.59,155.29,18.03,17.36,17.09,16.84,16.62,16.41,16.2,16.01,15.620000000000001,N/A,N/A +2013,11,10,20,30,94960,93840,92760,63.03,0,4.01,4.95,5.23,5.38,5.47,5.53,5.57,5.6000000000000005,5.62,146.43,147.61,148.31,148.87,149.36,149.8,150.25,150.65,151.49,19.02,18.38,18.11,17.88,17.66,17.45,17.240000000000002,17.05,16.65,N/A,N/A +2013,11,10,21,30,94930,93820,92740,62.9,0,4.2700000000000005,5.25,5.53,5.67,5.75,5.8,5.82,5.83,5.82,140.18,141,141.49,141.87,142.19,142.49,142.79,143.07,143.67000000000002,19.46,18.85,18.61,18.38,18.16,17.96,17.740000000000002,17.55,17.16,N/A,N/A +2013,11,10,22,30,94910,93800,92720,60.27,0,4.04,5.05,5.36,5.5200000000000005,5.62,5.69,5.73,5.7700000000000005,5.8,144.78,145.28,145.59,145.82,146.03,146.22,146.4,146.56,146.92000000000002,19.79,19.3,19.080000000000002,18.86,18.650000000000002,18.45,18.240000000000002,18.05,17.650000000000002,N/A,N/A +2013,11,10,23,30,94900,93780,92710,62.480000000000004,0,2.97,4.37,4.83,5.16,5.38,5.5600000000000005,5.68,5.78,5.91,145.94,146.55,147,147.45000000000002,147.9,148.33,148.78,149.19,149.99,19.14,18.96,18.81,18.64,18.45,18.27,18.07,17.88,17.490000000000002,N/A,N/A +2013,11,11,0,30,94900,93790,92710,79.88,0,1.97,4.1,4.84,5.37,5.74,6.0200000000000005,6.24,6.44,6.76,143.4,144.79,145.75,146.67000000000002,147.84,149.05,150.4,151.65,153.74,17.25,18.18,18.330000000000002,18.38,18.32,18.21,18.03,17.86,17.490000000000002,N/A,N/A +2013,11,11,1,30,94920,93800,92720,84.18,0,2.48,5.11,6.08,6.94,7.53,7.96,8.11,8.2,8.120000000000001,151.42000000000002,153.45000000000002,154.36,154.63,155.03,155.46,155.85,156.18,156.46,16.29,17.31,17.57,17.78,17.86,17.89,17.78,17.66,17.330000000000002,N/A,N/A +2013,11,11,2,30,94930,93810,92730,83.76,0,3.18,5.92,6.94,7.82,8.46,8.96,9.200000000000001,9.35,9.31,162.22,163.59,164.22,164.39000000000001,164.49,164.55,164.5,164.37,163.25,16.12,16.79,16.93,17.03,17.05,17.03,16.94,16.84,16.62,N/A,N/A +2013,11,11,3,30,94940,93820,92730,89.11,0,2.6,5.49,6.67,7.8100000000000005,8.78,9.620000000000001,10.200000000000001,10.65,10.93,161.38,163.99,165.31,165.85,166.20000000000002,166.46,166.73,167,167.55,15.32,16.09,16.2,16.31,16.36,16.39,16.35,16.3,16.080000000000002,N/A,N/A +2013,11,11,4,30,94940,93810,92730,92.31,0,2.02,4.4,5.41,6.3500000000000005,7.16,7.88,8.45,8.950000000000001,9.69,156.81,162.47,165.41,166.65,167.16,167.34,167.13,166.88,166.07,14.61,15.35,15.48,15.610000000000001,15.73,15.83,15.9,15.94,15.94,N/A,N/A +2013,11,11,5,30,94950,93830,92730,93.94,0,2.27,4.47,5.29,6.11,6.87,7.59,8.28,8.91,9.92,140.97,148.57,152.70000000000002,154.81,156.16,157.13,157.94,158.71,160.3,13.86,14.59,14.69,14.75,14.77,14.77,14.74,14.71,14.64,N/A,N/A +2013,11,11,6,30,94950,93820,92730,96.31,0,2.2600000000000002,4.64,5.53,6.3100000000000005,6.97,7.55,8.07,8.56,9.47,144.41,150.18,153.28,154.84,155.8,156.44,156.98,157.52,158.8,13.5,14.05,14.040000000000001,13.97,13.88,13.790000000000001,13.66,13.55,13.46,N/A,N/A +2013,11,11,7,30,94960,93830,92740,92.05,0,3.29,4.8100000000000005,5.42,5.96,6.45,6.890000000000001,7.34,7.75,8.55,150.29,152.15,153.36,154.46,155.43,156.31,157.17000000000002,157.97,159.52,14.870000000000001,14.66,14.52,14.38,14.23,14.1,13.97,13.85,13.620000000000001,N/A,N/A +2013,11,11,8,30,94960,93830,92740,92.23,0,3.2,4.64,5.19,5.67,6.09,6.48,6.890000000000001,7.28,8.08,151.82,153.74,155.02,156.21,157.28,158.25,159.11,159.88,161.1,14.75,14.58,14.450000000000001,14.31,14.16,14.030000000000001,13.89,13.76,13.530000000000001,N/A,N/A +2013,11,11,9,30,94950,93820,92720,93.74,0,2.66,3.91,4.45,4.95,5.41,5.84,6.32,6.79,7.75,137.51,142.61,145.95000000000002,148.98,151.6,153.93,156.01,157.86,160.70000000000002,14.09,13.9,13.8,13.68,13.57,13.48,13.4,13.34,13.25,N/A,N/A +2013,11,11,10,30,94950,93820,92720,91.19,0,2.5100000000000002,3.84,4.45,5,5.5200000000000005,6.0200000000000005,6.51,6.97,7.8500000000000005,139.38,143.76,146.45000000000002,148.62,150.54,152.29,153.74,155.05,157.12,14.1,13.88,13.75,13.61,13.49,13.39,13.31,13.24,13.13,N/A,N/A +2013,11,11,11,30,94950,93820,92720,88.26,0,2.89,4.34,4.98,5.5600000000000005,6.08,6.5600000000000005,7.03,7.47,8.33,143.57,146.55,148.5,150.25,151.81,153.23,154.52,155.68,157.59,14.18,13.97,13.84,13.700000000000001,13.56,13.44,13.31,13.200000000000001,13,N/A,N/A +2013,11,11,12,30,94970,93840,92740,86.76,0,2.54,3.87,4.45,4.96,5.42,5.84,6.24,6.63,7.43,146.68,148.33,149.54,150.75,151.97,153.13,154.26,155.31,157.3,14.07,13.870000000000001,13.74,13.59,13.44,13.31,13.17,13.040000000000001,12.82,N/A,N/A +2013,11,11,13,30,94970,93830,92730,85.64,0,2.62,3.73,4.19,4.6000000000000005,4.97,5.29,5.65,5.98,6.69,152.23,153.84,154.95000000000002,156.05,156.99,157.83,158.59,159.28,160.44,14.040000000000001,13.8,13.65,13.49,13.33,13.18,13.02,12.88,12.620000000000001,N/A,N/A +2013,11,11,14,30,94980,93850,92750,83.79,0,3.16,4.39,4.8500000000000005,5.23,5.59,5.93,6.25,6.55,7.2,150.69,152.35,153.36,154.24,155.22,156.19,157.09,157.94,159.51,14.09,13.83,13.67,13.5,13.33,13.18,13.02,12.870000000000001,12.61,N/A,N/A +2013,11,11,15,30,95000,93870,92770,80.74,0,3.25,4.16,4.46,4.65,4.8100000000000005,4.93,5.0600000000000005,5.19,5.63,152.97,154.05,154.71,155.29,155.86,156.38,156.97,157.56,159.05,14.46,14.1,13.91,13.72,13.530000000000001,13.35,13.16,12.98,12.63,N/A,N/A +2013,11,11,16,30,94990,93860,92760,76.25,0,3.67,4.63,4.94,5.12,5.25,5.34,5.42,5.49,5.65,159.11,159.81,160.21,160.55,160.86,161.14000000000001,161.45000000000002,161.75,162.42000000000002,15.030000000000001,14.56,14.35,14.14,13.93,13.75,13.55,13.370000000000001,12.99,N/A,N/A +2013,11,11,17,30,94970,93840,92750,73.01,0,3.31,4.13,4.38,4.5200000000000005,4.61,4.68,4.71,4.74,4.78,159.62,160.61,161.15,161.56,161.92000000000002,162.23,162.57,162.88,163.51,15.85,15.35,15.13,14.91,14.700000000000001,14.5,14.3,14.1,13.71,N/A,N/A +2013,11,11,18,30,94940,93820,92730,70.63,0,3.15,3.89,4.12,4.25,4.32,4.38,4.4,4.42,4.44,165.06,165.15,165.16,165.15,165.12,165.1,165.06,165.04,164.98,16.5,15.98,15.76,15.540000000000001,15.32,15.13,14.92,14.73,14.33,N/A,N/A +2013,11,11,19,30,94900,93780,92690,65.39,0,3.27,4.01,4.23,4.3500000000000005,4.43,4.48,4.5,4.53,4.54,163.31,163.82,164.12,164.37,164.58,164.76,164.95000000000002,165.14000000000001,165.49,17.900000000000002,17.27,17.01,16.77,16.54,16.34,16.12,15.93,15.530000000000001,N/A,N/A +2013,11,11,20,30,94870,93750,92670,64.13,0,3.47,4.25,4.48,4.59,4.66,4.7,4.73,4.74,4.75,150.33,151.81,152.66,153.31,153.87,154.36,154.85,155.3,156.15,18.64,18.02,17.76,17.53,17.31,17.1,16.89,16.7,16.3,N/A,N/A +2013,11,11,21,30,94810,93700,92620,62.38,0,3.34,4.08,4.28,4.37,4.42,4.45,4.46,4.46,4.43,153.75,154.24,154.51,154.69,154.86,155,155.16,155.31,155.64000000000001,19.330000000000002,18.76,18.52,18.29,18.080000000000002,17.88,17.67,17.47,17.080000000000002,N/A,N/A +2013,11,11,22,30,94790,93680,92600,62.52,0,3.41,4.24,4.48,4.6000000000000005,4.68,4.73,4.76,4.78,4.79,153.73,154.26,154.56,154.79,154.98,155.15,155.32,155.48,155.82,19.43,18.96,18.740000000000002,18.53,18.32,18.13,17.92,17.73,17.330000000000002,N/A,N/A +2013,11,11,23,30,94790,93680,92600,65.27,0,3.09,4.24,4.57,4.8,4.94,5.05,5.13,5.19,5.26,150.3,150.84,151.14000000000001,151.37,151.54,151.69,151.81,151.92000000000002,152.09,19,18.75,18.59,18.400000000000002,18.2,18.02,17.82,17.63,17.23,N/A,N/A +2013,11,12,0,30,94800,93690,92610,75.65,0,1.86,3.49,3.95,4.33,4.63,4.87,5.05,5.2,5.39,138.51,140.27,141.61,142.97,144.32,145.58,146.68,147.64000000000001,148.98,17.69,18.03,18.03,17.98,17.88,17.77,17.61,17.46,17.09,N/A,N/A +2013,11,12,1,30,94830,93710,92630,79.87,0,1.25,2.71,3.3000000000000003,3.8200000000000003,4.17,4.43,4.55,4.63,4.76,127.24000000000001,134.91,139.77,143.41,146.23,148.52,150.56,152.38,155.63,16.79,17.3,17.44,17.580000000000002,17.63,17.64,17.56,17.47,17.19,N/A,N/A +2013,11,12,2,30,94860,93740,92660,82.89,0,1.8,3.46,4.08,4.83,5.69,6.61,7.3,7.88,8.290000000000001,141.42000000000002,143.65,145.44,147.6,150.23,153.08,155.06,156.74,158.52,16.37,17,17.150000000000002,17.28,17.31,17.3,17.16,17.01,16.63,N/A,N/A +2013,11,12,3,30,94900,93780,92690,89.43,0,1.97,3.73,4.36,5.08,5.82,6.53,7.17,7.72,8.31,134.61,144.49,150.20000000000002,154.6,157.70000000000002,160.20000000000002,161.71,162.94,163.91,15.49,16.06,16.13,16.18,16.18,16.16,16.11,16.05,15.89,N/A,N/A +2013,11,12,4,30,94940,93810,92730,92.10000000000001,0,1.55,2.72,3.24,4.07,4.92,5.7700000000000005,6.49,7.140000000000001,7.91,117.94,130.04,138.43,148,153.58,157.46,159.34,160.88,162.45000000000002,14.450000000000001,14.99,15.09,15.200000000000001,15.33,15.46,15.57,15.66,15.700000000000001,N/A,N/A +2013,11,12,5,30,94990,93860,92770,91.52,0,1.42,2.2800000000000002,2.61,3.2,3.7600000000000002,4.3100000000000005,4.87,5.39,6.2700000000000005,117.02,124.62,131.87,142.6,148.63,152.57,154.74,156.59,158.70000000000002,14.14,14.64,14.74,14.9,15.030000000000001,15.14,15.25,15.33,15.44,N/A,N/A +2013,11,12,6,30,95050,93920,92830,92.06,0,0.91,1.76,2.12,2.6,3.0700000000000003,3.52,4,4.46,5.34,80.61,97.79,108.86,119.37,126.9,133.19,137.16,140.63,144.45000000000002,13.75,14.27,14.39,14.58,14.700000000000001,14.790000000000001,14.88,14.96,15.1,N/A,N/A +2013,11,12,7,30,95120,93990,92900,82.76,0,0.24,0.79,1.27,1.98,2.67,3.37,3.99,4.59,5.6000000000000005,12.13,87.03,126.68,130.31,131.74,132.09,133.09,134.24,137.22,14.94,14.97,15.01,15.09,15.18,15.27,15.36,15.450000000000001,15.6,N/A,N/A +2013,11,12,8,30,95180,94050,92960,79.86,0,0.46,0.86,1.11,1.6,2.09,2.59,3.0500000000000003,3.5100000000000002,4.28,7.73,70.19,98.42,112.53,120.23,124.89,127.28,129.52,133.37,15.38,15.63,15.700000000000001,15.73,15.74,15.73,15.75,15.76,15.76,N/A,N/A +2013,11,12,9,30,95260,94130,93030,81.15,0,2.85,4.46,4.8,4.86,4.68,4.45,4.38,4.32,4.21,24.11,26.88,30.490000000000002,35.43,43.96,52.370000000000005,58.660000000000004,64.33,75.58,15.13,15.25,15.290000000000001,15.34,15.4,15.46,15.44,15.42,15.27,N/A,N/A +2013,11,12,10,30,95330,94200,93100,80.3,0,3.35,4.93,5.51,5.99,6.38,6.71,6.91,7.03,6.79,24.92,29.46,32.71,36.06,39.4,42.51,45.57,48.35,53.67,15.25,15.14,15.06,14.97,14.9,14.84,14.82,14.81,14.82,N/A,N/A +2013,11,12,11,30,95410,94280,93180,81.61,0,4.49,6.2700000000000005,6.91,7.47,7.96,8.4,8.73,8.96,8.97,38.42,40.02,41.46,43.160000000000004,44.79,46.300000000000004,47.79,49.24,52.46,14.97,14.82,14.74,14.65,14.6,14.57,14.61,14.67,14.84,N/A,N/A +2013,11,12,12,30,95520,94380,93270,87.64,0,4.29,6.38,7.25,8.01,8.71,9.35,10,10.61,11.73,26.72,27.76,28.69,29.82,31.2,32.57,34.04,35.36,37.52,13.97,13.75,13.61,13.450000000000001,13.27,13.11,12.92,12.75,12.39,N/A,N/A +2013,11,12,13,30,95610,94470,93360,88.2,0,6.67,9.41,10.38,11.19,11.870000000000001,12.450000000000001,12.96,13.43,14.31,39.09,40.06,40.75,41.47,42.28,43.07,43.910000000000004,44.71,46.27,12.870000000000001,12.76,12.65,12.51,12.36,12.21,12.05,11.9,11.59,N/A,N/A +2013,11,12,14,30,95710,94560,93450,79.14,0,9.6,12.52,13.43,14.11,14.65,15.11,15.540000000000001,15.950000000000001,16.72,47.19,47.230000000000004,47.2,47.2,47.19,47.19,47.18,47.17,47.050000000000004,12.63,12.3,12.11,11.92,11.73,11.56,11.36,11.19,10.83,N/A,N/A +2013,11,12,15,30,95840,94680,93550,71.34,0,9.57,12.3,13.1,13.61,13.94,14.18,14.32,14.44,14.57,39.59,39.84,39.95,40.11,40.29,40.46,40.660000000000004,40.85,41.300000000000004,10.950000000000001,10.39,10.15,9.93,9.71,9.51,9.3,9.11,8.72,N/A,N/A +2013,11,12,16,30,95940,94780,93650,66.56,0,8.1,10.48,11.22,11.71,12.02,12.26,12.42,12.55,12.72,42.53,42.24,42.12,42.07,42.03,42,41.96,41.94,41.88,10.22,9.74,9.5,9.27,9.05,8.84,8.63,8.42,8.02,N/A,N/A +2013,11,12,17,30,95980,94820,93690,57.85,0,6.82,8.67,9.24,9.6,9.84,10.01,10.14,10.24,10.370000000000001,33.72,34.28,34.59,34.89,35.17,35.43,35.68,35.92,36.4,10.97,10.28,10.01,9.77,9.540000000000001,9.33,9.11,8.91,8.5,N/A,N/A +2013,11,12,18,30,95990,94830,93700,52.44,0,6.78,8.55,9.07,9.39,9.59,9.74,9.84,9.92,10.02,30.970000000000002,31.14,31.3,31.45,31.6,31.73,31.87,32.01,32.28,11.450000000000001,10.700000000000001,10.4,10.15,9.9,9.69,9.47,9.26,8.85,N/A,N/A +2013,11,12,19,30,96030,94870,93740,50.230000000000004,0,6.59,8.290000000000001,8.8,9.1,9.3,9.450000000000001,9.56,9.64,9.75,33.33,33.3,33.3,33.33,33.36,33.38,33.4,33.43,33.480000000000004,11.6,10.85,10.57,10.32,10.08,9.86,9.64,9.44,9.03,N/A,N/A +2013,11,12,20,30,96040,94880,93750,48.22,0,6.29,7.87,8.32,8.57,8.73,8.84,8.92,8.97,9.03,24.67,25.13,25.41,25.650000000000002,25.87,26.080000000000002,26.28,26.47,26.86,11.58,10.870000000000001,10.59,10.34,10.11,9.9,9.68,9.47,9.07,N/A,N/A +2013,11,12,21,30,96030,94870,93750,46.14,0,5.53,6.94,7.37,7.61,7.78,7.91,8,8.08,8.18,29.71,29.52,29.41,29.330000000000002,29.26,29.19,29.11,29.05,28.91,11.83,11.19,10.93,10.700000000000001,10.47,10.26,10.05,9.85,9.450000000000001,N/A,N/A +2013,11,12,22,30,96050,94890,93760,47.67,0,5.23,6.5600000000000005,6.95,7.18,7.33,7.43,7.51,7.5600000000000005,7.63,20.1,20.62,20.91,21.17,21.39,21.59,21.79,21.97,22.31,11.21,10.66,10.42,10.200000000000001,9.97,9.77,9.56,9.36,8.96,N/A,N/A +2013,11,12,23,30,96080,94920,93790,48.71,0,5.0600000000000005,6.43,6.8100000000000005,7.03,7.18,7.28,7.34,7.38,7.41,19.490000000000002,19.79,20,20.19,20.400000000000002,20.580000000000002,20.78,20.97,21.34,10.53,10.13,9.92,9.72,9.51,9.31,9.11,8.91,8.51,N/A,N/A +2013,11,13,0,30,96140,94970,93840,45.74,0,4.53,5.82,6.21,6.46,6.640000000000001,6.78,6.890000000000001,6.98,7.12,17,17.47,17.8,18.13,18.45,18.740000000000002,19.04,19.330000000000002,19.89,9.950000000000001,9.57,9.38,9.18,8.97,8.78,8.58,8.38,7.99,N/A,N/A +2013,11,13,1,30,96190,95020,93880,44.39,0,3.8000000000000003,5.64,6.32,6.86,7.29,7.640000000000001,7.92,8.14,8.42,5.69,6.2700000000000005,6.8100000000000005,7.45,8.28,9.1,10.05,11.040000000000001,13.200000000000001,8.77,8.620000000000001,8.49,8.34,8.16,8,7.82,7.640000000000001,7.28,N/A,N/A +2013,11,13,2,30,96220,95050,93910,47.44,0,2.08,3.87,4.5200000000000005,5.05,5.44,5.75,5.97,6.16,6.45,23.580000000000002,21.35,20.39,20.080000000000002,20.36,20.79,21.63,22.580000000000002,24.79,7.8,7.8,7.69,7.55,7.37,7.22,7.04,6.86,6.49,N/A,N/A +2013,11,13,3,30,96230,95050,93900,39.160000000000004,0,3.48,6,6.99,7.68,8.19,8.6,8.86,8.950000000000001,8.72,10.46,13.91,16.07,17.91,19.56,21.06,22.59,24.04,27.14,7.23,7.12,6.97,6.8100000000000005,6.61,6.43,6.24,6.0600000000000005,5.71,N/A,N/A +2013,11,13,4,30,96250,95070,93920,43.82,0,1.94,4.0600000000000005,4.8,5.36,5.82,6.22,6.58,6.93,7.59,9.98,15.93,19.830000000000002,23.21,26.310000000000002,29.07,31.560000000000002,33.75,37.28,6.29,6.37,6.22,6.05,5.8500000000000005,5.67,5.47,5.28,4.9,N/A,N/A +2013,11,13,5,30,96260,95070,93920,43.65,0,1.3,3.24,4.0600000000000005,4.62,4.98,5.2700000000000005,5.5,5.7,6.08,23.57,23.91,24.900000000000002,26.3,27.88,29.36,30.87,32.27,34.76,5.57,5.73,5.6000000000000005,5.43,5.23,5.04,4.84,4.65,4.2700000000000005,N/A,N/A +2013,11,13,6,30,96270,95080,93930,44.730000000000004,0,0.58,2.5500000000000003,3.68,4.18,4.55,4.9,5.32,5.76,6.72,351.86,7.7700000000000005,18.41,23.2,26.85,30.01,32.9,35.51,40.050000000000004,4.72,4.91,4.7700000000000005,4.6000000000000005,4.41,4.24,4.0600000000000005,3.89,3.5500000000000003,N/A,N/A +2013,11,13,7,30,96290,95090,93940,45.35,0,0.49,2.02,2.91,3.35,3.5300000000000002,3.71,4.03,4.51,5.76,334.51,0.62,16.97,23.18,27.46,31.14,34.94,38.19,44.13,3.92,4.18,4.09,3.95,3.74,3.54,3.35,3.18,2.88,N/A,N/A +2013,11,13,8,30,96290,95090,93930,45.01,0,0.7000000000000001,1.59,1.92,2.14,2.39,2.72,3.31,3.95,5.24,317.33,7.36,29.8,38.4,42.24,45.09,47.410000000000004,48.910000000000004,51.79,3.35,3.52,3.4,3.2800000000000002,3.11,2.96,2.82,2.69,2.48,N/A,N/A +2013,11,13,9,30,96250,95060,93890,38.550000000000004,0,0.36,1.05,1.52,1.8,2.18,2.57,3.02,3.5100000000000002,4.58,27.98,27.72,32.3,41.18,47.74,52.92,55.54,57.92,61.71,3.21,3.0300000000000002,2.93,2.83,2.7,2.57,2.43,2.29,2,N/A,N/A +2013,11,13,10,30,96230,95030,93870,33.85,0,1.48,2,2.22,2.39,2.58,2.7800000000000002,3.02,3.35,4.24,62.29,63.52,64.33,65.11,65.8,66.41,66.96000000000001,67.55,68.94,3.2800000000000002,2.94,2.75,2.58,2.38,2.2,2.02,1.84,1.5,N/A,N/A +2013,11,13,11,30,96210,95010,93850,32.19,0,1.99,2.5100000000000002,2.67,2.77,2.87,2.96,3.0700000000000003,3.21,3.6,68.88,69.31,69.67,70.01,70.63,71.26,72.01,72.75,74.23,3.0500000000000003,2.71,2.52,2.33,2.13,1.95,1.76,1.58,1.21,N/A,N/A +2013,11,13,12,30,96190,94990,93820,36.480000000000004,0,1.58,2.94,3.41,3.85,3.96,4.1,4.38,4.61,5.07,80.12,83.88,85.69,86.85000000000001,87.76,88.57000000000001,89.43,90.10000000000001,91.06,2.08,2.11,1.94,1.76,1.58,1.41,1.25,1.08,0.76,N/A,N/A +2013,11,13,13,30,96170,94970,93800,38.68,0,0.99,2.2800000000000002,2.81,3.21,3.58,3.89,4.12,4.29,4.61,61.17,74.96000000000001,82.53,87.5,91.07000000000001,94.10000000000001,96.56,98.65,101.92,1.44,1.62,1.51,1.36,1.2,1.07,0.9400000000000001,0.79,0.51,N/A,N/A +2013,11,13,14,30,96160,94960,93790,35.1,0,1.6600000000000001,2.02,2.12,2.19,2.2600000000000002,2.38,2.6,2.7800000000000002,3.04,70.56,76.96000000000001,81.46000000000001,85.74,91.28,96.85000000000001,103.60000000000001,109.23,117.7,1.94,1.61,1.44,1.28,1.11,0.97,0.86,0.75,0.51,N/A,N/A +2013,11,13,15,30,96130,94930,93760,32.2,0,1.27,1.54,1.61,1.6400000000000001,1.6600000000000001,1.67,1.67,1.68,1.68,115.82000000000001,117.01,117.54,117.87,118.13,118.35000000000001,118.56,118.79,119.17,2.96,2.56,2.35,2.16,1.96,1.77,1.58,1.3800000000000001,1,N/A,N/A +2013,11,13,16,30,96070,94870,93710,30.59,0,0.9,1.08,1.1300000000000001,1.17,1.2,1.24,1.27,1.31,1.41,105.03,110.41,113.60000000000001,116.31,119.06,121.57000000000001,124.12,126.62,131.22,3.58,3.16,2.96,2.7800000000000002,2.58,2.4,2.21,2.0300000000000002,1.6600000000000001,N/A,N/A +2013,11,13,17,30,95970,94790,93640,25.41,0,1.3800000000000001,1.6300000000000001,1.68,1.7,1.71,1.71,1.71,1.7,1.69,172.98,169.1,166.77,164.81,162.86,161.1,159.29,157.51,153.93,5.88,5.37,5.12,4.91,4.69,4.49,4.29,4.1,3.72,N/A,N/A +2013,11,13,18,30,95870,94700,93550,23.5,0,1.01,1.24,1.31,1.36,1.4000000000000001,1.43,1.46,1.49,1.54,158.03,155.85,154.78,153.96,153.25,152.64000000000001,152.14000000000001,151.68,150.9,7.54,7.04,6.78,6.5600000000000005,6.34,6.140000000000001,5.94,5.74,5.36,N/A,N/A +2013,11,13,19,30,95780,94610,93470,25.95,0,1.54,1.84,1.92,1.97,1.99,2.0100000000000002,2.0300000000000002,2.04,2.05,133.47,135.23,136.26,137.09,137.82,138.46,139.11,139.72,140.9,9.27,8.74,8.47,8.25,8.02,7.82,7.61,7.41,7.0200000000000005,N/A,N/A +2013,11,13,20,30,95660,94500,93370,26,0,1.74,2.1,2.2,2.25,2.2800000000000002,2.3000000000000003,2.32,2.33,2.34,155.29,156,156.35,156.63,156.86,157.07,157.25,157.42000000000002,157.74,10.48,9.94,9.69,9.47,9.24,9.040000000000001,8.83,8.64,8.24,N/A,N/A +2013,11,13,21,30,95560,94400,93280,26.26,0,2.23,2.7,2.83,2.9,2.94,2.96,2.97,2.98,2.98,153.32,153.73,153.91,154.01,154.09,154.15,154.20000000000002,154.23,154.25,11.33,10.8,10.55,10.33,10.120000000000001,9.92,9.71,9.51,9.11,N/A,N/A +2013,11,13,22,30,95460,94310,93190,28.34,0,2.82,3.46,3.63,3.73,3.7800000000000002,3.81,3.83,3.84,3.84,146.97,147.78,148.21,148.53,148.8,149.03,149.25,149.46,149.86,11.61,11.13,10.91,10.700000000000001,10.48,10.290000000000001,10.08,9.88,9.49,N/A,N/A +2013,11,13,23,30,95400,94250,93130,33.55,0,2.92,3.8200000000000003,4.0600000000000005,4.21,4.3,4.37,4.4,4.43,4.44,149.56,149.83,149.96,150.04,150.14000000000001,150.23,150.32,150.41,150.59,11.200000000000001,10.91,10.73,10.540000000000001,10.33,10.15,9.94,9.74,9.35,N/A,N/A +2013,11,14,0,30,95370,94210,93090,36.89,0,2.7600000000000002,4.84,5.41,5.71,5.78,5.79,5.71,5.63,5.47,144.41,143.4,142.86,142.49,142.21,142.01,141.96,142.05,142.77,9.870000000000001,10.17,10.13,10.02,9.85,9.69,9.5,9.32,8.96,N/A,N/A +2013,11,14,1,30,95350,94190,93070,39.32,0,2.48,4.61,5.33,5.93,6.3500000000000005,6.68,6.8500000000000005,6.96,7.05,146.84,145.68,144.97,144.43,144.13,143.9,143.75,143.72,144.3,8.96,9.38,9.4,9.39,9.33,9.25,9.13,8.99,8.66,N/A,N/A +2013,11,14,2,30,95320,94160,93030,37.89,0,3.2,5.2700000000000005,5.92,6.4,6.76,7.05,7.25,7.4,7.58,161.02,162.68,163.72,164.62,165.45000000000002,166.14000000000001,166.54,166.68,166.23,8.65,8.91,8.91,8.88,8.78,8.68,8.55,8.4,8.08,N/A,N/A +2013,11,14,3,30,95290,94130,93000,39.4,0,3.17,5.3,6.0600000000000005,6.7,7.2700000000000005,7.76,8.16,8.47,8.85,165.03,167.87,169.65,171.22,172.5,173.53,173.98,174.05,173.02,7.92,8.16,8.17,8.15,8.1,8.040000000000001,7.96,7.86,7.62,N/A,N/A +2013,11,14,4,30,95250,94080,92950,40.38,0,3.87,6.12,6.96,7.68,8.26,8.76,9.15,9.43,9.63,172.70000000000002,173.17000000000002,173.39000000000001,173.52,173.44,173.29,172.94,172.51,171.47,7.62,7.74,7.72,7.68,7.62,7.57,7.5,7.43,7.25,N/A,N/A +2013,11,14,5,30,95200,94030,92900,45.87,0,3.73,6.01,6.92,7.72,8.4,9.01,9.52,9.92,10.38,168.52,169.72,170.36,170.78,171.02,171.20000000000002,171.35,171.51,171.81,7.15,7.3100000000000005,7.3100000000000005,7.29,7.26,7.22,7.16,7.1000000000000005,6.92,N/A,N/A +2013,11,14,6,30,95170,94000,92870,43.64,0,4.48,6.87,7.84,8.68,9.42,10.08,10.67,11.15,11.76,164.69,165.66,166.26,166.78,167.23,167.64000000000001,168,168.3,168.74,6.84,6.93,6.9,6.88,6.83,6.8,6.75,6.7,6.57,N/A,N/A +2013,11,14,7,30,95120,93950,92820,45.03,0,3.54,5.83,6.82,7.69,8.48,9.19,9.84,10.41,11.31,158.53,161.83,163.67000000000002,164.93,165.71,166.32,166.69,167,167.52,6.17,6.3500000000000005,6.36,6.36,6.3500000000000005,6.33,6.3100000000000005,6.28,6.21,N/A,N/A +2013,11,14,8,30,95050,93880,92750,46.12,0,3.14,5.5,6.54,7.48,8.3,9.06,9.77,10.41,11.48,149.35,154.03,156.52,158.07,159.06,159.88,160.57,161.23,162.54,5.8100000000000005,6.0200000000000005,6.04,6.04,6.0200000000000005,5.99,5.96,5.93,5.86,N/A,N/A +2013,11,14,9,30,94990,93820,92680,47.43,0,3.12,5.67,6.79,7.75,8.56,9.290000000000001,10,10.68,11.98,148.98,152.18,153.86,154.86,155.69,156.47,157.37,158.31,160.26,5.47,5.65,5.65,5.62,5.5600000000000005,5.5,5.44,5.38,5.2700000000000005,N/A,N/A +2013,11,14,10,30,94920,93750,92610,48.97,0,3.38,5.82,6.87,7.78,8.56,9.27,9.96,10.620000000000001,11.94,149.86,153.1,154.82,155.98,156.91,157.75,158.58,159.42000000000002,161.18,5.03,5.1000000000000005,5.05,4.99,4.9,4.82,4.73,4.64,4.5,N/A,N/A +2013,11,14,11,30,94870,93700,92570,48.76,0,3.87,6.26,7.29,8.18,8.94,9.65,10.35,11.040000000000001,12.43,151,154.42000000000002,156.37,157.86,159.14000000000001,160.31,161.48,162.61,164.8,4.66,4.68,4.62,4.55,4.48,4.41,4.3500000000000005,4.3,4.25,N/A,N/A +2013,11,14,12,30,94850,93670,92540,45.74,0,4.24,6.72,7.8100000000000005,8.76,9.58,10.32,11.01,11.66,12.85,153.47,157.27,159.39000000000001,160.92000000000002,162.07,163.06,163.94,164.79,166.49,4.53,4.58,4.54,4.49,4.43,4.38,4.33,4.29,4.24,N/A,N/A +2013,11,14,13,30,94810,93640,92500,40.24,0,6.19,8.46,9.34,10.06,10.66,11.19,11.67,12.120000000000001,12.950000000000001,162.43,163.70000000000002,164.5,165.18,165.83,166.43,167.04,167.65,168.93,5.14,4.97,4.8500000000000005,4.73,4.62,4.5200000000000005,4.43,4.3500000000000005,4.24,N/A,N/A +2013,11,14,14,30,94770,93600,92460,38.5,0,4.63,7.46,8.6,9.13,9.68,10.21,10.81,11.39,12.540000000000001,160.99,163.5,164.71,165.23,165.65,166.04,166.52,167.03,168.18,5.32,5.05,4.88,4.71,4.53,4.38,4.26,4.16,4.1,N/A,N/A +2013,11,14,15,30,94740,93570,92440,35.53,0,6.36,8.15,8.81,9.34,9.950000000000001,10.48,10.84,11.27,12.34,169.9,169.91,169.94,169.98,170.08,170.18,170.21,170.29,170.62,6.32,5.88,5.69,5.5200000000000005,5.37,5.23,5.07,4.94,4.7700000000000005,N/A,N/A +2013,11,14,16,30,94700,93540,92420,34.21,0,6.62,8.16,8.6,8.83,8.93,8.99,9.01,9.02,9.08,172.95000000000002,172.63,172.48,172.38,172.33,172.29,172.27,172.27,172.33,8.05,7.45,7.2,6.98,6.7700000000000005,6.59,6.390000000000001,6.21,5.86,N/A,N/A +2013,11,14,17,30,94620,93470,92350,34.230000000000004,0,6.38,7.87,8.290000000000001,8.51,8.6,8.65,8.66,8.64,8.58,170.07,170.05,170.05,170.06,170.08,170.11,170.16,170.20000000000002,170.31,9.65,9.01,8.75,8.52,8.290000000000001,8.1,7.890000000000001,7.7,7.32,N/A,N/A +2013,11,14,18,30,94560,93410,92300,33.92,0,6.11,7.53,7.930000000000001,8.13,8.23,8.290000000000001,8.290000000000001,8.290000000000001,8.23,169.67000000000002,169.78,169.86,169.93,170.01,170.09,170.18,170.28,170.52,11.53,10.84,10.57,10.33,10.11,9.9,9.700000000000001,9.5,9.120000000000001,N/A,N/A +2013,11,14,19,30,94480,93340,92240,33.19,0,6.11,7.51,7.91,8.11,8.22,8.27,8.28,8.28,8.23,167.38,167.67000000000002,167.87,168.04,168.21,168.37,168.56,168.74,169.16,12.88,12.200000000000001,11.92,11.68,11.450000000000001,11.25,11.040000000000001,10.84,10.450000000000001,N/A,N/A +2013,11,14,20,30,94410,93270,92170,33.63,0,6.18,7.62,8.05,8.28,8.4,8.47,8.5,8.51,8.48,169.74,170.01,170.19,170.35,170.51,170.65,170.82,170.97,171.35,13.73,13.06,12.790000000000001,12.540000000000001,12.31,12.11,11.89,11.700000000000001,11.3,N/A,N/A +2013,11,14,21,30,94330,93200,92110,34.25,0,6.13,7.54,7.96,8.16,8.26,8.31,8.32,8.31,8.25,171.70000000000002,172.02,172.23,172.43,172.63,172.82,173.06,173.28,173.8,14.25,13.64,13.39,13.15,12.93,12.73,12.52,12.32,11.93,N/A,N/A +2013,11,14,22,30,94250,93120,92020,33.56,0,6.67,8.28,8.73,8.97,9.08,9.15,9.16,9.16,9.11,170.39000000000001,170.49,170.58,170.67000000000002,170.77,170.86,170.98,171.11,171.43,13.82,13.33,13.11,12.89,12.68,12.48,12.280000000000001,12.08,11.69,N/A,N/A +2013,11,14,23,30,94230,93100,92000,35.85,0,5.47,7.24,7.87,8.34,8.700000000000001,9,9.25,9.47,9.85,162,162.49,162.87,163.26,163.67000000000002,164.05,164.5,164.94,165.91,12.950000000000001,12.72,12.56,12.38,12.200000000000001,12.02,11.83,11.65,11.27,N/A,N/A +2013,11,15,0,30,94220,93080,91980,42.67,0,4.88,7.140000000000001,8.06,8.82,9.46,10.01,10.5,10.94,11.69,158.12,159.63,160.72,161.76,162.71,163.58,164.42000000000002,165.17000000000002,166.57,11.71,11.67,11.58,11.46,11.32,11.19,11.040000000000001,10.9,10.61,N/A,N/A +2013,11,15,1,30,94210,93080,91970,43.86,0,3.37,5.73,6.69,7.55,8.34,9.06,9.75,10.4,11.57,156.55,158.75,160.09,161.20000000000002,162.17000000000002,163.05,163.79,164.46,165.62,10.92,11.03,10.99,10.93,10.85,10.77,10.67,10.58,10.36,N/A,N/A +2013,11,15,2,30,94250,93110,92010,48.02,0,3.2800000000000002,5.57,6.5600000000000005,7.46,8.26,8.99,9.71,10.4,11.700000000000001,160.61,162.57,163.76,164.53,165.07,165.52,165.92000000000002,166.33,167.31,10.48,10.71,10.71,10.68,10.63,10.58,10.5,10.43,10.290000000000001,N/A,N/A +2013,11,15,3,30,94240,93100,92000,54.7,0,2.38,4.8100000000000005,5.84,6.84,7.78,8.66,9.56,10.42,12.08,148.25,154.46,158.11,160.47,162.12,163.48,164.5,165.42000000000002,166.87,9.56,10.1,10.14,10.15,10.15,10.14,10.13,10.120000000000001,10.11,N/A,N/A +2013,11,15,4,30,94240,93090,91990,57.32,0,2.44,4.7,5.61,6.5600000000000005,7.5600000000000005,8.540000000000001,9.58,10.6,12.6,147.09,153.81,157.89000000000001,160.99,163.02,164.59,165.28,165.81,166.46,9.07,9.72,9.81,9.89,9.950000000000001,10.01,10.05,10.08,10.120000000000001,N/A,N/A +2013,11,15,5,30,94220,93080,91970,59.34,0,2.69,5.39,6.57,7.74,8.86,9.94,10.96,11.9,13.3,154.49,159.74,163.05,165.03,166.25,167.16,167.71,168.22,169.44,9.14,9.89,9.96,10.03,10.08,10.14,10.200000000000001,10.26,10.41,N/A,N/A +2013,11,15,6,30,94230,93080,91980,62.83,0,2.7800000000000002,5.33,6.36,7.43,8.46,9.44,10.370000000000001,11.200000000000001,12.450000000000001,144.85,154.29,159.84,163.53,165.93,167.8,168.94,169.92000000000002,171.53,8.66,9.47,9.6,9.71,9.8,9.870000000000001,9.950000000000001,10.03,10.19,N/A,N/A +2013,11,15,7,30,94240,93090,91980,66.65,0,2.33,4.5200000000000005,5.48,6.53,7.58,8.6,9.540000000000001,10.38,11.55,138.38,150.5,157.74,162.49,165.48,167.76,169.14000000000001,170.34,172.25,8.05,8.93,9.1,9.25,9.38,9.5,9.620000000000001,9.74,9.98,N/A,N/A +2013,11,15,8,30,94220,93070,91970,71.16,0,1.98,4.0200000000000005,4.97,5.97,6.92,7.82,8.56,9.16,9.6,143.12,153.37,159.75,163.82,166.5,168.61,170.22,171.8,176.04,7.58,8.48,8.65,8.82,8.97,9.11,9.290000000000001,9.48,9.94,N/A,N/A +2013,11,15,9,30,94190,93040,91930,75.53,0,2.11,3.85,4.51,5.2700000000000005,6,6.67,7.140000000000001,7.46,7.59,140.67000000000002,150.47,156.84,162.11,165.8,168.8,171.1,173.75,180.5,7.140000000000001,8,8.120000000000001,8.22,8.32,8.43,8.64,8.89,9.51,N/A,N/A +2013,11,15,10,30,94180,93030,91920,80.31,0,2.0300000000000002,3.52,4.07,4.76,5.38,5.91,6.2,6.38,6.48,131.67000000000002,146.67000000000002,155.6,162.75,167.18,170.6,173.62,176.82,184.27,6.6000000000000005,7.55,7.72,7.8500000000000005,7.99,8.13,8.370000000000001,8.620000000000001,9.200000000000001,N/A,N/A +2013,11,15,11,30,94190,93040,91930,84.23,0,1.74,3.02,3.48,4.07,4.5600000000000005,4.98,5.21,5.39,5.58,123.29,143.76,155.52,164.44,169.86,174.14000000000001,177.86,181.47,188.69,6,6.98,7.21,7.42,7.63,7.83,8.1,8.36,8.9,N/A,N/A +2013,11,15,12,30,94190,93030,91920,86.3,0,1.7,2.68,2.94,3.31,3.61,3.87,4.05,4.22,4.5200000000000005,117.2,138.9,151.98,164.01,171.33,176.95000000000002,181.55,185.64000000000001,192.33,5.49,6.41,6.67,6.95,7.21,7.43,7.66,7.87,8.26,N/A,N/A +2013,11,15,13,30,94180,93020,91910,88.11,0,1.67,2.56,2.74,2.95,3.22,3.47,3.74,3.99,4.48,120.24000000000001,140.42000000000002,153.38,165.48,173.59,180.16,185.41,189.66,195.04,4.99,6.04,6.42,6.8100000000000005,7.17,7.49,7.78,8.040000000000001,8.52,N/A,N/A +2013,11,15,14,30,94180,93020,91910,79.21000000000001,0,1.33,1.72,1.97,2.33,2.73,3.14,3.56,3.97,4.78,108.97,138.57,155.41,168.49,176.35,182.48,186.53,189.94,194.79,5.94,6.41,6.74,7.05,7.3500000000000005,7.62,7.92,8.23,8.93,N/A,N/A +2013,11,15,15,30,94150,93010,91900,64.39,0,1.49,1.72,1.74,1.71,1.83,2.0100000000000002,2.5,3.1,4.54,119.22,130.22,137.49,144.04,155.31,167,176.52,184.66,194.15,9.66,9.32,9.17,9.03,8.9,8.790000000000001,8.700000000000001,8.76,9.39,N/A,N/A +2013,11,15,16,30,94120,93000,91900,54.21,0,2.35,2.88,3.0700000000000003,3.2,3.2800000000000002,3.35,3.36,3.4,3.71,150.95000000000002,156.11,159.52,162.69,165.71,168.46,171.62,174.83,182.25,14.02,13.56,13.36,13.17,13,12.85,12.69,12.55,12.3,N/A,N/A +2013,11,15,17,30,94070,92950,91870,49.35,0,3.65,4.39,4.61,4.68,4.71,4.71,4.68,4.64,4.6000000000000005,164.34,166.16,167.4,168.6,169.84,171.02,172.55,174.04,177.83,16.72,16.15,15.91,15.700000000000001,15.5,15.32,15.14,14.97,14.65,N/A,N/A +2013,11,15,18,30,94000,92900,91830,45.730000000000004,0,4.17,5.08,5.34,5.45,5.51,5.53,5.51,5.49,5.41,168.15,169.23,169.91,170.56,171.18,171.77,172.44,173.08,174.73,19.02,18.39,18.14,17.91,17.7,17.51,17.31,17.13,16.76,N/A,N/A +2013,11,15,19,30,93950,92850,91790,41.980000000000004,0,4.57,5.62,5.97,6.13,6.22,6.26,6.25,6.23,6.15,173.42000000000002,174.52,175.19,175.74,176.25,176.72,177.24,177.72,178.93,20.73,20.09,19.830000000000002,19.59,19.38,19.18,18.98,18.79,18.42,N/A,N/A +2013,11,15,20,30,93880,92780,91720,40.29,0,5.3500000000000005,6.63,7.0600000000000005,7.28,7.42,7.49,7.5200000000000005,7.54,7.53,177.11,177.94,178.54,179.1,179.62,180.11,180.64000000000001,181.13,182.25,21.69,21.07,20.81,20.57,20.35,20.150000000000002,19.95,19.76,19.37,N/A,N/A +2013,11,15,21,30,93800,92710,91660,39.52,0,6.23,7.76,8.21,8.43,8.56,8.64,8.66,8.67,8.63,175.85,176.07,176.25,176.44,176.63,176.82,177.03,177.22,177.69,22.05,21.5,21.26,21.03,20.82,20.62,20.41,20.22,19.82,N/A,N/A +2013,11,15,22,30,93730,92640,91580,40.04,0,5.67,7.2,7.62,7.86,8.01,8.1,8.15,8.19,8.21,169.31,169.32,169.32,169.3,169.28,169.27,169.24,169.23,169.21,21.73,21.3,21.1,20.89,20.68,20.490000000000002,20.28,20.09,19.7,N/A,N/A +2013,11,15,23,30,93710,92620,91560,48.2,0,3.66,5.88,6.75,7.45,7.98,8.41,8.74,9.03,9.46,159.03,160.76,161.89000000000001,162.76,163.53,164.21,164.83,165.39000000000001,166.23,20.240000000000002,20.27,20.19,20.080000000000002,19.95,19.81,19.650000000000002,19.490000000000002,19.14,N/A,N/A +2013,11,16,0,30,93710,92610,91540,54.38,0,3.8000000000000003,6.78,7.97,8.98,9.77,10.41,10.85,11.21,11.6,157.52,160.71,162.56,163.57,164.12,164.4,164.26,164.02,162.82,18.53,18.98,19.02,19.03,18.990000000000002,18.94,18.830000000000002,18.73,18.46,N/A,N/A +2013,11,16,1,30,93710,92600,91530,58.08,0,4.4,7.12,8.15,9.1,9.89,10.58,11.16,11.67,12.47,150.58,154.83,157.25,158.94,160.1,160.96,161.44,161.82,162.20000000000002,17.42,17.68,17.7,17.69,17.66,17.62,17.55,17.48,17.3,N/A,N/A +2013,11,16,2,30,93720,92610,91540,66.42,0,3.17,5.73,6.7,7.61,8.46,9.24,10.06,10.84,12.38,131.63,139.20000000000002,143.70000000000002,146.89000000000001,149.48,151.73,153.58,155.26,157.8,15.950000000000001,16.36,16.39,16.41,16.4,16.39,16.38,16.36,16.31,N/A,N/A +2013,11,16,3,30,93680,92570,91500,58.4,0,6.97,10.17,11.44,12.59,13.6,14.5,15.33,16.09,17.37,152.19,154.59,155.99,157.09,158,158.8,159.6,160.37,162.09,16.71,16.85,16.88,16.9,16.92,16.95,16.990000000000002,17.03,17.12,N/A,N/A +2013,11,16,4,30,93670,92570,91490,60.88,0,7.32,10.36,11.55,12.63,13.64,14.57,15.49,16.36,17.98,150.64000000000001,152.39000000000001,153.5,154.49,155.5,156.45000000000002,157.49,158.49,160.6,16.15,16.240000000000002,16.25,16.26,16.28,16.3,16.34,16.39,16.51,N/A,N/A +2013,11,16,5,30,93700,92590,91510,66.1,0,5.39,8.09,9.18,10.19,11.16,12.06,13.030000000000001,13.97,15.93,147.03,150.89000000000001,153.27,155.24,156.9,158.37,159.56,160.64000000000001,162.31,15.290000000000001,15.48,15.530000000000001,15.56,15.59,15.610000000000001,15.63,15.65,15.700000000000001,N/A,N/A +2013,11,16,6,30,93700,92590,91520,65.98,0,6.12,9.05,10.28,11.450000000000001,12.57,13.620000000000001,14.68,15.66,17.48,147.05,151.39000000000001,154.04,156.21,157.97,159.49,160.67000000000002,161.72,163.39000000000001,15.48,15.64,15.68,15.71,15.75,15.780000000000001,15.83,15.870000000000001,15.97,N/A,N/A +2013,11,16,7,30,93710,92590,91520,67.95,0,5.4,8.42,9.8,11.120000000000001,12.34,13.450000000000001,14.530000000000001,15.55,17.42,152.28,156.82,159.46,161.31,162.67000000000002,163.78,164.6,165.33,166.49,15.290000000000001,15.41,15.43,15.44,15.46,15.47,15.52,15.56,15.72,N/A,N/A +2013,11,16,8,30,93650,92540,91480,64.33,0,9.13,12.83,14.27,15.540000000000001,16.65,17.650000000000002,18.56,19.36,20.63,168.04,167.93,167.88,167.83,167.84,167.86,167.99,168.16,168.87,16.54,16.66,16.69,16.73,16.8,16.87,16.990000000000002,17.11,17.42,N/A,N/A +2013,11,16,9,30,93690,92580,91510,66.45,0,7.68,11.120000000000001,12.66,14.030000000000001,15.200000000000001,16.23,17.150000000000002,17.97,19.21,174.45000000000002,173.53,172.89000000000001,172.38,172.02,171.76,171.70000000000002,171.72,172.44,15.9,16.04,16.06,16.09,16.13,16.19,16.28,16.37,16.67,N/A,N/A +2013,11,16,10,30,93660,92560,91480,68.82000000000001,0,7.71,11.040000000000001,12.48,13.72,14.76,15.65,16.38,17,17.73,175.89000000000001,175.33,175.01,174.87,174.91,175.05,175.38,175.75,177.03,15.620000000000001,15.76,15.8,15.860000000000001,15.94,16.04,16.22,16.4,16.91,N/A,N/A +2013,11,16,11,30,93680,92570,91490,73.19,0,5.49,8.700000000000001,10.19,11.55,12.700000000000001,13.71,14.48,15.15,15.870000000000001,182.42000000000002,181.41,180.74,180.23,179.9,179.67000000000002,179.70000000000002,179.81,180.77,14.84,15.040000000000001,15.09,15.15,15.25,15.35,15.530000000000001,15.71,16.25,N/A,N/A +2013,11,16,12,30,93680,92570,91490,73.8,0,7.76,11.01,12.27,13.36,14.23,14.950000000000001,15.43,15.790000000000001,15.870000000000001,184.92000000000002,183.59,182.8,182.20000000000002,181.81,181.51,181.52,181.62,182.74,14.88,14.96,14.97,14.99,15.05,15.120000000000001,15.280000000000001,15.46,16.04,N/A,N/A +2013,11,16,13,30,93700,92580,91500,79.48,0,5.97,8.98,10.22,11.32,12.19,12.93,13.42,13.780000000000001,13.86,171.62,173.81,175.07,175.97,176.71,177.34,178.09,178.86,181.09,14,14.1,14.11,14.120000000000001,14.17,14.23,14.38,14.56,15.200000000000001,N/A,N/A +2013,11,16,14,30,93740,92620,91530,82.27,0,4.04,6.28,7.5200000000000005,8.65,9.61,10.46,11.08,11.6,12.1,166.09,169.54,171.70000000000002,173.02,174.14000000000001,175.13,176.36,177.59,180.53,13.41,13.19,13.1,13.030000000000001,13.06,13.11,13.35,13.6,14.31,N/A,N/A +2013,11,16,15,30,93740,92630,91550,69.89,0,3.64,4.95,5.62,6.16,6.72,7.29,7.79,8.23,8.97,174.24,176.24,177.67000000000002,178.8,179.85,180.86,182.15,183.48,187.01,15.610000000000001,15.26,15.13,14.98,14.9,14.85,14.92,15.01,15.39,N/A,N/A +2013,11,16,16,30,93720,92610,91540,60.56,0,3.2,4,4.3,4.5,4.67,4.82,5,5.17,5.65,175.35,177.08,178.24,179.3,180.37,181.45000000000002,182.68,183.87,187.02,17.830000000000002,17.32,17.11,16.91,16.740000000000002,16.59,16.43,16.3,16.11,N/A,N/A +2013,11,16,17,30,93670,92580,91510,51.43,0,4.32,5.3100000000000005,5.69,5.89,6.0200000000000005,6.09,6.16,6.21,6.48,181.95000000000002,183.13,183.98,184.83,185.66,186.53,187.51,188.47,191.11,20.330000000000002,19.740000000000002,19.490000000000002,19.26,19.07,18.89,18.72,18.56,18.28,N/A,N/A +2013,11,16,18,30,93560,92480,91420,45.33,0,7.28,8.86,9.3,9.49,9.620000000000001,9.68,9.78,9.88,10.52,192.44,193.24,193.94,194.93,196.1,197.4,199.21,201.01,206.54,22.490000000000002,21.830000000000002,21.6,21.400000000000002,21.23,21.09,20.97,20.86,20.78,N/A,N/A +2013,11,16,19,30,93530,92450,91400,42.87,0,6.65,8.05,8.44,8.58,8.65,8.66,8.66,8.65,8.620000000000001,180.25,180.42000000000002,180.73,181.24,181.82,182.47,183.27,184.07,186.22,23.72,23.03,22.77,22.54,22.330000000000002,22.150000000000002,21.97,21.8,21.47,N/A,N/A +2013,11,16,20,30,93480,92410,91380,31.5,0,7.640000000000001,9.52,10.22,10.6,10.870000000000001,11.06,11.200000000000001,11.31,11.46,224.34,224.3,224.33,224.53,224.70000000000002,224.89000000000001,225.07,225.25,225.63,27.060000000000002,26.43,26.18,25.92,25.7,25.490000000000002,25.28,25.080000000000002,24.69,N/A,N/A +2013,11,16,21,30,93450,92390,91350,31.240000000000002,0,7.71,9.64,10.49,10.950000000000001,11.31,11.540000000000001,11.73,11.870000000000001,12.06,227.43,227.34,227.28,227.3,227.33,227.39000000000001,227.45000000000002,227.53,227.70000000000002,27.57,27.05,26.830000000000002,26.580000000000002,26.37,26.150000000000002,25.95,25.75,25.36,N/A,N/A +2013,11,16,22,30,93350,92280,91250,33.18,0,6.66,8.55,9.13,9.49,9.76,9.96,10.1,10.23,10.39,201.72,202.59,203.17000000000002,203.68,204.12,204.51,204.9,205.26,205.99,27.12,26.73,26.55,26.34,26.14,25.95,25.75,25.560000000000002,25.18,N/A,N/A +2013,11,16,23,30,93430,92370,91320,44.58,0,5.5200000000000005,7.33,8.19,8.71,9.120000000000001,9.42,9.68,9.89,10.200000000000001,151.26,153.17000000000002,155.15,157.82,160.22,162.79,165.06,167.14000000000001,170.74,24.95,25.02,25.01,24.93,24.84,24.71,24.580000000000002,24.43,24.14,N/A,N/A +2013,11,17,0,30,93400,92320,91280,53,0,7.82,10.55,11.51,12.26,12.85,13.33,13.64,13.89,13.93,169.75,170.33,170.83,171.47,172.26,173.21,174.65,176.18,181.42000000000002,22.67,22.75,22.75,22.73,22.72,22.72,22.78,22.85,23.23,N/A,N/A +2013,11,17,1,30,93380,92300,91250,62.29,0,9.18,12.27,13.27,14.040000000000001,14.63,15.1,15.31,15.44,14.83,171.33,171.46,171.62,171.88,172.33,172.88,174,175.18,180.31,21.32,21.36,21.39,21.44,21.56,21.7,21.990000000000002,22.29,23.39,N/A,N/A +2013,11,17,2,30,93430,92340,91290,66.46000000000001,0,7.17,9.99,11.09,12.05,12.88,13.63,14.280000000000001,14.86,15.64,167.88,167.95000000000002,167.95000000000002,167.98,168.06,168.19,168.51,168.87,170.51,20.57,20.63,20.63,20.64,20.66,20.69,20.76,20.82,21.06,N/A,N/A +2013,11,17,3,30,93470,92390,91340,65.87,0,8.040000000000001,10.950000000000001,12.07,13.01,13.780000000000001,14.42,14.91,15.31,15.58,175.59,175.36,175.23,175.15,175.21,175.36,175.82,176.35,178.87,20.66,20.740000000000002,20.75,20.78,20.85,20.93,21.080000000000002,21.23,21.72,N/A,N/A +2013,11,17,4,30,93480,92390,91340,70.48,0,6.76,9.58,10.620000000000001,11.5,12.16,12.68,12.950000000000001,13.14,12.92,176.20000000000002,176.06,176.11,176.43,177.07,177.89000000000001,179.42000000000002,180.99,186.41,20.32,20.45,20.5,20.59,20.73,20.91,21.2,21.490000000000002,22.16,N/A,N/A +2013,11,17,5,30,93480,92390,91340,75.10000000000001,0,4.79,7.24,8.15,8.92,9.450000000000001,9.81,9.93,10,9.75,171.8,175.18,177.37,179.29,181.39000000000001,183.51,186.58,189.66,199.25,19.47,19.72,19.84,20.05,20.37,20.740000000000002,21.21,21.64,22.36,N/A,N/A +2013,11,17,6,30,93560,92470,91410,88.29,0,2.4,3.1,3.12,3.74,4.4,5.12,5.73,6.28,7.08,105.60000000000001,136.75,153.56,168.6,178.84,185.67000000000002,190.14000000000001,193.84,199.08,17.93,18.71,18.81,18.86,18.93,18.990000000000002,19.13,19.27,19.61,N/A,N/A +2013,11,17,7,30,93620,92520,91460,86.03,0,3.15,3.44,3.04,2.74,2.89,3.31,3.81,4.33,5.42,106.46000000000001,120.18,136.6,165.37,179.98,188.51,194.91,200.69,207.59,17.46,18.02,18.19,18.34,18.43,18.490000000000002,18.52,18.54,18.61,N/A,N/A +2013,11,17,8,30,93640,92530,91470,89.78,0,3.02,4.05,3.6,2.85,2.69,2.71,3.08,3.5,4.72,132.76,145.94,163.76,186.11,203.73000000000002,219.41,228.21,235.48000000000002,239.72,16.36,17.04,17.52,18.17,18.56,18.84,18.98,19.1,19.35,N/A,N/A +2013,11,17,9,30,93710,92610,91550,84.95,0,0.72,0.41000000000000003,0.36,0.78,1.35,2.0100000000000002,2.61,3.2,4.3100000000000005,149.36,153.56,168.63,238.02,281.2,282.98,282.87,282.22,282.55,16.86,17.72,17.84,18.02,18.26,18.53,18.61,18.650000000000002,18.73,N/A,N/A +2013,11,17,10,30,93740,92630,91570,89.79,0,1.05,1.55,1.46,1.26,1.46,1.97,2.7,3.58,5.2700000000000005,165.56,187.72,206.65,231.41,253.96,281.93,292.57,300.68,305.83,15.32,16.240000000000002,16.48,16.75,17.16,17.62,18.1,18.52,19.16,N/A,N/A +2013,11,17,11,30,93820,92710,91640,87.82000000000001,0,2.5,2.57,1.79,0.96,0.76,0.8,1.36,2.44,4.24,124.37,130.31,132.88,134.38,79.57000000000001,337.68,315.22,314.24,313.41,15.200000000000001,16.7,17.150000000000002,17.35,17.59,17.89,18.14,18.37,18.79,N/A,N/A +2013,11,17,12,30,93850,92740,91660,85.13,0,1.24,1.17,0.41000000000000003,0.07,0.17,0.9500000000000001,1.51,2.14,3.2,92.27,106.44,92.07000000000001,82.04,63.96,319.21,313.59000000000003,315.36,315.82,14.780000000000001,15.860000000000001,16.07,16.22,16.37,16.490000000000002,16.61,16.73,16.96,N/A,N/A +2013,11,17,13,30,93930,92820,91750,88.68,0,0.58,0.85,1.01,1.6500000000000001,2.4,3.24,4.04,4.83,6.2700000000000005,177.66,231.92000000000002,261.94,282.68,295.73,301,303.46,305.25,306.78000000000003,13.620000000000001,15.24,15.82,16.23,16.66,17.06,17.35,17.580000000000002,17.830000000000002,N/A,N/A +2013,11,17,14,30,94000,92890,91820,70.32000000000001,0,2.46,3.45,4.03,5.3500000000000005,6.49,7.44,8.47,9.51,11.65,220.05,258.96,282.02,294.57,301.5,303.97,305.3,306.36,307.58,14.74,15.71,16.37,17.04,17.37,17.5,17.59,17.66,17.82,N/A,N/A +2013,11,17,15,30,94030,92920,91850,52.32,0,4.73,5.9,6.41,7.07,7.78,8.53,9.16,9.73,10.790000000000001,304.74,307.54,309.8,312.73,314.82,316.45,316.76,316.84000000000003,316.51,18.69,18.36,18.23,18.12,18.06,18.01,17.98,17.96,17.91,N/A,N/A +2013,11,17,16,30,94050,92950,91880,45.37,0,4.93,6.24,6.640000000000001,6.890000000000001,7.0600000000000005,7.19,7.28,7.37,7.5,316.03000000000003,316.1,316.05,315.91,315.74,315.57,315.36,315.15000000000003,314.69,20.93,20.38,20.16,19.94,19.73,19.54,19.330000000000002,19.150000000000002,18.76,N/A,N/A +2013,11,17,17,30,94070,92980,91920,40.82,0,4.68,5.8100000000000005,6.17,6.38,6.5200000000000005,6.640000000000001,6.73,6.8,6.92,300.89,300.97,300.98,300.90000000000003,300.79,300.67,300.53000000000003,300.39,300.07,22.490000000000002,21.87,21.62,21.39,21.17,20.97,20.76,20.57,20.17,N/A,N/A +2013,11,17,18,30,94090,93000,91940,35.06,0,4.88,5.98,6.3500000000000005,6.54,6.67,6.78,6.8500000000000005,6.91,7,305.03000000000003,304.59000000000003,304.25,303.91,303.59000000000003,303.28000000000003,302.98,302.7,302.13,23.79,23.14,22.88,22.63,22.41,22.2,21.98,21.79,21.38,N/A,N/A +2013,11,17,19,30,94090,93010,91950,28.97,0,4.96,6.13,6.5,6.72,6.87,6.99,7.07,7.15,7.26,300.09000000000003,299.66,299.38,299.1,298.83,298.58,298.34000000000003,298.11,297.66,24.61,23.96,23.7,23.45,23.23,23.02,22.8,22.6,22.19,N/A,N/A +2013,11,17,20,30,94060,92980,91930,24.41,0,5.82,7.28,7.71,7.95,8.120000000000001,8.24,8.33,8.4,8.48,310.47,310.14,309.95,309.73,309.51,309.3,309.08,308.87,308.44,25.11,24.48,24.23,23.990000000000002,23.77,23.56,23.34,23.14,22.73,N/A,N/A +2013,11,17,21,30,94070,92990,91940,23.88,0,4.6000000000000005,5.76,6.12,6.33,6.48,6.6000000000000005,6.68,6.76,6.87,306.8,306.41,306.19,305.94,305.7,305.47,305.23,305.01,304.56,25.25,24.7,24.48,24.25,24.03,23.830000000000002,23.62,23.42,23.02,N/A,N/A +2013,11,17,22,30,94070,92990,91930,25.2,0,4.43,5.54,5.88,6.0600000000000005,6.2,6.29,6.36,6.42,6.51,307.66,307.08,306.7,306.3,305.95,305.62,305.28000000000003,304.96,304.33,25.060000000000002,24.66,24.46,24.25,24.05,23.85,23.650000000000002,23.46,23.06,N/A,N/A +2013,11,17,23,30,94060,92980,91930,30.1,0,3.09,5.48,6.17,6.63,6.94,7.16,7.3100000000000005,7.43,7.61,316.86,314.76,313.42,312.2,311.29,310.58,310.07,309.63,308.87,23.7,24.2,24.240000000000002,24.17,24.05,23.91,23.73,23.56,23.2,N/A,N/A +2013,11,18,0,30,94110,93020,91960,37.43,0,1.09,3,4.11,5.11,5.87,6.46,6.8,7.0600000000000005,7.44,342.39,332.15000000000003,325.16,319.98,316.55,314.42,313.6,313.11,312.24,20.650000000000002,22.27,22.740000000000002,23.12,23.29,23.35,23.27,23.16,22.86,N/A,N/A +2013,11,18,1,30,94170,93070,92010,37.31,0,0.47000000000000003,0.5,0.51,0.9400000000000001,1.45,2,2.52,3.0300000000000002,3.83,101.77,38.38,11.81,349.34000000000003,335.33,331.54,329.59000000000003,328.09000000000003,324.04,19.63,20.66,20.8,20.96,21.13,21.29,21.48,21.650000000000002,21.94,N/A,N/A +2013,11,18,2,30,94190,93080,92020,41,0,0.31,0.51,0.6900000000000001,1.25,1.84,2.42,2.96,3.49,4.47,114.54,17.21,338.87,328.83,323.47,321.6,320.86,320.27,319.29,18.22,19.26,19.53,19.79,19.990000000000002,20.16,20.32,20.46,20.69,N/A,N/A +2013,11,18,3,30,94230,93120,92050,41.59,0,0.49,1,1.27,1.6,1.99,2.44,2.95,3.49,4.61,301.25,307.14,310.68,313.26,314.6,315.27,315.08,314.68,312.93,17.6,18.66,18.96,19.23,19.45,19.64,19.830000000000002,20.01,20.37,N/A,N/A +2013,11,18,4,30,94250,93140,92070,43.69,0,0.52,1.32,1.84,2.5100000000000002,3.14,3.74,4.28,4.8,5.8100000000000005,220.27,266.79,293.74,303.16,308.13,310.57,312.02,313.16,313.05,17.03,18.75,19.3,19.66,19.86,19.98,20.02,20.04,20.02,N/A,N/A +2013,11,18,5,30,94250,93140,92070,35.38,0,1.3,2.45,2.99,3.81,4.64,5.45,6.21,6.95,8.41,257.31,289.37,302.91,305.56,306.13,305.69,305.78000000000003,305.85,305.57,17.96,18.86,18.94,19.03,19.07,19.09,19.09,19.09,19.11,N/A,N/A +2013,11,18,6,30,94280,93170,92100,35.97,0,0.6900000000000001,2.02,2.9,3.85,4.78,5.7,6.65,7.62,9.6,272.45,298.18,311.45,310.04,308.65000000000003,307.3,306.94,306.69,306.43,17.19,18.46,18.61,18.6,18.580000000000002,18.55,18.55,18.54,18.56,N/A,N/A +2013,11,18,7,30,94330,93220,92140,37.42,0,1.61,2.0300000000000002,2.37,3.73,4.89,5.87,6.67,7.43,8.99,216.09,282.64,304.90000000000003,310.92,313.5,314.01,313.69,313.36,313.15000000000003,17.18,17.990000000000002,17.96,17.88,17.900000000000002,17.94,17.94,17.93,17.900000000000002,N/A,N/A +2013,11,18,8,30,94380,93260,92180,40.550000000000004,0,1.2,1.71,1.98,2.74,3.41,4.01,4.63,5.24,6.37,224.88,280.23,303.83,318.23,323.52,324.49,323.97,323.32,321.32,15.69,16.39,16.43,16.490000000000002,16.52,16.54,16.580000000000002,16.62,16.72,N/A,N/A +2013,11,18,9,30,94380,93260,92180,41.57,0,1.85,2.33,2.86,4.92,6.21,6.91,7.38,7.76,8.21,227.47,285.15000000000003,306.91,318.57,323.23,323.5,321.88,320.26,317.45,15.59,15.83,15.790000000000001,16.02,16.14,16.21,16.39,16.55,16.7,N/A,N/A +2013,11,18,10,30,94400,93280,92190,43.96,0,1.41,2.25,2.7,3.75,4.66,5.5,6.09,6.58,7.21,238.35,293.32,316.28000000000003,324.08,326.2,325.7,325,324.21,322.18,14.700000000000001,15.15,15.16,15.27,15.39,15.5,15.63,15.74,15.99,N/A,N/A +2013,11,18,11,30,94450,93320,92230,46.57,0,0.92,1.32,1.6400000000000001,2.69,3.81,4.98,5.97,6.9,8.22,250.42000000000002,303.03000000000003,324.06,332.08,333.88,332.12,330.35,328.54,325.13,13.65,14.09,14.200000000000001,14.41,14.56,14.68,14.76,14.85,15.14,N/A,N/A +2013,11,18,12,30,94500,93370,92270,46.82,0,0.8200000000000001,1.72,2.09,2.42,3.06,3.86,4.66,5.47,7.08,30.23,23.64,18.38,12.700000000000001,6.38,359.36,355.51,351.84000000000003,345.89,13.280000000000001,13.61,13.57,13.51,13.450000000000001,13.39,13.38,13.42,13.83,N/A,N/A +2013,11,18,13,30,94520,93380,92290,50.94,0,0.38,0.92,1.32,1.9100000000000001,2.52,3.15,3.79,4.43,5.62,276.24,312.63,331.23,338.95,342.95,345.63,347.43,349.12,351.69,12.47,13.08,13.21,13.34,13.530000000000001,13.71,13.870000000000001,13.99,14.08,N/A,N/A +2013,11,18,14,30,94550,93420,92320,48.2,0,0.45,1.31,2.1,2.91,3.65,4.3500000000000005,4.88,5.3,5.54,97.2,51.06,22.79,17.76,15.47,14.22,14.4,14.790000000000001,17.080000000000002,11.92,12.18,12.33,12.43,12.52,12.6,12.65,12.67,12.58,N/A,N/A +2013,11,18,15,30,94570,93440,92340,44.13,0,2.32,2.7800000000000002,2.89,2.92,2.92,2.91,2.91,2.94,3.13,27.7,27.52,27.47,27.44,27.42,27.400000000000002,27.5,28.35,34.9,13.86,13.44,13.24,13.06,12.88,12.72,12.56,12.41,12.3,N/A,N/A +2013,11,18,16,30,94590,93460,92370,41.62,0,1.9100000000000001,2.27,2.37,2.41,2.43,2.44,2.45,2.45,2.46,15.290000000000001,18.81,21.17,23.32,25.42,27.35,29.55,31.650000000000002,36.38,16.01,15.530000000000001,15.32,15.11,14.92,14.74,14.56,14.38,14.040000000000001,N/A,N/A +2013,11,18,17,30,94560,93440,92360,38.92,0,1.82,2.13,2.2,2.23,2.24,2.25,2.25,2.24,2.23,16.990000000000002,20.7,23.02,25.09,27.05,28.82,30.740000000000002,32.52,36.22,18.52,18,17.76,17.54,17.330000000000002,17.14,16.94,16.75,16.37,N/A,N/A +2013,11,18,18,30,94540,93440,92360,35.87,0,1.58,1.8,1.83,1.83,1.82,1.8,1.78,1.76,1.72,2.18,5.47,7.54,9.47,11.370000000000001,13.13,15.08,16.88,20.830000000000002,20.2,19.68,19.43,19.21,19,18.8,18.6,18.41,18.02,N/A,N/A +2013,11,18,19,30,94520,93410,92340,32.64,0,1.6300000000000001,1.86,1.9000000000000001,1.9100000000000001,1.9000000000000001,1.8800000000000001,1.86,1.84,1.79,349.73,351.97,353.33,354.59000000000003,355.81,356.95,358.19,359.34000000000003,1.8800000000000001,21.54,21,20.76,20.53,20.31,20.11,19.91,19.71,19.32,N/A,N/A +2013,11,18,20,30,94500,93400,92330,30.87,0,1.54,1.79,1.85,1.87,1.8800000000000001,1.8800000000000001,1.8800000000000001,1.8800000000000001,1.86,345.34000000000003,346.63,347.39,348.04,348.67,349.27,349.87,350.43,351.68,22.44,21.92,21.68,21.45,21.240000000000002,21.03,20.82,20.63,20.240000000000002,N/A,N/A +2013,11,18,21,30,94480,93390,92320,29.47,0,1.33,1.54,1.57,1.58,1.59,1.58,1.58,1.57,1.55,16.35,17.23,17.71,18.14,18.51,18.81,19.09,19.34,19.75,22.900000000000002,22.43,22.21,21.990000000000002,21.78,21.580000000000002,21.38,21.19,20.79,N/A,N/A +2013,11,18,22,30,94470,93370,92310,28.79,0,1.35,1.58,1.6300000000000001,1.6500000000000001,1.6600000000000001,1.6600000000000001,1.6600000000000001,1.6500000000000001,1.6400000000000001,26.85,28.87,30.05,30.98,31.720000000000002,32.34,32.910000000000004,33.42,34.38,23.06,22.650000000000002,22.46,22.25,22.05,21.86,21.650000000000002,21.47,21.07,N/A,N/A +2013,11,18,23,30,94480,93380,92310,34,0,2.36,3.7800000000000002,4.19,4.43,4.5600000000000005,4.63,4.63,4.62,4.5200000000000005,92.31,90.68,89.89,89.57000000000001,89.47,89.51,89.69,89.89,90.42,21.91,21.89,21.77,21.59,21.400000000000002,21.21,21.01,20.830000000000002,20.44,N/A,N/A +2013,11,19,0,30,94500,93400,92330,35.1,0,3.45,5.17,5.86,6.45,6.92,7.3,7.59,7.82,8.02,78.46000000000001,79.13,79.64,80.05,80.39,80.7,81.02,81.31,81.88,20.59,20.490000000000002,20.400000000000002,20.27,20.13,19.990000000000002,19.84,19.69,19.35,N/A,N/A +2013,11,19,1,30,94520,93410,92330,33.86,0,3.83,5.47,6.09,6.62,7.0600000000000005,7.43,7.75,8.040000000000001,8.49,71.55,72.76,73.46000000000001,74.04,74.59,75.07000000000001,75.62,76.15,77.4,19.5,19.28,19.12,18.95,18.76,18.6,18.41,18.240000000000002,17.89,N/A,N/A +2013,11,19,2,30,94520,93410,92330,33.24,0,3.46,5.3,6.13,6.890000000000001,7.5600000000000005,8.15,8.65,9.06,9.42,96.77,94.23,92.63,91.43,90.58,89.95,89.76,89.73,90.84,18.51,18.35,18.22,18.080000000000002,17.94,17.81,17.69,17.59,17.47,N/A,N/A +2013,11,19,3,30,94540,93420,92340,39.71,0,0.84,2.41,3.41,4.37,5.26,6.1000000000000005,6.83,7.51,8.540000000000001,60.08,71.35000000000001,78.86,81.06,82.42,83.31,84.03,84.72,86.33,17.2,17.36,17.240000000000002,17.1,16.95,16.81,16.66,16.52,16.31,N/A,N/A +2013,11,19,4,30,94550,93430,92340,37.11,0,2.41,2.41,2.18,2.11,2.35,2.75,3.42,4.17,5.99,15.96,27.47,37.64,52,62,70.89,75.74,80.05,84.54,16.37,16.43,16.35,16.17,15.98,15.8,15.610000000000001,15.44,15.1,N/A,N/A +2013,11,19,5,30,94560,93430,92340,43.410000000000004,0,2.16,2.62,2.6,2.94,3.46,4.09,4.7700000000000005,5.45,6.87,22.32,44.32,58.89,76.8,86.05,91.65,93.61,95.13,96.18,14.89,15.46,15.450000000000001,15.370000000000001,15.26,15.15,14.98,14.82,14.48,N/A,N/A +2013,11,19,6,30,94570,93440,92350,42.76,0,2.42,2.16,2.04,2.52,3.22,4.07,4.73,5.3500000000000005,6.33,5.2700000000000005,33.11,52.64,83.48,93.76,96.25,97.37,98.49000000000001,101.03,14.49,14.96,14.85,14.620000000000001,14.49,14.39,14.27,14.15,13.91,N/A,N/A +2013,11,19,7,30,94610,93480,92390,43.97,0,0.85,0.71,0.8200000000000001,1.6,2.18,2.58,3.0100000000000002,3.43,4.32,347.01,71.18,93.32000000000001,101.46000000000001,108.51,114.15,116.33,118.2,120.58,13.92,14.3,14.17,13.98,13.89,13.84,13.790000000000001,13.73,13.620000000000001,N/A,N/A +2013,11,19,8,30,94580,93440,92350,46.42,0,0.78,1.98,2.5300000000000002,2.85,3.0500000000000003,3.19,3.4,3.61,4.1,110.95,100.87,97.85000000000001,101.47,106.71000000000001,112.08,118.46000000000001,124.64,137.23,12.9,13.620000000000001,13.73,13.73,13.72,13.700000000000001,13.68,13.68,13.71,N/A,N/A +2013,11,19,9,30,94510,93380,92280,45.31,0,2.11,3.66,4.36,5,5.47,5.84,6.16,6.5,7.33,91.78,105.98,114.10000000000001,119.06,123.25,126.93,131.68,137,149.46,13.200000000000001,13.19,13.16,13.14,13.15,13.17,13.25,13.36,13.700000000000001,N/A,N/A +2013,11,19,10,30,94510,93380,92290,51.81,0,1.29,1.5,1.69,2.52,3.23,3.86,4.3,4.7,5.3500000000000005,346.17,69.60000000000001,97.59,108.34,115.02,119.60000000000001,123.35000000000001,127.24000000000001,135.75,13.68,13.77,13.74,13.71,13.65,13.59,13.51,13.43,13.280000000000001,N/A,N/A +2013,11,19,11,30,94540,93400,92310,56.19,0,2.49,2.82,2.38,2,1.78,1.6300000000000001,1.61,1.67,2.19,49.43,56.31,62.24,69.2,80.76,91.85000000000001,108.17,122.52,147.68,12.290000000000001,13.200000000000001,13.41,13.48,13.42,13.33,13.21,13.11,12.94,N/A,N/A +2013,11,19,12,30,94550,93420,92320,54.2,0,0.47000000000000003,1.02,1.25,1.29,1.48,1.72,2.17,2.65,3.67,92.52,106.94,121.4,135.96,149.44,162.81,167.62,171.45000000000002,172.65,13.05,13.11,13.18,13.25,13.33,13.39,13.43,13.450000000000001,13.42,N/A,N/A +2013,11,19,13,30,94530,93400,92310,55.43,0,0.59,1.56,2.14,2.66,3.18,3.7,4.19,4.67,5.54,113.26,131.7,144.54,153.02,158.43,162.39000000000001,164.53,166.29,167.92000000000002,13.42,13.73,13.88,13.98,14.01,14.02,13.98,13.94,13.82,N/A,N/A +2013,11,19,14,30,94520,93390,92300,63.4,0,2.12,3.34,3.92,4.37,4.69,4.94,5.17,5.38,5.84,138.94,140.38,141.32,142.17000000000002,143.64000000000001,145.35,147.83,150.07,153.12,14.24,14.16,14.11,14.040000000000001,13.97,13.9,13.83,13.75,13.6,N/A,N/A +2013,11,19,15,30,94450,93330,92240,55.230000000000004,0,4.25,5.41,5.78,6,6.15,6.26,6.34,6.42,6.5600000000000005,148.79,149.46,149.83,150.12,150.39000000000001,150.63,150.9,151.15,151.76,16.13,15.65,15.44,15.23,15.030000000000001,14.84,14.64,14.46,14.09,N/A,N/A +2013,11,19,16,30,94430,93310,92220,46.03,0,4.96,6.25,6.66,6.9,7.05,7.16,7.23,7.29,7.37,155.4,155.64000000000001,155.74,155.82,155.91,155.98,156.06,156.14000000000001,156.32,17.01,16.5,16.28,16.06,15.85,15.66,15.450000000000001,15.26,14.870000000000001,N/A,N/A +2013,11,19,17,30,94360,93250,92170,46.39,0,4.68,5.88,6.23,6.43,6.5600000000000005,6.640000000000001,6.69,6.73,6.78,164.39000000000001,164.11,163.92000000000002,163.77,163.62,163.49,163.37,163.27,163.04,17.87,17.29,17.05,16.81,16.59,16.39,16.18,15.98,15.58,N/A,N/A +2013,11,19,18,30,94320,93210,92130,48.71,0,5.01,6.18,6.51,6.66,6.74,6.79,6.8,6.8100000000000005,6.78,163.27,163.23,163.16,163.04,162.93,162.81,162.68,162.55,162.28,18.12,17.52,17.27,17.05,16.830000000000002,16.63,16.42,16.22,15.83,N/A,N/A +2013,11,19,19,30,94280,93170,92090,49.43,0,4.97,6.11,6.43,6.59,6.68,6.74,6.7700000000000005,6.8,6.8100000000000005,164.59,164.23,164,163.79,163.59,163.39000000000001,163.18,162.99,162.59,18.72,18.04,17.77,17.53,17.3,17.1,16.89,16.69,16.3,N/A,N/A +2013,11,19,20,30,94180,93080,92010,47.6,0,4.4,5.55,5.88,6.07,6.19,6.28,6.33,6.38,6.43,162.51,162.69,162.99,163.23,163.44,163.64000000000001,163.84,164.04,164.44,19.8,19.18,18.92,18.69,18.47,18.26,18.05,17.86,17.46,N/A,N/A +2013,11,19,21,30,94110,93020,91950,48.97,0,5.42,6.7700000000000005,7.18,7.390000000000001,7.53,7.62,7.67,7.71,7.73,158.89000000000001,159.23,159.47,159.64000000000001,159.78,159.9,160.02,160.13,160.34,20.93,20.330000000000002,20.080000000000002,19.84,19.62,19.42,19.2,19.01,18.61,N/A,N/A +2013,11,19,22,30,94030,92940,91870,50.84,0,5.49,6.96,7.33,7.54,7.67,7.75,7.8,7.84,7.86,161,161.13,161.21,161.27,161.33,161.39000000000001,161.45000000000002,161.51,161.63,21.150000000000002,20.67,20.45,20.240000000000002,20.02,19.82,19.61,19.42,19.02,N/A,N/A +2013,11,19,23,30,94030,92930,91870,56.43,0,5.1000000000000005,7,7.62,8.09,8.44,8.72,8.950000000000001,9.14,9.43,162.14000000000001,162.07,162.12,162.19,162.27,162.36,162.45000000000002,162.54,162.72,20.38,20.19,20.04,19.87,19.69,19.51,19.32,19.14,18.75,N/A,N/A +2013,11,20,0,30,94040,92930,91870,62.25,0,4.38,6.67,7.53,8.22,8.790000000000001,9.27,9.69,10.06,10.65,155.4,155.71,156,156.44,156.94,157.44,157.96,158.42000000000002,159.21,18.85,18.88,18.830000000000002,18.73,18.62,18.5,18.36,18.21,17.89,N/A,N/A +2013,11,20,1,30,94040,92930,91860,66.08,0,3.8000000000000003,6.09,7.03,7.83,8.51,9.13,9.69,10.21,11.14,146.86,148.93,150.33,151.48,152.47,153.33,154.05,154.70000000000002,155.69,17.75,17.81,17.76,17.67,17.57,17.46,17.330000000000002,17.21,16.92,N/A,N/A +2013,11,20,2,30,94020,92910,91840,73.09,0,2.62,5.03,6.0600000000000005,7.04,7.930000000000001,8.75,9.55,10.3,11.69,128.5,134.86,138.94,141.9,144.25,146.24,147.79,149.15,151.15,16.54,16.79,16.77,16.72,16.65,16.580000000000002,16.490000000000002,16.4,16.19,N/A,N/A +2013,11,20,3,30,94030,92920,91840,70.17,0,3.56,6.08,7.2,8.21,9.09,9.88,10.620000000000001,11.31,12.59,135.62,140.5,143.58,145.78,147.53,149.03,150.27,151.39000000000001,153.19,16.16,16.27,16.23,16.15,16.06,15.97,15.85,15.74,15.49,N/A,N/A +2013,11,20,4,30,94030,92920,91840,75.78,0,3.5700000000000003,6.09,7.24,8.28,9.18,9.97,10.72,11.41,12.71,137.77,143.1,146.39000000000001,148.61,150.35,151.81,153.01,154.1,155.89000000000001,15.48,15.56,15.51,15.43,15.33,15.23,15.120000000000001,15.01,14.780000000000001,N/A,N/A +2013,11,20,5,30,94050,92930,91850,79.05,0,4.21,6.75,7.9,8.950000000000001,9.870000000000001,10.700000000000001,11.47,12.18,13.51,140.20000000000002,145.1,148.14000000000001,150.3,152,153.41,154.54,155.55,157.14000000000001,15.06,15.07,15.01,14.91,14.81,14.700000000000001,14.58,14.46,14.22,N/A,N/A +2013,11,20,6,30,94050,92930,91850,80.57000000000001,0,3.89,6.42,7.62,8.72,9.700000000000001,10.57,11.4,12.17,13.6,136.89000000000001,142.68,146.31,148.8,150.74,152.36,153.64000000000001,154.79,156.56,14.33,14.36,14.3,14.21,14.11,14.01,13.9,13.790000000000001,13.57,N/A,N/A +2013,11,20,7,30,94070,92950,91860,81.76,0,4.0200000000000005,6.58,7.82,8.950000000000001,9.950000000000001,10.83,11.65,12.4,13.76,136.34,142.79,146.84,149.46,151.43,153.03,154.26,155.35,157.04,13.91,13.92,13.85,13.75,13.65,13.540000000000001,13.42,13.31,13.08,N/A,N/A +2013,11,20,8,30,94080,92960,91870,89.41,0,3.22,5.54,6.66,7.72,8.69,9.57,10.4,11.18,12.620000000000001,132.4,139.42000000000002,144.16,147.5,150.09,152.25,153.9,155.35,157.48,13.200000000000001,13.290000000000001,13.23,13.14,13.030000000000001,12.92,12.8,12.69,12.47,N/A,N/A +2013,11,20,9,30,94050,92930,91840,92.89,0,3.6,5.96,7.03,7.97,8.8,9.55,10.27,10.94,12.24,144.24,147.58,149.86,151.68,153.22,154.58,155.72,156.76,158.47,13.200000000000001,13.19,13.09,12.97,12.83,12.69,12.55,12.42,12.17,N/A,N/A +2013,11,20,10,30,94030,92920,91830,90.39,0,5.2,7.07,7.76,8.32,8.81,9.26,9.71,10.13,10.94,153.29,154.03,154.68,155.54,156.33,157.06,157.76,158.41,159.56,14.61,14.36,14.200000000000001,14.030000000000001,13.85,13.69,13.51,13.34,13.01,N/A,N/A +2013,11,20,11,30,94030,92910,91830,90.02,0,5.79,7.84,8.58,9.16,9.63,10.05,10.42,10.77,11.42,159.99,160.49,160.86,161.25,161.63,161.99,162.37,162.72,163.41,15.18,14.93,14.77,14.6,14.41,14.24,14.05,13.88,13.530000000000001,N/A,N/A +2013,11,20,12,30,94020,92900,91820,90.62,0,5.36,7.23,7.91,8.45,8.91,9.31,9.68,10.03,10.68,162.95000000000002,163.23,163.48,163.8,164.14000000000001,164.46,164.79,165.11,165.71,15.27,15.01,14.85,14.67,14.48,14.3,14.1,13.92,13.59,N/A,N/A +2013,11,20,13,30,94020,92900,91820,92.57000000000001,0,5.16,7.05,7.78,8.370000000000001,8.88,9.33,9.74,10.120000000000001,10.84,166.77,166.94,167.09,167.3,167.5,167.69,167.84,167.98,168.23,15.06,14.790000000000001,14.620000000000001,14.43,14.25,14.07,13.89,13.73,13.530000000000001,N/A,N/A +2013,11,20,14,30,94010,92890,91810,92.82000000000001,0,4.8100000000000005,6.73,7.5200000000000005,8.18,8.790000000000001,9.34,9.81,10.24,10.97,166.76,167.27,167.68,168.17000000000002,168.65,169.1,169.44,169.74,170.21,15.33,15.05,14.88,14.69,14.5,14.33,14.14,13.99,13.8,N/A,N/A +2013,11,20,15,30,94010,92900,91820,89.5,0,5.3100000000000005,6.95,7.54,8.040000000000001,8.46,8.83,9.24,9.67,10.790000000000001,166.9,167.12,167.33,167.65,167.98,168.29,168.67000000000002,169.06,170.08,15.97,15.64,15.450000000000001,15.24,15,14.75,14.52,14.32,14.07,N/A,N/A +2013,11,20,16,30,94000,92890,91810,87,0,5.44,6.98,7.49,7.8500000000000005,8.15,8.41,8.700000000000001,8.98,9.64,169.57,169.74,169.9,170.14000000000001,170.41,170.68,171.03,171.37,172.12,16.41,16.02,15.83,15.63,15.43,15.25,15.040000000000001,14.85,14.44,N/A,N/A +2013,11,20,17,30,93960,92850,91780,84,0,5.39,6.8,7.23,7.5,7.68,7.83,7.95,8.06,8.3,168.65,168.74,168.84,169,169.18,169.36,169.6,169.83,170.4,17,16.53,16.32,16.11,15.9,15.71,15.5,15.32,14.93,N/A,N/A +2013,11,20,18,30,93910,92810,91730,78.91,0,5.5200000000000005,6.91,7.32,7.55,7.7,7.8,7.87,7.930000000000001,8.01,166.96,167.24,167.44,167.62,167.8,167.96,168.15,168.33,168.71,17.86,17.26,17.01,16.78,16.56,16.36,16.15,15.96,15.57,N/A,N/A +2013,11,20,19,30,93880,92780,91700,73.65,0,5.8500000000000005,7.21,7.6000000000000005,7.79,7.9,7.96,7.98,7.99,7.97,167.8,167.91,167.96,167.96,167.94,167.91,167.87,167.83,167.72,18.7,17.98,17.71,17.46,17.23,17.02,16.81,16.62,16.23,N/A,N/A +2013,11,20,20,30,93820,92720,91660,71.34,0,5.57,6.87,7.25,7.43,7.54,7.6000000000000005,7.63,7.65,7.640000000000001,161.78,162.22,162.46,162.64000000000001,162.79,162.94,163.1,163.24,163.55,19.37,18.68,18.42,18.17,17.95,17.75,17.54,17.35,16.96,N/A,N/A +2013,11,20,21,30,93780,92690,91620,68.31,0,5.75,7.140000000000001,7.55,7.74,7.86,7.930000000000001,7.96,7.97,7.95,156.52,157.03,157.38,157.67000000000002,157.94,158.19,158.46,158.71,159.27,20.76,20.13,19.88,19.650000000000002,19.43,19.22,19.01,18.82,18.43,N/A,N/A +2013,11,20,22,30,93750,92660,91610,64.21000000000001,0,6.04,7.61,8.05,8.290000000000001,8.45,8.56,8.620000000000001,8.67,8.72,162.08,162.12,162.13,162.12,162.11,162.09,162.07,162.05,162,21.72,21.25,21.03,20.81,20.6,20.400000000000002,20.2,20,19.61,N/A,N/A +2013,11,20,23,30,93750,92660,91600,72.91,0,5.43,7.32,7.95,8.4,8.75,9.040000000000001,9.27,9.48,9.790000000000001,153.56,154.39000000000001,154.86,155.32,155.74,156.13,156.5,156.82,157.37,20.45,20.240000000000002,20.09,19.91,19.740000000000002,19.56,19.37,19.2,18.82,N/A,N/A +2013,11,21,0,30,93790,92690,91630,84.91,0,5.0200000000000005,7.18,7.97,8.620000000000001,9.14,9.58,9.98,10.35,10.98,147.38,148.44,149.26,150.28,151.21,152.09,153.07,153.99,155.75,18.5,18.41,18.3,18.16,18.01,17.87,17.71,17.56,17.25,N/A,N/A +2013,11,21,1,30,93790,92690,91630,88.88,0,3.3000000000000003,5.55,6.390000000000001,7.09,7.65,8.120000000000001,8.540000000000001,8.91,9.58,147.70000000000002,149.11,150.01,150.78,151.49,152.15,152.84,153.48,154.69,18.28,18.400000000000002,18.34,18.240000000000002,18.11,17.990000000000002,17.830000000000002,17.69,17.38,N/A,N/A +2013,11,21,2,30,93820,92720,91650,86.04,0,5.22,7.140000000000001,7.91,8.58,9.1,9.52,9.89,10.24,10.93,153.03,153.83,154.51,155.3,155.89000000000001,156.34,156.85,157.35,158.55,18.61,18.330000000000002,18.17,17.98,17.79,17.61,17.42,17.25,16.88,N/A,N/A +2013,11,21,3,30,93850,92750,91680,84.48,0,5.76,7.87,8.65,9.27,9.78,10.21,10.6,10.96,11.61,152.65,154.14000000000001,154.98,155.67000000000002,156.28,156.83,157.37,157.86,158.85,18.84,18.580000000000002,18.42,18.240000000000002,18.06,17.89,17.7,17.53,17.16,N/A,N/A +2013,11,21,4,30,93870,92770,91700,83.84,0,5.55,7.62,8.41,9.06,9.61,10.08,10.53,10.94,11.74,152.84,154.36,155.32,156.09,156.76,157.36,157.94,158.48,159.52,18.86,18.61,18.47,18.29,18.12,17.95,17.77,17.6,17.240000000000002,N/A,N/A +2013,11,21,5,30,93880,92770,91700,90.82000000000001,0,4.41,6.48,7.3500000000000005,8.19,8.93,9.6,10.23,10.82,11.94,143.65,146.69,148.69,150.37,151.88,153.26,154.52,155.68,157.8,17.54,17.41,17.28,17.14,16.990000000000002,16.84,16.69,16.55,16.28,N/A,N/A +2013,11,21,6,30,93900,92800,91730,90.04,0,4.07,6.07,7.05,7.8500000000000005,8.58,9.25,9.88,10.46,11.540000000000001,142.12,147.44,150.64000000000001,152.59,154.26,155.76,157.04,158.20000000000002,160.18,17.7,17.45,17.31,17.150000000000002,16.990000000000002,16.84,16.68,16.53,16.23,N/A,N/A +2013,11,21,7,30,93920,92820,91750,91.99,0,5.86,8.27,9.21,10.040000000000001,10.74,11.34,11.9,12.41,13.36,155.78,157.49,158.61,159.56,160.39000000000001,161.13,161.84,162.51,163.75,17.82,17.72,17.61,17.47,17.34,17.2,17.06,16.92,16.65,N/A,N/A +2013,11,21,8,30,93930,92820,91760,92.07000000000001,0,6.95,9.65,10.620000000000001,11.42,12.07,12.61,13.09,13.51,14.3,164.03,164.62,164.99,165.29,165.54,165.76,165.99,166.21,166.76,18.01,17.92,17.81,17.67,17.53,17.39,17.240000000000002,17.11,16.84,N/A,N/A +2013,11,21,9,30,93960,92860,91790,91.05,0,6.46,8.59,9.34,9.93,10.42,10.84,11.22,11.58,12.26,165.06,165.18,165.27,165.33,165.4,165.46,165.55,165.63,165.9,18.25,18.02,17.87,17.7,17.53,17.36,17.18,17.02,16.7,N/A,N/A +2013,11,21,10,30,93970,92870,91800,92.74,0,5.91,7.890000000000001,8.6,9.15,9.61,10,10.35,10.68,11.31,166.42000000000002,166.61,166.77,166.94,167.11,167.28,167.48,167.67000000000002,168.11,18.16,17.900000000000002,17.740000000000002,17.56,17.38,17.21,17.04,16.88,16.64,N/A,N/A +2013,11,21,11,30,93990,92890,91820,94.57000000000001,0,5.49,7.41,8.14,8.72,9.200000000000001,9.620000000000001,10.01,10.36,11.03,165.18,165.83,166.28,166.68,167.05,167.4,167.76,168.09,168.77,18.05,17.79,17.63,17.45,17.29,17.13,17,16.89,16.73,N/A,N/A +2013,11,21,12,30,94020,92920,91850,94.7,0,4.99,6.76,7.43,7.96,8.41,8.8,9.17,9.5,10.120000000000001,166.93,167.46,167.83,168.20000000000002,168.56,168.9,169.24,169.56,170.20000000000002,18.080000000000002,17.830000000000002,17.68,17.5,17.330000000000002,17.18,17.04,16.91,16.740000000000002,N/A,N/A +2013,11,21,13,30,94030,92930,91860,94.71000000000001,0,5.17,6.95,7.58,8.08,8.49,8.85,9.18,9.49,10.07,167.89000000000001,168.02,168.15,168.3,168.47,168.65,168.85,169.04,169.46,18.14,17.87,17.72,17.54,17.37,17.21,17.09,16.98,16.830000000000002,N/A,N/A +2013,11,21,14,30,94070,92970,91900,95.54,0,4.5200000000000005,6.140000000000001,6.73,7.2,7.58,7.91,8.21,8.47,8.99,173.66,173.17000000000002,172.84,172.62,172.46,172.34,172.28,172.23,172.24,18.150000000000002,17.89,17.73,17.56,17.41,17.27,17.17,17.09,16.93,N/A,N/A +2013,11,21,15,30,94130,93020,91950,96.45,0,2.41,3.42,3.8200000000000003,4.19,4.5,4.78,5.04,5.28,5.74,199.92000000000002,196.82,194.70000000000002,192.9,191.38,190.04,188.82,187.71,185.70000000000002,18.14,17.88,17.73,17.57,17.46,17.38,17.29,17.22,17.06,N/A,N/A +2013,11,21,16,30,94140,93040,91970,94.72,0,1.8800000000000001,2.32,2.57,2.98,3.62,4.47,5.0200000000000005,5.48,6.1000000000000005,221.61,217.4,213.67000000000002,208.04,202.70000000000002,197.07,194.28,192.16,189.31,18.39,18.06,17.89,17.71,17.6,17.53,17.48,17.42,17.27,N/A,N/A +2013,11,21,17,30,94140,93040,91980,85.60000000000001,0,2.58,3.3000000000000003,3.5700000000000003,3.74,3.88,3.98,4.09,4.19,4.46,205.47,202.91,201.27,199.97,198.81,197.75,196.61,195.54,193.05,19.87,19.43,19.23,19.03,18.84,18.66,18.47,18.3,17.96,N/A,N/A +2013,11,21,18,30,94120,93020,91960,75.47,0,4.01,4.93,5.21,5.34,5.43,5.49,5.5200000000000005,5.55,5.57,179.74,179.75,179.8,179.82,179.81,179.78,179.73,179.67000000000002,179.47,21.35,20.72,20.47,20.240000000000002,20.02,19.82,19.62,19.43,19.04,N/A,N/A +2013,11,21,19,30,94120,93030,91970,71.04,0,4.58,5.63,5.93,6.0600000000000005,6.13,6.17,6.19,6.2,6.18,168.96,168.73,168.58,168.38,168.17000000000002,167.97,167.74,167.54,167.1,22.14,21.490000000000002,21.23,21,20.78,20.580000000000002,20.38,20.19,19.8,N/A,N/A +2013,11,21,20,30,94080,93000,91950,64.89,0,4.11,5.0600000000000005,5.34,5.47,5.54,5.58,5.59,5.59,5.5600000000000005,166.17000000000002,166.16,166.08,165.93,165.78,165.63,165.46,165.32,164.99,23.34,22.740000000000002,22.490000000000002,22.26,22.04,21.84,21.64,21.45,21.06,N/A,N/A +2013,11,21,21,30,94070,92990,91940,64.46000000000001,0,4.71,5.84,6.17,6.34,6.44,6.49,6.5200000000000005,6.53,6.49,166.05,166.35,166.55,166.72,166.86,166.98,167.1,167.21,167.42000000000002,23.92,23.35,23.12,22.88,22.67,22.46,22.26,22.06,21.66,N/A,N/A +2013,11,21,22,30,94080,93000,91950,57.72,0,3.42,4.3500000000000005,4.64,4.82,4.95,5.04,5.11,5.17,5.25,159.38,159.23,159.24,159.24,159.22,159.22,159.21,159.20000000000002,159.20000000000002,24.17,23.76,23.57,23.36,23.16,22.96,22.76,22.57,22.18,N/A,N/A +2013,11,21,23,30,94130,93040,91990,70.45,0,3.31,4.96,5.5,5.87,6.13,6.32,6.43,6.5200000000000005,6.55,153.99,154.34,154.58,154.79,155.02,155.24,155.47,155.69,156.14000000000001,22.92,22.81,22.7,22.54,22.37,22.2,22.02,21.84,21.46,N/A,N/A +2013,11,22,0,30,94160,93070,92010,77.44,0,2.09,3.92,4.45,4.9,5.26,5.54,5.75,5.92,6.16,143.85,147.29,149.47,151.13,152.36,153.31,153.68,153.87,152.9,21.91,22.3,22.31,22.28,22.21,22.13,22,21.87,21.55,N/A,N/A +2013,11,22,1,30,94230,93130,92080,79.72,0,2.86,4.92,5.79,6.59,7.2700000000000005,7.87,8.35,8.77,9.200000000000001,136.91,140.18,142.14000000000001,143.49,144.58,145.51,146.14000000000001,146.68,147.04,21.12,21.17,21.12,21.04,20.96,20.88,20.78,20.68,20.45,N/A,N/A +2013,11,22,2,30,94280,93180,92130,86.54,0,2.12,4.07,4.8500000000000005,5.58,6.24,6.87,7.43,7.94,8.64,134.54,138.06,140.37,142.11,143.69,145.16,146.25,147.20000000000002,147.74,20.27,20.56,20.6,20.61,20.62,20.61,20.580000000000002,20.54,20.38,N/A,N/A +2013,11,22,3,30,94340,93240,92180,90.49,0,1.93,3.8000000000000003,4.46,5.1000000000000005,5.72,6.34,6.8500000000000005,7.3,7.61,117.26,122.9,126.9,130.78,134.06,136.99,138.23,138.97,136.71,19.57,19.95,20.04,20.16,20.27,20.38,20.44,20.48,20.32,N/A,N/A +2013,11,22,4,30,94390,93280,92220,92.23,0,1.16,2.56,3.2,3.87,4.49,5.08,5.63,6.15,6.84,88.11,98,104.26,108.7,112.48,115.83,118.15,120.12,121.10000000000001,19.150000000000002,19.53,19.580000000000002,19.650000000000002,19.72,19.79,19.85,19.900000000000002,19.85,N/A,N/A +2013,11,22,5,30,94440,93340,92270,90.84,0,1.69,3.65,4.43,5.09,5.63,6.1000000000000005,6.48,6.82,7.26,79.94,85.13,89.07000000000001,93.21000000000001,97.19,100.97,103.85000000000001,106.33,108.73,19.07,19.55,19.62,19.7,19.76,19.81,19.830000000000002,19.84,19.73,N/A,N/A +2013,11,22,6,30,94470,93370,92310,83.74,0,2.4,4.55,5.44,6.2,6.7700000000000005,7.22,7.55,7.82,8.22,91.66,89.43,88.76,89.63,91.15,92.98,95.07000000000001,97.02,100.02,19.48,19.71,19.75,19.76,19.76,19.740000000000002,19.7,19.66,19.490000000000002,N/A,N/A +2013,11,22,7,30,94630,93500,92400,77.56,0,10.13,12.81,13.63,14.19,14.65,15.040000000000001,15.280000000000001,15.55,16.27,35.96,36.72,37.29,37.9,38.660000000000004,39.42,39.93,40.6,43,13.56,13.19,12.99,12.790000000000001,12.59,12.41,12.21,12.030000000000001,11.77,N/A,N/A +2013,11,22,8,30,94710,93570,92460,76.47,0,10.68,13.81,14.74,15.370000000000001,15.82,16.17,16.47,16.75,17.3,37.61,37.42,37.54,37.77,38.050000000000004,38.33,38.68,39.07,40.03,11.51,11.1,10.9,10.68,10.46,10.26,10.040000000000001,9.84,9.41,N/A,N/A +2013,11,22,9,30,94900,93740,92630,69.8,0,6.12,8.33,9.16,9.78,10.25,10.63,10.94,11.22,11.67,40.9,39.95,39.730000000000004,39.63,39.6,39.58,39.62,39.67,39.84,9.96,9.53,9.31,9.1,8.870000000000001,8.67,8.45,8.25,7.83,N/A,N/A +2013,11,22,10,30,94970,93810,92690,66.44,0,7.15,9.41,10.1,10.58,10.94,11.22,11.46,11.65,11.97,38.27,37.95,37.9,37.87,37.86,37.85,37.87,37.9,38,8.52,8.09,7.88,7.67,7.45,7.25,7.04,6.84,6.43,N/A,N/A +2013,11,22,11,30,95080,93920,92780,65.98,0,6.83,8.700000000000001,9.31,9.71,10,10.24,10.41,10.56,10.790000000000001,33.12,33.4,33.7,33.97,34.2,34.410000000000004,34.62,34.83,35.24,7.32,6.9,6.69,6.48,6.26,6.07,5.8500000000000005,5.65,5.24,N/A,N/A +2013,11,22,12,30,95160,93990,92850,69.48,1.8,7.42,9.58,10.21,10.63,10.93,11.17,11.35,11.51,11.76,32.44,32.95,33.4,33.75,34.04,34.300000000000004,34.550000000000004,34.800000000000004,35.300000000000004,5.79,5.37,5.16,4.96,4.74,4.55,4.34,4.15,3.75,N/A,N/A +2013,11,22,13,30,95270,94090,92950,67.71000000000001,0,6.5,8.41,9.02,9.42,9.700000000000001,9.92,10.1,10.24,10.46,25.400000000000002,25.75,26.01,26.240000000000002,26.46,26.650000000000002,26.830000000000002,27.01,27.36,4.84,4.42,4.2,4,3.7800000000000002,3.58,3.38,3.18,2.7800000000000002,N/A,N/A +2013,11,22,14,30,95400,94210,93060,68.84,0,6.46,8.370000000000001,8.96,9.34,9.6,9.8,9.94,10.05,10.200000000000001,13.24,14.17,14.71,15.17,15.58,15.950000000000001,16.32,16.66,17.330000000000002,3.93,3.52,3.31,3.11,2.89,2.7,2.5,2.3000000000000003,1.9100000000000001,N/A,N/A +2013,11,22,15,30,95450,94270,93110,71.97,0,6.66,8.48,9.01,9.35,9.56,9.73,9.85,9.93,10.03,4.8500000000000005,5.91,6.5600000000000005,7.08,7.53,7.91,8.27,8.59,9.19,3.25,2.83,2.62,2.42,2.2,2.0100000000000002,1.81,1.61,1.22,N/A,N/A +2013,11,22,16,30,95500,94310,93150,69.5,0,6.76,8.67,9.22,9.57,9.8,9.97,10.1,10.19,10.31,9.27,9.77,10.07,10.34,10.6,10.83,11.07,11.3,11.76,2.46,2.02,1.8,1.59,1.37,1.18,0.97,0.77,0.38,N/A,N/A +2013,11,22,17,30,95510,94310,93150,70.96000000000001,0,5.74,7.390000000000001,7.88,8.2,8.42,8.59,8.72,8.82,8.97,12.34,11.65,11.34,11.1,10.870000000000001,10.66,10.450000000000001,10.26,9.89,2.22,1.8,1.58,1.3800000000000001,1.17,0.98,0.78,0.58,0.19,N/A,N/A +2013,11,22,18,30,95540,94340,93180,69.23,0,6.4,8.23,8.790000000000001,9.15,9.4,9.6,9.75,9.870000000000001,10.06,11.43,11.6,11.71,11.82,11.9,11.98,12.05,12.11,12.22,1.59,1.1500000000000001,0.9400000000000001,0.74,0.52,0.32,0.12,-0.08,-0.47000000000000003,N/A,N/A +2013,11,22,19,30,95540,94340,93180,66.68,0,6.51,8.4,8.91,9.24,9.450000000000001,9.61,9.72,9.8,9.89,1.45,2.31,2.75,3.1,3.44,3.73,4,4.2700000000000005,4.76,1.45,1.01,0.79,0.58,0.36,0.16,-0.04,-0.24,-0.64,N/A,N/A +2013,11,22,20,30,95540,94350,93180,65.97,0,6.37,8.15,8.66,8.99,9.21,9.370000000000001,9.49,9.59,9.72,1.57,2.06,2.31,2.5,2.68,2.81,2.93,3.04,3.24,1.18,0.76,0.54,0.34,0.13,-0.07,-0.27,-0.47000000000000003,-0.86,N/A,N/A +2013,11,22,21,30,95570,94380,93210,67.07000000000001,0,5.61,7.23,7.69,7.99,8.2,8.36,8.48,8.57,8.71,2.38,2.61,2.75,2.86,2.98,3.1,3.2,3.31,3.52,0.9500000000000001,0.54,0.33,0.13,-0.08,-0.28,-0.48,-0.68,-1.07,N/A,N/A +2013,11,22,22,30,95550,94350,93190,68.15,0,6.2700000000000005,8.05,8.53,8.85,9.040000000000001,9.19,9.290000000000001,9.35,9.42,357.99,358.53000000000003,358.79,359.01,359.22,359.41,359.58,359.75,0.06,0.96,0.56,0.35000000000000003,0.15,-0.07,-0.27,-0.47000000000000003,-0.67,-1.07,N/A,N/A +2013,11,22,23,30,95560,94360,93190,68.23,0,5.47,7.04,7.5,7.8100000000000005,8.01,8.16,8.28,8.38,8.53,359.94,0.41000000000000003,0.65,0.81,0.92,0.99,1.05,1.08,1.12,0.76,0.38,0.18,-0.01,-0.23,-0.43,-0.62,-0.8200000000000001,-1.21,N/A,N/A +2013,11,23,0,30,95610,94410,93240,68.29,0,5.58,7.21,7.7,8.02,8.24,8.41,8.540000000000001,8.64,8.790000000000001,0.71,1.2,1.44,1.62,1.77,1.9000000000000001,2.0100000000000002,2.12,2.32,0.6,0.22,0.01,-0.18,-0.4,-0.59,-0.79,-0.99,-1.3800000000000001,N/A,N/A +2013,11,23,1,30,95590,94390,93220,67.28,0,5.8100000000000005,7.46,7.92,8.23,8.43,8.58,8.69,8.78,8.9,359.12,359.48,359.62,359.75,359.87,359.98,0.08,0.16,0.32,0.62,0.24,0.03,-0.17,-0.38,-0.58,-0.78,-0.98,-1.3800000000000001,N/A,N/A +2013,11,23,2,30,95610,94410,93240,66.88,0,5.45,6.97,7.41,7.7,7.88,8.03,8.13,8.22,8.35,0.32,0.18,0.09,0.02,359.94,359.86,359.77,359.68,359.49,0.56,0.19,-0.01,-0.2,-0.41000000000000003,-0.61,-0.8,-1,-1.3800000000000001,N/A,N/A +2013,11,23,3,30,95620,94420,93250,66.58,0,5.4,6.9,7.34,7.62,7.82,7.97,8.08,8.16,8.3,356.92,357,357.03000000000003,357.07,357.09000000000003,357.1,357.11,357.1,357.08,0.36,-0.01,-0.21,-0.4,-0.62,-0.81,-1.01,-1.2,-1.59,N/A,N/A +2013,11,23,4,30,95640,94430,93270,68.56,0,5.0600000000000005,6.5,6.91,7.17,7.3500000000000005,7.48,7.59,7.67,7.79,0.42,0.73,0.9400000000000001,1.12,1.26,1.3800000000000001,1.48,1.57,1.72,0.43,0.06,-0.15,-0.34,-0.55,-0.75,-0.9500000000000001,-1.1500000000000001,-1.54,N/A,N/A +2013,11,23,5,30,95640,94440,93270,67.86,0,5.11,6.5600000000000005,6.99,7.26,7.45,7.59,7.69,7.78,7.9,359.03000000000003,358.86,358.8,358.75,358.7,358.64,358.59000000000003,358.54,358.46,0.39,0.02,-0.18,-0.37,-0.58,-0.78,-0.98,-1.17,-1.56,N/A,N/A +2013,11,23,6,30,95670,94470,93300,69.88,0,4.8500000000000005,6.26,6.69,6.97,7.16,7.3100000000000005,7.43,7.51,7.65,359.91,359.99,0.04,0.1,0.19,0.27,0.37,0.47000000000000003,0.68,0.42,0.06,-0.14,-0.33,-0.54,-0.74,-0.9400000000000001,-1.1400000000000001,-1.53,N/A,N/A +2013,11,23,7,30,95660,94460,93290,67.03,0,5.62,7.19,7.68,8,8.21,8.38,8.51,8.61,8.77,357.24,357.57,357.76,357.90000000000003,357.99,358.07,358.12,358.15000000000003,358.18,0.33,-0.03,-0.23,-0.42,-0.63,-0.8300000000000001,-1.02,-1.22,-1.61,N/A,N/A +2013,11,23,8,30,95670,94470,93300,72.87,0,4.66,6,6.390000000000001,6.640000000000001,6.8100000000000005,6.94,7.03,7.11,7.22,355.13,355.98,356.58,357.07,357.53000000000003,357.93,358.31,358.67,359.35,0.5,0.14,-0.06,-0.25,-0.45,-0.65,-0.84,-1.04,-1.43,N/A,N/A +2013,11,23,9,30,95660,94460,93290,69.43,0,5.03,6.43,6.8500000000000005,7.12,7.3,7.44,7.55,7.640000000000001,7.7700000000000005,357.29,357.37,357.46,357.53000000000003,357.56,357.59000000000003,357.6,357.6,357.58,0.4,0.04,-0.16,-0.35000000000000003,-0.56,-0.75,-0.9500000000000001,-1.1400000000000001,-1.53,N/A,N/A +2013,11,23,10,30,95660,94460,93290,69.19,0,5.12,6.6000000000000005,7.05,7.34,7.54,7.7,7.82,7.91,8.06,358.68,359.01,359.18,359.34000000000003,359.49,359.63,359.76,359.88,0.13,0.4,0.04,-0.16,-0.35000000000000003,-0.56,-0.76,-0.9500000000000001,-1.1500000000000001,-1.54,N/A,N/A +2013,11,23,11,30,95700,94500,93330,69.93,0,4.98,6.43,6.88,7.18,7.390000000000001,7.5600000000000005,7.68,7.79,7.96,7.08,7.19,7.2700000000000005,7.36,7.43,7.49,7.55,7.6000000000000005,7.69,0.39,0.03,-0.17,-0.36,-0.5700000000000001,-0.77,-0.97,-1.17,-1.56,N/A,N/A +2013,11,23,12,30,95700,94500,93330,69.96000000000001,0,4.95,6.36,6.78,7.07,7.26,7.41,7.53,7.63,7.78,2.91,3.17,3.29,3.39,3.5,3.6,3.68,3.7600000000000002,3.9,0.63,0.27,0.07,-0.12,-0.33,-0.53,-0.72,-0.92,-1.31,N/A,N/A +2013,11,23,13,30,95690,94480,93310,70.43,0,5.61,7.24,7.74,8.08,8.31,8.49,8.64,8.75,8.94,4.57,5.03,5.3500000000000005,5.61,5.84,6.05,6.24,6.42,6.75,0.46,0.11,-0.09,-0.28,-0.49,-0.6900000000000001,-0.88,-1.09,-1.47,N/A,N/A +2013,11,23,14,30,95780,94570,93400,72.14,1.8,4.69,6.05,6.49,6.78,6.99,7.15,7.28,7.390000000000001,7.57,2.52,2.73,2.89,3.0300000000000002,3.12,3.2,3.25,3.3000000000000003,3.35,0.48,0.14,-0.06,-0.25,-0.45,-0.64,-0.8300000000000001,-1.03,-1.41,N/A,N/A +2013,11,23,15,30,95760,94560,93390,75.16,0,5.22,6.73,7.18,7.47,7.67,7.82,7.94,8.02,8.14,6.9,7.54,7.930000000000001,8.25,8.55,8.82,9.06,9.290000000000001,9.74,0.51,0.15,-0.05,-0.24,-0.46,-0.65,-0.84,-1.04,-1.43,N/A,N/A +2013,11,23,16,30,95790,94590,93420,75.43,0,4.59,5.95,6.38,6.68,6.890000000000001,7.07,7.21,7.33,7.54,3.22,3.64,3.91,4.15,4.37,4.55,4.72,4.88,5.18,0.32,-0.04,-0.24,-0.42,-0.63,-0.81,-1.01,-1.2,-1.57,N/A,N/A +2013,11,23,17,30,95790,94580,93410,78.55,1.8,4.33,5.54,5.89,6.13,6.2700000000000005,6.38,6.45,6.51,6.58,0.85,1.1,1.23,1.34,1.45,1.54,1.6400000000000001,1.73,1.92,0.39,0.02,-0.18,-0.37,-0.58,-0.77,-0.96,-1.1500000000000001,-1.53,N/A,N/A +2013,11,23,18,30,95760,94560,93390,79.82000000000001,1.8,4.71,6.08,6.5200000000000005,6.82,7.04,7.22,7.38,7.5200000000000005,7.7700000000000005,3.75,3.7800000000000002,3.88,4,4.14,4.2700000000000005,4.42,4.58,4.92,0.37,0.01,-0.18,-0.36,-0.5700000000000001,-0.75,-0.9400000000000001,-1.1300000000000001,-1.49,N/A,N/A +2013,11,23,19,30,95760,94560,93390,80.19,1.8,4.22,5.46,5.84,6.1000000000000005,6.28,6.42,6.53,6.62,6.7700000000000005,358.03000000000003,358.65000000000003,359.01,359.32,359.63,359.92,0.19,0.46,0.99,0.64,0.27,0.07,-0.11,-0.32,-0.5,-0.6900000000000001,-0.88,-1.26,N/A,N/A +2013,11,23,20,30,95760,94560,93400,79.04,0,4.16,5.33,5.7,5.95,6.12,6.26,6.38,6.49,6.67,357.97,358.26,358.45,358.63,358.82,359.01,359.2,359.40000000000003,359.8,0.92,0.56,0.36,0.18,-0.03,-0.22,-0.41000000000000003,-0.6,-0.98,N/A,N/A +2013,11,23,21,30,95740,94540,93370,78.17,1.8,4.14,5.25,5.58,5.78,5.91,6,6.08,6.13,6.23,2.68,2.54,2.54,2.54,2.5300000000000002,2.5100000000000002,2.48,2.42,2.24,1.06,0.72,0.52,0.33,0.13,-0.06,-0.25,-0.44,-0.8200000000000001,N/A,N/A +2013,11,23,22,30,95700,94500,93330,78.27,0,4.79,6.2,6.61,6.890000000000001,7.09,7.25,7.37,7.47,7.63,355.23,355.81,356.18,356.51,356.84000000000003,357.13,357.40000000000003,357.67,358.18,1.16,0.8200000000000001,0.62,0.43,0.23,0.03,-0.16,-0.36,-0.75,N/A,N/A +2013,11,23,23,30,95710,94510,93350,78,0,4.51,5.8100000000000005,6.2,6.47,6.67,6.82,6.95,7.07,7.26,9.52,9.93,10.18,10.43,10.71,10.96,11.24,11.52,12.11,0.88,0.54,0.35000000000000003,0.16,-0.05,-0.24,-0.43,-0.62,-1.01,N/A,N/A +2013,11,24,0,30,95720,94520,93350,78.04,0,4.65,6.03,6.45,6.73,6.92,7.07,7.2,7.3,7.46,9.77,11.05,11.71,12.280000000000001,12.83,13.32,13.780000000000001,14.25,15.18,0.93,0.58,0.38,0.19,-0.02,-0.22,-0.42,-0.62,-1.01,N/A,N/A +2013,11,24,1,30,95740,94540,93370,79.07000000000001,0,4.07,5.22,5.55,5.7700000000000005,5.91,6.0200000000000005,6.09,6.15,6.22,356.97,357.92,358.38,358.78000000000003,359.15000000000003,359.48,359.79,0.09,0.65,0.92,0.58,0.38,0.2,-0.02,-0.21,-0.4,-0.6,-0.99,N/A,N/A +2013,11,24,2,30,95780,94570,93410,79.38,0,3.7800000000000002,4.9,5.26,5.51,5.69,5.83,5.95,6.05,6.23,11.68,11.56,11.53,11.51,11.51,11.51,11.51,11.51,11.53,0.59,0.25,0.06,-0.13,-0.33,-0.52,-0.71,-0.91,-1.28,N/A,N/A +2013,11,24,3,30,95800,94600,93430,81.06,0,3.49,4.49,4.8,5.01,5.15,5.26,5.34,5.41,5.53,15.39,15.52,15.620000000000001,15.73,15.870000000000001,16,16.13,16.29,16.66,0.29,-0.06,-0.25,-0.43,-0.63,-0.8200000000000001,-1.01,-1.2,-1.57,N/A,N/A +2013,11,24,4,30,95810,94600,93430,81.66,0,3.63,4.64,4.94,5.14,5.2700000000000005,5.38,5.46,5.54,5.67,11.120000000000001,11.18,11.27,11.39,11.56,11.75,11.97,12.24,12.9,0.27,-0.07,-0.27,-0.45,-0.65,-0.84,-1.03,-1.22,-1.59,N/A,N/A +2013,11,24,5,30,95810,94600,93440,82.93,1.8,3.43,4.42,4.74,4.97,5.14,5.28,5.4,5.5200000000000005,5.73,23.8,23.63,23.59,23.56,23.53,23.5,23.48,23.46,23.45,0.43,0.11,-0.08,-0.26,-0.46,-0.64,-0.8300000000000001,-1.01,-1.3800000000000001,N/A,N/A +2013,11,24,6,30,95790,94590,93420,85.08,0,3.42,4.38,4.67,4.87,5.0200000000000005,5.14,5.23,5.3100000000000005,5.46,23.94,24.12,24.18,24.25,24.29,24.32,24.330000000000002,24.35,24.400000000000002,0.51,0.18,0,-0.16,-0.36,-0.54,-0.72,-0.9,-1.27,N/A,N/A +2013,11,24,7,30,95790,94590,93420,84.72,1.8,3.14,4.0600000000000005,4.36,4.58,4.74,4.87,5,5.11,5.32,27.16,27.51,27.740000000000002,27.96,28.19,28.400000000000002,28.61,28.830000000000002,29.330000000000002,0.58,0.25,0.06,-0.12,-0.32,-0.5,-0.68,-0.87,-1.23,N/A,N/A +2013,11,24,8,30,95790,94590,93420,85.78,0,3.45,4.39,4.68,4.86,4.99,5.09,5.17,5.24,5.37,21.8,22.13,22.25,22.39,22.53,22.67,22.81,22.97,23.330000000000002,0.63,0.31,0.12,-0.06,-0.26,-0.44,-0.63,-0.81,-1.18,N/A,N/A +2013,11,24,9,30,95780,94570,93410,86.24,1.8,3.0100000000000002,3.86,4.13,4.3100000000000005,4.43,4.54,4.63,4.72,4.89,30.95,31.1,31.27,31.44,31.62,31.78,31.96,32.15,32.58,0.47000000000000003,0.15,-0.03,-0.21,-0.4,-0.58,-0.76,-0.9500000000000001,-1.3,N/A,N/A +2013,11,24,10,30,95750,94550,93380,88.11,0,3.13,3.97,4.21,4.37,4.49,4.58,4.66,4.75,4.97,29.82,31.03,31.810000000000002,32.52,33.29,34.03,34.81,35.660000000000004,37.58,0.46,0.14,-0.05,-0.23,-0.42,-0.6,-0.78,-0.96,-1.3,N/A,N/A +2013,11,24,11,30,95730,94530,93360,85.94,0,3.46,4.45,4.7700000000000005,4.98,5.14,5.26,5.36,5.44,5.58,42.230000000000004,42.58,42.82,43.09,43.38,43.660000000000004,43.96,44.27,44.910000000000004,0.76,0.44,0.26,0.07,-0.13,-0.31,-0.51,-0.6900000000000001,-1.07,N/A,N/A +2013,11,24,12,30,95710,94510,93340,80.99,0,4.39,5.6000000000000005,5.96,6.19,6.34,6.47,6.5600000000000005,6.63,6.76,54.54,54.5,54.480000000000004,54.480000000000004,54.49,54.49,54.5,54.52,54.58,0.65,0.33,0.14,-0.05,-0.25,-0.44,-0.64,-0.8300000000000001,-1.21,N/A,N/A +2013,11,24,13,30,95700,94490,93320,79.5,0,4.11,5.21,5.53,5.73,5.87,5.97,6.05,6.12,6.23,59.230000000000004,59.38,59.480000000000004,59.6,59.72,59.84,59.97,60.1,60.370000000000005,0.41000000000000003,0.09,-0.11,-0.29,-0.5,-0.6900000000000001,-0.88,-1.08,-1.46,N/A,N/A +2013,11,24,14,30,95690,94490,93320,79.91,0,3.65,4.6000000000000005,4.87,5.04,5.15,5.23,5.29,5.3500000000000005,5.44,59.79,60.04,60.24,60.44,60.67,60.88,61.09,61.33,61.81,0.25,-0.08,-0.28,-0.47000000000000003,-0.67,-0.86,-1.06,-1.26,-1.6400000000000001,N/A,N/A +2013,11,24,15,30,95660,94460,93290,80.71000000000001,0,3.31,4.13,4.38,4.5200000000000005,4.62,4.69,4.75,4.79,4.88,64.83,64.95,65.08,65.24,65.41,65.58,65.77,65.97,66.41,0.14,-0.19,-0.38,-0.5700000000000001,-0.77,-0.96,-1.16,-1.35,-1.74,N/A,N/A +2013,11,24,16,30,95640,94440,93270,82.02,0,2.7600000000000002,3.43,3.62,3.73,3.79,3.83,3.86,3.88,3.91,53.68,54.08,54.33,54.58,54.85,55.1,55.370000000000005,55.660000000000004,56.28,0.15,-0.19,-0.38,-0.5700000000000001,-0.77,-0.96,-1.16,-1.35,-1.73,N/A,N/A +2013,11,24,17,30,95550,94350,93180,82.75,1.8,3.2800000000000002,4.2,4.53,4.75,4.9,5.01,5.1000000000000005,5.17,5.3,89.84,90.29,90.63,90.74,90.69,90.61,90.49,90.35000000000001,90.05,0.29,-0.06,-0.26,-0.44,-0.64,-0.8300000000000001,-1.02,-1.21,-1.58,N/A,N/A +2013,11,24,18,30,95500,94310,93140,78.71000000000001,0,2.49,3.06,3.23,3.33,3.38,3.43,3.46,3.49,3.5300000000000002,60.14,60.7,61.120000000000005,61.51,61.9,62.26,62.63,63,63.730000000000004,0.77,0.36,0.15,-0.05,-0.26,-0.45,-0.65,-0.84,-1.23,N/A,N/A +2013,11,24,19,30,95460,94270,93100,81.85000000000001,1.8,2.47,2.92,3.02,3.0700000000000003,3.08,3.09,3.08,3.0700000000000003,3.0500000000000003,50.42,51.81,52.54,53.25,54,54.69,55.410000000000004,56.15,57.64,0.84,0.43,0.23,0.04,-0.16,-0.35000000000000003,-0.54,-0.73,-1.11,N/A,N/A +2013,11,24,20,30,95400,94210,93050,81.57000000000001,0,2.24,2.72,2.85,2.92,2.95,2.97,2.98,2.97,2.95,45.980000000000004,47.42,48.27,49.02,49.75,50.410000000000004,51.08,51.76,53.120000000000005,1.07,0.65,0.44,0.25,0.04,-0.15,-0.35000000000000003,-0.54,-0.93,N/A,N/A +2013,11,24,21,30,95350,94160,93000,78.81,0,3.09,3.7600000000000002,3.94,4.03,4.0600000000000005,4.07,4.0600000000000005,4.04,3.98,62.440000000000005,62.660000000000004,62.77,62.9,63.02,63.14,63.25,63.35,63.56,1.1300000000000001,0.72,0.52,0.32,0.11,-0.08,-0.28,-0.47000000000000003,-0.85,N/A,N/A +2013,11,24,22,30,95300,94110,92950,78.86,0,2.85,3.49,3.65,3.73,3.75,3.7600000000000002,3.75,3.72,3.65,70.77,70.99,71.15,71.3,71.44,71.58,71.72,71.85000000000001,72.12,1.04,0.68,0.48,0.29,0.08,-0.11,-0.31,-0.51,-0.89,N/A,N/A +2013,11,24,23,30,95250,94050,92890,75.01,0,2.31,2.84,2.98,3.0500000000000003,3.09,3.11,3.12,3.13,3.12,80.89,80.64,80.48,80.35000000000001,80.2,80.06,79.9,79.74,79.37,0.9400000000000001,0.61,0.42,0.23,0.03,-0.16,-0.36,-0.56,-0.9400000000000001,N/A,N/A +2013,11,25,0,30,95240,94040,92880,82.17,0,2.22,2.72,2.84,2.91,2.94,2.96,2.96,2.95,2.92,71.62,71.75,71.86,71.96000000000001,72.07000000000001,72.17,72.28,72.38,72.59,0.91,0.5700000000000001,0.37,0.19,-0.02,-0.21,-0.41000000000000003,-0.6,-0.99,N/A,N/A +2013,11,25,1,30,95200,94010,92850,79.71000000000001,0,2.42,2.99,3.14,3.21,3.25,3.27,3.27,3.27,3.2600000000000002,86.64,86.47,86.39,86.33,86.25,86.17,86.08,85.97,85.72,0.71,0.37,0.18,0,-0.21,-0.4,-0.59,-0.79,-1.17,N/A,N/A +2013,11,25,2,30,95180,93990,92830,78.89,0,1.96,2.41,2.5500000000000003,2.62,2.66,2.69,2.71,2.73,2.74,79.98,80.34,80.58,80.76,80.88,80.98,81.05,81.10000000000001,81.19,0.6900000000000001,0.36,0.17,-0.02,-0.22,-0.41000000000000003,-0.61,-0.8,-1.19,N/A,N/A +2013,11,25,3,30,95150,93950,92790,79.02,0,1.7,2.06,2.15,2.19,2.21,2.22,2.22,2.21,2.2,83.48,84.25,84.7,85.04,85.35000000000001,85.62,85.89,86.15,86.66,0.6,0.27,0.08,-0.1,-0.31,-0.49,-0.6900000000000001,-0.88,-1.26,N/A,N/A +2013,11,25,4,30,95100,93900,92740,80.34,0,1.3900000000000001,1.68,1.75,1.79,1.8,1.8,1.8,1.8,1.79,102.97,102.87,102.77,102.69,102.61,102.52,102.4,102.26,101.87,0.5700000000000001,0.24,0.05,-0.13,-0.34,-0.52,-0.72,-0.91,-1.29,N/A,N/A +2013,11,25,5,30,95060,93860,92700,80.68,0,1.81,2.21,2.32,2.37,2.39,2.4,2.39,2.38,2.36,119.89,119.95,119.89,119.74000000000001,119.53,119.32000000000001,119.07000000000001,118.8,118.14,0.59,0.25,0.07,-0.12,-0.33,-0.51,-0.71,-0.9,-1.29,N/A,N/A +2013,11,25,6,30,95030,93830,92670,79.27,0,1.58,1.9100000000000001,1.99,2.0100000000000002,2.02,2.0100000000000002,2,1.98,1.93,124.89,126.01,126.64,127.12,127.56,127.95,128.34,128.73,129.52,0.58,0.25,0.07,-0.12,-0.33,-0.51,-0.71,-0.9,-1.29,N/A,N/A +2013,11,25,7,30,94990,93790,92630,78.58,0,0.97,1.17,1.24,1.26,1.27,1.26,1.25,1.24,1.21,126,128.64000000000001,130.25,131.5,132.69,133.75,134.83,135.97,138.39000000000001,0.54,0.22,0.03,-0.15,-0.36,-0.54,-0.73,-0.93,-1.31,N/A,N/A +2013,11,25,8,30,94940,93750,92590,79.34,0,0.96,1.09,1.11,1.1,1.09,1.08,1.07,1.07,1.1,130.19,135.45,139.29,142.93,147.11,151.06,155.41,159.81,168.57,0.61,0.29,0.1,-0.08,-0.28,-0.47000000000000003,-0.66,-0.85,-1.22,N/A,N/A +2013,11,25,9,30,94880,93690,92540,79.99,0,0.65,0.7000000000000001,0.7000000000000001,0.7000000000000001,0.7000000000000001,0.71,0.72,0.74,0.79,114.42,126.35000000000001,134.45,141.75,148.94,155.39000000000001,161.85,167.86,178.6,0.77,0.45,0.26,0.08,-0.12,-0.3,-0.49,-0.68,-1.06,N/A,N/A +2013,11,25,10,30,94830,93640,92490,79.75,0,0.48,0.53,0.54,0.56,0.58,0.6,0.63,0.66,0.74,131.1,143.76,151.74,158.74,164.84,170.09,174.67000000000002,178.64000000000001,184.88,0.9,0.58,0.4,0.21,0.01,-0.18,-0.37,-0.56,-0.9400000000000001,N/A,N/A +2013,11,25,11,30,94780,93600,92440,79.56,0,1.1300000000000001,1.3900000000000001,1.47,1.5,1.5,1.5,1.49,1.47,1.44,169.51,172.79,174.83,176.44,177.98,179.37,180.79,182.23,184.92000000000002,1.09,0.77,0.58,0.39,0.19,0,-0.19,-0.39,-0.77,N/A,N/A +2013,11,25,12,30,94750,93560,92410,90.84,0,0.91,1.69,1.8900000000000001,1.99,2.0100000000000002,2.0100000000000002,1.95,1.8900000000000001,1.8,188.09,194.6,197.82,199.52,202.34,205.07,207.89000000000001,210.89000000000001,217.52,0.34,0.61,0.51,0.37,0.18,0.01,-0.18,-0.37,-0.74,N/A,N/A +2013,11,25,13,30,94730,93540,92390,96.95,0,0.31,0.4,0.46,0.61,0.79,0.96,1.11,1.23,1.41,161.99,192.96,208.6,223.07,227.19,229.08,228.70000000000002,228.38,228.93,-0.53,-0.08,-0.06,-0.07,-0.13,-0.19,-0.29,-0.42,-0.72,N/A,N/A +2013,11,25,14,30,94720,93530,92370,87.56,0,0.18,0.13,0.17,0.38,0.67,1,1.28,1.5,1.74,91.39,117.75,145.26,214.6,228.98000000000002,229.91,229.47,229.63,232.23000000000002,-0.05,-0.3,-0.38,-0.42,-0.4,-0.39,-0.39,-0.44,-0.66,N/A,N/A +2013,11,25,15,30,94720,93530,92380,80.48,0,0.54,0.8,0.96,1.08,1.2,1.31,1.42,1.53,1.76,226.71,220.4,216.59,214.17000000000002,212.71,211.67000000000002,211.29,211.3,212.75,1.48,1.1,0.9,0.72,0.54,0.37,0.2,0.03,-0.3,N/A,N/A +2013,11,25,16,30,94680,93500,92360,72.46000000000001,0,0.68,0.72,0.71,0.6900000000000001,0.67,0.66,0.65,0.65,0.66,317.75,312.19,308.35,304.67,300.25,296.06,291.3,286.32,275.99,2.92,2.49,2.27,2.07,1.87,1.69,1.5,1.31,0.9500000000000001,N/A,N/A +2013,11,25,17,30,94620,93440,92310,67.44,0,0.9500000000000001,1.08,1.1,1.1,1.11,1.11,1.12,1.1300000000000001,1.16,281.2,279.47,278.18,276.94,275.6,274.35,273.02,271.75,269.26,4.4,3.93,3.69,3.49,3.2800000000000002,3.09,2.9,2.71,2.34,N/A,N/A +2013,11,25,18,30,94600,93430,92300,62.95,0,1.87,2.22,2.31,2.35,2.37,2.38,2.39,2.4,2.41,293.72,295.05,295.83,296.39,296.89,297.33,297.73,298.12,298.88,5.99,5.47,5.23,5.01,4.8,4.61,4.41,4.22,3.83,N/A,N/A +2013,11,25,19,30,94560,93400,92270,61.76,0,1.85,2.22,2.33,2.4,2.44,2.48,2.5100000000000002,2.5300000000000002,2.58,301.40000000000003,302.72,303.55,304.15000000000003,304.69,305.15000000000003,305.59000000000003,305.98,306.68,7.140000000000001,6.62,6.38,6.16,5.95,5.75,5.55,5.36,4.98,N/A,N/A +2013,11,25,20,30,94530,93380,92260,58.36,0,3.63,4.43,4.69,4.84,4.93,5.01,5.0600000000000005,5.1000000000000005,5.16,310.39,309.73,309.34000000000003,308.96,308.6,308.27,307.92,307.59000000000003,306.93,8.700000000000001,8.14,7.890000000000001,7.67,7.45,7.25,7.05,6.8500000000000005,6.46,N/A,N/A +2013,11,25,21,30,94510,93360,92240,54.81,0,4.9,6.09,6.46,6.67,6.8,6.9,6.96,7.0200000000000005,7.08,314.57,314.45,314.36,314.24,314.08,313.93,313.76,313.59000000000003,313.22,9.290000000000001,8.77,8.540000000000001,8.32,8.11,7.91,7.7,7.51,7.11,N/A,N/A +2013,11,25,22,30,94500,93340,92230,52.09,0,5.26,6.69,7.0600000000000005,7.29,7.44,7.55,7.63,7.69,7.7700000000000005,312.54,312.49,312.42,312.31,312.19,312.08,311.94,311.82,311.56,9.27,8.870000000000001,8.67,8.48,8.27,8.08,7.88,7.68,7.29,N/A,N/A +2013,11,25,23,30,94540,93390,92280,66.62,0,1.99,4.11,5.03,5.68,6.12,6.45,6.61,6.73,6.82,316.12,315.42,314.86,314.45,314.32,314.29,314.45,314.65000000000003,315.31,8.34,8.71,8.66,8.55,8.41,8.26,8.08,7.91,7.55,N/A,N/A +2013,11,26,0,30,94550,93400,92280,75.59,0,2.24,4.73,5.51,5.82,5.84,5.78,5.61,5.42,4.97,4.05,0.24,357.47,355.09000000000003,352.47,350.16,348.17,346.62,344.59000000000003,6.78,7.8100000000000005,7.97,7.98,7.890000000000001,7.7700000000000005,7.61,7.45,7.09,N/A,N/A +2013,11,26,1,30,94590,93430,92310,71.71000000000001,0,2.64,5.47,6.57,7.3500000000000005,7.8100000000000005,8.16,8.44,8.72,9.34,332.90000000000003,335.73,336.59000000000003,335.61,334.25,332.96,332.06,331.41,330.75,6.07,7.09,7.3100000000000005,7.44,7.44,7.42,7.34,7.26,7.08,N/A,N/A +2013,11,26,2,30,94640,93480,92350,74.14,0,2.84,4.64,5.04,5.4,5.7700000000000005,6.15,6.63,7.13,8.25,325.08,330.61,332.96,333.84000000000003,334.14,334.33,334.69,335.03000000000003,335.61,5.49,6.3500000000000005,6.48,6.5,6.4,6.29,6.140000000000001,6,5.74,N/A,N/A +2013,11,26,3,30,94720,93550,92410,67.82000000000001,0,4.64,6.7,7.54,8.16,8.67,9.11,9.51,9.89,10.620000000000001,357.67,0.25,1.57,2.25,2.29,2.13,1.57,0.96,359.64,5.17,4.98,4.8100000000000005,4.64,4.43,4.24,4.03,3.8200000000000003,3.4,N/A,N/A +2013,11,26,4,30,94800,93630,92480,83.73,0,0.8,2.96,4.1,4.48,4.48,4.48,4.67,4.91,5.47,304.13,334.27,349.68,349.75,345.44,341.24,337.81,335.86,335.26,3.36,3.41,3.29,3.25,3.13,2.99,2.8000000000000003,2.6,2.2,N/A,N/A +2013,11,26,5,30,94840,93660,92510,76.69,0,5.28,7.44,8.16,8.69,9.03,9.290000000000001,9.46,9.6,9.89,335.98,335.59000000000003,335.24,334.76,333.88,332.94,331.77,330.59000000000003,328.46,2.11,2.09,2.0100000000000002,1.9100000000000001,1.78,1.6400000000000001,1.49,1.33,0.98,N/A,N/A +2013,11,26,6,30,94910,93730,92570,84.21000000000001,0,1.75,4.2700000000000005,5.45,6.3,6.88,7.32,7.63,7.88,8.3,310.27,325.61,330.90000000000003,330,327.32,324.66,322.1,320,317.16,0.89,1.2,1.11,0.99,0.87,0.76,0.62,0.47000000000000003,0.15,N/A,N/A +2013,11,26,7,30,95000,93810,92650,77.29,0,3.8000000000000003,6.16,7.21,8.16,8.96,9.65,10.23,10.71,11.47,338.78000000000003,335.02,333.24,332.01,331.3,330.78000000000003,330.48,330.35,330.43,0.11,0.07,-0.04,-0.15,-0.29,-0.44,-0.59,-0.75,-1.08,N/A,N/A +2013,11,26,8,30,95060,93860,92690,78.73,0,4.01,6.28,7.21,7.99,8.65,9.22,9.74,10.19,10.950000000000001,320.16,321.86,322.95,323.90000000000003,324.95,325.94,326.92,327.91,329.90000000000003,-1.2,-1.26,-1.3800000000000001,-1.5,-1.67,-1.83,-2,-2.18,-2.54,N/A,N/A +2013,11,26,9,30,95100,93900,92730,84.14,0,2.52,4.7700000000000005,5.69,6.46,7.07,7.6000000000000005,8.08,8.49,9.200000000000001,314.16,317.01,318.66,319.98,321.24,322.5,323.81,325.08,327.61,-1.94,-1.95,-2.08,-2.21,-2.38,-2.54,-2.7,-2.88,-3.21,N/A,N/A +2013,11,26,10,30,95140,93940,92770,88.93,0,1.73,4.41,5.74,6.92,7.87,8.700000000000001,9.42,10.05,11.09,312.41,320.71,323.83,324.83,325.12,325.33,325.46,325.58,325.82,-2.17,-2.06,-2.16,-2.2600000000000002,-2.4,-2.5300000000000002,-2.67,-2.82,-3.12,N/A,N/A +2013,11,26,11,30,95140,93940,92780,78.86,0,6.71,9.33,10.28,11.06,11.76,12.38,12.950000000000001,13.49,14.46,326.3,326.46,326.49,326.49,326.44,326.39,326.33,326.29,326.35,-1.45,-1.57,-1.68,-1.78,-1.9000000000000001,-1.99,-2.09,-2.17,-2.3000000000000003,N/A,N/A +2013,11,26,12,30,95180,93980,92810,79.37,0,4.92,7.4,8.38,9.23,9.99,10.69,11.35,11.98,13.14,317.75,319.27,320.02,320.58,320.94,321.19,321.35,321.44,321.63,-1.24,-1.29,-1.36,-1.44,-1.53,-1.62,-1.7,-1.8,-1.98,N/A,N/A +2013,11,26,13,30,95220,94020,92850,82.77,0,3.29,5.8,6.9,7.9,8.77,9.55,10.25,10.870000000000001,11.97,310.8,316.65000000000003,319.17,320.93,322,322.82,323.38,323.71,324.13,-1.52,-1.5,-1.57,-1.6500000000000001,-1.75,-1.85,-1.95,-2.05,-2.2600000000000002,N/A,N/A +2013,11,26,14,30,95290,94090,92920,75.88,0,4.43,6.95,8.02,8.89,9.57,10.18,10.74,11.26,12.200000000000001,318.93,323.90000000000003,325.69,326.71,327.23,327.7,328.14,328.57,329.45,-0.63,-0.89,-1.04,-1.17,-1.31,-1.44,-1.56,-1.69,-1.94,N/A,N/A +2013,11,26,15,30,95330,94140,92980,68.8,0,6.97,8.82,9.31,9.64,9.86,10.040000000000001,10.19,10.36,10.75,324.71,325.15000000000003,325.39,325.58,325.8,326.01,326.25,326.55,327.27,1.18,0.72,0.51,0.32,0.12,-0.07,-0.25,-0.43,-0.76,N/A,N/A +2013,11,26,16,30,95360,94170,93010,63.39,0,6.99,8.82,9.3,9.6,9.78,9.91,9.99,10.06,10.15,323.94,324.75,325.22,325.6,325.99,326.35,326.72,327.1,327.91,2.97,2.41,2.17,1.96,1.75,1.55,1.35,1.16,0.78,N/A,N/A +2013,11,26,17,30,95350,94170,93020,56.78,0,7.61,9.620000000000001,10.17,10.51,10.72,10.870000000000001,10.98,11.06,11.17,323.85,324.44,324.75,325.01,325.25,325.48,325.71,325.94,326.41,4.59,3.98,3.73,3.5100000000000002,3.2800000000000002,3.0700000000000003,2.87,2.67,2.2800000000000002,N/A,N/A +2013,11,26,18,30,95360,94180,93040,50.910000000000004,0,7.72,9.69,10.26,10.61,10.82,10.98,11.1,11.18,11.3,322.7,323.53000000000003,324,324.39,324.77,325.1,325.44,325.77,326.40000000000003,5.97,5.3500000000000005,5.1000000000000005,4.87,4.64,4.44,4.23,4.03,3.63,N/A,N/A +2013,11,26,19,30,95370,94200,93060,40.69,0,7.48,9.42,9.97,10.31,10.53,10.69,10.81,10.9,11.02,330.42,330.63,330.73,330.8,330.86,330.91,330.96,331.01,331.09000000000003,7.11,6.49,6.24,6.01,5.78,5.57,5.3500000000000005,5.15,4.74,N/A,N/A +2013,11,26,20,30,95380,94210,93070,37.550000000000004,0,6.95,8.76,9.3,9.63,9.85,10.02,10.14,10.23,10.370000000000001,331.63,331.84000000000003,331.96,332.04,332.12,332.19,332.26,332.33,332.46,7.87,7.28,7.03,6.8,6.58,6.37,6.16,5.95,5.55,N/A,N/A +2013,11,26,21,30,95370,94200,93070,34.77,0,7.18,9.09,9.64,9.98,10.200000000000001,10.370000000000001,10.49,10.59,10.72,334.27,334.34000000000003,334.36,334.36,334.35,334.34000000000003,334.33,334.32,334.29,8.28,7.78,7.55,7.33,7.11,6.91,6.7,6.5,6.1000000000000005,N/A,N/A +2013,11,26,22,30,95390,94220,93090,35.71,0,6.47,8.28,8.8,9.14,9.370000000000001,9.540000000000001,9.67,9.78,9.94,331.06,331.18,331.22,331.22,331.18,331.14,331.08,331.02,330.89,8.38,8.01,7.8100000000000005,7.62,7.41,7.22,7.0200000000000005,6.82,6.43,N/A,N/A +2013,11,26,23,30,95420,94250,93120,43.38,0,4.3,6.8500000000000005,7.73,8.39,8.85,9.23,9.5,9.74,10.1,334,334.74,334.98,335.01,334.91,334.78000000000003,334.6,334.40000000000003,333.93,7.2700000000000005,7.5,7.49,7.43,7.3,7.16,6.99,6.82,6.44,N/A,N/A +2013,11,27,0,30,95430,94260,93130,42.44,0,6.61,9.68,10.71,11.42,11.83,12.1,12.22,12.280000000000001,12.34,341.45,341.15000000000003,340.84000000000003,340.52,340.24,339.99,339.75,339.48,338.77,6.76,7.11,7.19,7.21,7.13,7.03,6.87,6.7,6.34,N/A,N/A +2013,11,27,1,30,95380,94200,93070,43.230000000000004,0,8.34,11.73,12.93,13.86,14.5,15.01,15.38,15.66,16,348.53000000000003,348.76,348.85,348.87,348.87,348.87,348.94,349.08,349.67,6.45,6.54,6.51,6.47,6.390000000000001,6.3,6.19,6.07,5.79,N/A,N/A +2013,11,27,2,30,95460,94280,93140,59.69,0,3.0300000000000002,5.17,6.11,7.2700000000000005,8.38,9.4,10.26,10.97,12.02,298.24,321.59000000000003,332.97,341.11,345.2,348.2,349.89,351.16,352.81,4.37,5.2700000000000005,5.45,5.54,5.5200000000000005,5.48,5.41,5.33,5.14,N/A,N/A +2013,11,27,3,30,95480,94300,93160,66.4,0,1.95,4.34,5.55,6.8,7.97,9.040000000000001,9.96,10.71,11.790000000000001,321.94,335.32,342.65000000000003,348.01,351.25,353.86,355.55,356.87,358.83,3.52,4.23,4.34,4.43,4.49,4.54,4.55,4.53,4.44,N/A,N/A +2013,11,27,4,30,95530,94340,93190,70.68,0,1.3900000000000001,2.3000000000000003,2.73,3.34,4.28,5.29,6.33,7.32,9.09,256.38,293.79,315.07,333.46,342.58,349.69,353.98,357.24,1.37,2.38,3.17,3.21,3.19,3.19,3.2,3.22,3.23,3.24,N/A,N/A +2013,11,27,5,30,95560,94370,93220,74.48,0,1.77,2.18,2.12,2.15,2.54,2.99,3.6,4.26,5.74,237.35,287.92,321.39,353.94,358.54,0.26,0.99,1.41,1.6600000000000001,1.96,2.72,2.9,3.08,2.94,2.81,2.71,2.62,2.49,N/A,N/A +2013,11,27,6,30,95590,94400,93250,75.08,0,1.28,2.15,2.48,2.87,3.52,4.19,4.88,5.54,6.86,300.19,326.28000000000003,345.57,6.15,8.59,9.11,8.43,8,7.76,1.6500000000000001,2.46,2.41,2.2800000000000002,2.2800000000000002,2.2800000000000002,2.2600000000000002,2.22,2.15,N/A,N/A +2013,11,27,7,30,95640,94440,93290,80.60000000000001,0,0.49,1.48,2.33,3.43,4.44,5.4,6.23,6.92,8.08,268.03000000000003,329.47,355.24,1.29,4.45,7.42,10.39,13.01,17.36,0.66,1.33,1.41,1.48,1.58,1.7,1.84,2.02,2.3000000000000003,N/A,N/A +2013,11,27,8,30,95650,94460,93300,80.5,0,1.8800000000000001,1.59,1.56,1.81,2.54,3.39,4.28,5.14,6.75,260.96,294.62,318.75,349.02,359.2,7.12,11.120000000000001,14.21,19.18,0.5700000000000001,1.58,1.6400000000000001,1.59,1.5,1.43,1.36,1.32,1.27,N/A,N/A +2013,11,27,9,30,95680,94480,93320,77.97,0,2.09,2.0100000000000002,1.97,2.24,2.59,2.99,3.59,4.12,5.05,263.79,292.97,325.71,11.24,16.19,16.82,17.64,19.36,24.07,0.8300000000000001,1.33,1.1300000000000001,0.88,0.8,0.73,0.63,0.53,0.33,N/A,N/A +2013,11,27,10,30,95680,94480,93320,78.73,0,1.99,2.58,2.3000000000000003,1.99,2.04,2.13,2.24,2.37,2.75,261.8,282.41,306.6,332.66,344.35,352.96,359.3,4.5200000000000005,13,0.18,1.09,1.1500000000000001,1.09,0.91,0.72,0.53,0.34,-0.02,N/A,N/A +2013,11,27,11,30,95680,94480,93320,77.13,0,1.21,1.72,1.76,1.83,1.9000000000000001,1.97,2.05,2.15,2.45,340.40000000000003,352.49,356.77,358.73,357.75,357.24,358.27,1.1,10.41,-0.08,0.63,0.72,0.77,0.79,0.76,0.65,0.48,0.16,N/A,N/A +2013,11,27,12,30,95690,94490,93330,81.82000000000001,0,0.41000000000000003,0.55,0.53,0.5,0.54,0.61,0.78,0.98,1.44,5.5200000000000005,37.54,53.28,64.62,48.28,33.21,19.75,12.65,9.99,-0.64,-0.08,-0.08,-0.11,-0.18,-0.22,-0.22,-0.22,-0.26,N/A,N/A +2013,11,27,13,30,95680,94470,93310,86.73,0,0.32,0.56,0.61,0.65,0.79,0.9500000000000001,1.1500000000000001,1.37,1.75,112.94,71.24,51.02,38.06,20.5,4.7,352.36,347.3,351.7,-1.76,-0.96,-0.7000000000000001,-0.49,-0.2,0.05,0.28,0.35000000000000003,0.34,N/A,N/A +2013,11,27,14,30,95660,94450,93290,78.26,0,0.37,0.81,1.1400000000000001,1.43,1.6400000000000001,1.86,2.11,2.3000000000000003,2.52,344.33,356.85,359.73,356.41,347.71,340.2,335.05,335.58,346.7,-1.31,-1.1400000000000001,-0.8,-0.39,-0.17,0.02,0.24,0.45,0.78,N/A,N/A +2013,11,27,15,30,95640,94440,93280,68.4,0,0.3,0.23,0.18,0.14,0.27,0.5,0.96,1.41,2,235.07,248,273.71,302.92,329.41,355.92,350.74,349.89,0.24,0.79,0.45,0.29,0.14,0.01,-0.04,0.08,0.43,1.12,N/A,N/A +2013,11,27,16,30,95610,94420,93270,57.050000000000004,0,0.45,0.5,0.51,0.53,0.56,0.6,0.63,0.67,0.75,247.88,234.45000000000002,225.99,218.71,212.04,206.15,200.8,195.78,186.37,3.44,3.02,2.82,2.64,2.45,2.2800000000000002,2.11,1.95,1.62,N/A,N/A +2013,11,27,17,30,95540,94360,93210,49,0,0.33,0.24,0.17,0.13,0.1,0.1,0.13,0.18,0.29,325.13,338,352.14,6.26,42.5,71.98,97.66,115.44,131.03,5.38,4.93,4.7,4.49,4.28,4.1,3.9,3.71,3.34,N/A,N/A +2013,11,27,18,30,95480,94310,93170,43.08,0,0.47000000000000003,0.61,0.67,0.7000000000000001,0.73,0.76,0.78,0.8,0.84,126,123.59,122.8,122.66,122.85000000000001,123.14,123.64,124.18,125.4,6.79,6.32,6.08,5.86,5.64,5.45,5.25,5.05,4.66,N/A,N/A +2013,11,27,19,30,95420,94250,93110,38.300000000000004,0,0.56,0.64,0.66,0.67,0.68,0.68,0.6900000000000001,0.6900000000000001,0.7000000000000001,113.14,117.02,119.49000000000001,121.64,123.62,125.36,127.09,128.67000000000002,131.65,7.930000000000001,7.45,7.21,6.99,6.7700000000000005,6.57,6.37,6.17,5.78,N/A,N/A +2013,11,27,20,30,95350,94190,93050,36.25,0,0.45,0.53,0.55,0.56,0.5700000000000001,0.58,0.59,0.59,0.6,149.29,151.08,152.36,153.47,154.5,155.42000000000002,156.37,157.22,158.74,8.72,8.24,8.01,7.79,7.57,7.37,7.16,6.96,6.57,N/A,N/A +2013,11,27,21,30,95290,94120,93000,33.86,0,0.7000000000000001,0.81,0.84,0.86,0.87,0.87,0.88,0.88,0.88,155.59,156.33,156.56,156.76,156.96,157.13,157.3,157.44,157.65,9.200000000000001,8.75,8.52,8.31,8.09,7.9,7.69,7.49,7.09,N/A,N/A +2013,11,27,22,30,95240,94080,92950,33.1,0,1.3,1.47,1.49,1.47,1.45,1.43,1.3900000000000001,1.37,1.31,197.74,197.19,197.05,197.01,196.97,196.94,196.86,196.79,196.63,9.22,8.84,8.63,8.43,8.23,8.040000000000001,7.84,7.640000000000001,7.25,N/A,N/A +2013,11,27,23,30,95210,94050,92920,43.17,0,1.42,2.3000000000000003,2.33,2.22,2.11,2.02,1.9100000000000001,1.8,1.61,179.76,177.91,177.03,176.56,176.07,175.65,175.24,174.87,174.17000000000002,8.4,8.64,8.49,8.31,8.11,7.930000000000001,7.73,7.55,7.18,N/A,N/A +2013,11,28,0,30,95210,94050,92920,43.88,0,2.86,4.34,4.32,4.09,3.79,3.5300000000000002,3.29,3.12,2.91,172.97,172.58,171.02,168.55,164.94,161.77,159.16,157.1,154.05,7.48,8.24,8.23,8.02,7.88,7.7700000000000005,7.63,7.48,7.12,N/A,N/A +2013,11,28,1,30,95200,94030,92900,45.75,0,2.21,3.63,3.83,3.92,3.95,3.96,3.95,3.95,3.97,158.23,161.19,163,164.39000000000001,165.16,165.62,165.48,164.96,163.4,7.0200000000000005,7.86,7.97,7.96,7.8500000000000005,7.73,7.55,7.36,6.97,N/A,N/A +2013,11,28,2,30,95190,94020,92890,48.07,0,2.38,3.79,4.1,4.37,4.53,4.62,4.59,4.54,4.39,127.08,139.94,147.55,153.79,158.02,161.18,162.83,163.77,163.87,6.16,6.7,6.84,6.96,7.01,7.04,7,6.93,6.69,N/A,N/A +2013,11,28,3,30,95180,94010,92880,49.21,0,2,3.5300000000000002,3.92,4.23,4.44,4.61,4.7700000000000005,4.91,5.15,135.86,148.28,154.43,157.95000000000002,159.56,160.59,160.94,161.16,161.47,5.71,6.38,6.55,6.68,6.73,6.76,6.74,6.69,6.51,N/A,N/A +2013,11,28,4,30,95160,93990,92850,47.26,0,1.99,3.62,4.15,4.63,5.03,5.36,5.59,5.7700000000000005,5.99,140,148.11,152.63,155.89000000000001,158.44,160.53,161.98,162.9,163.44,5.63,6.07,6.12,6.15,6.18,6.19,6.21,6.21,6.15,N/A,N/A +2013,11,28,5,30,95140,93970,92840,48.19,0,1.97,3.8000000000000003,4.46,5.04,5.48,5.84,6.09,6.2700000000000005,6.47,155.41,161.55,164.55,166.22,166.85,167.15,167,166.73,165.96,5.72,6.140000000000001,6.18,6.22,6.24,6.25,6.24,6.21,6.08,N/A,N/A +2013,11,28,6,30,95150,93970,92840,47.89,0,1.9000000000000001,3.71,4.4,5.03,5.53,5.95,6.2700000000000005,6.5200000000000005,6.8500000000000005,154.03,159.35,162.38,164.43,165.91,167.11,167.96,168.55,169.02,5.3100000000000005,5.69,5.71,5.71,5.71,5.71,5.71,5.7,5.66,N/A,N/A +2013,11,28,7,30,95160,93990,92850,51.32,0,1.86,3.45,4.04,4.63,5.22,5.7700000000000005,6.3100000000000005,6.7700000000000005,7.46,136.19,145.33,151.37,156.48,160.74,164.46,167.22,169.33,171.73,4.7,5.01,5.0200000000000005,5.0200000000000005,5.0200000000000005,5.0200000000000005,5.03,5.04,5.05,N/A,N/A +2013,11,28,8,30,95160,93980,92840,52.9,0,1.54,3.02,3.61,4.16,4.74,5.32,5.96,6.58,7.72,128.53,138.49,144.99,150.3,154.70000000000002,158.59,161.77,164.39000000000001,168.05,4.17,4.48,4.48,4.48,4.48,4.48,4.47,4.45,4.42,N/A,N/A +2013,11,28,9,30,95160,93980,92840,58.28,0,1.6300000000000001,3.15,3.81,4.53,5.25,5.93,6.57,7.16,8.16,127.99000000000001,140.13,146.97,151.72,154.82,157.37,159.27,160.97,163.93,3.23,3.93,4.0200000000000005,4.09,4.11,4.12,4.1,4.07,4,N/A,N/A +2013,11,28,10,30,95150,93970,92830,58.6,0,2.06,3.94,4.69,5.43,6.18,6.9,7.640000000000001,8.35,9.65,138.27,146.06,150.47,153.65,156.19,158.44,160.5,162.33,165.37,2.8000000000000003,3.48,3.5700000000000003,3.63,3.65,3.66,3.66,3.66,3.72,N/A,N/A +2013,11,28,11,30,95170,93980,92840,63.58,0,1.84,3.5100000000000002,4.2700000000000005,5.13,6,6.84,7.69,8.47,9.81,124.75,139.20000000000002,147.25,152.9,156.22,158.87,160.76,162.32,164.71,1.99,2.77,2.86,2.94,2.99,3.04,3.08,3.11,3.19,N/A,N/A +2013,11,28,12,30,95180,93990,92840,68.5,0,1.99,2.87,3.2,3.7800000000000002,4.67,5.65,6.71,7.74,9.58,105.60000000000001,117.32000000000001,127.54,140.17000000000002,147.56,153.47,156.85,159.45000000000002,163.15,1.08,1.78,1.8,1.83,1.9100000000000001,1.99,2.12,2.25,2.56,N/A,N/A +2013,11,28,13,30,95210,94010,92860,69.38,0,2.06,3.5300000000000002,3.93,4.28,4.8500000000000005,5.48,6.33,7.25,9.13,113.79,124.26,131.07,137.18,142.98,148.17000000000002,152.53,156,161.02,0.72,1.37,1.4000000000000001,1.41,1.44,1.5,1.58,1.68,1.93,N/A,N/A +2013,11,28,14,30,95240,94040,92890,63.52,0,1.03,2.57,3.37,4.04,4.7,5.3500000000000005,6.07,6.86,8.51,117.63,130.21,137.52,142.01,146.20000000000002,150.03,153.4,156.33,160.9,1.09,1.19,1.21,1.23,1.26,1.3,1.35,1.42,1.58,N/A,N/A +2013,11,28,15,30,95250,94070,92920,46.730000000000004,0,3.24,4.17,4.5200000000000005,4.76,4.97,5.15,5.3500000000000005,5.5600000000000005,6.22,151.53,153,153.98,154.84,155.75,156.6,157.5,158.35,160.3,4.18,3.7600000000000002,3.56,3.38,3.19,3.02,2.85,2.68,2.37,N/A,N/A +2013,11,28,16,30,95240,94060,92920,42.61,0,3.74,4.72,5.03,5.22,5.3500000000000005,5.45,5.5200000000000005,5.59,5.74,162.77,162.91,162.98,163.06,163.15,163.23,163.33,163.43,163.69,5.96,5.44,5.21,5,4.79,4.6000000000000005,4.41,4.22,3.85,N/A,N/A +2013,11,28,17,30,95200,94030,92900,39.59,0,4.45,5.53,5.86,6.05,6.15,6.22,6.26,6.29,6.32,167.65,167.42000000000002,167.27,167.15,167.04,166.95000000000002,166.86,166.79,166.65,7.59,7.01,6.76,6.53,6.3100000000000005,6.11,5.91,5.72,5.33,N/A,N/A +2013,11,28,18,30,95170,94010,92880,36.94,0,4.68,5.8,6.140000000000001,6.32,6.42,6.49,6.5200000000000005,6.55,6.55,165.31,165.35,165.37,165.38,165.38,165.38,165.39000000000001,165.39000000000001,165.42000000000002,9.09,8.47,8.2,7.97,7.75,7.55,7.33,7.140000000000001,6.74,N/A,N/A +2013,11,28,19,30,95150,94000,92870,35.17,0,4.92,6.08,6.42,6.6000000000000005,6.69,6.76,6.78,6.8,6.79,168.59,168.52,168.48,168.44,168.4,168.37,168.33,168.3,168.24,10.22,9.59,9.33,9.1,8.870000000000001,8.67,8.45,8.25,7.86,N/A,N/A +2013,11,28,20,30,95130,93970,92850,33.980000000000004,0,4.74,5.86,6.19,6.3500000000000005,6.45,6.51,6.53,6.55,6.54,167.77,167.62,167.53,167.44,167.36,167.29,167.22,167.15,167,11,10.4,10.15,9.92,9.69,9.49,9.28,9.08,8.68,N/A,N/A +2013,11,28,21,30,95110,93960,92840,34.06,0,4.54,5.62,5.91,6.07,6.15,6.2,6.21,6.22,6.2,164.54,164.39000000000001,164.29,164.19,164.09,163.99,163.89000000000001,163.79,163.59,11.22,10.69,10.46,10.24,10.02,9.82,9.61,9.41,9.02,N/A,N/A +2013,11,28,22,30,95110,93960,92840,35.19,0,4.59,5.73,6.03,6.2,6.28,6.33,6.34,6.34,6.3100000000000005,167.66,167.38,167.20000000000002,167.01,166.84,166.68,166.51,166.35,166,11.01,10.6,10.4,10.19,9.98,9.790000000000001,9.58,9.39,9,N/A,N/A +2013,11,28,23,30,95130,93980,92860,43.800000000000004,0,3.04,4.99,5.58,6,6.3,6.53,6.68,6.8,6.92,166.23,165.88,165.77,165.78,165.83,165.87,165.83,165.74,165.38,9.59,9.790000000000001,9.73,9.620000000000001,9.47,9.32,9.13,8.950000000000001,8.56,N/A,N/A +2013,11,29,0,30,95170,94020,92890,52.01,0,2.77,5.11,5.78,6.32,6.69,6.97,7.140000000000001,7.28,7.46,164.53,165.38,165.77,165.92000000000002,165.79,165.57,165.1,164.6,163.44,7.91,8.82,8.94,8.98,8.93,8.85,8.71,8.56,8.2,N/A,N/A +2013,11,29,1,30,95210,94050,92920,54.74,0,2.88,5.57,6.47,7.24,7.76,8.15,8.370000000000001,8.5,8.56,154.53,157.31,158.66,159.37,159.63,159.72,159.59,159.39000000000001,158.8,7.0600000000000005,8.02,8.18,8.31,8.33,8.31,8.22,8.09,7.78,N/A,N/A +2013,11,29,2,30,95250,94080,92950,58.94,0,2.63,5.24,6.23,7.12,7.9,8.58,9.11,9.51,9.92,146.29,149.25,150.78,151.71,152.59,153.39000000000001,154.14000000000001,154.79,155.74,5.99,6.97,7.16,7.3,7.37,7.4,7.37,7.3,7.08,N/A,N/A +2013,11,29,3,30,95280,94110,92980,56.63,0,2.79,5.6000000000000005,6.69,7.68,8.5,9.19,9.69,10.02,10.21,145.77,149.28,150.96,151.76,152.26,152.69,153.24,153.91,155.84,5.66,6.61,6.76,6.86,6.9,6.94,6.94,6.93,6.86,N/A,N/A +2013,11,29,4,30,95310,94130,93000,56.99,0,2.49,5.03,6.05,6.99,7.86,8.66,9.370000000000001,9.94,10.63,141.13,145.79,148.05,149.25,150.14000000000001,150.97,151.97,153.13,156.04,4.95,5.88,6,6.08,6.140000000000001,6.19,6.25,6.32,6.42,N/A,N/A +2013,11,29,5,30,95320,94150,93010,57.46,0,1.6400000000000001,4.08,5.38,6.5600000000000005,7.59,8.53,9.33,10,10.97,140.14000000000001,146.75,150.04,151.45000000000002,152.47,153.42000000000002,154.55,155.81,158.76,4.16,5.11,5.2700000000000005,5.39,5.51,5.62,5.74,5.8500000000000005,6.04,N/A,N/A +2013,11,29,6,30,95350,94170,93030,57.980000000000004,0,1.6600000000000001,3.92,5.04,6.05,6.96,7.8100000000000005,8.63,9.41,10.76,135.37,143.85,148.07,149.9,151.28,152.58,154.03,155.57,158.8,3.5300000000000002,4.45,4.59,4.71,4.83,4.94,5.0600000000000005,5.18,5.42,N/A,N/A +2013,11,29,7,30,95390,94210,93060,59.04,0,1.55,3.68,4.78,5.82,6.8,7.75,8.68,9.56,11.120000000000001,132.96,142.18,147.06,149.69,151.59,153.3,154.93,156.52,159.59,2.79,3.79,3.99,4.16,4.33,4.48,4.64,4.79,5.07,N/A,N/A +2013,11,29,8,30,95400,94210,93070,57.28,0,1.52,3.66,4.78,5.82,6.79,7.72,8.67,9.56,11.17,135.12,144.54,149.4,151.67000000000002,153.19,154.54,155.87,157.16,159.69,2.36,3.38,3.58,3.7600000000000002,3.93,4.07,4.23,4.37,4.64,N/A,N/A +2013,11,29,9,30,95400,94210,93070,58.58,0,1.03,2.85,3.93,4.92,5.9,6.86,7.8500000000000005,8.78,10.46,118.93,134.11,142.04,145.32,147.77,150,152.12,154.06,157.56,1.48,2.6,2.84,3.06,3.25,3.43,3.63,3.81,4.15,N/A,N/A +2013,11,29,10,30,95400,94210,93060,58.300000000000004,0,0.72,2.56,3.7800000000000002,4.72,5.63,6.5600000000000005,7.61,8.620000000000001,10.33,125.02,135.77,141.78,143.74,146.45000000000002,149.25,152.27,154.92000000000002,158.98,0.88,1.99,2.29,2.56,2.81,3.0300000000000002,3.2800000000000002,3.5,3.8000000000000003,N/A,N/A +2013,11,29,11,30,95420,94230,93080,57.77,0,0.39,2.05,3.41,4.39,5.68,6.9,7.72,8.53,10.07,119.7,131.98,140.18,142.96,147.55,151.75,154,156.03,159.44,0.4,1.42,1.69,1.94,2.47,2.89,3.12,3.29,3.5300000000000002,N/A,N/A +2013,11,29,12,30,95440,94240,93090,56.26,0,0.37,1.95,3.4,4.72,5.62,6.45,7.26,8.07,9.620000000000001,122.77,129.54,136.43,142.91,147.07,150.6,153.52,156.01,160.02,0.12,0.93,1.45,2.09,2.42,2.64,2.79,2.93,3.19,N/A,N/A +2013,11,29,13,30,95450,94250,93100,54.19,0,0.87,2.63,3.69,4.57,5.65,6.640000000000001,7.390000000000001,8.13,9.51,144.97,140.25,139.56,141.77,145.99,149.94,152.68,155.15,159.24,-0.11,0.97,1.29,1.53,1.92,2.23,2.42,2.56,2.79,N/A,N/A +2013,11,29,14,30,95470,94280,93120,47.95,0,0.9,2.7600000000000002,3.81,4.6000000000000005,5.3100000000000005,6.03,6.86,7.55,8.8,139.99,140.02,141.23,143.27,145.75,148.61,152.58,155.57,159.94,0.63,1.1500000000000001,1.4000000000000001,1.57,1.6600000000000001,1.77,2.0100000000000002,2.16,2.35,N/A,N/A +2013,11,29,15,30,95480,94300,93150,33.43,0,2.63,3.38,3.65,3.83,4,4.25,4.76,5.48,7.24,148.27,150.70000000000002,152.17000000000002,153.38,154.77,156.24,158.33,160.18,162.76,4.29,3.91,3.72,3.5500000000000003,3.38,3.23,3.08,2.96,2.96,N/A,N/A +2013,11,29,16,30,95470,94300,93150,29.330000000000002,0,4.05,5.09,5.42,5.62,5.76,5.87,5.98,6.1000000000000005,6.46,160.53,160.75,160.91,161.06,161.26,161.45000000000002,161.71,161.99,162.77,6.66,6.15,5.92,5.73,5.53,5.3500000000000005,5.16,4.99,4.65,N/A,N/A +2013,11,29,17,30,95430,94260,93130,30.650000000000002,0,4.67,5.84,6.19,6.390000000000001,6.51,6.59,6.640000000000001,6.69,6.76,165.74,165.84,165.89000000000001,165.93,165.99,166.04,166.09,166.15,166.31,8.38,7.8,7.5600000000000005,7.34,7.13,6.93,6.73,6.54,6.16,N/A,N/A +2013,11,29,18,30,95390,94230,93100,30.86,0,4.99,6.19,6.53,6.71,6.8100000000000005,6.88,6.91,6.93,6.95,167.69,167.45000000000002,167.3,167.18,167.06,166.96,166.86,166.77,166.59,9.81,9.200000000000001,8.950000000000001,8.72,8.5,8.3,8.1,7.9,7.5200000000000005,N/A,N/A +2013,11,29,19,30,95350,94200,93070,32.07,0,4.93,6.09,6.43,6.6000000000000005,6.7,6.76,6.79,6.8100000000000005,6.8,169.3,169.02,168.84,168.70000000000002,168.56,168.45000000000002,168.33,168.21,167.99,10.91,10.290000000000001,10.040000000000001,9.81,9.58,9.39,9.18,8.98,8.59,N/A,N/A +2013,11,29,20,30,95300,94150,93030,33.35,0,4.98,6.17,6.5200000000000005,6.7,6.8,6.87,6.9,6.92,6.92,171.62,171.13,170.83,170.58,170.35,170.14000000000001,169.94,169.74,169.34,11.96,11.370000000000001,11.120000000000001,10.89,10.67,10.47,10.26,10.06,9.67,N/A,N/A +2013,11,29,21,30,95250,94100,92990,34.56,0,4.87,6.0600000000000005,6.41,6.59,6.7,6.7700000000000005,6.8100000000000005,6.83,6.84,170.08,169.74,169.52,169.32,169.14000000000001,168.98,168.8,168.64000000000001,168.32,12.5,11.98,11.75,11.53,11.31,11.120000000000001,10.91,10.71,10.31,N/A,N/A +2013,11,29,22,30,95230,94080,92970,37.9,0,5.05,6.36,6.73,6.93,7.05,7.140000000000001,7.18,7.21,7.24,169.71,169.32,169.06,168.82,168.6,168.4,168.18,167.98,167.56,12.47,12.09,11.89,11.69,11.48,11.290000000000001,11.08,10.89,10.49,N/A,N/A +2013,11,29,23,30,95210,94060,92940,47.43,0,3.22,5.41,6.11,6.66,7.1000000000000005,7.46,7.74,7.96,8.22,171.32,170.85,170.69,170.71,170.73,170.74,170.61,170.42000000000002,169.73,10.92,11.23,11.200000000000001,11.11,10.98,10.85,10.68,10.51,10.14,N/A,N/A +2013,11,30,0,30,95200,94050,92930,49.64,0,4.05,6.62,7.47,8.120000000000001,8.55,8.88,9.05,9.17,9.290000000000001,172.69,172.07,171.71,171.44,171.14000000000001,170.85,170.43,169.97,168.83,9.92,10.42,10.49,10.51,10.44,10.370000000000001,10.23,10.08,9.74,N/A,N/A +2013,11,30,1,30,95200,94040,92920,57.88,0,3.39,6.08,7.05,7.91,8.64,9.27,9.77,10.15,10.55,166.74,166.61,166.38,166.01,165.64000000000001,165.3,165.04,164.82,164.42000000000002,8.67,9.34,9.47,9.57,9.61,9.63,9.58,9.5,9.24,N/A,N/A +2013,11,30,2,30,95210,94050,92930,57.25,0,3.66,6.44,7.53,8.5,9.3,10,10.57,11.02,11.6,155.65,158.67000000000002,160.27,161.20000000000002,161.83,162.33,162.76,163.14000000000001,163.77,8.2,8.78,8.91,9,9.05,9.07,9.05,9,8.8,N/A,N/A +2013,11,30,3,30,95220,94050,92930,65.95,0,2.94,5.8,6.87,7.87,8.81,9.67,10.46,11.14,12.120000000000001,151.34,156.3,158.87,160.46,161.57,162.49,163.27,163.98,165.34,7.19,8.1,8.25,8.370000000000001,8.46,8.540000000000001,8.6,8.63,8.59,N/A,N/A +2013,11,30,4,30,95220,94060,92930,69.91,0,2.41,4.83,5.8100000000000005,6.75,7.71,8.63,9.57,10.44,11.94,147.66,153.94,157.36,159.56,161,162.17000000000002,163.06,163.9,165.52,6.5600000000000005,7.55,7.75,7.91,8.05,8.18,8.290000000000001,8.39,8.51,N/A,N/A +2013,11,30,5,30,95210,94040,92920,75.93,0,1.46,3.49,4.57,5.64,6.72,7.79,8.870000000000001,9.9,11.69,137.53,147.20000000000002,152.59,155.42000000000002,157.57,159.48,161.1,162.59,165.12,5.66,6.73,7.0200000000000005,7.2700000000000005,7.5200000000000005,7.73,7.930000000000001,8.1,8.36,N/A,N/A +2013,11,30,6,30,95210,94040,92920,81.8,0,1.86,4.2,5.3100000000000005,6.32,7.28,8.19,9.08,9.92,11.4,137.93,148.83,154.64000000000001,157.63,159.33,160.58,161.18,161.65,162.34,5.47,6.58,6.86,7.11,7.28,7.42,7.51,7.5600000000000005,7.59,N/A,N/A +2013,11,30,7,30,95220,94050,92910,92.91,0,1.8900000000000001,3.8000000000000003,4.55,5.21,6.0200000000000005,6.8500000000000005,7.8100000000000005,8.77,10.67,130.85,137.95000000000002,142.9,147.34,151.24,154.70000000000002,157.03,158.91,161.47,4.83,5.71,5.87,6.01,6.13,6.23,6.32,6.4,6.58,N/A,N/A +2013,11,30,8,30,95200,94030,92890,107.91,0,1.44,3.29,4.11,4.72,5.58,6.49,7.390000000000001,8.32,10.28,119.18,129.15,135.65,140.23,145.63,150.84,154.04,156.78,160.81,4.34,5.25,5.43,5.57,5.7,5.82,5.99,6.17,6.5600000000000005,N/A,N/A +2013,11,30,9,30,95170,94000,92870,110,0,1.31,3.08,3.94,4.63,5.4,6.18,7.09,8.01,9.91,117.96000000000001,130.57,138.84,144.74,149.54,153.75,156.75,159.21,162.58,4.33,5.2,5.3500000000000005,5.48,5.6000000000000005,5.71,5.83,5.94,6.17,N/A,N/A +2013,11,30,10,30,95160,93990,92860,110,0,1.81,3.5700000000000003,4.32,5.11,5.93,6.73,7.55,8.33,9.81,125.62,138.42000000000002,146.53,153.1,157.49,161.03,163.3,165.16,167.76,4.07,4.93,5.08,5.2,5.29,5.36,5.41,5.45,5.5200000000000005,N/A,N/A +2013,11,30,11,30,95170,93990,92860,110,0,2.33,4.0200000000000005,4.57,5.19,5.89,6.59,7.38,8.15,9.700000000000001,129.2,142.23,150.31,157.19,161.99,165.9,168.44,170.43,172.86,3.81,4.55,4.64,4.73,4.8100000000000005,4.89,5,5.11,5.37,N/A,N/A +2013,11,30,12,30,95170,93990,92860,109.03,0,2.23,3.96,4.5600000000000005,5.18,5.8,6.4,7.03,7.640000000000001,8.76,129.88,147.04,156.38,162.98,167.43,170.96,173.3,175.1,177.26,3.8200000000000003,4.55,4.64,4.72,4.83,4.95,5.11,5.29,5.73,N/A,N/A +2013,11,30,13,30,95160,93980,92850,105.13,0,2.4,3.67,4.0200000000000005,4.37,4.84,5.3100000000000005,5.84,6.33,7.21,118.01,133.04,144.01,154.97,161.31,166.15,169.41,171.99,175.41,2.81,3.19,3.54,4.03,4.38,4.67,4.96,5.24,5.79,N/A,N/A +2013,11,30,14,30,95150,93980,92840,98.75,0,2.3000000000000003,3.34,3.88,4.49,5.01,5.49,5.94,6.3500000000000005,7.07,121.47,132.08,140.67000000000002,150.14000000000001,157.17000000000002,162.82,166.18,168.83,172.41,3.33,3.46,3.61,3.79,4.21,4.64,5.1000000000000005,5.53,6.3500000000000005,N/A,N/A +2013,11,30,15,30,95150,93970,92840,88.48,0,2.47,2.73,3.13,3.94,4.57,5.11,5.58,5.97,6.5200000000000005,119.22,127.57000000000001,136.64000000000001,150.12,156.48,160.82,163.66,166.07,169.96,4.73,4.5,4.55,4.7,5.1000000000000005,5.51,5.96,6.36,7.0600000000000005,N/A,N/A +2013,11,30,16,30,95110,93950,92830,67.03,0,3.5,4.17,4.32,4.37,4.4,4.42,4.5,4.6000000000000005,4.9,140.31,144.45000000000002,147.18,149.70000000000002,152.36,154.81,157.5,160.22,166.16,8.82,8.370000000000001,8.19,8.03,7.9,7.78,7.7,7.65,7.67,N/A,N/A +2013,11,30,17,30,95060,93910,92790,53.53,0,3.8200000000000003,4.6000000000000005,4.8100000000000005,4.89,4.9,4.88,4.84,4.8100000000000005,4.8,157.86,159.17000000000002,159.95000000000002,160.61,161.3,161.94,162.78,163.75,166.59,11.42,10.88,10.65,10.450000000000001,10.26,10.09,9.92,9.76,9.51,N/A,N/A +2013,11,30,18,30,95010,93870,92760,44.17,0,4.46,5.4,5.65,5.74,5.76,5.75,5.69,5.64,5.53,168.73,168.94,169.08,169.23,169.42000000000002,169.61,169.91,170.24,171.22,13.36,12.76,12.52,12.31,12.11,11.94,11.75,11.59,11.27,N/A,N/A +2013,11,30,19,30,94970,93830,92730,38.26,0,4.45,5.43,5.7,5.83,5.88,5.9,5.89,5.87,5.8100000000000005,166.70000000000002,166.94,167.12,167.3,167.49,167.67000000000002,167.91,168.17000000000002,168.84,14.93,14.34,14.09,13.870000000000001,13.66,13.47,13.26,13.08,12.71,N/A,N/A +2013,11,30,20,30,94910,93780,92680,37.1,0,3.93,4.82,5.07,5.19,5.25,5.28,5.28,5.28,5.23,162.65,162.53,162.46,162.41,162.36,162.32,162.28,162.25,162.20000000000002,16.13,15.57,15.33,15.1,14.89,14.700000000000001,14.49,14.3,13.91,N/A,N/A +2013,11,30,21,30,94880,93750,92660,39.03,0,4.6000000000000005,5.63,5.91,6.04,6.09,6.11,6.1000000000000005,6.07,5.99,166.62,166.73,166.8,166.87,166.94,167,167.09,167.17000000000002,167.37,16.35,15.84,15.610000000000001,15.39,15.18,14.99,14.790000000000001,14.6,14.21,N/A,N/A +2013,11,30,22,30,94830,93700,92610,47.4,0,4.36,5.44,5.73,5.88,5.96,6,6.01,6.01,5.98,171.5,171.03,170.74,170.49,170.24,170.01,169.77,169.54,169.04,15.9,15.52,15.32,15.11,14.91,14.72,14.52,14.33,13.94,N/A,N/A +2013,11,30,23,30,94830,93700,92610,62.85,0,2.5500000000000003,4.47,5,5.44,5.79,6.09,6.3,6.48,6.71,166.43,167.37,168.05,168.74,169.26,169.66,169.79,169.83,169.44,14.11,14.5,14.44,14.33,14.19,14.06,13.88,13.700000000000001,13.33,N/A,N/A +2013,12,1,0,30,94840,93700,92600,72.4,0,2.6,4.91,5.65,6.3,6.8,7.2,7.47,7.7,7.98,162.83,166.29,168.44,169.87,170.85,171.56,171.99,172.35,172.95000000000002,12.5,13.38,13.46,13.49,13.46,13.4,13.27,13.15,12.83,N/A,N/A +2013,12,1,1,30,94840,93700,92600,78.85000000000001,0,1.8900000000000001,3.79,4.5600000000000005,5.32,5.96,6.5200000000000005,6.94,7.3100000000000005,7.88,154.21,164.52,170.41,173.21,174.32,174.68,173.97,173.16,170.96,11.61,12.620000000000001,12.83,13.01,13.11,13.19,13.19,13.18,13.06,N/A,N/A +2013,12,1,2,30,94840,93700,92600,84.05,0,1.68,3.45,4.25,5.0600000000000005,5.74,6.34,6.82,7.24,7.92,151.70000000000002,156.61,159.58,161.41,162.29,162.76,163.02,163.28,164.11,10.89,11.98,12.26,12.51,12.72,12.89,12.99,13.06,13.06,N/A,N/A +2013,12,1,3,30,94840,93700,92600,90.06,0,1.79,4.15,5.34,6.36,7.22,7.98,8.58,9.120000000000001,9.93,162.03,162.95000000000002,163.47,163.63,163.74,163.82,163.99,164.27,165.70000000000002,11,12.11,12.35,12.55,12.700000000000001,12.8,12.870000000000001,12.91,12.950000000000001,N/A,N/A +2013,12,1,4,30,94820,93690,92590,98.58,0,1.99,4.58,5.88,7.03,8.03,8.93,9.72,10.44,11.53,168.1,167.76,167.5,167.31,167.09,166.87,166.82,166.86,167.51,10.98,11.950000000000001,12.1,12.25,12.38,12.48,12.57,12.65,12.73,N/A,N/A +2013,12,1,5,30,94830,93690,92590,104.73,0,1.7,3.93,5.11,6.2,7.17,8.08,8.98,9.81,11.16,149.12,156.98,161.89000000000001,163.58,164.56,165.17000000000002,165.78,166.44,168.1,10.450000000000001,11.36,11.49,11.620000000000001,11.71,11.8,11.9,11.98,12.120000000000001,N/A,N/A +2013,12,1,6,30,94820,93670,92570,106.12,0,1.51,3.39,4.3500000000000005,5.2700000000000005,6.15,6.97,7.8,8.58,9.86,145.42000000000002,151.12,155.07,157.62,159.6,161.27,162.71,164.11,166.83,9.98,10.84,10.950000000000001,11.06,11.17,11.27,11.39,11.5,11.75,N/A,N/A +2013,12,1,7,30,94820,93670,92560,102.76,0,1.23,3.12,4.19,5.08,5.91,6.71,7.44,8.15,9.6,145.84,153.23,158.11,160.27,161.94,163.37,164.42000000000002,165.44,167.4,9.43,10,10.15,10.290000000000001,10.46,10.61,10.77,10.92,11.26,N/A,N/A +2013,12,1,8,30,94800,93650,92540,103.22,0,1.24,3.18,4.26,5.07,5.79,6.42,7.07,7.67,8.86,144.45000000000002,155.26,161.86,163.96,165.55,166.87,167.88,168.75,169.99,9.38,9.81,9.88,9.950000000000001,10.02,10.08,10.17,10.26,10.450000000000001,N/A,N/A +2013,12,1,9,30,94770,93630,92520,99.84,0,2.11,3.3000000000000003,3.8200000000000003,4.38,4.89,5.36,5.87,6.37,7.390000000000001,151.21,164,170.34,172.21,173.3,174.05,174.25,174.34,173.97,10.26,10.23,10.19,10.14,10.1,10.05,10.03,10.01,10.040000000000001,N/A,N/A +2013,12,1,10,30,94740,93590,92490,99.3,0,2.2,3.24,3.63,3.93,4.2700000000000005,4.6000000000000005,4.93,5.2700000000000005,6.1000000000000005,143.46,153.4,161.16,169.11,172.78,174.77,175.72,176.4,176.56,10.16,10.07,10.01,9.93,9.84,9.74,9.63,9.55,9.44,N/A,N/A +2013,12,1,11,30,94730,93580,92470,99.48,0,1.96,2.84,3.14,3.31,3.52,3.72,3.87,4.05,4.55,164.93,170.34,173.64000000000001,176.05,177.20000000000002,177.86,178.29,178.67000000000002,179.23,9.950000000000001,9.8,9.71,9.6,9.49,9.39,9.22,9.09,8.91,N/A,N/A +2013,12,1,12,30,94710,93570,92450,99.32000000000001,0,1.3,1.9100000000000001,2.12,2.27,2.42,2.54,2.67,2.7800000000000002,3.0100000000000002,167.32,174.75,179.11,181.84,184.47,186.93,187.54,188.1,189.22,9.69,9.52,9.41,9.290000000000001,9.15,9.02,8.9,8.790000000000001,8.620000000000001,N/A,N/A +2013,12,1,13,30,94680,93540,92420,99.08,0,1.52,1.93,2.05,2.15,2.21,2.24,2.25,2.2600000000000002,2.29,179.87,181.22,181.84,182.06,182.54,183.09,184.96,186.71,190.08,9.33,9.14,9.05,8.93,8.81,8.71,8.59,8.5,8.370000000000001,N/A,N/A +2013,12,1,14,30,94680,93540,92420,98.93,0,1.61,1.93,2.0100000000000002,2.04,2.05,2.06,2.05,2.0300000000000002,2.0100000000000002,182.55,180.26,178.93,178.08,178.04,178.29,180.6,182.59,186.39000000000001,9.16,8.97,8.86,8.76,8.64,8.540000000000001,8.44,8.34,8.19,N/A,N/A +2013,12,1,15,30,94700,93550,92440,98.08,0,1.24,1.37,1.36,1.32,1.35,1.41,1.43,1.48,1.6600000000000001,189.08,187.66,186.49,185.12,184.88,185.03,186.45000000000002,187.54,188.74,9.03,8.78,8.66,8.540000000000001,8.4,8.27,8.21,8.15,8.22,N/A,N/A +2013,12,1,16,30,94680,93540,92430,87.74,0,0.13,0.18,0.22,0.31,0.4,0.48,0.58,0.6900000000000001,0.98,287.71,127.13000000000001,158.94,161.41,162.88,163.67000000000002,164.79,165.92000000000002,170.05,10.55,10.15,9.96,9.77,9.59,9.43,9.24,9.07,8.700000000000001,N/A,N/A +2013,12,1,17,30,94650,93510,92410,76.49,0,0.18,0.17,0.16,0.15,0.15,0.17,0.19,0.22,0.39,142.82,155.53,164.77,177.11,186.39000000000001,195.26,200.16,204.11,203.09,12.66,12.25,12.030000000000001,11.84,11.66,11.48,11.3,11.13,10.78,N/A,N/A +2013,12,1,18,30,94590,93460,92370,60.07,0,0.5,0.58,0.59,0.61,0.62,0.62,0.64,0.65,0.72,190.8,188.61,187.6,187.69,188.59,189.82,192.48000000000002,195.31,203.63,15.450000000000001,15.02,14.8,14.6,14.41,14.23,14.05,13.88,13.530000000000001,N/A,N/A +2013,12,1,19,30,94560,93450,92370,46.04,0,1.04,1.16,1.16,1.17,1.17,1.16,1.16,1.16,1.17,286.27,287.54,288.28000000000003,288.6,288.78000000000003,288.87,288.75,288.56,287.6,17.92,17.46,17.240000000000002,17.02,16.82,16.64,16.44,16.27,15.9,N/A,N/A +2013,12,1,20,30,94490,93380,92310,40.96,0,1.1,1.27,1.32,1.35,1.37,1.3900000000000001,1.41,1.45,1.51,253.77,255.20000000000002,256.18,257.07,257.83,258.52,259.22,259.87,261.25,19.46,19,18.78,18.57,18.38,18.19,18,17.82,17.45,N/A,N/A +2013,12,1,21,30,94430,93320,92250,40.03,0,0.5,0.62,0.67,0.71,0.75,0.8,0.84,0.9,1.09,207.76,210.53,212.99,215.32,217.53,219.76,222.05,224.28,229.34,20.68,20.28,20.07,19.86,19.67,19.490000000000002,19.3,19.12,18.76,N/A,N/A +2013,12,1,22,30,94370,93270,92200,37.76,0,0.88,1.1,1.19,1.28,1.36,1.4000000000000001,1.46,1.5,1.59,180.66,187.14000000000001,191.66,195.92000000000002,199.49,202.12,204.54,206.76,211.18,21.59,21.26,21.07,20.88,20.69,20.5,20.31,20.12,19.75,N/A,N/A +2013,12,1,23,30,94360,93260,92190,48.04,0,1.94,3.27,3.48,3.5,3.44,3.33,3.12,2.93,2.66,171.5,178.09,182.6,186.87,190.89000000000001,194.68,200.55,206.14000000000001,219.99,20.080000000000002,20.59,20.57,20.46,20.34,20.2,20.07,19.96,19.7,N/A,N/A +2013,12,2,0,30,94330,93220,92150,52.660000000000004,0,3.2600000000000002,5.32,5,3.67,3.29,3.23,3.2600000000000002,3.29,3.31,178.14000000000001,179.87,188.95000000000002,204.93,217.29,228.58,236.11,242.04,247.37,18.47,19.31,19.650000000000002,20.05,20.19,20.2,20.06,19.900000000000002,19.48,N/A,N/A +2013,12,2,1,30,94320,93210,92140,64.84,0,2.2,3.96,4.4,4.54,4.49,4.34,4.33,4.36,4.34,186.63,191.63,196.89000000000001,204.82,214.59,224.98000000000002,231.84,237.39000000000001,245.20000000000002,16.62,17.53,17.75,18,18.150000000000002,18.23,18.22,18.2,18.150000000000002,N/A,N/A +2013,12,2,2,30,94350,93230,92150,72.78,0,0.49,0.63,0.61,0.7000000000000001,0.88,1.1500000000000001,1.46,1.79,2.45,116.91,157,182.71,212.99,232.52,246.34,253.39000000000001,259.08,265.73,15.1,15.89,16.01,16,15.99,15.98,15.98,15.99,16.11,N/A,N/A +2013,12,2,3,30,94340,93230,92140,73.47,0,0.63,0.67,0.51,0.37,0.31,0.31,0.43,0.61,1.11,108.03,97.52,89.81,77.8,57.58,30.98,12.780000000000001,352.90000000000003,335,14.88,15.540000000000001,15.63,15.68,15.68,15.65,15.65,15.68,16.03,N/A,N/A +2013,12,2,4,30,94340,93220,92130,83.59,0,1.18,1.69,1.49,1.09,0.8300000000000001,0.65,0.74,0.86,1.1500000000000001,119.29,119.21000000000001,116.67,111.64,95.77,78.65,60.230000000000004,40.52,0.6,13.540000000000001,14.56,14.83,15.040000000000001,15.120000000000001,15.14,15.14,15.17,15.610000000000001,N/A,N/A +2013,12,2,5,30,94290,93160,92080,83.14,0,0.51,1.07,1.33,1.52,1.54,1.46,1.6400000000000001,1.86,2.47,247.02,248.24,248.75,248.75,249.21,249.85,253.4,257.28000000000003,266.2,12.83,13.71,13.870000000000001,13.99,14.17,14.38,14.67,14.92,15.39,N/A,N/A +2013,12,2,6,30,94300,93170,92080,90.82000000000001,0,1.72,1.92,1.52,1.11,0.88,0.74,0.92,1.18,1.83,60.29,52.19,44.01,30.46,6.05,338.09000000000003,315.72,293.54,284.87,11.43,12.17,12.33,12.5,12.700000000000001,12.93,13.31,13.69,14.52,N/A,N/A +2013,12,2,7,30,94240,93110,92020,92.10000000000001,0,0.56,0.5700000000000001,0.59,0.92,1.3800000000000001,1.97,2.38,2.7600000000000002,3.27,140.41,183.02,205.37,234.31,249.99,257.27,263.67,270.19,283.07,10.82,11.81,12.16,12.58,13.15,13.75,14.25,14.63,14.89,N/A,N/A +2013,12,2,8,30,94230,93100,92010,94.19,0,0.5700000000000001,0.85,0.8200000000000001,0.73,0.93,1.41,1.83,2.2600000000000002,3.0500000000000003,38.4,37.050000000000004,21.25,341.65000000000003,319.7,299.65000000000003,297.26,297.62,303,9.69,10.94,11.46,12.01,12.620000000000001,13.25,13.530000000000001,13.72,13.8,N/A,N/A +2013,12,2,9,30,94180,93050,91960,94.78,0,0.44,1.16,1.73,2.31,2.82,3.2800000000000002,3.64,3.99,4.88,258.42,253.14000000000001,249.94,256.83,264.05,271.32,278.46,285.18,296.06,8.63,9.8,10.44,11.49,12.3,12.96,13.23,13.42,13.83,N/A,N/A +2013,12,2,10,30,94150,93010,91910,99.33,0,0.26,0.71,0.88,0.68,0.9,1.49,2.05,2.66,3.73,49.550000000000004,34.96,8.32,331.73,312.09000000000003,290.89,291.08,293.96,302.42,7.68,9.42,10.23,10.46,10.8,11.17,11.53,11.82,12.22,N/A,N/A +2013,12,2,11,30,94130,92980,91880,97.63,0,0.19,0.24,0.3,0.61,1.04,1.57,2.17,2.86,4.3500000000000005,275.36,241.26,234.74,274.97,299.55,308.43,311.43,313.7,314.55,6.76,8.67,9.51,10,10.25,10.38,10.59,10.83,11.66,N/A,N/A +2013,12,2,12,30,94090,92940,91840,98.75,0,0.63,0.9400000000000001,1.12,1.72,2.45,3.27,4.09,4.93,6.5,218.37,242.54,260.92,286.84000000000003,300.66,306.88,309.34000000000003,311.35,312.58,5.67,7.46,8.38,9.22,9.81,10.27,10.82,11.38,12.72,N/A,N/A +2013,12,2,13,30,94050,92910,91810,87.79,0,1.59,2.59,3.08,4.32,5.38,6.2700000000000005,7.08,7.83,9.1,225.97,258.02,279.05,295.04,303.03000000000003,305.55,306.32,306.83,306.67,6.83,7.96,8.43,9.34,10.120000000000001,10.82,11.57,12.22,13.18,N/A,N/A +2013,12,2,14,30,94020,92880,91790,80.09,0,3.45,4.49,4.97,6.3100000000000005,7.44,8.39,9.05,9.61,10.5,227.22,263.15,285.47,297.77,303.99,306.03000000000003,306.24,306.07,304.21,8.01,8.94,9.66,10.65,11.44,12.11,12.66,13.13,13.85,N/A,N/A +2013,12,2,15,30,93980,92850,91760,59.980000000000004,0,2.83,3.61,4.34,5.97,7.23,8.19,9.07,9.870000000000001,11.26,264.75,280.13,289.99,297.47,300.92,301.67,301.97,302.1,301.55,11.620000000000001,11.38,11.43,11.71,11.96,12.19,12.47,12.74,13.26,N/A,N/A +2013,12,2,16,30,93940,92830,91740,44.77,0,4.07,5.19,5.8,6.47,7.1000000000000005,7.73,8.46,9.21,10.81,296.62,298.06,299.23,300.40000000000003,301.03000000000003,301.23,301.1,300.94,301.31,15.31,14.9,14.74,14.6,14.48,14.38,14.31,14.27,14.24,N/A,N/A +2013,12,2,17,30,93870,92760,91680,37.19,0,5.22,6.48,6.99,7.3,7.54,7.73,7.92,8.1,8.64,301.91,302.27,302.44,302.35,302.18,301.95,301.65000000000003,301.36,300.89,17.56,17.02,16.8,16.59,16.4,16.23,16.06,15.9,15.620000000000001,N/A,N/A +2013,12,2,18,30,93800,92700,91630,27.48,0,5.89,7.3100000000000005,7.83,8.13,8.34,8.48,8.58,8.67,8.8,301.29,301.69,301.92,301.94,301.89,301.78000000000003,301.62,301.45,301,19.97,19.39,19.150000000000002,18.92,18.71,18.52,18.32,18.14,17.78,N/A,N/A +2013,12,2,19,30,93740,92650,91590,23.72,0,4.3500000000000005,5.37,5.76,5.97,6.11,6.21,6.28,6.34,6.42,301.44,301.36,301.24,301.01,300.75,300.47,300.15000000000003,299.84000000000003,299.09000000000003,21.54,20.98,20.740000000000002,20.51,20.3,20.1,19.900000000000002,19.72,19.34,N/A,N/A +2013,12,2,20,30,93690,92600,91540,20.91,0,4.36,5.38,5.76,5.96,6.1000000000000005,6.2,6.2700000000000005,6.33,6.41,301.31,301.08,300.87,300.52,300.17,299.79,299.39,299,298.09000000000003,22.72,22.19,21.97,21.740000000000002,21.54,21.34,21.14,20.96,20.57,N/A,N/A +2013,12,2,21,30,93610,92530,91480,18.91,0,4.76,5.9,6.33,6.5600000000000005,6.74,6.87,6.96,7.04,7.15,294.29,293.88,293.6,293.25,292.90000000000003,292.55,292.17,291.81,291.05,23.82,23.39,23.2,22.98,22.78,22.580000000000002,22.38,22.19,21.81,N/A,N/A +2013,12,2,22,30,93540,92460,91410,20.46,0,2.82,4.04,4.49,4.82,5.09,5.3100000000000005,5.5,5.66,5.93,285.88,286.02,285.94,285.52,285.06,284.57,284.09000000000003,283.65000000000003,282.77,23.650000000000002,23.48,23.34,23.17,22.990000000000002,22.81,22.62,22.44,22.05,N/A,N/A +2013,12,2,23,30,93530,92440,91390,29.76,0,0.53,1.3800000000000001,1.83,2.11,2.37,2.63,2.89,3.15,3.67,276.69,285.53000000000003,291.22,291.89,292.40000000000003,292.78000000000003,292.98,293.11,293.24,21.34,23.04,23.21,23.07,22.92,22.77,22.6,22.44,22.1,N/A,N/A +2013,12,3,0,30,93530,92440,91390,31.23,0,0.65,1.1,1.17,1.22,1.32,1.43,1.68,1.98,2.73,213.86,222.11,226.96,230.29,240.1,254.37,266.34000000000003,277.94,288.93,19.29,20.91,21.11,21.35,21.62,21.900000000000002,21.93,21.91,21.62,N/A,N/A +2013,12,3,1,30,93540,92450,91390,28.62,0,2.0300000000000002,3.18,3.2600000000000002,3.2,3.19,3.23,3.45,3.73,4.86,227.67000000000002,236.31,243.99,255.16,265.53000000000003,275.8,284.15000000000003,291.77,300.11,18.85,20.53,20.56,20.44,20.330000000000002,20.22,20.16,20.13,20.330000000000002,N/A,N/A +2013,12,3,2,30,93530,92430,91370,31.810000000000002,0,1.68,2.27,2.23,2.47,2.99,3.84,4.66,5.49,6.94,221.29,242.84,259.3,282.81,295.72,302.05,303.74,304.1,302.28000000000003,17.27,18.64,18.6,18.52,18.82,19.35,19.92,20.45,21.07,N/A,N/A +2013,12,3,3,30,93540,92440,91380,31.87,0,2.11,2.04,1.8800000000000001,3.27,4.69,5.93,7.01,8.02,9.41,196.18,233.91,252.13,273.47,286.07,285.76,286.08,286.63,289.6,16.77,18,17.96,18.57,19.07,19.5,19.92,20.29,20.53,N/A,N/A +2013,12,3,4,30,93540,92440,91370,29.96,0,3.7800000000000002,5.15,5.0600000000000005,5.83,6.58,7.36,8.08,8.76,10.07,216.69,238.61,254.46,273.71,284.93,288.87,291.08,292.64,294.48,16.16,17.34,17.330000000000002,18.21,18.87,19.37,19.66,19.85,19.88,N/A,N/A +2013,12,3,5,30,93510,92410,91340,25.240000000000002,0,4.63,6.29,6.47,6.84,7.32,7.9,8.55,9.18,10.33,221.37,239.43,252.64000000000001,266.93,274.68,278.26,280.57,282.48,285.04,15.85,16.98,17.42,18.150000000000002,18.73,19.2,19.44,19.59,19.56,N/A,N/A +2013,12,3,6,30,93540,92430,91360,26.04,0,3.27,4.26,3.99,3.98,4.19,4.59,5.2700000000000005,6.03,7.4,216.04,233.44,246.08,261.92,271.57,277.53000000000003,280.40000000000003,282.51,285.97,15.18,16.76,16.78,16.78,16.86,16.98,17.28,17.6,18.06,N/A,N/A +2013,12,3,7,30,93530,92420,91350,27.580000000000002,0,2.59,3.77,3.93,4.64,5.48,6.48,7.21,7.83,8.84,235.87,254.62,266.53000000000003,274.93,278.98,279.87,280.7,281.53000000000003,284.68,13.84,15.33,15.43,15.83,16.42,17.12,17.53,17.85,18.240000000000002,N/A,N/A +2013,12,3,8,30,93490,92370,91310,30.1,0,2.84,4.49,5.01,6.07,6.88,7.53,8.2,8.85,10.22,254.4,276.53000000000003,287.2,289.85,290.92,291.11,291.49,291.87,292.62,12.5,14.85,15.700000000000001,16.69,17.29,17.69,17.94,18.14,18.47,N/A,N/A +2013,12,3,9,30,93460,92350,91280,28.2,0,2.34,3.24,3.37,3.97,4.63,5.3100000000000005,6.04,6.7700000000000005,8.31,233.92000000000002,258.06,271.23,281.01,286.98,290.81,293.2,295.14,296.51,13.31,15.63,16.19,16.75,17.05,17.21,17.43,17.63,17.97,N/A,N/A +2013,12,3,10,30,93420,92310,91240,26.12,0,2.09,2.87,2.81,2.85,3.13,3.5300000000000002,4.1,4.69,5.96,220.28,239.98000000000002,252.5,265.03000000000003,272.93,279.01,282.35,285.3,289.86,14.5,16.1,16.22,16.62,16.8,16.89,16.990000000000002,17.09,17.32,N/A,N/A +2013,12,3,11,30,93420,92300,91230,29.19,0,0.62,1.44,1.8900000000000001,2.36,2.83,3.29,3.8000000000000003,4.33,5.45,296.99,280.34000000000003,270.32,268.43,269.42,272.05,275.03000000000003,277.97,282.93,12.31,15.530000000000001,16.41,16.8,16.92,16.92,16.98,17.04,17.13,N/A,N/A +2013,12,3,12,30,93430,92310,91240,31.78,0,0.88,1.62,1.92,2.29,2.64,2.99,3.38,3.7800000000000002,4.75,213.28,235.94,252.62,265.25,274.18,280.71,284.7,288.02,291.25,10.72,13.39,14.4,15.59,16.28,16.69,16.8,16.86,17.01,N/A,N/A +2013,12,3,13,30,93410,92290,91220,32.160000000000004,0,1.17,1.93,2.15,2.5100000000000002,2.79,3.0100000000000002,3.3200000000000003,3.64,4.46,203.44,216.03,225.22,232.29,240.89000000000001,250.38,259.57,268.04,278.83,10.78,13.030000000000001,13.58,14.18,14.96,15.84,16.51,17.03,17.37,N/A,N/A +2013,12,3,14,30,93380,92270,91200,28.92,0,2.42,3.39,3.2600000000000002,3.12,3.09,3.12,3.5300000000000002,3.99,5.23,244.41,257.15,264.09000000000003,268.87,272.99,276.66,279.42,281.99,286.35,13.9,15.780000000000001,16.11,16.32,16.48,16.59,16.66,16.75,17.240000000000002,N/A,N/A +2013,12,3,15,30,93400,92290,91220,23.05,0,0.45,1.41,2.48,3.27,3.94,4.53,5.0600000000000005,5.5600000000000005,6.5200000000000005,301.05,291.37,282.29,282.17,282.67,283.54,284.24,284.91,286.38,15,15.36,15.68,16.09,16.53,16.98,17.41,17.79,18.37,N/A,N/A +2013,12,3,16,30,93370,92270,91200,22.93,0,0.2,0.46,0.74,1.37,2.23,3.34,4.04,4.69,5.83,196.20000000000002,237.84,264.49,277.19,284.86,288.3,288.77,289.03000000000003,290.7,17.26,16.98,16.88,16.8,17.01,17.34,17.57,17.76,18.1,N/A,N/A +2013,12,3,17,30,93320,92230,91170,18.400000000000002,0,0.52,0.85,1.09,1.3,1.53,1.77,2.25,2.82,4.0200000000000005,277.83,283.17,287.52,289.48,291.36,293.24,294.62,296.06,299.08,20.94,20.580000000000002,20.42,20.26,20.11,19.98,19.87,19.77,19.63,N/A,N/A +2013,12,3,18,30,93300,92220,91170,18.36,0,1,1.19,1.26,1.34,1.44,1.55,1.7,1.86,2.38,217.23000000000002,236.31,248.5,258.21,266.46,273.94,280.62,286.92,297.12,23.14,22.71,22.51,22.31,22.14,21.97,21.8,21.650000000000002,21.36,N/A,N/A +2013,12,3,19,30,93270,92200,91160,12.26,0,4.7700000000000005,5.98,6.43,6.7,6.91,7.07,7.2,7.3,7.47,283.19,283.18,283.13,283.02,282.90000000000003,282.76,282.6,282.44,282.1,26.310000000000002,25.78,25.55,25.32,25.11,24.900000000000002,24.69,24.490000000000002,24.09,N/A,N/A +2013,12,3,20,30,93230,92170,91130,12.09,0,4.36,5.38,5.76,5.98,6.13,6.26,6.3500000000000005,6.44,6.57,266.06,267.07,267.87,268.51,269.05,269.51,269.95,270.34000000000003,271.07,26.62,26.13,25.91,25.69,25.48,25.28,25.07,24.88,24.48,N/A,N/A +2013,12,3,21,30,93190,92120,91080,11.48,0,4.38,5.5200000000000005,5.91,6.15,6.33,6.46,6.57,6.66,6.8,275.59000000000003,275.62,275.68,275.59000000000003,275.48,275.35,275.19,275.03000000000003,274.7,26.990000000000002,26.580000000000002,26.39,26.17,25.97,25.78,25.580000000000002,25.39,24.990000000000002,N/A,N/A +2013,12,3,22,30,93180,92120,91080,13.42,0,2.77,4.71,5.66,6.3100000000000005,6.79,7.13,7.37,7.5600000000000005,7.82,271.1,272.74,274.04,274.82,275.40000000000003,275.79,276.09000000000003,276.34000000000003,276.67,26.400000000000002,26.43,26.38,26.240000000000002,26.09,25.92,25.740000000000002,25.560000000000002,25.17,N/A,N/A +2013,12,3,23,30,93180,92110,91070,23.28,0,1.9000000000000001,2.92,3.09,3.66,4.19,4.69,5.12,5.5200000000000005,5.57,240.27,247.17000000000002,251.98000000000002,257.4,261,263.02,264.69,266.17,270.52,23.46,25.19,25.43,25.57,25.59,25.5,25.400000000000002,25.3,25.02,N/A,N/A +2013,12,4,0,30,93190,92110,91070,26.5,0,2.67,4.5600000000000005,5.03,5.6000000000000005,6.16,6.71,7.25,7.75,8.48,241.72,254.28,260.28000000000003,263.14,264.22,264.24,263.43,262.53000000000003,261.16,21.150000000000002,22.94,23.29,23.63,23.92,24.17,24.35,24.48,24.53,N/A,N/A +2013,12,4,1,30,93240,92160,91120,29.02,0,2.98,5.45,6.12,6.5600000000000005,6.96,7.32,7.640000000000001,7.92,8.4,230.36,248.9,260.5,266.92,270.74,272.73,273.47,273.83,274.87,19.42,22.150000000000002,23.06,23.830000000000002,24.29,24.54,24.57,24.53,24.14,N/A,N/A +2013,12,4,2,30,93300,92200,91150,32.2,0,0.47000000000000003,0.81,1.06,1.83,2.64,3.41,4.16,4.93,6.46,48.86,327.91,286.74,277.48,272.54,271.97,272.68,273.67,275.32,17.82,19.490000000000002,19.71,19.78,19.88,19.98,20.14,20.3,20.85,N/A,N/A +2013,12,4,3,30,93310,92210,91160,36.27,0,0.17,0.6900000000000001,1.28,2.06,2.9,3.75,4.5200000000000005,5.28,6.5200000000000005,0.36,327.26,291.21,279.76,271.73,268.11,266.59000000000003,265.67,266.11,16.72,18.67,19.18,19.69,20.1,20.45,20.78,21.07,21.51,N/A,N/A +2013,12,4,4,30,93280,92180,91130,37.67,0,0.6,0.79,0.89,1.19,1.58,2.02,2.45,2.89,3.68,156.44,186.32,202.91,222.02,230.07,234.01,232.11,229.88,225.14000000000001,17.21,18.41,18.61,18.88,19.36,19.84,20.31,20.67,20.990000000000002,N/A,N/A +2013,12,4,5,30,93320,92220,91170,38.06,0,1.6600000000000001,2.11,1.97,1.99,2.06,2.18,2.25,2.3000000000000003,2.48,113.33,118.18,121.7,126.78,132.52,138.93,146.32,153.41,169.83,16.69,18.96,19.51,19.71,19.88,20.02,20.16,20.29,20.45,N/A,N/A +2013,12,4,6,30,93330,92230,91170,40.01,0,1.84,2.41,2.2800000000000002,2.23,2.35,2.56,2.88,3.23,4.19,157.02,173.86,186.65,203.41,215.46,225.53,229.32,231.68,229.65,16.59,18.47,18.88,19.18,19.37,19.5,19.6,19.69,19.92,N/A,N/A +2013,12,4,7,30,93360,92260,91200,45.68,0,1.48,1.07,0.77,0.66,1.03,1.94,2.62,3.29,4.45,116.19,103.87,51.370000000000005,308.68,276.02,261.42,253.3,246.12,237.51,14.88,16.19,16.59,17.2,17.98,18.77,19.240000000000002,19.59,19.91,N/A,N/A +2013,12,4,8,30,93390,92290,91230,51.550000000000004,0,2.7,2.84,2.08,1.32,0.92,0.67,1.12,1.9000000000000001,3.45,127.34,125.19,124.8,125.58,159.99,197.94,211.86,226.81,227.28,14.9,17.06,17.63,17.82,18.03,18.240000000000002,18.54,18.81,19.32,N/A,N/A +2013,12,4,9,30,93400,92290,91230,55.06,0,2.08,2.12,1.6300000000000001,1.22,1.04,0.9500000000000001,1.48,2.34,3.99,105.62,84.44,65.15,36.36,350.62,298.25,277.12,256.1,247.18,14.42,15.84,16.15,16.47,17.2,18.11,18.76,19.28,19.86,N/A,N/A +2013,12,4,10,30,93430,92320,91250,54.160000000000004,0,1.68,2.0300000000000002,1.81,1.68,1.59,1.54,1.73,1.95,2.54,29.46,27.68,25.92,23.07,7.11,346.54,327.72,309.96,285.16,12.84,14.61,15.21,15.72,16.4,17.12,17.31,17.48,18.19,N/A,N/A +2013,12,4,11,30,93430,92310,91240,57.96,0,0.78,1,0.9500000000000001,0.9500000000000001,1.03,1.16,1.29,1.41,1.72,247.86,266.03000000000003,282.59000000000003,305.5,316.03000000000003,322.01,322.17,320.29,303.67,12.65,14.57,15.19,15.65,15.98,16.25,16.580000000000002,16.91,17.7,N/A,N/A +2013,12,4,12,30,93460,92340,91270,65.63,0,0.58,1.17,1.34,1.35,1.42,1.52,1.67,1.85,2.52,291.25,265.43,255.53,263.09000000000003,272.59000000000003,282.82,284.32,284.22,278.11,11.450000000000001,13.24,14.02,14.85,15.6,16.26,16.69,17.02,17.38,N/A,N/A +2013,12,4,13,30,93480,92350,91280,69.56,0,0.5700000000000001,0.21,0.18,0.36,0.58,0.84,1.09,1.36,1.87,67.46000000000001,117.01,141.45000000000002,204.19,232.89000000000001,240.81,252.68,264.79,284.98,9.99,11.97,12.92,13.84,14.65,15.36,15.860000000000001,16.28,16.93,N/A,N/A +2013,12,4,14,30,93520,92400,91320,68.31,0,0.33,0.28,0.27,0.43,0.61,0.81,0.6,0.51,0.84,183.68,157.84,152.47,158.42000000000002,164.51,170.84,190.55,211.73000000000002,284.56,10.61,11.71,12.38,13.05,13.84,14.63,15.32,15.99,17.37,N/A,N/A +2013,12,4,15,30,93540,92420,91350,55.15,0,0.85,0.8,0.88,1.2,1.74,2.49,3.0300000000000002,3.5300000000000002,4.22,78.54,81.55,107.97,179.35,213.02,230.1,240.47,250.06,263.09000000000003,13.450000000000001,13.17,13.44,14.200000000000001,15.200000000000001,16.2,16.95,17.51,17.85,N/A,N/A +2013,12,4,16,30,93530,92420,91360,48.45,0,0.45,0.45,0.44,0.44,0.75,1.68,2.27,2.75,3.81,108.99000000000001,111.13,121.23,147.24,175.86,234.22,251.5,256.85,263.62,17.3,17,16.9,16.84,17.240000000000002,17.85,18.17,18.41,18.75,N/A,N/A +2013,12,4,17,30,93480,92400,91340,41.88,0,0.87,0.84,0.74,0.56,0.35000000000000003,0.2,0.45,1.3800000000000001,2.64,46.45,43.57,40.67,35.46,349.5,303.18,285.24,248.79,243.68,21.240000000000002,20.85,20.68,20.53,20.41,20.31,20.3,20.32,20.85,N/A,N/A +2013,12,4,18,30,93450,92370,91330,36.35,0,1.6400000000000001,2.1,2.29,2.41,2.5,2.57,2.62,2.66,2.73,219.83,220.51,220.83,221.12,221.37,221.61,221.84,222.06,222.47,24.29,23.79,23.56,23.330000000000002,23.12,22.91,22.71,22.52,22.12,N/A,N/A +2013,12,4,19,30,93430,92360,91310,34.9,0,2.09,2.49,2.64,2.71,2.77,2.82,2.86,2.9,2.98,187.43,191.31,194.02,196.52,198.71,200.79,202.79,204.67000000000002,208.26,25.25,24.740000000000002,24.5,24.27,24.07,23.86,23.66,23.47,23.080000000000002,N/A,N/A +2013,12,4,20,30,93350,92280,91240,32.09,0,1.75,2.16,2.29,2.37,2.44,2.5,2.5500000000000003,2.59,2.66,258.71,255.83,254.27,253.03,251.95000000000002,250.98000000000002,250.07,249.25,247.66,26.19,25.69,25.46,25.240000000000002,25.03,24.830000000000002,24.61,24.42,24.02,N/A,N/A +2013,12,4,21,30,93380,92310,91280,31.900000000000002,0,4.53,5.5600000000000005,5.93,6.11,6.23,6.3100000000000005,6.36,6.4,6.43,230.82,229.86,229.34,229.02,228.78,228.59,228.43,228.31,228.12,26.560000000000002,26.080000000000002,25.87,25.63,25.42,25.22,25.01,24.810000000000002,24.42,N/A,N/A +2013,12,4,22,30,93340,92280,91240,28.5,0,4.9,6.3500000000000005,6.86,7.16,7.390000000000001,7.55,7.67,7.78,7.890000000000001,257.95,257.93,257.83,257.75,257.67,257.58,257.48,257.38,257.11,26.79,26.51,26.34,26.13,25.93,25.73,25.53,25.330000000000002,24.93,N/A,N/A +2013,12,4,23,30,93380,92320,91280,41.160000000000004,0,3.6,5.64,6.34,6.84,7.28,7.7,8.11,8.51,9.23,189.25,193.45000000000002,197.24,201.46,205.14000000000001,208.70000000000002,211.71,214.33,218.1,24.28,24.87,25,24.95,24.87,24.73,24.59,24.44,24.14,N/A,N/A +2013,12,5,0,30,93390,92320,91280,40.45,0,5.11,7.55,8.4,8.950000000000001,9.33,9.57,9.71,9.790000000000001,9.83,181.63,183.96,185.67000000000002,187.04,188.26,189.4,190.65,191.86,194.86,23.61,24.22,24.46,24.61,24.66,24.61,24.5,24.36,24.05,N/A,N/A +2013,12,5,1,30,93430,92350,91310,41.35,0,4.72,7.18,8.2,9.14,9.91,10.55,10.98,11.32,11.58,165.64000000000001,169.89000000000001,173.24,176.56,179.70000000000002,182.83,186.63,190.46,199.11,22.94,23.41,23.6,23.79,23.97,24.14,24.25,24.330000000000002,24.27,N/A,N/A +2013,12,5,2,30,93470,92390,91350,42.230000000000004,0,4.5200000000000005,6.62,7.37,7.890000000000001,8.26,8.5,8.69,8.84,9.14,172.72,174.96,177.21,180.63,184.58,189.29,195.43,201.95000000000002,216.72,22.580000000000002,22.98,23.13,23.32,23.48,23.64,23.79,23.93,24.1,N/A,N/A +2013,12,5,3,30,93490,92420,91370,41.54,0,5.86,8.14,8.93,9.35,9.6,9.69,9.72,9.73,9.77,188.23,189.56,191.16,194.62,198.88,204.4,210.28,215.93,225.08,22.75,23.18,23.41,23.73,24,24.27,24.39,24.46,24.29,N/A,N/A +2013,12,5,4,30,93510,92430,91390,44.06,0,6.49,9.08,9.98,10.59,10.88,10.94,10.74,10.47,9.98,179.02,180.02,180.98,182.48,184.63,187.20000000000002,191.73000000000002,196.43,208.04,22.41,22.72,22.87,23.080000000000002,23.27,23.44,23.580000000000002,23.71,23.85,N/A,N/A +2013,12,5,5,30,93530,92450,91410,46.02,0,4.61,7.140000000000001,8.09,8.870000000000001,9.41,9.790000000000001,9.950000000000001,10.05,9.99,177.66,180.07,181.51,182.35,182.92000000000002,183.3,183.68,184.03,185.26,22.13,22.63,22.85,23.1,23.32,23.51,23.63,23.73,23.67,N/A,N/A +2013,12,5,6,30,93570,92490,91440,46.67,0,6.41,8.75,9.5,9.92,10.07,10,9.74,9.44,8.83,176.97,177.48,177.95000000000002,178.65,179.57,180.65,181.87,183.01,186.37,21.93,22.23,22.41,22.7,23.01,23.34,23.62,23.85,23.830000000000002,N/A,N/A +2013,12,5,7,30,93620,92530,91480,54.120000000000005,0,2.88,5.24,6.0600000000000005,6.7700000000000005,7.24,7.57,7.73,7.82,7.74,174.17000000000002,180.23,183.74,186.22,188.55,190.68,193.23000000000002,195.64000000000001,200.79,20.45,20.900000000000002,21.07,21.28,21.51,21.73,21.88,22,22.03,N/A,N/A +2013,12,5,8,30,93720,92630,91570,60.5,0,0.38,0.86,1.1500000000000001,1.5,1.75,1.8800000000000001,2.09,2.31,2.7600000000000002,136.76,174.36,200.3,208.70000000000002,217.35,225.63,229.17000000000002,231.34,231.77,19.06,19.61,19.7,19.76,19.77,19.77,19.71,19.64,19.5,N/A,N/A +2013,12,5,9,30,93760,92660,91600,61.88,0,0.99,1.6600000000000001,1.75,1.74,1.72,1.69,1.73,1.77,1.8,255.14000000000001,265.94,274.18,283.71,285.77,282.90000000000003,277.26,271.38,264.67,18.7,19.06,19.06,19.05,19.06,19.09,19.07,19.04,18.830000000000002,N/A,N/A +2013,12,5,10,30,93790,92680,91620,61.67,0,2.77,4.05,4.4,4.69,4.87,4.98,4.98,4.96,4.7700000000000005,0.5700000000000001,0.1,359.17,358.43,357.64,356.84000000000003,355.98,355.21,354.23,17.96,18.14,18.19,18.22,18.240000000000002,18.25,18.22,18.19,18.03,N/A,N/A +2013,12,5,11,30,93800,92690,91620,65.13,0,0.61,2.48,3.83,4.4,4.99,5.58,6.49,7.44,9.35,305.35,339.23,7.2700000000000005,16.06,20.81,23.46,24.86,26.1,28.55,16.72,16.89,16.93,16.990000000000002,17.04,17.09,17.13,17.18,17.35,N/A,N/A +2013,12,5,12,30,93900,92790,91720,55.71,0,0.75,2.43,3.85,5.28,6.640000000000001,7.890000000000001,8.94,9.93,11.67,358.71,17.77,33.69,35.09,35.6,35.31,34.51,33.67,32.6,17.17,17.36,17.3,17.240000000000002,17.19,17.150000000000002,17.09,17.04,16.87,N/A,N/A +2013,12,5,13,30,93970,92850,91760,65.94,0,7.140000000000001,9.38,10.18,10.76,11.23,11.620000000000001,11.97,12.27,12.85,32.99,32.55,32.39,32.47,32.49,32.480000000000004,32.4,32.28,31.78,14.48,14.23,14.08,13.91,13.74,13.58,13.41,13.26,12.96,N/A,N/A +2013,12,5,14,30,94050,92920,91830,75.51,0,4.75,6.3,6.88,7.32,7.67,7.96,8.19,8.4,8.73,43.12,42.54,42.21,41.99,41.78,41.6,41.43,41.33,41.13,13.030000000000001,12.700000000000001,12.51,12.31,12.11,11.93,11.72,11.53,11.1,N/A,N/A +2013,12,5,15,30,94090,92950,91840,73.9,0,6.640000000000001,8.370000000000001,8.870000000000001,9.17,9.34,9.46,9.53,9.6,9.81,38.93,39.1,39.28,39.54,39.85,40.15,40.52,40.88,41.6,10.15,9.700000000000001,9.49,9.290000000000001,9.07,8.89,8.68,8.49,8.08,N/A,N/A +2013,12,5,16,30,94160,93010,91900,66.28,0,6.63,8.15,8.6,8.83,8.94,9.01,9.02,9.01,8.93,50.620000000000005,50.620000000000005,50.7,50.83,50.99,51.15,51.34,51.53,51.97,9.58,8.97,8.72,8.49,8.26,8.06,7.86,7.66,7.2700000000000005,N/A,N/A +2013,12,5,17,30,94150,93010,91890,61.67,0,6.49,7.96,8.39,8.6,8.700000000000001,8.76,8.77,8.77,8.700000000000001,43.660000000000004,43.79,43.93,44.13,44.35,44.56,44.81,45.07,45.65,9.43,8.73,8.45,8.21,7.99,7.79,7.58,7.38,7,N/A,N/A +2013,12,5,18,30,94130,92990,91870,60.44,0,6.0200000000000005,7.37,7.75,7.95,8.040000000000001,8.09,8.1,8.09,8.02,49.26,49.57,49.81,50.08,50.36,50.620000000000005,50.92,51.22,51.870000000000005,9.36,8.75,8.5,8.27,8.06,7.86,7.65,7.45,7.0600000000000005,N/A,N/A +2013,12,5,19,30,94140,92990,91870,62.21,0,5.64,6.890000000000001,7.22,7.390000000000001,7.46,7.5,7.5,7.49,7.42,60.29,59.94,59.77,59.67,59.61,59.550000000000004,59.51,59.480000000000004,59.43,8.120000000000001,7.57,7.33,7.11,6.890000000000001,6.69,6.48,6.29,5.9,N/A,N/A +2013,12,5,20,30,94140,92980,91860,63.42,0,5.44,6.66,7.0200000000000005,7.21,7.3100000000000005,7.37,7.390000000000001,7.390000000000001,7.3500000000000005,55.13,54.92,54.84,54.83,54.86,54.88,54.94,55,55.17,7.24,6.72,6.49,6.2700000000000005,6.0600000000000005,5.86,5.65,5.46,5.0600000000000005,N/A,N/A +2013,12,5,21,30,94110,92950,91820,62.96,0,5.84,7.140000000000001,7.47,7.640000000000001,7.7,7.72,7.7,7.67,7.5600000000000005,58.79,58.6,58.52,58.49,58.480000000000004,58.480000000000004,58.49,58.51,58.58,6.12,5.62,5.39,5.18,4.97,4.7700000000000005,4.57,4.37,3.99,N/A,N/A +2013,12,5,22,30,94090,92930,91800,64.13,0,5.8100000000000005,7.15,7.48,7.65,7.72,7.75,7.74,7.71,7.61,58.51,58.39,58.36,58.36,58.4,58.44,58.5,58.58,58.78,5.0200000000000005,4.57,4.3500000000000005,4.14,3.93,3.73,3.5300000000000002,3.34,2.95,N/A,N/A +2013,12,5,23,30,94140,92970,91840,63.82,0,5.44,6.67,7.0200000000000005,7.19,7.2700000000000005,7.3100000000000005,7.3100000000000005,7.29,7.24,58.68,58.64,58.65,58.730000000000004,58.85,58.97,59.120000000000005,59.28,59.7,3.86,3.43,3.22,3.02,2.81,2.62,2.42,2.22,1.83,N/A,N/A +2013,12,6,0,30,94220,93050,91910,65.75,0,5.11,6.28,6.61,6.7700000000000005,6.84,6.88,6.87,6.8500000000000005,6.78,48.730000000000004,48.980000000000004,49.120000000000005,49.32,49.57,49.82,50.120000000000005,50.45,51.21,3.0500000000000003,2.63,2.42,2.21,2,1.81,1.61,1.41,1.02,N/A,N/A +2013,12,6,1,30,94200,93030,91880,65.35,0,4.99,6.17,6.47,6.63,6.7,6.73,6.73,6.72,6.67,44.42,44.64,44.800000000000004,44.980000000000004,45.230000000000004,45.47,45.75,46.07,46.83,2.46,2.0300000000000002,1.82,1.62,1.42,1.23,1.03,0.8300000000000001,0.44,N/A,N/A +2013,12,6,2,30,94210,93030,91890,66.12,0,4.46,5.47,5.74,5.88,5.94,5.97,5.97,5.96,5.92,53.81,54.120000000000005,54.47,54.800000000000004,55.11,55.410000000000004,55.72,56.050000000000004,56.77,2.37,1.96,1.76,1.56,1.35,1.16,0.97,0.77,0.38,N/A,N/A +2013,12,6,3,30,94240,93070,91920,66.54,0,3.73,4.55,4.74,4.82,4.86,4.86,4.86,4.83,4.79,62.45,62.660000000000004,62.81,63.050000000000004,63.4,63.76,64.17,64.63,65.71000000000001,2.19,1.79,1.59,1.3900000000000001,1.19,0.99,0.8,0.6,0.22,N/A,N/A +2013,12,6,4,30,94240,93060,91920,75.47,1.8,3.59,4.34,4.54,4.65,4.71,4.74,4.75,4.76,4.84,76.66,77.16,77.53,77.73,77.82000000000001,77.86,77.82000000000001,77.77,77.9,1.72,1.34,1.1500000000000001,0.96,0.77,0.59,0.4,0.22,-0.13,N/A,N/A +2013,12,6,5,30,94310,93130,91990,74.45,0,3.41,4.13,4.32,4.4,4.43,4.43,4.41,4.38,4.29,41.53,42.38,43.14,43.800000000000004,44.44,45.02,45.660000000000004,46.31,47.730000000000004,1.62,1.25,1.05,0.85,0.65,0.46,0.27,0.07,-0.3,N/A,N/A +2013,12,6,6,30,94360,93180,92030,76.57000000000001,0,3.6,4.43,4.68,4.8,4.87,4.9,4.92,4.92,4.9,34.230000000000004,34.7,35.03,35.39,35.82,36.22,36.660000000000004,37.14,38.18,1.3,0.91,0.71,0.51,0.31,0.12,-0.08,-0.27,-0.66,N/A,N/A +2013,12,6,7,30,94440,93260,92110,78.02,0,3.81,4.76,5.08,5.25,5.36,5.43,5.48,5.51,5.55,38.160000000000004,38.03,37.94,37.910000000000004,37.910000000000004,37.92,37.94,37.96,38.01,1.07,0.7000000000000001,0.5,0.3,0.09,-0.1,-0.29,-0.49,-0.87,N/A,N/A +2013,12,6,8,30,94430,93250,92100,79.11,0,3.96,5.01,5.3500000000000005,5.5600000000000005,5.68,5.7700000000000005,5.84,5.88,5.95,35.17,34.84,34.72,34.660000000000004,34.62,34.6,34.58,34.56,34.54,1.08,0.71,0.51,0.32,0.11,-0.08,-0.28,-0.47000000000000003,-0.85,N/A,N/A +2013,12,6,9,30,94490,93310,92160,77.99,0,3.99,4.97,5.26,5.43,5.5200000000000005,5.59,5.63,5.67,5.73,30.92,30.7,30.560000000000002,30.44,30.310000000000002,30.16,29.990000000000002,29.78,29.29,1,0.63,0.44,0.25,0.04,-0.15,-0.34,-0.53,-0.91,N/A,N/A +2013,12,6,10,30,94550,93370,92220,79.45,0,3.6,4.59,4.93,5.15,5.3,5.42,5.51,5.58,5.7,24.060000000000002,23.53,23.39,23.22,22.98,22.75,22.47,22.18,21.54,1.29,0.93,0.74,0.55,0.34,0.16,-0.04,-0.23,-0.61,N/A,N/A +2013,12,6,11,30,94690,93500,92350,78.14,0,4.98,6.25,6.62,6.83,6.96,7.0600000000000005,7.12,7.16,7.2,353.69,355.15000000000003,355.8,356.34000000000003,356.82,357.24,357.62,357.97,358.61,1.37,1.02,0.8200000000000001,0.63,0.42,0.23,0.03,-0.17,-0.55,N/A,N/A +2013,12,6,12,30,94730,93540,92380,77.04,0,5.32,6.78,7.25,7.55,7.72,7.86,7.94,8,8.040000000000001,9.53,10.6,11.200000000000001,11.63,11.96,12.24,12.47,12.68,13.07,0.97,0.61,0.4,0.2,-0.01,-0.2,-0.4,-0.6,-0.99,N/A,N/A +2013,12,6,13,30,94810,93620,92460,76.16,0,3.67,4.63,4.96,5.15,5.2700000000000005,5.36,5.41,5.45,5.5,27.72,27.51,27.560000000000002,27.53,27.41,27.27,27.080000000000002,26.86,26.36,0.23,-0.14,-0.34,-0.54,-0.74,-0.93,-1.1300000000000001,-1.33,-1.71,N/A,N/A +2013,12,6,14,30,94890,93690,92530,78.98,0,3.71,4.68,5.0200000000000005,5.22,5.3500000000000005,5.45,5.5200000000000005,5.58,5.65,26.64,25.85,25.35,24.92,24.45,23.990000000000002,23.48,22.97,21.89,0.16,-0.2,-0.4,-0.59,-0.79,-0.98,-1.17,-1.36,-1.73,N/A,N/A +2013,12,6,15,30,94960,93760,92610,75.63,0,4.33,5.43,5.8,6.0200000000000005,6.15,6.24,6.3100000000000005,6.3500000000000005,6.4,28.78,28.07,27.62,27.25,26.900000000000002,26.57,26.23,25.88,25.17,0.18,-0.21,-0.41000000000000003,-0.61,-0.8200000000000001,-1.01,-1.2,-1.4000000000000001,-1.78,N/A,N/A +2013,12,6,16,30,95000,93800,92640,72.02,0,4.75,5.91,6.28,6.48,6.6000000000000005,6.67,6.71,6.74,6.75,21.95,21.400000000000002,21.07,20.8,20.55,20.31,20.07,19.81,19.28,0.09,-0.36,-0.5700000000000001,-0.77,-0.99,-1.18,-1.3800000000000001,-1.58,-1.96,N/A,N/A +2013,12,6,17,30,95050,93850,92690,69.32000000000001,0,4.57,5.66,6,6.19,6.3,6.37,6.42,6.45,6.48,30.41,29.51,28.98,28.54,28.11,27.72,27.330000000000002,26.93,26.1,-0.12,-0.62,-0.85,-1.05,-1.27,-1.47,-1.6600000000000001,-1.86,-2.25,N/A,N/A +2013,12,6,18,30,95080,93890,92720,67.52,0,4.4,5.42,5.76,5.95,6.07,6.16,6.21,6.25,6.3,24.18,23.79,23.52,23.3,23.09,22.900000000000002,22.7,22.5,22.09,0.1,-0.44,-0.6900000000000001,-0.91,-1.1300000000000001,-1.33,-1.53,-1.73,-2.12,N/A,N/A +2013,12,6,19,30,95090,93900,92740,65.34,0,4.41,5.4,5.71,5.87,5.95,6.0200000000000005,6.05,6.0600000000000005,6.07,24.97,24.67,24.44,24.26,24.080000000000002,23.92,23.75,23.57,23.21,0.36,-0.21,-0.46,-0.6900000000000001,-0.91,-1.11,-1.31,-1.51,-1.9000000000000001,N/A,N/A +2013,12,6,20,30,95110,93910,92750,62.370000000000005,0,4.45,5.45,5.74,5.89,5.97,6.0200000000000005,6.05,6.0600000000000005,6.0600000000000005,33.17,32.160000000000004,31.560000000000002,31.080000000000002,30.62,30.2,29.76,29.32,28.43,0.25,-0.32,-0.56,-0.78,-1,-1.2,-1.4000000000000001,-1.59,-1.98,N/A,N/A +2013,12,6,21,30,95140,93940,92780,63.04,0,4.39,5.4,5.7,5.86,5.95,6.01,6.04,6.0600000000000005,6.08,33.24,32.43,31.93,31.54,31.16,30.810000000000002,30.46,30.1,29.38,0.35000000000000003,-0.18,-0.41000000000000003,-0.63,-0.85,-1.05,-1.25,-1.45,-1.83,N/A,N/A +2013,12,6,22,30,95150,93950,92790,63.35,0,4.21,5.26,5.57,5.74,5.8500000000000005,5.92,5.97,6,6.03,27.91,27.72,27.6,27.51,27.42,27.32,27.23,27.13,26.900000000000002,0.06,-0.38,-0.59,-0.8,-1.01,-1.2,-1.4000000000000001,-1.6,-1.99,N/A,N/A +2013,12,6,23,30,95210,94010,92840,66.2,0,3.5300000000000002,4.6000000000000005,4.95,5.19,5.34,5.46,5.53,5.59,5.66,31.62,31.220000000000002,30.96,30.78,30.61,30.46,30.3,30.150000000000002,29.82,-0.16,-0.44,-0.62,-0.81,-1.02,-1.21,-1.41,-1.61,-2.0100000000000002,N/A,N/A +2013,12,7,0,30,95280,94070,92910,67.79,0,3.16,4.28,4.68,4.97,5.18,5.34,5.47,5.57,5.72,41.84,41.300000000000004,40.93,40.660000000000004,40.39,40.13,39.87,39.6,39.050000000000004,-0.53,-0.79,-0.96,-1.1500000000000001,-1.35,-1.54,-1.74,-1.94,-2.34,N/A,N/A +2013,12,7,1,30,95340,94130,92960,68.67,0,3.8200000000000003,5.08,5.5200000000000005,5.84,6.09,6.29,6.46,6.6000000000000005,6.8500000000000005,37.550000000000004,36.93,36.65,36.44,36.28,36.160000000000004,36.050000000000004,35.99,35.92,-1.09,-1.36,-1.55,-1.74,-1.95,-2.14,-2.35,-2.5500000000000003,-2.96,N/A,N/A +2013,12,7,2,30,95390,94180,93010,72.55,0,3.91,4.99,5.3100000000000005,5.5200000000000005,5.65,5.76,5.83,5.89,5.97,49.51,48.76,48.32,47.97,47.660000000000004,47.38,47.12,46.86,46.42,-1.7,-2,-2.19,-2.38,-2.58,-2.7800000000000002,-2.98,-3.18,-3.58,N/A,N/A +2013,12,7,3,30,95450,94240,93060,70.60000000000001,0,3.9,5.08,5.47,5.73,5.91,6.05,6.16,6.24,6.36,39.75,39.57,39.56,39.57,39.6,39.63,39.67,39.72,39.86,-2.45,-2.72,-2.91,-3.09,-3.3000000000000003,-3.49,-3.69,-3.89,-4.29,N/A,N/A +2013,12,7,4,30,95450,94240,93060,72.13,0,3.77,4.84,5.16,5.37,5.5,5.6000000000000005,5.67,5.73,5.8,37.550000000000004,37.82,38.04,38.26,38.480000000000004,38.68,38.89,39.13,39.62,-2.91,-3.2,-3.39,-3.58,-3.79,-3.98,-4.18,-4.38,-4.7700000000000005,N/A,N/A +2013,12,7,5,30,95470,94260,93080,72.95,0,4.11,5.22,5.54,5.74,5.8500000000000005,5.94,5.99,6.0200000000000005,6.05,36.53,36.74,36.92,37.1,37.33,37.54,37.77,38.03,38.59,-3.4,-3.71,-3.91,-4.09,-4.3,-4.5,-4.7,-4.9,-5.29,N/A,N/A +2013,12,7,6,30,95500,94280,93090,71.12,0,3.8200000000000003,4.8100000000000005,5.11,5.28,5.38,5.46,5.51,5.54,5.57,36.730000000000004,37.06,37.32,37.58,37.84,38.08,38.34,38.6,39.17,-3.88,-4.21,-4.4,-4.59,-4.8,-4.99,-5.19,-5.39,-5.78,N/A,N/A +2013,12,7,7,30,95530,94310,93130,70.66,0,3.74,4.68,4.96,5.12,5.21,5.28,5.32,5.34,5.37,41.58,41.980000000000004,42.28,42.58,42.9,43.2,43.5,43.83,44.49,-4.19,-4.53,-4.73,-4.92,-5.13,-5.32,-5.5200000000000005,-5.72,-6.11,N/A,N/A +2013,12,7,8,30,95550,94330,93140,71.19,0,3.7800000000000002,4.68,4.93,5.07,5.14,5.18,5.2,5.2,5.19,43.61,44.230000000000004,44.7,45.12,45.550000000000004,45.94,46.33,46.74,47.550000000000004,-4.38,-4.74,-4.94,-5.13,-5.34,-5.54,-5.73,-5.93,-6.32,N/A,N/A +2013,12,7,9,30,95540,94320,93130,71.34,0,3.74,4.64,4.89,5.0200000000000005,5.08,5.12,5.14,5.14,5.11,32.13,32.92,33.480000000000004,33.99,34.54,35.050000000000004,35.550000000000004,36.09,37.18,-4.68,-5.04,-5.24,-5.43,-5.64,-5.84,-6.03,-6.23,-6.62,N/A,N/A +2013,12,7,10,30,95520,94300,93110,70.60000000000001,0,3.81,4.72,4.99,5.15,5.23,5.29,5.33,5.3500000000000005,5.36,36.81,37.29,37.64,37.96,38.29,38.6,38.9,39.22,39.86,-4.7,-5.11,-5.32,-5.5200000000000005,-5.73,-5.93,-6.12,-6.33,-6.72,N/A,N/A +2013,12,7,11,30,95510,94280,93100,69.7,0,3.7800000000000002,4.69,4.97,5.12,5.2,5.26,5.3,5.32,5.33,35.12,35.4,35.64,35.86,36.1,36.32,36.54,36.77,37.230000000000004,-4.8100000000000005,-5.22,-5.43,-5.63,-5.84,-6.04,-6.24,-6.44,-6.83,N/A,N/A +2013,12,7,12,30,95520,94290,93100,68.27,0,3.96,4.9,5.18,5.33,5.4,5.46,5.48,5.49,5.49,37.58,38.01,38.31,38.6,38.92,39.21,39.51,39.82,40.46,-5.0200000000000005,-5.42,-5.64,-5.83,-6.04,-6.24,-6.44,-6.640000000000001,-7.03,N/A,N/A +2013,12,7,13,30,95500,94280,93090,65.18,0,4.29,5.3100000000000005,5.61,5.76,5.84,5.9,5.92,5.93,5.91,40.44,40.83,41.08,41.300000000000004,41.54,41.76,41.980000000000004,42.22,42.7,-5.28,-5.69,-5.9,-6.1000000000000005,-6.32,-6.51,-6.71,-6.9,-7.3,N/A,N/A +2013,12,7,14,30,95500,94280,93090,63.74,0,4.21,5.22,5.51,5.66,5.74,5.8,5.82,5.83,5.82,44.03,44.26,44.44,44.61,44.800000000000004,44.980000000000004,45.17,45.37,45.79,-5.36,-5.76,-5.98,-6.17,-6.390000000000001,-6.58,-6.78,-6.98,-7.37,N/A,N/A +2013,12,7,15,30,95480,94250,93060,63.95,0,4.0200000000000005,4.95,5.23,5.38,5.45,5.5,5.5200000000000005,5.53,5.5200000000000005,46.96,47.01,47.06,47.14,47.230000000000004,47.31,47.39,47.480000000000004,47.68,-5.36,-5.7700000000000005,-5.98,-6.18,-6.390000000000001,-6.58,-6.78,-6.98,-7.37,N/A,N/A +2013,12,7,16,30,95450,94220,93030,62.32,0,3.87,4.75,5,5.12,5.18,5.21,5.22,5.22,5.19,45.03,45.47,45.81,46.12,46.45,46.75,47.06,47.39,48.08,-5.41,-5.83,-6.04,-6.24,-6.46,-6.65,-6.8500000000000005,-7.05,-7.43,N/A,N/A +2013,12,7,17,30,95380,94160,92970,60.45,0,3.52,4.3100000000000005,4.5200000000000005,4.64,4.68,4.72,4.73,4.72,4.7,42.660000000000004,43.4,43.92,44.37,44.85,45.28,45.71,46.18,47.12,-5.39,-5.82,-6.03,-6.23,-6.44,-6.640000000000001,-6.83,-7.03,-7.41,N/A,N/A +2013,12,7,18,30,95330,94110,92920,59.93,0,3.33,4.0600000000000005,4.26,4.37,4.42,4.45,4.46,4.46,4.44,45.39,46.26,46.88,47.42,48,48.53,49.06,49.620000000000005,50.75,-5.13,-5.57,-5.8,-6,-6.21,-6.4,-6.6000000000000005,-6.8,-7.19,N/A,N/A +2013,12,7,19,30,95260,94040,92860,59,0,3.02,3.66,3.84,3.93,3.98,4,4.01,4.01,3.99,43.84,44.97,45.730000000000004,46.37,47.02,47.61,48.19,48.79,49.97,-4.79,-5.24,-5.47,-5.67,-5.88,-6.08,-6.28,-6.47,-6.86,N/A,N/A +2013,12,7,20,30,95190,93980,92790,58.54,0,3,3.61,3.7800000000000002,3.87,3.9,3.92,3.92,3.91,3.88,47.21,48.24,48.93,49.54,50.13,50.68,51.24,51.800000000000004,52.93,-4.49,-4.95,-5.17,-5.38,-5.59,-5.79,-5.98,-6.18,-6.57,N/A,N/A +2013,12,7,21,30,95110,93900,92720,57.980000000000004,0,2.79,3.35,3.5,3.58,3.61,3.63,3.63,3.62,3.59,54.95,55.67,56.160000000000004,56.58,57.02,57.410000000000004,57.800000000000004,58.2,59.01,-4.16,-4.63,-4.86,-5.07,-5.28,-5.48,-5.68,-5.88,-6.26,N/A,N/A +2013,12,7,22,30,95060,93850,92670,58.94,0,2.69,3.24,3.39,3.47,3.5,3.5100000000000002,3.5100000000000002,3.5,3.47,47.050000000000004,48.71,49.82,50.74,51.65,52.47,53.29,54.1,55.7,-4.12,-4.54,-4.75,-4.95,-5.16,-5.3500000000000005,-5.54,-5.74,-6.13,N/A,N/A +2013,12,7,23,30,95030,93820,92640,60.85,0,2.54,3.08,3.23,3.3000000000000003,3.3200000000000003,3.33,3.3200000000000003,3.31,3.25,61.980000000000004,62.34,62.56,62.800000000000004,63.04,63.26,63.49,63.74,64.25,-4.25,-4.59,-4.78,-4.97,-5.18,-5.37,-5.57,-5.7700000000000005,-6.15,N/A,N/A +2013,12,8,0,30,95000,93780,92600,61.83,0,2.42,2.98,3.12,3.19,3.2,3.21,3.2,3.17,3.11,67.03,66.78,66.61,66.46000000000001,66.31,66.17,66.01,65.85,65.48,-4.57,-4.88,-5.0600000000000005,-5.25,-5.46,-5.64,-5.84,-6.04,-6.42,N/A,N/A +2013,12,8,1,30,94970,93750,92570,64.31,0,1.92,2.68,2.92,3.08,3.15,3.19,3.19,3.2,3.13,103.68,102.24000000000001,101.24000000000001,100.33,99.54,98.84,98.17,97.35000000000001,96.47,-4.96,-5.19,-5.37,-5.54,-5.74,-5.93,-6.12,-6.32,-6.66,N/A,N/A +2013,12,8,2,30,94940,93720,92540,68.67,0,0.9400000000000001,1.7,1.92,2.09,2.17,2.25,2.35,2.47,2.69,79.54,80.14,80,79.60000000000001,78.44,77.26,75.96000000000001,75.3,77.38,-5.33,-5.41,-5.5600000000000005,-5.71,-5.9,-6.09,-6.29,-6.5,-6.890000000000001,N/A,N/A +2013,12,8,3,30,94910,93700,92510,69.9,0,0.96,1.72,1.94,2.1,2.18,2.2600000000000002,2.37,2.5300000000000002,2.87,94.03,93.26,92.18,91.19,89.94,88.82000000000001,87.79,87.37,91.10000000000001,-5.47,-5.55,-5.68,-5.84,-6.05,-6.26,-6.47,-6.69,-7.05,N/A,N/A +2013,12,8,4,30,94850,93630,92450,70.95,0,0.86,1.75,2,2.12,2.39,2.69,3.0500000000000003,3.19,3.2600000000000002,111.07000000000001,110.06,108.99000000000001,107.84,104.92,102.43,100.31,100.91,105.61,-5.6000000000000005,-5.71,-5.91,-6.13,-6.38,-6.58,-6.71,-6.74,-6.7700000000000005,N/A,N/A +2013,12,8,5,30,94800,93580,92400,69.53,0,1.4000000000000001,2.2600000000000002,2.5100000000000002,2.66,2.9,3.15,3.44,3.66,3.96,118.89,121.85000000000001,123.62,124.95,123.29,121.67,120.29,120.9,125.07000000000001,-5.65,-5.8,-5.96,-6.15,-6.36,-6.54,-6.67,-6.75,-6.82,N/A,N/A +2013,12,8,6,30,94770,93550,92370,70.07000000000001,0,1.73,2.75,3.06,3.23,3.49,3.75,4.03,4.32,4.84,117.8,123.7,126.92,129.02,131.71,133.99,135.84,137.77,141.78,-5.63,-5.76,-5.92,-6.1000000000000005,-6.26,-6.4,-6.51,-6.58,-6.65,N/A,N/A +2013,12,8,7,30,94720,93500,92320,72.5,0,1.49,2.65,3.09,3.45,3.79,4.11,4.44,4.7700000000000005,5.3500000000000005,121.02,131.32,137.43,141.87,145.47,148.47,150.83,152.69,155.65,-5.63,-5.68,-5.7700000000000005,-5.87,-5.99,-6.1000000000000005,-6.21,-6.3100000000000005,-6.46,N/A,N/A +2013,12,8,8,30,94690,93480,92300,71.4,0,2.2600000000000002,3.48,3.98,4.4,4.75,5.05,5.32,5.57,6.01,131.41,138.70000000000002,143.45000000000002,146.96,149.53,151.63,153.28,154.73,157.5,-5.22,-5.24,-5.33,-5.43,-5.5600000000000005,-5.68,-5.8100000000000005,-5.93,-6.13,N/A,N/A +2013,12,8,9,30,94590,93380,92210,72.43,0,1.94,3.31,3.77,4.13,4.4,4.65,4.89,5.15,5.74,154.58,157.21,158.95000000000002,160.39000000000001,161.83,163.31,164.98,167.18,172.72,-5.08,-5.1000000000000005,-5.23,-5.36,-5.5,-5.62,-5.71,-5.75,-5.72,N/A,N/A +2013,12,8,10,30,94560,93350,92180,73.81,0,2.08,3.5,4.01,4.44,4.82,5.16,5.5,5.82,6.38,157.16,160.08,162.21,163.94,165.71,167.6,169.93,172.72,178.84,-5.1000000000000005,-5.05,-5.14,-5.23,-5.32,-5.39,-5.42,-5.4,-5.28,N/A,N/A +2013,12,8,11,30,94500,93290,92120,76.67,0,1.29,2.61,3.18,3.71,4.17,4.57,4.94,5.21,5.63,157.23,165.58,170.36,173.68,176.46,179.22,182.16,184.89000000000001,189.59,-5.21,-4.99,-5.01,-5.04,-5.04,-5.03,-4.99,-4.93,-4.8100000000000005,N/A,N/A +2013,12,8,12,30,94480,93280,92110,75.63,0,1.95,3.59,4.2,4.72,5.12,5.46,5.73,5.96,6.3100000000000005,154.1,158.95000000000002,161.86,163.95000000000002,166.3,168.73,171.5,174.57,180.5,-4.88,-4.6000000000000005,-4.64,-4.7,-4.73,-4.75,-4.73,-4.66,-4.42,N/A,N/A +2013,12,8,13,30,94440,93230,92060,76.48,0,1.3,2.8000000000000003,3.45,4.03,4.5200000000000005,4.95,5.34,5.64,6.12,158.21,164.01,167.36,169.74,171.93,174.07,176.25,178.71,183.77,-4.78,-4.48,-4.5,-4.53,-4.53,-4.5200000000000005,-4.46,-4.34,-3.97,N/A,N/A +2013,12,8,14,30,94410,93210,92040,66.75,0,1.42,2.61,3.2800000000000002,3.89,4.42,4.87,5.26,5.5600000000000005,6.03,171.94,175.74,178.14000000000001,179.96,181.82,183.76,185.83,188.22,193.18,-3.91,-3.97,-3.99,-4.01,-3.94,-3.85,-3.71,-3.5300000000000002,-3.08,N/A,N/A +2013,12,8,15,30,94410,93220,92060,55.17,0,2.22,2.7600000000000002,2.92,3.0100000000000002,3.1,3.21,3.38,3.58,4.26,182.91,183.58,184.13,184.8,185.84,186.9,188.09,190.57,196.74,-1.3,-1.71,-1.9100000000000001,-2.08,-2.27,-2.43,-2.58,-2.69,-2.68,N/A,N/A +2013,12,8,16,30,94410,93220,92070,48.67,0,1.83,2.22,2.34,2.4,2.44,2.45,2.47,2.46,2.46,178.14000000000001,178.76,179.21,179.65,180.20000000000002,180.76,181.4,182.28,184.07,0.89,0.43,0.21,0.01,-0.19,-0.37,-0.56,-0.75,-1.12,N/A,N/A +2013,12,8,17,30,94370,93200,92050,45.12,0,1.46,1.78,1.87,1.93,1.95,1.97,1.99,2,2.02,186.93,186.35,186.26,186.4,186.78,187.20000000000002,187.75,188.36,189.99,3.18,2.71,2.48,2.2800000000000002,2.08,1.8900000000000001,1.7,1.52,1.1500000000000001,N/A,N/A +2013,12,8,18,30,94320,93160,92030,41.15,0,1.48,1.76,1.84,1.87,1.8900000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,1.9000000000000001,175.06,177.83,179.70000000000002,181.41,183.27,185,186.97,188.9,192.96,5.49,5.01,4.7700000000000005,4.57,4.37,4.18,3.99,3.8000000000000003,3.43,N/A,N/A +2013,12,8,19,30,94300,93140,92020,39.58,0,1.3900000000000001,1.6300000000000001,1.69,1.71,1.72,1.72,1.72,1.71,1.71,162.42000000000002,166.55,169.44,172,174.56,176.92000000000002,179.59,182.17000000000002,187.59,7.66,7.19,6.97,6.76,6.55,6.37,6.17,5.98,5.61,N/A,N/A +2013,12,8,20,30,94260,93110,92000,38.17,0,1.1,1.25,1.27,1.27,1.26,1.25,1.24,1.23,1.22,155.37,160.42000000000002,164.03,167.38,170.78,173.96,177.56,180.93,188.09,9.09,8.65,8.43,8.22,8.02,7.84,7.640000000000001,7.45,7.07,N/A,N/A +2013,12,8,21,30,94240,93090,91970,38.36,0,2.2,2.49,2.52,2.48,2.4,2.33,2.22,2.11,1.9000000000000001,152.47,155.35,157.42000000000002,159.38,161.43,163.31,165.77,168.18,173.96,9.48,9.040000000000001,8.82,8.620000000000001,8.42,8.24,8.05,7.87,7.51,N/A,N/A +2013,12,8,22,30,94210,93060,91950,40.96,0,2.54,2.93,2.98,2.92,2.81,2.69,2.5,2.3000000000000003,1.87,151.24,152,152.45000000000002,152.81,153.28,153.74,154.6,155.81,161.53,9.05,8.69,8.51,8.32,8.13,7.96,7.78,7.62,7.3100000000000005,N/A,N/A +2013,12,8,23,30,94200,93050,91940,55.32,0,2.25,3.44,3.02,2.16,1.67,1.36,1.1500000000000001,0.99,0.75,177.54,178.81,181.46,185.16,190.4,195.01,201.78,207.1,206.86,7.26,8.25,8.45,8.63,8.68,8.700000000000001,8.63,8.55,8.31,N/A,N/A +2013,12,9,0,30,94230,93080,91970,54.410000000000004,0,0.51,0.55,0.56,0.72,0.68,0.59,0.5,0.45,0.49,160.21,61.82,29.5,24.84,32.31,42.160000000000004,64.86,85.81,133.1,7.15,8.1,8.040000000000001,7.97,8,8.07,8.21,8.3,8.33,N/A,N/A +2013,12,9,1,30,94250,93090,91970,56.660000000000004,0,2.09,1.76,1.32,1.06,0.96,0.93,1,1.1500000000000001,1.6400000000000001,170.67000000000002,163.68,159.72,155.88,155.02,155.84,165.56,173.28,176.70000000000002,6.49,7.68,7.66,7.48,7.26,7.08,7.07,7.18,7.65,N/A,N/A +2013,12,9,2,30,94280,93120,92000,63.45,0,1.84,3.13,3.35,3.39,3.3000000000000003,3.18,2.99,2.82,2.49,147.02,151.70000000000002,154.14000000000001,155.4,156.91,158.33,160.17000000000002,162.51,168.65,4.68,6.05,6.38,6.67,6.88,7.05,7.18,7.2700000000000005,7.3500000000000005,N/A,N/A +2013,12,9,3,30,94310,93140,92020,65.07000000000001,0,1.33,2.21,2.43,2.61,2.75,2.86,2.91,2.95,3,169.6,160.99,155.63,152.07,151.01,150.93,152.67000000000002,154.76,160.42000000000002,4.19,5.3100000000000005,5.43,5.5,5.5600000000000005,5.6000000000000005,5.67,5.74,5.91,N/A,N/A +2013,12,9,4,30,94280,93110,91990,69.71000000000001,0,1.24,2.08,2.3000000000000003,2.5,2.68,2.84,3,3.16,3.48,167.39000000000001,157.6,153.44,151.88,153.26,155.23,158.20000000000002,160.97,165.74,3.3200000000000003,4.43,4.61,4.75,4.87,4.98,5.1000000000000005,5.22,5.46,N/A,N/A +2013,12,9,5,30,94290,93110,91980,75.13,0,0.46,1.08,1.4000000000000001,1.68,1.98,2.27,2.57,2.88,3.5100000000000002,87.77,114.48,129.52,137.73,144.42000000000002,150.18,154.32,157.55,161.59,1.95,3.0500000000000003,3.35,3.63,3.88,4.09,4.29,4.48,4.8100000000000005,N/A,N/A +2013,12,9,6,30,94310,93130,92000,83.5,0,0.36,0.98,1.3,1.49,1.68,1.87,2.14,2.44,3.12,55.54,87.86,109.74000000000001,122.23,133.05,142.52,149.79,155.42000000000002,162.48,0.26,1.94,2.54,2.98,3.29,3.54,3.77,3.96,4.32,N/A,N/A +2013,12,9,7,30,94300,93130,91990,85.61,0,0.18,0.65,1.04,1.46,1.6600000000000001,1.82,2.04,2.32,2.98,239.95000000000002,159.31,119.25,117.33,124.19,131.63,139.20000000000002,144.95000000000002,152.57,-0.21,1.6600000000000001,2.31,2.74,3.02,3.25,3.45,3.65,4.04,N/A,N/A +2013,12,9,8,30,94330,93150,92020,86.99,0,0.21,0.5700000000000001,0.88,1.29,1.55,1.77,2.02,2.31,2.97,306.3,33.42,81.28,91.19,102.53,113.14,121.92,128.8,137.64000000000001,-0.6900000000000001,1.05,1.72,2.16,2.52,2.81,3.04,3.25,3.65,N/A,N/A +2013,12,9,9,30,94340,93160,92020,89.01,0,0.5,0.53,0.43,0.34,0.64,1.1500000000000001,1.55,1.94,2.65,283.66,282.12,230.3,157.08,146.98,144.64000000000001,145.11,145.68,147,-1.2,0.45,1.21,1.82,2.19,2.45,2.63,2.77,3.04,N/A,N/A +2013,12,9,10,30,94340,93160,92020,88.88,0,0.14,0.56,0.29,0.07,0.23,0.65,0.98,1.32,1.99,302.13,289.45,285.92,287.12,231.20000000000002,122.15,128.63,134.42000000000002,142.52,-1.19,0.18,0.81,1.36,1.77,2.09,2.29,2.46,2.7600000000000002,N/A,N/A +2013,12,9,11,30,94350,93170,92030,90.61,0,0.11,0.41000000000000003,0.44,0.32,0.33,0.42,0.78,1.16,1.79,254.74,296.75,314.16,309.12,235.91,179.61,169.70000000000002,164.29,162.24,-1.5,-0.27,0.18,0.48,1.1,1.68,2.21,2.59,3.0700000000000003,N/A,N/A +2013,12,9,12,30,94380,93200,92060,91.60000000000001,0,0.28,0.72,0.79,0.7000000000000001,0.39,0.31,0.53,0.85,1.6,260.81,310.07,336.8,347.54,25.5,52.13,105.7,134.82,145.66,-1.69,-0.37,0.06,0.31,0.75,1.19,1.7,2.09,2.65,N/A,N/A +2013,12,9,13,30,94430,93240,92100,92.2,0,0.06,0.55,0.99,1.17,1.07,0.97,0.91,0.9500000000000001,1.24,252.97,328.76,32.26,35.76,45.25,55.81,71.34,85.31,107.38,-1.9000000000000001,-0.76,-0.28,0.11,0.79,1.42,2.0100000000000002,2.36,2.7,N/A,N/A +2013,12,9,14,30,94490,93300,92160,83.46000000000001,0,0.9,1.4000000000000001,1.69,1.8800000000000001,1.82,1.68,1.41,1.19,0.99,7.19,8.28,10.02,13.05,16.990000000000002,21.2,27.25,35.4,57.39,-1.29,-0.67,-0.36,-0.2,0.25,0.74,1.3800000000000001,1.87,2.46,N/A,N/A +2013,12,9,15,30,94530,93350,92210,64.65,0,2.31,2.8000000000000003,2.92,2.95,3.0500000000000003,3.15,3.29,3.35,3.33,25.52,26.75,27.88,29.17,30.22,31.45,33.980000000000004,38.57,50.13,2.77,2.38,2.2,2.0300000000000002,1.85,1.7,1.58,1.61,1.93,N/A,N/A +2013,12,9,16,30,94530,93360,92230,56.88,0,2.81,3.39,3.56,3.62,3.65,3.66,3.65,3.63,3.6,30.54,32.77,34.27,35.6,36.99,38.28,39.74,41.24,44.56,5.13,4.63,4.41,4.21,4.01,3.83,3.65,3.47,3.12,N/A,N/A +2013,12,9,17,30,94550,93380,92250,57.82,0,3.87,4.63,4.83,4.91,4.93,4.94,4.91,4.88,4.79,34.37,35.4,36.14,36.82,37.47,38.07,38.730000000000004,39.39,40.79,6.21,5.64,5.38,5.16,4.95,4.75,4.55,4.36,3.98,N/A,N/A +2013,12,9,18,30,94560,93400,92260,61.36,0,4.24,5.08,5.3100000000000005,5.4,5.42,5.43,5.4,5.37,5.2700000000000005,39.29,39.96,40.45,40.89,41.300000000000004,41.68,42.08,42.47,43.300000000000004,6.18,5.5600000000000005,5.3100000000000005,5.08,4.86,4.66,4.46,4.26,3.88,N/A,N/A +2013,12,9,19,30,94580,93410,92280,61.730000000000004,0,4.36,5.22,5.43,5.51,5.5200000000000005,5.51,5.48,5.43,5.3,34.97,35.61,36.03,36.39,36.74,37.050000000000004,37.39,37.71,38.39,6.21,5.58,5.32,5.09,4.87,4.67,4.47,4.28,3.9,N/A,N/A +2013,12,9,20,30,94610,93450,92310,62.58,0,4.55,5.45,5.68,5.76,5.7700000000000005,5.76,5.72,5.66,5.51,37.160000000000004,37.47,37.67,37.83,37.980000000000004,38.11,38.24,38.36,38.6,5.94,5.3100000000000005,5.05,4.82,4.6000000000000005,4.41,4.21,4.01,3.64,N/A,N/A +2013,12,9,21,30,94670,93500,92360,65.24,0,4.54,5.46,5.71,5.8,5.82,5.8100000000000005,5.7700000000000005,5.71,5.5600000000000005,36.32,36.47,36.59,36.7,36.82,36.93,37.04,37.15,37.35,5.28,4.7,4.46,4.24,4.03,3.83,3.64,3.45,3.0700000000000003,N/A,N/A +2013,12,9,22,30,94730,93550,92410,69.19,0,4.62,5.62,5.86,5.95,5.97,5.96,5.91,5.8500000000000005,5.7,38.6,38.49,38.43,38.39,38.32,38.25,38.160000000000004,38.04,37.7,4.14,3.65,3.43,3.23,3.02,2.83,2.64,2.45,2.07,N/A,N/A +2013,12,9,23,30,94810,93630,92480,73.57000000000001,0,3.52,4.66,5.07,5.36,5.57,5.73,5.8500000000000005,5.94,6.05,44.09,43.13,42.58,42.17,41.76,41.34,40.730000000000004,40.04,37,2.95,2.67,2.49,2.3000000000000003,2.09,1.9100000000000001,1.71,1.52,1.17,N/A,N/A +2013,12,10,0,30,94920,93740,92580,73.37,0,3.68,5.51,6.2700000000000005,6.88,7.36,7.76,8.09,8.35,8.700000000000001,37.19,36.64,36.5,36.54,36.61,36.68,36.72,36.68,36.04,1.8800000000000001,1.71,1.55,1.37,1.1500000000000001,0.9500000000000001,0.73,0.51,0.09,N/A,N/A +2013,12,10,1,30,95060,93870,92700,75.16,0,4.96,6.87,7.63,8.21,8.72,9.16,9.55,9.9,10.43,31.41,31.080000000000002,31.07,31.28,31.3,31.28,31.25,31.11,30.400000000000002,0.28,0.05,-0.13,-0.33,-0.54,-0.74,-0.9500000000000001,-1.16,-1.57,N/A,N/A +2013,12,10,2,30,95180,93980,92810,75.8,0,4.26,5.87,6.53,7.05,7.49,7.87,8.22,8.51,9.03,26.8,26.73,26.82,26.990000000000002,27.04,27.04,26.98,26.88,26.560000000000002,-1.21,-1.47,-1.6400000000000001,-1.83,-2.0300000000000002,-2.22,-2.42,-2.62,-3.02,N/A,N/A +2013,12,10,3,30,95300,94090,92920,78.25,0,1.78,3.19,3.97,4.65,5.2,5.67,6.0600000000000005,6.38,6.88,18.740000000000002,18.900000000000002,19.400000000000002,20.29,20.72,20.990000000000002,21.11,20.85,19.57,-1.96,-2.15,-2.31,-2.48,-2.66,-2.82,-2.98,-3.14,-3.47,N/A,N/A +2013,12,10,4,30,95360,94160,92980,82.24,0,1.03,2.52,3.27,3.73,4.07,4.36,4.65,4.92,5.45,27.04,21.93,19.29,19.27,18.76,18.09,17.07,16.05,14.02,-2.39,-2.27,-2.37,-2.54,-2.7,-2.85,-3,-3.15,-3.45,N/A,N/A +2013,12,10,5,30,95440,94230,93060,81.97,0,1.26,2.7600000000000002,3.42,3.89,4.26,4.59,4.87,5.11,5.5600000000000005,48.46,37.72,31.95,29.59,27.97,26.490000000000002,24.93,23.54,21.04,-2.58,-2.42,-2.52,-2.68,-2.86,-3.02,-3.18,-3.34,-3.64,N/A,N/A +2013,12,10,6,30,95470,94260,93090,81.64,0,0.71,1.32,1.6400000000000001,2.04,2.44,2.84,3.23,3.6,4.25,89.99,48.42,31.2,21.89,17.68,14.55,12.61,11.28,9.540000000000001,-2.58,-2.41,-2.48,-2.58,-2.72,-2.86,-3,-3.16,-3.5100000000000002,N/A,N/A +2013,12,10,7,30,95550,94340,93160,82.87,0,0.43,1.3900000000000001,2.07,2.49,2.8000000000000003,3.0700000000000003,3.35,3.63,4.16,29.19,22.11,16.62,13.73,9.86,6.41,4.0200000000000005,2.49,1.06,-2.83,-2.63,-2.64,-2.64,-2.74,-2.86,-3.0300000000000002,-3.22,-3.6,N/A,N/A +2013,12,10,8,30,95570,94350,93180,84.17,0,0.28,0.67,0.98,1.43,1.83,2.21,2.56,2.91,3.5700000000000003,225.26,288.14,325.19,332.73,336.27,338.72,340.78000000000003,342.72,346.1,-3.0100000000000002,-2.77,-2.7800000000000002,-2.79,-2.84,-2.9,-3.0100000000000002,-3.14,-3.46,N/A,N/A +2013,12,10,9,30,95560,94340,93170,84.98,0,0.78,1.32,1.56,1.8900000000000001,2.21,2.5,2.7,2.9,3.3000000000000003,261.73,290.97,307.95,320.24,327.76,333.40000000000003,336.35,338.64,342.23,-3.18,-2.7,-2.63,-2.63,-2.71,-2.82,-3.02,-3.22,-3.63,N/A,N/A +2013,12,10,10,30,95560,94350,93170,88.66,0,0.72,1.54,1.8800000000000001,2.11,2.2600000000000002,2.4,2.58,2.73,3.04,273.97,302.94,318.14,324.83,331.82,337.79,342.53000000000003,345.29,348.27,-3.25,-2.82,-2.7600000000000002,-2.75,-2.8000000000000003,-2.89,-3.0500000000000003,-3.24,-3.64,N/A,N/A +2013,12,10,11,30,95560,94350,93170,89.56,0,0.44,0.8200000000000001,1.05,1.35,1.59,1.81,2.02,2.22,2.6,228.54,283.27,307.64,319.98,326.06,330.65000000000003,333.61,335.16,335.40000000000003,-3.46,-2.87,-2.7600000000000002,-2.72,-2.79,-2.88,-3,-3.11,-3.33,N/A,N/A +2013,12,10,12,30,95600,94380,93210,92.02,0,0.47000000000000003,0.67,0.76,0.9,1.1400000000000001,1.41,1.6600000000000001,1.86,2.15,83.56,55.79,36.29,15.69,6.32,358.86,354.06,350.13,345.24,-4.11,-3.47,-3.2800000000000002,-3.16,-3.14,-3.13,-3.15,-3.19,-3.39,N/A,N/A +2013,12,10,13,30,95590,94380,93200,93.17,0,0.12,0.28,0.46,0.78,1.06,1.3,1.5,1.6400000000000001,1.9100000000000001,163.67000000000002,52.77,1.24,351.86,342.43,333.46,326.31,321.69,318.43,-4.48,-3.62,-3.31,-3.12,-3.0100000000000002,-2.94,-2.92,-2.99,-3.17,N/A,N/A +2013,12,10,14,30,95600,94380,93210,82.61,0,0.61,0.66,0.67,0.6900000000000001,0.53,0.31,0.11,0.19,0.78,65.54,98.7,111.58,117.74000000000001,115.83,143.27,184.22,214.64000000000001,286.71,-3.83,-3.49,-3.3000000000000003,-3.17,-3.1,-3.04,-2.96,-2.9,-2.71,N/A,N/A +2013,12,10,15,30,95600,94390,93220,66.38,0,0.4,0.49,0.53,0.56,0.6,0.63,0.64,0.72,1.06,89.31,101.01,109.14,116.65,126.10000000000001,139.49,164.14000000000001,194.29,239.98000000000002,-1.31,-1.6600000000000001,-1.83,-1.98,-2.13,-2.24,-2.2800000000000002,-2.06,-1.56,N/A,N/A +2013,12,10,16,30,95550,94350,93190,57.660000000000004,0,0.06,0.04,0.05,0.11,0.17,0.23,0.31,0.4,0.6900000000000001,345.66,204.14000000000001,174.17000000000002,175.94,180.03,184.93,190.15,194.79,205.11,1.09,0.6900000000000001,0.48,0.3,0.12,-0.05,-0.22,-0.38,-0.68,N/A,N/A +2013,12,10,17,30,95500,94310,93150,52.38,0,0.14,0.17,0.19,0.22,0.25,0.29,0.34,0.39,0.52,226.28,206.9,196.78,190.65,188.66,188.01,189.24,190.92000000000002,195.4,3.41,2.98,2.7600000000000002,2.56,2.36,2.17,1.99,1.81,1.45,N/A,N/A +2013,12,10,18,30,95420,94240,93100,45.33,0,0.4,0.47000000000000003,0.49,0.5,0.51,0.52,0.52,0.53,0.56,134.81,136.26,137.83,139.82,142.38,144.92000000000002,148.24,151.77,159.64000000000001,5.39,4.94,4.71,4.49,4.28,4.09,3.89,3.7,3.3200000000000003,N/A,N/A +2013,12,10,19,30,95360,94180,93040,41.63,0,1.29,1.56,1.6400000000000001,1.68,1.71,1.74,1.75,1.77,1.8,140.11,143.39000000000001,145.4,147.13,148.76,150.23,151.70000000000002,153.1,155.88,6.76,6.2700000000000005,6.03,5.8100000000000005,5.59,5.4,5.19,5,4.61,N/A,N/A +2013,12,10,20,30,95290,94120,92990,37.24,0,2.5100000000000002,2.98,3.12,3.17,3.2,3.21,3.2,3.19,3.16,159.55,161.35,162.54,163.53,164.45000000000002,165.27,166.12,166.94,168.57,7.69,7.17,6.92,6.7,6.49,6.29,6.08,5.89,5.5,N/A,N/A +2013,12,10,21,30,95220,94050,92920,28.84,0,2.83,3.41,3.5700000000000003,3.64,3.67,3.68,3.68,3.67,3.63,159.94,160.92000000000002,161.52,162.01,162.45000000000002,162.84,163.27,163.67000000000002,164.47,8.21,7.72,7.49,7.2700000000000005,7.0600000000000005,6.87,6.66,6.47,6.07,N/A,N/A +2013,12,10,22,30,95140,93980,92850,31.27,0,2.92,3.58,3.77,3.86,3.91,3.93,3.94,3.94,3.92,162.64000000000001,163.1,163.37,163.6,163.82,164.01,164.20000000000002,164.38,164.72,8.17,7.7700000000000005,7.5600000000000005,7.36,7.15,6.97,6.76,6.57,6.18,N/A,N/A +2013,12,10,23,30,95090,93930,92790,49.42,0,2.34,3.99,4.3500000000000005,4.59,4.74,4.84,4.9,4.93,4.94,164.11,164.16,164.37,164.71,165.13,165.53,165.94,166.33,167.12,6.73,7.21,7.140000000000001,7.01,6.84,6.68,6.48,6.29,5.91,N/A,N/A +2013,12,11,0,30,95090,93920,92790,40.67,0,3.22,5.37,5.87,6.08,6.0600000000000005,5.98,5.83,5.68,5.41,163.89000000000001,163.84,163.73,163.54,163.37,163.20000000000002,162.9,162.53,161.43,5.71,6.45,6.54,6.5200000000000005,6.4,6.2700000000000005,6.11,5.96,5.66,N/A,N/A +2013,12,11,1,30,95070,93900,92770,48.86,0,2.95,5.08,5.54,5.74,5.7700000000000005,5.76,5.7700000000000005,5.8100000000000005,5.97,166.39000000000001,168.27,169.05,169.19,168.45000000000002,167.51,166.09,164.81,162.69,4.99,5.97,6.140000000000001,6.19,6.140000000000001,6.0600000000000005,5.96,5.88,5.7,N/A,N/A +2013,12,11,2,30,95060,93890,92750,56.28,0,2.41,4.3,5,5.76,6.45,7.05,7.43,7.68,7.79,151.96,159.47,164.6,169.3,172.16,174.24,175.08,175.51,175.4,3.56,4.44,4.7,4.93,5.11,5.24,5.3,5.3100000000000005,5.24,N/A,N/A +2013,12,11,3,30,95040,93870,92730,53.56,0,2.02,4,4.83,5.63,6.3100000000000005,6.890000000000001,7.38,7.76,8.21,163.84,171.92000000000002,176.20000000000002,178.71,179.73,180.3,180.19,179.9,179.02,3.86,4.63,4.76,4.87,4.98,5.07,5.17,5.24,5.33,N/A,N/A +2013,12,11,4,30,95020,93840,92710,55.68,0,2.42,4.2700000000000005,4.95,5.71,6.47,7.16,7.67,8.07,8.57,145.35,164.18,173.84,179.61,182.01,183.39000000000001,183.63,183.53,182.74,3.31,4.2700000000000005,4.47,4.62,4.71,4.8,4.91,5.01,5.18,N/A,N/A +2013,12,11,5,30,95020,93840,92700,58.230000000000004,0,2.15,3.29,3.73,4.45,5.2,5.94,6.65,7.23,8.06,117.89,143.73,157.49,168.48,173.65,177.15,178.57,179.41,180,2.47,3.33,3.54,3.73,3.9,4.05,4.22,4.3500000000000005,4.5600000000000005,N/A,N/A +2013,12,11,6,30,95020,93840,92700,61.67,0,1.54,3.13,3.9,4.73,5.66,6.55,7.24,7.78,8.51,140.45000000000002,159.08,169.17000000000002,175.73,178.81,180.92000000000002,181.70000000000002,182.08,182.32,1.71,2.7,3.0100000000000002,3.2800000000000002,3.5500000000000003,3.79,4.04,4.23,4.49,N/A,N/A +2013,12,11,7,30,95050,93860,92720,59.89,0,1.83,3.59,4.38,5.23,6.1000000000000005,6.9,7.57,8.13,8.92,151.75,164.59,171.27,175.44,177.63,179.21,179.98,180.45000000000002,181.12,1.97,2.75,2.9,3.0300000000000002,3.14,3.2600000000000002,3.39,3.5300000000000002,3.8000000000000003,N/A,N/A +2013,12,11,8,30,95060,93880,92730,56.64,0,1.6600000000000001,3.0500000000000003,3.67,4.39,5.04,5.63,6.17,6.67,7.54,134.9,154.12,165.04,172.27,176.22,179.05,180.62,181.79,183.23,1.8900000000000001,2.58,2.7,2.77,2.82,2.87,2.91,2.98,3.14,N/A,N/A +2013,12,11,9,30,95080,93900,92750,57.9,0,1.59,2.31,2.58,3.11,3.66,4.21,4.74,5.25,6.2,98.46000000000001,122.09,140.38,162.14000000000001,170.62,175.72,178.93,181.29,183.97,1.29,1.68,1.84,2.09,2.2,2.27,2.33,2.41,2.58,N/A,N/A +2013,12,11,10,30,95090,93900,92760,55.67,0,0.92,1.93,2.45,2.98,3.47,3.93,4.37,4.78,5.51,127.31,138.98,150.95000000000002,165.63,170.96,174.19,176.24,177.82,179.79,1.29,1.75,1.93,2.16,2.2600000000000002,2.33,2.39,2.48,2.67,N/A,N/A +2013,12,11,11,30,95120,93930,92780,53.15,0,0.65,1.45,1.9000000000000001,2.4,2.89,3.36,3.81,4.25,5.0600000000000005,123.44,150.17000000000002,164.01,170.27,173.70000000000002,176.29,177.79,178.79,179.72,1.56,2.1,2.21,2.27,2.32,2.36,2.42,2.5100000000000002,2.72,N/A,N/A +2013,12,11,12,30,95160,93970,92820,51.76,0,0.75,0.97,1.07,1.34,1.71,2.1,2.5,2.89,3.63,78.84,120.82000000000001,142.19,161.19,169.23,174.39000000000001,176.08,177.05,177.54,1.47,1.99,2.08,2.1,2.12,2.14,2.18,2.25,2.46,N/A,N/A +2013,12,11,13,30,95180,93990,92840,51.47,0,0.9,1.7,2.0100000000000002,2.29,2.5500000000000003,2.7800000000000002,3.02,3.2600000000000002,3.7,133.48,156.06,168.69,176.63,180.9,183.83,185.05,185.6,185.64000000000001,1.43,1.84,1.9100000000000001,1.95,1.98,2,2.04,2.1,2.25,N/A,N/A +2013,12,11,14,30,95240,94050,92900,50.21,0,0.5,1.17,1.43,1.57,1.68,1.78,1.9100000000000001,2.06,2.4,124.24000000000001,146.59,160.03,168.24,176.07,182.31,185.89000000000001,187.79,188.53,1.6300000000000001,2.0300000000000002,2.11,2.09,2.07,2.06,2.04,2.0300000000000002,2.06,N/A,N/A +2013,12,11,15,30,95340,94160,93010,41.74,0,1.02,1.2,1.24,1.24,1.25,1.27,1.34,1.54,2.07,20.45,17.59,15.46,13.43,10.4,7.01,1.6600000000000001,354.96,340.48,3.31,2.95,2.77,2.61,2.44,2.29,2.14,2.07,2.09,N/A,N/A +2013,12,11,16,30,95330,94150,93010,39.160000000000004,0,0.44,0.63,0.74,0.8300000000000001,0.92,1.01,1.1,1.18,1.3900000000000001,281.2,286.47,290.34000000000003,292.93,294.96,296.69,298,298.98,302.79,5.4,5,4.79,4.6000000000000005,4.41,4.23,4.05,3.87,3.5100000000000002,N/A,N/A +2013,12,11,17,30,95360,94190,93060,36.45,0,2.39,2.97,3.19,3.31,3.4,3.48,3.54,3.6,3.72,323.44,326.11,327.79,329.09000000000003,330.31,331.41,332.58,333.69,335.94,8.15,7.640000000000001,7.41,7.2,7,6.82,6.62,6.44,6.08,N/A,N/A +2013,12,11,18,30,95350,94190,93060,33.18,0,3.58,4.36,4.61,4.75,4.83,4.9,4.93,4.96,4.99,331.71,333.58,334.66,335.55,336.40000000000003,337.18,337.98,338.74,340.25,10.63,10.05,9.8,9.58,9.36,9.16,8.96,8.76,8.370000000000001,N/A,N/A +2013,12,11,19,30,95360,94210,93090,29.78,0,4.72,5.73,6.03,6.2,6.3100000000000005,6.38,6.43,6.47,6.51,328.7,331.14,332.46,333.56,334.56,335.44,336.3,337.09000000000003,338.59000000000003,12.14,11.540000000000001,11.290000000000001,11.06,10.84,10.63,10.42,10.23,9.83,N/A,N/A +2013,12,11,20,30,95430,94280,93160,26.96,0,4.32,5.26,5.5600000000000005,5.69,5.7700000000000005,5.83,5.8500000000000005,5.87,5.87,2.62,2.07,1.81,1.68,1.57,1.48,1.3800000000000001,1.29,1.08,12.11,11.53,11.28,11.05,10.82,10.620000000000001,10.41,10.21,9.81,N/A,N/A +2013,12,11,21,30,95440,94290,93170,28.76,0,4.5,5.51,5.8100000000000005,5.98,6.09,6.17,6.21,6.25,6.29,4.75,4.45,4.05,3.72,3.42,3.16,2.92,2.69,2.2600000000000002,11.66,11.13,10.9,10.67,10.450000000000001,10.25,10.040000000000001,9.84,9.44,N/A,N/A +2013,12,11,22,30,95530,94370,93250,34.62,0,4.6000000000000005,5.74,6.1000000000000005,6.29,6.41,6.49,6.53,6.5600000000000005,6.55,12.870000000000001,12.57,12.25,12.07,11.94,11.83,11.75,11.68,11.56,10.59,10.21,10.01,9.8,9.59,9.4,9.19,9,8.6,N/A,N/A +2013,12,11,23,30,95570,94400,93270,41.76,0,4.68,6.2700000000000005,6.76,7.13,7.41,7.640000000000001,7.8100000000000005,7.95,8.15,11.76,12.620000000000001,13.120000000000001,13.450000000000001,13.64,13.77,13.8,13.81,13.72,8.9,8.64,8.46,8.27,8.07,7.88,7.67,7.47,7.07,N/A,N/A +2013,12,12,0,30,95700,94530,93390,47.230000000000004,0,4.4,5.92,6.49,6.91,7.25,7.5200000000000005,7.74,7.930000000000001,8.24,27.04,26.32,25.91,25.580000000000002,25.27,24.98,24.67,24.36,23.7,7.36,7.1000000000000005,6.92,6.73,6.5200000000000005,6.33,6.12,5.92,5.5200000000000005,N/A,N/A +2013,12,12,1,30,95780,94600,93460,50.29,0,4.34,5.72,6.22,6.57,6.84,7.0600000000000005,7.25,7.4,7.65,16.51,16.86,17.1,17.31,17.5,17.66,17.79,17.900000000000002,18.09,6.0600000000000005,5.7700000000000005,5.59,5.39,5.19,5,4.79,4.59,4.19,N/A,N/A +2013,12,12,2,30,95830,94650,93500,53.15,0,4.04,5.22,5.61,5.88,6.07,6.22,6.33,6.42,6.5600000000000005,22.14,22.18,22.01,21.89,21.75,21.61,21.44,21.26,20.86,5.11,4.8,4.61,4.41,4.2,4.01,3.81,3.61,3.21,N/A,N/A +2013,12,12,3,30,95880,94690,93540,51.800000000000004,0,3.2,4.33,4.76,5.09,5.36,5.59,5.8,5.98,6.3100000000000005,21.900000000000002,21.89,21.95,22.07,22.21,22.34,22.48,22.62,22.900000000000002,4.07,3.79,3.6,3.41,3.2,3,2.8000000000000003,2.59,2.19,N/A,N/A +2013,12,12,4,30,95910,94720,93560,56.13,0,2.79,3.73,4.08,4.33,4.54,4.72,4.88,5.0200000000000005,5.28,13.71,15.39,16.38,17.27,18.12,18.900000000000002,19.66,20.39,21.830000000000002,3.47,3.18,2.99,2.8000000000000003,2.6,2.4,2.2,2,1.59,N/A,N/A +2013,12,12,5,30,95930,94740,93580,57.31,0,2,2.64,2.87,3.04,3.18,3.29,3.38,3.48,3.65,22.06,21.830000000000002,21.740000000000002,21.73,21.73,21.73,21.73,21.740000000000002,21.81,3.1,2.8000000000000003,2.62,2.43,2.22,2.0300000000000002,1.83,1.6300000000000001,1.23,N/A,N/A +2013,12,12,6,30,95950,94750,93590,57.33,0,2.63,3.33,3.54,3.67,3.75,3.8200000000000003,3.87,3.91,3.98,24.36,24.09,24.04,23.990000000000002,23.92,23.85,23.77,23.67,23.51,2.81,2.5,2.31,2.12,1.92,1.73,1.53,1.33,0.9500000000000001,N/A,N/A +2013,12,12,7,30,95970,94770,93610,57.53,0,2.07,2.68,2.87,3,3.09,3.16,3.22,3.27,3.34,20.03,20.51,20.72,20.92,21.080000000000002,21.23,21.38,21.53,21.900000000000002,2.58,2.2800000000000002,2.1,1.9100000000000001,1.7,1.52,1.32,1.12,0.73,N/A,N/A +2013,12,12,8,30,95950,94750,93590,59.77,0,2.29,3.47,3.9,4.19,4.39,4.5600000000000005,4.71,4.86,5.1000000000000005,14.55,15.81,16.57,17.16,17.51,17.8,18.1,18.61,20.71,2.05,1.83,1.6600000000000001,1.48,1.27,1.08,0.88,0.68,0.31,N/A,N/A +2013,12,12,9,30,95910,94710,93550,62.480000000000004,0,1.6600000000000001,2.72,3.29,3.8000000000000003,4.21,4.5600000000000005,4.8,4.98,5.2,38.5,33.92,32.05,31.43,31.34,31.44,31.88,32.22,33.12,1.29,1.09,0.97,0.84,0.6900000000000001,0.54,0.36,0.18,-0.19,N/A,N/A +2013,12,12,10,30,95920,94720,93550,71.19,0,0.98,2.52,3.3000000000000003,3.89,4.25,4.51,4.63,4.65,4.57,4.71,13.75,20.69,26.77,29.47,31.63,33.72,35.77,39.72,0.4,0.47000000000000003,0.37,0.25,0.11,-0.04,-0.21,-0.38,-0.73,N/A,N/A +2013,12,12,11,30,95920,94710,93540,77.22,0,0.08,0.59,1.1,1.42,1.56,1.6600000000000001,1.75,1.86,2.08,293.7,331.26,3.85,12.88,19.400000000000002,24.490000000000002,27.96,31.09,38.27,-0.4,-0.26,-0.32,-0.37,-0.5,-0.64,-0.81,-0.97,-1.18,N/A,N/A +2013,12,12,12,30,95900,94690,93520,80.18,0,0.14,0.77,1.3,1.67,1.82,1.9000000000000001,1.8800000000000001,1.82,1.68,98.52,53.26,25.060000000000002,24.47,28.310000000000002,32.72,37.92,44.01,56.47,-1.19,-0.9500000000000001,-0.99,-1.06,-1.1400000000000001,-1.19,-1.21,-1.19,-1.09,N/A,N/A +2013,12,12,13,30,95880,94680,93510,81.36,0,1.26,2.56,2.85,2.91,2.91,2.87,2.8000000000000003,2.7600000000000002,2.68,26.86,24.17,23.07,22.85,24.26,26.88,31.740000000000002,36.28,42.72,-0.91,-0.62,-0.72,-0.86,-1.05,-1.18,-1.25,-1.27,-1.27,N/A,N/A +2013,12,12,14,30,95840,94640,93470,74.9,0,0.88,1.35,1.69,2.05,2.34,2.57,2.69,2.7600000000000002,2.81,68.01,58.1,53.800000000000004,52.120000000000005,53.49,55.81,59.68,63.35,69.33,-0.7000000000000001,-0.86,-0.91,-0.9400000000000001,-0.98,-1,-0.97,-0.9400000000000001,-0.9,N/A,N/A +2013,12,12,15,30,95830,94630,93460,66.75,0,0.78,0.89,0.91,0.91,0.91,0.9,0.89,0.86,0.89,298,304.02,308.18,311.99,316.26,320.57,325.82,343.11,27.12,1.05,0.67,0.48,0.31,0.14,-0.02,-0.18,-0.28,-0.09,N/A,N/A +2013,12,12,16,30,95800,94600,93450,59.25,0,0.17,0.23,0.27,0.29,0.32,0.34,0.37,0.4,0.46,354.67,352.34000000000003,351.25,350.48,350.27,350.42,351.44,353.33,1.22,3.1,2.67,2.46,2.27,2.08,1.9000000000000001,1.72,1.54,1.19,N/A,N/A +2013,12,12,17,30,95720,94530,93380,50.980000000000004,0,0.21,0.21,0.21,0.2,0.2,0.2,0.2,0.2,0.23,21.54,23.03,24.7,26.96,30.740000000000002,34.54,39.28,44.22,54.38,5.07,4.62,4.39,4.19,3.98,3.79,3.6,3.41,3.04,N/A,N/A +2013,12,12,18,30,95630,94460,93320,43.31,0,0.53,0.63,0.67,0.6900000000000001,0.72,0.74,0.77,0.79,0.84,127.17,122.7,120.19,118.07000000000001,116.54,115.29,114.32000000000001,113.55,112.55,6.88,6.41,6.17,5.95,5.74,5.54,5.34,5.15,4.7700000000000005,N/A,N/A +2013,12,12,19,30,95540,94380,93240,34.84,0,1.62,1.8900000000000001,1.93,1.96,1.96,1.96,1.95,1.94,1.9100000000000001,131.53,132.63,133.17000000000002,133.54,133.86,134.13,134.37,134.59,135,8.540000000000001,8.02,7.7700000000000005,7.55,7.33,7.13,6.93,6.74,6.3500000000000005,N/A,N/A +2013,12,12,20,30,95460,94300,93170,35.59,0,1.86,2.23,2.34,2.39,2.43,2.45,2.46,2.47,2.48,136.48,137.96,138.82,139.45000000000002,140.02,140.52,141.02,141.5,142.44,9.58,9.07,8.83,8.61,8.4,8.2,8,7.8100000000000005,7.42,N/A,N/A +2013,12,12,21,30,95370,94210,93090,35.92,0,1.95,2.4,2.54,2.62,2.67,2.71,2.74,2.77,2.82,146.29,146.83,147.11,147.29,147.45000000000002,147.57,147.69,147.79,147.95000000000002,10.25,9.78,9.55,9.34,9.13,8.94,8.74,8.55,8.16,N/A,N/A +2013,12,12,22,30,95300,94140,93020,36.77,0,2.79,3.45,3.65,3.75,3.81,3.85,3.87,3.88,3.89,148.16,148.12,148.08,148,147.92000000000002,147.84,147.77,147.70000000000002,147.55,10.450000000000001,10.06,9.86,9.65,9.450000000000001,9.26,9.05,8.86,8.47,N/A,N/A +2013,12,12,23,30,95240,94080,92960,38.83,0,2.75,3.7800000000000002,4.09,4.29,4.42,4.51,4.57,4.61,4.64,155.53,154.73,154.15,153.62,153.15,152.73,152.36,152.02,151.32,10.08,9.85,9.68,9.5,9.3,9.120000000000001,8.92,8.73,8.34,N/A,N/A +2013,12,13,0,30,95200,94050,92920,40.85,0,2.65,3.98,4.45,4.79,5.04,5.24,5.39,5.51,5.68,152.63,152.32,152.09,151.85,151.64000000000001,151.45000000000002,151.28,151.13,150.87,9.77,9.6,9.47,9.3,9.120000000000001,8.950000000000001,8.76,8.58,8.2,N/A,N/A +2013,12,13,1,30,95170,94010,92890,42.11,0,2.48,3.84,4.3500000000000005,4.75,5.0600000000000005,5.32,5.55,5.75,6.1000000000000005,145.19,146.56,147.64000000000001,148.79,149.96,151.05,152.11,153.07,154.78,9.43,9.3,9.17,9.02,8.85,8.700000000000001,8.52,8.35,7.99,N/A,N/A +2013,12,13,2,30,95140,93980,92850,44.01,0,2.61,3.91,4.42,4.83,5.17,5.46,5.73,5.98,6.41,163.59,164.95000000000002,165.88,166.75,167.5,168.16,168.72,169.17000000000002,169.75,9.290000000000001,9.120000000000001,8.98,8.82,8.65,8.48,8.3,8.120000000000001,7.75,N/A,N/A +2013,12,13,3,30,95090,93930,92810,47.37,0,4.63,6.18,6.74,7.15,7.47,7.75,7.98,8.19,8.540000000000001,171.17000000000002,171.16,171.15,171.16,171.15,171.14000000000001,171.13,171.11,170.99,8.85,8.6,8.44,8.26,8.06,7.890000000000001,7.69,7.51,7.13,N/A,N/A +2013,12,13,4,30,95030,93870,92740,47.14,0,4.78,6.36,6.92,7.34,7.69,7.98,8.25,8.48,8.92,172.46,172.48,172.49,172.52,172.58,172.66,172.75,172.85,173.09,8.53,8.28,8.11,7.94,7.75,7.58,7.390000000000001,7.21,6.84,N/A,N/A +2013,12,13,5,30,94960,93800,92680,50.88,0,4.64,6.3100000000000005,6.91,7.37,7.75,8.06,8.36,8.620000000000001,9.13,169.72,169.41,169.27,169.18,169.17000000000002,169.18,169.23,169.29,169.43,8.21,8,7.84,7.67,7.49,7.32,7.13,6.95,6.58,N/A,N/A +2013,12,13,6,30,94910,93750,92620,51.77,0,4.07,5.68,6.3,6.78,7.19,7.54,7.86,8.17,8.75,165.20000000000002,165.07,165.13,165.28,165.54,165.81,166.11,166.42000000000002,166.99,7.8100000000000005,7.6000000000000005,7.45,7.29,7.11,6.94,6.75,6.58,6.22,N/A,N/A +2013,12,13,7,30,94830,93670,92540,48.050000000000004,0,4.83,6.66,7.37,7.95,8.43,8.84,9.21,9.56,10.200000000000001,160.73,160.92000000000002,161.09,161.3,161.54,161.79,162.07,162.34,162.89000000000001,7.62,7.4,7.25,7.08,6.9,6.74,6.57,6.4,6.07,N/A,N/A +2013,12,13,8,30,94770,93600,92470,48.59,0,3.7600000000000002,6.01,6.94,7.72,8.370000000000001,8.93,9.450000000000001,9.93,10.85,162.92000000000002,162.64000000000001,162.59,162.69,162.89000000000001,163.1,163.33,163.53,163.84,6.61,6.640000000000001,6.5600000000000005,6.44,6.3,6.17,6.01,5.86,5.55,N/A,N/A +2013,12,13,9,30,94690,93520,92390,53.07,0,2.25,4.51,5.44,6.28,7.05,7.75,8.42,9.05,10.24,158.05,159.25,160.24,161.27,162.15,162.89000000000001,163.37,163.69,163.98,5.47,5.8500000000000005,5.79,5.71,5.6000000000000005,5.5,5.38,5.26,5.01,N/A,N/A +2013,12,13,10,30,94600,93440,92310,51.02,0,2.74,5.03,6.01,6.88,7.640000000000001,8.32,8.97,9.59,10.8,157.35,158.70000000000002,159.56,160.20000000000002,160.72,161.17000000000002,161.53,161.85,162.49,5.11,5.37,5.3500000000000005,5.29,5.2,5.11,5,4.89,4.68,N/A,N/A +2013,12,13,11,30,94540,93370,92240,55.29,0,2.31,4.63,5.61,6.51,7.29,8.01,8.72,9.42,10.82,149.24,153.02,155.26,156.70000000000002,157.84,158.85,159.8,160.70000000000002,162.38,4.47,4.88,4.88,4.84,4.7700000000000005,4.7,4.6000000000000005,4.51,4.33,N/A,N/A +2013,12,13,12,30,94480,93320,92180,58.33,0,1.72,3.64,4.57,5.38,6.16,6.91,7.76,8.61,10.39,141.64000000000001,146.39000000000001,149.84,152.42000000000002,154.73,156.85,158.67000000000002,160.27,162.81,3.8000000000000003,4.26,4.26,4.24,4.19,4.14,4.08,4.01,3.86,N/A,N/A +2013,12,13,13,30,94440,93270,92140,61.6,0,1.06,2.7600000000000002,3.8200000000000003,4.68,5.53,6.38,7.3,8.22,10.1,147.63,150.88,153.57,155.84,158.08,160.22,162,163.56,165.96,3.23,3.68,3.71,3.71,3.68,3.65,3.61,3.5500000000000003,3.42,N/A,N/A +2013,12,13,14,30,94380,93210,92080,55.84,0,2.7600000000000002,4.42,5.24,6.01,6.78,7.53,8.290000000000001,9.01,10.35,148.74,152.62,155.16,157.31,159.16,160.81,162.23,163.49,165.66,3.89,3.84,3.79,3.73,3.65,3.5700000000000003,3.48,3.4,3.23,N/A,N/A +2013,12,13,15,30,94350,93190,92060,49.58,0,4.65,5.73,6.04,6.21,6.3100000000000005,6.37,6.43,6.5200000000000005,6.91,167.12,167.07,167.11,167.20000000000002,167.34,167.5,167.76,168.07,169.07,5.78,5.34,5.13,4.94,4.74,4.5600000000000005,4.37,4.2,3.85,N/A,N/A +2013,12,13,16,30,94300,93140,92020,46.230000000000004,0,4.11,4.95,5.21,5.3100000000000005,5.33,5.34,5.3,5.2700000000000005,5.19,170.06,170.35,170.59,170.85,171.14000000000001,171.44,171.84,172.29,173.61,7.59,7.0600000000000005,6.83,6.61,6.41,6.23,6.04,5.8500000000000005,5.49,N/A,N/A +2013,12,13,17,30,94200,93060,91940,43.12,0,4.42,5.29,5.53,5.61,5.62,5.6000000000000005,5.55,5.48,5.33,167.13,167.70000000000002,168.14000000000001,168.6,169.12,169.62,170.32,171.08,173.22,9.65,9.06,8.82,8.6,8.39,8.21,8.02,7.84,7.49,N/A,N/A +2013,12,13,18,30,94100,92960,91860,41.26,0,3.23,3.9,4.07,4.14,4.16,4.16,4.12,4.09,3.98,177.93,178.64000000000001,179.14000000000001,179.66,180.29,180.9,181.68,182.52,184.62,11.71,11.13,10.88,10.66,10.450000000000001,10.26,10.06,9.88,9.5,N/A,N/A +2013,12,13,19,30,94050,92930,91830,38.87,0,3.1,3.71,3.89,3.96,4,4.01,4,3.99,3.94,184.81,185.99,186.85,187.71,188.58,189.39000000000001,190.37,191.31,193.48000000000002,13.56,13.01,12.76,12.540000000000001,12.32,12.14,11.93,11.75,11.370000000000001,N/A,N/A +2013,12,13,20,30,93990,92870,91780,37.09,0,2.84,3.38,3.56,3.63,3.65,3.66,3.64,3.62,3.5500000000000003,193.11,194.45000000000002,195.5,196.56,197.59,198.59,199.73000000000002,200.82,203.31,15.51,14.99,14.75,14.52,14.31,14.120000000000001,13.92,13.74,13.36,N/A,N/A +2013,12,13,21,30,93930,92820,91730,36.74,0,3.5500000000000003,4.21,4.38,4.4,4.39,4.3500000000000005,4.28,4.21,4.04,181.48,182.45000000000002,183.16,183.95000000000002,184.78,185.62,186.69,187.73,190.49,16.1,15.6,15.38,15.17,14.97,14.780000000000001,14.59,14.41,14.040000000000001,N/A,N/A +2013,12,13,22,30,93910,92790,91710,38.07,0,3.58,4.3,4.51,4.59,4.63,4.63,4.62,4.61,4.61,173.21,174.78,176.13,177.53,178.96,180.41,182.34,184.26,189.67000000000002,16.73,16.38,16.2,16,15.82,15.64,15.46,15.290000000000001,14.96,N/A,N/A +2013,12,13,23,30,93930,92820,91730,50.59,0,2.92,4.65,5.11,5.49,5.76,5.94,6.1000000000000005,6.25,5.9,146.54,156.28,164.03,169.74,174.41,178.35,182.52,186.58,202.07,14.46,15.09,15.14,15.11,15.07,15.01,14.950000000000001,14.9,14.950000000000001,N/A,N/A +2013,12,14,0,30,93950,92840,91750,56.32,0,2.27,3.84,4.1,4,4.0200000000000005,4.1,4.33,4.59,5.67,200.08,218.39000000000001,235.33,257.52,266.4,268.07,271.66,275.36,282.40000000000003,13.07,14.96,15.39,15.370000000000001,15.27,15.13,15.01,14.91,14.870000000000001,N/A,N/A +2013,12,14,1,30,93940,92820,91740,53.88,0,2.73,4.15,4.84,6.2700000000000005,8.120000000000001,10.21,11.92,13.4,15.02,253.79,266.69,276.33,289.18,291.89,290.99,289.86,288.93,288.1,12.96,14.5,14.92,15.35,15.780000000000001,16.16,16.4,16.55,16.5,N/A,N/A +2013,12,14,2,30,93960,92840,91750,51.800000000000004,0,3.0500000000000003,5.53,6.55,7.92,9.36,10.78,12.17,13.46,15.530000000000001,250.07,270.8,279.15000000000003,282.71,284.05,284.7,284.71,284.69,284.52,12.39,14.530000000000001,15.02,15.280000000000001,15.33,15.33,15.38,15.42,15.46,N/A,N/A +2013,12,14,3,30,93980,92850,91770,55.56,0,2.12,4.5,5.51,6.47,7.48,8.46,9.450000000000001,10.39,12.07,236.26,249.38,258.66,267.63,274.25,279.8,282.62,284.67,286.24,11.17,12.55,12.96,13.36,13.76,14.11,14.42,14.66,14.94,N/A,N/A +2013,12,14,4,30,94030,92900,91810,51.96,0,2.73,5.18,5.08,3.96,3.92,4.18,4.84,5.5200000000000005,7.08,211.03,226.31,236.31,242.65,256.18,272.06,275.8,278.94,282.67,12.11,13.71,13.71,13.4,13.35,13.39,13.32,13.26,13.18,N/A,N/A +2013,12,14,5,30,94060,92920,91820,57.82,0,0.34,1.05,1.6,2.19,2.84,3.5100000000000002,4.18,4.8500000000000005,6.22,322.2,306.56,295.76,288.83,286.68,286.27,288.1,289.99,293.44,10.01,11.28,11.39,11.43,11.53,11.63,11.69,11.74,11.75,N/A,N/A +2013,12,14,6,30,94090,92960,91860,60.84,0,1.81,2.69,2.88,3.43,4.09,4.8100000000000005,5.59,6.38,8.01,240.59,264.37,278.3,289.64,296.27,300.42,302.69,304.54,305.71,10.46,11.94,11.96,11.84,11.78,11.77,11.76,11.75,11.77,N/A,N/A +2013,12,14,7,30,94080,92950,91850,66.89,0,2.91,4.91,5.55,6.36,7.0600000000000005,7.68,8.44,9.22,11.040000000000001,316.12,316.04,316.41,317.33,316.67,315.49,313.23,310.97,306.6,8.69,10.91,11.46,11.77,11.86,11.870000000000001,11.86,11.870000000000001,12,N/A,N/A +2013,12,14,8,30,94150,93010,91910,67.99,0,2.89,5.53,6.3100000000000005,6.7,7.28,7.92,8.84,9.77,11.77,318.91,318.45,317.15000000000003,314.47,313.05,312.17,311.63,311.07,309.75,8.52,10.91,11.48,11.67,11.69,11.65,11.61,11.6,11.66,N/A,N/A +2013,12,14,9,30,94190,93050,91950,70.06,0,2.81,7.15,9.18,10.85,11.83,12.48,12.530000000000001,12.46,12.21,336.69,335.2,333.6,331.7,329.78000000000003,328,326.17,324.33,320.88,7.66,9.58,10.03,10.33,10.42,10.44,10.370000000000001,10.26,9.99,N/A,N/A +2013,12,14,10,30,94300,93150,92040,74.15,0,0.71,2.5100000000000002,4.36,6.69,8.53,10.03,11.14,12.15,13.790000000000001,195.99,276,335.03000000000003,336.41,335.76,334.2,332.34000000000003,330.65000000000003,328.12,5.95,7.3100000000000005,7.55,7.8,8.03,8.23,8.39,8.52,8.64,N/A,N/A +2013,12,14,11,30,94410,93260,92140,66.41,0,5.93,9.35,10.870000000000001,11.99,12.83,13.49,13.94,14.34,15.030000000000001,329.42,331.82,333.41,334.38,335.24,336.01,337.11,338.34000000000003,341.6,7.33,7.890000000000001,7.98,7.91,7.8,7.7,7.55,7.4,7.07,N/A,N/A +2013,12,14,12,30,94580,93420,92290,71.54,0,3.5300000000000002,5.26,5.63,6.23,7,7.84,8.73,9.56,11.05,308.09000000000003,323.5,333.66,340.98,346.1,350.24,352.73,354.87,357.89,5.12,5.92,5.86,5.73,5.64,5.5600000000000005,5.49,5.41,5.18,N/A,N/A +2013,12,14,13,30,94710,93540,92410,67.13,0,3.85,5.59,6.0200000000000005,6.3,6.72,7.23,8.05,8.91,10.8,305.01,311.47,317.26,323.72,329.45,334.81,339.40000000000003,343.44,349.46,3.89,4.73,4.88,4.62,4.41,4.23,4.08,3.95,3.74,N/A,N/A +2013,12,14,14,30,94820,93640,92500,65.99,0,3.31,5.33,6.22,6.8100000000000005,7.34,7.83,8.47,9.16,10.73,304.90000000000003,314.89,322.23,327.61,332.7,337.36,341.44,345.02,350.71,3.15,3.48,3.58,3.59,3.5100000000000002,3.4,3.2600000000000002,3.12,2.85,N/A,N/A +2013,12,14,15,30,94950,93780,92630,45.35,0,5.54,6.99,7.63,8.03,8.34,8.6,8.81,9.01,9.370000000000001,347.3,348.28000000000003,349.04,349.69,350.29,350.83,351.39,351.92,352.97,5.17,4.7700000000000005,4.5600000000000005,4.34,4.14,3.95,3.75,3.5500000000000003,3.17,N/A,N/A +2013,12,14,16,30,95000,93830,92690,42.68,0,6.0600000000000005,7.53,8.1,8.42,8.64,8.81,8.92,9.02,9.15,349.72,349.94,350.08,350.21,350.32,350.41,350.51,350.6,350.78000000000003,6.05,5.49,5.25,5.0200000000000005,4.8,4.6000000000000005,4.38,4.19,3.79,N/A,N/A +2013,12,14,17,30,95020,93850,92720,39.52,0,5.67,7.1000000000000005,7.57,7.86,8.05,8.19,8.3,8.38,8.51,350.49,350.49,350.49,350.49,350.5,350.5,350.5,350.5,350.51,7.44,6.8100000000000005,6.55,6.32,6.09,5.88,5.67,5.47,5.07,N/A,N/A +2013,12,14,18,30,95030,93870,92740,36.58,0,5.58,7.0200000000000005,7.45,7.72,7.9,8.040000000000001,8.14,8.22,8.35,353.3,353.28000000000003,353.24,353.21,353.17,353.14,353.1,353.07,352.98,8.81,8.16,7.890000000000001,7.66,7.42,7.22,7,6.8,6.390000000000001,N/A,N/A +2013,12,14,19,30,95100,93940,92810,34.69,0,6.24,7.69,8.19,8.46,8.63,8.76,8.85,8.92,9.02,348.21,348.58,348.82,348.96,349.06,349.14,349.21,349.26,349.34000000000003,9.94,9.290000000000001,9.02,8.78,8.55,8.34,8.120000000000001,7.92,7.5200000000000005,N/A,N/A +2013,12,14,20,30,95120,93960,92840,33.9,0,6.28,7.72,8.3,8.620000000000001,8.83,8.99,9.1,9.200000000000001,9.33,345.88,346.01,346.11,346.15000000000003,346.18,346.22,346.24,346.26,346.29,10.83,10.22,9.950000000000001,9.700000000000001,9.48,9.27,9.05,8.85,8.44,N/A,N/A +2013,12,14,21,30,95090,93930,92820,33.35,0,5.73,7.2,7.69,7.98,8.18,8.33,8.44,8.53,8.65,342.33,342.56,342.7,342.8,342.89,342.97,343.04,343.11,343.25,11.18,10.63,10.4,10.17,9.950000000000001,9.75,9.53,9.33,8.92,N/A,N/A +2013,12,14,22,30,95100,93950,92830,35.04,0,5.34,6.8,7.28,7.58,7.79,7.96,8.08,8.19,8.33,345.21,345.61,345.82,345.95,346.06,346.16,346.24,346.32,346.44,11.11,10.700000000000001,10.5,10.290000000000001,10.08,9.89,9.68,9.48,9.08,N/A,N/A +2013,12,14,23,30,95170,94020,92900,41.81,0,3.08,5.75,6.92,7.58,8.03,8.36,8.52,8.63,8.69,356.36,355.84000000000003,355.29,354.56,353.94,353.40000000000003,353.01,352.68,352.23,9.71,10.06,10.02,9.86,9.68,9.52,9.32,9.14,8.76,N/A,N/A +2013,12,15,0,30,95200,94050,92920,50.25,0,1.5,3.33,4.08,4.65,5.12,5.54,5.95,6.33,7.04,359.29,0.01,359.54,357.96,357.03000000000003,356.39,356.23,356.19,356.42,8.42,9.41,9.41,9.22,9.1,9,8.84,8.69,8.370000000000001,N/A,N/A +2013,12,15,1,30,95230,94070,92940,48.96,0,3.87,6.69,7.74,8.48,9.02,9.44,9.68,9.82,9.83,349.79,353.75,354.95,354.14,353.53000000000003,353,352.39,351.77,350.36,8.16,8.94,9.09,9.09,9.02,8.93,8.82,8.69,8.39,N/A,N/A +2013,12,15,2,30,95290,94120,92990,60,0,0.38,1.23,1.97,2.89,3.7600000000000002,4.6000000000000005,5.3500000000000005,6.04,7.18,248.29,303.36,336.53000000000003,343.08,346.21,348.12,348.90000000000003,349.45,349.77,6.3500000000000005,7.16,7.28,7.4,7.51,7.6000000000000005,7.67,7.72,7.73,N/A,N/A +2013,12,15,3,30,95310,94140,93010,65.44,0,1.8900000000000001,2.31,2.48,3.02,3.61,4.21,4.8100000000000005,5.4,6.5600000000000005,258.03000000000003,283.71,300.83,321.49,330.18,335.82,339.08,341.77,345.61,5.19,5.99,6.23,6.53,6.76,6.95,7.09,7.19,7.2700000000000005,N/A,N/A +2013,12,15,4,30,95350,94170,93040,73.95,0,0.11,0.96,2,2.87,3.63,4.34,4.98,5.5600000000000005,6.51,233.63,296.21,351.90000000000003,353.51,354.67,355.72,356.79,357.68,358.89,4.64,5.47,5.63,5.78,5.96,6.12,6.26,6.37,6.5600000000000005,N/A,N/A +2013,12,15,5,30,95380,94210,93070,78.48,0,0.99,1.06,0.89,0.78,0.9500000000000001,1.21,1.6500000000000001,2.13,3.19,240.37,268.69,289.84000000000003,311.69,330.46,347.86,353.46,357.36,0.03,4.07,5.1000000000000005,5.2700000000000005,5.36,5.37,5.37,5.39,5.43,5.6000000000000005,N/A,N/A +2013,12,15,6,30,95420,94230,93090,84.68,0,0.52,1.08,1.19,1.17,1.36,1.6,1.9100000000000001,2.2600000000000002,3.04,297.83,304.43,304.81,301.59000000000003,310.05,319.78000000000003,328.68,336.06,347.24,2.65,3.5300000000000002,3.79,4.08,4.43,4.71,4.8500000000000005,4.95,5.25,N/A,N/A +2013,12,15,7,30,95440,94250,93110,86.51,0,0.45,0.36,0.44,0.74,1.06,1.3800000000000001,1.62,1.82,2.17,160.06,216.07,242.83,281.79,295.43,304.56,311.06,317.15000000000003,328.46,1.9100000000000001,3.16,3.45,3.62,3.79,3.94,4.09,4.22,4.47,N/A,N/A +2013,12,15,8,30,95440,94250,93110,89.34,0,0.03,0.4,1,1.41,1.74,2.04,2.32,2.52,2.66,355.41,327.22,281.22,286.57,294.88,303.08,309.52,314.42,320.8,0.9,1.95,2.35,2.74,3.11,3.43,3.7,3.95,4.48,N/A,N/A +2013,12,15,9,30,95430,94240,93090,91.19,0,0.32,0.66,0.9500000000000001,1.42,1.9000000000000001,2.36,2.75,2.99,3,22.62,346.08,328.47,316.16,313.87,313.1,313.18,312.88,311.09000000000003,-0.05,1.6400000000000001,2.19,2.56,2.84,3.11,3.45,3.77,4.37,N/A,N/A +2013,12,15,10,30,95410,94220,93070,92.60000000000001,0,0.09,0.34,0.55,0.77,1.12,1.51,1.87,2.09,2.21,126.34,200.28,248.95000000000002,282.69,293.57,301.41,303.37,303.90000000000003,304.3,-0.63,0.98,1.41,1.6500000000000001,1.84,2.05,2.35,2.64,3.21,N/A,N/A +2013,12,15,11,30,95410,94210,93060,95.69,0,0.19,0.18,0.28,0.65,1.05,1.5,1.93,2.37,3.13,9.02,285.77,274.51,289.55,292.90000000000003,294.52,294.5,294.52,293.29,-1.47,-0.12,0.43,0.87,1.26,1.6300000000000001,2.04,2.5300000000000002,3.59,N/A,N/A +2013,12,15,12,30,95410,94210,93050,95.7,0,0.17,0.29,0.44,0.73,1.1400000000000001,1.6300000000000001,2.15,2.62,3.27,295.21,258.77,262.03000000000003,291.97,298.05,301.22,301.14,299.54,293.95,-1.74,-0.07,0.35000000000000003,0.49,0.66,0.93,1.43,2.0300000000000002,3.2800000000000002,N/A,N/A +2013,12,15,13,30,95390,94190,93040,96.13,0,0.5,0.5700000000000001,0.46,0.37,0.7000000000000001,1.16,1.59,1.99,2.74,123.61,160.47,212.86,264.45,280.28000000000003,293.83,292.59000000000003,290.1,284.43,-2.02,-0.65,-0.23,0,0.34,0.68,1.12,1.62,2.8000000000000003,N/A,N/A +2013,12,15,14,30,95390,94190,93030,94.71000000000001,0,0.45,0.78,0.96,1.09,1.36,1.67,2.04,2.42,3.0500000000000003,310.39,275.39,265.42,268.11,273.64,278.64,281.78000000000003,283.91,284.91,-1.58,-0.58,-0.08,0.27,0.67,1.07,1.56,2.18,3.59,N/A,N/A +2013,12,15,15,30,95380,94190,93040,77.74,0,0.12,0.22,0.38,0.78,1.2,1.6400000000000001,1.97,2.19,2.57,312.94,293.32,287.97,289.62,287.99,285.61,282.75,278.95,268.69,1.19,0.96,0.99,1.1,1.76,2.39,3.0300000000000002,3.63,4.67,N/A,N/A +2013,12,15,16,30,95360,94180,93040,62.36,0,0.14,0.23,0.31,0.4,0.6,0.87,1.24,1.6300000000000001,2.36,228,225.85,223.69,222.45000000000002,222.08,223.24,230.04,233.96,233.71,4.83,4.47,4.32,4.2,4.12,4.09,4.19,4.48,5.21,N/A,N/A +2013,12,15,17,30,95300,94140,93010,52.84,0,0.42,0.49,0.5,0.5,0.52,0.5700000000000001,0.75,1.07,2.47,83.8,95.8,105.49000000000001,115.88,130.83,145.6,161.75,175.3,196.36,8.17,7.78,7.59,7.42,7.25,7.11,6.96,6.8500000000000005,7.05,N/A,N/A +2013,12,15,18,30,95240,94090,92980,41.79,0,0.53,0.92,1.1500000000000001,1.34,1.51,1.67,1.81,1.95,2.2,182.9,193.81,198.79,200.94,202.29,203.32,204.02,204.62,205.52,11.98,11.52,11.3,11.09,10.88,10.700000000000001,10.5,10.31,9.94,N/A,N/A +2013,12,15,19,30,95190,94050,92940,33.95,0,2.38,2.92,3.09,3.18,3.25,3.29,3.33,3.36,3.39,213.07,213.72,214.18,214.62,215.08,215.5,215.97,216.41,217.32,13.52,12.99,12.75,12.52,12.31,12.11,11.9,11.700000000000001,11.31,N/A,N/A +2013,12,15,20,30,95140,94000,92890,30.27,0,2.66,3.27,3.45,3.56,3.63,3.69,3.73,3.7600000000000002,3.81,205.6,206.46,207.01,207.5,207.98000000000002,208.42000000000002,208.87,209.28,210.1,14.51,13.98,13.74,13.52,13.3,13.11,12.89,12.69,12.3,N/A,N/A +2013,12,15,21,30,95090,93950,92850,29.07,0,3.0100000000000002,3.7,3.9,4.01,4.08,4.14,4.17,4.2,4.23,195.73000000000002,196.61,197.26,197.88,198.47,199,199.58,200.12,201.18,15.01,14.52,14.3,14.09,13.870000000000001,13.68,13.47,13.27,12.870000000000001,N/A,N/A +2013,12,15,22,30,95030,93900,92800,29.72,0,3.65,4.57,4.82,4.95,5.03,5.08,5.11,5.13,5.14,190.47,191.33,191.91,192.45000000000002,192.98000000000002,193.46,193.98000000000002,194.46,195.45000000000002,14.9,14.55,14.36,14.16,13.96,13.77,13.57,13.370000000000001,12.98,N/A,N/A +2013,12,15,23,30,95010,93870,92770,38.14,0,3.71,5.93,6.51,6.9,7.140000000000001,7.32,7.4,7.46,7.48,172.78,176.04,178.3,180.37,182.14000000000001,183.66,184.88,185.91,187.51,12.97,13.59,13.67,13.63,13.51,13.370000000000001,13.18,13,12.620000000000001,N/A,N/A +2013,12,16,0,30,95000,93860,92750,40.27,0,4.5600000000000005,7.21,8.06,8.64,8.9,9.02,8.88,8.71,8.21,171.47,172.99,174.1,175.14000000000001,176.47,177.78,179.78,181.91,187.56,11.68,12.280000000000001,12.42,12.5,12.5,12.47,12.39,12.32,12.200000000000001,N/A,N/A +2013,12,16,1,30,95010,93860,92750,46.06,0,3.77,6.54,7.54,8.41,8.98,9.41,9.49,9.49,9.13,166.41,170.95000000000002,173.46,175.16,176.51,177.68,179.14000000000001,180.72,185.09,10.33,10.88,10.98,11.06,11.14,11.22,11.31,11.4,11.55,N/A,N/A +2013,12,16,2,30,95030,93880,92760,55.56,0,3.17,5.42,6.11,6.84,7.42,7.9,8.19,8.4,8.540000000000001,142.57,156.65,164.6,170.49,174.54,177.79,180.48,182.99,188.02,8.84,9.67,9.81,9.950000000000001,10.09,10.22,10.36,10.48,10.700000000000001,N/A,N/A +2013,12,16,3,30,95060,93900,92780,61.24,0,2.8000000000000003,4.7,5.32,6.13,6.890000000000001,7.59,8.16,8.620000000000001,9.200000000000001,133.3,153.58,164.98,173.51,178.70000000000002,182.63,185.1,187.25,190.69,7.82,8.86,9.06,9.24,9.39,9.540000000000001,9.68,9.8,10.01,N/A,N/A +2013,12,16,4,30,95070,93910,92790,64.64,0,2.62,4.23,4.76,5.54,6.34,7.12,7.78,8.36,9.16,129.03,152.24,165.54,176.46,181.96,185.6,187.31,188.70000000000002,190.71,7.09,8.22,8.43,8.61,8.77,8.91,9.06,9.19,9.43,N/A,N/A +2013,12,16,5,30,95070,93900,92780,69.03,0,2.41,3.5,3.81,4.4,5.19,5.99,6.640000000000001,7.22,8.14,114.77,143.27,159.78,174.91,182.05,186.70000000000002,188.22,189.44,191.16,6.19,7.41,7.7,7.94,8.17,8.370000000000001,8.52,8.66,8.89,N/A,N/A +2013,12,16,6,30,95100,93930,92810,71.38,0,1.44,2.04,2.24,2.7,3.24,3.81,4.39,4.96,6.01,108.68,137.64000000000001,153.01,165.84,173.47,179.32,182.48,185.04,188.01,5.67,6.91,7.13,7.26,7.3500000000000005,7.42,7.5,7.58,7.78,N/A,N/A +2013,12,16,7,30,95110,93940,92810,76.3,0,1.5,2.19,2.38,2.74,3.17,3.62,4.08,4.5200000000000005,5.3500000000000005,115.36,141.96,156.58,169.17000000000002,175.79,180.64000000000001,182.89000000000001,184.49,185.89000000000001,4.67,6.16,6.53,6.76,6.94,7.08,7.23,7.37,7.62,N/A,N/A +2013,12,16,8,30,95100,93920,92790,80.99,0,1.27,2,2.15,2.31,2.57,2.84,3.13,3.4,3.93,107.66,127.79,141.4,154.49,164.02,171.93,177.49,182.14000000000001,189.07,3.44,4.89,5.3500000000000005,5.72,6.01,6.25,6.46,6.640000000000001,6.98,N/A,N/A +2013,12,16,9,30,95070,93900,92760,81.45,0,0.59,1.44,1.81,2.02,2.13,2.22,2.34,2.5,2.96,118.99000000000001,125.15,130.8,136.47,144.96,153.22,161.95000000000002,169.24,179.85,2.89,4.12,4.49,4.8100000000000005,5.11,5.36,5.6000000000000005,5.82,6.21,N/A,N/A +2013,12,16,10,30,95060,93880,92750,84.36,0,0.16,0.27,0.39,0.65,0.85,1.06,1.31,1.6,2.3000000000000003,316.13,201.82,164.44,160.69,168.54,177.70000000000002,183.04,186.01,187.87,1.8900000000000001,3.42,3.85,4.13,4.33,4.49,4.65,4.8100000000000005,5.26,N/A,N/A +2013,12,16,11,30,95060,93870,92730,87.55,0,0.23,0.67,0.78,0.73,0.7000000000000001,0.71,0.88,1.1300000000000001,1.83,239.46,257.06,268.45,273.62,267.54,259.03000000000003,241.33,228.47,215.76,0.93,2.31,2.8000000000000003,3.2,3.48,3.72,3.98,4.33,5.23,N/A,N/A +2013,12,16,12,30,95060,93870,92730,89.83,0,0.07,0.42,0.6900000000000001,0.81,0.8,0.8,0.87,1.02,1.49,208.70000000000002,253.78,287.55,295.1,290.25,281.53000000000003,263.26,248.51000000000002,230.61,-0.05,1.51,1.97,2.2600000000000002,2.56,2.88,3.3200000000000003,3.83,4.89,N/A,N/A +2013,12,16,13,30,95060,93870,92730,92.36,0,0.05,0.31,0.52,0.5700000000000001,0.59,0.64,0.79,0.97,1.36,288.5,275.44,270.65,279.3,282.39,281.98,273.68,269.31,271.39,-0.8,0.9,1.47,1.84,2.2,2.62,3.25,3.94,5.3,N/A,N/A +2013,12,16,14,30,95050,93860,92720,90.23,0,0.05,0.45,0.88,1.1,1.28,1.46,1.6500000000000001,1.9100000000000001,2.64,193.63,236.14000000000001,277.44,290.55,296.28000000000003,300.36,302.69,305.57,309.36,-0.93,0.26,1.02,1.67,2.43,3.15,3.99,4.76,6.17,N/A,N/A +2013,12,16,15,30,95050,93860,92730,75.66,0,0.22,0.37,0.53,0.85,1.3,1.83,2.38,2.95,4.07,209.82,214.83,245.87,312.72,322.54,323.86,320.48,317.73,313.16,2.0100000000000002,1.79,1.8900000000000001,2.1,2.94,3.77,4.64,5.49,7.03,N/A,N/A +2013,12,16,16,30,95030,93860,92730,61.53,0,0.4,0.41000000000000003,0.45,0.54,0.93,1.59,2.48,3.3000000000000003,4.3100000000000005,277.38,297.07,307.38,316.53000000000003,322.84000000000003,328.37,321.72,316.01,309.21,5.49,5.16,5.01,4.88,4.83,4.99,5.97,6.86,8.34,N/A,N/A +2013,12,16,17,30,94980,93820,92700,48.97,0,0.45,0.39,0.36,0.37,0.46,0.59,0.93,1.5,3.31,225.95000000000002,243.23000000000002,257.83,275.68,290.7,305.32,311.63,315.22,309.55,8.97,8.59,8.41,8.25,8.1,7.96,7.8500000000000005,7.94,8.92,N/A,N/A +2013,12,16,18,30,94940,93790,92680,37.08,0,0.89,0.9500000000000001,0.92,0.9,0.89,0.89,0.9,0.93,1.05,227.62,235.76,241.3,246.93,253.08,258.7,265,270.76,281.17,12.22,11.77,11.56,11.38,11.200000000000001,11.05,10.88,10.73,10.44,N/A,N/A +2013,12,16,19,30,94900,93770,92670,29.67,0,0.88,0.89,0.85,0.8200000000000001,0.8,0.78,0.79,0.8,0.88,280,275.90000000000003,272.86,269.6,265.7,262.04,257.2,252.5,241.93,14.870000000000001,14.41,14.18,13.98,13.790000000000001,13.61,13.42,13.25,12.9,N/A,N/A +2013,12,16,20,30,94860,93740,92640,29.240000000000002,0,1.09,1.2,1.19,1.16,1.1300000000000001,1.1,1.06,1.03,0.99,111.34,113.93,115.92,118.10000000000001,120.68,123.14,126.54,129.82,138.05,16.3,15.83,15.610000000000001,15.39,15.18,15,14.790000000000001,14.61,14.23,N/A,N/A +2013,12,16,21,30,94830,93710,92620,28.68,0,1.11,1.05,0.9500000000000001,0.84,0.74,0.67,0.61,0.5700000000000001,0.59,77.17,83.75,88.78,94.55,102.46000000000001,109.94,122,133.08,157.53,17.29,16.85,16.65,16.44,16.240000000000002,16.06,15.860000000000001,15.67,15.290000000000001,N/A,N/A +2013,12,16,22,30,94780,93650,92570,27.55,0,2.41,2.96,3.08,3.13,3.13,3.12,3.08,3.0300000000000002,2.91,203.85,203.56,203.70000000000002,204.02,204.49,204.96,205.62,206.27,207.92000000000002,17.400000000000002,17.05,16.86,16.67,16.47,16.28,16.080000000000002,15.9,15.51,N/A,N/A +2013,12,16,23,30,94790,93670,92580,41.75,0,2.64,4.39,4.61,4.64,4.58,4.49,4.29,4.13,3.95,164.55,167.46,169.97,173.03,176.93,180.84,187.48,193.18,201.92000000000002,14.84,15.85,15.94,15.93,15.92,15.9,15.92,15.92,15.81,N/A,N/A +2013,12,17,0,30,94800,93670,92580,43.4,0,2.57,3.97,4.04,4.03,3.96,3.88,3.83,3.8000000000000003,3.87,135.04,140.52,144.49,148.70000000000002,154.05,159.42000000000002,166.05,172.13,184.07,13.57,15,15.25,15.44,15.58,15.69,15.75,15.790000000000001,15.780000000000001,N/A,N/A +2013,12,17,1,30,94800,93670,92580,47.42,0,2.7,4.93,5.4,5.6000000000000005,5.45,5.21,4.9,4.65,4.3100000000000005,150.51,160,165.1,167.91,170.4,172.46,175.8,179.02,186.85,12.52,13.84,14.11,14.4,14.73,15.040000000000001,15.290000000000001,15.48,15.68,N/A,N/A +2013,12,17,2,30,94840,93700,92600,49.7,0,2.81,4.57,4.87,5.14,5.22,5.23,5.12,5.01,4.75,128.08,143.47,152.23,158.98,163.82,167.57,170.68,173.46,178.88,11.24,12.61,12.92,13.22,13.48,13.72,13.91,14.07,14.3,N/A,N/A +2013,12,17,3,30,94880,93730,92620,55.83,0,2.12,3.37,3.6,3.87,4.09,4.28,4.38,4.46,4.5600000000000005,126.5,142.41,152.76,162.37,168.47,173,176.29,179.29,184.85,9.4,10.77,11.13,11.47,11.77,12.030000000000001,12.280000000000001,12.49,12.83,N/A,N/A +2013,12,17,4,30,94900,93750,92640,61.52,0,1.53,2.21,2.32,2.5500000000000003,2.88,3.23,3.62,4,4.73,132.99,152.74,163.55,172.51,177.54,181.16,182.78,184.05,185.28,8.53,9.98,10.370000000000001,10.700000000000001,10.98,11.200000000000001,11.43,11.64,12.02,N/A,N/A +2013,12,17,5,30,94920,93770,92660,67.88,0,0.48,1.21,1.67,2.15,2.6,3.04,3.49,3.93,4.83,140.22,176.56,195.29,199.15,199.03,197.69,195.78,194.05,191.48000000000002,7.46,9.16,9.68,10.08,10.370000000000001,10.6,10.82,11.03,11.46,N/A,N/A +2013,12,17,6,30,94960,93800,92690,72.82000000000001,0,0.16,0.71,1.2,1.62,2.05,2.5,2.97,3.44,4.39,133.37,170.87,196.11,198.04,196.69,194.32,192.42000000000002,190.82,188.93,6.36,8.11,8.67,9.07,9.38,9.620000000000001,9.86,10.07,10.5,N/A,N/A +2013,12,17,7,30,94990,93820,92700,77.96000000000001,0,0.04,0.23,0.43,0.7000000000000001,1.03,1.41,1.86,2.34,3.37,25.82,285.42,219.63,217.02,210.94,203.67000000000002,199.51,196.02,192.04,5.2700000000000005,7.08,7.67,8.07,8.38,8.65,8.950000000000001,9.25,9.870000000000001,N/A,N/A +2013,12,17,8,30,95000,93840,92720,83.16,0,0.08,0.15,0.17,0.18,0.35000000000000003,0.67,1.06,1.53,2.5500000000000003,350.88,45.5,88.10000000000001,128.81,153.13,182.24,185.86,188.73,190.35,4.16,6.24,6.96,7.42,7.76,8.040000000000001,8.34,8.64,9.33,N/A,N/A +2013,12,17,9,30,94990,93820,92700,86.38,0,0.12,0.44,0.53,0.48,0.45,0.47000000000000003,0.78,1.17,2.11,212.70000000000002,239.88,256.1,259.58,240.5,222.85,208.82,198.35,193.05,3.14,4.96,5.75,6.44,7.01,7.48,7.91,8.32,9.120000000000001,N/A,N/A +2013,12,17,10,30,95000,93830,92700,88.49,0,0.18,0.33,0.39,0.45,0.34,0.28,0.31,0.48,1.31,15.13,328.36,315.26,319.13,320.72,306.26,230.67000000000002,193.88,187.95000000000002,2.35,4.28,4.99,5.5,6.11,6.67,7.26,7.76,8.57,N/A,N/A +2013,12,17,11,30,95030,93860,92730,89.11,0,0.08,0.4,0.64,0.75,0.79,0.78,0.64,0.68,1.11,247.54,254.74,270.86,294.13,295.66,288.52,263.2,240.77,204.42000000000002,1.8900000000000001,3.7600000000000002,4.3500000000000005,4.65,5.24,5.86,6.69,7.34,8.23,N/A,N/A +2013,12,17,12,30,95070,93890,92760,91.08,0,0.14,0.5700000000000001,0.85,0.97,1.05,1.06,0.8300000000000001,0.75,0.89,245.63,266.89,286.8,300.97,302.8,300.16,290.15000000000003,270.85,233.52,1.12,3.04,3.71,4.1,4.7,5.3100000000000005,6.12,6.86,8.02,N/A,N/A +2013,12,17,13,30,95090,93910,92770,92.99,0,0.08,0.5700000000000001,1.04,1.33,1.6,1.75,1.61,1.3800000000000001,1.11,246.38,261.32,279.23,291.95,295.03000000000003,295.76,294.7,289.22,271.34000000000003,0.36,2.23,2.97,3.52,4.18,4.83,5.62,6.44,8.03,N/A,N/A +2013,12,17,14,30,95120,93930,92800,92.3,0,0.07,0.32,0.52,0.67,0.96,1.28,1.56,1.79,2.12,356.41,303.5,283.75,301.54,307.2,310.53000000000003,308.73,306.46,303.03000000000003,0.4,2.25,2.89,3.16,3.61,4.16,5.14,6.16,8.03,N/A,N/A +2013,12,17,15,30,95150,93960,92840,74.7,0,0.07,0.18,0.31,0.63,0.84,1.02,1.23,1.48,2.0100000000000002,213.24,244.56,282.61,355.57,6.45,359.45,344.55,334.1,322.55,3.39,3.14,3.35,3.8000000000000003,4.61,5.41,6.28,7.15,8.72,N/A,N/A +2013,12,17,16,30,95130,93960,92840,60.82,0,0.4,0.34,0.31,0.3,0.63,1.26,1.6500000000000001,2.0100000000000002,2.46,243.35,252.87,265.57,282.92,303.23,333.41,325.66,318.40000000000003,307.52,6.87,6.58,6.47,6.390000000000001,6.72,7.15,7.95,8.53,9.22,N/A,N/A +2013,12,17,17,30,95090,93930,92820,44.84,0,0.9400000000000001,1.1,1.1500000000000001,1.21,1.29,1.3800000000000001,1.51,1.68,2.19,276.08,284.79,289.67,293.64,296.87,299.61,301.35,302.43,301.66,10.77,10.35,10.17,10.01,9.86,9.73,9.61,9.52,9.540000000000001,N/A,N/A +2013,12,17,18,30,95060,93920,92810,34.65,0,1.68,1.97,2.04,2.07,2.08,2.08,2.07,2.06,2.04,294.34000000000003,295.56,296.27,296.82,297.35,297.81,298.32,298.78000000000003,299.7,13.58,13.09,12.86,12.66,12.46,12.280000000000001,12.08,11.9,11.53,N/A,N/A +2013,12,17,19,30,95040,93910,92810,33.33,0,1.25,1.53,1.62,1.67,1.72,1.75,1.78,1.81,1.87,312.61,314.45,315.41,316.19,316.88,317.48,318.08,318.61,319.6,15.25,14.76,14.530000000000001,14.32,14.11,13.92,13.72,13.540000000000001,13.16,N/A,N/A +2013,12,17,20,30,95030,93900,92800,30.740000000000002,0,1.86,2.2,2.2800000000000002,2.31,2.32,2.33,2.32,2.32,2.3000000000000003,316.96,317.40000000000003,317.64,317.88,318.09000000000003,318.27,318.44,318.57,318.76,16.48,15.97,15.75,15.540000000000001,15.33,15.14,14.94,14.75,14.370000000000001,N/A,N/A +2013,12,17,21,30,95000,93870,92780,30.42,0,1.28,1.51,1.56,1.58,1.59,1.6,1.6,1.6,1.59,314.6,316.95,318.32,319.5,320.61,321.6,322.61,323.56,325.5,17.16,16.71,16.5,16.29,16.09,15.9,15.69,15.5,15.120000000000001,N/A,N/A +2013,12,17,22,30,94970,93850,92760,30.990000000000002,0,1.1400000000000001,1.3,1.32,1.31,1.29,1.27,1.24,1.21,1.1500000000000001,315.93,318.61,320.31,321.92,323.64,325.22,327.13,328.94,333.18,17.23,16.88,16.69,16.5,16.3,16.12,15.91,15.72,15.33,N/A,N/A +2013,12,17,23,30,94980,93860,92770,43.79,0,0.23,0.71,0.9,0.85,0.73,0.63,0.52,0.45,0.49,293.63,315.22,327.54,327.93,329.64,331.40000000000003,340.95,351.87,27.830000000000002,15.42,16.47,16.52,16.42,16.27,16.11,15.94,15.780000000000001,15.44,N/A,N/A +2013,12,18,0,30,94990,93860,92760,49.980000000000004,0,0.08,0.22,0.3,0.36,0.4,0.44,0.44,0.43,0.28,285.95,289.23,297.33,312.49,321.91,328.69,328.73,329.61,347.6,13.08,14.450000000000001,14.77,15.030000000000001,15.280000000000001,15.5,15.610000000000001,15.65,15.5,N/A,N/A +2013,12,18,1,30,95010,93870,92770,56,0,0.2,0.5,0.67,0.8300000000000001,0.96,1.07,1.09,1.07,0.81,48.11,20.95,12.42,20.03,27.64,34.86,41.25,46.97,57.99,11.25,13.21,13.73,13.950000000000001,14.02,14.05,14.13,14.24,14.63,N/A,N/A +2013,12,18,2,30,95020,93880,92770,59.47,0,0.29,0.67,0.87,1.1300000000000001,1.31,1.47,1.6400000000000001,1.83,2.33,7.26,61.64,89,102.63,112.64,120.87,126.35000000000001,130.59,134.3,10.120000000000001,11.59,12.030000000000001,12.39,12.68,12.94,13.18,13.41,13.81,N/A,N/A +2013,12,18,3,30,95030,93880,92780,64.1,0,0.03,0.44,1,1.3800000000000001,1.71,2.0100000000000002,2.32,2.64,3.27,119.05,124.05,130.92000000000002,131.96,136.81,142.61,147.4,151.49,156.11,8.85,11.06,11.72,12.06,12.34,12.57,12.81,13.02,13.370000000000001,N/A,N/A +2013,12,18,4,30,95040,93890,92780,68.28,0,0.25,1.1400000000000001,1.79,2.19,2.5300000000000002,2.83,3.17,3.5100000000000002,4.21,118.15,122.89,127.66,131.97,137.61,143.19,147.64000000000001,151.32,155.9,8.05,10.16,10.77,11.09,11.41,11.69,12,12.25,12.61,N/A,N/A +2013,12,18,5,30,95050,93900,92790,70.88,0,0.9,1.9000000000000001,2.31,2.69,3.12,3.54,3.99,4.41,5.17,133.82,138.53,143.54,150.06,155.47,160.27,163.35,165.87,168.97,8.44,9.76,10.08,10.38,10.64,10.86,11.07,11.26,11.58,N/A,N/A +2013,12,18,6,30,95050,93900,92790,73.49,0,1.29,2.29,2.58,2.87,3.21,3.56,3.96,4.34,5.11,141.46,146.96,152.70000000000002,160.19,165.4,169.65,172.13,174.06,176.06,8.28,9.52,9.77,10.03,10.26,10.46,10.64,10.790000000000001,11.05,N/A,N/A +2013,12,18,7,30,95060,93900,92780,75.01,0,1.22,2.38,2.7800000000000002,3.13,3.5100000000000002,3.88,4.2700000000000005,4.66,5.44,162.72,158.52,159.03,162.87,166.02,168.73,170.52,171.92000000000002,173.56,7.68,8.950000000000001,9.22,9.48,9.700000000000001,9.88,10.040000000000001,10.19,10.44,N/A,N/A +2013,12,18,8,30,95040,93880,92770,78.29,0,1.02,2.09,2.5100000000000002,2.9,3.3000000000000003,3.69,4.11,4.53,5.3500000000000005,144.75,152.93,158.33,163.05,166.35,169.07,170.89000000000001,172.38,174.34,6.66,8.040000000000001,8.4,8.72,8.99,9.21,9.42,9.6,9.9,N/A,N/A +2013,12,18,9,30,95010,93850,92730,80.35000000000001,0,0.59,1.61,2.2,2.71,3.22,3.71,4.2,4.69,5.64,142.48,153.84,160.34,163.65,166,167.99,169.27,170.36,171.93,5.76,7.3,7.74,8.11,8.41,8.66,8.870000000000001,9.07,9.41,N/A,N/A +2013,12,18,10,30,94980,93820,92700,82.94,0,0.23,1.03,1.69,2.2800000000000002,2.85,3.42,3.99,4.5600000000000005,5.67,98.16,130.3,151.31,158.15,162.09,165.16,166.95000000000002,168.45000000000002,170.6,4.72,6.58,7.140000000000001,7.5200000000000005,7.83,8.09,8.33,8.540000000000001,8.950000000000001,N/A,N/A +2013,12,18,11,30,94970,93800,92670,85.66,0,0.04,0.7000000000000001,1.6500000000000001,2.24,2.82,3.4,3.98,4.55,5.68,54.9,97.3,143.70000000000002,151.9,156.37,159.86,162.14000000000001,164.11,167.12,3.67,5.99,6.65,6.98,7.22,7.42,7.62,7.8100000000000005,8.2,N/A,N/A +2013,12,18,12,30,94950,93780,92650,85.9,0,0.23,1.11,1.81,2.29,2.8000000000000003,3.3200000000000003,3.87,4.42,5.5200000000000005,136.28,137.14000000000001,141.85,149.81,155.18,159.70000000000002,162.73,165.25,168.84,3.22,5.21,5.8500000000000005,6.28,6.54,6.75,6.94,7.140000000000001,7.5600000000000005,N/A,N/A +2013,12,18,13,30,94920,93750,92620,83.53,0,0.62,1.62,2.14,2.57,3,3.42,3.87,4.33,5.25,139.14000000000001,139.28,143.11,150.11,155.3,159.74,163.05,165.79,169.78,3.42,4.86,5.29,5.65,5.95,6.21,6.44,6.66,7.09,N/A,N/A +2013,12,18,14,30,94900,93730,92600,84.09,0,0.5,1.55,2.14,2.58,3.06,3.54,4.03,4.54,5.55,128.62,133.39000000000001,140.74,150.79,156.53,161.06,163.99,166.27,169.17000000000002,3.46,4.55,5,5.39,5.7,5.96,6.22,6.47,6.98,N/A,N/A +2013,12,18,15,30,94860,93700,92570,66.32000000000001,0,1.43,1.41,1.6600000000000001,2.2800000000000002,2.92,3.56,4.22,4.89,6.2,111.04,114.04,124.55,145.63,154.71,160.81,163.92000000000002,166.31,169.08,6.48,6.2,6.21,6.32,6.5,6.68,6.83,7.01,7.45,N/A,N/A +2013,12,18,16,30,94810,93660,92540,54.89,0,3.02,3.77,4.01,4.16,4.26,4.34,4.44,4.58,5.21,152.28,154.71,156.28,157.69,159.04,160.27,161.67000000000002,163.08,166.24,10.06,9.59,9.38,9.19,9.01,8.85,8.67,8.53,8.27,N/A,N/A +2013,12,18,17,30,94740,93600,92490,48.230000000000004,0,3.87,4.78,5.0600000000000005,5.2,5.28,5.34,5.37,5.41,5.6000000000000005,160.27,160.86,161.21,161.53,161.84,162.14000000000001,162.48,162.87,164.06,12.17,11.620000000000001,11.39,11.18,10.98,10.8,10.620000000000001,10.44,10.11,N/A,N/A +2013,12,18,18,30,94670,93540,92440,41.68,0,4.61,5.67,5.97,6.12,6.18,6.21,6.2,6.19,6.18,164.73,165.24,165.55,165.79,166.03,166.24,166.51,166.78,167.51,14.49,13.89,13.65,13.43,13.23,13.05,12.86,12.68,12.34,N/A,N/A +2013,12,18,19,30,94590,93470,92380,37.300000000000004,0,5.38,6.63,6.97,7.140000000000001,7.21,7.25,7.24,7.23,7.16,166.43,166.73,166.9,167.05,167.20000000000002,167.32,167.49,167.66,168.1,16.080000000000002,15.46,15.21,14.99,14.780000000000001,14.59,14.38,14.200000000000001,13.83,N/A,N/A +2013,12,18,20,30,94510,93390,92300,34.67,0,5.75,7.140000000000001,7.53,7.73,7.83,7.9,7.91,7.92,7.890000000000001,172.68,172.87,173,173.11,173.22,173.31,173.45000000000002,173.57,173.87,17.02,16.43,16.19,15.96,15.75,15.55,15.34,15.15,14.77,N/A,N/A +2013,12,18,21,30,94440,93320,92230,36.82,0,6.19,7.72,8.13,8.35,8.46,8.53,8.55,8.56,8.53,170.34,170.35,170.36,170.37,170.39000000000001,170.4,170.42000000000002,170.44,170.48,17.19,16.67,16.45,16.23,16.02,15.82,15.610000000000001,15.42,15.030000000000001,N/A,N/A +2013,12,18,22,30,94360,93240,92160,42.59,0,5.76,7.34,7.79,8.08,8.26,8.4,8.5,8.58,8.72,168.67000000000002,168.87,168.97,169.04,169.11,169.16,169.20000000000002,169.24,169.33,16.59,16.23,16.04,15.84,15.65,15.46,15.26,15.07,14.700000000000001,N/A,N/A +2013,12,18,23,30,94310,93190,92100,56.44,0,4.07,6.62,7.54,8.31,8.93,9.46,9.870000000000001,10.22,10.75,166.06,167.38,168.21,168.9,169.45000000000002,169.93,170.17000000000002,170.34,170.25,14.58,14.82,14.8,14.74,14.64,14.530000000000001,14.38,14.22,13.88,N/A,N/A +2013,12,19,0,30,94310,93180,92090,62.870000000000005,0,4.86,7.62,8.67,9.57,10.290000000000001,10.9,11.39,11.81,12.44,171.05,171.56,171.89000000000001,172.19,172.33,172.41,172.22,171.97,171.05,13.64,13.950000000000001,13.98,13.99,13.950000000000001,13.91,13.81,13.71,13.43,N/A,N/A +2013,12,19,1,30,94290,93160,92070,68.2,0,4.36,7.2,8.35,9.36,10.19,10.92,11.51,12.02,12.76,156.20000000000002,158.59,160.06,161.07,161.81,162.42000000000002,162.92000000000002,163.39000000000001,164.33,12.85,13.25,13.32,13.35,13.35,13.34,13.290000000000001,13.22,13.030000000000001,N/A,N/A +2013,12,19,2,30,94260,93120,92030,79.19,0,3.19,5.59,6.59,7.49,8.27,8.96,9.64,10.27,11.5,135.87,142.19,146.04,148.72,150.85,152.67000000000002,154.3,155.81,158.5,11.68,11.950000000000001,11.97,11.97,11.94,11.9,11.85,11.8,11.69,N/A,N/A +2013,12,19,3,30,94220,93090,91980,89.71000000000001,0,2.75,5.16,6.1000000000000005,6.94,7.74,8.48,9.31,10.14,11.94,131.48,137.93,142.04,145.33,148.31,151.06,153.49,155.70000000000002,159.19,10.57,10.93,10.950000000000001,10.950000000000001,10.94,10.93,10.92,10.91,10.9,N/A,N/A +2013,12,19,4,30,94180,93040,91940,89.55,0,3.45,5.69,6.65,7.6000000000000005,8.540000000000001,9.44,10.46,11.44,13.41,133.12,140.02,144.63,148.45000000000002,151.58,154.36,156.51,158.39000000000001,161.03,10.6,10.82,10.84,10.85,10.84,10.84,10.83,10.82,10.81,N/A,N/A +2013,12,19,5,30,94120,92990,91890,90.37,0,4.18,6.59,7.65,8.71,9.74,10.72,11.74,12.72,14.6,138.34,145.18,149.54,153.01,155.76,158.13,159.87,161.39000000000001,163.56,10.870000000000001,11.02,11.02,11,10.97,10.950000000000001,10.92,10.91,10.89,N/A,N/A +2013,12,19,6,30,94090,92960,91860,91.73,0,4.12,6.42,7.45,8.49,9.53,10.540000000000001,11.58,12.57,14.52,135.88,143.31,148.22,152.25,155.48,158.27,160.25,161.99,164.38,10.89,10.98,10.94,10.89,10.84,10.790000000000001,10.74,10.700000000000001,10.66,N/A,N/A +2013,12,19,7,30,94070,92940,91840,94.24,0,3.89,6.17,7.140000000000001,8.13,9.120000000000001,10.09,11.15,12.17,14.19,137.63,144.88,149.65,153.73,156.96,159.76,161.76,163.48,165.72,10.6,10.73,10.71,10.66,10.620000000000001,10.57,10.540000000000001,10.52,10.5,N/A,N/A +2013,12,19,8,30,94020,92890,91790,93.75,0,4.05,6.5600000000000005,7.72,8.84,9.9,10.9,11.870000000000001,12.790000000000001,14.52,142.16,149.34,153.92000000000002,157.31,159.8,161.84,163.23,164.44,166.12,11.01,11.17,11.16,11.13,11.08,11.040000000000001,10.99,10.96,10.93,N/A,N/A +2013,12,19,9,30,93980,92840,91750,93.54,0,4.22,6.72,7.84,8.92,9.92,10.83,11.73,12.57,14.13,148.58,153.73,157.02,159.5,161.32,162.8,163.8,164.65,165.82,10.96,11.09,11.07,11.03,10.98,10.93,10.89,10.86,10.83,N/A,N/A +2013,12,19,10,30,93940,92800,91710,95.44,0,4.73,7.16,8.22,9.16,9.97,10.69,11.34,11.94,13.08,155.28,157.92000000000002,159.61,160.91,161.97,162.89000000000001,163.62,164.26,165.32,10.88,10.870000000000001,10.790000000000001,10.700000000000001,10.6,10.51,10.42,10.33,10.17,N/A,N/A +2013,12,19,11,30,93900,92770,91680,98.23,0,4.14,5.87,6.54,7.11,7.59,8.01,8.43,8.83,9.66,162.73,162.33,162.19,162.24,162.41,162.6,162.87,163.12,163.65,11.22,11.01,10.9,10.81,10.72,10.620000000000001,10.52,10.43,10.23,N/A,N/A +2013,12,19,12,30,93890,92760,91660,99.33,0,3.89,5.48,6.1000000000000005,6.640000000000001,7.11,7.54,7.94,8.33,9.11,166.64000000000001,165.95000000000002,165.62,165.45000000000002,165.4,165.4,165.48,165.56,165.78,10.83,10.68,10.58,10.47,10.36,10.26,10.14,10.02,9.76,N/A,N/A +2013,12,19,13,30,93890,92750,91650,99.34,0,4.04,5.49,6.01,6.42,6.75,7.03,7.28,7.5,7.92,164.52,165.03,165.37,165.70000000000002,166.05,166.39000000000001,166.77,167.13,167.89000000000001,10.620000000000001,10.46,10.370000000000001,10.25,10.14,10.040000000000001,9.93,9.82,9.59,N/A,N/A +2013,12,19,14,30,93890,92750,91650,99.31,0,3.5,4.75,5.23,5.61,5.9,6.13,6.29,6.41,6.53,155.36,157.12,158.46,159.83,161.31,162.73,164.51,166.22,169.75,10.53,10.370000000000001,10.28,10.18,10.08,9.99,9.9,9.81,9.620000000000001,N/A,N/A +2013,12,19,15,30,93880,92740,91640,92.91,0,2.75,3.43,3.67,3.87,4.12,4.37,4.87,5.3100000000000005,5.97,170.94,170.45000000000002,170.24,170.1,170.16,170.29,170.9,171.52,172.47,10.82,10.5,10.32,10.11,9.9,9.700000000000001,9.6,9.51,9.33,N/A,N/A +2013,12,19,16,30,93840,92710,91610,88.44,0,3.19,4,4.28,4.46,4.58,4.67,4.74,4.8100000000000005,4.98,164.29,164.66,164.99,165.39000000000001,165.83,166.26,166.81,167.39000000000001,169.03,11.63,11.23,11.03,10.82,10.620000000000001,10.43,10.22,10.03,9.67,N/A,N/A +2013,12,19,17,30,93750,92620,91530,79.45,0,4.48,5.45,5.7,5.8100000000000005,5.84,5.86,5.83,5.8,5.72,161.49,161.53,161.59,161.65,161.69,161.73,161.77,161.82,161.98,12.75,12.15,11.91,11.69,11.49,11.3,11.11,10.92,10.55,N/A,N/A +2013,12,19,18,30,93760,92640,91560,72.88,0,3.6,4.36,4.61,4.72,4.7700000000000005,4.79,4.79,4.78,4.73,169.85,170.02,170.04,170.16,170.33,170.52,170.82,171.12,172.08,14.38,13.790000000000001,13.540000000000001,13.31,13.11,12.92,12.72,12.540000000000001,12.17,N/A,N/A +2013,12,19,19,30,93680,92570,91490,57.86,0,4.98,6.09,6.42,6.57,6.640000000000001,6.67,6.66,6.640000000000001,6.57,156.33,157.41,158.17000000000002,158.81,159.39000000000001,159.92000000000002,160.5,161.05,162.38,16.87,16.25,16,15.77,15.57,15.38,15.18,15.01,14.65,N/A,N/A +2013,12,19,20,30,93600,92500,91430,55.06,0,5,6.09,6.38,6.49,6.53,6.55,6.5200000000000005,6.49,6.390000000000001,160.5,160.75,160.95000000000002,161.19,161.45000000000002,161.71,162.05,162.39000000000001,163.33,17.96,17.35,17.11,16.89,16.68,16.48,16.29,16.1,15.73,N/A,N/A +2013,12,19,21,30,93580,92480,91410,54.77,0,5.53,6.68,7.05,7.17,7.23,7.24,7.2,7.16,7.0600000000000005,162.92000000000002,163.31,163.65,164.01,164.37,164.74,165.19,165.62,166.92000000000002,18.490000000000002,17.97,17.75,17.53,17.330000000000002,17.14,16.96,16.78,16.43,N/A,N/A +2013,12,19,22,30,93520,92420,91350,55.31,0,4.8500000000000005,6.07,6.44,6.65,6.8,6.890000000000001,6.96,7,7.1000000000000005,151.97,152.88,153.5,154.03,154.57,155.09,155.57,156.01,157.13,18.32,17.93,17.740000000000002,17.54,17.35,17.16,16.97,16.78,16.4,N/A,N/A +2013,12,19,23,30,93530,92420,91350,69.89,0,3.69,5.75,6.41,6.93,7.36,7.73,8.06,8.34,8.78,130.86,137.53,141.85,145.55,148.53,151.04,153.05,154.81,157.78,16.29,16.42,16.36,16.25,16.12,15.98,15.83,15.69,15.49,N/A,N/A +2013,12,20,0,30,93570,92460,91380,80.12,0,3.5700000000000003,5.57,6.2700000000000005,6.94,7.53,8.06,8.56,9.02,9.71,124.2,132.15,137.94,142.94,146.86,150.08,152.43,154.43,157.13,14.52,14.86,14.89,14.870000000000001,14.83,14.780000000000001,14.74,14.71,14.75,N/A,N/A +2013,12,20,1,30,93590,92480,91400,88.14,0,2.92,5.23,6.17,6.99,7.7,8.32,8.89,9.42,10.3,136.06,141.66,145.74,148.51,150.77,152.67000000000002,154.23,155.61,157.79,13.34,13.82,13.86,13.870000000000001,13.86,13.84,13.82,13.8,13.8,N/A,N/A +2013,12,20,2,30,93580,92460,91370,93.32000000000001,0,2.19,4.2700000000000005,4.95,5.45,5.97,6.48,7.09,7.71,9.02,113.47,122.18,128.37,133.93,138.76,143.12,146.70000000000002,149.95000000000002,155.05,12.4,13.01,13.040000000000001,13.01,12.97,12.93,12.92,12.91,12.94,N/A,N/A +2013,12,20,3,30,93560,92440,91350,95.19,0,1.54,3.45,3.97,3.95,4.01,4.1,4.64,5.24,6.8100000000000005,103.77,110.59,116.41,121.98,128.44,134.81,142.4,149.78,161.82,11.84,12.43,12.36,12.15,12.01,11.9,11.82,11.89,12.540000000000001,N/A,N/A +2013,12,20,4,30,93560,92440,91360,94.95,0,1.93,3.5,4.04,4.62,5.34,6.18,7.1000000000000005,8,9.52,110.42,121.89,131.37,142.04,150.1,156.78,160.54,163.58,166.45000000000002,11.870000000000001,12.55,12.6,12.72,12.86,13.01,13.19,13.35,13.72,N/A,N/A +2013,12,20,5,30,93550,92430,91350,95.34,0,1.8,3.11,3.59,4.39,5.22,6.09,6.94,7.78,9.370000000000001,103.49000000000001,123.09,136.21,146.45000000000002,153.44,158.46,161.48,164,167,11.75,12.72,12.91,13.08,13.23,13.35,13.49,13.620000000000001,13.93,N/A,N/A +2013,12,20,6,30,93560,92440,91360,95.48,0,2.13,3.16,3.4,3.97,4.64,5.36,6.08,6.78,8.120000000000001,100.73,127.37,144.86,163.76,172.51,176.91,178.68,180.04,181.08,11.52,12.48,12.700000000000001,12.94,13.06,13.15,13.26,13.370000000000001,13.66,N/A,N/A +2013,12,20,7,30,93600,92480,91390,94.73,0,1.48,1.81,1.77,2.02,2.37,2.7800000000000002,3.2800000000000002,3.81,4.91,119.94,144.75,157.97,169.74,177.01,182.17000000000002,184.31,185.94,187.01,11.23,12.42,12.59,12.52,12.44,12.36,12.32,12.3,12.38,N/A,N/A +2013,12,20,8,30,93610,92490,91400,97.24000000000001,0,1.57,2.07,2.06,2.2,2.47,2.79,3.2,3.62,4.5,153.57,176.82,187.64000000000001,195.21,197.63,198.27,197.07,195.95000000000002,194.35,10.42,11.66,11.870000000000001,11.82,11.76,11.69,11.700000000000001,11.72,11.92,N/A,N/A +2013,12,20,9,30,93600,92470,91380,99.63,0,0.39,0.76,0.96,1.21,1.54,1.93,2.44,2.98,4.18,122.52,156.18,178.23,197.67000000000002,204.53,206.82,207.55,208.81,213.86,9.83,10.19,10.35,10.51,10.67,10.83,11.16,11.56,12.92,N/A,N/A +2013,12,20,10,30,93580,92450,91360,99.46000000000001,0,1.36,1.16,0.66,0.29,0.46,1.01,1.81,2.84,4.78,93.96000000000001,97.41,115.07000000000001,132.8,168.26,247.58,247.93,247.9,245.3,10.1,10.02,9.950000000000001,9.870000000000001,9.89,9.950000000000001,10.85,11.75,13.76,N/A,N/A +2013,12,20,11,30,93610,92480,91390,99.29,0,2.89,3.79,3.68,3.08,2.2800000000000002,1.6600000000000001,1.54,1.6500000000000001,3.2600000000000002,113.74000000000001,113.09,113.78,115.59,124.39,132.28,164.99,189.1,219.29,10.040000000000001,9.83,9.9,10.19,10.5,10.78,11.42,12.15,14.27,N/A,N/A +2013,12,20,12,30,93610,92480,91390,99.32000000000001,0,2.62,3.6,3.39,2.69,2.0300000000000002,1.55,1.27,1.26,2.43,123.62,119.60000000000001,119.9,123.05,132.04,140.05,174.22,198.24,235.49,10.01,9.9,10.26,11.01,11.64,12.18,12.75,13.530000000000001,15.8,N/A,N/A +2013,12,20,13,30,93600,92470,91390,90.97,0,2.13,3.13,2.87,2.43,2.04,1.75,1.6400000000000001,1.67,2.43,134.61,133.9,137.65,144.48,153.43,161.19,167.38,174.13,193.94,11.65,12.18,12.48,12.93,13.25,13.51,13.64,13.81,14.72,N/A,N/A +2013,12,20,14,30,93590,92470,91390,90.71000000000001,0,1.74,2.67,2.29,1.6600000000000001,1.18,0.87,1.11,1.45,2.69,125.41,125.79,130.91,138.35,152.06,163.07,180.06,195.23000000000002,211.31,11.74,12.540000000000001,12.94,13.39,13.59,13.700000000000001,13.82,14.13,15.72,N/A,N/A +2013,12,20,15,30,93590,92470,91390,78.34,0,1.28,1.8800000000000001,1.75,1.49,1.33,1.22,1.46,1.75,2.56,105.08,115.26,124.22,133.81,144.36,153.82,164.66,175.76,197.08,12.99,13.3,13.47,13.63,13.74,13.83,14.22,14.67,16,N/A,N/A +2013,12,20,16,30,93590,92480,91400,71.16,0,1.1400000000000001,1.18,1.23,1.42,1.51,1.53,1.55,1.59,1.9100000000000001,95.49,100.42,107,121.66,133.29,142.25,154.64000000000001,167.11,198.17000000000002,14.34,14.06,13.99,14.05,14.17,14.32,14.71,15.14,16.39,N/A,N/A +2013,12,20,17,30,93530,92420,91350,61.29,0,1.08,1.35,1.44,1.5,1.56,1.62,1.87,2.12,2.29,128.91,131.43,133.67000000000002,136.22,139.33,142.68,153.38,164.98,185.99,16.36,16,15.83,15.65,15.47,15.290000000000001,15.18,15.200000000000001,16.13,N/A,N/A +2013,12,20,18,30,93440,92340,91270,51.81,0,1.74,1.95,1.94,1.8800000000000001,1.8,1.72,1.6500000000000001,1.6,1.46,119.34,124.25,127.59,130.92000000000002,134.94,138.70000000000002,145.08,151.03,165.26,18.12,17.71,17.53,17.36,17.2,17.05,16.9,16.77,16.59,N/A,N/A +2013,12,20,19,30,93420,92330,91270,40.59,0,2.38,2.7800000000000002,2.87,2.87,2.85,2.8000000000000003,2.74,2.68,2.5300000000000002,137.26,139.5,140.99,142.39000000000001,143.73,145.01,146.43,147.74,150.87,20.31,19.85,19.64,19.43,19.23,19.05,18.87,18.7,18.34,N/A,N/A +2013,12,20,20,30,93350,92260,91200,45.980000000000004,0,2.95,3.54,3.69,3.74,3.75,3.74,3.71,3.68,3.59,149.98,150.96,151.56,152.04,152.51,152.95000000000002,153.46,153.94,155.19,20.62,20.14,19.93,19.72,19.52,19.330000000000002,19.14,18.96,18.59,N/A,N/A +2013,12,20,21,30,93290,92200,91140,43.37,0,4.05,4.96,5.22,5.33,5.39,5.42,5.41,5.4,5.3500000000000005,132.25,132.86,133.25,133.52,133.74,133.93,134.12,134.3,134.67000000000002,20.89,20.39,20.17,19.95,19.75,19.55,19.35,19.16,18.78,N/A,N/A +2013,12,20,22,30,93270,92180,91120,47.84,0,4.66,5.91,6.3,6.5200000000000005,6.67,6.7700000000000005,6.84,6.88,6.93,125.14,125.46000000000001,125.57000000000001,125.56,125.51,125.44,125.34,125.24000000000001,124.99000000000001,20.47,20.09,19.900000000000002,19.69,19.5,19.3,19.1,18.91,18.52,N/A,N/A +2013,12,20,23,30,93250,92150,91090,70.62,0,2.17,4.39,5.19,5.76,6.2,6.54,6.8,7.03,7.38,132.67000000000002,133.55,133.64000000000001,132.52,131.34,130.15,129.13,128.21,126.60000000000001,18.35,18.95,18.96,18.89,18.77,18.63,18.45,18.29,17.92,N/A,N/A +2013,12,21,0,30,93220,92120,91060,72.88,0,1.24,3.1,4.03,4.7,5.2700000000000005,5.78,6.2700000000000005,6.71,7.46,136.62,138.22,138.18,136,133.84,131.75,130.21,128.93,127.87,17.650000000000002,17.93,17.92,17.89,17.85,17.82,17.78,17.740000000000002,17.61,N/A,N/A +2013,12,21,1,30,93210,92120,91060,70.32000000000001,0,3.98,6.2700000000000005,7.22,7.99,8.58,9.06,9.39,9.67,9.96,141.07,145.38,147.74,149.27,150.49,151.51,152.25,152.85,153.1,18.11,18.14,18.1,18.06,17.990000000000002,17.92,17.82,17.72,17.47,N/A,N/A +2013,12,21,2,30,93310,92220,91150,77.95,0,1.6400000000000001,2.57,2.7,2.91,3.14,3.42,3.77,4.14,5.04,299.88,276.33,258.71,241.9,227.91,215.44,205.14000000000001,195.73000000000002,182.62,17.25,17.400000000000002,17.25,17.02,16.8,16.59,16.37,16.19,15.82,N/A,N/A +2013,12,21,3,30,93360,92260,91190,80.78,0,2.96,3.85,3.96,3.91,3.99,4.13,4.3,4.46,4.65,289.09000000000003,281.98,275.12,265.26,256.21,247.73000000000002,241.58,236.36,229.04,16.830000000000002,16.69,16.56,16.37,16.18,16,15.82,15.65,15.3,N/A,N/A +2013,12,21,4,30,93270,92160,91090,87.34,0,1.53,1.67,1.32,0.77,0.23,0.05,0.17,0.6,1.17,93.15,78.57000000000001,67.12,57.07,45.78,41.85,0.67,233.42000000000002,229.83,15.5,15.27,15.15,15.07,15,14.94,14.88,14.81,14.66,N/A,N/A +2013,12,21,5,30,93200,92100,91030,94.13,0,2.06,2.3000000000000003,2.31,2.38,2.67,3.13,3.59,4.03,4.72,95.02,114.31,130.07,150.59,163.9,174.1,180.04,185.04,191.96,14.92,14.91,14.92,14.93,14.96,15,15.01,15.01,14.9,N/A,N/A +2013,12,21,6,30,93140,92030,90960,97.22,0,2.09,3.86,4.34,4.65,4.87,5.03,5.22,5.42,5.97,118.3,121.61,124.45,127.94,132.59,137.61,143.69,149.45000000000002,160.13,14.49,14.71,14.61,14.49,14.42,14.38,14.44,14.5,14.61,N/A,N/A +2013,12,21,7,30,93130,92030,90960,95.88,0,1.74,3.48,4.15,4.7700000000000005,5.28,5.73,6.0600000000000005,6.34,6.5600000000000005,159.5,165.20000000000002,169.11,171.62,173.71,175.51,177.31,179.05,182.98,14.9,15.13,15.07,15.01,14.94,14.88,14.83,14.780000000000001,14.71,N/A,N/A +2013,12,21,8,30,93070,91970,90900,88.11,0,4.43,6.8100000000000005,7.640000000000001,8.28,8.77,9.17,9.52,9.85,10.53,194.48000000000002,194.43,194.77,195.79,197.36,199.08,201.34,203.53,208.17000000000002,14.96,15.22,15.27,15.290000000000001,15.3,15.3,15.280000000000001,15.25,15.15,N/A,N/A +2013,12,21,9,30,93030,91920,90850,88.76,0,4.79,7.38,8.34,9.19,9.92,10.58,11.19,11.74,12.74,187.71,189.51,190.78,192.16,193.73000000000002,195.28,197.22,199.12,203.41,14.26,14.52,14.57,14.61,14.63,14.63,14.6,14.57,14.44,N/A,N/A +2013,12,21,10,30,92980,91870,90800,81.85000000000001,0,4.7700000000000005,7.140000000000001,8.09,8.91,9.6,10.200000000000001,10.790000000000001,11.32,12.200000000000001,204.9,206.01,207.16,208.67000000000002,210.71,212.81,215.78,218.70000000000002,224.92000000000002,14.530000000000001,14.6,14.58,14.55,14.5,14.450000000000001,14.39,14.35,14.34,N/A,N/A +2013,12,21,11,30,93030,91920,90850,80.61,0,4.48,6.86,7.87,8.74,9.47,10.11,10.65,11.120000000000001,11.84,222.28,222.16,222.08,222.38,222.84,223.35,224.06,224.77,226.47,14.25,14.290000000000001,14.24,14.18,14.11,14.05,13.98,13.93,13.85,N/A,N/A +2013,12,21,12,30,93040,91920,90850,86.67,0,4.32,7.23,8.42,9.38,9.99,10.4,10.42,10.38,10.19,210.27,213.39000000000001,215.17000000000002,216.55,217.8,218.91,220.66,222.6,228.68,13.06,13.5,13.620000000000001,13.700000000000001,13.73,13.74,13.69,13.620000000000001,13.43,N/A,N/A +2013,12,21,13,30,93060,91940,90860,90.81,0,4.8,7.63,8.58,9.27,9.76,10.14,10.370000000000001,10.52,10.5,251.45000000000002,252.78,253.47,254,254.82,255.71,257.49,259.73,266.94,12,12.36,12.47,12.540000000000001,12.530000000000001,12.5,12.38,12.24,11.77,N/A,N/A +2013,12,21,14,30,93090,91960,90870,70.19,0,4.46,6.63,7.28,7.7700000000000005,8.27,8.73,9.26,9.74,10.6,263.04,269.32,273.27,276.92,279.45,281.27,281.83,281.73,279.75,10.97,11.03,11,10.950000000000001,10.85,10.73,10.58,10.41,10.07,N/A,N/A +2013,12,21,15,30,93260,92130,91040,54.81,0,6.19,7.59,8.14,8.44,8.68,8.870000000000001,9.05,9.21,9.56,261.47,262.26,262.81,263.48,264.13,264.81,265.53000000000003,266.21,267.67,11.61,11.25,11.06,10.84,10.65,10.46,10.26,10.08,9.700000000000001,N/A,N/A +2013,12,21,16,30,93150,92020,90930,37.12,0,7.05,9.24,9.86,10.3,10.6,10.85,11.05,11.21,11.47,268.01,268.09000000000003,268.15,268.19,268.22,268.24,268.26,268.27,268.29,12.030000000000001,11.53,11.3,11.09,10.870000000000001,10.67,10.47,10.26,9.870000000000001,N/A,N/A +2013,12,21,17,30,93120,92000,90910,35.19,0,8.51,11.11,11.65,12.040000000000001,12.31,12.52,12.69,12.83,13.06,262.49,262.87,263.05,263.2,263.33,263.44,263.54,263.63,263.8,12.69,12.18,11.93,11.72,11.49,11.290000000000001,11.08,10.88,10.47,N/A,N/A +2013,12,21,18,30,93120,92000,90910,34.08,0,7.69,10.11,10.8,11.290000000000001,11.620000000000001,11.9,12.11,12.290000000000001,12.56,257.91,258.05,258.17,258.27,258.36,258.43,258.5,258.56,258.67,13.59,12.98,12.72,12.5,12.26,12.06,11.84,11.64,11.23,N/A,N/A +2013,12,21,19,30,93110,92000,90910,34.75,0,9.14,11.81,12.5,12.96,13.26,13.5,13.69,13.83,14.05,263.65,263.73,263.83,263.9,263.96,264.01,264.05,264.1,264.18,14.24,13.620000000000001,13.370000000000001,13.15,12.91,12.700000000000001,12.49,12.280000000000001,11.870000000000001,N/A,N/A +2013,12,21,20,30,93090,91970,90890,32.72,0,9.6,12.5,13.26,13.790000000000001,14.16,14.46,14.68,14.870000000000001,15.16,262.52,262.69,262.78000000000003,262.87,262.96,263.04,263.13,263.21,263.36,14.9,14.35,14.1,13.88,13.66,13.450000000000001,13.23,13.030000000000001,12.620000000000001,N/A,N/A +2013,12,21,21,30,93160,92050,90970,29.05,0,9.03,11.74,12.72,13.370000000000001,13.86,14.24,14.540000000000001,14.8,15.200000000000001,265.78000000000003,265.73,265.74,265.75,265.76,265.76,265.77,265.77,265.78000000000003,15.540000000000001,15.07,14.86,14.64,14.42,14.22,14.01,13.81,13.41,N/A,N/A +2013,12,21,22,30,93200,92090,91010,28.64,0,9.06,11.76,12.68,13.3,13.77,14.15,14.46,14.72,15.14,266.16,266.28000000000003,266.38,266.47,266.53000000000003,266.59000000000003,266.62,266.66,266.7,15.5,15.21,15.030000000000001,14.84,14.65,14.46,14.26,14.07,13.68,N/A,N/A +2013,12,21,23,30,93230,92110,91030,33.72,0,5.7,8.67,9.89,10.94,11.8,12.56,13.22,13.790000000000001,14.72,260.16,260.39,260.6,260.89,261.21,261.52,261.83,262.13,262.65,14.18,14.36,14.36,14.31,14.22,14.120000000000001,13.98,13.84,13.52,N/A,N/A +2013,12,22,0,30,93320,92200,91120,44.49,0,0.93,2.06,2.7600000000000002,3.62,4.46,5.28,6.1000000000000005,6.94,8.63,223.85,250.63,266.15,268.98,270.55,271.5,271.78000000000003,272,272.16,12.23,13.25,13.3,13.16,13.05,12.94,12.82,12.71,12.47,N/A,N/A +2013,12,22,1,30,93380,92260,91170,47.74,0,0.33,0.58,0.78,1.34,1.99,2.72,3.49,4.3100000000000005,5.99,112.28,186.04,225.68,243.51,254.26000000000002,259.94,262.19,264.03000000000003,265.65,11.36,12.24,12.24,12.200000000000001,12.11,12.02,11.9,11.790000000000001,11.58,N/A,N/A +2013,12,22,2,30,93440,92320,91230,52.51,0,1.72,4.26,5.89,7.62,9.39,11.19,12.39,13.44,14.94,297.69,283.16,273.84000000000003,270.95,269.96,269.97,271.1,272.33,275.19,10.15,11.17,11.38,11.64,11.83,11.97,12.09,12.17,12.18,N/A,N/A +2013,12,22,3,30,93520,92400,91310,42.76,0,5.34,8.43,9.82,10.94,11.82,12.540000000000001,13.17,13.75,14.98,258.73,261.59000000000003,263.97,266.64,269.22,271.66,273.84000000000003,275.77,278.56,11.3,11.89,12.1,12.25,12.31,12.34,12.280000000000001,12.200000000000001,11.96,N/A,N/A +2013,12,22,4,30,93570,92450,91350,45.14,0,5.13,7.98,9.06,9.91,10.75,11.540000000000001,12.450000000000001,13.35,15.31,252.66,257.61,262.06,267.38,271.64,275.3,277.93,280.21,283.58,10.58,11.33,11.56,11.66,11.67,11.66,11.64,11.6,11.39,N/A,N/A +2013,12,22,5,30,93670,92540,91450,49.84,0,4.68,7.71,9.3,10.68,11.84,12.83,13.780000000000001,14.68,16.38,265.83,269.67,273.02,276.42,279.24,281.63,283.23,284.54,285.99,9.59,10.34,10.66,10.84,10.93,10.96,10.92,10.88,10.73,N/A,N/A +2013,12,22,6,30,93720,92590,91490,51.93,0,4.4,7.32,8.78,10.26,11.91,13.620000000000001,15.07,16.4,18.55,267.77,271.98,275.85,280.51,283.48,285.69,286.57,287.26,287.92,9.31,10.18,10.48,10.59,10.63,10.64,10.63,10.620000000000001,10.48,N/A,N/A +2013,12,22,7,30,93790,92650,91550,53.47,0,4.3500000000000005,7.46,8.76,9.75,10.56,11.26,12.3,13.34,15.5,264.16,269.43,273.53000000000003,277.5,281.43,285.04,287.38,289.09000000000003,290.3,8.76,9.59,9.85,9.99,9.98,9.94,9.88,9.8,9.61,N/A,N/A +2013,12,22,8,30,93860,92710,91610,57.52,0,3.5300000000000002,6.2700000000000005,7.51,8.71,9.82,10.86,11.86,12.81,14.72,271.73,271.65,272.51,274.94,278.14,281.53000000000003,284.48,286.99,290.13,7.45,8.35,8.64,8.86,8.99,9.08,9.09,9.08,9,N/A,N/A +2013,12,22,9,30,93910,92760,91660,63.95,0,2.67,5.39,6.57,7.72,8.55,9.23,9.700000000000001,10.24,11.84,270.57,268.46,268.5,270.49,273.97,277.67,281.71,285.18,290.03000000000003,6.65,7.84,8.11,8.31,8.3,8.23,8.06,7.930000000000001,7.84,N/A,N/A +2013,12,22,10,30,93990,92840,91730,61.63,0,3.92,6.66,7.8500000000000005,8.88,9.71,10.43,11.16,11.92,13.61,283.88,282.35,282.25,283.35,285.49,287.8,289.89,291.51,293.28000000000003,5.99,6.890000000000001,7.25,7.49,7.67,7.8,7.9,7.98,8.02,N/A,N/A +2013,12,22,11,30,94140,92980,91860,66.06,0,1.18,1.25,1.42,2.91,4.19,5.11,5.99,6.87,8.57,39.74,328.97,298.82,281.83,273.75,273.63,275.17,276.96,281.73,5.53,6.11,6,6.05,6.07,6.08,6.140000000000001,6.2,6.390000000000001,N/A,N/A +2013,12,22,12,30,94190,93030,91910,73.19,0,1.69,3.64,4.46,5.16,5.84,6.47,7.08,7.76,9.33,276.66,282.1,286.25,290.32,294.23,297.65000000000003,300.11,301.78000000000003,303.13,4.13,5.29,5.64,5.92,6.11,6.24,6.32,6.38,6.46,N/A,N/A +2013,12,22,13,30,94380,93210,92070,80.73,0,4.07,6.23,6.86,7.19,7.62,8.09,8.73,9.26,9.78,13.08,16.59,19.650000000000002,23.01,26.6,29.61,31.29,31.87,30.55,3.33,3.5500000000000003,3.46,3.27,2.85,2.43,1.94,1.58,1.33,N/A,N/A +2013,12,22,14,30,94500,93320,92170,77.89,0,2.81,4.18,4.76,5.25,5.65,5.99,6.29,6.5600000000000005,7.01,18.240000000000002,17.91,18.06,18.39,18.03,17.61,17.07,16.45,15.26,1.77,1.52,1.35,1.19,1,0.8200000000000001,0.64,0.46,0.08,N/A,N/A +2013,12,22,15,30,94630,93450,92300,66.87,0,3.21,4.04,4.3,4.46,4.55,4.63,4.68,4.72,4.78,22.330000000000002,21.73,21.42,21.150000000000002,20.8,20.45,20.06,19.64,18.740000000000002,2.34,1.87,1.6500000000000001,1.45,1.24,1.05,0.85,0.65,0.27,N/A,N/A +2013,12,22,16,30,94710,93540,92400,56.44,0,3.45,4.26,4.54,4.7,4.8100000000000005,4.89,4.95,5,5.08,5.2,4.46,4.01,3.65,3.31,3,2.7,2.4,1.77,4.14,3.6,3.36,3.15,2.93,2.74,2.54,2.35,1.96,N/A,N/A +2013,12,22,17,30,94750,93580,92450,50.870000000000005,0,3.62,4.46,4.73,4.88,4.99,5.07,5.12,5.17,5.24,0.09,358.88,358.25,357.75,357.27,356.84000000000003,356.43,356.04,355.28000000000003,5.78,5.2,4.94,4.71,4.48,4.28,4.07,3.87,3.48,N/A,N/A +2013,12,22,18,30,94810,93640,92510,45.550000000000004,0,4.5600000000000005,5.5600000000000005,5.89,6.0600000000000005,6.17,6.25,6.3,6.34,6.4,335.22,335.57,335.82,335.98,336.1,336.19,336.27,336.33,336.41,6.7,6.07,5.8,5.5600000000000005,5.34,5.13,4.92,4.72,4.32,N/A,N/A +2013,12,22,19,30,94850,93690,92560,43.730000000000004,0,4.28,5.22,5.55,5.74,5.86,5.96,6.0200000000000005,6.08,6.16,330.85,331.04,331.24,331.37,331.47,331.56,331.64,331.7,331.83,7.84,7.23,6.96,6.72,6.48,6.28,6.0600000000000005,5.86,5.46,N/A,N/A +2013,12,22,20,30,94860,93710,92580,42.17,0,4.86,5.91,6.29,6.48,6.61,6.7,6.7700000000000005,6.8100000000000005,6.88,324.09000000000003,324.74,325.17,325.49,325.76,326,326.23,326.44,326.82,8.61,8,7.73,7.49,7.2700000000000005,7.0600000000000005,6.84,6.640000000000001,6.24,N/A,N/A +2013,12,22,21,30,94870,93710,92590,41.230000000000004,0,4.64,5.73,6.09,6.3,6.43,6.53,6.61,6.67,6.76,331.76,332.01,332.17,332.28000000000003,332.37,332.45,332.52,332.59000000000003,332.7,9.040000000000001,8.49,8.24,8.02,7.79,7.59,7.38,7.18,6.7700000000000005,N/A,N/A +2013,12,22,22,30,94890,93730,92600,41.22,0,4.57,5.68,6.01,6.2,6.32,6.41,6.47,6.5200000000000005,6.57,329.72,330.7,331.29,331.78000000000003,332.21,332.58,332.96,333.3,333.96,9.02,8.58,8.370000000000001,8.16,7.95,7.76,7.55,7.3500000000000005,6.95,N/A,N/A +2013,12,22,23,30,94920,93760,92630,47.88,0,2.64,4.34,4.82,5.15,5.38,5.55,5.68,5.79,5.95,359.96,359.18,358.53000000000003,357.87,357.29,356.79,356.3,355.84000000000003,354.87,8.06,8.120000000000001,8,7.8500000000000005,7.66,7.48,7.28,7.08,6.69,N/A,N/A +2013,12,23,0,30,95000,93830,92710,50.21,0,2.7600000000000002,5.2,5.94,6.36,6.59,6.74,6.78,6.76,6.6000000000000005,12.05,13.16,13.98,14.75,15.23,15.56,15.620000000000001,15.41,13.8,6.63,7.22,7.26,7.21,7.08,6.94,6.76,6.58,6.21,N/A,N/A +2013,12,23,1,30,95060,93890,92760,54.79,0,2.2600000000000002,4.21,4.78,5.23,5.63,5.96,6.2,6.33,6.3500000000000005,29.72,27.490000000000002,26.580000000000002,26.23,25.92,25.64,25.37,25.080000000000002,23.71,5.55,6.23,6.32,6.37,6.390000000000001,6.390000000000001,6.3500000000000005,6.26,5.99,N/A,N/A +2013,12,23,2,30,95120,93950,92810,55.19,0,2.19,3.56,3.87,4.19,4.61,5.0200000000000005,5.3100000000000005,5.49,5.6000000000000005,23.13,27.080000000000002,29.85,32.480000000000004,33.21,33.3,32.32,30.82,26.82,5.01,5.58,5.57,5.55,5.66,5.78,5.9,5.95,5.86,N/A,N/A +2013,12,23,3,30,95170,93990,92860,58.88,0,1.42,2.47,2.9,3.47,3.93,4.33,4.6000000000000005,4.79,4.95,9.120000000000001,19.18,25.37,30.29,33.3,35.42,35.89,35.76,33.93,4.09,4.63,4.67,4.76,4.91,5.0600000000000005,5.18,5.26,5.3,N/A,N/A +2013,12,23,4,30,95210,94030,92890,60.9,0,0.51,1.21,1.59,1.94,2.27,2.58,2.89,3.17,3.64,358.64,14.99,25.29,31.57,35.88,39.300000000000004,41.1,42.050000000000004,41.64,3.36,3.95,3.94,3.9,3.88,3.88,3.92,3.97,4.11,N/A,N/A +2013,12,23,5,30,95250,94070,92920,66.19,0,0.22,0.74,1.09,1.36,1.56,1.75,1.96,2.21,2.77,277.03000000000003,331.69,4.26,16,25.900000000000002,34.51,41.52,46.800000000000004,52.57,2.3000000000000003,3.36,3.5,3.47,3.5100000000000002,3.5700000000000003,3.69,3.8200000000000003,4.1,N/A,N/A +2013,12,23,6,30,95300,94120,92970,72.31,0,0.2,0.54,0.8200000000000001,1.2,1.44,1.6300000000000001,1.77,1.93,2.3000000000000003,215.91,327.39,19.86,28.13,34.77,41.160000000000004,48.81,55.86,66.82000000000001,1.33,2.64,2.93,3,3,3.0300000000000002,3.13,3.2600000000000002,3.58,N/A,N/A +2013,12,23,7,30,95360,94170,93020,76.85000000000001,0,0.43,0.9,0.92,0.76,0.51,0.32,0.16,0.23,0.85,243.91,257.58,273.21,288.07,301.62,340.46,80.28,110.19,132.42000000000002,0.66,1.92,2.2,2.36,2.49,2.64,2.85,3.0500000000000003,3.41,N/A,N/A +2013,12,23,8,30,95390,94200,93050,80.18,0,0.26,0.92,1.34,1.58,1.6,1.6,1.59,1.67,2.0100000000000002,307.06,278.34000000000003,258.98,251.07,246.57,242.96,239.23000000000002,235.25,226.29,-0.43,0.9500000000000001,1.45,1.82,2.09,2.31,2.47,2.64,2.96,N/A,N/A +2013,12,23,9,30,95430,94230,93080,78.21000000000001,0,0.23,0.16,0.21,0.43,0.66,0.92,1.1500000000000001,1.36,1.7,329.18,86.12,116.4,144.85,153.29,157.57,159.21,161.04,165.61,-0.65,0.62,1.07,1.3900000000000001,1.6,1.77,1.93,2.09,2.36,N/A,N/A +2013,12,23,10,30,95450,94250,93100,77.33,0,0.27,0.86,1.21,1.46,1.69,1.9000000000000001,2.1,2.2800000000000002,2.58,95.86,113.81,129.24,143.08,154.42000000000002,164.16,171.41,176.51,182.54,-0.89,0.13,0.56,0.97,1.3,1.57,1.77,1.9100000000000001,2.0100000000000002,N/A,N/A +2013,12,23,11,30,95480,94280,93130,76.26,0,0.22,0.9400000000000001,1.42,1.67,1.81,1.93,2.06,2.19,2.46,70.35000000000001,97.13,117.77,128.13,138.01,146.4,152.99,158.14000000000001,165.33,-1.26,0.07,0.58,0.93,1.17,1.37,1.52,1.62,1.77,N/A,N/A +2013,12,23,12,30,95500,94300,93140,78.42,0,0.14,0.09,0.15,0.49,0.84,1.21,1.57,1.92,2.58,338.2,211.5,191.33,190.77,191.56,192.59,193.1,193.89000000000001,196.67000000000002,-1.6300000000000001,-0.24,0.29,0.65,0.9400000000000001,1.19,1.41,1.62,2.0300000000000002,N/A,N/A +2013,12,23,13,30,95530,94330,93170,78.68,0,0.18,0.15,0.18,0.32,0.49,0.73,1.12,1.55,2.4,156.48,281.89,298.6,278.24,255.86,234.77,225.81,220.45000000000002,217.12,-1.77,-0.4,0.02,0.22,0.45,0.75,1.23,1.7,2.49,N/A,N/A +2013,12,23,14,30,95590,94380,93230,70.36,0,0.34,0.91,1.27,1.53,1.67,1.8,1.98,2.22,2.8000000000000003,103.69,121.04,131.79,137.18,144.39000000000001,151.74,160.56,168.07,179.74,-1.1400000000000001,-0.48,-0.03,0.37,0.6900000000000001,0.9400000000000001,1.1500000000000001,1.33,1.7,N/A,N/A +2013,12,23,15,30,95600,94400,93250,55.9,0,1.08,1.1400000000000001,1.09,1.03,1.25,1.58,2.12,2.66,3.63,87.92,97.84,106.53,115.69,147.23,175.5,183.8,190,198.18,1.68,1.3800000000000001,1.25,1.1300000000000001,1.42,1.7,1.96,2.22,2.74,N/A,N/A +2013,12,23,16,30,95610,94430,93280,47.39,0,1.31,1.74,1.92,2.06,2.18,2.29,2.39,2.49,2.73,154.77,162.42000000000002,166.28,169.05,171.32,173.28,175.07,176.43,178.38,5.79,5.37,5.16,4.97,4.7700000000000005,4.6000000000000005,4.41,4.23,3.86,N/A,N/A +2013,12,23,17,30,95600,94430,93290,43.22,0,2.4,2.88,3,3.0500000000000003,3.06,3.0700000000000003,3.0500000000000003,3.04,3,181.53,182.61,183.39000000000001,184.14000000000001,184.93,185.67000000000002,186.51,187.34,189.16,7.62,7.11,6.87,6.66,6.45,6.26,6.0600000000000005,5.87,5.49,N/A,N/A +2013,12,23,18,30,95590,94420,93290,41.9,0,2.72,3.3000000000000003,3.46,3.5500000000000003,3.58,3.61,3.62,3.62,3.61,181.51,182.8,183.68,184.49,185.34,186.13,187,187.87,189.73,8.9,8.36,8.120000000000001,7.91,7.7,7.51,7.3100000000000005,7.12,6.74,N/A,N/A +2013,12,23,19,30,95580,94420,93290,38.1,0,2.7800000000000002,3.37,3.5500000000000003,3.63,3.68,3.71,3.72,3.73,3.72,195.74,196.16,196.52,196.92000000000002,197.36,197.76,198.22,198.67000000000002,199.63,10.450000000000001,9.9,9.66,9.43,9.22,9.02,8.82,8.620000000000001,8.23,N/A,N/A +2013,12,23,20,30,95560,94410,93280,36.38,0,2.5100000000000002,3.0300000000000002,3.19,3.27,3.3200000000000003,3.35,3.37,3.38,3.37,202.20000000000002,202.87,203.33,203.8,204.29,204.74,205.26,205.74,206.73000000000002,11.49,10.97,10.73,10.5,10.290000000000001,10.09,9.88,9.68,9.290000000000001,N/A,N/A +2013,12,23,21,30,95530,94370,93250,35.24,0,2.45,2.95,3.09,3.14,3.17,3.18,3.18,3.18,3.15,204.26,204.67000000000002,204.97,205.31,205.68,206.02,206.42000000000002,206.8,207.65,12.030000000000001,11.55,11.33,11.120000000000001,10.91,10.72,10.51,10.32,9.92,N/A,N/A +2013,12,23,22,30,95510,94360,93240,35.75,0,2.74,3.35,3.5,3.56,3.58,3.58,3.56,3.5300000000000002,3.45,188.49,188.86,189.15,189.44,189.76,190.06,190.41,190.76,191.5,12.11,11.74,11.540000000000001,11.34,11.13,10.950000000000001,10.74,10.55,10.16,N/A,N/A +2013,12,23,23,30,95520,94370,93240,46.660000000000004,0,2.88,4.83,5.22,5.49,5.62,5.69,5.67,5.64,5.5600000000000005,162.73,166.84,169.44,171.69,173.84,175.75,177.74,179.61,183.07,10.16,10.73,10.72,10.66,10.53,10.4,10.23,10.07,9.71,N/A,N/A +2013,12,24,0,30,95560,94400,93270,49.75,0,3.0100000000000002,5.48,6.09,6.54,6.71,6.78,6.66,6.22,4.87,170.52,173.39000000000001,174.96,176.06,177.17000000000002,178.23,179.82,181.70000000000002,185.71,8.81,9.84,9.98,10.05,10.040000000000001,10,9.94,9.92,9.9,N/A,N/A +2013,12,24,1,30,95590,94430,93300,51.7,0,2.15,4.03,4.62,5.13,5.45,5.64,5.48,5.25,4.59,154.26,162.55,167.11,170.24,172.63,174.62,176.37,177.97,180.91,7.72,8.73,8.89,9.03,9.11,9.18,9.24,9.28,9.290000000000001,N/A,N/A +2013,12,24,2,30,95620,94450,93330,53.46,0,1.21,2.7600000000000002,3.44,4,4.14,4.15,3.96,3.73,3.14,146.07,161.76,169.86,173.91,176.23,177.89000000000001,179.22,180.41,182.75,6.99,8.11,8.35,8.56,8.74,8.89,8.98,9.040000000000001,9.05,N/A,N/A +2013,12,24,3,30,95640,94460,93340,57.230000000000004,0,1.48,1.95,1.92,1.95,2.08,2.22,2.36,2.46,2.57,113.48,129.81,141.6,154.1,162.6,169.31,173.23,176.09,179.08,5.88,7.15,7.5,7.82,8.06,8.26,8.39,8.49,8.59,N/A,N/A +2013,12,24,4,30,95660,94480,93350,56.54,0,1.36,2.23,2.4,2.5500000000000003,2.75,2.95,3.16,3.36,3.73,133.54,146.74,155.42000000000002,163.44,169.04,173.5,176.24,178.29,180.62,6.0200000000000005,7.25,7.49,7.71,7.86,7.98,8.06,8.120000000000001,8.18,N/A,N/A +2013,12,24,5,30,95680,94510,93370,60.980000000000004,0,1.1400000000000001,1.9100000000000001,2.15,2.43,2.75,3.06,3.41,3.74,4.38,142.78,162.89000000000001,172.47,178.47,180.4,181.29,181.01,180.58,179.62,4.88,6.3,6.66,6.97,7.17,7.33,7.46,7.5600000000000005,7.71,N/A,N/A +2013,12,24,6,30,95700,94520,93380,64.51,0,2.05,3,3.11,3.2600000000000002,3.52,3.79,4.11,4.43,5.05,129.05,143.87,152.82,160.92000000000002,166.09,170.07,172.51,174.36,176.75,4.0200000000000005,5.48,5.86,6.16,6.36,6.53,6.65,6.76,6.92,N/A,N/A +2013,12,24,7,30,95710,94530,93390,68.7,0,1.46,2.19,2.39,2.71,3.13,3.5500000000000003,4,4.43,5.2700000000000005,111.89,136.32,149.06,159.38,165.26,169.71,172.01,173.67000000000002,175.53,3.16,4.76,5.22,5.58,5.82,6.01,6.16,6.29,6.5,N/A,N/A +2013,12,24,8,30,95690,94500,93360,70.61,0,1.6,2.58,2.87,3.22,3.63,4.03,4.46,4.86,5.63,118.28,138.37,149,157.20000000000002,162.21,166.11,168.53,170.39000000000001,172.87,3.11,4.64,5.01,5.2700000000000005,5.46,5.6000000000000005,5.73,5.84,6.05,N/A,N/A +2013,12,24,9,30,95660,94470,93330,74.43,0,1.83,2.91,3.14,3.37,3.68,4,4.3500000000000005,4.7,5.4,115.16,129.8,138.18,145.06,150.05,154.21,157.45000000000002,160.15,164.36,2.2,3.93,4.34,4.59,4.76,4.91,5.04,5.17,5.39,N/A,N/A +2013,12,24,10,30,95610,94430,93280,75.18,0,1.1400000000000001,2.2600000000000002,2.68,3.04,3.44,3.84,4.28,4.73,5.64,124.01,133.67000000000002,140.72,147.42000000000002,152.54,156.9,160.26,163.11,167.54,1.95,3.36,3.7,3.97,4.17,4.3500000000000005,4.51,4.66,4.99,N/A,N/A +2013,12,24,11,30,95590,94400,93260,74.8,0,1.47,2.63,2.97,3.25,3.61,3.98,4.42,4.86,5.78,135.75,141.32,147.78,155.83,160.98,165.03,167.63,169.6,172.14000000000001,2.09,3.19,3.43,3.68,3.87,4.03,4.19,4.34,4.64,N/A,N/A +2013,12,24,12,30,95570,94380,93230,76.88,0,1.82,3.02,3.33,3.64,4.0200000000000005,4.4,4.84,5.28,6.2,137.31,145.78,152.82,160.45000000000002,164.66,167.84,169.91,171.47,173.48,1.71,2.7800000000000002,3.0300000000000002,3.27,3.44,3.58,3.71,3.85,4.14,N/A,N/A +2013,12,24,13,30,95560,94360,93210,80.09,0,2.06,3.43,3.7800000000000002,4.13,4.5,4.86,5.25,5.66,6.5200000000000005,129.85,139.02,145.38,151.45000000000002,157.39000000000001,162.25,165.17000000000002,167.41,170.58,0.92,1.94,2.14,2.32,2.5500000000000003,2.74,2.92,3.08,3.41,N/A,N/A +2013,12,24,14,30,95540,94340,93190,75.13,0,1.94,3.14,3.43,3.73,4.08,4.45,4.88,5.3500000000000005,6.3500000000000005,117.9,127.95,135.78,143.91,152.34,159.55,164.49,167.96,172.28,1.12,1.47,1.55,1.6300000000000001,1.84,2.04,2.22,2.41,2.79,N/A,N/A +2013,12,24,15,30,95520,94330,93180,59.26,0,2.67,3.3200000000000003,3.5300000000000002,3.66,3.88,4.16,4.7,5.34,6.74,153.29,155.93,157.58,159.06,160.91,162.87,165.70000000000002,168.03,171.1,3.94,3.5700000000000003,3.39,3.22,3.04,2.89,2.75,2.75,3,N/A,N/A +2013,12,24,16,30,95450,94280,93140,52.58,0,3.52,4.39,4.68,4.8500000000000005,4.96,5.05,5.13,5.2,5.5,158.92000000000002,159.99,160.71,161.36,162.06,162.73,163.47,164.23,166.1,6.08,5.57,5.3500000000000005,5.16,4.96,4.78,4.6000000000000005,4.43,4.1,N/A,N/A +2013,12,24,17,30,95370,94200,93070,46.54,0,5.0200000000000005,6.34,6.75,7.0200000000000005,7.18,7.3100000000000005,7.41,7.5,7.73,167.35,167.69,167.86,167.99,168.12,168.24,168.38,168.51,168.89000000000001,8.14,7.5600000000000005,7.32,7.11,6.9,6.71,6.51,6.33,5.97,N/A,N/A +2013,12,24,18,30,95300,94140,93010,40.63,0,6.05,7.59,8.05,8.32,8.48,8.6,8.68,8.74,8.84,169.56,169.63,169.67000000000002,169.71,169.77,169.82,169.88,169.94,170.11,9.78,9.15,8.9,8.67,8.45,8.25,8.040000000000001,7.8500000000000005,7.47,N/A,N/A +2013,12,24,19,30,95220,94070,92950,36.06,0,7.19,9.01,9.53,9.84,10,10.11,10.17,10.21,10.24,172.79,172.67000000000002,172.58,172.51,172.44,172.38,172.31,172.26,172.16,11.13,10.5,10.24,10,9.78,9.58,9.36,9.17,8.78,N/A,N/A +2013,12,24,20,30,95140,93990,92880,34.21,0,7.16,8.950000000000001,9.44,9.72,9.88,9.98,10.03,10.07,10.08,171.42000000000002,171.47,171.5,171.52,171.54,171.56,171.58,171.61,171.66,11.99,11.38,11.13,10.9,10.68,10.48,10.26,10.06,9.66,N/A,N/A +2013,12,24,21,30,95070,93920,92810,35.37,0,6.87,8.56,9.03,9.290000000000001,9.43,9.52,9.56,9.59,9.59,172.58,172.53,172.52,172.53,172.54,172.55,172.58,172.6,172.67000000000002,11.96,11.44,11.21,10.99,10.77,10.57,10.36,10.16,9.76,N/A,N/A +2013,12,24,22,30,94990,93850,92730,38.06,0,6.21,7.86,8.28,8.53,8.67,8.78,8.83,8.870000000000001,8.89,170.54,170.57,170.59,170.61,170.62,170.63,170.63,170.64000000000001,170.65,11.38,11,10.8,10.59,10.39,10.19,9.99,9.790000000000001,9.4,N/A,N/A +2013,12,24,23,30,94970,93820,92700,44.57,0,3.92,6.24,7.11,7.79,8.34,8.8,9.18,9.51,10.03,160.95000000000002,162.05,162.81,163.43,163.95000000000002,164.4,164.73,164.99,165.26,9.72,9.93,9.9,9.82,9.69,9.57,9.41,9.25,8.9,N/A,N/A +2013,12,25,0,30,94960,93800,92680,52.33,0,3,5.62,6.6000000000000005,7.44,8.15,8.76,9.32,9.81,10.67,148.25,151.36,153.29,154.66,155.87,156.97,158.05,159.03,160.66,7.9,8.66,8.76,8.82,8.82,8.8,8.73,8.64,8.4,N/A,N/A +2013,12,25,1,30,94930,93770,92640,55.72,0,2.56,5.26,6.2700000000000005,7.1000000000000005,7.8,8.45,9.19,9.94,11.540000000000001,135.12,138.42000000000002,140.56,142.35,144.57,146.78,149.27,151.53,155.41,6.7,7.5,7.6000000000000005,7.66,7.65,7.640000000000001,7.6000000000000005,7.55,7.45,N/A,N/A +2013,12,25,2,30,94900,93740,92610,49.550000000000004,0,3.63,6.46,7.65,8.71,9.71,10.65,11.61,12.52,14.18,142.69,146.28,148.47,150.23,151.69,152.96,154.02,154.98,156.73,6.5,6.99,7.11,7.19,7.23,7.26,7.2700000000000005,7.26,7.22,N/A,N/A +2013,12,25,3,30,94910,93740,92610,55.88,0,2.7600000000000002,5.8100000000000005,7.11,8.23,9.200000000000001,10.08,10.950000000000001,11.8,13.6,139.89000000000001,144.12,146.45000000000002,147.76,149.09,150.42000000000002,152.11,153.86,157.51,5.59,6.33,6.390000000000001,6.43,6.43,6.44,6.44,6.46,6.51,N/A,N/A +2013,12,25,4,30,94850,93690,92560,56.54,0,2.15,5.43,7.09,8.49,9.67,10.75,11.81,12.86,14.93,137.6,147,151.71,153.65,155.11,156.43,157.81,159.15,161.71,5.22,5.94,6,6.05,6.1000000000000005,6.15,6.21,6.28,6.41,N/A,N/A +2013,12,25,5,30,94850,93680,92550,56.09,0,1.55,4.39,6.0200000000000005,7.38,8.58,9.700000000000001,10.8,11.870000000000001,13.92,130.48,144.07,151.01,153.09,154.71,156.19,157.68,159.11,161.77,4.9,5.65,5.71,5.76,5.82,5.87,5.93,5.99,6.11,N/A,N/A +2013,12,25,6,30,94850,93680,92550,52.99,0,3.14,6.24,7.48,8.65,9.72,10.72,11.73,12.69,14.450000000000001,147.9,153.58,156.77,158.88,160.47,161.83,163.04,164.12,165.96,4.97,5.86,5.93,5.99,6.03,6.0600000000000005,6.11,6.15,6.26,N/A,N/A +2013,12,25,7,30,94870,93700,92570,56.620000000000005,0,2.48,4.84,5.84,6.88,7.87,8.81,9.78,10.73,12.620000000000001,136.6,148.6,154.86,158.92000000000002,161.38,163.31,164.63,165.70000000000002,167.26,3.86,4.83,4.99,5.13,5.26,5.37,5.47,5.5600000000000005,5.72,N/A,N/A +2013,12,25,8,30,94890,93710,92580,57.09,0,1.25,2.83,3.69,4.62,5.55,6.47,7.4,8.32,10.07,128.85,149.13,158.93,163.70000000000002,166.56,168.8,169.94,170.73,171.61,3.33,4.29,4.44,4.58,4.75,4.9,5.04,5.15,5.34,N/A,N/A +2013,12,25,9,30,94910,93730,92590,61.03,0,0.85,1.04,1.31,2.05,2.77,3.5,4.2,4.87,6.13,65.99,133.92000000000002,158.46,174.67000000000002,178.13,179.01,178.68,178.31,177.61,2.09,3.59,3.99,4.24,4.38,4.48,4.55,4.61,4.71,N/A,N/A +2013,12,25,10,30,94930,93750,92610,64.92,0,0.41000000000000003,0.74,0.9400000000000001,1.25,1.57,1.92,2.34,2.8000000000000003,3.7600000000000002,177.09,235.25,248.87,237.73000000000002,225.37,213.99,206.65,201,193.66,1.25,3.11,3.5700000000000003,3.7800000000000002,3.84,3.88,3.9,3.92,4,N/A,N/A +2013,12,25,11,30,94930,93750,92610,65.21000000000001,0,0.54,1.54,2.16,2.72,3.1,3.41,3.59,3.74,3.92,204.86,201.94,199.34,196.82,195.56,194.91,195.32,196.14000000000001,198.37,1.11,2.48,2.91,3.2600000000000002,3.54,3.7600000000000002,3.97,4.14,4.44,N/A,N/A +2013,12,25,12,30,94970,93780,92640,65.48,0,0.91,1.3,1.26,1.21,1.34,1.51,1.76,2.0300000000000002,2.5500000000000003,106.87,117.52,129.86,144.70000000000002,160.18,174.07,184.67000000000002,194.72,214.34,0.49,2.17,2.54,2.64,2.73,2.81,2.92,3.13,3.79,N/A,N/A +2013,12,25,13,30,95040,93850,92700,69.8,0,0.27,0.81,1.29,1.92,2.61,3.34,4.03,4.69,5.86,340.93,338.27,333.21,325.17,323.76,323.41,323.87,324.24,324.98,-0.42,0.9400000000000001,1.58,2.17,2.6,2.94,3.18,3.35,3.54,N/A,N/A +2013,12,25,14,30,95110,93930,92780,67.04,0,0.91,2.5500000000000003,3.91,5.72,7.08,8.22,8.91,9.44,10.23,247.43,308.27,331.35,330.29,328.48,326.8,325.66,324.55,322.74,0.71,1.26,1.54,1.79,2.04,2.24,2.36,2.43,2.46,N/A,N/A +2013,12,25,15,30,95190,94010,92860,58.77,0,5.59,6.87,7.18,7.34,7.41,7.45,7.45,7.44,7.45,320.2,321.78000000000003,322.82,323.73,324.78000000000003,325.82,327.09000000000003,328.54,332.37,3.72,3.29,3.09,2.91,2.72,2.5500000000000003,2.38,2.22,1.92,N/A,N/A +2013,12,25,16,30,95250,94080,92940,55.43,0,5.33,6.63,7,7.22,7.3500000000000005,7.45,7.51,7.55,7.6000000000000005,341.72,342.42,342.88,343.27,343.66,344,344.36,344.72,345.47,5.69,5.13,4.89,4.67,4.46,4.26,4.05,3.86,3.47,N/A,N/A +2013,12,25,17,30,95270,94100,92970,56.01,0,5.5200000000000005,6.86,7.26,7.5,7.640000000000001,7.75,7.82,7.87,7.94,341.59000000000003,342.29,342.68,342.99,343.29,343.55,343.81,344.06,344.55,7.08,6.48,6.23,6,5.78,5.57,5.36,5.17,4.7700000000000005,N/A,N/A +2013,12,25,18,30,95280,94120,92990,51.47,0,5.53,6.88,7.28,7.53,7.68,7.8,7.88,7.94,8.03,347.93,348.49,348.78000000000003,349.01,349.22,349.40000000000003,349.56,349.73,350.04,8.52,7.88,7.62,7.390000000000001,7.15,6.95,6.73,6.53,6.13,N/A,N/A +2013,12,25,19,30,95290,94130,93000,48.44,0,5.14,6.38,6.76,7,7.15,7.2700000000000005,7.3500000000000005,7.42,7.5200000000000005,356.01,356,355.97,355.95,355.92,355.90000000000003,355.89,355.87,355.84000000000003,9.68,9.05,8.790000000000001,8.56,8.32,8.120000000000001,7.9,7.7,7.29,N/A,N/A +2013,12,25,20,30,95280,94130,93000,46.15,0,5.11,6.32,6.69,6.92,7.07,7.18,7.2700000000000005,7.33,7.43,1.22,0.91,0.7000000000000001,0.53,0.37,0.23,0.1,359.97,359.74,10.5,9.9,9.64,9.41,9.18,8.97,8.76,8.56,8.15,N/A,N/A +2013,12,25,21,30,95270,94120,93000,45.21,0,5.07,6.3500000000000005,6.74,6.98,7.140000000000001,7.26,7.3500000000000005,7.42,7.5200000000000005,6.71,6.04,5.66,5.38,5.14,4.94,4.75,4.58,4.2700000000000005,10.870000000000001,10.33,10.09,9.870000000000001,9.65,9.44,9.23,9.03,8.63,N/A,N/A +2013,12,25,22,30,95270,94110,92990,47.07,0,5.09,6.48,6.890000000000001,7.140000000000001,7.3100000000000005,7.43,7.5200000000000005,7.6000000000000005,7.69,6.9,6.78,6.73,6.71,6.69,6.68,6.67,6.66,6.63,10.72,10.31,10.11,9.9,9.69,9.5,9.290000000000001,9.1,8.700000000000001,N/A,N/A +2013,12,25,23,30,95310,94160,93030,60.93,0,2.27,4.62,5.44,6.04,6.47,6.82,7.07,7.28,7.57,11.22,13.82,15.24,16.080000000000002,16.5,16.740000000000002,16.79,16.79,16.61,9.38,9.82,9.74,9.59,9.41,9.24,9.040000000000001,8.85,8.46,N/A,N/A +2013,12,26,0,30,95360,94190,93070,69.93,0,1.9000000000000001,3.87,4.63,5.3100000000000005,5.88,6.38,6.8,7.16,7.7,14.06,19.89,22.900000000000002,24.63,25.42,25.89,25.92,25.84,25.25,7.54,8.24,8.32,8.36,8.35,8.31,8.22,8.1,7.8,N/A,N/A +2013,12,26,1,30,95400,94230,93100,75.29,0,1.04,2.74,3.63,4.3500000000000005,5.1000000000000005,5.84,6.6000000000000005,7.28,8.34,12.26,17.77,21.650000000000002,24.71,26.46,27.78,28.41,28.810000000000002,28.86,6.6000000000000005,7.19,7.2,7.16,7.140000000000001,7.12,7.12,7.09,6.96,N/A,N/A +2013,12,26,2,30,95440,94270,93130,79.2,0,0.27,1.67,2.91,3.72,4.6000000000000005,5.51,6.5,7.44,9.05,304.43,343.96,13.55,19.150000000000002,22.43,25.04,26.66,27.98,29.64,5.73,6.3500000000000005,6.33,6.25,6.19,6.16,6.17,6.16,6.07,N/A,N/A +2013,12,26,3,30,95480,94310,93170,80.59,0,0.65,1.55,2.15,2.9,3.61,4.33,5.16,6.03,7.7700000000000005,267.42,328.76,356.88,7.65,13.620000000000001,18.31,21.86,24.82,29.02,5.09,5.65,5.65,5.59,5.46,5.34,5.26,5.2,5.13,N/A,N/A +2013,12,26,4,30,95510,94330,93190,84.62,0,1.98,2.2800000000000002,2.49,3.17,3.75,4.32,5.03,5.8,7.44,268.8,312.38,339.02,11.11,17.63,19.69,21.61,23.57,27.43,4.2700000000000005,4.96,5.03,5.0600000000000005,4.98,4.89,4.82,4.7700000000000005,4.67,N/A,N/A +2013,12,26,5,30,95530,94350,93200,84.65,0,2.4,3.58,3.85,4.25,4.51,4.72,4.89,5.19,6.11,299.78000000000003,322.37,341.2,2.91,15.120000000000001,23.42,26.18,28.150000000000002,30.830000000000002,3.7800000000000002,4.71,4.9,5.01,4.87,4.7,4.49,4.32,4.0600000000000005,N/A,N/A +2013,12,26,6,30,95540,94360,93220,81.74,0,2.22,3.67,3.62,3.33,3.38,3.52,3.87,4.28,5.26,319.41,336.40000000000003,355.51,16.53,21.46,23.77,24.95,26.53,30.580000000000002,3.69,4.7700000000000005,4.79,4.59,4.36,4.15,3.97,3.83,3.6,N/A,N/A +2013,12,26,7,30,95560,94380,93230,82.24,0,2.5100000000000002,4.17,4.09,3.72,3.72,3.81,4.07,4.3500000000000005,4.99,324.12,350.71,7.45,20.55,26.3,29.93,31.220000000000002,32.230000000000004,34.410000000000004,3.02,4.46,4.48,4.18,3.89,3.65,3.47,3.3200000000000003,3.08,N/A,N/A +2013,12,26,8,30,95570,94380,93230,83.10000000000001,0,2.12,2.96,2.84,2.69,2.86,3.04,3.2,3.38,3.84,329.14,353.46,12.040000000000001,30.150000000000002,29.92,28.3,28.29,30,36.45,2.11,3.35,3.34,3.0700000000000003,2.91,2.7800000000000002,2.66,2.54,2.38,N/A,N/A +2013,12,26,9,30,95560,94370,93210,84.14,0,2.66,3.24,3.09,3.0500000000000003,3.09,3.15,3.29,3.45,3.8000000000000003,343.39,9.33,17.84,21.46,19.62,17.51,15.71,15.52,18.42,1.17,2.41,2.52,2.46,2.29,2.13,1.99,1.95,2,N/A,N/A +2013,12,26,10,30,95530,94340,93190,83.22,0,1.93,2.91,3.11,3.35,3.6,3.85,4.13,4.4,4.92,356.74,18.38,25.77,28.54,28.27,27.55,26.35,25.71,25.48,1.21,2.04,1.9000000000000001,1.6300000000000001,1.43,1.32,1.35,1.43,1.6400000000000001,N/A,N/A +2013,12,26,11,30,95550,94350,93190,89.9,0,0.56,0.66,0.89,1.43,2.02,2.64,3.23,3.7600000000000002,4.58,268.62,329.61,352.11,11.99,13.790000000000001,14.09,13.63,13.4,13.56,-0.56,0.11,0.24,0.33,0.45,0.56,0.68,0.77,0.9400000000000001,N/A,N/A +2013,12,26,12,30,95550,94350,93190,92.26,0,0.48,0.84,1.03,1.3,1.7,2.15,2.65,3.14,4.01,300.06,309.1,318.99,331.83,338.75,344.59000000000003,348.39,351.41,355.92,-1.3,-0.5,-0.29,-0.13,-0.01,0.09,0.18,0.33,0.77,N/A,N/A +2013,12,26,13,30,95540,94340,93180,93.65,0,0.45,0.5,0.74,1.3900000000000001,1.9000000000000001,2.41,2.87,3.29,4.08,191.79,322.87,350.16,352.11,351.24,350.67,351.21,352.25,355.02,-1.71,-0.78,-0.51,-0.36,-0.2,-0.07,0.03,0.1,0.19,N/A,N/A +2013,12,26,14,30,95550,94350,93190,85.33,0,1.09,1.71,2.09,2.5100000000000002,2.99,3.43,3.83,4.13,4.54,280.36,310.55,323.68,331.37,334.93,337.74,339.64,341.25,344.1,-0.96,-0.63,-0.41000000000000003,-0.23,-0.07,0.07,0.2,0.31,0.39,N/A,N/A +2013,12,26,15,30,95530,94340,93180,66.86,0,2.05,2.58,2.74,2.84,2.86,2.88,2.91,3,3.23,319.24,320.99,322.23,323.40000000000003,324.62,325.99,327.94,330.13,334.54,2.27,1.8800000000000001,1.68,1.51,1.32,1.1500000000000001,0.98,0.81,0.47000000000000003,N/A,N/A +2013,12,26,16,30,95490,94310,93160,56.050000000000004,0,2.34,2.7800000000000002,2.88,2.93,2.94,2.94,2.93,2.92,2.88,317.28000000000003,320.87,323.07,324.98,326.99,328.83,330.8,332.78000000000003,336.87,4.58,4.11,3.89,3.69,3.49,3.31,3.12,2.94,2.58,N/A,N/A +2013,12,26,17,30,95440,94260,93120,48.24,0,1.9100000000000001,2.2800000000000002,2.37,2.41,2.44,2.45,2.46,2.47,2.48,323.01,325.93,327.68,329.15000000000003,330.61,331.91,333.21,334.47,336.94,6.390000000000001,5.89,5.65,5.44,5.23,5.03,4.83,4.64,4.26,N/A,N/A +2013,12,26,18,30,95400,94230,93100,43.660000000000004,0,1.4000000000000001,1.61,1.6500000000000001,1.6600000000000001,1.6600000000000001,1.6600000000000001,1.6500000000000001,1.6400000000000001,1.6300000000000001,307.03000000000003,310.29,312.27,313.99,315.7,317.23,318.82,320.35,323.41,7.71,7.21,6.96,6.75,6.53,6.33,6.13,5.93,5.54,N/A,N/A +2013,12,26,19,30,95350,94180,93050,40.51,0,1.3900000000000001,1.61,1.6600000000000001,1.68,1.68,1.68,1.67,1.67,1.6500000000000001,306.08,308.66,310.26,311.7,313.12,314.40000000000003,315.71,316.99,319.61,8.85,8.34,8.1,7.88,7.66,7.46,7.26,7.0600000000000005,6.67,N/A,N/A +2013,12,26,20,30,95290,94130,93000,37.62,0,1.4000000000000001,1.6500000000000001,1.71,1.74,1.76,1.77,1.77,1.78,1.78,317.6,319.95,321.41,322.67,323.94,325.08,326.24,327.35,329.58,9.81,9.32,9.08,8.870000000000001,8.65,8.45,8.25,8.05,7.66,N/A,N/A +2013,12,26,21,30,95230,94070,92950,35.88,0,1.1300000000000001,1.31,1.34,1.36,1.36,1.36,1.36,1.36,1.36,317.18,321.22,323.71,325.88,328.03000000000003,329.95,331.93,333.79,337.48,10.44,9.99,9.77,9.57,9.35,9.16,8.950000000000001,8.76,8.36,N/A,N/A +2013,12,26,22,30,95200,94040,92920,35.4,0,0.96,1.06,1.05,1.02,0.99,0.97,0.9400000000000001,0.91,0.87,290.64,295.49,298.6,301.46,304.56,307.36,310.56,313.7,320.39,10.59,10.22,10.02,9.82,9.620000000000001,9.43,9.23,9.03,8.65,N/A,N/A +2013,12,26,23,30,95200,94050,92920,43.050000000000004,0,1.01,1.76,1.82,1.76,1.6400000000000001,1.53,1.3900000000000001,1.25,0.9400000000000001,252.36,260.43,264.25,266.32,268.21,269.79,271.49,273.32,278.44,9.69,9.91,9.78,9.6,9.42,9.25,9.07,8.89,8.53,N/A,N/A +2013,12,27,0,30,95210,94050,92930,43.87,0,0.3,0.97,1.34,1.58,1.68,1.71,1.62,1.5,1.16,279.07,284.17,286.94,287.83,291.11,294.67,298.36,302.11,312.01,8.71,9.38,9.47,9.49,9.38,9.24,9.06,8.89,8.55,N/A,N/A +2013,12,27,1,30,95230,94070,92940,49.93,0,0.61,0.65,0.49,0.37,0.39,0.46,0.59,0.6900000000000001,0.67,96.13,86.36,66.32000000000001,43.49,13.23,344.53000000000003,329.58,319.22,320.34000000000003,7.34,8.25,8.41,8.49,8.52,8.53,8.51,8.46,8.290000000000001,N/A,N/A +2013,12,27,2,30,95250,94080,92960,50.93,0,0.28,0.6,0.61,0.54,0.34,0.22,0.15,0.14,0.36,78.49,96.10000000000001,107.81,116.11,113.42,101.01,59.44,65.05,114.98,6.36,7.3500000000000005,7.58,7.73,7.88,8.02,8.22,8.35,8.36,N/A,N/A +2013,12,27,3,30,95260,94090,92970,51.43,0,0.21,0.85,1.25,1.5,1.48,1.41,1.34,1.3800000000000001,1.72,52.19,74.98,87.91,91.71000000000001,94.67,98.09,104.73,111.71000000000001,124.56,5.57,6.82,7.19,7.45,7.62,7.76,7.86,7.95,8.02,N/A,N/A +2013,12,27,4,30,95270,94100,92970,54.85,0,0.09,0.55,0.96,1.3,1.36,1.3900000000000001,1.46,1.57,1.92,276.68,20.02,81.68,89.21000000000001,92.36,95.99000000000001,104.58,113.83,131.49,4.68,6.17,6.61,6.88,7.01,7.13,7.3,7.42,7.58,N/A,N/A +2013,12,27,5,30,95290,94120,92990,58.27,0,0.2,0.49,0.71,1.04,1.3,1.54,1.76,1.94,2.24,336.6,62.42,96.9,107.21000000000001,117.29,126.67,134.15,140.96,152.53,4.08,5.67,6.12,6.36,6.5600000000000005,6.73,6.88,6.99,7.11,N/A,N/A +2013,12,27,6,30,95330,94150,93020,63.730000000000004,0,0.1,0.53,0.87,1.09,1.33,1.56,1.79,2.0100000000000002,2.42,138.18,154.55,167.61,174.32,180.20000000000002,185.6,189.99,193.52,198.36,3.23,4.9,5.38,5.66,5.79,5.88,5.93,5.97,6,N/A,N/A +2013,12,27,7,30,95360,94180,93040,65.21000000000001,0,0.93,0.62,0.63,0.85,1.27,1.76,2.21,2.6,3.23,84.60000000000001,117.96000000000001,146.39000000000001,191.29,202.91,210.3,211.98000000000002,213.13,214.4,2.86,4.19,4.59,4.8500000000000005,4.95,5.01,5.05,5.09,5.19,N/A,N/A +2013,12,27,8,30,95360,94180,93040,74.15,0,0.38,0.51,0.5700000000000001,0.6900000000000001,0.96,1.26,1.58,1.8800000000000001,2.42,97.71000000000001,134.28,160.53,191.18,204.43,213.86,214.70000000000002,213.81,209.69,2.6,3.79,4.15,4.41,4.58,4.71,4.7700000000000005,4.8100000000000005,4.86,N/A,N/A +2013,12,27,9,30,95360,94170,93030,76.03,0,0.13,0.09,0.09,0.13,0.26,0.49,0.81,1.12,1.68,344.59000000000003,41.58,77.54,127.74000000000001,179.81,236.8,237.04,234.54,225.91,1.84,2.72,3.12,3.5100000000000002,3.97,4.32,4.5200000000000005,4.63,4.73,N/A,N/A +2013,12,27,10,30,95370,94180,93040,79.68,0,0.05,0.41000000000000003,0.62,0.67,0.55,0.53,0.67,0.88,1.32,93.82000000000001,62.63,41.77,36.84,12.84,349.25,310.87,287.89,263.33,0.88,2.17,2.6,2.92,3.25,3.5700000000000003,3.9,4.15,4.43,N/A,N/A +2013,12,27,11,30,95380,94190,93040,85.9,0,0.23,0.9400000000000001,1.32,1.52,1.23,1.04,0.9400000000000001,1,1.22,1.34,11.56,17.68,20.44,13.82,1.44,337.48,319.24,289.61,-0.07,1.08,1.52,1.9100000000000001,2.42,2.85,3.18,3.5500000000000003,4.2,N/A,N/A +2013,12,27,12,30,95400,94200,93050,88.13,0,0.09,0.5,0.81,1.02,0.9,0.79,0.67,0.7000000000000001,0.84,251.91,319.33,357.40000000000003,6.1000000000000005,15.08,11.47,351.26,332.40000000000003,299.97,-0.6900000000000001,0.41000000000000003,0.9400000000000001,1.43,2.16,2.7,3.0500000000000003,3.4,4.04,N/A,N/A +2013,12,27,13,30,95420,94220,93070,89.51,0,0.07,0.28,0.43,0.56,0.64,0.72,0.8,0.84,0.87,246.3,295.82,320.79,331.47,336.37,336.08,326.94,320.11,302.62,-1,0.28,0.75,1.08,1.59,2.04,2.47,2.91,3.7800000000000002,N/A,N/A +2013,12,27,14,30,95450,94250,93100,81.21000000000001,0,0.37,0.56,0.68,0.79,1.02,1.21,1.33,1.32,1.1,275.33,273.13,285.72,305.93,313.64,319.03000000000003,320.26,323.35,324.40000000000003,-0.73,0.23,0.65,0.9400000000000001,1.27,1.6500000000000001,2.15,2.67,3.63,N/A,N/A +2013,12,27,15,30,95470,94270,93120,67.66,0,0.64,0.63,0.58,0.52,0.79,1.06,1.21,1.24,1.12,255.54,261.21,271.43,282.92,318.08,347.82,348.93,345.93,337.18,1.9100000000000001,1.6,1.47,1.36,1.55,1.86,2.39,2.85,3.68,N/A,N/A +2013,12,27,16,30,95450,94270,93130,54.77,0,0.8,0.8200000000000001,0.77,0.7000000000000001,0.63,0.59,0.63,0.7000000000000001,0.67,272.87,276.45,279.3,282.08,289.27,301.28000000000003,328.69,347.69,354.5,4.72,4.33,4.15,3.99,3.8200000000000003,3.68,3.5700000000000003,3.79,4.54,N/A,N/A +2013,12,27,17,30,95420,94250,93110,49.96,0,0.64,0.68,0.65,0.61,0.56,0.52,0.48,0.44,0.39,284.09000000000003,287.68,290.27,292.82,296.5,300.1,304.87,310.72,326.22,7.46,7.01,6.8,6.62,6.43,6.2700000000000005,6.1000000000000005,5.94,5.64,N/A,N/A +2013,12,27,18,30,95390,94230,93100,45.86,0,0.28,0.23,0.2,0.19,0.2,0.21,0.23,0.25,0.3,224.46,203.12,188.58,173.35,158.8,146.24,136.93,129.68,120.06,9.39,8.92,8.68,8.47,8.25,8.06,7.86,7.66,7.28,N/A,N/A +2013,12,27,19,30,95390,94220,93100,47.09,0,2.36,2.73,2.77,2.75,2.71,2.66,2.6,2.54,2.39,128.64000000000001,128.31,127.96000000000001,127.57000000000001,127.09,126.63000000000001,126.08,125.49000000000001,124.11,9.31,8.870000000000001,8.66,8.46,8.25,8.06,7.87,7.68,7.3,N/A,N/A +2013,12,27,20,30,95360,94200,93070,54.85,0,2.72,3.27,3.37,3.41,3.4,3.38,3.34,3.3000000000000003,3.19,132.31,132.61,132.68,132.66,132.59,132.51,132.41,132.31,132.09,9.24,8.8,8.59,8.39,8.18,7.99,7.8,7.6000000000000005,7.22,N/A,N/A +2013,12,27,21,30,95330,94170,93040,62.52,0,2.84,3.45,3.56,3.6,3.58,3.56,3.5,3.44,3.29,135.93,136.22,136.33,136.39000000000001,136.44,136.48,136.49,136.49,136.45,8.82,8.43,8.23,8.03,7.83,7.640000000000001,7.44,7.26,6.87,N/A,N/A +2013,12,27,22,30,95300,94140,93010,72.61,0,2.87,3.54,3.66,3.71,3.7,3.68,3.64,3.59,3.49,133.68,134.4,134.78,135.05,135.32,135.55,135.79,136.06,136.70000000000002,8.08,7.76,7.57,7.38,7.18,7,6.8,6.61,6.23,N/A,N/A +2013,12,27,23,30,95300,94130,93000,74.17,0,2.5,3.12,3.25,3.3200000000000003,3.35,3.36,3.36,3.35,3.35,133.91,134.98,135.53,135.94,136.35,136.72,137.14000000000001,137.61,138.73,7.67,7.3500000000000005,7.17,6.98,6.78,6.6000000000000005,6.4,6.21,5.82,N/A,N/A +2013,12,28,0,30,95300,94130,93000,75.32000000000001,0,1.92,2.44,2.58,2.67,2.73,2.79,2.86,2.97,3.4,138.18,139.4,140.04,140.53,140.95000000000002,141.31,141.6,141.99,142.82,7.59,7.28,7.1000000000000005,6.92,6.72,6.53,6.34,6.15,5.78,N/A,N/A +2013,12,28,1,30,95270,94110,92980,76.07000000000001,0,1.48,1.9000000000000001,2.0300000000000002,2.13,2.23,2.36,2.63,2.9,3.42,144.75,146.08,146.74,147.23,147.77,148.34,149.27,150.03,150.68,7.55,7.25,7.07,6.890000000000001,6.68,6.5,6.3100000000000005,6.13,5.8100000000000005,N/A,N/A +2013,12,28,2,30,95250,94090,92960,78.43,0,1.17,1.53,1.6400000000000001,1.73,1.85,2,2.2800000000000002,2.5500000000000003,3.04,146.95000000000002,148.42000000000002,149.29,150.02,150.98,152.07,153.95000000000002,155.17000000000002,156.37,7.5,7.2,7.0200000000000005,6.84,6.640000000000001,6.45,6.26,6.08,5.76,N/A,N/A +2013,12,28,3,30,95230,94060,92930,79.94,0,1.01,1.28,1.36,1.42,1.54,1.69,1.96,2.21,2.67,159.45000000000002,161.17000000000002,162.11,162.88,163.57,164.26,165.14000000000001,165.54,165.52,7.45,7.16,6.98,6.79,6.6000000000000005,6.41,6.23,6.0600000000000005,5.74,N/A,N/A +2013,12,28,4,30,95190,94030,92900,81.18,0,0.78,1.09,1.23,1.3800000000000001,1.54,1.7,1.8800000000000001,2.08,2.5100000000000002,191.68,190.46,189.11,187.44,186.09,184.93,184.04,183.20000000000002,181.78,7.46,7.18,7.01,6.84,6.640000000000001,6.47,6.28,6.1000000000000005,5.74,N/A,N/A +2013,12,28,5,30,95160,94000,92870,82.13,0,0.75,1.1,1.26,1.43,1.6300000000000001,1.84,2.08,2.32,2.87,175.37,175.64000000000001,175.39000000000001,174.84,175.26,175.87,176.64000000000001,177.37,178.8,7.38,7.1000000000000005,6.92,6.74,6.54,6.37,6.18,6.01,5.67,N/A,N/A +2013,12,28,6,30,95140,93980,92840,82.77,0,0.9400000000000001,1.47,1.7,1.92,2.1,2.2600000000000002,2.48,2.7,3.18,164.71,164.65,165.94,168.27,170.99,173.3,174.25,175.33,177.69,7.390000000000001,7.11,6.94,6.76,6.57,6.390000000000001,6.2,6.0200000000000005,5.68,N/A,N/A +2013,12,28,7,30,95120,93950,92820,83.16,0,0.6900000000000001,1.49,1.8900000000000001,2.16,2.49,2.82,3.15,3.46,4.0600000000000005,166.35,171.84,176.5,181.05,183.70000000000002,185.63,186.17000000000002,186.97,189.1,7.3,7.0200000000000005,6.8500000000000005,6.67,6.48,6.3100000000000005,6.13,5.96,5.64,N/A,N/A +2013,12,28,8,30,95080,93910,92780,84.43,0,0.74,1.3900000000000001,1.8,2.21,2.56,2.88,3.19,3.49,4.0600000000000005,186.67000000000002,182.73,181.14000000000001,181.08,181.8,182.69,183.69,184.62,186.3,7.2,6.92,6.76,6.59,6.42,6.26,6.09,5.93,5.62,N/A,N/A +2013,12,28,9,30,95030,93870,92740,86.79,0,1.12,1.7,1.99,2.24,2.48,2.7,2.92,3.15,3.6,182.8,178.37,176.92000000000002,176.92000000000002,178.19,179.76,181.92000000000002,184.14000000000001,188.65,7.09,6.83,6.68,6.51,6.33,6.17,6,5.8500000000000005,5.57,N/A,N/A +2013,12,28,10,30,94970,93810,92680,88.63,0,1.1,1.6400000000000001,1.8900000000000001,2.11,2.35,2.57,2.81,3.04,3.47,179.9,176.46,175.39000000000001,175.51,177.28,179.45000000000002,182.6,185.70000000000002,191.54,7.0200000000000005,6.78,6.63,6.47,6.3100000000000005,6.16,6.0200000000000005,5.88,5.65,N/A,N/A +2013,12,28,11,30,94950,93780,92650,90.93,0,0.86,1.59,1.92,2.22,2.48,2.71,2.93,3.12,3.45,174.31,170.28,169.95000000000002,171.86,175.39000000000001,179.3,184.47,188.93,195.82,6.7700000000000005,6.61,6.5,6.390000000000001,6.26,6.16,6.07,5.97,5.78,N/A,N/A +2013,12,28,12,30,94920,93760,92630,91.44,0,0.71,1.34,1.7,2.04,2.31,2.5500000000000003,2.75,2.93,3.2800000000000002,186.36,175.41,171.69,172.37,175.67000000000002,179.53,184.1,188.14000000000001,194.67000000000002,6.66,6.5600000000000005,6.51,6.46,6.37,6.2700000000000005,6.16,6.04,5.8100000000000005,N/A,N/A +2013,12,28,13,30,94880,93720,92590,92.69,0,1.5,2.58,2.95,3.29,3.58,3.83,4.05,4.24,4.5600000000000005,166.98,168.66,170.53,173,176.37,179.75,183.55,187.09,193.43,6.98,6.8500000000000005,6.72,6.59,6.46,6.3500000000000005,6.25,6.15,5.94,N/A,N/A +2013,12,28,14,30,94850,93690,92560,91.3,0,2.15,3.04,3.38,3.68,3.94,4.16,4.33,4.47,4.65,174,174.94,176.20000000000002,177.94,180.84,183.82,187.34,190.5,195.48000000000002,6.83,6.68,6.6000000000000005,6.5,6.4,6.32,6.24,6.140000000000001,5.94,N/A,N/A +2013,12,28,15,30,94820,93660,92540,86.78,0,2.64,3.33,3.5500000000000003,3.69,3.7600000000000002,3.81,3.87,3.95,4.23,180.85,181.64000000000001,182.21,182.81,183.5,184.22,185.3,186.58,189.55,7.61,7.25,7.0600000000000005,6.88,6.68,6.51,6.32,6.15,5.82,N/A,N/A +2013,12,28,16,30,94750,93590,92470,82.18,0,3.31,4.0600000000000005,4.25,4.3500000000000005,4.4,4.43,4.43,4.44,4.43,185.70000000000002,186.1,186.43,186.75,187.12,187.47,187.84,188.23,189.06,8.06,7.59,7.38,7.18,6.97,6.78,6.58,6.390000000000001,6.01,N/A,N/A +2013,12,28,17,30,94680,93520,92400,79.38,0,3.52,4.29,4.5,4.59,4.63,4.65,4.64,4.63,4.59,181.85,182.13,182.37,182.62,182.92000000000002,183.20000000000002,183.54,183.88,184.66,8.47,7.91,7.68,7.46,7.25,7.0600000000000005,6.86,6.66,6.28,N/A,N/A +2013,12,28,18,30,94590,93440,92320,75.11,0,3.8200000000000003,4.61,4.79,4.86,4.87,4.86,4.82,4.78,4.66,165.71,167.12,168.02,168.84,169.68,170.46,171.35,172.24,174.23,9.290000000000001,8.67,8.42,8.19,7.98,7.78,7.59,7.4,7.03,N/A,N/A +2013,12,28,19,30,94500,93360,92250,66.09,0,3.66,4.49,4.72,4.8500000000000005,4.91,4.95,4.96,4.96,4.94,178.31,179.15,179.66,180.13,180.62,181.07,181.61,182.14000000000001,183.33,11.120000000000001,10.51,10.25,10.02,9.8,9.6,9.39,9.200000000000001,8.82,N/A,N/A +2013,12,28,20,30,94390,93250,92150,60.29,0,4.45,5.49,5.78,5.93,6.01,6.0600000000000005,6.08,6.09,6.08,184.5,185.25,185.74,186.20000000000002,186.67000000000002,187.1,187.58,188.04,189.04,12.44,11.82,11.57,11.34,11.11,10.91,10.700000000000001,10.51,10.120000000000001,N/A,N/A +2013,12,28,21,30,94300,93170,92070,57.18,0,5.04,6.26,6.61,6.79,6.890000000000001,6.96,6.99,7,6.99,182.52,183.1,183.5,183.86,184.23,184.56,184.94,185.3,186.04,13.08,12.52,12.280000000000001,12.06,11.84,11.64,11.43,11.23,10.84,N/A,N/A +2013,12,28,22,30,94210,93080,91980,58.620000000000005,0,5.8500000000000005,7.3100000000000005,7.7,7.91,8.02,8.08,8.11,8.11,8.08,178.02,178.34,178.59,178.84,179.12,179.37,179.69,179.99,180.66,12.84,12.4,12.19,11.98,11.77,11.58,11.38,11.18,10.790000000000001,N/A,N/A +2013,12,28,23,30,94160,93020,91920,66.43,0,4.63,6.7,7.44,8.05,8.53,8.93,9.25,9.540000000000001,9.98,167.43,168.87,169.81,170.65,171.45000000000002,172.17000000000002,172.91,173.63,175.25,11.49,11.39,11.27,11.14,10.98,10.83,10.66,10.49,10.16,N/A,N/A +2013,12,29,0,30,94130,92990,91890,75.89,0,5.37,7.890000000000001,8.870000000000001,9.71,10.370000000000001,10.93,11.36,11.700000000000001,12.07,167.8,169.78,171,172.04,173.02,173.91,174.9,175.94,178.63,10.14,10.11,10.02,9.93,9.82,9.72,9.620000000000001,9.540000000000001,9.42,N/A,N/A +2013,12,29,1,30,94090,92950,91840,85.05,0,6.5,9.24,10.24,11.08,11.74,12.280000000000001,12.65,12.91,13.030000000000001,176.09,176.54,176.94,177.38,178.01,178.69,179.68,180.9,184.67000000000002,9.540000000000001,9.52,9.47,9.42,9.39,9.39,9.43,9.5,9.8,N/A,N/A +2013,12,29,2,30,94090,92950,91840,91.85000000000001,0,5.94,8.700000000000001,9.8,10.75,11.51,12.15,12.64,13.030000000000001,13.39,173.47,174.13,174.58,174.97,175.4,175.81,176.39000000000001,177.07,179.22,9.1,9.040000000000001,8.96,8.86,8.77,8.69,8.65,8.64,8.81,N/A,N/A +2013,12,29,3,30,94100,92950,91850,93.26,0,5.55,8.23,9.33,10.3,11.040000000000001,11.66,12.18,12.6,13.1,173.72,174.65,175.25,175.78,176.23,176.65,177.15,177.73,179.39000000000001,8.75,8.65,8.51,8.36,8.19,8.05,7.98,7.98,8.24,N/A,N/A +2013,12,29,4,30,94110,92960,91850,94,0,4.14,6.38,7.18,7.8100000000000005,8.39,8.92,9.42,9.84,10.4,169.88,172.99,174.72,175.89000000000001,176.79,177.56,178.3,179.08,180.86,8.35,8.3,8.14,7.95,7.69,7.46,7.38,7.34,7.43,N/A,N/A +2013,12,29,5,30,94120,92970,91860,92.09,0,3.39,4.57,5.04,5.41,5.7700000000000005,6.11,6.45,6.79,7.38,165.41,166.98,167.99,168.8,169.63,170.41,171.14000000000001,171.82,173.3,8.41,8.1,7.9,7.68,7.42,7.19,7.0600000000000005,6.96,6.8,N/A,N/A +2013,12,29,6,30,94120,92970,91860,91.63,0,2.5100000000000002,3.29,3.62,3.92,4.17,4.41,4.7,5.0200000000000005,5.71,172.42000000000002,173.39000000000001,174.02,174.62,175.11,175.52,175.94,176.59,178.77,8.31,7.99,7.8,7.58,7.3500000000000005,7.140000000000001,6.96,6.8,6.54,N/A,N/A +2013,12,29,7,30,94110,92960,91840,93.01,0,2.73,3.45,3.7,3.89,4.15,4.41,4.65,4.86,5.14,172.70000000000002,172.96,173.23,173.59,174.38,175.34,177.29,179.1,181.59,7.9,7.58,7.38,7.17,6.96,6.78,6.65,6.5200000000000005,6.2700000000000005,N/A,N/A +2013,12,29,8,30,94090,92940,91820,93.51,0,3.02,3.7600000000000002,3.96,4.1,4.2700000000000005,4.44,4.73,4.92,5.07,175.9,176.3,176.65,177.06,177.43,177.92000000000002,179.53,181.54,185.3,7.65,7.3100000000000005,7.09,6.86,6.7,6.57,6.44,6.3100000000000005,6.0600000000000005,N/A,N/A +2013,12,29,9,30,94080,92930,91820,94.7,0,2.34,2.83,3.02,3.23,3.47,3.69,3.8200000000000003,3.93,4.1,170.43,172.55,174.51,176.89000000000001,182.87,188.96,192.11,194.44,197.1,7.46,7.15,6.97,6.7700000000000005,6.640000000000001,6.53,6.42,6.3,6.0600000000000005,N/A,N/A +2013,12,29,10,30,94080,92930,91810,92.69,0,2.07,2.58,2.73,2.84,2.94,3.04,3.2800000000000002,3.5,3.84,181.75,182.75,183.46,184.14000000000001,185.19,186.66,191.85,196.28,202.04,7.7,7.38,7.19,6.98,6.76,6.58,6.43,6.29,5.98,N/A,N/A +2013,12,29,11,30,94120,92970,91850,93.32000000000001,0,1.41,1.72,1.79,1.83,1.86,1.9000000000000001,2,2.12,2.44,167.88,171.96,174.49,176.64000000000001,180.20000000000002,183.88,188.54,194.89000000000001,210.15,7.43,7.12,6.94,6.75,6.55,6.37,6.2,6.03,5.69,N/A,N/A +2013,12,29,12,30,94160,93010,91890,93.59,0,1.6,1.93,2,2.0100000000000002,2,1.99,2.0100000000000002,2.05,2.2600000000000002,208.35,209.48000000000002,210.11,210.61,211.28,212.22,214.95000000000002,217.91,224.29,7.16,6.83,6.640000000000001,6.43,6.23,6.04,5.9,5.75,5.42,N/A,N/A +2013,12,29,13,30,94190,93040,91920,96.78,0,2.36,2.85,2.71,2.43,2.2600000000000002,2.15,2.18,2.21,2.36,264.3,260.8,256.26,250.61,243.45000000000002,237.65,235.84,234.65,234.45000000000002,6.5,6.34,6.2700000000000005,6.21,6.15,6.08,5.95,5.79,5.42,N/A,N/A +2013,12,29,14,30,94290,93130,92010,94.95,0,0.7000000000000001,1.09,1.18,1.18,1.16,1.1500000000000001,1.31,1.79,3.79,246.63,233.17000000000002,225.41,221.05,223.03,228.46,254.99,272.8,287.63,6.41,6.13,5.94,5.72,5.45,5.19,4.84,4.8,5.24,N/A,N/A +2013,12,29,15,30,94400,93240,92120,54.27,0,5.78,7.32,7.8100000000000005,8.09,8.27,8.4,8.48,8.55,8.65,299.47,299.31,299.23,299.09000000000003,298.92,298.75,298.57,298.38,298.02,7.04,6.6000000000000005,6.390000000000001,6.18,5.98,5.79,5.58,5.39,5.01,N/A,N/A +2013,12,29,16,30,94480,93320,92190,54.13,0,6.17,7.71,8.2,8.48,8.66,8.790000000000001,8.870000000000001,8.93,9,306.1,307.12,307.72,308.2,308.63,309.02,309.42,309.81,310.6,6.84,6.28,6.04,5.82,5.6000000000000005,5.41,5.2,5,4.62,N/A,N/A +2013,12,29,17,30,94540,93380,92250,64.26,0,6.8500000000000005,8.51,8.98,9.24,9.39,9.49,9.53,9.56,9.58,321.34000000000003,321.51,321.64,321.73,321.82,321.89,321.99,322.11,322.44,6.3500000000000005,5.91,5.7,5.49,5.2700000000000005,5.08,4.87,4.67,4.2700000000000005,N/A,N/A +2013,12,29,18,30,94600,93430,92300,70.8,0,6.45,8.15,8.63,8.92,9.1,9.24,9.32,9.38,9.450000000000001,358.44,359.21,359.6,359.90000000000003,0.17,0.4,0.62,0.8200000000000001,1.25,5.89,5.46,5.25,5.05,4.84,4.64,4.44,4.24,3.85,N/A,N/A +2013,12,29,19,30,94670,93510,92380,58.870000000000005,0,6.21,7.69,8.14,8.38,8.53,8.63,8.69,8.73,8.75,356.24,356.65000000000003,356.90000000000003,357.09000000000003,357.27,357.42,357.57,357.71,357.99,6.91,6.29,6.03,5.79,5.5600000000000005,5.3500000000000005,5.14,4.94,4.53,N/A,N/A +2013,12,29,20,30,94720,93560,92420,60.24,0,6.54,8.120000000000001,8.58,8.84,8.99,9.09,9.15,9.18,9.200000000000001,3.09,3.22,3.2600000000000002,3.29,3.3200000000000003,3.35,3.37,3.39,3.42,6.01,5.36,5.09,4.8500000000000005,4.62,4.41,4.2,3.99,3.59,N/A,N/A +2013,12,29,21,30,94760,93590,92450,57.54,0,5.78,7.21,7.66,7.92,8.08,8.2,8.28,8.33,8.4,1.55,1.99,2.24,2.43,2.61,2.77,2.91,3.04,3.3000000000000003,5.92,5.34,5.09,4.8500000000000005,4.62,4.42,4.2,4,3.59,N/A,N/A +2013,12,29,22,30,94800,93630,92490,54.910000000000004,0,5.84,7.4,7.86,8.14,8.31,8.44,8.51,8.56,8.620000000000001,1.53,1.84,2.04,2.2,2.35,2.48,2.6,2.71,2.9,5.29,4.8,4.58,4.36,4.14,3.94,3.73,3.5300000000000002,3.13,N/A,N/A +2013,12,29,23,30,94860,93690,92550,55.4,0,4.95,6.54,7.04,7.390000000000001,7.63,7.83,7.97,8.09,8.26,10.16,10.35,10.46,10.56,10.64,10.71,10.76,10.790000000000001,10.83,4.4,4.12,3.94,3.7600000000000002,3.5500000000000003,3.36,3.17,2.97,2.57,N/A,N/A +2013,12,30,0,30,94930,93750,92610,60.56,0,2.21,4.17,4.93,5.53,6,6.4,6.75,7.0600000000000005,7.6000000000000005,17.22,17.89,18.2,18.400000000000002,18.25,18.02,17.59,17.1,15.98,3.21,3.3000000000000003,3.19,3.0500000000000003,2.87,2.71,2.5300000000000002,2.36,2,N/A,N/A +2013,12,30,1,30,94990,93800,92650,63.68,0,1.9100000000000001,4.24,5.29,6.15,6.83,7.4,7.86,8.21,8.6,28.82,27.84,27.64,27.85,27.73,27.51,27.07,26.52,25.19,2.08,2.2600000000000002,2.17,2.04,1.9000000000000001,1.76,1.61,1.46,1.1500000000000001,N/A,N/A +2013,12,30,2,30,95030,93850,92690,66.15,0,1.06,2.92,3.92,4.61,5.25,5.83,6.36,6.84,7.7,24.79,23.84,24.490000000000002,26.59,27.76,28.53,28.72,28.66,28.080000000000002,1.33,1.59,1.51,1.37,1.21,1.06,0.9,0.74,0.42,N/A,N/A +2013,12,30,3,30,95070,93880,92720,69.85000000000001,0,0.66,2.5500000000000003,3.72,4.28,4.83,5.39,6.0200000000000005,6.66,7.8500000000000005,351.39,2.04,9.94,14.01,17,19.5,21.47,23.080000000000002,25.42,0.72,1.2,1.16,1,0.8,0.62,0.46,0.3,0.02,N/A,N/A +2013,12,30,4,30,95110,93910,92760,74.60000000000001,0,0.63,1.92,2.75,3.45,3.88,4.2700000000000005,4.73,5.26,6.41,265.16,320.81,351.90000000000003,2.39,8.92,13.9,17.18,19.580000000000002,22.87,0.03,0.44,0.47000000000000003,0.48,0.39,0.27,0.1,-0.07,-0.36,N/A,N/A +2013,12,30,5,30,95120,93930,92770,76.33,0,1.98,2.93,3.2600000000000002,3.7600000000000002,4.18,4.58,5.04,5.5200000000000005,6.5,295.91,327.63,344.42,358.33,5.17,10.03,12.780000000000001,14.71,17.490000000000002,-0.67,0.02,0.12,0.18,0.12,0.03,-0.11,-0.25,-0.5,N/A,N/A +2013,12,30,6,30,95150,93950,92790,76.71000000000001,0,1.6500000000000001,2.5,2.94,3.67,4.32,4.92,5.5,6.0600000000000005,7.13,291.72,320.89,341.26,3.66,11.94,17.21,19.61,21.04,22.38,-1.16,-0.49,-0.31,-0.15,-0.2,-0.27,-0.39,-0.5,-0.72,N/A,N/A +2013,12,30,7,30,95160,93960,92800,74.64,0,2.13,2.97,3.14,3.43,3.71,4.01,4.42,4.86,5.8,290.34000000000003,313.64,332.58,353.73,1.98,7.5200000000000005,10.67,12.700000000000001,14.71,-1.3900000000000001,-0.7000000000000001,-0.51,-0.36,-0.46,-0.58,-0.72,-0.8300000000000001,-1.01,N/A,N/A +2013,12,30,8,30,95150,93950,92790,72.82000000000001,0,2.14,3.52,3.83,4.09,4.34,4.53,4.6000000000000005,4.72,5.13,288.95,302.84000000000003,317.22,334.01,346.55,355.54,359.26,1.74,4.37,-1.48,-0.88,-0.68,-0.47000000000000003,-0.41000000000000003,-0.43,-0.56,-0.73,-1.06,N/A,N/A +2013,12,30,9,30,95130,93930,92770,72.27,0,2.0100000000000002,3.5300000000000002,3.91,4.15,4.5,4.79,4.96,5.09,5.34,299.46,310.13,318.8,327.36,338.43,347.06,351.27,354.14,356.8,-1.71,-0.9500000000000001,-0.77,-0.66,-0.6,-0.6,-0.68,-0.8,-1.1,N/A,N/A +2013,12,30,10,30,95090,93890,92730,70.76,0,1.9100000000000001,3.61,4.13,4.48,4.64,4.74,4.79,4.83,4.97,299.44,314.43,322.43,327.39,332.12,336.11,339.42,342.06,345.41,-1.86,-1.02,-0.8200000000000001,-0.72,-0.72,-0.75,-0.84,-0.98,-1.31,N/A,N/A +2013,12,30,11,30,95070,93870,92710,73.54,0,2.0100000000000002,3.67,4.23,4.72,5.01,5.22,5.32,5.4,5.58,306.31,315.29,320.24,323.64,325.69,327.35,328.73,329.96,331.93,-1.94,-1.35,-1.26,-1.21,-1.22,-1.23,-1.27,-1.35,-1.6,N/A,N/A +2013,12,30,12,30,95070,93870,92700,72.25,0,1.06,2.42,3.16,3.85,4.36,4.75,4.98,5.17,5.48,269.4,305.19,321.84000000000003,326.84000000000003,327.98,328.2,327.46,326.7,325.19,-2.39,-1.75,-1.62,-1.55,-1.53,-1.55,-1.6,-1.6600000000000001,-1.81,N/A,N/A +2013,12,30,13,30,95060,93850,92690,71.71000000000001,0,0.9500000000000001,1.69,2.27,3.21,3.7800000000000002,4.21,4.44,4.63,5.01,231.46,293.33,317.01,325.79,326.26,325.56,323.86,322,318.77,-2.47,-2.0300000000000002,-1.95,-1.86,-1.81,-1.78,-1.79,-1.81,-1.82,N/A,N/A +2013,12,30,14,30,95080,93880,92710,63.25,0,0.52,1.03,1.42,1.84,2.2800000000000002,2.72,3.13,3.52,4.25,267.2,298.63,313.91,320.68,322.56,323.21,322.13,320.31,316.64,-1.97,-1.95,-1.95,-1.98,-1.98,-1.95,-1.8800000000000001,-1.78,-1.61,N/A,N/A +2013,12,30,15,30,95090,93890,92730,56.44,0,1.16,1.3900000000000001,1.46,1.52,1.6500000000000001,1.86,2.2800000000000002,2.97,4.3,275.92,282.35,286.91,291.2,297.37,303.44,310.45,312.57,312.99,-0.18,-0.55,-0.72,-0.87,-1.02,-1.1400000000000001,-1.23,-1.08,-0.75,N/A,N/A +2013,12,30,16,30,95090,93900,92750,49.96,0,1.35,1.6,1.6600000000000001,1.71,1.75,1.79,1.85,1.94,2.24,288.53000000000003,293.82,297.11,299.95,302.86,305.5,308.14,310.77,316.1,2.5300000000000002,2.07,1.86,1.68,1.49,1.32,1.1500000000000001,0.97,0.65,N/A,N/A +2013,12,30,17,30,95070,93890,92750,46.36,0,1.6300000000000001,1.96,2.05,2.1,2.14,2.17,2.21,2.24,2.34,290.82,293.41,294.96,296.24,297.54,298.72,299.92,301.1,303.45,4.66,4.17,3.94,3.75,3.54,3.36,3.18,3,2.64,N/A,N/A +2013,12,30,18,30,95050,93880,92740,43.07,0,1.12,1.31,1.35,1.37,1.3900000000000001,1.4000000000000001,1.41,1.43,1.48,278.46,278.74,278.8,278.77,278.66,278.53000000000003,278.34000000000003,278.09000000000003,277.52,6.5,6.0200000000000005,5.79,5.59,5.39,5.21,5.0200000000000005,4.84,4.47,N/A,N/A +2013,12,30,19,30,95030,93870,92740,39.99,0,0.92,1.02,1.03,1.04,1.06,1.07,1.09,1.12,1.2,279.07,276.65000000000003,275.02,273.41,271.73,270.19,268.55,267.03000000000003,264.14,8.38,7.9,7.67,7.47,7.26,7.08,6.88,6.7,6.33,N/A,N/A +2013,12,30,20,30,94990,93830,92710,37.13,0,0.35000000000000003,0.38,0.38,0.39,0.4,0.42,0.44,0.47000000000000003,0.56,277.65000000000003,269.5,264.45,259.75,255.37,251.48000000000002,248.12,245.33,241.36,9.98,9.53,9.3,9.1,8.89,8.71,8.51,8.32,7.95,N/A,N/A +2013,12,30,21,30,94970,93820,92700,34.59,0,0.27,0.26,0.26,0.27,0.3,0.34,0.4,0.46,0.6,77.9,100.22,114.62,129.85,142.27,153.38,160.98,167.63,177.43,11.23,10.81,10.6,10.4,10.200000000000001,10.01,9.82,9.63,9.25,N/A,N/A +2013,12,30,22,30,94960,93820,92700,34.24,0,1.07,1.18,1.18,1.1500000000000001,1.12,1.08,1.05,1.02,0.99,74.98,81.22,85.17,88.9,93.17,97.09,102.43,107.86,120.65,11.84,11.48,11.290000000000001,11.09,10.9,10.72,10.52,10.33,9.96,N/A,N/A +2013,12,30,23,30,94980,93830,92720,47.660000000000004,0,2.32,3.75,3.75,3.56,3.19,2.85,2.5100000000000002,2.21,1.6300000000000001,116.32000000000001,122.39,124.51,124.9,124.26,123.63000000000001,123.67,123.57000000000001,123.35000000000001,9.99,10.65,10.620000000000001,10.53,10.43,10.34,10.28,10.21,10.01,N/A,N/A +2013,12,31,0,30,95030,93880,92760,53.22,0,1.92,2.99,2.84,2.5,2.15,1.86,1.58,1.34,0.9,136.63,144.41,147.24,147.96,148.75,149.48,150.8,152.73,160.48,8.43,9.69,9.94,10.1,10.15,10.15,10.09,10.01,9.8,N/A,N/A +2013,12,31,1,30,95100,93940,92820,55.59,0,0.25,0.22,0.22,0.27,0.33,0.39,0.45,0.5,0.58,356.23,25.09,40.72,60.1,80.60000000000001,100.95,117.95,135.87,170.83,7.45,8.42,8.5,8.540000000000001,8.57,8.620000000000001,8.73,8.870000000000001,9.19,N/A,N/A +2013,12,31,2,30,95150,93980,92860,63,0,0.05,0.23,0.38,0.47000000000000003,0.45,0.44,0.59,0.71,0.73,48.08,57.21,58.97,52.44,65.3,81.44,112.75,136.81,162.36,5.64,7.48,7.94,8.11,8.09,8.11,8.4,8.75,9.35,N/A,N/A +2013,12,31,3,30,95210,94040,92910,67.58,0,0.18,0.36,0.46,0.5700000000000001,0.58,0.5700000000000001,0.54,0.65,1.17,51.9,48.29,56.2,73.24,88.10000000000001,105.8,140.22,163.44,191.75,4.6000000000000005,6.42,6.86,7.05,7.17,7.32,7.61,7.92,8.48,N/A,N/A +2013,12,31,4,30,95270,94090,92960,71.81,0,0.12,0.29,0.44,0.68,0.91,1.1300000000000001,1.34,1.54,1.95,20.64,96.76,134.54,157.36,168.77,177.54,182.58,185.95000000000002,188.61,3.61,5.45,6.05,6.45,6.69,6.88,7.0200000000000005,7.140000000000001,7.3500000000000005,N/A,N/A +2013,12,31,5,30,95310,94130,93000,76.09,0,1.07,1.32,1.05,0.79,0.51,0.41000000000000003,0.58,0.8300000000000001,1.49,29.41,39.480000000000004,51.800000000000004,64.03,104.05,131.42000000000002,167.36,187.6,194.17000000000002,2.62,4.07,4.6000000000000005,5.05,5.38,5.65,5.87,6.0600000000000005,6.390000000000001,N/A,N/A +2013,12,31,6,30,95340,94160,93020,78.87,0,0.35000000000000003,0.66,0.7000000000000001,0.7000000000000001,0.45,0.35000000000000003,0.42,0.62,1.31,347.57,6.38,17.27,25.02,14.55,352.1,283.47,249.98000000000002,231.11,2.24,3.3200000000000003,3.69,4.05,4.5,4.94,5.46,5.8500000000000005,6.390000000000001,N/A,N/A +2013,12,31,7,30,95390,94200,93060,85.17,0,0.14,0.35000000000000003,0.5,0.67,0.35000000000000003,0.27,0.48,0.73,1.24,305.58,351.53000000000003,15.290000000000001,30.82,69.3,96.9,163.06,202.8,219.27,0.97,2.32,2.69,2.92,3.61,4.23,4.74,5.19,5.8500000000000005,N/A,N/A +2013,12,31,8,30,95400,94210,93060,86.91,0,0.13,0.6,0.62,0.44,0.45,0.54,0.8200000000000001,1.07,1.43,5.42,13.91,32.38,48,103.16,144.42000000000002,165.32,181.74,204,0.08,1.73,2.2,2.48,2.91,3.36,3.88,4.4,5.24,N/A,N/A +2013,12,31,9,30,95400,94210,93060,89.95,0,0.13,0.85,1.07,0.92,0.54,0.36,0.3,0.48,1.27,17.04,20.07,23.61,26.29,29.1,72.56,180.32,210.99,219.05,-0.8,0.55,1.1500000000000001,1.69,2.17,2.62,3.14,3.66,4.5600000000000005,N/A,N/A +2013,12,31,10,30,95400,94200,93050,92.21000000000001,0,0.28,0.7000000000000001,1.01,1.42,1.08,0.89,0.8300000000000001,0.91,1.32,253.3,328.2,358.48,11.56,0.47000000000000003,342.76,311.19,287.09000000000003,251.37,-1.43,-0.14,0.33,0.68,1.37,1.96,2.5100000000000002,3.0500000000000003,4,N/A,N/A +2013,12,31,11,30,95410,94210,93060,92.93,0,0.29,0.75,0.89,0.9500000000000001,1.03,1.03,0.93,0.92,1.18,233.36,272.31,300.56,323.51,338.93,340.89,323.11,298.94,253.57,-1.59,-0.29,0.06,0.23,0.56,0.9500000000000001,1.48,2.18,3.5300000000000002,N/A,N/A +2013,12,31,12,30,95410,94210,93060,94.9,0,0.06,0.66,1.1400000000000001,1.3,1.34,1.3,1.12,1.01,1.19,257.7,255.15,265.77,284.07,289.56,291.35,288.47,270.5,233.39000000000001,-2.22,-1.03,-0.49,-0.05,0.27,0.63,1.1400000000000001,1.77,2.99,N/A,N/A +2013,12,31,13,30,95410,94210,93050,95.9,0,0.03,0.51,1.04,1.33,1.57,1.6400000000000001,1.45,1.23,1.29,257.1,265.94,283.09000000000003,299.22,299.93,298.15000000000003,293.6,277.81,241.14000000000001,-2.64,-1.32,-0.8200000000000001,-0.47000000000000003,-0.04,0.4,0.93,1.61,2.96,N/A,N/A +2013,12,31,14,30,95410,94210,93050,89.81,0,0.21,0.46,0.67,0.88,1.17,1.32,1.22,1.07,1.23,219.72,241.64000000000001,266.38,296.76,298.95,296.35,287.88,266.34000000000003,224.86,-2.02,-1.68,-1.21,-0.7000000000000001,-0.17,0.37,1.02,1.75,3.0700000000000003,N/A,N/A +2013,12,31,15,30,95400,94210,93050,75.9,0,0.31,0.41000000000000003,0.45,0.48,0.6900000000000001,0.86,0.85,1.07,1.9000000000000001,286.57,282.97,280.03000000000003,276.88,269.68,252.97,222.12,204.09,188.04,0.5,0.23,0.12,0.04,0.5,1.01,1.6600000000000001,2.25,3.25,N/A,N/A +2013,12,31,16,30,95360,94180,93030,61.93,0,0.2,0.13,0.07,0.03,0.1,0.31,0.72,1.35,2.7800000000000002,343.78000000000003,343.45,69.95,133.67000000000002,145.16,162.64000000000001,167.51,172.72,179.85,3.8000000000000003,3.42,3.24,3.09,2.93,2.8000000000000003,2.69,2.92,3.75,N/A,N/A +2013,12,31,17,30,95290,94130,92990,49,0,0.67,1,1.18,1.33,1.48,1.61,1.75,1.8800000000000001,2.17,114.33,128.22,135.74,141.43,145.88,149.75,153.14000000000001,156.18,161.39000000000001,7.48,7.04,6.83,6.65,6.46,6.29,6.12,5.95,5.61,N/A,N/A +2013,12,31,18,30,95230,94070,92940,38.79,0,3.19,3.9,4.08,4.17,4.22,4.25,4.25,4.25,4.23,173.14000000000001,174.05,174.53,174.95000000000002,175.36,175.74,176.14000000000001,176.54,177.37,9.85,9.28,9.03,8.82,8.6,8.41,8.21,8.02,7.63,N/A,N/A +2013,12,31,19,30,95170,94020,92900,36.89,0,3.85,4.71,4.93,5.04,5.09,5.12,5.13,5.12,5.09,177.82,178.01,178.13,178.25,178.37,178.48,178.62,178.74,179.04,10.86,10.27,10.02,9.790000000000001,9.58,9.38,9.18,8.98,8.6,N/A,N/A +2013,12,31,20,30,95100,93950,92830,34.33,0,4.15,5.11,5.38,5.5200000000000005,5.59,5.63,5.65,5.66,5.64,179,179.02,179.06,179.12,179.21,179.3,179.42000000000002,179.55,179.84,11.81,11.23,10.98,10.76,10.53,10.34,10.13,9.93,9.540000000000001,N/A,N/A +2013,12,31,21,30,95030,93880,92770,33.660000000000004,0,4.43,5.47,5.74,5.88,5.95,5.98,5.99,5.99,5.95,177.11,177.44,177.64000000000001,177.84,178.03,178.21,178.42000000000002,178.62,179.04,12.15,11.620000000000001,11.39,11.18,10.96,10.77,10.56,10.370000000000001,9.97,N/A,N/A +2013,12,31,22,30,94960,93810,92700,35,0,4.63,5.78,6.0600000000000005,6.21,6.28,6.32,6.33,6.32,6.2700000000000005,175.85,175.98,176.08,176.18,176.3,176.4,176.52,176.63,176.9,11.88,11.49,11.290000000000001,11.09,10.88,10.69,10.49,10.3,9.9,N/A,N/A +2013,12,31,23,30,94920,93770,92660,44.86,0,2.99,5.17,5.83,6.37,6.79,7.140000000000001,7.390000000000001,7.6000000000000005,7.83,166.74,169.32,170.85,172.02,172.96,173.75,174.35,174.85,175.55,10,10.35,10.3,10.21,10.07,9.94,9.76,9.58,9.200000000000001,N/A,N/A diff --git a/test/conftest.py b/test/conftest.py index cb066cfce..a495705b5 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -4,9 +4,11 @@ import os import shutil +from pathlib import Path import pytest +from h2integrate import EXAMPLE_DIR from h2integrate.resource.utilities.nlr_developer_api_keys import set_nlr_key_dot_env @@ -67,9 +69,39 @@ def pytest_collection_modifyitems(config, items): raise pytest.UsageError(msg) -@pytest.fixture(scope="module") +@pytest.fixture(scope="function") def temp_dir(tmp_path_factory): """Temp directory for YAML outputs.""" temp_dir = tmp_path_factory.mktemp("temp_dir") yield temp_dir - shutil.rmtree(str(temp_dir)) + + +@pytest.fixture(scope="module") +def temp_dir_module(tmp_path_factory): + """Temp directory for YAML outputs.""" + temp_dir = tmp_path_factory.mktemp("temp_dir") + yield temp_dir + + +@pytest.fixture(scope="function") +def temp_copy_of_example(temp_dir, example_folder, resource_example_folder): + original = EXAMPLE_DIR / example_folder + shutil.copytree(original, temp_dir / example_folder, dirs_exist_ok=True) + if resource_example_folder is not None: + secondary = EXAMPLE_DIR / resource_example_folder + shutil.copytree(secondary, temp_dir / resource_example_folder, dirs_exist_ok=True) + os.chdir(temp_dir / example_folder) + yield temp_dir / example_folder + os.chdir(Path(__file__).parent) + + +@pytest.fixture(scope="function") +def temp_copy_of_example_module_scope(temp_dir_module, example_folder, resource_example_folder): + original = EXAMPLE_DIR / example_folder + shutil.copytree(original, temp_dir_module / example_folder, dirs_exist_ok=True) + if resource_example_folder is not None: + secondary = EXAMPLE_DIR / resource_example_folder + shutil.copytree(secondary, temp_dir_module / resource_example_folder, dirs_exist_ok=True) + os.chdir(temp_dir_module / example_folder) + yield temp_dir_module / example_folder + os.chdir(Path(__file__).parent)